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