Changeset 77662 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/MdeModulePkg.uni
- Timestamp:
- Mar 12, 2019 12:40:12 PM (6 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776 /vendor/edk2/current 103735-103757,103769-103776,129194-129237
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/MdeModulePkg.uni
r58464 r77662 1 // /** @file1 // /** @file 2 2 // This package provides the modules that conform to UEFI/PI Industry standards. 3 3 // … … 5 5 // and libraries instances, which are used for those modules. 6 6 // 7 // Copyright (c) 2007 - 201 5, Intel Corporation. All rights reserved.<BR>7 // Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR> 8 8 // 9 9 // This program and the accompanying materials are licensed and made available under … … 11 11 // The full text of the license may be found at 12 12 // http://opensource.org/licenses/bsd-license.php. 13 // 13 // 14 14 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 15 15 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. … … 90 90 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxVariableSize_HELP #language en-US "The maximum size of a single non-HwErr type variable." 91 91 92 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxAuthVariableSize_PROMPT #language en-US "Maximum authenticated variable size" 93 94 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxAuthVariableSize_HELP #language en-US "The maximum size of a single authenticated variable." 95 "The value is 0 as default for compatibility that maximum authenticated variable size is specified by PcdMaxVariableSize." 96 92 97 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxHardwareErrorVariableSize_PROMPT #language en-US "Maximum HwErr variable size" 93 98 … … 100 105 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdHwErrStorageSize_HELP #language en-US "The size of reserved HwErr variable space. Note that this value must be less than or equal to PcdFlashNvStorageVariableSize. In EdkII implementation, HwErr type variable is stored with common non-volatile variables in the same NV region. so the platform integrator should ensure this value is less than or equal to PcdFlashNvStorageVariableSize. this value is used to guarantee the space of HwErr type variable and not populated by common variable." 101 106 107 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxUserNvVariableSpaceSize_PROMPT #language en-US "Maximum user NV variable space size" 108 109 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxUserNvVariableSpaceSize_HELP #language en-US "The size of maximum user NV variable space.<BR><BR>\n" 110 "Note that this value must be less than (PcdFlashNvStorageVariableSize - EFI_FIRMWARE_VOLUME_HEADER.HeaderLength - sizeof (VARIABLE_STORE_HEADER) - PcdHwErrStorageSize).<BR>\n" 111 "If the value is 0, it means user variable share the same NV storage with system variable, " 112 "this is designed to keep the compatibility for the platform that does not allocate special region for user variable.<BR>\n" 113 "If the value is non-0, the below 4 types of variables will be regarded as System Variable after EndOfDxe, their property could be got by VarCheck protocol, " 114 "otherwise the variable will be regarded as user variable.<BR>\n" 115 " 1) UEFI defined variables (gEfiGlobalVariableGuid and gEfiImageSecurityDatabaseGuid(auth variable) variables at least).<BR>\n" 116 " 2) Variables managed by Variable driver internally.<BR>\n" 117 " 3) Variables need to be locked, they MUST be set by VariableLock protocol.<BR>\n" 118 " 4) Important variables during platform boot, their property SHOULD be set by VarCheck protocol.<BR>\n" 119 "The PCD is used to guarantee the space of system variable and not populated by user variable.<BR>" 120 121 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdBoottimeReservedNvVariableSpaceSize_PROMPT #language en-US "Boottime reserved NV variable space size" 122 123 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdBoottimeReservedNvVariableSpaceSize_HELP #language en-US "The size of NV variable space reserved at UEFI boottime.<BR><BR>\n" 124 "Note that this value must be less than (PcdFlashNvStorageVariableSize - EFI_FIRMWARE_VOLUME_HEADER.HeaderLength - sizeof (VARIABLE_STORE_HEADER) - PcdHwErrStorageSize).<BR>\n" 125 "In EdkII implementation, variable driver can reserved some NV storage region for boottime settings. " 126 "So at UEFI runtime, the variable service consumer can not exhaust full NV storage region.<BR>\n" 127 "Then the common NV variable space size at boottime will be " 128 " (PcdFlashNvStorageVariableSize - EFI_FIRMWARE_VOLUME_HEADER.HeaderLength - sizeof (VARIABLE_STORE_HEADER) - PcdHwErrStorageSize),<BR>\n" 129 "and the common NV variable space size at runtime will be " 130 " (PcdFlashNvStorageVariableSize - EFI_FIRMWARE_VOLUME_HEADER.HeaderLength - sizeof (VARIABLE_STORE_HEADER) - PcdHwErrStorageSize) - PcdBoottimeReservedNvVariableSpaceSize.<BR>" 131 102 132 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdReclaimVariableSpaceAtEndOfDxe_PROMPT #language en-US "Reclaim variable space at EndOfDxe" 103 133 … … 120 150 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxPeiPerformanceLogEntries_PROMPT #language en-US "Maximum number of PEI performance log entries" 121 151 122 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxPeiPerformanceLogEntries_HELP #language en-US "Maximum number of performance log entries during PEI phase." 152 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxPeiPerformanceLogEntries_HELP #language en-US "Maximum number of performance log entries during PEI phase.\n" 153 "Use PcdMaxPeiPerformanceLogEntries16 if the number of entries required is\n" 154 "more than 255." 155 156 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxPeiPerformanceLogEntries16_PROMPT #language en-US "Maximum number of PEI performance log entries" 157 158 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxPeiPerformanceLogEntries16_HELP #language en-US "Maximum number of performance log entries during PEI phase.\n" 159 "If set to 0, then PcdMaxPeiPerformanceLogEntries determines the number of\n" 160 "entries. If greater than 0, then this PCD determines the number of entries,\n" 161 "and PcdMaxPeiPerformanceLogEntries is ignored." 123 162 124 163 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdRealTimeClockUpdateTimeout_PROMPT #language en-US "RTC Update Timeout Value" … … 176 215 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdTftpBlockSize_PROMPT #language en-US "TFTP block size" 177 216 178 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdTftpBlockSize_HELP #language en-US "TFTP BlockSize. Initial value 0 means using default block size which is (MTU-IP_HEADER-UDP_HEADER-TFTP_HEADER) to handle all link layers. If the value is non zero, the PCD value will be used as block size." 217 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdTftpBlockSize_HELP #language en-US "This setting can override the default TFTP block size. A value of 0 computes " 218 "the default from MTU information. A non-zero value will be used as block size " 219 "in bytes." 179 220 180 221 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxEfiSystemTablePointerAddress_PROMPT #language en-US "Maximum Efi System Table Pointer address" … … 194 235 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultOemTableId_PROMPT #language en-US "Default OEM Table ID for ACPI table creation" 195 236 196 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultOemTableId_HELP #language en-US "Default OEM Table ID for ACPI table creation." 237 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultOemTableId_HELP #language en-US "Default OEM Table ID for ACPI table creation.<BR><BR>\n" 238 "According to ACPI specification, this field is particularly useful when\n" 239 "defining a definition block to distinguish definition block functions.<BR>\n" 240 "The OEM assigns each dissimilar table a new OEM Table ID.<BR>\n" 241 "This PCD is ignored for definition block.<BR>" 197 242 198 243 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultOemRevision_PROMPT #language en-US "Default OEM Revision for ACPI table creation" 199 244 200 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultOemRevision_HELP #language en-US "Default OEM Revision for ACPI table creation." 245 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultOemRevision_HELP #language en-US "Default OEM Revision for ACPI table creation.<BR><BR>\n" 246 "According to ACPI specification, for LoadTable() opcode, the OS can also\n" 247 "check the OEM Table ID and Revision ID against a database for a newer\n" 248 "revision Definition Block of the same OEM Table ID and load it instead.<BR>\n" 249 "This PCD is ignored for definition block.<BR>" 201 250 202 251 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultCreatorId_PROMPT #language en-US "Default Creator ID for ACPI table creation" 203 252 204 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultCreatorId_HELP #language en-US "Default Creator ID for ACPI table creation." 253 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultCreatorId_HELP #language en-US "Default Creator ID for ACPI table creation.<BR><BR>\n" 254 "According to ACPI specification, for tables containing Definition Blocks,\n" 255 "this is the ID for the ASL Compiler.<BR>\n" 256 "This PCD is ignored for definition block.<BR>" 205 257 206 258 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultCreatorRevision_PROMPT #language en-US "Default Creator Revision for ACPI table creation" 207 259 208 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultCreatorRevision_HELP #language en-US "Default Creator Revision for ACPI table creation." 260 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiDefaultCreatorRevision_HELP #language en-US "Default Creator Revision for ACPI table creation.<BR><BR>\n" 261 "According to ACPI specification, for tables containing Definition Blocks,\n" 262 "this is the revision for the ASL Compiler.<BR>\n" 263 "This PCD is ignored for definition block.<BR>" 209 264 210 265 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMemoryProfilePropertyMask_PROMPT #language en-US "Memory Profile Property" … … 212 267 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMemoryProfilePropertyMask_HELP #language en-US "The mask is used to control memory profile behavior.<BR><BR>\n" 213 268 "BIT0 - Enable UEFI memory profile.<BR>\n" 214 "BIT1 - Enable SMRAM profile.<BR>" 269 "BIT1 - Enable SMRAM profile.<BR>\n" 270 "BIT7 - Disable recording at the start.<BR>" 215 271 216 272 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMemoryProfileMemoryType_PROMPT #language en-US "Memory profile memory type" … … 234 290 " EfiPalCode 0x2000<BR>\n" 235 291 " EfiPersistentMemory 0x4000<BR>\n" 292 " OEM Reserved 0x40000000<BR>\n" 236 293 " OS Reserved 0x80000000<BR>\n" 237 294 "e.g. Reserved+ACPINvs+ACPIReclaim+RuntimeCode+RuntimeData are needed, 0x661 should be used.<BR>\n" 295 296 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMemoryProfileDriverPath_PROMPT #language en-US "Memory profile driver path" 297 298 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMemoryProfileDriverPath_HELP #language en-US "This PCD is to control which drivers need memory profile data.<BR><BR>\n" 299 "For example:<BR>\n" 300 "One image only (Shell):<BR>\n" 301 " Header GUID<BR>\n" 302 " {0x04, 0x06, 0x14, 0x00, 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1,<BR>\n" 303 " 0x7F, 0xFF, 0x04, 0x00}<BR>\n" 304 "Two or more images (Shell + WinNtSimpleFileSystem):<BR>\n" 305 " {0x04, 0x06, 0x14, 0x00, 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1,<BR>\n" 306 " 0x7F, 0x01, 0x04, 0x00,<BR>\n" 307 " 0x04, 0x06, 0x14, 0x00, 0x8B, 0xE1, 0x25, 0x9C, 0xBA, 0x76, 0xDA, 0x43, 0xA1, 0x32, 0xDB, 0xB0, 0x99, 0x7C, 0xEF, 0xEF,<BR>\n" 308 " 0x7F, 0xFF, 0x04, 0x00}<BR>\n" 238 309 239 310 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSerialClockRate_PROMPT #language en-US "Serial Port Clock Rate" … … 257 328 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSerialExtendedTxFifoSize_HELP #language en-US "Serial Port Extended Transmit FIFO Size. The default is 64 bytes." 258 329 330 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSerialRegisterStride_PROMPT #language en-US "Serial Port Register Stride in Bytes" 331 332 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSerialRegisterStride_HELP #language en-US "The number of bytes between registers in serial device. The default is 1 byte." 333 334 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetNxForStack_PROMPT #language en-US "Set NX for stack" 335 336 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetNxForStack_HELP #language en-US "Indicates if to set NX for stack.<BR><BR>" 337 "For the DxeIpl and the DxeCore are both X64, set NX for stack feature also require PcdDxeIplBuildPageTables be TRUE.<BR>" 338 "For the DxeIpl and the DxeCore are both IA32 (PcdDxeIplSwitchToLongMode is FALSE), set NX for stack feature also require" 339 "IA32 PAE is supported and Execute Disable Bit is available.<BR>" 340 "TRUE - to set NX for stack.<BR>" 341 "FALSE - Not to set NX for stack.<BR>" 342 343 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiS3Enable_PROMPT #language en-US "ACPI S3 Enable" 344 345 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiS3Enable_HELP #language en-US "Indicates if ACPI S3 will be enabled.<BR><BR>" 346 "TRUE - ACPI S3 will be enabled.<BR>" 347 "FALSE - ACPI S3 will be disabled.<BR>" 348 349 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdS3BootScriptStackSize_PROMPT #language en-US "Reserved S3 Boot Script Stack ACPI Memory Size" 350 351 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdS3BootScriptStackSize_HELP #language en-US "Specify memory size for boot script executor stack usage in S3 phase. The default size 32K. When changing the value make sure the memory size is large enough to meet boot script executor requirement in the S3 phase." 352 353 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdVarCheckVfrDriverGuidArray_PROMPT #language en-US "Driver guid array of VFR drivers for VarCheckHiiBin generation" 354 355 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdVarCheckVfrDriverGuidArray_HELP #language en-US "This PCD to include the driver guid of VFR drivers for VarCheckHiiBin generation.<BR><BR>" 356 "Default is gZeroGuid that means no VFR driver will be parsed for VarCheckHiiBin generation.<BR>" 357 "If it is set to an all FFs GUID, it means all modules in all FVs will be parsed for VarCheckHiiBin generation.<BR>" 358 259 359 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageVariableBase_PROMPT #language en-US "Base address of flash NV variable range" 260 360 … … 275 375 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageFtwWorkingBase_PROMPT #language en-US "Base address of flash FTW working block range" 276 376 277 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageFtwWorkingBase_HELP #language en-US "Base address of the FTW working block range in flash device. "377 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageFtwWorkingBase_HELP #language en-US "Base address of the FTW working block range in flash device. If PcdFlashNvStorageFtwWorkingSize is larger than one block size, this value should be block size aligned." 278 378 279 379 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageFtwWorkingSize_PROMPT #language en-US "Size of flash FTW working block range" 280 380 281 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageFtwWorkingSize_HELP #language en-US "Size of the FTW working block range. "381 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageFtwWorkingSize_HELP #language en-US "Size of the FTW working block range. If the value is less than one block size, the work space range should not span blocks. If the value is larger than one block size, it should be block size aligned." 282 382 283 383 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageVariableBase64_PROMPT #language en-US "64-bit Base address of flash NV variable range" … … 291 391 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageFtwWorkingBase64_PROMPT #language en-US "64-bit Base address of flash FTW working block range" 292 392 293 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageFtwWorkingBase64_HELP #language en-US "64-bit Base address of the FTW working block range in flash device. "393 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFlashNvStorageFtwWorkingBase64_HELP #language en-US "64-bit Base address of the FTW working block range in flash device. If PcdFlashNvStorageFtwWorkingSize is larger than one block size, this value should be block size aligned." 294 394 295 395 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdEmuVariableNvStoreReserved_PROMPT #language en-US "Reserved memory range for EMU variable NV storage" … … 423 523 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdS3BootScriptRuntimeTableReservePageNumber_PROMPT #language en-US "Reserved page number for S3 Boot Script Runtime Table" 424 524 425 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdS3BootScriptRuntimeTableReservePageNumber_HELP #language en-US "This PCD is used to specify memory size with page number for a pre-allocated ACPI NVS memory to hold runtime created S3 boot script entries. The default page number is 2. When changing the value of this PCD, the platform developer should make sure the memory size is large enough to hold the S3 boot script node created in runtimephase."525 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdS3BootScriptRuntimeTableReservePageNumber_HELP #language en-US "This PCD is used to specify memory size with page number for a pre-allocated ACPI reserved memory to hold runtime(after SmmReadyToLock) created S3 boot script entries. The default page number is 2. When changing the value of this PCD, the platform developer should make sure the memory size is large enough to hold the S3 boot script node created in runtime(after SmmReadyToLock) phase." 426 526 427 527 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsulePeiLongModeStackSize_PROMPT #language en-US "Stack size for CapsulePei transfer to long mode" … … 464 564 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSmbiosVersion_HELP #language en-US "SMBIOS version." 465 565 566 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSmbiosDocRev_PROMPT #language en-US "SMBIOS Docrev field in SMBIOS 3.0 (64-bit) Entry Point Structure" 567 568 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSmbiosDocRev_HELP #language en-US "SMBIOS Docrev field in SMBIOS 3.0 (64-bit) Entry Point Structure" 569 570 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSmbiosEntryPointProvideMethod_PROMPT #language en-US "SMBIOS produce method" 571 572 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSmbiosEntryPointProvideMethod_HELP #language en-US "The policy to produce SMBIOS entry point and table.<BR><BR>\n" 573 "BIT0 set indicates 32-bit entry point and table are produced.<BR>\n" 574 "BIT1 set indicates 64-bit entry point and table are produced.<BR>" 575 466 576 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdExtFpdtBootRecordPadSize_PROMPT #language en-US "Pad size for extension FPDT boot records" 467 577 … … 500 610 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdConOutColumn_PROMPT #language en-US "Console output column" 501 611 502 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdConOutColumn_HELP #language en-US "This PCD defines the Console output row. The default value is 80 according to UEFI spec. This PCD could be set to 0 then console output would be at max column and max row."612 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdConOutColumn_HELP #language en-US "This PCD defines the Console output column. The default value is 80 according to UEFI spec. This PCD could be set to 0 then console output would be at max column and max row." 503 613 504 614 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdVideoHorizontalResolution_PROMPT #language en-US "Video horizontal resolution" … … 731 841 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdS3BootScriptTablePrivateSmmDataPtr_HELP #language en-US "This dynamic PCD hold an address to point to private data structure SMM copy used in DxeS3BootScriptLib library instance which records the S3 boot script table start address, length, etc. To introduce this PCD is only for DxeS3BootScriptLib instance implementation purpose. The platform developer should make sure the default value is set to Zero. And the PCD is assumed ONLY to be accessed in DxeS3BootScriptLib Library." 732 842 843 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxFmpEsrtCacheNum_PROMPT #language en-US "Max FMP ESRT entry number to be synced & cached in repository" 844 845 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxFmpEsrtCacheNum_HELP #language en-US "Max FMP ESRT entry number to be synced & cached in repository" 846 847 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxNonFmpEsrtCacheNum_PROMPT #language en-US " Max Non-FMP ESRT entry number to be cached in repository" 848 849 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxNonFmpEsrtCacheNum_HELP #language en-US " Max Non-FMP ESRT entry number to be cached in repository" 850 851 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSystemRebootAfterCapsuleProcessFlag_PROMPT #language en-US "Flag to request system reboot after processing capsule" 852 853 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSystemRebootAfterCapsuleProcessFlag_HELP #language en-US "Flag to request system reboot after processing capsule" 854 855 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdBootManagerMenuFile_PROMPT #language en-US "Boot Manager Menu File" 856 857 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdBootManagerMenuFile_HELP #language en-US "This PCD points to the file name GUID of the BootManagerMenuApp\n" 858 "Platform can customize the PCD to point to different application for Boot Manager Menu" 859 860 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdDriverHealthConfigureForm_PROMPT #language en-US "Driver Health Management Form" 861 862 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdDriverHealthConfigureForm_HELP #language en-US "This PCD points to the formset GUID of the driver health management form\n" 863 "The form will be popped up by BDS core when there are Configuration Required driver health intances.\n" 864 "Platform can customize the PCD to point to different formset." 865 866 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetupVideoHorizontalResolution_PROMPT #language en-US "Video Horizontal Resolution of Text Setup" 867 868 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetupVideoHorizontalResolution_HELP #language en-US "Specify the video horizontal resolution of text setup." 869 870 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetupVideoVerticalResolution_PROMPT #language en-US "Video Vertical Resolution of Text Setup" 871 872 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetupVideoVerticalResolution_HELP #language en-US "Specify the video vertical resolution of text setup." 873 874 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetupConOutColumn_PROMPT #language en-US "Console Output Column of Text Setup" 875 876 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetupConOutColumn_HELP #language en-US "Specify the console output column of text setup." 877 878 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetupConOutRow_PROMPT #language en-US "Console Output Row of Text Setup" 879 880 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetupConOutRow_HELP #language en-US "Specify the console output row of text setup." 881 882 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFrontPageFormSetGuid_PROMPT #language en-US "Front Page Formset." 883 884 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFrontPageFormSetGuid_HELP #language en-US "This PCD points to the front page formset GUID\n" 885 "Compare the FormsetGuid or ClassGuid with this PCD value can detect whether in front page" 886 887 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPropertiesTableEnable_PROMPT #language en-US "Publish UEFI PropertiesTable." 888 889 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPropertiesTableEnable_HELP #language en-US "Publish PropertiesTable or not.\n" 890 "\n" 891 "If this PCD is TRUE, DxeCore publishs PropertiesTable.\n" 892 "DxeCore evaluates if all runtime drivers has 4K aligned PE sections. If all\n" 893 "PE sections in runtime drivers are 4K aligned, DxeCore sets BIT0 in\n" 894 "PropertiesTable. Or DxeCore clears BIT0 in PropertiesTable.\n" 895 "If this PCD is FALSE, DxeCore does not publish PropertiesTable.\n" 896 "\n" 897 "If PropertiesTable has BIT0 set, DxeCore uses below policy in UEFI memory map:\n" 898 "1) Use EfiRuntimeServicesCode for runtime driver PE image code section and\n" 899 "use EfiRuntimeServicesData for runtime driver PE image header and other section.\n" 900 "2) Set EfiRuntimeServicesCode to be EFI_MEMORY_RO.\n" 901 "3) Set EfiRuntimeServicesData to be EFI_MEMORY_XP.\n" 902 "4) Set EfiMemoryMappedIO and EfiMemoryMappedIOPortSpace to be EFI_MEMORY_XP.\n" 903 "\n" 904 "NOTE: Platform need gurantee this PCD is set correctly. Platform should set\n" 905 "this PCD to be TURE if and only if all runtime driver has seperated Code/Data\n" 906 "section. If PE code/data sections are merged, the result is unpredictable.\n" 907 908 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdIdentifyMappingPageTablePtr_PROMPT #language en-US "Identify Mapping Page Table pointer." 909 910 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdIdentifyMappingPageTablePtr_HELP #language en-US "This dynamic PCD hold an address to point to the memory of page table. The page table establishes a 1:1\n" 911 "Virtual to Physical mapping according to the processor physical address bits." 912 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdShadowPeimOnBoot_HELP #language en-US "Indicates if to shadow PEIM and PeiCore after memory is ready.<BR><BR>\n" 913 "This PCD is used on other boot path except for S3 boot.\n" 914 "TRUE - Shadow PEIM and PeiCore after memory is ready.<BR>\n" 915 "FALSE - Not shadow PEIM after memory is ready.<BR>" 916 917 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdShadowPeimOnBoot_PROMPT #language en-US "Shadow Peim on boot" 918 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSerialUseHalfHandshake_PROMPT #language en-US "Enable Serial device Half Hand Shake" 919 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSerialUseHalfHandshake_HELP #language en-US "Indicates if Serial device uses half hand shake.<BR><BR>\n" 920 "TRUE - Serial device uses half hand shake.<BR>\n" 921 "FALSE - Serial device doesn't use half hand shake.<BR>" 922 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPciSerialParameters_PROMPT #language en-US "Pci Serial Parameters" 923 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPciSerialParameters_HELP #language en-US "PCI Serial Parameters. It is an array of VendorID, DeviceID, ClockRate, Offset,\n" 924 "BarIndex, RegisterStride, ReceiveFifoDepth, TransmitFifoDepth information that \n" 925 "describes the parameters of special PCI serial devices.\n" 926 "Each array entry is 24-byte in length. The array is terminated\n" 927 "by an array entry with a PCI Vendor ID of 0xFFFF. If a platform only contains a\n" 928 "standard 16550 PCI serial device whose class code is 7/0/2, the value is 0xFFFF.\n" 929 "The C style structure is defined as below:<BR>\n" 930 "typedef struct {<BR>\n" 931 " UINT16 VendorId; ///< Vendor ID to match the PCI device. The value 0xFFFF terminates the list of entries.<BR>\n" 932 " UINT16 DeviceId; ///< Device ID to match the PCI device<BR>\n" 933 " UINT32 ClockRate; ///< UART clock rate. Set to 0 for default clock rate of 1843200 Hz<BR>\n" 934 " UINT64 Offset; ///< The byte offset into to the BAR<BR>\n" 935 " UINT8 BarIndex; ///< Which BAR to get the UART base address<BR>\n" 936 " UINT8 RegisterStride; ///< UART register stride in bytes. Set to 0 for default register stride of 1 byte.<BR>\n" 937 " UINT16 ReceiveFifoDepth; ///< UART receive FIFO depth in bytes. Set to 0 for a default FIFO depth of 16 bytes.<BR>\n" 938 " UINT16 TransmitFifoDepth; ///< UART transmit FIFO depth in bytes. Set to 0 for a default FIFO depth of 16 bytes.<BR>\n" 939 " UINT8 Reserved[2];<BR>\n" 940 "} PCI_SERIAL_PARAMETER;<BR>\n" 941 "It contains zero or more instances of the above structure.<BR>\n" 942 "For example, if a PCI device contains two UARTs, PcdPciSerialParameters needs\n" 943 "to contain two instances of the above structure, with the VendorId and DeviceId\n" 944 "equals to the Device ID and Vendor ID of the device; If the PCI device uses the\n" 945 "first two BARs to support two UARTs, BarIndex of first instance equals to 0 and\n" 946 "BarIndex of second one equals to 1; If the PCI device uses the first BAR to\n" 947 "support both UARTs, BarIndex of both instance equals to 0, Offset of first\n" 948 "instance equals to 0 and Offset of second one equals to a value bigger than or\n" 949 "equal to 8.<BR>\n" 950 "For certain UART whose register needs to be accessed in DWORD aligned address,\n" 951 "RegisterStride equals to 4.\n" 952 953 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiExposedTableVersions_PROMPT #language en-US "Exposed ACPI table versions." 954 955 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdAcpiExposedTableVersions_HELP #language en-US "Indicates which ACPI versions are targeted by the ACPI tables exposed to the OS\n" 956 "These values are aligned with the definitions in MdePkg/Include/Protocol/AcpiSystemDescriptionTable.h\n" 957 "BIT 1 - EFI_ACPI_TABLE_VERSION_1_0B.<BR>\n" 958 "BIT 2 - EFI_ACPI_TABLE_VERSION_2_0.<BR>\n" 959 "BIT 3 - EFI_ACPI_TABLE_VERSION_3_0.<BR>\n" 960 "BIT 4 - EFI_ACPI_TABLE_VERSION_4_0.<BR>\n" 961 "BIT 5 - EFI_ACPI_TABLE_VERSION_5_0.<BR>" 962 963 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdHiiOsRuntimeSupport_PROMPT #language en-US "Enable export HII data and configuration to be used in OS runtime." 964 965 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdHiiOsRuntimeSupport_HELP #language en-US "Indicates if HII data and configuration has been exported.<BR><BR>\n" 966 "Add this PCD mainly consider the use case of simulator. This PCD maybe set to FALSE for\n" 967 "simulator platform because the performance cost for this feature.\n" 968 "TRUE - Export HII data and configuration data.<BR>\n" 969 "FALSE - Does not export HII data and configuration.<BR>" 970 971 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPs2KbdExtendedVerification_PROMPT #language en-US "Turn on PS2 Keyboard Extended Verification" 972 973 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPs2KbdExtendedVerification_HELP #language en-US "Indicates if PS2 keyboard does a extended verification during start.\n" 974 "Add this PCD mainly consider the use case of simulator. This PCD maybe set to FALSE for\n" 975 "Extended verification will take some performance. It can be set to FALSE for boot performance.<BR><BR>\n" 976 "TRUE - Turn on PS2 keyboard extended verification.<BR>\n" 977 "FALSE - Turn off PS2 keyboard extended verification.<BR>" 978 979 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPs2MouseExtendedVerification_PROMPT #language en-US "Turn on PS2 Mouse Extended Verification" 980 981 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPs2MouseExtendedVerification_HELP #language en-US "Indicates if PS2 mouse does a extended verification during start.\n" 982 "Extended verification will take some performance. It can be set to FALSE for boot performance.<BR><BR>\n" 983 "TRUE - Turn on PS2 mouse extended verification. <BR>\n" 984 "FALSE - Turn off PS2 mouse extended verification. <BR>" 985 986 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFastPS2Detection_PROMPT #language en-US "Enable fast PS2 detection" 987 988 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdFastPS2Detection_HELP #language en-US "Indicates if to use the optimized timing for best PS2 detection performance.\n" 989 "Note this PCD could be set to TRUE for best boot performance and set to FALSE for best device compatibility.<BR><BR>\n" 990 "TRUE - Use the optimized timing for best PS2 detection performance.<BR>\n" 991 "FALSE - Use the normal timing to detect PS2.<BR>" 992 993 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSdMmcPciHostControllerMmioBase_PROMPT #language en-US "Mmio base address of pci-based SD/MMC host controller" 994 995 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSdMmcPciHostControllerMmioBase_HELP #language en-US "This PCD specifies the PCI-based SD/MMC host controller mmio base address. Define the mmio base address of the pci-based SD/MMC host controller. If there are multiple SD/MMC host controllers, their mmio base addresses are calculated one by one from this base address.<BR>" 996 997 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxRepairCount_PROMPT #language en-US "MAX repair count" 998 999 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaxRepairCount_HELP #language en-US "This PCD defines the MAX repair count. The default value is 0 that means infinite.<BR>" 1000 1001 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPciDegradeResourceForOptionRom_PROMPT #language en-US "Degrade 64-bit PCI MMIO BARs for legacy BIOS option ROMs" 1002 1003 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPciDegradeResourceForOptionRom_HELP #language en-US "Indicates whether 64-bit PCI MMIO BARs should degrade to 32-bit in the presence of an option ROM.<BR>" 1004 "On X64 platforms, Option ROMs may contain code that executes in the context of a legacy BIOS (CSM)," 1005 "which requires that all PCI MMIO BARs are located below 4 GB.<BR>" 1006 "TRUE - All PCI MMIO BARs of a device will be located below 4 GB if it has an option ROM.<BR>" 1007 "FALSE - PCI MMIO BARs of a device may be located above 4 GB even if it has an option ROM.<BR>" 1008 1009 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdStatusCodeSubClassCapsule_PROMPT #language en-US "Status Code for Capsule subclass definitions" 1010 1011 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdStatusCodeSubClassCapsule_HELP #language en-US "Status Code for Capsule subclass definitions.<BR><BR>\n" 1012 "EFI_OEM_SPECIFIC_SUBCLASS_CAPSULE = 0x00810000<BR>\n" 1013 "NOTE: The default value of this PCD may collide with other OEM specific status codes.\n" 1014 "Override the value of this PCD in the platform DSC file as needed." 1015 1016 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeProcessCapsulesBegin_PROMPT #language en-US "Status Code for Capsule Process Begin" 1017 1018 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeProcessCapsulesBegin_HELP #language en-US "Status Code for Capsule Process Begin.<BR><BR>\n" 1019 "EFI_CAPSULE_PROCESS_CAPSULES_BEGIN = (EFI_OEM_SPECIFIC | 0x00000001) = 0x00008001<BR>\n" 1020 "NOTE: The default value of this PCD may collide with other OEM specific status codes.\n" 1021 "Override the value of this PCD in the platform DSC file as needed." 1022 1023 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeProcessCapsulesEnd_PROMPT #language en-US "Status Code for Capsule Process End" 1024 1025 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeProcessCapsulesEnd_HELP #language en-US "Status Code for Capsule Process End.<BR><BR>\n" 1026 "EFI_CAPSULE_PROCESS_CAPSULES_END = (EFI_OEM_SPECIFIC | 0x00000002) = 0x00008002<BR>\n" 1027 "NOTE: The default value of this PCD may collide with other OEM specific status codes.\n" 1028 "Override the value of this PCD in the platform DSC file as needed." 1029 1030 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeUpdatingFirmware_PROMPT #language en-US "Status Code for Capsule Process Updating Firmware" 1031 1032 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeUpdatingFirmware_HELP #language en-US "Status Code for Capsule Process Updating Firmware.<BR><BR>\n" 1033 "EFI_CAPSULE_UPDATING_FIRMWARE = (EFI_OEM_SPECIFIC | 0x00000003) = 0x00008003<BR>\n" 1034 "NOTE: The default value of this PCD may collide with other OEM specific status codes.\n" 1035 "Override the value of this PCD in the platform DSC file as needed." 1036 1037 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeUpdateFirmwareSuccess_PROMPT #language en-US "Status Code for Capsule Process Update Firmware Success" 1038 1039 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeUpdateFirmwareSuccess_HELP #language en-US "Status Code for Capsule Process Update Firmware Success.<BR><BR>\n" 1040 "EFI_CAPSULE_UPDATE_FIRMWARE_SUCCESS = (EFI_OEM_SPECIFIC | 0x00000004) = 0x00008004<BR>\n" 1041 "NOTE: The default value of this PCD may collide with other OEM specific status codes.\n" 1042 "Override the value of this PCD in the platform DSC file as needed." 1043 1044 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeUpdateFirmwareFailed_PROMPT #language en-US "Status Code for Capsule Process Update Firmware Failed" 1045 1046 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeUpdateFirmwareFailed_HELP #language en-US "Status Code for Capsule Process Update Firmware Failed.<BR><BR>\n" 1047 "EFI_CAPSULE_UPDATE_FIRMWARE_FAILED = (EFI_OEM_SPECIFIC | 0x00000005) = 0x00008005<BR>\n" 1048 "NOTE: The default value of this PCD may collide with other OEM specific status codes.\n" 1049 "Override the value of this PCD in the platform DSC file as needed." 1050 1051 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeResettingSystem_PROMPT #language en-US "Status Code for Capsule Resetting System" 1052 1053 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleStatusCodeResettingSystem_HELP #language en-US "Status Code for Capsule Resetting System.<BR><BR>\n" 1054 "EFI_CAPSULE_RESETTING_SYSTEM = (EFI_OEM_SPECIFIC | 0x00000006) = 0x00008006<BR>\n" 1055 "NOTE: The default value of this PCD may collide with other OEM specific status codes.\n" 1056 "Override the value of this PCD in the platform DSC file as needed." 1057 1058 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleMax_PROMPT #language en-US "CapsuleMax value in capsule report variable." 1059 1060 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCapsuleMax_HELP #language en-US "CapsuleMax value in capsule report variable." 1061 1062 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaximumPeiResetNotifies_PROMPT #language en-US "Maximum Number of PEI Reset Filters, Reset Notifications or Reset Handlers." 1063 1064 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdMaximumPeiResetNotifies_HELP #language en-US "Indicates the allowable maximum number of Reset Filters, <BR>\n" 1065 "Reset Notifications or Reset Handlers in PEI phase." 1066 1067 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdRecoveryFileName_PROMPT #language en-US "Recover file name in PEI phase" 1068 1069 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdRecoveryFileName_HELP #language en-US "This is recover file name in PEI phase.\n" 1070 "The file must be in the root directory.\n" 1071 "The file name must be the 8.3 format.\n" 1072 "The PCD data must be in UNICODE format." 1073 1074 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSystemFmpCapsuleImageTypeIdGuid_PROMPT #language en-US "A list of system FMP ImageTypeId GUIDs" 1075 1076 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSystemFmpCapsuleImageTypeIdGuid_HELP #language en-US "This PCD hold a list GUIDs for the ImageTypeId to indicate the\n" 1077 "FMP capsule is a system FMP." 1078 1079 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdTestKeyUsed_PROMPT #language en-US "If there is any test key used by the platform." 1080 1081 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdTestKeyUsed_HELP #language en-US "This dynamic PCD holds the information if there is any test key used by the platform." 1082 1083 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSmiHandlerProfilePropertyMask_PROMPT #language en-US "SmiHandlerProfile Property." 1084 1085 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSmiHandlerProfilePropertyMask_HELP #language en-US "The mask is used to control SmiHandlerProfile behavior.<BR><BR>\n" 1086 "BIT0 - Enable SmiHandlerProfile.<BR>" 1087 1088 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdImageProtectionPolicy_PROMPT #language en-US "Set image protection policy." 1089 1090 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdImageProtectionPolicy_HELP #language en-US "Set image protection policy. The policy is bitwise.\n" 1091 "If a bit is set, the image will be protected by DxeCore if it is aligned.\n" 1092 "The code section becomes read-only, and the data section becomes non-executable.\n" 1093 "If a bit is clear, the image will not be protected.<BR><BR>\n" 1094 "BIT0 - Image from unknown device. <BR>\n" 1095 "BIT1 - Image from firmware volume.<BR>" 1096 1097 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdDxeNxMemoryProtectionPolicy_PROMPT #language en-US "Set DXE memory protection policy." 1098 1099 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdDxeNxMemoryProtectionPolicy_HELP #language en-US "Set DXE memory protection policy. The policy is bitwise.\n" 1100 "If a bit is set, memory regions of the associated type will be mapped\n" 1101 "non-executable.<BR><BR>\n" 1102 "\n" 1103 "Below is bit mask for this PCD: (Order is same as UEFI spec)<BR>\n" 1104 "EfiReservedMemoryType 0x0001<BR>\n" 1105 "EfiLoaderCode 0x0002<BR>\n" 1106 "EfiLoaderData 0x0004<BR>\n" 1107 "EfiBootServicesCode 0x0008<BR>\n" 1108 "EfiBootServicesData 0x0010<BR>\n" 1109 "EfiRuntimeServicesCode 0x0020<BR>\n" 1110 "EfiRuntimeServicesData 0x0040<BR>\n" 1111 "EfiConventionalMemory 0x0080<BR>\n" 1112 "EfiUnusableMemory 0x0100<BR>\n" 1113 "EfiACPIReclaimMemory 0x0200<BR>\n" 1114 "EfiACPIMemoryNVS 0x0400<BR>\n" 1115 "EfiMemoryMappedIO 0x0800<BR>\n" 1116 "EfiMemoryMappedIOPortSpace 0x1000<BR>\n" 1117 "EfiPalCode 0x2000<BR>\n" 1118 "EfiPersistentMemory 0x4000<BR>\n" 1119 "OEM Reserved 0x4000000000000000<BR>\n" 1120 "OS Reserved 0x8000000000000000<BR>\n" 1121 "\n" 1122 "NOTE: User must NOT set NX protection for EfiLoaderCode / EfiBootServicesCode / EfiRuntimeServicesCode. <BR>\n" 1123 "User MUST set the same NX protection for EfiBootServicesData and EfiConventionalMemory. <BR>\n" 1124 "\n" 1125 "e.g. 0x7FD5 can be used for all memory except Code. <BR>\n" 1126 "e.g. 0x7BD4 can be used for all memory except Code and ACPINVS/Reserved. <BR>\n" 1127 "" 1128 1129 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPteMemoryEncryptionAddressOrMask_PROMPT #language en-US "The address mask when memory encryption is enabled." 1130 1131 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdPteMemoryEncryptionAddressOrMask_HELP #language en-US "This PCD holds the address mask for page table entries when memory encryption is\n" 1132 "enabled on AMD processors supporting the Secure Encrypted Virtualization (SEV) feature.\n" 1133 "This mask should be applied when creating 1:1 virtual to physical mapping tables." 1134 1135 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdNullPointerDetectionPropertyMask_PROMPT #language en-US "Enable NULL pointer detection" 1136 1137 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdNullPointerDetectionPropertyMask_HELP #language en-US "Mask to control the NULL address detection in code for different phases.\n" 1138 " If enabled, accessing NULL address in UEFI or SMM code can be caught.\n\n" 1139 " BIT0 - Enable NULL pointer detection for UEFI.\n" 1140 " BIT1 - Enable NULL pointer detection for SMM.\n" 1141 " BIT2..6 - Reserved for future uses.\n" 1142 " BIT7 - Disable NULL pointer detection just after EndOfDxe." 1143 " This is a workaround for those unsolvable NULL access issues in" 1144 " OptionROM, boot loader, etc. It can also help to avoid unnecessary" 1145 " exception caused by legacy memory (0-4095) access after EndOfDxe," 1146 " such as Windows 7 boot on Qemu.\n" 1147 1148 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdInitValueInTempStack_PROMPT #language en-US "Init Value in Temp Stack" 1149 1150 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdInitValueInTempStack_HELP #language en-US "Init Value in Temp Stack to be shared between SEC and PEI_CORE\n" 1151 "SEC fills the full temp stack with this values. When switch stack, PeiCore can check\n" 1152 "this value in the temp stack to know how many stack has been used.\n" 1153 1154 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdHeapGuardPageType_PROMPT #language en-US "The memory type mask for Page Guard" 1155 1156 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdHeapGuardPageType_HELP #language en-US "Indicates which type allocation need guard page.\n\n" 1157 " If a bit is set, a head guard page and a tail guard page will be added just\n" 1158 " before and after corresponding type of pages allocated if there's enough\n" 1159 " free pages for all of them. The page allocation for the type related to\n" 1160 " cleared bits keeps the same as ususal.\n\n" 1161 " Below is bit mask for this PCD: (Order is same as UEFI spec)<BR>\n" 1162 " EfiReservedMemoryType 0x0000000000000001\n" 1163 " EfiLoaderCode 0x0000000000000002\n" 1164 " EfiLoaderData 0x0000000000000004\n" 1165 " EfiBootServicesCode 0x0000000000000008\n" 1166 " EfiBootServicesData 0x0000000000000010\n" 1167 " EfiRuntimeServicesCode 0x0000000000000020\n" 1168 " EfiRuntimeServicesData 0x0000000000000040\n" 1169 " EfiConventionalMemory 0x0000000000000080\n" 1170 " EfiUnusableMemory 0x0000000000000100\n" 1171 " EfiACPIReclaimMemory 0x0000000000000200\n" 1172 " EfiACPIMemoryNVS 0x0000000000000400\n" 1173 " EfiMemoryMappedIO 0x0000000000000800\n" 1174 " EfiMemoryMappedIOPortSpace 0x0000000000001000\n" 1175 " EfiPalCode 0x0000000000002000\n" 1176 " EfiPersistentMemory 0x0000000000004000\n" 1177 " OEM Reserved 0x4000000000000000\n" 1178 " OS Reserved 0x8000000000000000\n" 1179 " e.g. LoaderCode+LoaderData+BootServicesCode+BootServicesData are needed, 0x1E should be used.<BR>" 1180 1181 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdHeapGuardPoolType_PROMPT #language en-US "The memory type mask for Pool Guard" 1182 1183 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdHeapGuardPoolType_HELP #language en-US "Indicates which type allocation need guard page.\n\n" 1184 " If a bit is set, a head guard page and a tail guard page will be added just\n" 1185 " before and after corresponding type of pages which the allocated pool occupies,\n" 1186 " if there's enough free memory for all of them. The pool allocation for the\n" 1187 " type related to cleared bits keeps the same as ususal.\n\n" 1188 " Below is bit mask for this PCD: (Order is same as UEFI spec)<BR>\n" 1189 " EfiReservedMemoryType 0x0000000000000001\n" 1190 " EfiLoaderCode 0x0000000000000002\n" 1191 " EfiLoaderData 0x0000000000000004\n" 1192 " EfiBootServicesCode 0x0000000000000008\n" 1193 " EfiBootServicesData 0x0000000000000010\n" 1194 " EfiRuntimeServicesCode 0x0000000000000020\n" 1195 " EfiRuntimeServicesData 0x0000000000000040\n" 1196 " EfiConventionalMemory 0x0000000000000080\n" 1197 " EfiUnusableMemory 0x0000000000000100\n" 1198 " EfiACPIReclaimMemory 0x0000000000000200\n" 1199 " EfiACPIMemoryNVS 0x0000000000000400\n" 1200 " EfiMemoryMappedIO 0x0000000000000800\n" 1201 " EfiMemoryMappedIOPortSpace 0x0000000000001000\n" 1202 " EfiPalCode 0x0000000000002000\n" 1203 " EfiPersistentMemory 0x0000000000004000\n" 1204 " OEM Reserved 0x4000000000000000\n" 1205 " OS Reserved 0x8000000000000000\n" 1206 " e.g. LoaderCode+LoaderData+BootServicesCode+BootServicesData are needed, 0x1E should be used.<BR>" 1207 1208 1209 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdHeapGuardPropertyMask_PROMPT #language en-US "The Heap Guard feature mask" 1210 1211 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdHeapGuardPropertyMask_HELP #language en-US "This mask is to control Heap Guard behavior.\n" 1212 "Note that due to the limit of pool memory implementation and the alignment\n" 1213 "requirement of UEFI spec, BIT7 is a try-best setting which cannot guarantee\n" 1214 "that the returned pool is exactly adjacent to head guard page or tail guard\n" 1215 "page.\n" 1216 " BIT0 - Enable UEFI page guard.<BR>\n" 1217 " BIT1 - Enable UEFI pool guard.<BR>\n" 1218 " BIT2 - Enable SMM page guard.<BR>\n" 1219 " BIT3 - Enable SMM pool guard.<BR>\n" 1220 " BIT7 - The direction of Guard Page for Pool Guard.\n" 1221 " 0 - The returned pool is near the tail guard page.<BR>\n" 1222 " 1 - The returned pool is near the head guard page.<BR>" 1223 1224 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCpuStackGuard_PROMPT #language en-US "Enable UEFI Stack Guard" 1225 1226 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCpuStackGuard_HELP #language en-US "Indicates if UEFI Stack Guard will be enabled.\n" 1227 " If enabled, stack overflow in UEFI can be caught, preventing chaotic consequences.<BR><BR>\n" 1228 " TRUE - UEFI Stack Guard will be enabled.<BR>\n" 1229 " FALSE - UEFI Stack Guard will be disabled.<BR>" 1230 1231 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetNvStoreDefaultId_PROMPT #language en-US "NV Storage DefaultId" 1232 1233 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSetNvStoreDefaultId_HELP #language en-US "This dynamic PCD enables the default variable setting.\n" 1234 " Its value is the default store ID value. The default value is zero as Standard default.\n" 1235 " When its value is set in PEI, it will trig the default setting to be applied as the default EFI variable.\n" 1236 1237 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdNvStoreDefaultValueBuffer_PROMPT #language en-US "NV Storage Default Value Buffer" 1238 1239 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdNvStoreDefaultValueBuffer_HELP #language en-US "This dynamic PCD holds the DynamicHii PCD value. Its value is the auto generated.\n" 1240 1241 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdEdkiiFpdtStringRecordEnableOnly_PROMPT #language en-US "String FPDT Record Enable Only" 1242 1243 #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdEdkiiFpdtStringRecordEnableOnly_HELP #language en-US "Control which FPDT record format will be used to store the performance entry.\n" 1244 "On TRUE, the string FPDT record will be used to store every performance entry.\n" 1245 "On FALSE, the different FPDT record will be used to store the different performance entries."
Note:
See TracChangeset
for help on using the changeset viewer.