1# 2# Copyright (c) 2011-2015, ARM Limited. All rights reserved. 3# Copyright (c) 2014, Linaro Limited. All rights reserved. 4# Copyright (c) 2015, Intel Corporation. All rights reserved. 5# 6# This program and the accompanying materials 7# are licensed and made available under the terms and conditions of the BSD License 8# which accompanies this distribution. The full text of the license may be found at 9# http://opensource.org/licenses/bsd-license.php 10# 11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13# 14# 15 16[Defines] 17 DEFINE DEBUG_PRINT_ERROR_LEVEL = 0x8000004F 18 DEFINE TTY_TERMINAL = FALSE 19 20[BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER] 21 GCC:*_*_ARM_DLINK_FLAGS = -z common-page-size=0x1000 22 GCC:*_*_AARCH64_DLINK_FLAGS = -z common-page-size=0x10000 23 RVCT:*_*_ARM_DLINK_FLAGS = --scatter $(EDK_TOOLS_PATH)/Scripts/Rvct-Align4K.sct 24 25[LibraryClasses.common] 26!if $(TARGET) == RELEASE 27 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf 28 UncachedMemoryAllocationLib|ArmPkg/Library/UncachedMemoryAllocationLib/UncachedMemoryAllocationLib.inf 29!else 30 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf 31 UncachedMemoryAllocationLib|ArmPkg/Library/DebugUncachedMemoryAllocationLib/DebugUncachedMemoryAllocationLib.inf 32!endif 33 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf 34 35 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf 36 SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf 37 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf 38 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf 39 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf 40 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf 41 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf 42 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf 43 CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf 44 45 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf 46 HobLib|ArmVirtPkg/Library/ArmVirtDxeHobLib/ArmVirtDxeHobLib.inf 47 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf 48 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf 49 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf 50 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf 51 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf 52 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf 53 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf 54 HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf 55 UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf 56 SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf 57 58 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf 59 OrderedCollectionLib|MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf 60 61 # 62 # Ramdisk Requirements 63 # 64 FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf 65 66 # Allow dynamic PCDs 67 # 68 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf 69 70 # use the accelerated BaseMemoryLibOptDxe by default, overrides for SEC/PEI below 71 BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf 72 73 # Networking Requirements 74 NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf 75 DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf 76 UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf 77 IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf 78 79 # 80 # It is not possible to prevent the ARM compiler from inserting calls to intrinsic functions. 81 # This library provides the instrinsic functions such a compiler may generate calls to. 82 # 83 NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf 84 85 # Add support for GCC stack protector 86 NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf 87 88 # ARM Architectural Libraries 89 CacheMaintenanceLib|ArmPkg/Library/ArmCacheMaintenanceLib/ArmCacheMaintenanceLib.inf 90 DefaultExceptionHandlerLib|ArmPkg/Library/DefaultExceptionHandlerLib/DefaultExceptionHandlerLib.inf 91 CpuExceptionHandlerLib|ArmPkg/Library/ArmExceptionLib/ArmExceptionLib.inf 92 ArmDisassemblerLib|ArmPkg/Library/ArmDisassemblerLib/ArmDisassemblerLib.inf 93 DmaLib|ArmPkg/Library/ArmDmaLib/ArmDmaLib.inf 94 ArmGicLib|ArmPkg/Drivers/ArmGic/ArmGicLib.inf 95 ArmGicArchLib|ArmVirtPkg/Library/ArmVirtGicArchLib/ArmVirtGicArchLib.inf 96 ArmPlatformStackLib|ArmPlatformPkg/Library/ArmPlatformStackLib/ArmPlatformStackLib.inf 97 ArmSmcLib|ArmPkg/Library/ArmSmcLib/ArmSmcLib.inf 98 ArmHvcLib|ArmPkg/Library/ArmHvcLib/ArmHvcLib.inf 99 ArmGenericTimerCounterLib|ArmPkg/Library/ArmGenericTimerVirtCounterLib/ArmGenericTimerVirtCounterLib.inf 100 101 PlatformPeiLib|ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.inf 102 MemoryInitPeiLib|ArmVirtPkg/Library/ArmVirtMemoryInitPeiLib/ArmVirtMemoryInitPeiLib.inf 103 EfiResetSystemLib|ArmVirtPkg/Library/ArmVirtPsciResetSystemLib/ArmVirtPsciResetSystemLib.inf 104 105 # ARM PL031 RTC Driver 106 RealTimeClockLib|ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.inf 107 # ARM PL011 UART Driver 108 PL011UartLib|ArmPlatformPkg/Drivers/PL011Uart/PL011Uart.inf 109 SerialPortLib|ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.inf 110 111 # 112 # Uncomment (and comment out the next line) For RealView Debugger. The Standard IO window 113 # in the debugger will show load and unload commands for symbols. You can cut and paste this 114 # into the command window to load symbols. We should be able to use a script to do this, but 115 # the version of RVD I have does not support scripts accessing system memory. 116 # 117 #PeCoffExtraActionLib|ArmPkg/Library/RvdPeCoffExtraActionLib/RvdPeCoffExtraActionLib.inf 118 PeCoffExtraActionLib|ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.inf 119 #PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf 120 121 DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf 122 DebugAgentTimerLib|EmbeddedPkg/Library/DebugAgentTimerLibNull/DebugAgentTimerLibNull.inf 123 124 # Flattened Device Tree (FDT) access library 125 FdtLib|EmbeddedPkg/Library/FdtLib/FdtLib.inf 126 127 # PCI Libraries 128 PciLib|MdePkg/Library/BasePciLibPciExpress/BasePciLibPciExpress.inf 129 PciExpressLib|ArmVirtPkg/Library/BaseCachingPciExpressLib/BaseCachingPciExpressLib.inf 130 131 # USB Libraries 132 UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf 133 134 XenIoMmioLib|OvmfPkg/Library/XenIoMmioLib/XenIoMmioLib.inf 135 136 # 137 # Secure Boot dependencies 138 # 139!if $(SECURE_BOOT_ENABLE) == TRUE 140 IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf 141 OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf 142 TpmMeasurementLib|SecurityPkg/Library/DxeTpmMeasurementLib/DxeTpmMeasurementLib.inf 143 AuthVariableLib|SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf 144 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf 145 146 # re-use the UserPhysicalPresent() dummy implementation from the ovmf tree 147 PlatformSecureLib|OvmfPkg/Library/PlatformSecureLib/PlatformSecureLib.inf 148!else 149 TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf 150 AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf 151!endif 152 VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf 153 154[LibraryClasses.common.SEC] 155 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf 156 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf 157 158 DebugAgentLib|ArmPkg/Library/DebugAgentSymbolsBaseLib/DebugAgentSymbolsBaseLib.inf 159 DefaultExceptionHandlerLib|ArmPkg/Library/DefaultExceptionHandlerLib/DefaultExceptionHandlerLibBase.inf 160 SerialPortLib|ArmVirtPkg/Library/FdtPL011SerialPortLib/EarlyFdtPL011SerialPortLib.inf 161 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf 162 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf 163 PeiServicesTablePointerLib|ArmPkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf 164 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf 165 166[LibraryClasses.common.PEI_CORE] 167 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf 168 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf 169 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf 170 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf 171 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf 172 PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf 173 PerformanceLib|MdeModulePkg/Library/PeiPerformanceLib/PeiPerformanceLib.inf 174 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf 175 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf 176 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf 177 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf 178 ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf 179 180 PeiServicesTablePointerLib|ArmPkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf 181 SerialPortLib|ArmVirtPkg/Library/FdtPL011SerialPortLib/EarlyFdtPL011SerialPortLib.inf 182 183[LibraryClasses.common.PEIM] 184 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf 185 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf 186 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf 187 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf 188 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf 189 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf 190 PerformanceLib|MdeModulePkg/Library/PeiPerformanceLib/PeiPerformanceLib.inf 191 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf 192 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf 193 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf 194 PeiResourcePublicationLib|MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf 195 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf 196 ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf 197 198 PeiServicesTablePointerLib|ArmPkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf 199 SerialPortLib|ArmVirtPkg/Library/FdtPL011SerialPortLib/EarlyFdtPL011SerialPortLib.inf 200 201[LibraryClasses.common.DXE_CORE] 202 HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf 203 MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf 204 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf 205 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf 206 ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf 207 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf 208 PerformanceLib|MdeModulePkg/Library/DxeCorePerformanceLib/DxeCorePerformanceLib.inf 209 210[LibraryClasses.common.DXE_DRIVER] 211 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf 212 SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf 213 PerformanceLib|MdeModulePkg/Library/DxePerformanceLib/DxePerformanceLib.inf 214 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf 215 216[LibraryClasses.common.UEFI_APPLICATION] 217 UefiDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf 218 PerformanceLib|MdeModulePkg/Library/DxePerformanceLib/DxePerformanceLib.inf 219 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf 220 HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf 221 ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf 222 FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf 223 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf 224 225[LibraryClasses.common.UEFI_DRIVER] 226 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf 227 UefiDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf 228 ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf 229 PerformanceLib|MdeModulePkg/Library/DxePerformanceLib/DxePerformanceLib.inf 230 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf 231 232[LibraryClasses.common.DXE_RUNTIME_DRIVER] 233 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf 234 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf 235 CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf 236 237!if $(SECURE_BOOT_ENABLE) == TRUE 238 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf 239!endif 240 241[LibraryClasses.ARM] 242 ArmSoftFloatLib|ArmPkg/Library/ArmSoftFloatLib/ArmSoftFloatLib.inf 243 244[BuildOptions] 245 RVCT:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG 246 247 GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG 248 249 # 250 # Disable deprecated APIs. 251 # 252 RVCT:*_*_*_CC_FLAGS = -DDISABLE_NEW_DEPRECATED_INTERFACES 253 GCC:*_*_*_CC_FLAGS = -DDISABLE_NEW_DEPRECATED_INTERFACES 254 255################################################################################ 256# 257# Pcd Section - list of all EDK II PCD Entries defined by this Platform 258# 259################################################################################ 260 261[PcdsFeatureFlag.common] 262 gEfiMdeModulePkgTokenSpaceGuid.PcdHiiOsRuntimeSupport|FALSE 263 264 # 265 # Control what commands are supported from the UI 266 # Turn these on and off to add features or save size 267 # 268 gEmbeddedTokenSpaceGuid.PcdEmbeddedMacBoot|TRUE 269 gEmbeddedTokenSpaceGuid.PcdEmbeddedDirCmd|TRUE 270 gEmbeddedTokenSpaceGuid.PcdEmbeddedHobCmd|TRUE 271 gEmbeddedTokenSpaceGuid.PcdEmbeddedHwDebugCmd|TRUE 272 gEmbeddedTokenSpaceGuid.PcdEmbeddedPciDebugCmd|TRUE 273 gEmbeddedTokenSpaceGuid.PcdEmbeddedIoEnable|FALSE 274 gEmbeddedTokenSpaceGuid.PcdEmbeddedScriptCmd|FALSE 275 276 gEmbeddedTokenSpaceGuid.PcdCacheEnable|TRUE 277 278 # Use the Vector Table location in CpuDxe. We will not copy the Vector Table at PcdCpuVectorBaseAddress 279 gArmTokenSpaceGuid.PcdRelocateVectorTable|FALSE 280 281 gEmbeddedTokenSpaceGuid.PcdPrePiProduceMemoryTypeInformationHob|TRUE 282 283 gEfiMdeModulePkgTokenSpaceGuid.PcdTurnOffUsbLegacySupport|TRUE 284 285[PcdsFeatureFlag.AARCH64] 286 # 287 # Activate AcpiSdtProtocol 288 # 289 gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE 290 291[PcdsFixedAtBuild.common] 292 gEfiMdePkgTokenSpaceGuid.PcdMaximumUnicodeStringLength|1000000 293 gEfiMdePkgTokenSpaceGuid.PcdMaximumAsciiStringLength|1000000 294 gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|1000000 295 gEfiMdePkgTokenSpaceGuid.PcdSpinLockTimeout|10000000 296 gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue|0xAF 297 gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask|1 298 gEfiMdePkgTokenSpaceGuid.PcdPostCodePropertyMask|0 299 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|320 300 301 # DEBUG_ASSERT_ENABLED 0x01 302 # DEBUG_PRINT_ENABLED 0x02 303 # DEBUG_CODE_ENABLED 0x04 304 # CLEAR_MEMORY_ENABLED 0x08 305 # ASSERT_BREAKPOINT_ENABLED 0x10 306 # ASSERT_DEADLOOP_ENABLED 0x20 307!if $(TARGET) == RELEASE 308 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x21 309!else 310 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2f 311!endif 312 313 # DEBUG_INIT 0x00000001 // Initialization 314 # DEBUG_WARN 0x00000002 // Warnings 315 # DEBUG_LOAD 0x00000004 // Load events 316 # DEBUG_FS 0x00000008 // EFI File system 317 # DEBUG_POOL 0x00000010 // Alloc & Free (pool) 318 # DEBUG_PAGE 0x00000020 // Alloc & Free (page) 319 # DEBUG_INFO 0x00000040 // Informational debug messages 320 # DEBUG_DISPATCH 0x00000080 // PEI/DXE/SMM Dispatchers 321 # DEBUG_VARIABLE 0x00000100 // Variable 322 # DEBUG_BM 0x00000400 // Boot Manager 323 # DEBUG_BLKIO 0x00001000 // BlkIo Driver 324 # DEBUG_NET 0x00004000 // SNP Driver 325 # DEBUG_UNDI 0x00010000 // UNDI Driver 326 # DEBUG_LOADFILE 0x00020000 // LoadFile 327 # DEBUG_EVENT 0x00080000 // Event messages 328 # DEBUG_GCD 0x00100000 // Global Coherency Database changes 329 # DEBUG_CACHE 0x00200000 // Memory range cachability changes 330 # DEBUG_VERBOSE 0x00400000 // Detailed debug messages that may 331 # // significantly impact boot performance 332 # DEBUG_ERROR 0x80000000 // Error 333 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|$(DEBUG_PRINT_ERROR_LEVEL) 334 335 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07 336 337 # 338 # Optional feature to help prevent EFI memory map fragments 339 # Turned on and off via: PcdPrePiProduceMemoryTypeInformationHob 340 # Values are in EFI Pages (4K). DXE Core will make sure that 341 # at least this much of each type of memory can be allocated 342 # from a single memory range. This way you only end up with 343 # maximum of two fragements for each type in the memory map 344 # (the memory used, and the free memory that was prereserved 345 # but not used). 346 # 347 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIReclaimMemory|0 348 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIMemoryNVS|0 349 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiReservedMemoryType|0 350!if $(SECURE_BOOT_ENABLE) == TRUE 351 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesData|600 352 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesCode|400 353 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiBootServicesCode|1500 354!else 355 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesData|300 356 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesCode|150 357 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiBootServicesCode|1000 358!endif 359 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiBootServicesData|12000 360 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiLoaderCode|20 361 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiLoaderData|0 362 363 # 364 # ARM Pcds 365 # 366 gArmTokenSpaceGuid.PcdArmUncachedMemoryMask|0x0000000000000000 367 368!if $(SECURE_BOOT_ENABLE) == TRUE 369 # override the default values from SecurityPkg to ensure images from all sources are verified in secure boot 370 gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x04 371 gEfiSecurityPkgTokenSpaceGuid.PcdFixedMediaImageVerificationPolicy|0x04 372 gEfiSecurityPkgTokenSpaceGuid.PcdRemovableMediaImageVerificationPolicy|0x04 373!endif 374 375!if $(TTY_TERMINAL) == TRUE 376 # Set terminal type to TtyTerm, the value encoded is EFI_TTY_TERM_GUID 377 gArmVirtTokenSpaceGuid.PcdTerminalTypeGuidBuffer|{0x80, 0x6d, 0x91, 0x7d, 0xb1, 0x5b, 0x8c, 0x45, 0xa4, 0x8f, 0xe2, 0x5f, 0xdd, 0x51, 0xef, 0x94} 378!endif 379 380[PcdsFixedAtBuild.ARM] 381 gEmbeddedTokenSpaceGuid.PcdPrePiCpuMemorySize|40 382 383[Components.common] 384 # 385 # Networking stack 386 # 387 MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf 388 MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf 389 MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf 390 MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf 391 MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf 392 MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf 393 MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf 394 MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf 395 MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf 396 MdeModulePkg/Universal/Network/UefiPxeBcDxe/UefiPxeBcDxe.inf 397 MdeModulePkg/Universal/Network/IScsiDxe/IScsiDxe.inf 398 399 # 400 # Ramdisk support 401 # 402 MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf 403 404 # 405 # UEFI application (Shell Embedded Boot Loader) 406 # 407 ShellPkg/Application/Shell/Shell.inf { 408 <LibraryClasses> 409 ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf 410 NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf 411 NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf 412 NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf 413 NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf 414 NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf 415 NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf 416 NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf 417 NULL|ShellPkg/Library/UefiShellTftpCommandLib/UefiShellTftpCommandLib.inf 418 HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf 419 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf 420 BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf 421 422 <PcdsFixedAtBuild> 423 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF 424 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE 425 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000 426 } 427 428[Components.AARCH64] 429 # 430 # ACPI Support 431 # 432 MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf 433 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf 434