Initial import.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
32
EdkModulePkg/Include/Guid/AlternateFvBlock.h
Normal file
32
EdkModulePkg/Include/Guid/AlternateFvBlock.h
Normal file
@@ -0,0 +1,32 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
AlternateFvBlock.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Tiano Guid used to define the Alternate Firmware Volume Block Guid.
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _ALT_FVB_GUID_H
|
||||
#define _ALT_FVB_GUID_H
|
||||
|
||||
#define EFI_ALTERNATE_FV_BLOCK_GUID \
|
||||
{ \
|
||||
0xf496922d, 0x172f, 0x4bbc, {0xa1, 0xeb, 0xe, 0xeb, 0x94, 0x9c, 0x34, 0x86 } \
|
||||
}
|
||||
|
||||
extern EFI_GUID gEfiAlternateFvBlockGuid;
|
||||
|
||||
#endif
|
62
EdkModulePkg/Include/Guid/Bmp.h
Normal file
62
EdkModulePkg/Include/Guid/Bmp.h
Normal file
@@ -0,0 +1,62 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
Bmp.h
|
||||
|
||||
Abstract:
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _BMP_GUID_H_
|
||||
#define _BMP_GUID_H_
|
||||
|
||||
|
||||
//
|
||||
// Definitions for BMP files
|
||||
//
|
||||
#pragma pack(1)
|
||||
|
||||
typedef struct {
|
||||
UINT8 Blue;
|
||||
UINT8 Green;
|
||||
UINT8 Red;
|
||||
UINT8 Reserved;
|
||||
} BMP_COLOR_MAP;
|
||||
|
||||
typedef struct {
|
||||
CHAR8 CharB;
|
||||
CHAR8 CharM;
|
||||
UINT32 Size;
|
||||
UINT16 Reserved[2];
|
||||
UINT32 ImageOffset;
|
||||
UINT32 HeaderSize;
|
||||
UINT32 PixelWidth;
|
||||
UINT32 PixelHeight;
|
||||
UINT16 Planes; // Must be 1
|
||||
UINT16 BitPerPixel; // 1, 4, 8, or 24
|
||||
UINT32 CompressionType;
|
||||
UINT32 ImageSize; // Compressed image size in bytes
|
||||
UINT32 XPixelsPerMeter;
|
||||
UINT32 YPixelsPerMeter;
|
||||
UINT32 NumberOfColors;
|
||||
UINT32 ImportantColors;
|
||||
} BMP_IMAGE_HEADER;
|
||||
|
||||
#pragma pack()
|
||||
|
||||
#define EFI_DEFAULT_BMP_LOGO_GUID \
|
||||
{0x7BB28B99,0x61BB,0x11d5,{0x9A,0x5D,0x00,0x90,0x27,0x3F,0xC1,0x4D}}
|
||||
|
||||
extern EFI_GUID gEfiDefaultBmpLogoGuid;
|
||||
|
||||
#endif
|
36
EdkModulePkg/Include/Guid/BootState.h
Normal file
36
EdkModulePkg/Include/Guid/BootState.h
Normal file
@@ -0,0 +1,36 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
BootState.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Constants and declarations that are common accross PEI and DXE.
|
||||
--*/
|
||||
|
||||
#ifndef _BOOT_STATE_H_
|
||||
#define _BOOT_STATE_H_
|
||||
|
||||
//
|
||||
// BOOT STATE
|
||||
//
|
||||
|
||||
typedef UINT32 EFI_BOOT_STATE;
|
||||
|
||||
#define BOOT_STATE_VARIABLE_NAME L"BootState"
|
||||
|
||||
#define EFI_BOOT_STATE_VARIABLE_GUID \
|
||||
{0x60b5e939, 0xfcf, 0x4227, {0xba, 0x83, 0x6b, 0xbe, 0xd4, 0x5b, 0xc0, 0xe3} }
|
||||
|
||||
extern EFI_GUID gEfiBootStateGuid;
|
||||
#endif
|
35
EdkModulePkg/Include/Guid/CapsuleVendor.h
Normal file
35
EdkModulePkg/Include/Guid/CapsuleVendor.h
Normal file
@@ -0,0 +1,35 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
CapsuleVendor.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Capsule update Guid definitions
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _EFI_CAPSULE_VENDOR_GUID_H_
|
||||
#define _EFI_CAPSULE_VENDOR_GUID_H_
|
||||
|
||||
//
|
||||
// Note -- This guid is used as a vendor GUID (depending on implementation)
|
||||
// for the capsule variable if the capsule pointer is passes through reset
|
||||
// via a variable.
|
||||
//
|
||||
#define EFI_CAPSULE_VENDOR_GUID \
|
||||
{ 0x711C703F, 0xC285, 0x4B10, { 0xA3, 0xB0, 0x36, 0xEC, 0xBD, 0x3C, 0x8B, 0xE2 } }
|
||||
|
||||
extern EFI_GUID gEfiCapsuleVendorGuid;
|
||||
|
||||
#endif // #ifndef _EFI_CAPSULE_VENDOR_GUID_H_
|
32
EdkModulePkg/Include/Guid/CompatibleMemoryTested.h
Normal file
32
EdkModulePkg/Include/Guid/CompatibleMemoryTested.h
Normal file
@@ -0,0 +1,32 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
CompatibleMemoryTested.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Tiano Guid used for all Compatible Memory Range Tested GUID.
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _COMPATIBLE_MEMORY_TESTED_GUID_H_
|
||||
#define _COMPATIBLE_MEMORY_TESTED_GUID_H_
|
||||
|
||||
#define EFI_COMPATIBLE_MEMORY_TESTED_PROTOCOL_GUID \
|
||||
{ \
|
||||
0x64c475ef, 0x344b, 0x492c, 0x93, 0xad, 0xab, 0x9e, 0xb4, 0x39, 0x50, 0x4 \
|
||||
}
|
||||
|
||||
extern EFI_GUID gEfiCompatibleMemoryTestedGuid;
|
||||
|
||||
#endif
|
29
EdkModulePkg/Include/Guid/ConsoleInDevice.h
Normal file
29
EdkModulePkg/Include/Guid/ConsoleInDevice.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
ConsoleInDevice.h
|
||||
|
||||
Abstract:
|
||||
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _CONSOLE_IN_DEVICE_H_
|
||||
#define _CONSOLE_IN_DEVICE_H_
|
||||
|
||||
#define EFI_CONSOLE_IN_DEVICE_GUID \
|
||||
{ 0xd3b36f2b, 0xd551, 0x11d4, {0x9a, 0x46, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } }
|
||||
|
||||
extern EFI_GUID gEfiConsoleInDeviceGuid;
|
||||
|
||||
#endif
|
29
EdkModulePkg/Include/Guid/ConsoleOutDevice.h
Normal file
29
EdkModulePkg/Include/Guid/ConsoleOutDevice.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
ConsoleOutDevice.h
|
||||
|
||||
Abstract:
|
||||
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _CONSOLE_OUT_DEVICE_H_
|
||||
#define _CONSOLE_OUT_DEVICE_H_
|
||||
|
||||
#define EFI_CONSOLE_OUT_DEVICE_GUID \
|
||||
{ 0xd3b36f2c, 0xd551, 0x11d4, {0x9a, 0x46, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } }
|
||||
|
||||
extern EFI_GUID gEfiConsoleOutDeviceGuid;
|
||||
|
||||
#endif
|
279
EdkModulePkg/Include/Guid/ExtendedSalGuid.h
Normal file
279
EdkModulePkg/Include/Guid/ExtendedSalGuid.h
Normal file
@@ -0,0 +1,279 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
ExtendedSalGuid.h
|
||||
|
||||
Abstract:
|
||||
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _EXTENDED_SAL_GUID_H_
|
||||
#define _EXTENDED_SAL_GUID_H_
|
||||
|
||||
//
|
||||
// Extended SAL Services protocol GUIDs
|
||||
//
|
||||
|
||||
#define EFI_EXTENDED_SAL_BASE_IO_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x5aea42b5, 0x31e1, 0x4515, {0xbc, 0x31, 0xb8, 0xd5, 0x25, 0x75, 0x65, 0xa6 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_STALL_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x53a58d06, 0xac27, 0x4d8c, {0xb5, 0xe9, 0xf0, 0x8a, 0x80, 0x65, 0x41, 0x70 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_LOCK_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x76b75c23, 0xfe4f, 0x4e17, {0xa2, 0xad, 0x1a, 0x65, 0x3d, 0xbb, 0x49, 0x4a } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_VIRTUAL_SERVICES_PROTOCOL_GUID \
|
||||
{ 0xc1a74056, 0x260e, 0x4871, {0xa0, 0x31, 0xe6, 0x45, 0xa6, 0x5b, 0x6e, 0x11 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_RTC_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x7e97a470, 0xefdb, 0x4d02, {0x8f, 0xce, 0x61, 0x90, 0xd2, 0x7b, 0xa2, 0x96 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_VARIABLE_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x4ecb6c53, 0xc641, 0x4370, {0x8c, 0xb2, 0x3b, 0x0e, 0x49, 0x6e, 0x83, 0x78 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_MTC_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x899afd18, 0x75e8, 0x408b, {0xa4, 0x1a, 0x6e, 0x2e, 0x7e, 0xcd, 0xf4, 0x54 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_RESET_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x7d019990, 0x8ce1, 0x46f5, {0xa7, 0x76, 0x3c, 0x51, 0x98, 0x67, 0x6a, 0xa0 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_STATUS_CODE_SERVICES_PROTOCOL_GUID \
|
||||
{ 0xdbd91d, 0x55e9, 0x420f, {0x96, 0x39, 0x5e, 0x9f, 0x84, 0x37, 0xb4, 0x4f } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_FV_BLOCK_SERVICES_PROTOCOL_GUID \
|
||||
{ 0xa2271df1, 0xbcbb, 0x4f1d, {0x98, 0xa9, 0x06, 0xbc, 0x17, 0x2f, 0x07, 0x1a } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_MP_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x697d81a2, 0xcf18, 0x4dc0, {0x9e, 0x0d, 0x06, 0x11, 0x3b, 0x61, 0x8a, 0x3f } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_PAL_SERVICES_PROTOCOL_GUID \
|
||||
{ 0xe1cd9d21, 0x0fc2, 0x438d, {0x97, 0x03, 0x04, 0xe6, 0x6d, 0x96, 0x1e, 0x57 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_BASE_SERVICES_PROTOCOL_GUID \
|
||||
{ 0xd9e9fa06, 0x0fe0, 0x41c3, {0x96, 0xfb, 0x83, 0x42, 0x5a, 0x33, 0x94, 0xf8 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_MCA_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x2a591128, 0x6cc7, 0x42b1, {0x8a, 0xf0, 0x58, 0x93, 0x3b, 0x68, 0x2d, 0xbb } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_PCI_SERVICES_PROTOCOL_GUID \
|
||||
{ 0xa46b1a31, 0xad66, 0x4905, {0x92, 0xf6, 0x2b, 0x46, 0x59, 0xdc, 0x30, 0x63 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_CACHE_SERVICES_PROTOCOL_GUID \
|
||||
{ 0xedc9494, 0x2743, 0x4ba5, { 0x88, 0x18, 0x0a, 0xef, 0x52, 0x13, 0xf1, 0x88 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_MCA_LOG_SERVICES_PROTOCOL_GUID \
|
||||
{ 0xcb3fd86e, 0x38a3, 0x4c03, {0x9a, 0x5c, 0x90, 0xcf, 0xa3, 0xa2, 0xab, 0x7a } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_ELOG_SERVICES_PROTOCOL_GUID \
|
||||
{ 0xd5e4ee5f, 0x3e0a, 0x453c, {0xa7, 0x25, 0xb6, 0x92, 0xbb, 0x6, 0x36, 0x5a } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_SENSOR_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x4a153b6e, 0x85a1, 0x4982, {0x98, 0xf4, 0x6a, 0x8c, 0xfc, 0xa4, 0xab, 0xa1 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_SM_COM_LAYER_SERVICES_PROTOCOL_GUID \
|
||||
{ 0x4356799, 0x81b7, 0x4e08, { 0xa3, 0x8d, 0xd9, 0x78, 0xfa, 0x47, 0xba, 0x42 } }
|
||||
|
||||
#define EFI_EXTENDED_SAL_SST_GUID \
|
||||
{ 0x38802700, 0x868a, 0x4b4e, {0x81, 0xd4, 0x4f, 0x1b, 0xdc, 0xcf, 0xb4, 0x6f } }
|
||||
|
||||
//
|
||||
// Extended Sal Proc Function IDs.
|
||||
//
|
||||
|
||||
//
|
||||
// BugBug: These enums are name colisions waiting to happen. They should all be
|
||||
// prefixed with Esal! It might be better to just make them #define, so
|
||||
// they would be all caps.
|
||||
//
|
||||
|
||||
typedef enum {
|
||||
IoRead,
|
||||
IoWrite,
|
||||
MemRead,
|
||||
MemWrite
|
||||
} EFI_EXTENDED_SAL_BASE_IO_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
Stall
|
||||
} EFI_EXTENDED_SAL_STALL_FUNC_ID;
|
||||
|
||||
|
||||
typedef enum {
|
||||
InitializeLockService,
|
||||
AcquireLockService,
|
||||
ReleaseLockService,
|
||||
MaxLockServiceFunctionId
|
||||
} EFI_EXTENDED_SAL_LOCK_SERVICES_FUNC_ID;
|
||||
|
||||
//
|
||||
// BugBug : Covert the first 3 functions into a lib functions
|
||||
// and move SalRegisterPhysicalAddress to SAL BASE Class
|
||||
//
|
||||
typedef enum {
|
||||
SetVirtualAddress,
|
||||
IsVirtual,
|
||||
IsEfiRuntime,
|
||||
SalRegisterPhysicalAddress
|
||||
} EFI_EXTENDED_SAL_VIRTUAL_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
GetTime,
|
||||
SetTime,
|
||||
GetWakeupTime,
|
||||
SetWakeupTime,
|
||||
GetRtcFreq,
|
||||
InitializeThreshold,
|
||||
BumpThresholdCount,
|
||||
GetThresholdCount
|
||||
} EFI_EXTENDED_SAL_RTC_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
EsalGetVariable,
|
||||
EsalGetNextVariableName,
|
||||
EsalSetVariable
|
||||
} EFI_EXTENDED_SAL_VARIABLE_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
GetNextHighMonotonicCount
|
||||
} EFI_EXTENDED_SAL_MTC_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
ResetSystem
|
||||
} EFI_EXTENDED_SAL_RESET_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
StatusCode
|
||||
} EFI_EXTENDED_SAL_STATUS_CODE_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
ReportStatusCodeService
|
||||
} EFI_EXTENDED_SAL_STATUS_CODE_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
Read,
|
||||
Write,
|
||||
EraseBlock,
|
||||
GetVolumeAttributes,
|
||||
SetVolumeAttributes,
|
||||
GetPhysicalAddress,
|
||||
GetBlockSize,
|
||||
EraseCustomBlockRange,
|
||||
} EFI_EXTENDED_SAL_FV_BLOCK_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
AddCpuData,
|
||||
RemoveCpuData,
|
||||
ModifyCpuData,
|
||||
GetCpuDataByID,
|
||||
GetCpuDataByIndex,
|
||||
SendIpi,
|
||||
CurrentProcInfo,
|
||||
NumProcessors,
|
||||
SetMinState,
|
||||
GetMinState
|
||||
} EFI_EXTENDED_SAL_MP_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
PalProc,
|
||||
SetNewPalEntry,
|
||||
GetNewPalEntry
|
||||
} EFI_EXTENDED_SAL_PAL_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
SalSetVectors,
|
||||
SalMcRendez,
|
||||
SalMcSetParams,
|
||||
EsalGetVectors,
|
||||
EsalMcGetParams,
|
||||
EsalMcGetMcParams,
|
||||
EsalGetMcCheckinFlags,
|
||||
EsalGetPlatformBaseFreq
|
||||
} EFI_EXTENDED_SAL_BASE_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
McaGetStateInfo,
|
||||
McaRegisterCpu
|
||||
} EFI_EXTENDED_SAL_MCA_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
SalPciConfigRead,
|
||||
SalPciConfigWrite
|
||||
} EFI_EXTENDED_SAL_PCI_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
SalCacheInit,
|
||||
SalCacheFlush
|
||||
} EFI_EXTENDED_SAL_CACHE_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
SalGetStateInfo,
|
||||
SalGetStateInfoSize,
|
||||
SalClearStateInfo,
|
||||
EsalGetStateBuffer,
|
||||
EsalSaveStateBuffer
|
||||
} EFI_EXTENDED_SAL_MCA_LOG_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
SalSetEventLogData,
|
||||
SalGetEventLogData,
|
||||
SalEraseEventLogData,
|
||||
SalActivateEventLogData
|
||||
} EFI_EXTENDED_SAL_ELOG_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
EsalGetComControllerInfo,
|
||||
EsalSendComData,
|
||||
EsalReceiveComData
|
||||
} EFI_EXTENDED_SAL_SM_COM_LAYER_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
SalUpdatePal
|
||||
} EFI_EXTENDED_SAL_UPDATE_PAL_SERVICES_FUNC_ID;
|
||||
|
||||
typedef enum {
|
||||
EsalReadSensorInfo,
|
||||
EsalReadSensorStatus,
|
||||
EsalRearmSensor,
|
||||
EsalReadSensorData
|
||||
} EFI_EXTENDED_SAL_SENSOR_SERVICES_FUNC_ID;
|
||||
|
||||
typedef struct {
|
||||
UINT64 ProtoData;
|
||||
} ESAL_GUID_DUMMY_PROTOCOL;
|
||||
|
||||
extern EFI_GUID gEfiExtendedSalBaseIoServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalStallServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalLockServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalVirtualServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalRtcServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalVariableServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalMtcServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalResetServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalStatusCodeServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalFvBlockServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalMpServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalPalServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalBaseServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalMcaServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalPciServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalCacheServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalMcaLogServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalElogServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalSensorServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalSmComLayerServicesProtocolGuid;
|
||||
extern EFI_GUID gEfiExtendedSalSstGuid;
|
||||
|
||||
|
||||
#endif
|
33
EdkModulePkg/Include/Guid/FlashMapHob.h
Normal file
33
EdkModulePkg/Include/Guid/FlashMapHob.h
Normal file
@@ -0,0 +1,33 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
FlashMapHob.h
|
||||
|
||||
Abstract:
|
||||
|
||||
GUID used for Flash Map HOB entries in the HOB list.
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _FLASH_MAP_HOB_GUID_H_
|
||||
#define _FLASH_MAP_HOB_GUID_H_
|
||||
|
||||
//
|
||||
// Definitions for Flash Map
|
||||
//
|
||||
#define EFI_FLASH_MAP_HOB_GUID \
|
||||
{ 0xb091e7d2, 0x5a0, 0x4198, {0x94, 0xf0, 0x74, 0xb7, 0xb8, 0xc5, 0x54, 0x59 } }
|
||||
|
||||
extern EFI_GUID gEfiFlashMapHobGuid;
|
||||
|
||||
#endif // _FLASH_MAP_HOB_GUID_H_
|
28
EdkModulePkg/Include/Guid/HotPlugDevice.h
Normal file
28
EdkModulePkg/Include/Guid/HotPlugDevice.h
Normal file
@@ -0,0 +1,28 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
HotPlugDevice.h
|
||||
|
||||
Abstract:
|
||||
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _HOT_PLUG_DEVICE_H_
|
||||
#define _HOT_PLUG_DEVICE_H_
|
||||
|
||||
#define HOT_PLUG_DEVICE_GUID \
|
||||
{ 0x220ac432, 0x1d43, 0x49e5, {0xa7, 0x4f, 0x4c, 0x9d, 0xa6, 0x7a, 0xd2, 0x3b } }
|
||||
|
||||
extern EFI_GUID gEfiHotPlugDeviceGuid;
|
||||
#endif
|
35
EdkModulePkg/Include/Guid/MemoryTypeInformation.h
Normal file
35
EdkModulePkg/Include/Guid/MemoryTypeInformation.h
Normal file
@@ -0,0 +1,35 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
MemoryTypeInformation.h
|
||||
|
||||
Abstract:
|
||||
GUID used for Memory Type Information entries in the HOB list.
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef __MEMORY_TYPE_INFORMATION_GUID_H__
|
||||
#define __MEMORY_TYPE_INFORMATION_GUID_H__
|
||||
|
||||
#define EFI_MEMORY_TYPE_INFORMATION_GUID \
|
||||
{ 0x4c19049f,0x4137,0x4dd3, { 0x9c,0x10,0x8b,0x97,0xa8,0x3f,0xfd,0xfa } }
|
||||
|
||||
#define EFI_MEMORY_TYPE_INFORMATION_VARIABLE_NAME L"MemoryTypeInformation"
|
||||
|
||||
extern EFI_GUID gEfiMemoryTypeInformationGuid;
|
||||
|
||||
typedef struct {
|
||||
UINT32 Type;
|
||||
UINT32 NumberOfPages;
|
||||
} EFI_MEMORY_TYPE_INFORMATION;
|
||||
|
||||
#endif
|
30
EdkModulePkg/Include/Guid/MiniShellFile.h
Normal file
30
EdkModulePkg/Include/Guid/MiniShellFile.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
EfiShell.h
|
||||
|
||||
Abstract:
|
||||
|
||||
FFS Filename for EFI Shell
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _MINISHELLFILE_H_
|
||||
#define _MINISHELLFILE_H_
|
||||
|
||||
#define EFI_MINI_SHELL_FILE_GUID \
|
||||
{ 0x86ad232b, 0xd33a, 0x465c, {0xbf, 0x5f, 0x41, 0x37, 0xb, 0xa9, 0x2f, 0xe2 } }
|
||||
|
||||
extern EFI_GUID gEfiMiniShellFileGuid;
|
||||
|
||||
#endif
|
30
EdkModulePkg/Include/Guid/PciHotplugDevice.h
Normal file
30
EdkModulePkg/Include/Guid/PciHotplugDevice.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
PciHotplugDevice.h
|
||||
|
||||
Abstract:
|
||||
|
||||
GUIDs used to indicate the device is Pccard hotplug device
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _PCI_HOTPLUG_DEVICE_GUID_H_
|
||||
#define _PCI_HOTPLUG_DEVICE_GUID_H_
|
||||
|
||||
#define EFI_PCI_HOTPLUG_DEVICE_GUID \
|
||||
{ 0x0b280816, 0x52e7, 0x4e51, {0xaa, 0x57, 0x11, 0xbd, 0x41, 0xcb, 0xef, 0xc3 } }
|
||||
|
||||
extern EFI_GUID gEfiPciHotplugDeviceGuid;
|
||||
|
||||
#endif
|
46
EdkModulePkg/Include/Guid/PciOptionRomTable.h
Normal file
46
EdkModulePkg/Include/Guid/PciOptionRomTable.h
Normal file
@@ -0,0 +1,46 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
PciOptionRomTable.h
|
||||
|
||||
Abstract:
|
||||
|
||||
GUID and data structure used to describe the list of PCI Option ROMs present in a system.
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _PCI_OPTION_ROM_TABLE_GUID_H_
|
||||
|
||||
#define EFI_PCI_OPTION_ROM_TABLE_GUID \
|
||||
{ 0x7462660f, 0x1cbd, 0x48da, {0xad, 0x11, 0x91, 0x71, 0x79, 0x13, 0x83, 0x1c } }
|
||||
|
||||
extern EFI_GUID gEfiPciOptionRomTableGuid;
|
||||
|
||||
typedef struct {
|
||||
EFI_PHYSICAL_ADDRESS RomAddress;
|
||||
EFI_MEMORY_TYPE MemoryType;
|
||||
UINT32 RomLength;
|
||||
UINT32 Seg;
|
||||
UINT8 Bus;
|
||||
UINT8 Dev;
|
||||
UINT8 Func;
|
||||
BOOLEAN ExecutedLegacyBiosImage;
|
||||
BOOLEAN DontLoadEfiRom;
|
||||
} EFI_PCI_OPTION_ROM_DESCRIPTOR;
|
||||
|
||||
typedef struct {
|
||||
UINT64 PciOptionRomCount;
|
||||
EFI_PCI_OPTION_ROM_DESCRIPTOR *PciOptionRomDescriptors;
|
||||
} EFI_PCI_OPTION_ROM_TABLE;
|
||||
|
||||
#endif
|
67
EdkModulePkg/Include/Guid/PeiPeCoffLoader.h
Normal file
67
EdkModulePkg/Include/Guid/PeiPeCoffLoader.h
Normal file
@@ -0,0 +1,67 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
PeiPeCoffLoader.h
|
||||
|
||||
Abstract:
|
||||
GUID for the PE/COFF Loader APIs shared between PEI and DXE
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef __PEI_PE_COFF_LOADER_H__
|
||||
#define __PEI_PE_COFF_LOADER_H__
|
||||
|
||||
|
||||
#define EFI_PEI_PE_COFF_LOADER_GUID \
|
||||
{ 0xd8117cff, 0x94a6, 0x11d4, {0x9a, 0x3a, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } }
|
||||
|
||||
typedef struct _EFI_PEI_PE_COFF_LOADER_PROTOCOL EFI_PEI_PE_COFF_LOADER_PROTOCOL;
|
||||
|
||||
|
||||
typedef
|
||||
EFI_STATUS
|
||||
(EFIAPI *EFI_PEI_PE_COFF_LOADER_GET_IMAGE_INFO) (
|
||||
IN EFI_PEI_PE_COFF_LOADER_PROTOCOL *This,
|
||||
IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
|
||||
);
|
||||
|
||||
typedef
|
||||
EFI_STATUS
|
||||
(EFIAPI *EFI_PEI_PE_COFF_LOADER_LOAD_IMAGE) (
|
||||
IN EFI_PEI_PE_COFF_LOADER_PROTOCOL *This,
|
||||
IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
|
||||
);
|
||||
|
||||
typedef
|
||||
EFI_STATUS
|
||||
(EFIAPI *EFI_PEI_PE_COFF_LOADER_RELOCATE_IMAGE) (
|
||||
IN EFI_PEI_PE_COFF_LOADER_PROTOCOL *This,
|
||||
IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
|
||||
);
|
||||
|
||||
typedef
|
||||
EFI_STATUS
|
||||
(EFIAPI *EFI_PEI_PE_COFF_LOADER_UNLOAD_IMAGE) (
|
||||
IN EFI_PEI_PE_COFF_LOADER_PROTOCOL *This,
|
||||
IN PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
|
||||
);
|
||||
|
||||
struct _EFI_PEI_PE_COFF_LOADER_PROTOCOL {
|
||||
EFI_PEI_PE_COFF_LOADER_GET_IMAGE_INFO GetImageInfo;
|
||||
EFI_PEI_PE_COFF_LOADER_LOAD_IMAGE LoadImage;
|
||||
EFI_PEI_PE_COFF_LOADER_RELOCATE_IMAGE RelocateImage;
|
||||
EFI_PEI_PE_COFF_LOADER_UNLOAD_IMAGE UnloadImage;
|
||||
};
|
||||
|
||||
extern EFI_GUID gEfiPeiPeCoffLoaderGuid;
|
||||
|
||||
#endif
|
60
EdkModulePkg/Include/Guid/PeiPerformanceHob.h
Normal file
60
EdkModulePkg/Include/Guid/PeiPerformanceHob.h
Normal file
@@ -0,0 +1,60 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
PeiPerformanceHob.h
|
||||
|
||||
Abstract:
|
||||
|
||||
GUIDs used for PEI Performance HOB data structures
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef __PEI_PERFORMANCE_HOB_H__
|
||||
#define __PEI_PERFORMANCE_HOB_H__
|
||||
|
||||
//
|
||||
// This is the GUID of PEI performance HOB
|
||||
//
|
||||
#define PEI_PERFORMANCE_HOB_GUID \
|
||||
{ 0xec4df5af, 0x4395, 0x4cc9, { 0x94, 0xde, 0x77, 0x50, 0x6d, 0x12, 0xc7, 0xb8 } }
|
||||
|
||||
//
|
||||
// PEI_PERFORMANCE_STRING_SIZE must be a multiple of 8.
|
||||
//
|
||||
#define PEI_PERFORMANCE_STRING_SIZE 8
|
||||
#define PEI_PERFORMANCE_STRING_LENGTH (PEI_PERFORMANCE_STRING_SIZE - 1)
|
||||
//
|
||||
// Bugbug: This macro will be replaced by a binary patchable PCD entry in EdkModulePkg
|
||||
//
|
||||
#define MAX_PEI_PERFORMANCE_LOG_ENTRIES 28
|
||||
|
||||
typedef struct {
|
||||
EFI_PHYSICAL_ADDRESS Handle;
|
||||
CHAR8 Token[PEI_PERFORMANCE_STRING_SIZE];
|
||||
CHAR8 Module[PEI_PERFORMANCE_STRING_SIZE];
|
||||
UINT64 StartTimeStamp;
|
||||
UINT64 EndTimeStamp;
|
||||
} PEI_PERFORMANCE_LOG_ENTRY;
|
||||
|
||||
//
|
||||
// The header must be aligned at 8 bytes.
|
||||
//
|
||||
typedef struct {
|
||||
UINT32 NumberOfEntries;
|
||||
UINT32 Reserved;
|
||||
} PEI_PERFORMANCE_LOG_HEADER;
|
||||
|
||||
|
||||
extern EFI_GUID gPeiPerformanceHobGuid;
|
||||
|
||||
#endif
|
29
EdkModulePkg/Include/Guid/PrimaryConsoleInDevice.h
Normal file
29
EdkModulePkg/Include/Guid/PrimaryConsoleInDevice.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
PrimaryConsoleInDevice.h
|
||||
|
||||
Abstract:
|
||||
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _PRIMARY_CONSOLE_IN_DEVICE_H_
|
||||
#define _PRIMARY_CONSOLE_IN_DEVICE_H_
|
||||
|
||||
#define EFI_PRIMARY_CONSOLE_IN_DEVICE_GUID \
|
||||
{ 0xe451dcbe, 0x96a1, 0x4729, {0xa5, 0xcf, 0x6b, 0x9c, 0x2c, 0xff, 0x47, 0xfd } }
|
||||
|
||||
extern EFI_GUID gEfiPrimaryConsoleInDeviceGuid;
|
||||
|
||||
#endif
|
28
EdkModulePkg/Include/Guid/PrimaryConsoleOutDevice.h
Normal file
28
EdkModulePkg/Include/Guid/PrimaryConsoleOutDevice.h
Normal file
@@ -0,0 +1,28 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
PrimaryConsoleOutDevice.h
|
||||
|
||||
Abstract:
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _PRIMARY_CONSOLE_OUT_DEVICE_H_
|
||||
#define _PRIMARY_CONSOLE_OUT_DEVICE_H_
|
||||
|
||||
#define EFI_PRIMARY_CONSOLE_OUT_DEVICE_GUID \
|
||||
{ 0x62bdf38a, 0xe3d5, 0x492c, {0x95, 0xc, 0x23, 0xa7, 0xf6, 0x6e, 0x67, 0x2e } }
|
||||
|
||||
extern EFI_GUID gEfiPrimaryConsoleOutDeviceGuid;
|
||||
|
||||
#endif
|
28
EdkModulePkg/Include/Guid/PrimaryStandardErrorDevice.h
Normal file
28
EdkModulePkg/Include/Guid/PrimaryStandardErrorDevice.h
Normal file
@@ -0,0 +1,28 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
PrimaryStandardErrorDevice.h
|
||||
|
||||
Abstract:
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _PRIMARY_STANDARD_ERROR_DEVICE_H_
|
||||
#define _PRIMARY_STANDARD_ERROR_DEVICE_H_
|
||||
|
||||
#define EFI_PRIMARY_STANDARD_ERROR_DEVICE_GUID \
|
||||
{ 0x5a68191b, 0x9b97, 0x4752, {0x99, 0x46, 0xe3, 0x6a, 0x5d, 0xa9, 0x42, 0xb1 } }
|
||||
|
||||
extern EFI_GUID gEfiPrimaryStandardErrorDeviceGuid;
|
||||
|
||||
#endif
|
31
EdkModulePkg/Include/Guid/ShellFile.h
Normal file
31
EdkModulePkg/Include/Guid/ShellFile.h
Normal file
@@ -0,0 +1,31 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
EfiShell.h
|
||||
|
||||
Abstract:
|
||||
|
||||
FFS Filename for EFI Shell
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _SHELLFILE_H_
|
||||
#define _SHELLFILE_H_
|
||||
|
||||
#define EFI_SHELL_FILE_GUID \
|
||||
{ 0xc57ad6b7, 0x0515, 0x40a8, {0x9d, 0x21, 0x55, 0x16, 0x52, 0x85, 0x4e, 0x37 } }
|
||||
|
||||
|
||||
extern EFI_GUID gEfiShellFileGuid;
|
||||
|
||||
#endif
|
29
EdkModulePkg/Include/Guid/StandardErrorDevice.h
Normal file
29
EdkModulePkg/Include/Guid/StandardErrorDevice.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
StandardErrorDevice.h
|
||||
|
||||
Abstract:
|
||||
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _STANDARD_ERROR_DEVICE_H_
|
||||
#define _STANDARD_ERROR_DEVICE_H_
|
||||
|
||||
#define EFI_STANDARD_ERROR_DEVICE_GUID \
|
||||
{ 0xd3b36f2d, 0xd551, 0x11d4, {0x9a, 0x46, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } }
|
||||
|
||||
extern EFI_GUID gEfiStandardErrorDeviceGuid;
|
||||
|
||||
#endif
|
33
EdkModulePkg/Include/Guid/StatusCode.h
Normal file
33
EdkModulePkg/Include/Guid/StatusCode.h
Normal file
@@ -0,0 +1,33 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
StatusCode.h
|
||||
|
||||
Abstract:
|
||||
|
||||
GUID used to identify Data Hub records that originate from the Tiano
|
||||
ReportStatusCode API.
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef _STATUS_CODE_H__
|
||||
#define _STATUS_CODE_H__
|
||||
|
||||
#define EFI_STATUS_CODE_GUID \
|
||||
{ \
|
||||
0xd083e94c, 0x6560, 0x42e4, {0xb6, 0xd4, 0x2d, 0xf7, 0x5a, 0xdf, 0x6a, 0x2a } \
|
||||
}
|
||||
|
||||
extern EFI_GUID gEfiStatusCodeGuid;
|
||||
|
||||
#endif
|
30
EdkModulePkg/Include/Guid/StatusCodeCallerId.h
Normal file
30
EdkModulePkg/Include/Guid/StatusCodeCallerId.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
StatusCodeCallerId.h
|
||||
|
||||
Abstract:
|
||||
GUID used to identify id for the caller who is initiating the Status Code.
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef __STATUS_CODE_CALLER_ID_H__
|
||||
#define __STATUS_CODE_CALLER_ID_H__
|
||||
|
||||
|
||||
#define EFI_STANDARD_CALLER_ID_GUID \
|
||||
{0xC9DCF469, 0xA7C4, 0x11D5, {0x87, 0xDA, 0x00, 0x06, 0x29, 0x45, 0xC3, 0xB9} }
|
||||
|
||||
extern EFI_GUID gEfiCallerIdGuid;
|
||||
|
||||
|
||||
#endif
|
45
EdkModulePkg/Include/Guid/SystemNvDataGuid.h
Normal file
45
EdkModulePkg/Include/Guid/SystemNvDataGuid.h
Normal file
@@ -0,0 +1,45 @@
|
||||
/*++
|
||||
|
||||
Copyright (c) 2006, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
SystemNvDataGuid.h
|
||||
|
||||
Abstract:
|
||||
|
||||
GUIDs used for System Non Volatile HOB entries in the in the HOB list and FV Guids carrying
|
||||
the System specific information.
|
||||
|
||||
--*/
|
||||
|
||||
#ifndef __SYSTEM_NV_DATA_GUID_H__
|
||||
#define __SYSTEM_NV_DATA_GUID_H__
|
||||
|
||||
#define EFI_SYSTEM_NV_DATA_FV_GUID \
|
||||
{0xfff12b8d, 0x7696, 0x4c8b, {0xa9, 0x85, 0x27, 0x47, 0x7, 0x5b, 0x4f, 0x50} }
|
||||
|
||||
#define EFI_SYSTEM_NV_DATA_HOB_GUID \
|
||||
{0xd6e5092d, 0xc7b2, 0x4872, {0xaf, 0x66, 0xfd, 0xc0, 0xe6, 0xf9, 0x5e, 0x78} }
|
||||
|
||||
typedef struct {
|
||||
EFI_GUID SystemNvDataHobGuid;
|
||||
EFI_GUID SystemNvDataFvGuid;
|
||||
EFI_LBA StartLba;
|
||||
UINTN StartLbaOffset;
|
||||
EFI_LBA EndLba;
|
||||
UINTN EndLbaOffset;
|
||||
UINT32 DataTypeSignature;
|
||||
} NV_SYSTEM_DATA_GUID_TYPE;
|
||||
|
||||
extern EFI_GUID gEfiSystemNvDataHobGuid;
|
||||
extern EFI_GUID gEfiSystemNvDataFvGuid;
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user