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