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