202 lines
6.5 KiB
C
202 lines
6.5 KiB
C
/** @file
|
|
|
|
@copyright
|
|
INTEL CONFIDENTIAL
|
|
Copyright 2009 - 2021 Intel Corporation.
|
|
|
|
The source code contained or described herein and all documents related to the
|
|
source code ("Material") are owned by Intel Corporation or its suppliers or
|
|
licensors. Title to the Material remains with Intel Corporation or its suppliers
|
|
and licensors. The Material may contain trade secrets and proprietary and
|
|
confidential information of Intel Corporation and its suppliers and licensors,
|
|
and is protected by worldwide copyright and trade secret laws and treaty
|
|
provisions. No part of the Material may be used, copied, reproduced, modified,
|
|
published, uploaded, posted, transmitted, distributed, or disclosed in any way
|
|
without Intel's prior express written permission.
|
|
|
|
No license under any patent, copyright, trade secret or other intellectual
|
|
property right is granted to or conferred upon you by disclosure or delivery
|
|
of the Materials, either expressly, by implication, inducement, estoppel or
|
|
otherwise. Any license under such intellectual property rights must be
|
|
express and approved by Intel in writing.
|
|
|
|
Unless otherwise agreed by Intel in writing, you may not remove or alter
|
|
this notice or any other notice embedded in Materials by Intel or
|
|
Intel's suppliers or licensors in any way.
|
|
|
|
This file contains a 'Sample Driver' and is licensed as such under the terms
|
|
of your license agreement with Intel or your vendor. This file may be modified
|
|
by the user, subject to the additional terms of the license agreement.
|
|
|
|
@par Specification Reference:
|
|
**/
|
|
|
|
#ifndef __SETUP__H__
|
|
#define __SETUP__H__
|
|
|
|
#include "SetupConfiguration.h"
|
|
#include "SetupVariable.h"
|
|
|
|
#ifndef MDEPKG_NDEBUG
|
|
#define DEBUG_INTERFACE_FORM_ENABLE
|
|
#endif // MDEPKG_NDEBUG
|
|
//
|
|
// Form class guid for the forms those will be showed on first front page.
|
|
//
|
|
#define FRONT_PAGE_GUID { 0xe58809f8, 0xfbc1, 0x48e2, { 0x88, 0x3a, 0xa3, 0xf, 0xdc, 0x4b, 0x44, 0x1e } }
|
|
//
|
|
// Form class guid for the forms those will be showed on boot maintenance manager menu.
|
|
//
|
|
#define BOOT_MAINTENANCE_GUID { 0xb2dedc91, 0xd59f, 0x48d2, { 0x89, 0x8a, 0x12, 0x49, 0xc, 0x74, 0xa4, 0xe0 } }
|
|
|
|
// VFR common Definitions
|
|
#define INVENTORY(Name,Value) \
|
|
text \
|
|
help = STRING_TOKEN(STR_EMPTY), \
|
|
text = Name, \
|
|
text = Value, \
|
|
flags = 0, \
|
|
key = 0;
|
|
|
|
#define SUBTITLE(Text) subtitle text = Text;
|
|
#define SEPARATOR SUBTITLE(STRING_TOKEN(STR_EMPTY))
|
|
|
|
#define INTERACTIVE_TEXT(HelpToken, CaptionToken, ValueToken, Key)\
|
|
grayoutif TRUE;\
|
|
oneof varid = SETUP_DATA.InteractiveText,\
|
|
questionid = Key,\
|
|
prompt = CaptionToken,\
|
|
help = HelpToken,\
|
|
option text = ValueToken, value = 0, flags = INTERACTIVE | DEFAULT;\
|
|
refresh interval = 1 \
|
|
endoneof;\
|
|
endif;
|
|
|
|
#define SUPPRESS_GRAYOUT_ENDIF endif; endif;
|
|
#define DEFAULT_FLAG
|
|
|
|
#define SYSTEM_ACCESS_KEY_ID 0xF000
|
|
//
|
|
// System Access defintions.
|
|
//
|
|
#define SYSTEM_ACCESS_GUID \
|
|
{ 0xE770BB69, 0xBCB4, 0x4D04, { 0x9E, 0x97, 0x23, 0xFF, 0x94, 0x56, 0xFE, 0xAC }}
|
|
|
|
#define SYSTEM_PASSWORD_ADMIN 0
|
|
#define SYSTEM_PASSWORD_USER 1
|
|
#define ADMIN_PW_CLEAR 0
|
|
#define ADMIN_PW_SET 1
|
|
|
|
/**
|
|
Making any setup structure change after code frozen
|
|
will need to maintain backward compatibility, bump up
|
|
structure revision and update below history table\n
|
|
<b>Revision 1</b>: - Initial version.
|
|
**/
|
|
#define SYSTEM_ACCESS_REVISION 1
|
|
|
|
typedef struct _SYSTEM_ACCESS
|
|
{
|
|
//
|
|
// Passwords
|
|
//
|
|
UINT8 Access;
|
|
} SYSTEM_ACCESS;
|
|
|
|
/**
|
|
Making any setup structure change after code frozen
|
|
will need to maintain backward compatibility, bump up
|
|
structure revision and update below history table\n
|
|
<b>Revision 1</b>: - Initial version.
|
|
**/
|
|
#define EFI_PASSWORD_STATUS_REVISION 1
|
|
|
|
//
|
|
// Record the password status.
|
|
//
|
|
typedef struct {
|
|
UINT8 AdminName;
|
|
UINT8 UserName;
|
|
} EFI_PASSWORD_STATUS;
|
|
|
|
#pragma pack(1)
|
|
|
|
/**
|
|
Making any setup structure change after code frozen
|
|
will need to maintain backward compatibility, bump up
|
|
structure revision and update below history table\n
|
|
<b>Revision 1</b>: - Initial version.
|
|
**/
|
|
#define DEBUG_CONFIG_DATA_REVISION 1
|
|
//
|
|
// Config Data
|
|
//
|
|
typedef struct {
|
|
UINT8 SerialDebugMrcLevel;
|
|
UINT8 SerialDebug;
|
|
UINT8 SerialDebugBaudRate;
|
|
UINT8 RamDebugInterface;
|
|
UINT8 UartDebugInterface;
|
|
UINT8 Usb3DebugInterface;
|
|
UINT8 SerialIoDebugInterface;
|
|
UINT8 TraceHubDebugInterface;
|
|
// SerialIouartDebug Configuration
|
|
UINT8 SerialIoUartDebugControllerNumber;
|
|
UINT32 SerialIoUartDebugBaudRate;
|
|
UINT8 SerialIoUartDebugStopBits;
|
|
UINT8 SerialIoUartDebugParity;
|
|
UINT8 SerialIoUartDebugFlowControl;
|
|
UINT8 SerialIoUartDebugDataBits;
|
|
} DEBUG_CONFIG_DATA;
|
|
|
|
//
|
|
// Config Data Hob
|
|
//
|
|
#define DEBUG_CONFIG_DATA_HOB DEBUG_CONFIG_DATA
|
|
|
|
#pragma pack()
|
|
|
|
//
|
|
// Varstore statement
|
|
// Setup is EfiVarStore that is related to EFI variable with attribute 0x07
|
|
// (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS)
|
|
//
|
|
#define SETUP_DATA_VARSTORE\
|
|
efivarstore SETUP_DATA, varid = 1,\
|
|
attribute = 0x7, name = Setup, guid = SETUP_GUID;
|
|
#define SA_SETUP_VARSTORE\
|
|
efivarstore SA_SETUP, varid = 2,\
|
|
attribute = 0x7, name = SaSetup, guid = SA_SETUP_GUID;
|
|
#define CPU_SETUP_VARSTORE\
|
|
efivarstore CPU_SETUP, varid = 3,\
|
|
attribute = 0x7, name = CpuSetup, guid = CPU_SETUP_GUID;
|
|
#define ME_SETUP_VARSTORE\
|
|
efivarstore ME_SETUP, varid = 4,\
|
|
attribute = 0x7, name = MeSetup, guid = ME_SETUP_GUID;
|
|
#define PCH_SETUP_VARSTORE\
|
|
efivarstore PCH_SETUP, varid = 5,\
|
|
attribute = 0x7, name = PchSetup, guid = PCH_SETUP_GUID;
|
|
#define SI_SETUP_VARSTORE\
|
|
efivarstore SI_SETUP, varid = 6,\
|
|
attribute = 0x7, name = SiSetup, guid = SI_SETUP_GUID;
|
|
#define BOARD_INFO_SETUP_VARSTORE\
|
|
efivarstore BOARD_INFO_SETUP, varid = 7,\
|
|
attribute = 0x7, name = BoardInfoSetup, guid = BOARD_INFO_SETUP_GUID;
|
|
#ifdef DEBUG_INTERFACE_FORM_ENABLE
|
|
#define DEBUG_CONFIG_DATA_ID 0xF001
|
|
#define DEBUG_CONFIG_DATA_VARSTORE\
|
|
efivarstore DEBUG_CONFIG_DATA, varid = DEBUG_CONFIG_DATA_ID,\
|
|
attribute = 0x7, name = DebugConfigData, guid = DEBUG_CONFIG_GUID;
|
|
#endif // DEBUG_INTERFACE_FORM_ENABLE
|
|
#define SYSTEM_ACCESS_VARSTORE\
|
|
varstore SYSTEM_ACCESS, varid = SYSTEM_ACCESS_KEY_ID,\
|
|
name = SystemAccess, guid = SYSTEM_ACCESS_GUID;
|
|
#define SYSTEM_PASSWORD_VARSTORE\
|
|
varstore EFI_PASSWORD_STATUS,\
|
|
name = PasswordStatus, guid = SYSTEM_ACCESS_GUID;
|
|
|
|
#define BOOT_FLOW_CONDITION_RECOVERY 2
|
|
#define BOOT_FLOW_CONDITION_FIRST_BOOT 4
|
|
|
|
#endif
|