diff --git a/EdkUnixPkg/EdkUnixPkg.spd b/EdkUnixPkg/EdkUnixPkg.spd
index 7e9ff8fab6..c4360e89f2 100644
--- a/EdkUnixPkg/EdkUnixPkg.spd
+++ b/EdkUnixPkg/EdkUnixPkg.spd
@@ -102,7 +102,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Library/DxeUnixLib/DxeUnixLib.msa
Library/EdkUnixPeiPeCoffGetEntryPointLib/EdkUnixPeiPeCoffGetEntryPointLib.msa
Library/UnixPeCoffLoaderLib/UnixPeCoffLoaderLib.msa
- Library/UnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.msa
+ Library/PeiUnixOemHookStatusCodeLib/PeiUnixOemHookStatusCodeLib.msa
+ Library/DxeUnixOemHookStatusCodeLib/DxeUnixOemHookStatusCodeLib.msa
Pei/AutoScan/UnixAutoScan.msa
Pei/BootMode/BootMode.msa
Pei/FirmwareVolume/UnixFwh.msa
@@ -325,15 +326,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
such as "My EFI Console".
The item type of this PCD can only be "DYNAMIC".
-
- PcdUnixStatusCodeLibUseForPei
- 0x0000100b
- gEfiEdkUnixPkgTokenSpaceGuid
- BOOLEAN
- FEATURE_FLAG
- FALSE
- Select which type of driver the library links against.
-
PcdUnixMemorySizeForSecMain
0x0000100c
diff --git a/EdkUnixPkg/Library/UnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.msa b/EdkUnixPkg/Library/DxeUnixOemHookStatusCodeLib/DxeUnixOemHookStatusCodeLib.msa
similarity index 62%
rename from EdkUnixPkg/Library/UnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.msa
rename to EdkUnixPkg/Library/DxeUnixOemHookStatusCodeLib/DxeUnixOemHookStatusCodeLib.msa
index 859390274a..7e9aeebd85 100644
--- a/EdkUnixPkg/Library/UnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.msa
+++ b/EdkUnixPkg/Library/DxeUnixOemHookStatusCodeLib/DxeUnixOemHookStatusCodeLib.msa
@@ -1,43 +1,35 @@
- UnixOemHookStatusCodeLib
- PEIM
- f3c32014-8985-11db-bae7-0040d02b1835
+ DxeUnixOemHookStatusCodeLib
+ DXE_DRIVER
+ 0BB6F68A-2FC5-4394-9375-2B43F1C34B59
1.0
Memory Status Code Library for UEFI drivers
Lib to provide memory journal status code reporting Routines
- Copyright (c) 2006, Intel Corporation.
-
- All rights reserved.
+ Copyright (c) 2007, Intel Corporation.
+ All rights reserved.
This software and associated documentation (if any) is furnished
under a license and may only be used or copied in accordance
with the terms of the license. Except as permitted by such
license, no part of this software or documentation may be
reproduced, stored in a retrieval system, or transmitted in any
form or by any means without the express written consent of
- Intel Corporation.
-
+ Intel Corporation.
FRAMEWORK_BUILD_PACKAGING_SPECIFICATION 0x00000052
IA32
false
- UnixOemHookStatusCodeLib
+ DxeUnixOemHookStatusCodeLib
-
+
OemHookStatusCodeLib
-
- BaseLib
-
DebugLib
-
- PcdLib
-
HobLib
@@ -50,12 +42,6 @@
ReportStatusCodeLib
-
- PeiServicesLib
-
-
- UnixLib
-
UnixOemHookStatusCodeLib.c
@@ -70,20 +56,13 @@
gEfiUnixThunkProtocolGuid
-
-
- gPeiUnixThunkPpiGuid
-
-
+
+
+ gEfiStatusCodeSpecificDataGuid
+
+
EFI_SPECIFICATION_VERSION 0x00020000
EDK_RELEASE_VERSION 0x00020000
-
-
- PcdUnixStatusCodeLibUseForPei
- gEfiEdkUnixPkgTokenSpaceGuid
- Select which type of driver the library links against.
-
-
diff --git a/EdkUnixPkg/Library/DxeUnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.c b/EdkUnixPkg/Library/DxeUnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.c
new file mode 100644
index 0000000000..0cfad2601f
--- /dev/null
+++ b/EdkUnixPkg/Library/DxeUnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.c
@@ -0,0 +1,227 @@
+/** @file
+ OEM hook status code library functions with no library constructor/destructor
+
+ 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: UnixOemHookStatusCodeLib.c
+
+**/
+
+//
+// Cache of UnixThunk protocol
+//
+STATIC
+EFI_UNIX_THUNK_PROTOCOL *mUnix;
+
+//
+// Cache of standard output handle .
+//
+STATIC
+int mStdOut;
+
+/**
+
+ Initialize OEM status code device .
+
+ @return Always return EFI_SUCCESS.
+
+**/
+EFI_STATUS
+EFIAPI
+OemHookStatusCodeInitialize (
+ VOID
+ )
+{
+ EFI_HOB_GUID_TYPE *GuidHob;
+
+ //
+ // Retrieve UnixThunkProtocol from GUID'ed HOB
+ //
+ GuidHob = GetFirstGuidHob (&gEfiUnixThunkProtocolGuid);
+ ASSERT (GuidHob != NULL);
+ mUnix = (EFI_UNIX_THUNK_PROTOCOL *)(*(UINTN *)(GET_GUID_HOB_DATA (GuidHob)));
+ ASSERT (mUnix != NULL);
+
+ //
+ // Cache standard output handle.
+ //
+ mStdOut = 1;
+
+ return EFI_SUCCESS;
+}
+
+/**
+ Report status code to OEM device.
+
+ @param CodeType Indicates the type of status code being reported. Type EFI_STATUS_CODE_TYPE is defined in "Related Definitions" below.
+
+ @param Value Describes the current status of a hardware or software entity.
+ This included information about the class and subclass that is used to classify the entity
+ as well as an operation. For progress codes, the operation is the current activity.
+ For error codes, it is the exception. For debug codes, it is not defined at this time.
+ Type EFI_STATUS_CODE_VALUE is defined in "Related Definitions" below.
+ Specific values are discussed in the Intel? Platform Innovation Framework for EFI Status Code Specification.
+
+ @param Instance The enumeration of a hardware or software entity within the system.
+ A system may contain multiple entities that match a class/subclass pairing.
+ The instance differentiates between them. An instance of 0 indicates that instance information is unavailable,
+ not meaningful, or not relevant. Valid instance numbers start with 1.
+
+
+ @param CallerId This optional parameter may be used to identify the caller.
+ This parameter allows the status code driver to apply different rules to different callers.
+ Type EFI_GUID is defined in InstallProtocolInterface() in the EFI 1.10 Specification.
+
+
+ @param Data This optional parameter may be used to pass additional data
+
+ @return The function always return EFI_SUCCESS.
+
+**/
+EFI_STATUS
+EFIAPI
+OemHookStatusCodeReport (
+ IN EFI_STATUS_CODE_TYPE CodeType,
+ IN EFI_STATUS_CODE_VALUE Value,
+ IN UINT32 Instance,
+ IN EFI_GUID *CallerId, OPTIONAL
+ IN EFI_STATUS_CODE_DATA *Data OPTIONAL
+ )
+{
+ CHAR8 *Filename;
+ CHAR8 *Description;
+ CHAR8 *Format;
+ CHAR8 Buffer[EFI_STATUS_CODE_DATA_MAX_SIZE];
+ UINT32 ErrorLevel;
+ UINT32 LineNumber;
+ UINTN CharCount;
+ VA_LIST Marker;
+ EFI_DEBUG_INFO *DebugInfo;
+
+ Buffer[0] = '\0';
+
+ if (Data != NULL &&
+ ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
+ //
+ // Print ASSERT() information into output buffer.
+ //
+ CharCount = AsciiSPrint (
+ Buffer,
+ EFI_STATUS_CODE_DATA_MAX_SIZE,
+ "\n\rASSERT!: %a (%d): %a\n\r",
+ Filename,
+ LineNumber,
+ Description
+ );
+
+ //
+ // Callout to standard output.
+ //
+ mUnix->Write (
+ mStdOut,
+ Buffer,
+ CharCount
+ );
+
+ return EFI_SUCCESS;
+
+ } else if (Data != NULL &&
+ ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
+ //
+ // Print DEBUG() information into output buffer.
+ //
+ CharCount = AsciiVSPrint (
+ Buffer,
+ EFI_STATUS_CODE_DATA_MAX_SIZE,
+ Format,
+ Marker
+ );
+ } else if (Data != NULL &&
+ CompareGuid (&Data->Type, &gEfiStatusCodeSpecificDataGuid) &&
+ (CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_DEBUG_CODE) {
+ //
+ // Print specific data into output buffer.
+ //
+ DebugInfo = (EFI_DEBUG_INFO *) (Data + 1);
+ Marker = (VA_LIST) (DebugInfo + 1);
+ Format = (CHAR8 *) (((UINT64 *) Marker) + 12);
+
+ CharCount = AsciiVSPrint (Buffer, EFI_STATUS_CODE_DATA_MAX_SIZE, Format, Marker);
+ } else if ((CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_ERROR_CODE) {
+ //
+ // Print ERROR information into output buffer.
+ //
+ CharCount = AsciiSPrint (
+ Buffer,
+ EFI_STATUS_CODE_DATA_MAX_SIZE,
+ "ERROR: C%x:V%x I%x",
+ CodeType,
+ Value,
+ Instance
+ );
+
+ //
+ // Make sure we don't try to print values that weren't intended to be printed, especially NULL GUID pointers.
+ //
+
+ if (CallerId != NULL) {
+ CharCount += AsciiSPrint (
+ &Buffer[CharCount - 1],
+ (EFI_STATUS_CODE_DATA_MAX_SIZE - (sizeof (Buffer[0]) * CharCount)),
+ " %g",
+ CallerId
+ );
+ }
+
+ if (Data != NULL) {
+ CharCount += AsciiSPrint (
+ &Buffer[CharCount - 1],
+ (EFI_STATUS_CODE_DATA_MAX_SIZE - (sizeof (Buffer[0]) * CharCount)),
+ " %x",
+ Data
+ );
+ }
+
+ CharCount += AsciiSPrint (
+ &Buffer[CharCount - 1],
+ (EFI_STATUS_CODE_DATA_MAX_SIZE - (sizeof (Buffer[0]) * CharCount)),
+ "\n\r"
+ );
+ } else if ((CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_PROGRESS_CODE) {
+ CharCount = AsciiSPrint (
+ Buffer,
+ EFI_STATUS_CODE_DATA_MAX_SIZE,
+ "PROGRESS CODE: V%x I%x\n\r",
+ Value,
+ Instance
+ );
+ } else {
+ CharCount = AsciiSPrint (
+ Buffer,
+ EFI_STATUS_CODE_DATA_MAX_SIZE,
+ "Undefined: C%x:V%x I%x\n\r",
+ CodeType,
+ Value,
+ Instance
+ );
+ }
+
+ //
+ // Callout to standard output.
+ //
+ mUnix->Write (
+ mStdOut,
+ Buffer,
+ CharCount
+ );
+
+ return EFI_SUCCESS;
+}
+
diff --git a/EdkUnixPkg/Library/PeiUnixOemHookStatusCodeLib/PeiUnixOemHookStatusCodeLib.msa b/EdkUnixPkg/Library/PeiUnixOemHookStatusCodeLib/PeiUnixOemHookStatusCodeLib.msa
new file mode 100644
index 0000000000..f80a105736
--- /dev/null
+++ b/EdkUnixPkg/Library/PeiUnixOemHookStatusCodeLib/PeiUnixOemHookStatusCodeLib.msa
@@ -0,0 +1,68 @@
+
+
+
+ PeiUnixOemHookStatusCodeLib
+ PEIM
+ 23E378C1-B199-49ad-9F14-DAF5D3C7EC28
+ 1.0
+ Memory Status Code Library for UEFI drivers
+ Lib to provide memory journal status code reporting Routines
+ Copyright (c) 2007, Intel Corporation.
+ All rights reserved.
+ This software and associated documentation (if any) is furnished
+ under a license and may only be used or copied in accordance
+ with the terms of the license. Except as permitted by such
+ license, no part of this software or documentation may be
+ reproduced, stored in a retrieval system, or transmitted in any
+ form or by any means without the express written consent of
+ Intel Corporation.
+ FRAMEWORK_BUILD_PACKAGING_SPECIFICATION 0x00000052
+
+
+ IA32
+ false
+ PeiUnixOemHookStatusCodeLib
+
+
+
+ OemHookStatusCodeLib
+
+
+ DebugLib
+
+
+ PrintLib
+
+
+ BaseMemoryLib
+
+
+ ReportStatusCodeLib
+
+
+ PeiServicesLib
+
+
+
+ UnixOemHookStatusCodeLib.c
+
+
+
+
+
+
+
+
+ gPeiUnixThunkPpiGuid
+
+
+
+
+ gEfiStatusCodeSpecificDataGuid
+
+
+
+ EFI_SPECIFICATION_VERSION 0x00020000
+ EDK_RELEASE_VERSION 0x00020000
+
+
diff --git a/EdkUnixPkg/Library/UnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.c b/EdkUnixPkg/Library/PeiUnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.c
similarity index 87%
rename from EdkUnixPkg/Library/UnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.c
rename to EdkUnixPkg/Library/PeiUnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.c
index 34f5e0dc51..a7dada2fe8 100644
--- a/EdkUnixPkg/Library/UnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.c
+++ b/EdkUnixPkg/Library/PeiUnixOemHookStatusCodeLib/UnixOemHookStatusCodeLib.c
@@ -42,32 +42,21 @@ OemHookStatusCodeInitialize (
PEI_UNIX_THUNK_PPI *UnixThunkPpi;
EFI_STATUS Status;
- if (FeaturePcdGet (PcdUnixStatusCodeLibUseForPei)) {
- //
- // Locate NtThunkPpi for retrieving standard output handle
- //
- Status = PeiServicesLocatePpi (
- &gPeiUnixThunkPpiGuid,
- 0,
- NULL,
- (VOID **) &UnixThunkPpi
- );
+
+ //
+ // Locate Unix ThunkPpi for retrieving standard output handle
+ //
+ Status = PeiServicesLocatePpi (
+ &gPeiUnixThunkPpiGuid,
+ 0,
+ NULL,
+ (VOID **) &UnixThunkPpi
+ );
- ASSERT_EFI_ERROR (Status);
-
- mUnix = (EFI_UNIX_THUNK_PROTOCOL *) UnixThunkPpi->UnixThunk ();
- } else {
- EFI_HOB_GUID_TYPE *GuidHob;
-
- //
- // Retrieve UnixThunkProtocol from GUID'ed HOB
- //
- GuidHob = GetFirstGuidHob (&gEfiUnixThunkProtocolGuid);
- ASSERT (GuidHob != NULL);
- mUnix = (EFI_UNIX_THUNK_PROTOCOL *)(*(UINTN *)(GET_GUID_HOB_DATA (GuidHob)));
- ASSERT (mUnix != NULL);
- }
+ ASSERT_EFI_ERROR (Status);
+ mUnix = (EFI_UNIX_THUNK_PROTOCOL *) UnixThunkPpi->UnixThunk ();
+
//
// Cache standard output handle.
//
diff --git a/EdkUnixPkg/Unix.fpd b/EdkUnixPkg/Unix.fpd
index ab7d86d3c3..5d92b33c5e 100644
--- a/EdkUnixPkg/Unix.fpd
+++ b/EdkUnixPkg/Unix.fpd
@@ -1,7769 +1,7660 @@
-
-
-
- Unix
- 7b3c1fb4-8986-11db-b5b2-0040d02b1835
- 0.3
- EFI/Framework Emulation Platform
+
+
+
+ Unix
+ 7b3c1fb4-8986-11db-b5b2-0040d02b1835
+ 0.3
+ EFI/Framework Emulation Platform
The Emulation Platform can be used to debug individual modules, prior to creating
- a real platform. This also provides an example for how an FPD is created.
- Copyright (c) 2006 - 2007, Intel Corporation
+ a real platform. This also provides an example for how an FPD is created.
+ Copyright (c) 2006 - 2007, 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.
- FRAMEWORK_BUILD_PACKAGING_SPECIFICATION 0x00000052
-
-
- IA32
- DEBUG RELEASE
- UNIFIED
- Build/Unix
-
- DEFAULT
-
-
-
- FlashMap.fdf
-
-
-
-
-
-
-
- FV_RECOVERY
- NV_STORAGE
-
-
-
- FV_RECOVERY
- NV_STORAGE
- FV_FILE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- NV_STORAGE
-
-
-
-
-
-
-
-
-
- FV_RECOVERY
-
-
-
-
-
-
-
-
- FV_FILE
-
-
-
-
-
-
-
-
-
- NV_STORAGE
-
-
-
-
-
-
-
-
-
- CAPSULE_A
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdUnixMemorySizeForSecMain
- 0x0000100c
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 10
- L"64!64"
-
-
- PcdUnixFirmwareVolume
- 0x00001009
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 52
- L"../FV/FV_RECOVERY.fd"
-
-
- PcdUnixBootMode
- 0x00001006
- gEfiEdkUnixPkgTokenSpaceGuid
- UINT32
- 4
- 1
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- NULL
- CUSTOM_BUILD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdPerformanceLibraryPropertyMask
- 0x00000009
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0
-
-
-
- FV_RECOVERY
- PEI_CORE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaxPeiPcdCallBackNumberPerPcdEntry
- 0x0001000f
- gEfiEdkModulePkgTokenSpaceGuid
- UINT32
- 4
- 0x08
-
-
- PcdVpdBaseAddress
- 0x00010010
- gEfiEdkModulePkgTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdPeiPcdDatabaseTraverseEnabled
- 0x00010020
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdPeiPcdDatabaseCallbackOnSetEnabled
- 0x00010032
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdPeiPcdDatabaseExEnabled
- 0x00010033
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdPeiPcdDatabaseGetSizeEnabled
- 0x00010031
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdPeiPcdDatabaseSetEnabled
- 0x00010030
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
-
- FV_RECOVERY
- PE32_PEIM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdStatusCodeUseSerial
- 0x00010022
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdStatusCodeUseMemory
- 0x00010023
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdStatusCodeUseOEM
- 0x00010024
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdStatusCodeMemorySize
- 0x00010025
- gEfiEdkModulePkgTokenSpaceGuid
- UINT16
- 2
- 1
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdFSBClock
- 0x0000000c
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 200000000
-
-
- PcdUnixStatusCodeLibUseForPei
- 0x0000100b
- gEfiEdkUnixPkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
-
- FV_RECOVERY
- PE32_PEIM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
-
- FV_RECOVERY
- PE32_PEIM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdFlashNvStorageVariableBase
- 0x30000001
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdFlashNvStorageVariableSize
- 0x30000002
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdFlashNvStorageFtwSpareBase
- 0x30000013
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdFlashNvStorageFtwSpareSize
- 0x30000014
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdFlashNvStorageFtwWorkingBase
- 0x30000010
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdFlashNvStorageFtwWorkingSize
- 0x30000011
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
-
- FV_RECOVERY
- PE32_PEIM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
-
- FV_RECOVERY
- PE32_PEIM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdFlashNvStorageVariableBase
- 0x30000001
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
-
- FV_RECOVERY
- PE32_PEIM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
-
- FV_RECOVERY
- PE32_PEIM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
-
- FV_RECOVERY
- PE32_PEIM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
-
- FV_RECOVERY
- PE32_PEIM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdDxeIplSwitchToLongMode
- 0x0001003b
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDxeIplSupportEfiDecompress
- 0x00010034
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdDxeIplSupportTianoDecompress
- 0x00010035
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdDxeIplSupportCustomDecompress
- 0x00010036
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdDxeIplBuildShareCodeHobs
- 0x0001003c
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
-
- FV_RECOVERY
- PE32_PEIM
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdPerformanceLibraryPropertyMask
- 0x00000009
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0
-
-
-
- FV_RECOVERY
- DXE_CORE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdVpdBaseAddress
- 0x00010010
- gEfiEdkModulePkgTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdDxePcdDatabaseTraverseEnabled
- 0x00010021
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdPerformanceLibraryPropertyMask
- 0x00000009
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
-
- FV_RECOVERY
- RT_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- RT_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdStatusCodeUseHardSerial
- 0x00010027
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdStatusCodeUseEfiSerial
- 0x00010026
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdStatusCodeUseRuntimeMemory
- 0x00010028
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdStatusCodeUseDataHub
- 0x00010029
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdStatusCodeUseOEM
- 0x00010024
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdStatusCodeReplayInSerial
- 0x0001002a
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdStatusCodeReplayInDataHub
- 0x0001002c
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdStatusCodeReplayInRuntimeMemory
- 0x0001002b
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdStatusCodeReplayInOEM
- 0x0001002d
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdStatusCodeRuntimeMemorySize
- 0x0001002e
- gEfiEdkModulePkgTokenSpaceGuid
- UINT16
- 2
- 128
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdUnixStatusCodeLibUseForPei
- 0x0000100b
- gEfiEdkUnixPkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- RT_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdFlashNvStorageFtwSpareBase
- 0x30000013
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdFlashNvStorageFtwSpareSize
- 0x30000014
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdFlashNvStorageFtwWorkingBase
- 0x30000010
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdFlashNvStorageFtwWorkingSize
- 0x30000011
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdFlashNvStorageVariableBase
- 0x30000001
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdFlashNvStorageVariableSize
- 0x30000002
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- RT_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdSupportUpdateCapsuleRest
- 0x0001001d
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdMaxSizePopulateCapsule
- 0x0001001e
- gEfiEdkModulePkgTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdMaxSizeNonPopulateCapsule
- 0x0001001f
- gEfiEdkModulePkgTokenSpaceGuid
- UINT32
- 4
- 0x0
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- RT_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- NULL
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- NULL
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdDevicePathSupportDevicePathToText
- 0x00010037
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
- PcdDevicePathSupportDevicePathFromText
- 0x00010038
- gEfiEdkModulePkgTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdPciIsaEnable
- 0x00010039
- gEfiGenericPlatformTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdPciVgaEnable
- 0x0001003a
- gEfiGenericPlatformTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdPciBusHotplugDeviceSupport
- 0x0001003d
- gEfiGenericPlatformTokenSpaceGuid
- BOOLEAN
- 1
- TRUE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdPerformanceLibraryPropertyMask
- 0x00000009
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_MAIN
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdUnixConsole
- 0x0000100a
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 50
- L"Bus Driver Console Window"
-
-
- PcdUnixUga
- 0x00001003
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 50
- L"UGA Window"
-
-
- PcdUnixFileSystem
- 0x00001004
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 106
- L".!../../../../EdkShellBinPkg/bin/ia32/Apps"
-
-
- PcdUnixVirtualDisk
- 0x00001001
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 24
- L"disk1.img:FW"
-
-
- PcdUnixPhysicalDisk
- 0x00001000
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 30
- L"E:RW;245760;512"
-
-
- PcdUnixCpuModel
- 0x00001007
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 48
- L"Intel(R) Processor Model"
-
-
- PcdUnixCpuSpeed
- 0x00001008
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 8
- L"3000"
-
-
- PcdUnixMemorySize
- 0x00001005
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 10
- L"64!64"
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdReportStatusCodePropertyMask
- 0x00000007
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x06
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
- FV_RECOVERY
- APPLICATION
-
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x1f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- APPLICATION
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x0f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PcdMaximumUnicodeStringLength
- 0x00000001
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumAsciiStringLength
- 0x00000002
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdMaximumLinkedListLength
- 0x00000003
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 1000000
-
-
- PcdSpinLockTimeout
- 0x00000004
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 10000000
-
-
- PcdComponentNameDisable
- 0x0000000d
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDriverDiagnosticsDisable
- 0x0000000e
- gEfiMdePkgTokenSpaceGuid
- BOOLEAN
- 1
- FALSE
-
-
- PcdDebugPropertyMask
- 0x00000005
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0x0f
-
-
- PcdDebugClearMemoryValue
- 0x00000008
- gEfiMdePkgTokenSpaceGuid
- UINT8
- 1
- 0xAF
-
-
- PcdDebugPrintErrorLevel
- 0x00000006
- gEfiMdePkgTokenSpaceGuid
- UINT32
- 4
- 0x80000000
-
-
-
- FV_RECOVERY
- BS_DRIVER
-
-
-
-
-
- FV_RECOVERY
- Logo
-
-
-
-
-
- PcdFlashNvStorageVariableBase
- 0x30000001
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
-
- 0
- 0x0
-
-
-
- PcdFlashNvStorageVariableSize
- 0x30000002
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
-
- 0
- 0x0
-
-
-
- PcdFlashNvStorageFtwSpareBase
- 0x30000013
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
-
- 0
- 0x0
-
-
-
- PcdFlashNvStorageFtwSpareSize
- 0x30000014
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
-
- 0
- 0x0
-
-
-
- PcdFlashNvStorageFtwWorkingBase
- 0x30000010
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
-
- 0
- 0x0
-
-
-
- PcdFlashNvStorageFtwWorkingSize
- 0x30000011
- gEfiGenericPlatformTokenSpaceGuid
- UINT32
- 4
-
- 0
- 0x0
-
-
-
- PcdUnixConsole
- 0x0000100a
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 50
-
- 0
- L"Bus Driver Console Window"
-
-
-
- PcdUnixUga
- 0x00001003
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 50
-
- 0
- L"UGA Window"
-
-
-
- PcdUnixFileSystem
- 0x00001004
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 106
-
- 0
- L".!../../../../EdkShellBinPkg/bin/ia32/Apps"
-
-
-
- PcdUnixVirtualDisk
- 0x00001001
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 24
-
- 0
- L"disk1.img:FW"
-
-
-
- PcdUnixPhysicalDisk
- 0x00001000
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 30
-
- 0
- L"E:RW;245760;512"
-
-
-
- PcdUnixCpuModel
- 0x00001007
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 48
-
- 0
- L"Intel(R) Processor Model"
-
-
-
- PcdUnixCpuSpeed
- 0x00001008
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 8
-
- 0
- L"3000"
-
-
-
- PcdUnixMemorySize
- 0x00001005
- gEfiEdkUnixPkgTokenSpaceGuid
- VOID*
- 10
-
- 0
- L"64!64"
-
-
-
-
-
-
-
-
-
- FV_RECOVERY
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+ FRAMEWORK_BUILD_PACKAGING_SPECIFICATION 0x00000052
+
+
+ IA32
+ DEBUG RELEASE
+ UNIFIED
+ Build/Unix
+
+ DEFAULT
+
+
+
+ FlashMap.fdf
+
+
+
+
+
+
+
+ FV_RECOVERY
+ NV_STORAGE
+
+
+
+ FV_RECOVERY
+ NV_STORAGE
+ FV_FILE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ NV_STORAGE
+
+
+
+
+
+
+
+
+
+ FV_RECOVERY
+
+
+
+
+
+
+
+
+ FV_FILE
+
+
+
+
+
+
+
+
+
+ NV_STORAGE
+
+
+
+
+
+
+
+
+
+ CAPSULE_A
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdUnixMemorySizeForSecMain
+ 0x0000100c
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 10
+ L"64!64"
+
+
+ PcdUnixFirmwareVolume
+ 0x00001009
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 52
+ L"../FV/FV_RECOVERY.fd"
+
+
+ PcdUnixBootMode
+ 0x00001006
+ gEfiEdkUnixPkgTokenSpaceGuid
+ UINT32
+ 4
+ 1
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ NULL
+ CUSTOM_BUILD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdPerformanceLibraryPropertyMask
+ 0x00000009
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0
+
+
+
+ FV_RECOVERY
+ PEI_CORE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaxPeiPcdCallBackNumberPerPcdEntry
+ 0x0001000f
+ gEfiEdkModulePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x08
+
+
+ PcdVpdBaseAddress
+ 0x00010010
+ gEfiEdkModulePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdPeiPcdDatabaseTraverseEnabled
+ 0x00010020
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdPeiPcdDatabaseCallbackOnSetEnabled
+ 0x00010032
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdPeiPcdDatabaseExEnabled
+ 0x00010033
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdPeiPcdDatabaseGetSizeEnabled
+ 0x00010031
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdPeiPcdDatabaseSetEnabled
+ 0x00010030
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+
+ FV_RECOVERY
+ PE32_PEIM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdStatusCodeUseSerial
+ 0x00010022
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdStatusCodeUseMemory
+ 0x00010023
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdStatusCodeUseOEM
+ 0x00010024
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdStatusCodeMemorySize
+ 0x00010025
+ gEfiEdkModulePkgTokenSpaceGuid
+ UINT16
+ 2
+ 1
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdFSBClock
+ 0x0000000c
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 200000000
+
+
+
+ FV_RECOVERY
+ PE32_PEIM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ PE32_PEIM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdFlashNvStorageVariableBase
+ 0x30000001
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdFlashNvStorageVariableSize
+ 0x30000002
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdFlashNvStorageFtwSpareBase
+ 0x30000013
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdFlashNvStorageFtwSpareSize
+ 0x30000014
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdFlashNvStorageFtwWorkingBase
+ 0x30000010
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdFlashNvStorageFtwWorkingSize
+ 0x30000011
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ PE32_PEIM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ PE32_PEIM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdFlashNvStorageVariableBase
+ 0x30000001
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ PE32_PEIM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ PE32_PEIM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ PE32_PEIM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ PE32_PEIM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdDxeIplSwitchToLongMode
+ 0x0001003b
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDxeIplSupportEfiDecompress
+ 0x00010034
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdDxeIplSupportTianoDecompress
+ 0x00010035
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdDxeIplSupportCustomDecompress
+ 0x00010036
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdDxeIplBuildShareCodeHobs
+ 0x0001003c
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+
+ FV_RECOVERY
+ PE32_PEIM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdPerformanceLibraryPropertyMask
+ 0x00000009
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0
+
+
+
+ FV_RECOVERY
+ DXE_CORE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdVpdBaseAddress
+ 0x00010010
+ gEfiEdkModulePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdDxePcdDatabaseTraverseEnabled
+ 0x00010021
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdPerformanceLibraryPropertyMask
+ 0x00000009
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+
+ FV_RECOVERY
+ RT_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ RT_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdStatusCodeUseHardSerial
+ 0x00010027
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdStatusCodeUseEfiSerial
+ 0x00010026
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdStatusCodeUseRuntimeMemory
+ 0x00010028
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdStatusCodeUseDataHub
+ 0x00010029
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdStatusCodeUseOEM
+ 0x00010024
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdStatusCodeReplayInSerial
+ 0x0001002a
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdStatusCodeReplayInDataHub
+ 0x0001002c
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdStatusCodeReplayInRuntimeMemory
+ 0x0001002b
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdStatusCodeReplayInOEM
+ 0x0001002d
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdStatusCodeRuntimeMemorySize
+ 0x0001002e
+ gEfiEdkModulePkgTokenSpaceGuid
+ UINT16
+ 2
+ 128
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+
+ FV_RECOVERY
+ RT_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdFlashNvStorageFtwSpareBase
+ 0x30000013
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdFlashNvStorageFtwSpareSize
+ 0x30000014
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdFlashNvStorageFtwWorkingBase
+ 0x30000010
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdFlashNvStorageFtwWorkingSize
+ 0x30000011
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdFlashNvStorageVariableBase
+ 0x30000001
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdFlashNvStorageVariableSize
+ 0x30000002
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ RT_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdSupportUpdateCapsuleRest
+ 0x0001001d
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdMaxSizePopulateCapsule
+ 0x0001001e
+ gEfiEdkModulePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdMaxSizeNonPopulateCapsule
+ 0x0001001f
+ gEfiEdkModulePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x0
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ RT_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ NULL
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ NULL
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdDevicePathSupportDevicePathToText
+ 0x00010037
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+ PcdDevicePathSupportDevicePathFromText
+ 0x00010038
+ gEfiEdkModulePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdPciIsaEnable
+ 0x00010039
+ gEfiGenericPlatformTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdPciVgaEnable
+ 0x0001003a
+ gEfiGenericPlatformTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdPciBusHotplugDeviceSupport
+ 0x0001003d
+ gEfiGenericPlatformTokenSpaceGuid
+ BOOLEAN
+ 1
+ TRUE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdPerformanceLibraryPropertyMask
+ 0x00000009
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_MAIN
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdUnixConsole
+ 0x0000100a
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 50
+ L"Bus Driver Console Window"
+
+
+ PcdUnixUga
+ 0x00001003
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 50
+ L"UGA Window"
+
+
+ PcdUnixFileSystem
+ 0x00001004
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 106
+ L".!../../../../EdkShellBinPkg/bin/ia32/Apps"
+
+
+ PcdUnixVirtualDisk
+ 0x00001001
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 24
+ L"disk1.img:FW"
+
+
+ PcdUnixPhysicalDisk
+ 0x00001000
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 30
+ L"E:RW;245760;512"
+
+
+ PcdUnixCpuModel
+ 0x00001007
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 48
+ L"Intel(R) Processor Model"
+
+
+ PcdUnixCpuSpeed
+ 0x00001008
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 8
+ L"3000"
+
+
+ PcdUnixMemorySize
+ 0x00001005
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 10
+ L"64!64"
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdReportStatusCodePropertyMask
+ 0x00000007
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x06
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+ FV_RECOVERY
+ APPLICATION
+
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x1f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ APPLICATION
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x0f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PcdMaximumUnicodeStringLength
+ 0x00000001
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumAsciiStringLength
+ 0x00000002
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdMaximumLinkedListLength
+ 0x00000003
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 1000000
+
+
+ PcdSpinLockTimeout
+ 0x00000004
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 10000000
+
+
+ PcdComponentNameDisable
+ 0x0000000d
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDriverDiagnosticsDisable
+ 0x0000000e
+ gEfiMdePkgTokenSpaceGuid
+ BOOLEAN
+ 1
+ FALSE
+
+
+ PcdDebugPropertyMask
+ 0x00000005
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0x0f
+
+
+ PcdDebugClearMemoryValue
+ 0x00000008
+ gEfiMdePkgTokenSpaceGuid
+ UINT8
+ 1
+ 0xAF
+
+
+ PcdDebugPrintErrorLevel
+ 0x00000006
+ gEfiMdePkgTokenSpaceGuid
+ UINT32
+ 4
+ 0x80000000
+
+
+
+ FV_RECOVERY
+ BS_DRIVER
+
+
+
+
+
+ FV_RECOVERY
+ Logo
+
+
+
+
+
+ PcdFlashNvStorageVariableBase
+ 0x30000001
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+
+ 0
+ 0x0
+
+
+
+ PcdFlashNvStorageVariableSize
+ 0x30000002
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+
+ 0
+ 0x0
+
+
+
+ PcdFlashNvStorageFtwSpareBase
+ 0x30000013
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+
+ 0
+ 0x0
+
+
+
+ PcdFlashNvStorageFtwSpareSize
+ 0x30000014
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+
+ 0
+ 0x0
+
+
+
+ PcdFlashNvStorageFtwWorkingBase
+ 0x30000010
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+
+ 0
+ 0x0
+
+
+
+ PcdFlashNvStorageFtwWorkingSize
+ 0x30000011
+ gEfiGenericPlatformTokenSpaceGuid
+ UINT32
+ 4
+
+ 0
+ 0x0
+
+
+
+ PcdUnixConsole
+ 0x0000100a
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 50
+
+ 0
+ L"Bus Driver Console Window"
+
+
+
+ PcdUnixUga
+ 0x00001003
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 50
+
+ 0
+ L"UGA Window"
+
+
+
+ PcdUnixFileSystem
+ 0x00001004
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 106
+
+ 0
+ L".!../../../../EdkShellBinPkg/bin/ia32/Apps"
+
+
+
+ PcdUnixVirtualDisk
+ 0x00001001
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 24
+
+ 0
+ L"disk1.img:FW"
+
+
+
+ PcdUnixPhysicalDisk
+ 0x00001000
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 30
+
+ 0
+ L"E:RW;245760;512"
+
+
+
+ PcdUnixCpuModel
+ 0x00001007
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 48
+
+ 0
+ L"Intel(R) Processor Model"
+
+
+
+ PcdUnixCpuSpeed
+ 0x00001008
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 8
+
+ 0
+ L"3000"
+
+
+
+ PcdUnixMemorySize
+ 0x00001005
+ gEfiEdkUnixPkgTokenSpaceGuid
+ VOID*
+ 10
+
+ 0
+ L"64!64"
+
+
+
+
+
+
+
+
+
+ FV_RECOVERY
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
#
# Copyright (c) 2006, Intel Corporation
# All rights reserved. This program and the accompanying materials
@@ -7776,6 +7667,6 @@
#
cd ${SecMainPath}
- ./SecMain.exe
-
+ ./SecMain.exe
+
\ No newline at end of file