QuarkMin.dsc 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. ## @file
  2. # Clanton Peak CRB platform with 32-bit DXE for 4MB/8MB flash devices.
  3. #
  4. # This package provides Clanton Peak CRB platform specific modules.
  5. # Copyright (c) 2013 - 2023 Intel Corporation.
  6. #
  7. # SPDX-License-Identifier: BSD-2-Clause-Patent
  8. #
  9. ##
  10. ################################################################################
  11. #
  12. # Defines Section - statements that will be processed to create a Makefile.
  13. #
  14. ################################################################################
  15. [Defines]
  16. DSC_SPECIFICATION = 0x00010005
  17. PLATFORM_NAME = QuarkMin
  18. PLATFORM_GUID = 2655F3CF-4CC7-4e17-A62D-77FE3F10AE7F
  19. PLATFORM_VERSION = 0.1
  20. FLASH_DEFINITION = QuarkPlatformPkg/QuarkMin.fdf
  21. OUTPUT_DIRECTORY = Build/QuarkMin
  22. SUPPORTED_ARCHITECTURES = IA32
  23. BUILD_TARGETS = DEBUG|RELEASE
  24. SKUID_IDENTIFIER = DEFAULT
  25. VPD_TOOL_GUID = 8C3D856A-9BE6-468E-850A-24F7A8D38E08
  26. #
  27. # Platform On/Off features are defined here
  28. #
  29. DEFINE GALILEO = GEN2
  30. DEFINE SECURE_BOOT_ENABLE = FALSE
  31. DEFINE SOURCE_DEBUG_ENABLE = FALSE
  32. DEFINE PERFORMANCE_ENABLE = FALSE
  33. DEFINE LOGGING = FALSE
  34. !if $(TARGET) == "DEBUG"
  35. DEFINE LOGGING = TRUE
  36. !endif
  37. !if $(PERFORMANCE_ENABLE)
  38. DEFINE SOURCE_DEBUG_ENABLE = FALSE
  39. DEFINE LOGGING = FALSE
  40. !endif
  41. ################################################################################
  42. #
  43. # SKU Identification section - list of all SKU IDs supported by this
  44. # Platform.
  45. #
  46. ################################################################################
  47. [SkuIds]
  48. 0|DEFAULT # The entry: 0|DEFAULT is reserved and always required.
  49. ################################################################################
  50. #
  51. # Library Class section - list of all Library Classes needed by this Platform.
  52. #
  53. ################################################################################
  54. !include MdePkg/MdeLibs.dsc.inc
  55. [LibraryClasses]
  56. #
  57. # Entry point
  58. #
  59. PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
  60. PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
  61. DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
  62. UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
  63. UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
  64. #
  65. # Basic
  66. #
  67. BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
  68. BaseMemoryLib|MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.inf
  69. PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
  70. CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
  71. CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
  72. IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
  73. PciLib|MdePkg/Library/BasePciLibPciExpress/BasePciLibPciExpress.inf
  74. PciSegmentLib|MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf
  75. PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
  76. PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf
  77. CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
  78. PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
  79. !if $(SOURCE_DEBUG_ENABLE)
  80. PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
  81. DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
  82. !else
  83. PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
  84. !endif
  85. DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
  86. PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
  87. CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
  88. #
  89. # UEFI & PI
  90. #
  91. UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
  92. UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
  93. UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
  94. UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
  95. HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
  96. UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
  97. DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
  98. UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiTianoCustomDecompressLib.inf
  99. PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
  100. PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
  101. DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
  102. DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
  103. SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
  104. UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
  105. SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
  106. #
  107. # Generic Modules
  108. #
  109. S3BootScriptLib|MdeModulePkg/Library/PiDxeS3BootScriptLib/DxeS3BootScriptLib.inf
  110. S3IoLib|MdePkg/Library/BaseS3IoLib/BaseS3IoLib.inf
  111. S3PciLib|MdePkg/Library/BaseS3PciLib/BaseS3PciLib.inf
  112. UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
  113. UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
  114. NetLib|NetworkPkg/Library/DxeNetLib/DxeNetLib.inf
  115. IpIoLib|NetworkPkg/Library/DxeIpIoLib/DxeIpIoLib.inf
  116. UdpIoLib|NetworkPkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
  117. DpcLib|NetworkPkg/Library/DxeDpcLib/DxeDpcLib.inf
  118. OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
  119. SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
  120. SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
  121. SmmCorePlatformHookLib|MdeModulePkg/Library/SmmCorePlatformHookLibNull/SmmCorePlatformHookLibNull.inf
  122. PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
  123. HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
  124. MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
  125. ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
  126. ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
  127. LockBoxLib|MdeModulePkg/Library/LockBoxNullLib/LockBoxNullLib.inf
  128. VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf
  129. VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLib.inf
  130. VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.inf
  131. DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
  132. !if $(LOGGING)
  133. DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
  134. !else
  135. DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
  136. !endif
  137. !if $(PERFORMANCE_ENABLE)
  138. PerformanceLib|MdeModulePkg/Library/DxePerformanceLib/DxePerformanceLib.inf
  139. !else
  140. PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
  141. !endif
  142. ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
  143. FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
  144. !if $(SECURE_BOOT_ENABLE)
  145. BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
  146. PlatformSecureLib|QuarkPlatformPkg/Library/PlatformSecureLib/PlatformSecureLib.inf
  147. IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
  148. OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
  149. TpmMeasurementLib|SecurityPkg/Library/DxeTpmMeasurementLib/DxeTpmMeasurementLib.inf
  150. AuthVariableLib|SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf
  151. !else
  152. TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf
  153. AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf
  154. !endif
  155. CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
  156. #
  157. # CPU
  158. #
  159. MtrrLib|QuarkSocPkg/QuarkNorthCluster/Library/MtrrLib/MtrrLib.inf
  160. LocalApicLib|UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf
  161. MpInitLib|UefiCpuPkg/Library/MpInitLibUp/MpInitLibUp.inf
  162. #
  163. # Quark North Cluster
  164. #
  165. SmmLib|QuarkSocPkg/QuarkNorthCluster/Library/QNCSmmLib/QNCSmmLib.inf
  166. SmbusLib|QuarkSocPkg/QuarkNorthCluster/Library/SmbusLib/SmbusLib.inf
  167. TimerLib|PcAtChipsetPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
  168. ResetSystemLib|QuarkSocPkg/QuarkNorthCluster/Library/ResetSystemLib/ResetSystemLib.inf
  169. IntelQNCLib|QuarkSocPkg/QuarkNorthCluster/Library/IntelQNCLib/IntelQNCLib.inf
  170. QNCAccessLib|QuarkSocPkg/QuarkNorthCluster/Library/QNCAccessLib/QNCAccessLib.inf
  171. IoApicLib|PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf
  172. #
  173. # Quark South Cluster
  174. #
  175. IohLib|QuarkSocPkg/QuarkSouthCluster/Library/IohLib/IohLib.inf
  176. I2cLib|QuarkSocPkg/QuarkSouthCluster/Library/I2cLib/I2cLib.inf
  177. SerialPortLib|MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.inf
  178. PlatformHookLib|MdeModulePkg/Library/BasePlatformHookLibNull/BasePlatformHookLibNull.inf
  179. #
  180. # Quark Platform
  181. #
  182. PlatformSecLib|QuarkPlatformPkg/Library/PlatformSecLib/PlatformSecLib.inf
  183. PlatformPcieHelperLib|QuarkPlatformPkg/Library/PlatformPcieHelperLib/PlatformPcieHelperLib.inf
  184. PlatformHelperLib|QuarkPlatformPkg/Library/PlatformHelperLib/DxePlatformHelperLib.inf
  185. [LibraryClasses.common.SEC]
  186. #
  187. # SEC specific phase
  188. #
  189. ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
  190. PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
  191. TimerLib|PcAtChipsetPkg/Library/AcpiTimerLib/BaseAcpiTimerLib.inf
  192. HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
  193. MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
  194. CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf
  195. [LibraryClasses.IA32.PEIM,LibraryClasses.IA32.PEI_CORE]
  196. #
  197. # PEI phase common
  198. #
  199. PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
  200. HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
  201. MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
  202. ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
  203. ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
  204. LockBoxLib|MdeModulePkg/Library/LockBoxNullLib/LockBoxNullLib.inf
  205. TimerLib|PcAtChipsetPkg/Library/AcpiTimerLib/BaseAcpiTimerLib.inf
  206. PlatformHelperLib|QuarkPlatformPkg/Library/PlatformHelperLib/PeiPlatformHelperLib.inf
  207. CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf
  208. !if $(SECURE_BOOT_ENABLE)
  209. BaseCryptLib|CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf
  210. !endif
  211. !if $(PERFORMANCE_ENABLE)
  212. PerformanceLib|MdeModulePkg/Library/PeiPerformanceLib/PeiPerformanceLib.inf
  213. !endif
  214. [LibraryClasses.IA32.DXE_CORE]
  215. HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
  216. MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
  217. CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
  218. !if $(PERFORMANCE_ENABLE)
  219. PerformanceLib|MdeModulePkg/Library/DxeCorePerformanceLib/DxeCorePerformanceLib.inf
  220. !endif
  221. [LibraryClasses.IA32.DXE_SMM_DRIVER]
  222. MmServicesTableLib|MdePkg/Library/MmServicesTableLib/MmServicesTableLib.inf
  223. SmmServicesTableLib|MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.inf
  224. ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
  225. MemoryAllocationLib|MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.inf
  226. LockBoxLib|MdeModulePkg/Library/LockBoxNullLib/LockBoxNullLib.inf
  227. PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
  228. CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf
  229. SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf
  230. !if $(SECURE_BOOT_ENABLE)
  231. BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
  232. !endif
  233. !if $(PERFORMANCE_ENABLE)
  234. PerformanceLib|MdeModulePkg/Library/SmmPerformanceLib/SmmPerformanceLib.inf
  235. !endif
  236. [LibraryClasses.IA32.SMM_CORE]
  237. SmmServicesTableLib|MdeModulePkg/Library/PiSmmCoreSmmServicesTableLib/PiSmmCoreSmmServicesTableLib.inf
  238. ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
  239. MemoryAllocationLib|MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/PiSmmCoreMemoryAllocationLib.inf
  240. PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
  241. SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf
  242. !if $(SECURE_BOOT_ENABLE)
  243. BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
  244. !endif
  245. !if $(PERFORMANCE_ENABLE)
  246. PerformanceLib|MdeModulePkg/Library/SmmCorePerformanceLib/SmmCorePerformanceLib.inf
  247. !endif
  248. [LibraryClasses.IA32.DXE_RUNTIME_DRIVER]
  249. ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
  250. VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLibRuntimeDxe.inf
  251. QNCAccessLib|QuarkSocPkg/QuarkNorthCluster/Library/QNCAccessLib/RuntimeQNCAccessLib.inf
  252. PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
  253. !if $(SECURE_BOOT_ENABLE)
  254. BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
  255. !endif
  256. [LibraryClasses.IA32.UEFI_DRIVER,LibraryClasses.IA32.UEFI_APPLICATION]
  257. PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
  258. ################################################################################
  259. #
  260. # Pcd Section - list of all EDK II PCD Entries defined by this Platform
  261. #
  262. ################################################################################
  263. [PcdsFeatureFlag]
  264. gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText|TRUE
  265. gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText|TRUE
  266. gEfiMdeModulePkgTokenSpaceGuid.PcdSupportUpdateCapsuleReset|TRUE
  267. gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
  268. gEfiMdeModulePkgTokenSpaceGuid.PcdPciBusHotplugDeviceSupport|FALSE
  269. gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE
  270. !if $(SOURCE_DEBUG_ENABLE)
  271. gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmDebug|TRUE
  272. !endif
  273. !if $(TARGET) == "RELEASE"
  274. gQuarkPlatformTokenSpaceGuid.WaitIfResetDueToError|FALSE
  275. !else
  276. gQuarkPlatformTokenSpaceGuid.WaitIfResetDueToError|TRUE
  277. !endif
  278. [PcdsFixedAtBuild]
  279. gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber|1
  280. gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
  281. !if $(LOGGING)
  282. !if $(SOURCE_DEBUG_ENABLE)
  283. gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x17
  284. !else
  285. gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x27
  286. !endif
  287. gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
  288. !else
  289. gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x0
  290. gEfiMdePkgTokenSpaceGuid.PcdPostCodePropertyMask|0x0
  291. gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x3
  292. !endif
  293. gEfiMdePkgTokenSpaceGuid.PcdPostCodePropertyMask|0x18
  294. gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xE0000000
  295. !if $(GALILEO) == GEN1
  296. gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|460800
  297. !endif
  298. !if $(GALILEO) == GEN2
  299. gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|921600
  300. !endif
  301. gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
  302. gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
  303. gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
  304. gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType|0
  305. !if $(PERFORMANCE_ENABLE)
  306. gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask|0x1
  307. gEfiMdeModulePkgTokenSpaceGuid.PcdMaxPeiPerformanceLogEntries|80
  308. !else
  309. gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask|0x00
  310. !endif
  311. gEfiMdeModulePkgTokenSpaceGuid.PcdLoadModuleAtFixAddressEnable|0
  312. !if $(SECURE_BOOT_ENABLE)
  313. gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x2000
  314. !endif
  315. gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize|0x00002000
  316. gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize|0x1000
  317. #
  318. # Make VariableRuntimeDxe work at emulated non-volatile variable mode.
  319. #
  320. gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvModeEnable|TRUE
  321. !if $(SECURE_BOOT_ENABLE)
  322. # override the default values from SecurityPkg to ensure images from all sources are verified in secure boot
  323. gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x04
  324. gEfiSecurityPkgTokenSpaceGuid.PcdFixedMediaImageVerificationPolicy|0x04
  325. gEfiSecurityPkgTokenSpaceGuid.PcdRemovableMediaImageVerificationPolicy|0x04
  326. !endif
  327. gQuarkPlatformTokenSpaceGuid.PcdEsramStage1Base|0x80000000
  328. !if $(SOURCE_DEBUG_ENABLE)
  329. gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdDebugLoadImageMethod|0x2
  330. !endif
  331. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialUseMmio|TRUE
  332. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialRegisterBase|0x9000B000
  333. !if $(GALILEO) == GEN1
  334. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialBaudRate|460800
  335. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialUseHardwareFlowControl|FALSE
  336. !endif
  337. !if $(GALILEO) == GEN2
  338. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialBaudRate|921600
  339. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialUseHardwareFlowControl|FALSE
  340. !endif
  341. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialLineControl|0x03
  342. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialFifoControl|0x07
  343. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialDetectCable|FALSE
  344. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialClockRate|44236800
  345. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialPciDeviceInfo|{0x14, 0x05, 0x84, 0x00, 0xFF}
  346. gEfiMdeModulePkgTokenSpaceGuid.PcdSerialRegisterStride|4
  347. #
  348. # typedef struct {
  349. # UINT16 VendorId; ///< Vendor ID to match the PCI device. The value 0xFFFF terminates the list of entries.
  350. # UINT16 DeviceId; ///< Device ID to match the PCI device
  351. # UINT32 ClockRate; ///< UART clock rate. Set to 0 for default clock rate of 1843200 Hz
  352. # UINT64 Offset; ///< The byte offset into to the BAR
  353. # UINT8 BarIndex; ///< Which BAR to get the UART base address
  354. # UINT8 RegisterStride; ///< UART register stride in bytes. Set to 0 for default register stride of 1 byte.
  355. # UINT16 ReceiveFifoDepth; ///< UART receive FIFO depth in bytes. Set to 0 for a default FIFO depth of 16 bytes.
  356. # UINT16 TransmitFifoDepth; ///< UART transmit FIFO depth in bytes. Set to 0 for a default FIFO depth of 16 bytes.
  357. # UINT8 Reserved[2];
  358. # } PCI_SERIAL_PARAMETER;
  359. #
  360. # Vendor 8086 Device 0936 Prog Interface 2, BAR #0, Offset 0, Stride = 4, Clock 44236800 (0x2a300000)
  361. # Vendor 8086 Device 0936 Prog Interface 2, BAR #0, Offset 0, Stride = 4, Clock 44236800 (0x2a300000)
  362. #
  363. # [Vendor] [Device] [---ClockRate---] [------------Offset-----------] [Bar] [Stride] [RxFifo] [TxFifo] [Rsvd] [Vendor]
  364. gEfiMdeModulePkgTokenSpaceGuid.PcdPciSerialParameters|{0x86,0x80, 0x36,0x09, 0x0,0x0,0xA3,0x02, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x00, 0x04, 0x0,0x0, 0x0,0x0, 0x0,0x0, 0xff,0xff}
  365. gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPciBusNumber |0
  366. gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPciDeviceNumber |31
  367. gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPciFunctionNumber |0
  368. gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPciEnableRegisterOffset|0x4b
  369. gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoBarEnableMask |0x80
  370. gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPciBarRegisterOffset |0x48
  371. gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiIoPortBaseAddress |0x1000
  372. gPcAtChipsetPkgTokenSpaceGuid.PcdAcpiPm1TmrOffset |0x0008
  373. gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 }
  374. gEfiMdeModulePkgTokenSpaceGuid.PcdConInConnectOnDemand|FALSE
  375. #
  376. # Quark does not support LFENCE. Use CPUID as speculation barrier
  377. #
  378. gEfiMdePkgTokenSpaceGuid.PcdSpeculationBarrierType|0x02
  379. [PcdsPatchableInModule]
  380. gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x803000C7
  381. gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
  382. [PcdsDynamicExHii.common.DEFAULT]
  383. !if $(PERFORMANCE_ENABLE)
  384. gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|0
  385. !else
  386. gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|5
  387. !endif
  388. gQuarkPlatformTokenSpaceGuid.PcdBootState|L"BootState"|gQuarkPlatformTokenSpaceGuid|0x0|TRUE
  389. [PcdsDynamicExDefault.common.DEFAULT]
  390. gEfiMdeModulePkgTokenSpaceGuid.PcdS3BootScriptTablePrivateDataPtr|0x0
  391. gQuarkPlatformTokenSpaceGuid.PcdEnableFastBoot|TRUE
  392. gQuarkPlatformTokenSpaceGuid.PcdUserIsPhysicallyPresent|FALSE
  393. gQuarkPlatformTokenSpaceGuid.PcdSpiFlashDeviceSize|0
  394. [PcdsDynamicExVpd]
  395. gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVendor|*|32|L"EDK II"
  396. gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareRevision|*|0x01000400
  397. gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString|*|64|L"Galileo 1.0.4"
  398. #
  399. # ClantonPeakSVP
  400. # gQuarkPlatformTokenSpaceGuid.PcdPlatformType|*|0x0002
  401. # gQuarkPlatformTokenSpaceGuid.PcdPlatformTypeName|*|64|L"ClantonPeakSVP"
  402. # gEfiQuarkNcSocIdTokenSpaceGuid.PcdMrcParameters|*|40|{0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x01, 0x01, 0x00, 0x03, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x01, 0x03, 0x7c, 0x92, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x40, 0x9c, 0x00, 0x00, 0x06}
  403. #
  404. # KipsBay
  405. # gQuarkPlatformTokenSpaceGuid.PcdPlatformType|*|0x0003
  406. # gQuarkPlatformTokenSpaceGuid.PcdPlatformTypeName|*|64|L"KipsBay"
  407. # gEfiQuarkNcSocIdTokenSpaceGuid.PcdMrcParameters|*|40|{0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x03, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x01, 0x01, 0x7c, 0x92, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x40, 0x9c, 0x00, 0x00, 0x06}
  408. #
  409. # CrossHill
  410. # gQuarkPlatformTokenSpaceGuid.PcdPlatformType|*|0x0004
  411. # gQuarkPlatformTokenSpaceGuid.PcdPlatformTypeName|*|64|L"CrossHill"
  412. # gEfiQuarkNcSocIdTokenSpaceGuid.PcdMrcParameters|*|40|{0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x03, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x01, 0x03, 0x7c, 0x92, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x40, 0x9c, 0x00, 0x00, 0x06}
  413. #
  414. # ClantonHill
  415. # gQuarkPlatformTokenSpaceGuid.PcdPlatformType|*|0x0005
  416. # gQuarkPlatformTokenSpaceGuid.PcdPlatformTypeName|*|64|L"ClantonHill"
  417. # gEfiQuarkNcSocIdTokenSpaceGuid.PcdMrcParameters|*|40|{0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x03, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x01, 0x02, 0x7c, 0x92, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x40, 0x9c, 0x00, 0x00, 0x06}
  418. #
  419. # Galileo
  420. # gQuarkPlatformTokenSpaceGuid.PcdPlatformType|*|0x0006
  421. # gQuarkPlatformTokenSpaceGuid.PcdPlatformTypeName|*|64|L"Galileo"
  422. # gEfiQuarkNcSocIdTokenSpaceGuid.PcdMrcParameters|*|40|{0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x03, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x01, 0x01, 0x7c, 0x92, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x40, 0x9c, 0x00, 0x00, 0x06}
  423. #
  424. # GalileoGen2
  425. # gQuarkPlatformTokenSpaceGuid.PcdPlatformType|*|0x0008
  426. # gQuarkPlatformTokenSpaceGuid.PcdPlatformTypeName|*|64|L"GalileoGen2"
  427. # gEfiQuarkNcSocIdTokenSpaceGuid.PcdMrcParameters|*|40|{0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x03, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x01, 0x01, 0x7c, 0x92, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x40, 0x9c, 0x00, 0x00, 0x06}
  428. #
  429. !if $(GALILEO) == GEN1
  430. gQuarkPlatformTokenSpaceGuid.PcdPlatformType|*|0x0006
  431. gQuarkPlatformTokenSpaceGuid.PcdPlatformTypeName|*|64|L"Galileo"
  432. gEfiQuarkNcSocIdTokenSpaceGuid.PcdMrcParameters|*|40|{0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x03, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x01, 0x01, 0x7c, 0x92, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x40, 0x9c, 0x00, 0x00, 0x06}
  433. !endif
  434. !if $(GALILEO) == GEN2
  435. gQuarkPlatformTokenSpaceGuid.PcdPlatformType|*|0x0008
  436. gQuarkPlatformTokenSpaceGuid.PcdPlatformTypeName|*|64|L"GalileoGen2"
  437. gEfiQuarkNcSocIdTokenSpaceGuid.PcdMrcParameters|*|40|{0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x03, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x01, 0x01, 0x7c, 0x92, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0x40, 0x9c, 0x00, 0x00, 0x06}
  438. !endif
  439. gEfiQuarkSCSocIdTokenSpaceGuid.PcdIohEthernetMac0|*|8|{0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
  440. gEfiQuarkSCSocIdTokenSpaceGuid.PcdIohEthernetMac1|*|8|{0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
  441. ###################################################################################################
  442. #
  443. # Components Section - list of the modules and components that will be processed by compilation
  444. # tools and the EDK II tools to generate PE32/PE32+/Coff image files.
  445. #
  446. # Note: The EDK II DSC file is not used to specify how compiled binary images get placed
  447. # into firmware volume images. This section is just a list of modules to compile from
  448. # source into UEFI-compliant binaries.
  449. # It is the FDF file that contains information on combining binary files into firmware
  450. # volume images, whose concept is beyond UEFI and is described in PI specification.
  451. # Binary modules do not need to be listed in this section, as they should be
  452. # specified in the FDF file. For example: Shell binary, FAT binary (Fat.efi),
  453. # Logo (Logo.bmp), and etc.
  454. # There may also be modules listed in this section that are not required in the FDF file,
  455. # When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
  456. # generated for it, but the binary will not be put into any firmware volume.
  457. #
  458. ###################################################################################################
  459. [Components.IA32]
  460. #
  461. # SEC Core
  462. #
  463. UefiCpuPkg/SecCore/SecCore.inf {
  464. !if $(SOURCE_DEBUG_ENABLE)
  465. <LibraryClasses>
  466. PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
  467. DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
  468. ResetSystemLib|QuarkSocPkg/QuarkNorthCluster/Library/ResetSystemLib/ResetSystemLib.inf
  469. !endif
  470. }
  471. #
  472. # PEI Core
  473. #
  474. MdeModulePkg/Core/Pei/PeiMain.inf
  475. #
  476. # PEIM
  477. #
  478. MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
  479. <LibraryClasses>
  480. PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
  481. }
  482. MdeModulePkg/Universal/FaultTolerantWritePei/FaultTolerantWritePei.inf
  483. MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
  484. MdeModulePkg/Universal/PcatSingleSegmentPciCfg2Pei/PcatSingleSegmentPciCfg2Pei.inf
  485. QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/MemoryInitPei.inf
  486. QuarkPlatformPkg/Platform/Pei/PlatformInit/PlatformEarlyInit.inf
  487. QuarkPlatformPkg/Platform/Pei/PlatformConfig/PlatformConfigPei.inf
  488. MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
  489. [Components.IA32]
  490. #
  491. # DXE Core
  492. #
  493. MdeModulePkg/Core/Dxe/DxeMain.inf
  494. !if $(SOURCE_DEBUG_ENABLE)
  495. SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxe.inf {
  496. <LibraryClasses>
  497. DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
  498. ResetSystemLib|QuarkSocPkg/QuarkNorthCluster/Library/ResetSystemLib/ResetSystemLib.inf
  499. }
  500. !endif
  501. QuarkPlatformPkg/Platform/Dxe/PlatformInit/PlatformInitDxe.inf
  502. #
  503. # Components that produce the architectural protocols
  504. #
  505. MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
  506. UefiCpuPkg/CpuDxe/CpuDxe.inf
  507. MdeModulePkg/Universal/Metronome/Metronome.inf
  508. MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
  509. MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
  510. MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
  511. MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
  512. MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
  513. MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
  514. PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
  515. #
  516. # Following are the DXE drivers (alphabetical order)
  517. #
  518. MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
  519. MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
  520. <LibraryClasses>
  521. PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
  522. }
  523. QuarkPlatformPkg/Pci/Dxe/PciHostBridge/PciHostBridge.inf
  524. UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
  525. #
  526. # Platform
  527. #
  528. MdeModulePkg/Universal/BdsDxe/BdsDxe.inf {
  529. <LibraryClasses>
  530. PlatformBootManagerLib|QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
  531. }
  532. QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/QNCInitDxe.inf
  533. PcAtChipsetPkg/HpetTimerDxe/HpetTimerDxe.inf
  534. QuarkPlatformPkg/Platform/Dxe/Setup/DxePlatform.inf
  535. MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
  536. #
  537. # PCI
  538. #
  539. QuarkPlatformPkg/Pci/Dxe/PciPlatform/PciPlatform.inf
  540. MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
  541. QuarkSocPkg/QuarkSouthCluster/IohInit/Dxe/IohInitDxe.inf
  542. MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
  543. #
  544. # Console
  545. #
  546. MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
  547. MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf {
  548. <LibraryClasses>
  549. PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
  550. }
  551. MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
  552. MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
  553. MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf {
  554. <LibraryClasses>
  555. CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf
  556. }
  557. MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
  558. MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
  559. #
  560. # File System Modules
  561. #
  562. MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemDxe.inf
  563. #
  564. # Performance Application
  565. #
  566. !if $(PERFORMANCE_ENABLE)
  567. ShellPkg/DynamicCommand/DpDynamicCommand/DpDynamicCommand.inf {
  568. <PcdsFixedAtBuild>
  569. gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
  570. }
  571. !endif
  572. ShellPkg/Application/Shell/Shell.inf {
  573. <LibraryClasses>
  574. ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
  575. NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
  576. NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
  577. NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
  578. NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
  579. NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
  580. NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
  581. NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
  582. HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
  583. OrderedCollectionLib|MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf
  584. PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
  585. BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
  586. <PcdsFixedAtBuild>
  587. gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
  588. gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
  589. gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
  590. }