OpenBoardPkg.dsc 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  1. ## @file
  2. # The main build description file for the GalagoPro3 board.
  3. #
  4. # Copyright (c) 2019 - 2022, Intel Corporation. All rights reserved.<BR>
  5. #
  6. # SPDX-License-Identifier: BSD-2-Clause-Patent
  7. #
  8. ##
  9. [Defines]
  10. DEFINE PLATFORM_PACKAGE = MinPlatformPkg
  11. DEFINE PLATFORM_SI_PACKAGE = KabylakeSiliconPkg
  12. DEFINE PLATFORM_SI_BIN_PACKAGE = KabylakeSiliconBinPkg
  13. DEFINE PLATFORM_FSP_BIN_PACKAGE = KabylakeFspBinPkg
  14. DEFINE PLATFORM_BOARD_PACKAGE = KabylakeOpenBoardPkg
  15. DEFINE BOARD = GalagoPro3
  16. DEFINE PROJECT = $(PLATFORM_BOARD_PACKAGE)/$(BOARD)
  17. DEFINE PEI_ARCH = IA32
  18. DEFINE DXE_ARCH = X64
  19. DEFINE TOP_MEMORY_ADDRESS = 0x0
  20. #
  21. # Default value for OpenBoardPkg.fdf use
  22. #
  23. DEFINE BIOS_SIZE_OPTION = SIZE_60
  24. PLATFORM_NAME = $(PLATFORM_PACKAGE)
  25. PLATFORM_GUID = 7324F33D-4E96-4F8B-A550-544DE6162AB7
  26. PLATFORM_VERSION = 0.1
  27. DSC_SPECIFICATION = 0x00010005
  28. OUTPUT_DIRECTORY = Build/$(PROJECT)
  29. SUPPORTED_ARCHITECTURES = IA32|X64
  30. BUILD_TARGETS = DEBUG|RELEASE
  31. SKUID_IDENTIFIER = ALL
  32. FLASH_DEFINITION = $(PROJECT)/OpenBoardPkg.fdf
  33. FIX_LOAD_TOP_MEMORY_ADDRESS = 0x0
  34. #
  35. # Include PCD configuration for this board.
  36. #
  37. !include AdvancedFeaturePkg/Include/AdvancedFeaturesPcd.dsc
  38. !include OpenBoardPkgPcd.dsc
  39. !include AdvancedFeaturePkg/Include/AdvancedFeatures.dsc
  40. ################################################################################
  41. #
  42. # SKU Identification section - list of all SKU IDs supported by this board.
  43. #
  44. ################################################################################
  45. [SkuIds]
  46. 0|DEFAULT # The entry: 0|DEFAULT is reserved and always required.
  47. 0x20|GalagoPro3
  48. ################################################################################
  49. #
  50. # Includes section - other DSC file contents included for this board build.
  51. #
  52. ################################################################################
  53. #######################################
  54. # Library Includes
  55. #######################################
  56. !include $(PLATFORM_PACKAGE)/Include/Dsc/CoreCommonLib.dsc
  57. !include $(PLATFORM_PACKAGE)/Include/Dsc/CorePeiLib.dsc
  58. !include $(PLATFORM_PACKAGE)/Include/Dsc/CoreDxeLib.dsc
  59. !include $(PLATFORM_SI_PACKAGE)/SiPkgCommonLib.dsc
  60. !include $(PLATFORM_SI_PACKAGE)/SiPkgPeiLib.dsc
  61. !include $(PLATFORM_SI_PACKAGE)/SiPkgDxeLib.dsc
  62. #######################################
  63. # Component Includes
  64. #######################################
  65. # @todo: Change below line to [Components.$(PEI_ARCH)] after https://bugzilla.tianocore.org/show_bug.cgi?id=2308
  66. # is completed
  67. [Components.IA32]
  68. !include $(PLATFORM_PACKAGE)/Include/Dsc/CorePeiInclude.dsc
  69. !include $(PLATFORM_SI_PACKAGE)/SiPkgPei.dsc
  70. # @todo: Change below line to [Components.$(DXE_ARCH)] after https://bugzilla.tianocore.org/show_bug.cgi?id=2308
  71. # is completed
  72. [Components.X64]
  73. !include $(PLATFORM_PACKAGE)/Include/Dsc/CoreDxeInclude.dsc
  74. !include $(PLATFORM_SI_PACKAGE)/SiPkgDxe.dsc
  75. #######################################
  76. # Build Option Includes
  77. #######################################
  78. !include $(PLATFORM_SI_PACKAGE)/SiPkgBuildOption.dsc
  79. !include OpenBoardPkgBuildOption.dsc
  80. ################################################################################
  81. #
  82. # Library Class section - list of all Library Classes needed by this board.
  83. #
  84. ################################################################################
  85. [LibraryClasses.common]
  86. #######################################
  87. # Edk2 Packages
  88. #######################################
  89. FspWrapperApiLib|IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/BaseFspWrapperApiLib.inf
  90. FspWrapperApiTestLib|IntelFsp2WrapperPkg/Library/PeiFspWrapperApiTestLib/PeiFspWrapperApiTestLib.inf
  91. #######################################
  92. # Silicon Initialization Package
  93. #######################################
  94. ConfigBlockLib|IntelSiliconPkg/Library/BaseConfigBlockLib/BaseConfigBlockLib.inf
  95. SiliconInitLib|$(PLATFORM_SI_PACKAGE)/Library/PeiSiliconInitLib/PeiSiliconInitLib.inf
  96. SiliconPolicyInitLib|$(PLATFORM_SI_PACKAGE)/Library/PeiSiliconPolicyInitLibFsp/PeiSiliconPolicyInitLibFsp.inf
  97. #####################################
  98. # Platform Package
  99. #####################################
  100. BoardInitLib|$(PLATFORM_PACKAGE)/PlatformInit/Library/BoardInitLibNull/BoardInitLibNull.inf
  101. FspWrapperHobProcessLib|$(PLATFORM_PACKAGE)/FspWrapper/Library/PeiFspWrapperHobProcessLib/PeiFspWrapperHobProcessLib.inf
  102. FspWrapperPlatformLib|$(PLATFORM_PACKAGE)/FspWrapper/Library/PeiFspWrapperPlatformLib/PeiFspWrapperPlatformLib.inf
  103. PciHostBridgeLib|$(PLATFORM_PACKAGE)/Pci/Library/PciHostBridgeLibSimple/PciHostBridgeLibSimple.inf
  104. PciSegmentInfoLib|$(PLATFORM_PACKAGE)/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.inf
  105. PeiLib|$(PLATFORM_PACKAGE)/Library/PeiLib/PeiLib.inf
  106. PlatformBootManagerLib|$(PLATFORM_PACKAGE)/Bds/Library/DxePlatformBootManagerLib/DxePlatformBootManagerLib.inf
  107. ReportFvLib|$(PLATFORM_PACKAGE)/PlatformInit/Library/PeiReportFvLib/PeiReportFvLib.inf
  108. TestPointCheckLib|$(PLATFORM_PACKAGE)/Test/Library/TestPointCheckLibNull/TestPointCheckLibNull.inf
  109. #######################################
  110. # Board Package
  111. #######################################
  112. GpioExpanderLib|$(PLATFORM_BOARD_PACKAGE)/Library/BaseGpioExpanderLib/BaseGpioExpanderLib.inf
  113. I2cAccessLib|$(PLATFORM_BOARD_PACKAGE)/Library/PeiI2cAccessLib/PeiI2cAccessLib.inf
  114. PlatformSecLib|$(PLATFORM_PACKAGE)/FspWrapper/Library/SecFspWrapperPlatformSecLib/SecFspWrapperPlatformSecLib.inf
  115. HdmiDebugGpioInitLib|$(PLATFORM_BOARD_PACKAGE)/Library/HdmiDebugGpioInitLib/HdmiDebugGpioInitLib.inf
  116. HdmiDebugPchDetectionLib|$(PLATFORM_BOARD_PACKAGE)/Library/HdmiDebugPchDetectionLib/HdmiDebugPchDetectionLib.inf
  117. # Thunderbolt
  118. !if gKabylakeOpenBoardPkgTokenSpaceGuid.PcdTbtEnable == TRUE
  119. DxeTbtPolicyLib|$(PLATFORM_BOARD_PACKAGE)/Features/Tbt/Library/DxeTbtPolicyLib/DxeTbtPolicyLib.inf
  120. TbtCommonLib|$(PLATFORM_BOARD_PACKAGE)/Features/Tbt/Library/PeiDxeSmmTbtCommonLib/TbtCommonLib.inf
  121. !endif
  122. #######################################
  123. # Board-specific
  124. #######################################
  125. PlatformHookLib|$(PROJECT)/Library/BasePlatformHookLib/BasePlatformHookLib.inf
  126. SiliconPolicyUpdateLib|$(PROJECT)/FspWrapper/Library/PeiSiliconPolicyUpdateLibFsp/PeiSiliconPolicyUpdateLibFsp.inf
  127. [LibraryClasses.IA32.SEC]
  128. #######################################
  129. # Edk2 Packages
  130. #######################################
  131. DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
  132. SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf
  133. #######################################
  134. # Platform Package
  135. #######################################
  136. SecBoardInitLib|$(PLATFORM_PACKAGE)/PlatformInit/Library/SecBoardInitLibNull/SecBoardInitLibNull.inf
  137. TestPointCheckLib|$(PLATFORM_PACKAGE)/Test/Library/TestPointCheckLib/SecTestPointCheckLib.inf
  138. [LibraryClasses.common.PEIM]
  139. #######################################
  140. # Edk2 Packages
  141. #######################################
  142. DebugLib|MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
  143. SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf
  144. SetCacheMtrrLib|$(PLATFORM_PACKAGE)/Library/SetCacheMtrrLib/SetCacheMtrrLibNull.inf
  145. #######################################
  146. # Silicon Package
  147. #######################################
  148. ReportCpuHobLib|IntelSiliconPkg/Library/ReportCpuHobLib/ReportCpuHobLib.inf
  149. #######################################
  150. # Platform Package
  151. #######################################
  152. BoardInitLib|$(PLATFORM_PACKAGE)/PlatformInit/Library/MultiBoardInitSupportLib/PeiMultiBoardInitSupportLib.inf
  153. FspWrapperPlatformLib|$(PLATFORM_PACKAGE)/FspWrapper/Library/PeiFspWrapperPlatformLib/PeiFspWrapperPlatformLib.inf
  154. MultiBoardInitSupportLib|$(PLATFORM_PACKAGE)/PlatformInit/Library/MultiBoardInitSupportLib/PeiMultiBoardInitSupportLib.inf
  155. TestPointLib|$(PLATFORM_PACKAGE)/Test/Library/TestPointLib/PeiTestPointLib.inf
  156. !if $(TARGET) == DEBUG
  157. TestPointCheckLib|$(PLATFORM_PACKAGE)/Test/Library/TestPointCheckLib/PeiTestPointCheckLib.inf
  158. !endif
  159. #######################################
  160. # Board Package
  161. #######################################
  162. # Thunderbolt
  163. !if gKabylakeOpenBoardPkgTokenSpaceGuid.PcdTbtEnable == TRUE
  164. PeiDTbtInitLib|$(PLATFORM_BOARD_PACKAGE)/Features/Tbt/Library/Private/PeiDTbtInitLib/PeiDTbtInitLib.inf
  165. PeiTbtPolicyLib|$(PLATFORM_BOARD_PACKAGE)/Features/Tbt/Library/PeiTbtPolicyLib/PeiTbtPolicyLib.inf
  166. !endif
  167. [LibraryClasses.common.DXE_DRIVER]
  168. #######################################
  169. # Silicon Initialization Package
  170. #######################################
  171. SiliconPolicyInitLib|$(PLATFORM_SI_PACKAGE)/Library/DxeSiliconPolicyInitLib/DxeSiliconPolicyInitLib.inf
  172. #######################################
  173. # Platform Package
  174. #######################################
  175. BoardAcpiTableLib|$(PLATFORM_PACKAGE)/Acpi/Library/MultiBoardAcpiSupportLib/DxeMultiBoardAcpiSupportLib.inf
  176. BoardInitLib|$(PLATFORM_PACKAGE)/PlatformInit/Library/MultiBoardInitSupportLib/DxeMultiBoardInitSupportLib.inf
  177. FspWrapperPlatformLib|$(PLATFORM_PACKAGE)/FspWrapper/Library/DxeFspWrapperPlatformLib/DxeFspWrapperPlatformLib.inf
  178. MultiBoardAcpiSupportLib|$(PLATFORM_PACKAGE)/Acpi/Library/MultiBoardAcpiSupportLib/DxeMultiBoardAcpiSupportLib.inf
  179. MultiBoardInitSupportLib|$(PLATFORM_PACKAGE)/PlatformInit/Library/MultiBoardInitSupportLib/DxeMultiBoardInitSupportLib.inf
  180. TestPointLib|$(PLATFORM_PACKAGE)/Test/Library/TestPointLib/DxeTestPointLib.inf
  181. !if $(TARGET) == DEBUG
  182. TestPointCheckLib|$(PLATFORM_PACKAGE)/Test/Library/TestPointCheckLib/DxeTestPointCheckLib.inf
  183. !endif
  184. #######################################
  185. # Board Package
  186. #######################################
  187. BoardBdsHookLib|BoardModulePkg/Library/BoardBdsHookLib/BoardBdsHookLib.inf
  188. BoardBootManagerLib|BoardModulePkg/Library/BoardBootManagerLib/BoardBootManagerLib.inf
  189. #######################################
  190. # Board-specific
  191. #######################################
  192. SiliconPolicyUpdateLib|$(PROJECT)/Policy/Library/DxeSiliconPolicyUpdateLib/DxeSiliconPolicyUpdateLib.inf
  193. [LibraryClasses.X64.DXE_RUNTIME_DRIVER]
  194. #######################################
  195. # Silicon Initialization Package
  196. #######################################
  197. ResetSystemLib|$(PLATFORM_SI_PACKAGE)/Pch/Library/DxeRuntimeResetSystemLib/DxeRuntimeResetSystemLib.inf
  198. [LibraryClasses.X64.DXE_SMM_DRIVER]
  199. #######################################
  200. # Silicon Initialization Package
  201. #######################################
  202. SpiFlashCommonLib|IntelSiliconPkg/Library/SmmSpiFlashCommonLib/SmmSpiFlashCommonLib.inf
  203. #######################################
  204. # Platform Package
  205. #######################################
  206. BoardAcpiEnableLib|$(PLATFORM_PACKAGE)/Acpi/Library/MultiBoardAcpiSupportLib/SmmMultiBoardAcpiSupportLib.inf
  207. MultiBoardAcpiSupportLib|$(PLATFORM_PACKAGE)/Acpi/Library/MultiBoardAcpiSupportLib/SmmMultiBoardAcpiSupportLib.inf
  208. TestPointLib|$(PLATFORM_PACKAGE)/Test/Library/TestPointLib/SmmTestPointLib.inf
  209. !if $(TARGET) == DEBUG
  210. TestPointCheckLib|$(PLATFORM_PACKAGE)/Test/Library/TestPointCheckLib/SmmTestPointCheckLib.inf
  211. !endif
  212. #######################################
  213. # PEI Components
  214. #######################################
  215. # @todo: Change below line to [Components.$(PEI_ARCH)] after https://bugzilla.tianocore.org/show_bug.cgi?id=2308
  216. # is completed
  217. [Components.IA32]
  218. #######################################
  219. # Edk2 Packages
  220. #######################################
  221. UefiCpuPkg/SecCore/SecCore.inf {
  222. <LibraryClasses>
  223. PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
  224. }
  225. MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf {
  226. <LibraryClasses>
  227. DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
  228. }
  229. IntelFsp2WrapperPkg/FspmWrapperPeim/FspmWrapperPeim.inf {
  230. <LibraryClasses>
  231. SiliconPolicyInitLib|$(PLATFORM_SI_PACKAGE)/Library/PeiSiliconPolicyInitLibDependency/PeiPreMemSiliconPolicyInitLibDependency.inf
  232. }
  233. IntelFsp2WrapperPkg/FspsWrapperPeim/FspsWrapperPeim.inf {
  234. <LibraryClasses>
  235. SiliconPolicyInitLib|$(PLATFORM_SI_PACKAGE)/Library/PeiSiliconPolicyInitLibDependency/PeiPostMemSiliconPolicyInitLibDependency.inf
  236. }
  237. #######################################
  238. # Silicon Initialization Package
  239. #######################################
  240. IntelSiliconPkg/Feature/VTd/IntelVTdPmrPei/IntelVTdPmrPei.inf
  241. IntelSiliconPkg/Feature/VTd/PlatformVTdInfoSamplePei/PlatformVTdInfoSamplePei.inf
  242. #######################################
  243. # Platform Package
  244. #######################################
  245. $(PLATFORM_PACKAGE)/PlatformInit/ReportFv/ReportFvPei.inf
  246. $(PLATFORM_PACKAGE)/PlatformInit/PlatformInitPei/PlatformInitPreMem.inf {
  247. <LibraryClasses>
  248. !if gKabylakeOpenBoardPkgTokenSpaceGuid.PcdMultiBoardSupport == FALSE
  249. BoardInitLib|$(PROJECT)/Library/BoardInitLib/PeiBoardInitPreMemLib.inf
  250. !else
  251. NULL|$(PROJECT)/Library/BoardInitLib/PeiMultiBoardInitPreMemLib.inf
  252. !endif
  253. }
  254. $(PLATFORM_PACKAGE)/PlatformInit/PlatformInitPei/PlatformInitPostMem.inf {
  255. <LibraryClasses>
  256. !if gKabylakeOpenBoardPkgTokenSpaceGuid.PcdMultiBoardSupport == FALSE
  257. BoardInitLib|$(PROJECT)/Library/BoardInitLib/PeiBoardInitPostMemLib.inf
  258. !else
  259. NULL|$(PROJECT)/Library/BoardInitLib/PeiMultiBoardInitPostMemLib.inf
  260. !endif
  261. }
  262. $(PLATFORM_PACKAGE)/PlatformInit/SiliconPolicyPei/SiliconPolicyPeiPreMem.inf {
  263. <LibraryClasses>
  264. #
  265. # Hook a library constructor to update some policy fields when policy is installed.
  266. #
  267. NULL|$(PLATFORM_BOARD_PACKAGE)/FspWrapper/Library/PeiSiliconPolicyNotifyLib/PeiPreMemSiliconPolicyNotifyLib.inf
  268. }
  269. $(PLATFORM_PACKAGE)/PlatformInit/SiliconPolicyPei/SiliconPolicyPeiPostMem.inf
  270. !if gMinPlatformPkgTokenSpaceGuid.PcdTpm2Enable == TRUE
  271. $(PLATFORM_PACKAGE)/Tcg/Tcg2PlatformPei/Tcg2PlatformPei.inf
  272. !endif
  273. #######################################
  274. # Board Package
  275. #######################################
  276. # Thunderbolt
  277. !if gKabylakeOpenBoardPkgTokenSpaceGuid.PcdTbtEnable == TRUE
  278. $(PLATFORM_BOARD_PACKAGE)/Features/Tbt/TbtInit/Pei/PeiTbtInit.inf
  279. !endif
  280. $(PLATFORM_BOARD_PACKAGE)/BiosInfo/BiosInfo.inf
  281. #######################################
  282. # DXE Components
  283. #######################################
  284. # @todo: Change below line to [Components.$(DXE_ARCH)] after https://bugzilla.tianocore.org/show_bug.cgi?id=2308
  285. # is completed
  286. [Components.X64]
  287. #######################################
  288. # Edk2 Packages
  289. #######################################
  290. IntelFsp2WrapperPkg/FspWrapperNotifyDxe/FspWrapperNotifyDxe.inf
  291. MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
  292. MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
  293. MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf
  294. MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf
  295. MdeModulePkg/Bus/Pci/SataControllerDxe/SataControllerDxe.inf
  296. MdeModulePkg/Universal/Console/GraphicsOutputDxe/GraphicsOutputDxe.inf
  297. MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
  298. MdeModulePkg/Universal/BdsDxe/BdsDxe.inf{
  299. <LibraryClasses>
  300. NULL|BoardModulePkg/Library/BdsPs2KbcLib/BdsPs2KbcLib.inf
  301. }
  302. UefiCpuPkg/CpuDxe/CpuDxe.inf
  303. ShellPkg/Application/Shell/Shell.inf {
  304. <PcdsFixedAtBuild>
  305. gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
  306. <LibraryClasses>
  307. NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
  308. NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
  309. NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
  310. NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
  311. NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
  312. NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
  313. NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
  314. NULL|ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf
  315. ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
  316. HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
  317. BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
  318. ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
  319. ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
  320. }
  321. !if gMinPlatformPkgTokenSpaceGuid.PcdBootToShellOnly == FALSE
  322. UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf {
  323. <PcdsPatchableInModule>
  324. gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80080046
  325. <LibraryClasses>
  326. !if $(TARGET) == DEBUG
  327. DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
  328. !endif
  329. }
  330. !endif
  331. #######################################
  332. # Silicon Initialization Package
  333. #######################################
  334. IntelSiliconPkg/Feature/VTd/IntelVTdDxe/IntelVTdDxe.inf
  335. $(PLATFORM_SI_BIN_PACKAGE)/Microcode/MicrocodeUpdates.inf
  336. !if gMinPlatformPkgTokenSpaceGuid.PcdBootToShellOnly == FALSE
  337. IntelSiliconPkg/Feature/Flash/SpiFvbService/SpiFvbServiceSmm.inf
  338. !endif
  339. #######################################
  340. # Platform Package
  341. #######################################
  342. $(PLATFORM_PACKAGE)/FspWrapper/SaveMemoryConfig/SaveMemoryConfig.inf
  343. $(PLATFORM_PACKAGE)/Hsti/HstiIbvPlatformDxe/HstiIbvPlatformDxe.inf
  344. $(PLATFORM_PACKAGE)/PlatformInit/PlatformInitDxe/PlatformInitDxe.inf
  345. $(PLATFORM_PACKAGE)/PlatformInit/SiliconPolicyDxe/SiliconPolicyDxe.inf
  346. $(PLATFORM_PACKAGE)/Test/TestPointDumpApp/TestPointDumpApp.inf
  347. $(PLATFORM_PACKAGE)/Test/TestPointStubDxe/TestPointStubDxe.inf
  348. !if gMinPlatformPkgTokenSpaceGuid.PcdTpm2Enable == TRUE
  349. $(PLATFORM_PACKAGE)/Tcg/Tcg2PlatformDxe/Tcg2PlatformDxe.inf
  350. !endif
  351. !if gMinPlatformPkgTokenSpaceGuid.PcdBootToShellOnly == FALSE
  352. $(PLATFORM_PACKAGE)/PlatformInit/PlatformInitSmm/PlatformInitSmm.inf
  353. $(PLATFORM_PACKAGE)/Acpi/AcpiSmm/AcpiSmm.inf {
  354. <LibraryClasses>
  355. !if gKabylakeOpenBoardPkgTokenSpaceGuid.PcdMultiBoardSupport == FALSE
  356. BoardAcpiEnableLib|$(PROJECT)/Library/BoardAcpiLib/SmmBoardAcpiEnableLib.inf
  357. !else
  358. NULL|$(PROJECT)/Library/BoardAcpiLib/SmmMultiBoardAcpiSupportLib.inf
  359. !endif
  360. }
  361. $(PLATFORM_PACKAGE)/Acpi/AcpiTables/AcpiPlatform.inf {
  362. <LibraryClasses>
  363. !if gKabylakeOpenBoardPkgTokenSpaceGuid.PcdMultiBoardSupport == FALSE
  364. BoardAcpiTableLib|$(PROJECT)/Library/BoardAcpiLib/DxeBoardAcpiTableLib.inf
  365. !else
  366. NULL|$(PROJECT)/Library/BoardAcpiLib/DxeMultiBoardAcpiSupportLib.inf
  367. !endif
  368. }
  369. !endif
  370. #######################################
  371. # Board Package
  372. #######################################
  373. # Thunderbolt
  374. !if gKabylakeOpenBoardPkgTokenSpaceGuid.PcdTbtEnable == TRUE
  375. $(PLATFORM_BOARD_PACKAGE)/Features/Tbt/TbtInit/Smm/TbtSmm.inf
  376. $(PLATFORM_BOARD_PACKAGE)/Features/Tbt/TbtInit/Dxe/TbtDxe.inf
  377. $(PLATFORM_BOARD_PACKAGE)/Features/PciHotPlug/PciHotPlug.inf
  378. !endif
  379. !if gMinPlatformPkgTokenSpaceGuid.PcdBootToShellOnly == FALSE
  380. $(PLATFORM_BOARD_PACKAGE)/Acpi/BoardAcpiDxe/BoardAcpiDxe.inf {
  381. <LibraryClasses>
  382. !if gKabylakeOpenBoardPkgTokenSpaceGuid.PcdMultiBoardSupport == FALSE
  383. BoardAcpiTableLib|$(PROJECT)/Library/BoardAcpiLib/DxeBoardAcpiTableLib.inf
  384. !else
  385. NULL|$(PROJECT)/Library/BoardAcpiLib/DxeMultiBoardAcpiSupportLib.inf
  386. !endif
  387. }
  388. !endif
  389. BoardModulePkg/LegacySioDxe/LegacySioDxe.inf
  390. BoardModulePkg/BoardBdsHookDxe/BoardBdsHookDxe.inf