]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/OvmfPkgIa32.dsc
2baced98330a36d541b37f54e3c5ea779beacbaf
[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
304 !include OvmfPkg/OvmfTpmLibsPeim.dsc.inc
305
306 MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLib.inf
307
308 [LibraryClasses.common.DXE_CORE]
309 HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
310 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
311 MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
312 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
313 !ifdef $(DEBUG_ON_SERIAL_PORT)
314 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
315 !else
316 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
317 !endif
318 ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
319 !if $(SOURCE_DEBUG_ENABLE) == TRUE
320 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
321 !endif
322 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
323 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
324
325 [LibraryClasses.common.DXE_RUNTIME_DRIVER]
326 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
327 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
328 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
329 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
330 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
331 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
332 ReportStatusCodeLib|MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf
333 !ifdef $(DEBUG_ON_SERIAL_PORT)
334 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
335 !else
336 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
337 !endif
338 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
339 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
340 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
341 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
342 VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLibRuntimeDxe.inf
343 !if $(SMM_REQUIRE) == TRUE
344 MmUnblockMemoryLib|MdePkg/Library/MmUnblockMemoryLib/MmUnblockMemoryLibNull.inf
345 !endif
346
347 [LibraryClasses.common.UEFI_DRIVER]
348 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
349 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
350 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
351 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
352 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
353 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
354 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
355 !ifdef $(DEBUG_ON_SERIAL_PORT)
356 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
357 !else
358 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
359 !endif
360 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
361 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
362
363 [LibraryClasses.common.DXE_DRIVER]
364 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
365 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
366 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
367 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
368 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
369 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
370 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
371 !ifdef $(DEBUG_ON_SERIAL_PORT)
372 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
373 !else
374 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
375 !endif
376 PlatformBootManagerLib|OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
377 PlatformBmPrintScLib|OvmfPkg/Library/PlatformBmPrintScLib/PlatformBmPrintScLib.inf
378 QemuBootOrderLib|OvmfPkg/Library/QemuBootOrderLib/QemuBootOrderLib.inf
379 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
380 !if $(SMM_REQUIRE) == TRUE
381 LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxDxeLib.inf
382 !else
383 LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxDxeLib.inf
384 !endif
385 !if $(SOURCE_DEBUG_ENABLE) == TRUE
386 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
387 !endif
388 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
389 MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf
390 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
391 QemuLoadImageLib|OvmfPkg/Library/X86QemuLoadImageLib/X86QemuLoadImageLib.inf
392
393 !include OvmfPkg/OvmfTpmLibsDxe.dsc.inc
394
395 [LibraryClasses.common.UEFI_APPLICATION]
396 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
397 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
398 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
399 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
400 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
401 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
402 !ifdef $(DEBUG_ON_SERIAL_PORT)
403 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
404 !else
405 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
406 !endif
407 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
408
409 [LibraryClasses.common.DXE_SMM_DRIVER]
410 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
411 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
412 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
413 MemoryAllocationLib|MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.inf
414 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
415 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
416 SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf
417 MmServicesTableLib|MdePkg/Library/MmServicesTableLib/MmServicesTableLib.inf
418 SmmServicesTableLib|MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.inf
419 !ifdef $(DEBUG_ON_SERIAL_PORT)
420 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
421 !else
422 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
423 !endif
424 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf
425 !if $(SOURCE_DEBUG_ENABLE) == TRUE
426 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf
427 !endif
428 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
429 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
430
431 [LibraryClasses.common.SMM_CORE]
432 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
433 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
434 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
435 SmmCorePlatformHookLib|MdeModulePkg/Library/SmmCorePlatformHookLibNull/SmmCorePlatformHookLibNull.inf
436 MemoryAllocationLib|MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/PiSmmCoreMemoryAllocationLib.inf
437 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
438 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
439 SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf
440 SmmServicesTableLib|MdeModulePkg/Library/PiSmmCoreSmmServicesTableLib/PiSmmCoreSmmServicesTableLib.inf
441 !ifdef $(DEBUG_ON_SERIAL_PORT)
442 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
443 !else
444 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
445 !endif
446 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
447
448 ################################################################################
449 #
450 # Pcd Section - list of all EDK II PCD Entries defined by this Platform.
451 #
452 ################################################################################
453 [PcdsFeatureFlag]
454 gEfiMdeModulePkgTokenSpaceGuid.PcdHiiOsRuntimeSupport|FALSE
455 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportUefiDecompress|FALSE
456 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
457 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
458 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
459 gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE
460 !ifdef $(CSM_ENABLE)
461 gUefiOvmfPkgTokenSpaceGuid.PcdCsmEnable|TRUE
462 !endif
463 !if $(SMM_REQUIRE) == TRUE
464 gUefiOvmfPkgTokenSpaceGuid.PcdSmmSmramRequire|TRUE
465 gUefiCpuPkgTokenSpaceGuid.PcdCpuHotPlugSupport|TRUE
466 gEfiMdeModulePkgTokenSpaceGuid.PcdEnableVariableRuntimeCache|FALSE
467 !endif
468
469 [PcdsFixedAtBuild]
470 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
471 !if $(SMM_REQUIRE) == FALSE
472 gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
473 !endif
474 gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
475 gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|0
476 !if ($(FD_SIZE_IN_KB) == 1024) || ($(FD_SIZE_IN_KB) == 2048)
477 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x2000
478 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x2800
479 !if $(NETWORK_TLS_ENABLE) == FALSE
480 # match PcdFlashNvStorageVariableSize purely for convenience
481 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0xe000
482 !endif
483 !endif
484 !if $(FD_SIZE_IN_KB) == 4096
485 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x8400
486 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x8400
487 !if $(NETWORK_TLS_ENABLE) == FALSE
488 # match PcdFlashNvStorageVariableSize purely for convenience
489 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x40000
490 !endif
491 !endif
492 !if $(NETWORK_TLS_ENABLE) == TRUE
493 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x80000
494 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVolatileVariableSize|0x40000
495 !endif
496
497 gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
498 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
499 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE
500
501 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
502
503 # DEBUG_INIT 0x00000001 // Initialization
504 # DEBUG_WARN 0x00000002 // Warnings
505 # DEBUG_LOAD 0x00000004 // Load events
506 # DEBUG_FS 0x00000008 // EFI File system
507 # DEBUG_POOL 0x00000010 // Alloc & Free (pool)
508 # DEBUG_PAGE 0x00000020 // Alloc & Free (page)
509 # DEBUG_INFO 0x00000040 // Informational debug messages
510 # DEBUG_DISPATCH 0x00000080 // PEI/DXE/SMM Dispatchers
511 # DEBUG_VARIABLE 0x00000100 // Variable
512 # DEBUG_BM 0x00000400 // Boot Manager
513 # DEBUG_BLKIO 0x00001000 // BlkIo Driver
514 # DEBUG_NET 0x00004000 // SNP Driver
515 # DEBUG_UNDI 0x00010000 // UNDI Driver
516 # DEBUG_LOADFILE 0x00020000 // LoadFile
517 # DEBUG_EVENT 0x00080000 // Event messages
518 # DEBUG_GCD 0x00100000 // Global Coherency Database changes
519 # DEBUG_CACHE 0x00200000 // Memory range cachability changes
520 # DEBUG_VERBOSE 0x00400000 // Detailed debug messages that may
521 # // significantly impact boot performance
522 # DEBUG_ERROR 0x80000000 // Error
523 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x8000004F
524
525 !if $(SOURCE_DEBUG_ENABLE) == TRUE
526 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x17
527 !else
528 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
529 !endif
530
531 # This PCD is used to set the base address of the PCI express hierarchy. It
532 # is only consulted when OVMF runs on Q35. In that case it is programmed into
533 # the PCIEXBAR register.
534 #
535 # On Q35 machine types that QEMU intends to support in the long term, QEMU
536 # never lets the RAM below 4 GB exceed 2816 MB.
537 gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xB0000000
538
539 !if $(SOURCE_DEBUG_ENABLE) == TRUE
540 gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdDebugLoadImageMethod|0x2
541 !endif
542
543 #
544 # The NumberOfPages values below are ad-hoc. They are updated sporadically at
545 # best (please refer to git-blame for past updates). The values capture a set
546 # of BIN hints that made sense at a particular time, for some (now likely
547 # unknown) workloads / boot paths.
548 #
549 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIMemoryNVS|0x80
550 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIReclaimMemory|0x10
551 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiReservedMemoryType|0x80
552 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesCode|0x100
553 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesData|0x100
554
555 #
556 # Network Pcds
557 #
558 !include NetworkPkg/NetworkPcds.dsc.inc
559
560 gEfiShellPkgTokenSpaceGuid.PcdShellFileOperationSize|0x20000
561
562 !if $(SMM_REQUIRE) == TRUE
563 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmStackSize|0x4000
564 !endif
565
566 # IRQs 5, 9, 10, 11 are level-triggered
567 gUefiOvmfPkgTokenSpaceGuid.Pcd8259LegacyModeEdgeLevel|0x0E20
568
569 # Point to the MdeModulePkg/Application/UiApp/UiApp.inf
570 gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 }
571
572 ################################################################################
573 #
574 # Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
575 #
576 ################################################################################
577
578 [PcdsDynamicDefault]
579 # only set when
580 # ($(SMM_REQUIRE) == FALSE)
581 gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved|0
582
583 !if $(SMM_REQUIRE) == FALSE
584 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0
585 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64|0
586 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64|0
587 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
588 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
589 !endif
590 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution|1280
591 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution|800
592 gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable|FALSE
593 gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId|0
594 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoBase|0x0
595 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoSize|0x0
596 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Base|0x0
597 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Size|0x0
598
599 gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|0
600
601 # Set video resolution for text setup.
602 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640
603 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480
604
605 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0208
606 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev|0x0
607 gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated|FALSE
608
609 # Noexec settings for DXE.
610 gEfiMdeModulePkgTokenSpaceGuid.PcdSetNxForStack|FALSE
611
612 # UefiCpuPkg PCDs related to initial AP bringup and general AP management.
613 gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber|64
614 gUefiCpuPkgTokenSpaceGuid.PcdCpuBootLogicalProcessorNumber|0
615
616 # Set memory encryption mask
617 gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask|0x0
618
619 # Set SEV-ES defaults
620 gEfiMdeModulePkgTokenSpaceGuid.PcdGhcbBase|0
621 gEfiMdeModulePkgTokenSpaceGuid.PcdGhcbSize|0
622 gUefiCpuPkgTokenSpaceGuid.PcdSevEsIsEnabled|0
623
624 !if $(SMM_REQUIRE) == TRUE
625 gUefiOvmfPkgTokenSpaceGuid.PcdQ35TsegMbytes|8
626 gUefiOvmfPkgTokenSpaceGuid.PcdQ35SmramAtDefaultSmbase|FALSE
627 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmSyncMode|0x01
628 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmApSyncTimeout|100000
629 !endif
630
631 gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x00
632
633 !include OvmfPkg/OvmfTpmPcds.dsc.inc
634
635 # IPv4 and IPv6 PXE Boot support.
636 gEfiNetworkPkgTokenSpaceGuid.PcdIPv4PXESupport|0x01
637 gEfiNetworkPkgTokenSpaceGuid.PcdIPv6PXESupport|0x01
638
639 # Set ConfidentialComputing defaults
640 gEfiMdePkgTokenSpaceGuid.PcdConfidentialComputingGuestAttr|0
641
642 [PcdsDynamicHii]
643 !include OvmfPkg/OvmfTpmPcdsHii.dsc.inc
644
645 ################################################################################
646 #
647 # Components Section - list of all EDK II Modules needed by this Platform.
648 #
649 ################################################################################
650 [Components]
651 OvmfPkg/ResetVector/ResetVector.inf
652
653 #
654 # SEC Phase modules
655 #
656 OvmfPkg/Sec/SecMain.inf {
657 <LibraryClasses>
658 NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
659 }
660
661 #
662 # PEI Phase modules
663 #
664 MdeModulePkg/Core/Pei/PeiMain.inf
665 MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
666 <LibraryClasses>
667 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
668 }
669 MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf {
670 <LibraryClasses>
671 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
672 }
673 MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf {
674 <LibraryClasses>
675 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
676 }
677 MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
678
679 OvmfPkg/PlatformPei/PlatformPei.inf
680 UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf {
681 <LibraryClasses>
682 !if $(SMM_REQUIRE) == TRUE
683 LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxPeiLib.inf
684 !endif
685 }
686 !if $(SMM_REQUIRE) == TRUE
687 MdeModulePkg/Universal/FaultTolerantWritePei/FaultTolerantWritePei.inf
688 MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
689 OvmfPkg/SmmAccess/SmmAccessPei.inf
690 !endif
691 UefiCpuPkg/CpuMpPei/CpuMpPei.inf
692
693 !include OvmfPkg/OvmfTpmComponentsPei.dsc.inc
694
695 #
696 # DXE Phase modules
697 #
698 MdeModulePkg/Core/Dxe/DxeMain.inf {
699 <LibraryClasses>
700 NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
701 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
702 }
703
704 MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
705 MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf
706 MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
707 <LibraryClasses>
708 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
709 }
710
711 MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
712
713 MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf {
714 <LibraryClasses>
715 !if $(SECURE_BOOT_ENABLE) == TRUE
716 NULL|SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.inf
717 !endif
718 !include OvmfPkg/OvmfTpmSecurityStub.dsc.inc
719 }
720
721 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
722 OvmfPkg/8259InterruptControllerDxe/8259.inf
723 UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
724 UefiCpuPkg/CpuDxe/CpuDxe.inf
725 OvmfPkg/8254TimerDxe/8254Timer.inf
726 OvmfPkg/IncompatiblePciDeviceSupportDxe/IncompatiblePciDeviceSupport.inf
727 OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.inf
728 MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf {
729 <LibraryClasses>
730 PciHostBridgeLib|OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.inf
731 PciHostBridgeUtilityLib|OvmfPkg/Library/PciHostBridgeUtilityLib/PciHostBridgeUtilityLib.inf
732 NULL|OvmfPkg/Library/PlatformHasIoMmuLib/PlatformHasIoMmuLib.inf
733 }
734 MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf {
735 <LibraryClasses>
736 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
737 }
738 MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
739 MdeModulePkg/Universal/Metronome/Metronome.inf
740 PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
741 MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf
742 MdeModulePkg/Universal/BdsDxe/BdsDxe.inf {
743 <LibraryClasses>
744 XenPlatformLib|OvmfPkg/Library/XenPlatformLib/XenPlatformLib.inf
745 !ifdef $(CSM_ENABLE)
746 NULL|OvmfPkg/Csm/CsmSupportLib/CsmSupportLib.inf
747 NULL|OvmfPkg/Csm/LegacyBootManagerLib/LegacyBootManagerLib.inf
748 !endif
749 }
750 MdeModulePkg/Logo/LogoDxe.inf
751 MdeModulePkg/Application/UiApp/UiApp.inf {
752 <LibraryClasses>
753 NULL|MdeModulePkg/Library/DeviceManagerUiLib/DeviceManagerUiLib.inf
754 NULL|MdeModulePkg/Library/BootManagerUiLib/BootManagerUiLib.inf
755 NULL|MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf
756 !ifdef $(CSM_ENABLE)
757 NULL|OvmfPkg/Csm/LegacyBootManagerLib/LegacyBootManagerLib.inf
758 NULL|OvmfPkg/Csm/LegacyBootMaintUiLib/LegacyBootMaintUiLib.inf
759 !endif
760 }
761 OvmfPkg/QemuKernelLoaderFsDxe/QemuKernelLoaderFsDxe.inf {
762 <LibraryClasses>
763 NULL|OvmfPkg/Library/BlobVerifierLibNull/BlobVerifierLibNull.inf
764 }
765 OvmfPkg/VirtioPciDeviceDxe/VirtioPciDeviceDxe.inf
766 OvmfPkg/Virtio10Dxe/Virtio10.inf
767 OvmfPkg/VirtioBlkDxe/VirtioBlk.inf
768 OvmfPkg/VirtioScsiDxe/VirtioScsi.inf
769 OvmfPkg/VirtioRngDxe/VirtioRng.inf
770 !if $(PVSCSI_ENABLE) == TRUE
771 OvmfPkg/PvScsiDxe/PvScsiDxe.inf
772 !endif
773 !if $(MPT_SCSI_ENABLE) == TRUE
774 OvmfPkg/MptScsiDxe/MptScsiDxe.inf
775 !endif
776 !if $(LSI_SCSI_ENABLE) == TRUE
777 OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
778 !endif
779 MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
780 MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
781 MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
782 MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
783 MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
784 MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf {
785 <LibraryClasses>
786 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
787 }
788 MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
789 MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {
790 <LibraryClasses>
791 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
792 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
793 }
794 MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
795 MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
796 MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
797 MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
798 FatPkg/EnhancedFatDxe/Fat.inf
799 MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf
800 OvmfPkg/VirtioFsDxe/VirtioFsDxe.inf
801 MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
802 MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
803 OvmfPkg/SataControllerDxe/SataControllerDxe.inf
804 MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
805 MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
806 MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf
807 MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
808 MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
809 MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
810 MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
811
812 !ifndef $(CSM_ENABLE)
813 OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf
814 !endif
815 OvmfPkg/QemuRamfbDxe/QemuRamfbDxe.inf
816 OvmfPkg/VirtioGpuDxe/VirtioGpu.inf
817
818 #
819 # ISA Support
820 #
821 OvmfPkg/SioBusDxe/SioBusDxe.inf
822 MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
823 MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
824
825 #
826 # SMBIOS Support
827 #
828 MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf {
829 <LibraryClasses>
830 NULL|OvmfPkg/Library/SmbiosVersionLib/DetectSmbiosVersionLib.inf
831 }
832 OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
833
834 #
835 # ACPI Support
836 #
837 MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
838 OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf
839 MdeModulePkg/Universal/Acpi/S3SaveStateDxe/S3SaveStateDxe.inf
840 MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/BootScriptExecutorDxe.inf
841 MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResourceTableDxe.inf
842
843 #
844 # Network Support
845 #
846 !include NetworkPkg/NetworkComponents.dsc.inc
847
848 NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf {
849 <LibraryClasses>
850 NULL|OvmfPkg/Library/PxeBcPcdProducerLib/PxeBcPcdProducerLib.inf
851 }
852
853 !if $(NETWORK_TLS_ENABLE) == TRUE
854 NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.inf {
855 <LibraryClasses>
856 NULL|OvmfPkg/Library/TlsAuthConfigLib/TlsAuthConfigLib.inf
857 }
858 !endif
859 OvmfPkg/VirtioNetDxe/VirtioNet.inf
860
861 #
862 # Usb Support
863 #
864 MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
865 MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
866 MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
867 MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
868 MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
869 MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
870
871 !ifdef $(CSM_ENABLE)
872 OvmfPkg/Csm/BiosThunk/VideoDxe/VideoDxe.inf {
873 <LibraryClasses>
874 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
875 }
876 OvmfPkg/Csm/LegacyBiosDxe/LegacyBiosDxe.inf
877 OvmfPkg/Csm/Csm16/Csm16.inf
878 !endif
879
880 !if $(TOOL_CHAIN_TAG) != "XCODE5"
881 ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf {
882 <PcdsFixedAtBuild>
883 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
884 }
885 ShellPkg/DynamicCommand/HttpDynamicCommand/HttpDynamicCommand.inf {
886 <PcdsFixedAtBuild>
887 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
888 }
889 OvmfPkg/LinuxInitrdDynamicShellCommand/LinuxInitrdDynamicShellCommand.inf {
890 <PcdsFixedAtBuild>
891 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
892 }
893 !endif
894 ShellPkg/Application/Shell/Shell.inf {
895 <LibraryClasses>
896 ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
897 NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
898 NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
899 NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
900 NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
901 NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
902 NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
903 NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
904 !if $(NETWORK_IP6_ENABLE) == TRUE
905 NULL|ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf
906 !endif
907 HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
908 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
909 BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
910
911 <PcdsFixedAtBuild>
912 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
913 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
914 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
915 }
916
917 !if $(SECURE_BOOT_ENABLE) == TRUE
918 SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
919 OvmfPkg/EnrollDefaultKeys/EnrollDefaultKeys.inf
920 !endif
921
922 OvmfPkg/PlatformDxe/Platform.inf
923 OvmfPkg/IoMmuDxe/IoMmuDxe.inf
924
925 !if $(SMM_REQUIRE) == TRUE
926 OvmfPkg/SmmAccess/SmmAccess2Dxe.inf
927 OvmfPkg/SmmControl2Dxe/SmmControl2Dxe.inf
928 OvmfPkg/CpuS3DataDxe/CpuS3DataDxe.inf
929
930 #
931 # SMM Initial Program Load (a DXE_RUNTIME_DRIVER)
932 #
933 MdeModulePkg/Core/PiSmmCore/PiSmmIpl.inf
934
935 #
936 # SMM_CORE
937 #
938 MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf
939
940 #
941 # Privileged drivers (DXE_SMM_DRIVER modules)
942 #
943 OvmfPkg/CpuHotplugSmm/CpuHotplugSmm.inf
944 UefiCpuPkg/CpuIo2Smm/CpuIo2Smm.inf
945 MdeModulePkg/Universal/LockBox/SmmLockBox/SmmLockBox.inf {
946 <LibraryClasses>
947 LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxSmmLib.inf
948 }
949 UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf {
950 <LibraryClasses>
951 SmmCpuPlatformHookLib|OvmfPkg/Library/SmmCpuPlatformHookLibQemu/SmmCpuPlatformHookLibQemu.inf
952 SmmCpuFeaturesLib|OvmfPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.inf
953 }
954
955 #
956 # Variable driver stack (SMM)
957 #
958 OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesSmm.inf
959 MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmm.inf
960 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmm.inf {
961 <LibraryClasses>
962 NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
963 NULL|MdeModulePkg/Library/VarCheckPolicyLib/VarCheckPolicyLib.inf
964 }
965 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmmRuntimeDxe.inf
966
967 !else
968
969 #
970 # Variable driver stack (non-SMM)
971 #
972 OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
973 OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.inf {
974 <LibraryClasses>
975 PlatformFvbLib|OvmfPkg/Library/EmuVariableFvbLib/EmuVariableFvbLib.inf
976 }
977 MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
978 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
979 <LibraryClasses>
980 NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
981 }
982 !endif
983
984 #
985 # TPM support
986 #
987 !include OvmfPkg/OvmfTpmComponentsDxe.dsc.inc
988