]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/OvmfPkgX64.dsc
OvmfPkg/FvbServicesSmm: use the VmgExitLibNull
[mirror_edk2.git] / OvmfPkg / OvmfPkgX64.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/OvmfX64
23 SUPPORTED_ARCHITECTURES = X64
24 BUILD_TARGETS = NOOPT|DEBUG|RELEASE
25 SKUID_IDENTIFIER = DEFAULT
26 FLASH_DEFINITION = OvmfPkg/OvmfPkgX64.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
36 !include OvmfPkg/OvmfTpmDefines.dsc.inc
37
38 #
39 # Network definition
40 #
41 DEFINE NETWORK_TLS_ENABLE = FALSE
42 DEFINE NETWORK_IP6_ENABLE = FALSE
43 DEFINE NETWORK_HTTP_BOOT_ENABLE = FALSE
44 DEFINE NETWORK_ALLOW_HTTP_CONNECTIONS = TRUE
45 DEFINE NETWORK_ISCSI_ENABLE = TRUE
46
47 !include NetworkPkg/NetworkDefines.dsc.inc
48
49 #
50 # Device drivers
51 #
52 DEFINE PVSCSI_ENABLE = TRUE
53 DEFINE MPT_SCSI_ENABLE = TRUE
54 DEFINE LSI_SCSI_ENABLE = FALSE
55
56 #
57 # Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to
58 # one of the supported values, in place of any of the convenience macros, is
59 # permitted.
60 #
61 !ifdef $(FD_SIZE_1MB)
62 DEFINE FD_SIZE_IN_KB = 1024
63 !else
64 !ifdef $(FD_SIZE_2MB)
65 DEFINE FD_SIZE_IN_KB = 2048
66 !else
67 !ifdef $(FD_SIZE_4MB)
68 DEFINE FD_SIZE_IN_KB = 4096
69 !else
70 DEFINE FD_SIZE_IN_KB = 4096
71 !endif
72 !endif
73 !endif
74
75 [BuildOptions]
76 GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
77 INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
78 MSFT:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
79 !if $(TOOL_CHAIN_TAG) != "XCODE5" && $(TOOL_CHAIN_TAG) != "CLANGPDB"
80 GCC:*_*_*_CC_FLAGS = -mno-mmx -mno-sse
81 !endif
82 !if $(SOURCE_DEBUG_ENABLE) == TRUE
83 MSFT:*_*_X64_GENFW_FLAGS = --keepexceptiontable
84 GCC:*_*_X64_GENFW_FLAGS = --keepexceptiontable
85 INTEL:*_*_X64_GENFW_FLAGS = --keepexceptiontable
86 !endif
87 RELEASE_*_*_GENFW_FLAGS = --zero
88
89 #
90 # Disable deprecated APIs.
91 #
92 MSFT:*_*_*_CC_FLAGS = /D DISABLE_NEW_DEPRECATED_INTERFACES
93 INTEL:*_*_*_CC_FLAGS = /D DISABLE_NEW_DEPRECATED_INTERFACES
94 GCC:*_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES
95
96 !include NetworkPkg/NetworkBuildOptions.dsc.inc
97
98 [BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
99 GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
100 XCODE:*_*_*_DLINK_FLAGS = -seg1addr 0x1000 -segalign 0x1000
101 XCODE:*_*_*_MTOC_FLAGS = -align 0x1000
102 CLANGPDB:*_*_*_DLINK_FLAGS = /ALIGN:4096
103
104 # Force PE/COFF sections to be aligned at 4KB boundaries to support page level
105 # protection of DXE_SMM_DRIVER/SMM_CORE modules
106 [BuildOptions.common.EDKII.DXE_SMM_DRIVER, BuildOptions.common.EDKII.SMM_CORE]
107 GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
108 XCODE:*_*_*_DLINK_FLAGS = -seg1addr 0x1000 -segalign 0x1000
109 XCODE:*_*_*_MTOC_FLAGS = -align 0x1000
110 CLANGPDB:*_*_*_DLINK_FLAGS = /ALIGN:4096
111
112 ################################################################################
113 #
114 # SKU Identification section - list of all SKU IDs supported by this Platform.
115 #
116 ################################################################################
117 [SkuIds]
118 0|DEFAULT
119
120 ################################################################################
121 #
122 # Library Class section - list of all Library Classes needed by this Platform.
123 #
124 ################################################################################
125
126 !include MdePkg/MdeLibs.dsc.inc
127
128 [LibraryClasses]
129 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
130 TimerLib|OvmfPkg/Library/AcpiTimerLib/BaseAcpiTimerLib.inf
131 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/BaseResetSystemLib.inf
132 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
133 BaseMemoryLib|MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.inf
134 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
135 SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
136 TimeBaseLib|EmbeddedPkg/Library/TimeBaseLib/TimeBaseLib.inf
137 BmpSupportLib|MdeModulePkg/Library/BaseBmpSupportLib/BaseBmpSupportLib.inf
138 SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
139 CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
140 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
141 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
142 CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
143 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
144 UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
145 HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
146 SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
147 UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
148 BootLogoLib|MdeModulePkg/Library/BootLogoLib/BootLogoLib.inf
149 FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf
150 CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
151 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
152 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
153 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
154 PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
155 PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf
156 PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
157 PciSegmentLib|MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf
158 PciCapLib|OvmfPkg/Library/BasePciCapLib/BasePciCapLib.inf
159 PciCapPciSegmentLib|OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.inf
160 PciCapPciIoLib|OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf
161 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicSev.inf
162 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
163 SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf
164 MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf
165 MicrocodeLib|UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf
166 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
167 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
168 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
169 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
170 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
171 DevicePathLib|MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf
172 NvVarsFileLib|OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.inf
173 FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
174 UefiCpuLib|UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
175 SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
176 UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
177 SerializeVariablesLib|OvmfPkg/Library/SerializeVariablesLib/SerializeVariablesLib.inf
178 QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgDxeLib.inf
179 QemuFwCfgSimpleParserLib|OvmfPkg/Library/QemuFwCfgSimpleParserLib/QemuFwCfgSimpleParserLib.inf
180 VirtioLib|OvmfPkg/Library/VirtioLib/VirtioLib.inf
181 LoadLinuxLib|OvmfPkg/Library/LoadLinuxLib/LoadLinuxLib.inf
182 MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/DxeMemEncryptSevLib.inf
183 !if $(SMM_REQUIRE) == FALSE
184 LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf
185 !endif
186 CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf
187 FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.inf
188
189 !if $(SOURCE_DEBUG_ENABLE) == TRUE
190 PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
191 DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
192 !else
193 PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
194 DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
195 !endif
196
197 LocalApicLib|UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf
198 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
199
200 IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
201 !if $(NETWORK_TLS_ENABLE) == TRUE
202 OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
203 !else
204 OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLibCrypto.inf
205 !endif
206 RngLib|MdePkg/Library/BaseRngLibTimerLib/BaseRngLibTimerLib.inf
207
208 !if $(SECURE_BOOT_ENABLE) == TRUE
209 PlatformSecureLib|OvmfPkg/Library/PlatformSecureLib/PlatformSecureLib.inf
210 AuthVariableLib|SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf
211 SecureBootVariableLib|SecurityPkg/Library/SecureBootVariableLib/SecureBootVariableLib.inf
212 SecureBootVariableProvisionLib|SecurityPkg/Library/SecureBootVariableProvisionLib/SecureBootVariableProvisionLib.inf
213 !else
214 AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf
215 !endif
216 VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf
217 VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLib.inf
218 VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.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|OvmfPkg/Library/VmgExitLib/VmgExitLib.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 VmgExitLib|OvmfPkg/Library/VmgExitLib/SecVmgExitLib.inf
265 MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/SecMemEncryptSevLib.inf
266
267 [LibraryClasses.common.PEI_CORE]
268 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
269 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
270 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
271 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
272 PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
273 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
274 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
275 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
276 !ifdef $(DEBUG_ON_SERIAL_PORT)
277 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
278 !else
279 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
280 !endif
281 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
282
283 [LibraryClasses.common.PEIM]
284 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
285 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
286 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
287 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
288 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
289 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
290 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
291 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
292 !ifdef $(DEBUG_ON_SERIAL_PORT)
293 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
294 !else
295 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
296 !endif
297 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
298 ResourcePublicationLib|MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf
299 ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
300 !if $(SOURCE_DEBUG_ENABLE) == TRUE
301 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
302 !endif
303 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuExceptionHandlerLib.inf
304 MpInitLib|UefiCpuPkg/Library/MpInitLib/PeiMpInitLib.inf
305 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/PeiQemuFwCfgS3LibFwCfg.inf
306 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
307 QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgPeiLib.inf
308
309 !include OvmfPkg/OvmfTpmLibsPeim.dsc.inc
310
311 MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLib.inf
312
313 [LibraryClasses.common.DXE_CORE]
314 HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
315 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
316 MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
317 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
318 !ifdef $(DEBUG_ON_SERIAL_PORT)
319 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
320 !else
321 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
322 !endif
323 ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
324 !if $(SOURCE_DEBUG_ENABLE) == TRUE
325 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
326 !endif
327 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
328 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
329
330 [LibraryClasses.common.DXE_RUNTIME_DRIVER]
331 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
332 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
333 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
334 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
335 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
336 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
337 ReportStatusCodeLib|MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf
338 !ifdef $(DEBUG_ON_SERIAL_PORT)
339 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
340 !else
341 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
342 !endif
343 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
344 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
345 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
346 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
347 VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLibRuntimeDxe.inf
348 !if $(SMM_REQUIRE) == TRUE
349 MmUnblockMemoryLib|MdePkg/Library/MmUnblockMemoryLib/MmUnblockMemoryLibNull.inf
350 !endif
351
352 [LibraryClasses.common.UEFI_DRIVER]
353 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
354 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
355 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
356 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
357 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
358 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
359 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
360 !ifdef $(DEBUG_ON_SERIAL_PORT)
361 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
362 !else
363 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
364 !endif
365 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
366 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
367
368 [LibraryClasses.common.DXE_DRIVER]
369 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
370 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
371 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
372 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
373 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
374 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
375 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
376 !ifdef $(DEBUG_ON_SERIAL_PORT)
377 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
378 !else
379 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
380 !endif
381 PlatformBootManagerLib|OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
382 PlatformBmPrintScLib|OvmfPkg/Library/PlatformBmPrintScLib/PlatformBmPrintScLib.inf
383 QemuBootOrderLib|OvmfPkg/Library/QemuBootOrderLib/QemuBootOrderLib.inf
384 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
385 !if $(SMM_REQUIRE) == TRUE
386 LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxDxeLib.inf
387 !else
388 LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxDxeLib.inf
389 !endif
390 !if $(SOURCE_DEBUG_ENABLE) == TRUE
391 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
392 !endif
393 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
394 MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf
395 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
396 QemuLoadImageLib|OvmfPkg/Library/X86QemuLoadImageLib/X86QemuLoadImageLib.inf
397
398 !include OvmfPkg/OvmfTpmLibsDxe.dsc.inc
399
400 [LibraryClasses.common.UEFI_APPLICATION]
401 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
402 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
403 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
404 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
405 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
406 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
407 !ifdef $(DEBUG_ON_SERIAL_PORT)
408 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
409 !else
410 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
411 !endif
412 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
413
414 [LibraryClasses.common.DXE_SMM_DRIVER]
415 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
416 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
417 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
418 MemoryAllocationLib|MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.inf
419 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
420 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
421 SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf
422 MmServicesTableLib|MdePkg/Library/MmServicesTableLib/MmServicesTableLib.inf
423 SmmServicesTableLib|MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.inf
424 !ifdef $(DEBUG_ON_SERIAL_PORT)
425 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
426 !else
427 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
428 !endif
429 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf
430 !if $(SOURCE_DEBUG_ENABLE) == TRUE
431 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf
432 !endif
433 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
434 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.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.PcdAcpiS3Enable|FALSE
598 gUefiOvmfPkgTokenSpaceGuid.PcdVideoResolutionSource|0
599 gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId|0
600 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoBase|0x0
601 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoSize|0x0
602 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Base|0x0
603 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Size|0x0
604 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Base|0x0
605 !ifdef $(CSM_ENABLE)
606 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size|0x0
607 !else
608 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size|0x800000000
609 !endif
610
611 gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|0
612
613 # Set video resolution for text setup.
614 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640
615 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480
616
617 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0208
618 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev|0x0
619 gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated|FALSE
620
621 # Noexec settings for DXE.
622 gEfiMdeModulePkgTokenSpaceGuid.PcdSetNxForStack|FALSE
623
624 # UefiCpuPkg PCDs related to initial AP bringup and general AP management.
625 gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber|64
626 gUefiCpuPkgTokenSpaceGuid.PcdCpuBootLogicalProcessorNumber|0
627
628 # Set memory encryption mask
629 gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask|0x0
630
631 # Set SEV-ES defaults
632 gEfiMdeModulePkgTokenSpaceGuid.PcdGhcbBase|0
633 gEfiMdeModulePkgTokenSpaceGuid.PcdGhcbSize|0
634 gUefiCpuPkgTokenSpaceGuid.PcdSevEsIsEnabled|0
635
636 !if $(SMM_REQUIRE) == TRUE
637 gUefiOvmfPkgTokenSpaceGuid.PcdQ35TsegMbytes|8
638 gUefiOvmfPkgTokenSpaceGuid.PcdQ35SmramAtDefaultSmbase|FALSE
639 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmSyncMode|0x01
640 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmApSyncTimeout|100000
641 !endif
642
643 gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x00
644
645 !include OvmfPkg/OvmfTpmPcds.dsc.inc
646
647 # IPv4 and IPv6 PXE Boot support.
648 gEfiNetworkPkgTokenSpaceGuid.PcdIPv4PXESupport|0x01
649 gEfiNetworkPkgTokenSpaceGuid.PcdIPv6PXESupport|0x01
650
651 # Set ConfidentialComputing defaults
652 gEfiMdePkgTokenSpaceGuid.PcdConfidentialComputingGuestAttr|0
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 !include OvmfPkg/OvmfTpmSecurityStub.dsc.inc
730 !endif
731 }
732
733 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
734 OvmfPkg/8259InterruptControllerDxe/8259.inf
735 UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
736 UefiCpuPkg/CpuDxe/CpuDxe.inf
737 OvmfPkg/8254TimerDxe/8254Timer.inf
738 OvmfPkg/IncompatiblePciDeviceSupportDxe/IncompatiblePciDeviceSupport.inf
739 OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.inf
740 MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf {
741 <LibraryClasses>
742 PciHostBridgeLib|OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.inf
743 PciHostBridgeUtilityLib|OvmfPkg/Library/PciHostBridgeUtilityLib/PciHostBridgeUtilityLib.inf
744 NULL|OvmfPkg/Library/PlatformHasIoMmuLib/PlatformHasIoMmuLib.inf
745 }
746 MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf {
747 <LibraryClasses>
748 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
749 }
750 MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
751 MdeModulePkg/Universal/Metronome/Metronome.inf
752 PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
753 MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf
754 MdeModulePkg/Universal/BdsDxe/BdsDxe.inf {
755 <LibraryClasses>
756 XenPlatformLib|OvmfPkg/Library/XenPlatformLib/XenPlatformLib.inf
757 !ifdef $(CSM_ENABLE)
758 NULL|OvmfPkg/Csm/CsmSupportLib/CsmSupportLib.inf
759 NULL|OvmfPkg/Csm/LegacyBootManagerLib/LegacyBootManagerLib.inf
760 !endif
761 }
762 MdeModulePkg/Logo/LogoDxe.inf
763 MdeModulePkg/Application/UiApp/UiApp.inf {
764 <LibraryClasses>
765 NULL|MdeModulePkg/Library/DeviceManagerUiLib/DeviceManagerUiLib.inf
766 NULL|MdeModulePkg/Library/BootManagerUiLib/BootManagerUiLib.inf
767 NULL|MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf
768 !ifdef $(CSM_ENABLE)
769 NULL|OvmfPkg/Csm/LegacyBootManagerLib/LegacyBootManagerLib.inf
770 NULL|OvmfPkg/Csm/LegacyBootMaintUiLib/LegacyBootMaintUiLib.inf
771 !endif
772 }
773 OvmfPkg/QemuKernelLoaderFsDxe/QemuKernelLoaderFsDxe.inf {
774 <LibraryClasses>
775 NULL|OvmfPkg/Library/BlobVerifierLibNull/BlobVerifierLibNull.inf
776 }
777 OvmfPkg/VirtioPciDeviceDxe/VirtioPciDeviceDxe.inf
778 OvmfPkg/Virtio10Dxe/Virtio10.inf
779 OvmfPkg/VirtioBlkDxe/VirtioBlk.inf
780 OvmfPkg/VirtioScsiDxe/VirtioScsi.inf
781 OvmfPkg/VirtioRngDxe/VirtioRng.inf
782 !if $(PVSCSI_ENABLE) == TRUE
783 OvmfPkg/PvScsiDxe/PvScsiDxe.inf
784 !endif
785 !if $(MPT_SCSI_ENABLE) == TRUE
786 OvmfPkg/MptScsiDxe/MptScsiDxe.inf
787 !endif
788 !if $(LSI_SCSI_ENABLE) == TRUE
789 OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
790 !endif
791 MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
792 MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
793 MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
794 MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
795 MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
796 MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf {
797 <LibraryClasses>
798 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
799 }
800 MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
801 MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {
802 <LibraryClasses>
803 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
804 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
805 }
806 MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
807 MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
808 MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
809 MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
810 FatPkg/EnhancedFatDxe/Fat.inf
811 MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf
812 OvmfPkg/VirtioFsDxe/VirtioFsDxe.inf
813 MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
814 MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
815 OvmfPkg/SataControllerDxe/SataControllerDxe.inf
816 MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
817 MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
818 MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf
819 MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
820 MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
821 MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
822 MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
823
824 !ifndef $(CSM_ENABLE)
825 OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf
826 !endif
827 OvmfPkg/QemuRamfbDxe/QemuRamfbDxe.inf
828 OvmfPkg/VirtioGpuDxe/VirtioGpu.inf
829
830 #
831 # ISA Support
832 #
833 OvmfPkg/SioBusDxe/SioBusDxe.inf
834 MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
835 MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
836
837 #
838 # SMBIOS Support
839 #
840 MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf {
841 <LibraryClasses>
842 NULL|OvmfPkg/Library/SmbiosVersionLib/DetectSmbiosVersionLib.inf
843 }
844 OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
845
846 #
847 # ACPI Support
848 #
849 MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
850 OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf
851 MdeModulePkg/Universal/Acpi/S3SaveStateDxe/S3SaveStateDxe.inf
852 MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/BootScriptExecutorDxe.inf
853 MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResourceTableDxe.inf
854
855 #
856 # Network Support
857 #
858 !include NetworkPkg/NetworkComponents.dsc.inc
859
860 NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf {
861 <LibraryClasses>
862 NULL|OvmfPkg/Library/PxeBcPcdProducerLib/PxeBcPcdProducerLib.inf
863 }
864
865 !if $(NETWORK_TLS_ENABLE) == TRUE
866 NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.inf {
867 <LibraryClasses>
868 NULL|OvmfPkg/Library/TlsAuthConfigLib/TlsAuthConfigLib.inf
869 }
870 !endif
871 OvmfPkg/VirtioNetDxe/VirtioNet.inf
872
873 #
874 # Usb Support
875 #
876 MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
877 MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
878 MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
879 MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
880 MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
881 MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
882
883 !ifdef $(CSM_ENABLE)
884 OvmfPkg/Csm/BiosThunk/VideoDxe/VideoDxe.inf {
885 <LibraryClasses>
886 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
887 }
888 OvmfPkg/Csm/LegacyBiosDxe/LegacyBiosDxe.inf
889 OvmfPkg/Csm/Csm16/Csm16.inf
890 !endif
891
892 !if $(TOOL_CHAIN_TAG) != "XCODE5"
893 ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf {
894 <PcdsFixedAtBuild>
895 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
896 }
897 ShellPkg/DynamicCommand/HttpDynamicCommand/HttpDynamicCommand.inf {
898 <PcdsFixedAtBuild>
899 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
900 }
901 OvmfPkg/LinuxInitrdDynamicShellCommand/LinuxInitrdDynamicShellCommand.inf {
902 <PcdsFixedAtBuild>
903 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
904 }
905 !endif
906 ShellPkg/Application/Shell/Shell.inf {
907 <LibraryClasses>
908 ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
909 NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
910 NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
911 NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
912 NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
913 NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
914 NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
915 NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
916 !if $(NETWORK_IP6_ENABLE) == TRUE
917 NULL|ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf
918 !endif
919 HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
920 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
921 BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
922
923 <PcdsFixedAtBuild>
924 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
925 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
926 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
927 }
928
929 !if $(SECURE_BOOT_ENABLE) == TRUE
930 SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
931 OvmfPkg/EnrollDefaultKeys/EnrollDefaultKeys.inf
932 !endif
933
934 OvmfPkg/PlatformDxe/Platform.inf
935 OvmfPkg/AmdSevDxe/AmdSevDxe.inf {
936 <LibraryClasses>
937 PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
938 }
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