QuarkMin.dsc 31 KB

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