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