]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/OvmfPkgIa32.dsc
OvmfPkg/PlatformPei: Move global variables to PlatformInfoHob
[mirror_edk2.git] / OvmfPkg / OvmfPkgIa32.dsc
1 ## @file
2 # EFI/Framework Open Virtual Machine Firmware (OVMF) platform
3 #
4 # Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.<BR>
5 # (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
6 # Copyright (c) Microsoft Corporation.
7 #
8 # SPDX-License-Identifier: BSD-2-Clause-Patent
9 #
10 ##
11
12 ################################################################################
13 #
14 # Defines Section - statements that will be processed to create a Makefile.
15 #
16 ################################################################################
17 [Defines]
18 PLATFORM_NAME = Ovmf
19 PLATFORM_GUID = 5a9e7754-d81b-49ea-85ad-69eaa7b1539b
20 PLATFORM_VERSION = 0.1
21 DSC_SPECIFICATION = 0x00010005
22 OUTPUT_DIRECTORY = Build/OvmfIa32
23 SUPPORTED_ARCHITECTURES = IA32
24 BUILD_TARGETS = NOOPT|DEBUG|RELEASE
25 SKUID_IDENTIFIER = DEFAULT
26 FLASH_DEFINITION = OvmfPkg/OvmfPkgIa32.fdf
27
28 #
29 # Defines for default states. These can be changed on the command line.
30 # -D FLAG=VALUE
31 #
32 DEFINE SECURE_BOOT_ENABLE = FALSE
33 DEFINE SMM_REQUIRE = FALSE
34 DEFINE SOURCE_DEBUG_ENABLE = FALSE
35 DEFINE LOAD_X64_ON_IA32_ENABLE = FALSE
36
37 !include OvmfPkg/OvmfTpmDefines.dsc.inc
38
39 #
40 # Network definition
41 #
42 DEFINE NETWORK_TLS_ENABLE = FALSE
43 DEFINE NETWORK_IP6_ENABLE = FALSE
44 DEFINE NETWORK_HTTP_BOOT_ENABLE = FALSE
45 DEFINE NETWORK_ALLOW_HTTP_CONNECTIONS = TRUE
46 DEFINE NETWORK_ISCSI_ENABLE = TRUE
47
48 !include NetworkPkg/NetworkDefines.dsc.inc
49
50 #
51 # Device drivers
52 #
53 DEFINE PVSCSI_ENABLE = TRUE
54 DEFINE MPT_SCSI_ENABLE = TRUE
55 DEFINE LSI_SCSI_ENABLE = FALSE
56
57 #
58 # Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to
59 # one of the supported values, in place of any of the convenience macros, is
60 # permitted.
61 #
62 !ifdef $(FD_SIZE_1MB)
63 DEFINE FD_SIZE_IN_KB = 1024
64 !else
65 !ifdef $(FD_SIZE_2MB)
66 DEFINE FD_SIZE_IN_KB = 2048
67 !else
68 !ifdef $(FD_SIZE_4MB)
69 DEFINE FD_SIZE_IN_KB = 4096
70 !else
71 DEFINE FD_SIZE_IN_KB = 4096
72 !endif
73 !endif
74 !endif
75
76 [BuildOptions]
77 GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
78 INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
79 MSFT:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
80 !if $(TOOL_CHAIN_TAG) != "XCODE5" && $(TOOL_CHAIN_TAG) != "CLANGPDB"
81 GCC:*_*_*_CC_FLAGS = -mno-mmx -mno-sse
82 !endif
83 RELEASE_*_*_GENFW_FLAGS = --zero
84
85 #
86 # Disable deprecated APIs.
87 #
88 MSFT:*_*_*_CC_FLAGS = /D DISABLE_NEW_DEPRECATED_INTERFACES
89 INTEL:*_*_*_CC_FLAGS = /D DISABLE_NEW_DEPRECATED_INTERFACES
90 GCC:*_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES
91
92 !include NetworkPkg/NetworkBuildOptions.dsc.inc
93
94 [BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
95 GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
96 XCODE:*_*_*_DLINK_FLAGS = -seg1addr 0x1000 -segalign 0x1000
97 XCODE:*_*_*_MTOC_FLAGS = -align 0x1000
98 CLANGPDB:*_*_*_DLINK_FLAGS = /ALIGN:4096
99
100 # Force PE/COFF sections to be aligned at 4KB boundaries to support page level
101 # protection of DXE_SMM_DRIVER/SMM_CORE modules
102 [BuildOptions.common.EDKII.DXE_SMM_DRIVER, BuildOptions.common.EDKII.SMM_CORE]
103 GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
104 XCODE:*_*_*_DLINK_FLAGS = -seg1addr 0x1000 -segalign 0x1000
105 XCODE:*_*_*_MTOC_FLAGS = -align 0x1000
106 CLANGPDB:*_*_*_DLINK_FLAGS = /ALIGN:4096
107
108 ################################################################################
109 #
110 # SKU Identification section - list of all SKU IDs supported by this Platform.
111 #
112 ################################################################################
113 [SkuIds]
114 0|DEFAULT
115
116 ################################################################################
117 #
118 # Library Class section - list of all Library Classes needed by this Platform.
119 #
120 ################################################################################
121
122 !include MdePkg/MdeLibs.dsc.inc
123
124 [LibraryClasses]
125 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
126 TimerLib|OvmfPkg/Library/AcpiTimerLib/BaseAcpiTimerLib.inf
127 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/BaseResetSystemLib.inf
128 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
129 BaseMemoryLib|MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.inf
130 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
131 SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
132 TimeBaseLib|EmbeddedPkg/Library/TimeBaseLib/TimeBaseLib.inf
133 BmpSupportLib|MdeModulePkg/Library/BaseBmpSupportLib/BaseBmpSupportLib.inf
134 SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
135 CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
136 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
137 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
138 CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
139 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
140 UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
141 HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
142 SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
143 UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
144 BootLogoLib|MdeModulePkg/Library/BootLogoLib/BootLogoLib.inf
145 FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf
146 CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
147 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
148 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
149 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
150 PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
151 PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf
152 PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
153 PciSegmentLib|MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf
154 PciCapLib|OvmfPkg/Library/BasePciCapLib/BasePciCapLib.inf
155 PciCapPciSegmentLib|OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.inf
156 PciCapPciIoLib|OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf
157 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicSev.inf
158 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
159 SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf
160 MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf
161 MicrocodeLib|UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf
162 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
163 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
164 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
165 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
166 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
167 DevicePathLib|MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf
168 NvVarsFileLib|OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.inf
169 FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
170 UefiCpuLib|UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
171 SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
172 UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
173 SerializeVariablesLib|OvmfPkg/Library/SerializeVariablesLib/SerializeVariablesLib.inf
174 QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgDxeLib.inf
175 QemuFwCfgSimpleParserLib|OvmfPkg/Library/QemuFwCfgSimpleParserLib/QemuFwCfgSimpleParserLib.inf
176 VirtioLib|OvmfPkg/Library/VirtioLib/VirtioLib.inf
177 LoadLinuxLib|OvmfPkg/Library/LoadLinuxLib/LoadLinuxLib.inf
178 MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/DxeMemEncryptSevLib.inf
179 !if $(SMM_REQUIRE) == FALSE
180 LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf
181 !endif
182 CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf
183 FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.inf
184
185 !if $(SOURCE_DEBUG_ENABLE) == TRUE
186 PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
187 DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
188 !else
189 PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
190 DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
191 !endif
192
193 LocalApicLib|UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf
194 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
195
196 IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
197 !if $(NETWORK_TLS_ENABLE) == TRUE
198 OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
199 !else
200 OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLibCrypto.inf
201 !endif
202 RngLib|MdePkg/Library/BaseRngLibTimerLib/BaseRngLibTimerLib.inf
203
204 !if $(SECURE_BOOT_ENABLE) == TRUE
205 PlatformSecureLib|OvmfPkg/Library/PlatformSecureLib/PlatformSecureLib.inf
206 AuthVariableLib|SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf
207 SecureBootVariableLib|SecurityPkg/Library/SecureBootVariableLib/SecureBootVariableLib.inf
208 SecureBootVariableProvisionLib|SecurityPkg/Library/SecureBootVariableProvisionLib/SecureBootVariableProvisionLib.inf
209 !else
210 AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf
211 !endif
212 VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf
213 VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLib.inf
214 VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.inf
215
216
217 #
218 # Network libraries
219 #
220 !include NetworkPkg/NetworkLibs.dsc.inc
221
222 !if $(NETWORK_TLS_ENABLE) == TRUE
223 TlsLib|CryptoPkg/Library/TlsLib/TlsLib.inf
224 !endif
225
226 ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
227 ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
228 S3BootScriptLib|MdeModulePkg/Library/PiDxeS3BootScriptLib/DxeS3BootScriptLib.inf
229 SmbusLib|MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.inf
230 OrderedCollectionLib|MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf
231
232 !include OvmfPkg/OvmfTpmLibs.dsc.inc
233
234 [LibraryClasses.common]
235 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
236 VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
237
238 [LibraryClasses.common.SEC]
239 TimerLib|OvmfPkg/Library/AcpiTimerLib/BaseRomAcpiTimerLib.inf
240 QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgSecLib.inf
241 !ifdef $(DEBUG_ON_SERIAL_PORT)
242 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
243 !else
244 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformRomDebugLibIoPort.inf
245 !endif
246 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
247 ExtractGuidedSectionLib|MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.inf
248 !if $(SOURCE_DEBUG_ENABLE) == TRUE
249 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
250 !endif
251 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
252 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
253 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
254 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
255 !if $(TOOL_CHAIN_TAG) == "XCODE5"
256 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/Xcode5SecPeiCpuExceptionHandlerLib.inf
257 !else
258 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf
259 !endif
260 MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/SecMemEncryptSevLib.inf
261
262 [LibraryClasses.common.PEI_CORE]
263 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
264 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
265 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
266 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
267 PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
268 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
269 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
270 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
271 !ifdef $(DEBUG_ON_SERIAL_PORT)
272 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
273 !else
274 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
275 !endif
276 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
277
278 [LibraryClasses.common.PEIM]
279 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
280 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
281 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
282 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
283 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
284 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
285 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
286 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
287 !ifdef $(DEBUG_ON_SERIAL_PORT)
288 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
289 !else
290 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
291 !endif
292 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
293 ResourcePublicationLib|MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf
294 ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
295 !if $(SOURCE_DEBUG_ENABLE) == TRUE
296 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
297 !endif
298 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuExceptionHandlerLib.inf
299 MpInitLib|UefiCpuPkg/Library/MpInitLib/PeiMpInitLib.inf
300 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/PeiQemuFwCfgS3LibFwCfg.inf
301 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
302 QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgPeiLib.inf
303 PlatformInitLib|OvmfPkg/Library/PlatformInitLib/PlatformInitLib.inf
304
305 !include OvmfPkg/OvmfTpmLibsPeim.dsc.inc
306
307 MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLib.inf
308
309 [LibraryClasses.common.DXE_CORE]
310 HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
311 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
312 MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
313 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
314 !ifdef $(DEBUG_ON_SERIAL_PORT)
315 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
316 !else
317 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
318 !endif
319 ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
320 !if $(SOURCE_DEBUG_ENABLE) == TRUE
321 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
322 !endif
323 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
324 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
325
326 [LibraryClasses.common.DXE_RUNTIME_DRIVER]
327 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
328 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
329 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
330 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
331 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
332 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
333 ReportStatusCodeLib|MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf
334 !ifdef $(DEBUG_ON_SERIAL_PORT)
335 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
336 !else
337 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
338 !endif
339 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
340 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
341 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
342 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
343 VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLibRuntimeDxe.inf
344 !if $(SMM_REQUIRE) == TRUE
345 MmUnblockMemoryLib|MdePkg/Library/MmUnblockMemoryLib/MmUnblockMemoryLibNull.inf
346 !endif
347
348 [LibraryClasses.common.UEFI_DRIVER]
349 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
350 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
351 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
352 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
353 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
354 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
355 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
356 !ifdef $(DEBUG_ON_SERIAL_PORT)
357 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
358 !else
359 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
360 !endif
361 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
362 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
363
364 [LibraryClasses.common.DXE_DRIVER]
365 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
366 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
367 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
368 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
369 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
370 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
371 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
372 !ifdef $(DEBUG_ON_SERIAL_PORT)
373 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
374 !else
375 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
376 !endif
377 PlatformBootManagerLib|OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
378 PlatformBmPrintScLib|OvmfPkg/Library/PlatformBmPrintScLib/PlatformBmPrintScLib.inf
379 QemuBootOrderLib|OvmfPkg/Library/QemuBootOrderLib/QemuBootOrderLib.inf
380 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
381 !if $(SMM_REQUIRE) == TRUE
382 LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxDxeLib.inf
383 !else
384 LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxDxeLib.inf
385 !endif
386 !if $(SOURCE_DEBUG_ENABLE) == TRUE
387 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
388 !endif
389 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
390 MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf
391 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
392 QemuLoadImageLib|OvmfPkg/Library/X86QemuLoadImageLib/X86QemuLoadImageLib.inf
393
394 !include OvmfPkg/OvmfTpmLibsDxe.dsc.inc
395
396 [LibraryClasses.common.UEFI_APPLICATION]
397 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
398 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
399 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
400 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
401 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
402 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
403 !ifdef $(DEBUG_ON_SERIAL_PORT)
404 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
405 !else
406 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
407 !endif
408 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
409
410 [LibraryClasses.common.DXE_SMM_DRIVER]
411 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
412 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
413 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
414 MemoryAllocationLib|MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.inf
415 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
416 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
417 SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf
418 MmServicesTableLib|MdePkg/Library/MmServicesTableLib/MmServicesTableLib.inf
419 SmmServicesTableLib|MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.inf
420 !ifdef $(DEBUG_ON_SERIAL_PORT)
421 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
422 !else
423 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
424 !endif
425 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf
426 !if $(SOURCE_DEBUG_ENABLE) == TRUE
427 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf
428 !endif
429 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
430 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
431
432 [LibraryClasses.common.SMM_CORE]
433 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
434 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
435 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
436 SmmCorePlatformHookLib|MdeModulePkg/Library/SmmCorePlatformHookLibNull/SmmCorePlatformHookLibNull.inf
437 MemoryAllocationLib|MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/PiSmmCoreMemoryAllocationLib.inf
438 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
439 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
440 SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf
441 SmmServicesTableLib|MdeModulePkg/Library/PiSmmCoreSmmServicesTableLib/PiSmmCoreSmmServicesTableLib.inf
442 !ifdef $(DEBUG_ON_SERIAL_PORT)
443 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
444 !else
445 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
446 !endif
447 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
448
449 ################################################################################
450 #
451 # Pcd Section - list of all EDK II PCD Entries defined by this Platform.
452 #
453 ################################################################################
454 [PcdsFeatureFlag]
455 gEfiMdeModulePkgTokenSpaceGuid.PcdHiiOsRuntimeSupport|FALSE
456 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportUefiDecompress|FALSE
457 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
458 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
459 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
460 gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE
461 !ifdef $(CSM_ENABLE)
462 gUefiOvmfPkgTokenSpaceGuid.PcdCsmEnable|TRUE
463 !endif
464 !if $(SMM_REQUIRE) == TRUE
465 gUefiOvmfPkgTokenSpaceGuid.PcdSmmSmramRequire|TRUE
466 gUefiCpuPkgTokenSpaceGuid.PcdCpuHotPlugSupport|TRUE
467 gEfiMdeModulePkgTokenSpaceGuid.PcdEnableVariableRuntimeCache|FALSE
468 !endif
469
470 [PcdsFixedAtBuild]
471 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
472 !if $(SMM_REQUIRE) == FALSE
473 gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
474 !endif
475 gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
476 gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|0
477 !if ($(FD_SIZE_IN_KB) == 1024) || ($(FD_SIZE_IN_KB) == 2048)
478 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x2000
479 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x2800
480 !if $(NETWORK_TLS_ENABLE) == FALSE
481 # match PcdFlashNvStorageVariableSize purely for convenience
482 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0xe000
483 !endif
484 !endif
485 !if $(FD_SIZE_IN_KB) == 4096
486 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x8400
487 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x8400
488 !if $(NETWORK_TLS_ENABLE) == FALSE
489 # match PcdFlashNvStorageVariableSize purely for convenience
490 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x40000
491 !endif
492 !endif
493 !if $(NETWORK_TLS_ENABLE) == TRUE
494 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x80000
495 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVolatileVariableSize|0x40000
496 !endif
497
498 gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
499 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
500 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE
501
502 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
503
504 # DEBUG_INIT 0x00000001 // Initialization
505 # DEBUG_WARN 0x00000002 // Warnings
506 # DEBUG_LOAD 0x00000004 // Load events
507 # DEBUG_FS 0x00000008 // EFI File system
508 # DEBUG_POOL 0x00000010 // Alloc & Free (pool)
509 # DEBUG_PAGE 0x00000020 // Alloc & Free (page)
510 # DEBUG_INFO 0x00000040 // Informational debug messages
511 # DEBUG_DISPATCH 0x00000080 // PEI/DXE/SMM Dispatchers
512 # DEBUG_VARIABLE 0x00000100 // Variable
513 # DEBUG_BM 0x00000400 // Boot Manager
514 # DEBUG_BLKIO 0x00001000 // BlkIo Driver
515 # DEBUG_NET 0x00004000 // SNP Driver
516 # DEBUG_UNDI 0x00010000 // UNDI Driver
517 # DEBUG_LOADFILE 0x00020000 // LoadFile
518 # DEBUG_EVENT 0x00080000 // Event messages
519 # DEBUG_GCD 0x00100000 // Global Coherency Database changes
520 # DEBUG_CACHE 0x00200000 // Memory range cachability changes
521 # DEBUG_VERBOSE 0x00400000 // Detailed debug messages that may
522 # // significantly impact boot performance
523 # DEBUG_ERROR 0x80000000 // Error
524 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x8000004F
525
526 !if $(SOURCE_DEBUG_ENABLE) == TRUE
527 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x17
528 !else
529 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
530 !endif
531
532 # This PCD is used to set the base address of the PCI express hierarchy. It
533 # is only consulted when OVMF runs on Q35. In that case it is programmed into
534 # the PCIEXBAR register.
535 #
536 # On Q35 machine types that QEMU intends to support in the long term, QEMU
537 # never lets the RAM below 4 GB exceed 2816 MB.
538 gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xB0000000
539
540 !if $(SOURCE_DEBUG_ENABLE) == TRUE
541 gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdDebugLoadImageMethod|0x2
542 !endif
543
544 #
545 # The NumberOfPages values below are ad-hoc. They are updated sporadically at
546 # best (please refer to git-blame for past updates). The values capture a set
547 # of BIN hints that made sense at a particular time, for some (now likely
548 # unknown) workloads / boot paths.
549 #
550 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIMemoryNVS|0x80
551 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIReclaimMemory|0x10
552 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiReservedMemoryType|0x80
553 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesCode|0x100
554 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesData|0x100
555
556 #
557 # Network Pcds
558 #
559 !include NetworkPkg/NetworkPcds.dsc.inc
560
561 gEfiShellPkgTokenSpaceGuid.PcdShellFileOperationSize|0x20000
562
563 !if $(SMM_REQUIRE) == TRUE
564 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmStackSize|0x4000
565 !endif
566
567 # IRQs 5, 9, 10, 11 are level-triggered
568 gUefiOvmfPkgTokenSpaceGuid.Pcd8259LegacyModeEdgeLevel|0x0E20
569
570 # Point to the MdeModulePkg/Application/UiApp/UiApp.inf
571 gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 }
572
573 ################################################################################
574 #
575 # Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
576 #
577 ################################################################################
578
579 [PcdsDynamicDefault]
580 # only set when
581 # ($(SMM_REQUIRE) == FALSE)
582 gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved|0
583
584 !if $(SMM_REQUIRE) == FALSE
585 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0
586 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64|0
587 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64|0
588 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
589 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
590 !endif
591 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution|1280
592 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution|800
593 gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable|FALSE
594 gUefiOvmfPkgTokenSpaceGuid.PcdVideoResolutionSource|0
595 gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId|0
596 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoBase|0x0
597 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoSize|0x0
598 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Base|0x0
599 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Size|0x0
600
601 gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|0
602
603 # Set video resolution for text setup.
604 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640
605 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480
606
607 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0208
608 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev|0x0
609 gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated|FALSE
610
611 # Noexec settings for DXE.
612 gEfiMdeModulePkgTokenSpaceGuid.PcdSetNxForStack|FALSE
613
614 # UefiCpuPkg PCDs related to initial AP bringup and general AP management.
615 gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber|64
616 gUefiCpuPkgTokenSpaceGuid.PcdCpuBootLogicalProcessorNumber|0
617
618 # Set memory encryption mask
619 gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask|0x0
620
621 # Set SEV-ES defaults
622 gEfiMdeModulePkgTokenSpaceGuid.PcdGhcbBase|0
623 gEfiMdeModulePkgTokenSpaceGuid.PcdGhcbSize|0
624 gUefiCpuPkgTokenSpaceGuid.PcdSevEsIsEnabled|0
625
626 !if $(SMM_REQUIRE) == TRUE
627 gUefiOvmfPkgTokenSpaceGuid.PcdQ35TsegMbytes|8
628 gUefiOvmfPkgTokenSpaceGuid.PcdQ35SmramAtDefaultSmbase|FALSE
629 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmSyncMode|0x01
630 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmApSyncTimeout|100000
631 !endif
632
633 gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x00
634
635 !include OvmfPkg/OvmfTpmPcds.dsc.inc
636
637 # IPv4 and IPv6 PXE Boot support.
638 gEfiNetworkPkgTokenSpaceGuid.PcdIPv4PXESupport|0x01
639 gEfiNetworkPkgTokenSpaceGuid.PcdIPv6PXESupport|0x01
640
641 # Set ConfidentialComputing defaults
642 gEfiMdePkgTokenSpaceGuid.PcdConfidentialComputingGuestAttr|0
643
644 [PcdsDynamicHii]
645 !include OvmfPkg/OvmfTpmPcdsHii.dsc.inc
646
647 ################################################################################
648 #
649 # Components Section - list of all EDK II Modules needed by this Platform.
650 #
651 ################################################################################
652 [Components]
653 OvmfPkg/ResetVector/ResetVector.inf
654
655 #
656 # SEC Phase modules
657 #
658 OvmfPkg/Sec/SecMain.inf {
659 <LibraryClasses>
660 NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
661 }
662
663 #
664 # PEI Phase modules
665 #
666 MdeModulePkg/Core/Pei/PeiMain.inf
667 MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
668 <LibraryClasses>
669 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
670 }
671 MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf {
672 <LibraryClasses>
673 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
674 }
675 MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf {
676 <LibraryClasses>
677 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
678 }
679 MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
680
681 OvmfPkg/PlatformPei/PlatformPei.inf
682 UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf {
683 <LibraryClasses>
684 !if $(SMM_REQUIRE) == TRUE
685 LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxPeiLib.inf
686 !endif
687 }
688 !if $(SMM_REQUIRE) == TRUE
689 MdeModulePkg/Universal/FaultTolerantWritePei/FaultTolerantWritePei.inf
690 MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
691 OvmfPkg/SmmAccess/SmmAccessPei.inf
692 !endif
693 UefiCpuPkg/CpuMpPei/CpuMpPei.inf
694
695 !include OvmfPkg/OvmfTpmComponentsPei.dsc.inc
696
697 #
698 # DXE Phase modules
699 #
700 MdeModulePkg/Core/Dxe/DxeMain.inf {
701 <LibraryClasses>
702 NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
703 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
704 }
705
706 MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
707 MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf
708 MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
709 <LibraryClasses>
710 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
711 }
712
713 MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
714
715 MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf {
716 <LibraryClasses>
717 !if $(SECURE_BOOT_ENABLE) == TRUE
718 NULL|SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.inf
719 !endif
720 !include OvmfPkg/OvmfTpmSecurityStub.dsc.inc
721 }
722
723 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
724 OvmfPkg/8259InterruptControllerDxe/8259.inf
725 UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
726 UefiCpuPkg/CpuDxe/CpuDxe.inf
727 OvmfPkg/8254TimerDxe/8254Timer.inf
728 OvmfPkg/IncompatiblePciDeviceSupportDxe/IncompatiblePciDeviceSupport.inf
729 OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.inf
730 MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf {
731 <LibraryClasses>
732 PciHostBridgeLib|OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.inf
733 PciHostBridgeUtilityLib|OvmfPkg/Library/PciHostBridgeUtilityLib/PciHostBridgeUtilityLib.inf
734 NULL|OvmfPkg/Library/PlatformHasIoMmuLib/PlatformHasIoMmuLib.inf
735 }
736 MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf {
737 <LibraryClasses>
738 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
739 }
740 MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
741 MdeModulePkg/Universal/Metronome/Metronome.inf
742 PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
743 MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf
744 MdeModulePkg/Universal/BdsDxe/BdsDxe.inf {
745 <LibraryClasses>
746 XenPlatformLib|OvmfPkg/Library/XenPlatformLib/XenPlatformLib.inf
747 !ifdef $(CSM_ENABLE)
748 NULL|OvmfPkg/Csm/CsmSupportLib/CsmSupportLib.inf
749 NULL|OvmfPkg/Csm/LegacyBootManagerLib/LegacyBootManagerLib.inf
750 !endif
751 }
752 MdeModulePkg/Logo/LogoDxe.inf
753 MdeModulePkg/Application/UiApp/UiApp.inf {
754 <LibraryClasses>
755 NULL|MdeModulePkg/Library/DeviceManagerUiLib/DeviceManagerUiLib.inf
756 NULL|MdeModulePkg/Library/BootManagerUiLib/BootManagerUiLib.inf
757 NULL|MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf
758 !ifdef $(CSM_ENABLE)
759 NULL|OvmfPkg/Csm/LegacyBootManagerLib/LegacyBootManagerLib.inf
760 NULL|OvmfPkg/Csm/LegacyBootMaintUiLib/LegacyBootMaintUiLib.inf
761 !endif
762 }
763 OvmfPkg/QemuKernelLoaderFsDxe/QemuKernelLoaderFsDxe.inf {
764 <LibraryClasses>
765 NULL|OvmfPkg/Library/BlobVerifierLibNull/BlobVerifierLibNull.inf
766 }
767 OvmfPkg/VirtioPciDeviceDxe/VirtioPciDeviceDxe.inf
768 OvmfPkg/Virtio10Dxe/Virtio10.inf
769 OvmfPkg/VirtioBlkDxe/VirtioBlk.inf
770 OvmfPkg/VirtioScsiDxe/VirtioScsi.inf
771 OvmfPkg/VirtioRngDxe/VirtioRng.inf
772 !if $(PVSCSI_ENABLE) == TRUE
773 OvmfPkg/PvScsiDxe/PvScsiDxe.inf
774 !endif
775 !if $(MPT_SCSI_ENABLE) == TRUE
776 OvmfPkg/MptScsiDxe/MptScsiDxe.inf
777 !endif
778 !if $(LSI_SCSI_ENABLE) == TRUE
779 OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
780 !endif
781 MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
782 MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
783 MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
784 MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
785 MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
786 MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf {
787 <LibraryClasses>
788 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
789 }
790 MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
791 MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {
792 <LibraryClasses>
793 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
794 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
795 }
796 MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
797 MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
798 MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
799 MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
800 FatPkg/EnhancedFatDxe/Fat.inf
801 MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf
802 OvmfPkg/VirtioFsDxe/VirtioFsDxe.inf
803 MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
804 MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
805 OvmfPkg/SataControllerDxe/SataControllerDxe.inf
806 MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
807 MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
808 MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf
809 MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
810 MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
811 MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
812 MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
813
814 !ifndef $(CSM_ENABLE)
815 OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf
816 !endif
817 OvmfPkg/QemuRamfbDxe/QemuRamfbDxe.inf
818 OvmfPkg/VirtioGpuDxe/VirtioGpu.inf
819
820 #
821 # ISA Support
822 #
823 OvmfPkg/SioBusDxe/SioBusDxe.inf
824 MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
825 MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
826
827 #
828 # SMBIOS Support
829 #
830 MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf {
831 <LibraryClasses>
832 NULL|OvmfPkg/Library/SmbiosVersionLib/DetectSmbiosVersionLib.inf
833 }
834 OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
835
836 #
837 # ACPI Support
838 #
839 MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
840 OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf
841 MdeModulePkg/Universal/Acpi/S3SaveStateDxe/S3SaveStateDxe.inf
842 MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/BootScriptExecutorDxe.inf
843 MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResourceTableDxe.inf
844
845 #
846 # Network Support
847 #
848 !include NetworkPkg/NetworkComponents.dsc.inc
849
850 NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf {
851 <LibraryClasses>
852 NULL|OvmfPkg/Library/PxeBcPcdProducerLib/PxeBcPcdProducerLib.inf
853 }
854
855 !if $(NETWORK_TLS_ENABLE) == TRUE
856 NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.inf {
857 <LibraryClasses>
858 NULL|OvmfPkg/Library/TlsAuthConfigLib/TlsAuthConfigLib.inf
859 }
860 !endif
861 OvmfPkg/VirtioNetDxe/VirtioNet.inf
862
863 #
864 # Usb Support
865 #
866 MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
867 MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
868 MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
869 MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
870 MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
871 MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
872
873 !ifdef $(CSM_ENABLE)
874 OvmfPkg/Csm/BiosThunk/VideoDxe/VideoDxe.inf {
875 <LibraryClasses>
876 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
877 }
878 OvmfPkg/Csm/LegacyBiosDxe/LegacyBiosDxe.inf
879 OvmfPkg/Csm/Csm16/Csm16.inf
880 !endif
881
882 !if $(TOOL_CHAIN_TAG) != "XCODE5"
883 ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf {
884 <PcdsFixedAtBuild>
885 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
886 }
887 ShellPkg/DynamicCommand/HttpDynamicCommand/HttpDynamicCommand.inf {
888 <PcdsFixedAtBuild>
889 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
890 }
891 OvmfPkg/LinuxInitrdDynamicShellCommand/LinuxInitrdDynamicShellCommand.inf {
892 <PcdsFixedAtBuild>
893 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
894 }
895 !endif
896 ShellPkg/Application/Shell/Shell.inf {
897 <LibraryClasses>
898 ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
899 NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
900 NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
901 NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
902 NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
903 NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
904 NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
905 NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
906 !if $(NETWORK_IP6_ENABLE) == TRUE
907 NULL|ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf
908 !endif
909 HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
910 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
911 BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
912
913 <PcdsFixedAtBuild>
914 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
915 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
916 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
917 }
918
919 !if $(SECURE_BOOT_ENABLE) == TRUE
920 SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
921 OvmfPkg/EnrollDefaultKeys/EnrollDefaultKeys.inf
922 !endif
923
924 OvmfPkg/PlatformDxe/Platform.inf
925 OvmfPkg/IoMmuDxe/IoMmuDxe.inf
926
927 !if $(SMM_REQUIRE) == TRUE
928 OvmfPkg/SmmAccess/SmmAccess2Dxe.inf
929 OvmfPkg/SmmControl2Dxe/SmmControl2Dxe.inf
930 OvmfPkg/CpuS3DataDxe/CpuS3DataDxe.inf
931
932 #
933 # SMM Initial Program Load (a DXE_RUNTIME_DRIVER)
934 #
935 MdeModulePkg/Core/PiSmmCore/PiSmmIpl.inf
936
937 #
938 # SMM_CORE
939 #
940 MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf
941
942 #
943 # Privileged drivers (DXE_SMM_DRIVER modules)
944 #
945 OvmfPkg/CpuHotplugSmm/CpuHotplugSmm.inf
946 UefiCpuPkg/CpuIo2Smm/CpuIo2Smm.inf
947 MdeModulePkg/Universal/LockBox/SmmLockBox/SmmLockBox.inf {
948 <LibraryClasses>
949 LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxSmmLib.inf
950 }
951 UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf {
952 <LibraryClasses>
953 SmmCpuPlatformHookLib|OvmfPkg/Library/SmmCpuPlatformHookLibQemu/SmmCpuPlatformHookLibQemu.inf
954 SmmCpuFeaturesLib|OvmfPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.inf
955 }
956
957 #
958 # Variable driver stack (SMM)
959 #
960 OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesSmm.inf {
961 <LibraryClasses>
962 VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
963 }
964 MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmm.inf
965 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmm.inf {
966 <LibraryClasses>
967 NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
968 NULL|MdeModulePkg/Library/VarCheckPolicyLib/VarCheckPolicyLib.inf
969 }
970 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmmRuntimeDxe.inf
971
972 !else
973
974 #
975 # Variable driver stack (non-SMM)
976 #
977 OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
978 OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.inf {
979 <LibraryClasses>
980 PlatformFvbLib|OvmfPkg/Library/EmuVariableFvbLib/EmuVariableFvbLib.inf
981 }
982 MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
983 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
984 <LibraryClasses>
985 NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
986 }
987 !endif
988
989 #
990 # TPM support
991 #
992 !include OvmfPkg/OvmfTpmComponentsDxe.dsc.inc
993