]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/OvmfPkgX64.dsc
OvmfPkg: Add dependency of VariableSmm driver to make it work normally.
[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
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 SmmCpuRendezvousLib|UefiCpuPkg/Library/SmmCpuRendezvousLib/SmmCpuRendezvousLib.inf
448
449 [LibraryClasses.common.SMM_CORE]
450 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
451 TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
452 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
453 SmmCorePlatformHookLib|MdeModulePkg/Library/SmmCorePlatformHookLibNull/SmmCorePlatformHookLibNull.inf
454 MemoryAllocationLib|MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/PiSmmCoreMemoryAllocationLib.inf
455 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
456 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
457 SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf
458 SmmServicesTableLib|MdeModulePkg/Library/PiSmmCoreSmmServicesTableLib/PiSmmCoreSmmServicesTableLib.inf
459 !ifdef $(DEBUG_ON_SERIAL_PORT)
460 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
461 !else
462 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
463 !endif
464 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
465
466 ################################################################################
467 #
468 # Pcd Section - list of all EDK II PCD Entries defined by this Platform.
469 #
470 ################################################################################
471 [PcdsFeatureFlag]
472 gEfiMdeModulePkgTokenSpaceGuid.PcdHiiOsRuntimeSupport|FALSE
473 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportUefiDecompress|FALSE
474 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
475 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
476 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
477 gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE
478 !ifdef $(CSM_ENABLE)
479 gUefiOvmfPkgTokenSpaceGuid.PcdCsmEnable|TRUE
480 !endif
481 !if $(SMM_REQUIRE) == TRUE
482 gUefiOvmfPkgTokenSpaceGuid.PcdSmmSmramRequire|TRUE
483 gUefiCpuPkgTokenSpaceGuid.PcdCpuHotPlugSupport|TRUE
484 gEfiMdeModulePkgTokenSpaceGuid.PcdEnableVariableRuntimeCache|FALSE
485 !endif
486
487 [PcdsFixedAtBuild]
488 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
489 !if $(SMM_REQUIRE) == FALSE
490 gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
491 !endif
492 gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
493 gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|0
494 !if ($(FD_SIZE_IN_KB) == 1024) || ($(FD_SIZE_IN_KB) == 2048)
495 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x2000
496 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x2800
497 !if $(NETWORK_TLS_ENABLE) == FALSE
498 # match PcdFlashNvStorageVariableSize purely for convenience
499 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0xe000
500 !endif
501 !endif
502 !if $(FD_SIZE_IN_KB) == 4096
503 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x8400
504 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x8400
505 !if $(NETWORK_TLS_ENABLE) == FALSE
506 # match PcdFlashNvStorageVariableSize purely for convenience
507 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x40000
508 !endif
509 !endif
510 !if $(NETWORK_TLS_ENABLE) == TRUE
511 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x80000
512 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVolatileVariableSize|0x40000
513 !endif
514
515 gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
516 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
517 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE
518
519 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
520
521 # DEBUG_INIT 0x00000001 // Initialization
522 # DEBUG_WARN 0x00000002 // Warnings
523 # DEBUG_LOAD 0x00000004 // Load events
524 # DEBUG_FS 0x00000008 // EFI File system
525 # DEBUG_POOL 0x00000010 // Alloc & Free (pool)
526 # DEBUG_PAGE 0x00000020 // Alloc & Free (page)
527 # DEBUG_INFO 0x00000040 // Informational debug messages
528 # DEBUG_DISPATCH 0x00000080 // PEI/DXE/SMM Dispatchers
529 # DEBUG_VARIABLE 0x00000100 // Variable
530 # DEBUG_BM 0x00000400 // Boot Manager
531 # DEBUG_BLKIO 0x00001000 // BlkIo Driver
532 # DEBUG_NET 0x00004000 // SNP Driver
533 # DEBUG_UNDI 0x00010000 // UNDI Driver
534 # DEBUG_LOADFILE 0x00020000 // LoadFile
535 # DEBUG_EVENT 0x00080000 // Event messages
536 # DEBUG_GCD 0x00100000 // Global Coherency Database changes
537 # DEBUG_CACHE 0x00200000 // Memory range cachability changes
538 # DEBUG_VERBOSE 0x00400000 // Detailed debug messages that may
539 # // significantly impact boot performance
540 # DEBUG_ERROR 0x80000000 // Error
541 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x8000004F
542
543 !if $(SOURCE_DEBUG_ENABLE) == TRUE
544 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x17
545 !else
546 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
547 !endif
548
549 # This PCD is used to set the base address of the PCI express hierarchy. It
550 # is only consulted when OVMF runs on Q35. In that case it is programmed into
551 # the PCIEXBAR register.
552 #
553 # On Q35 machine types that QEMU intends to support in the long term, QEMU
554 # never lets the RAM below 4 GB exceed 2816 MB.
555 gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xB0000000
556
557 !if $(SOURCE_DEBUG_ENABLE) == TRUE
558 gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdDebugLoadImageMethod|0x2
559 !endif
560
561 #
562 # The NumberOfPages values below are ad-hoc. They are updated sporadically at
563 # best (please refer to git-blame for past updates). The values capture a set
564 # of BIN hints that made sense at a particular time, for some (now likely
565 # unknown) workloads / boot paths.
566 #
567 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIMemoryNVS|0x80
568 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIReclaimMemory|0x10
569 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiReservedMemoryType|0x80
570 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesCode|0x100
571 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesData|0x100
572
573 #
574 # TDX need 1G PageTable support
575 gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable|TRUE
576
577 #
578 # Network Pcds
579 #
580 !include NetworkPkg/NetworkPcds.dsc.inc
581
582 gEfiShellPkgTokenSpaceGuid.PcdShellFileOperationSize|0x20000
583
584 !if $(SMM_REQUIRE) == TRUE
585 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmStackSize|0x4000
586 !endif
587
588 # IRQs 5, 9, 10, 11 are level-triggered
589 gUefiOvmfPkgTokenSpaceGuid.Pcd8259LegacyModeEdgeLevel|0x0E20
590
591 # Point to the MdeModulePkg/Application/UiApp/UiApp.inf
592 gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 }
593
594 ################################################################################
595 #
596 # Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
597 #
598 ################################################################################
599
600 [PcdsDynamicDefault]
601 # only set when
602 # ($(SMM_REQUIRE) == FALSE)
603 gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved|0
604
605 !if $(SMM_REQUIRE) == FALSE
606 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0
607 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64|0
608 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64|0
609 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
610 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
611 !endif
612 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution|1280
613 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution|800
614 gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable|FALSE
615 gUefiOvmfPkgTokenSpaceGuid.PcdVideoResolutionSource|0
616 gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId|0
617 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoBase|0x0
618 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoSize|0x0
619 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Base|0x0
620 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Size|0x0
621 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Base|0x0
622 !ifdef $(CSM_ENABLE)
623 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size|0x0
624 !else
625 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size|0x800000000
626 !endif
627
628 gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|0
629
630 # Set video resolution for text setup.
631 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640
632 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480
633
634 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0208
635 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev|0x0
636 gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated|FALSE
637
638 # Noexec settings for DXE.
639 gEfiMdeModulePkgTokenSpaceGuid.PcdSetNxForStack|FALSE
640
641 # UefiCpuPkg PCDs related to initial AP bringup and general AP management.
642 gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber|64
643 gUefiCpuPkgTokenSpaceGuid.PcdCpuBootLogicalProcessorNumber|0
644
645 # Set memory encryption mask
646 gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask|0x0
647
648 # Set Tdx shared bit mask
649 gEfiMdeModulePkgTokenSpaceGuid.PcdTdxSharedBitMask|0x0
650
651 # Set SEV-ES defaults
652 gEfiMdeModulePkgTokenSpaceGuid.PcdGhcbBase|0
653 gEfiMdeModulePkgTokenSpaceGuid.PcdGhcbSize|0
654 gUefiCpuPkgTokenSpaceGuid.PcdSevEsIsEnabled|0
655
656 !if $(SMM_REQUIRE) == TRUE
657 gUefiOvmfPkgTokenSpaceGuid.PcdQ35TsegMbytes|8
658 gUefiOvmfPkgTokenSpaceGuid.PcdQ35SmramAtDefaultSmbase|FALSE
659 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmSyncMode|0x01
660 gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmApSyncTimeout|100000
661 !endif
662
663 gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x00
664
665 !include OvmfPkg/OvmfTpmPcds.dsc.inc
666
667 # IPv4 and IPv6 PXE Boot support.
668 gEfiNetworkPkgTokenSpaceGuid.PcdIPv4PXESupport|0x01
669 gEfiNetworkPkgTokenSpaceGuid.PcdIPv6PXESupport|0x01
670
671 # Set ConfidentialComputing defaults
672 gEfiMdePkgTokenSpaceGuid.PcdConfidentialComputingGuestAttr|0
673
674 !if $(CSM_ENABLE) == FALSE
675 gEfiMdePkgTokenSpaceGuid.PcdFSBClock|100000000
676 !endif
677
678 [PcdsDynamicHii]
679 !include OvmfPkg/OvmfTpmPcdsHii.dsc.inc
680
681 ################################################################################
682 #
683 # Components Section - list of all EDK II Modules needed by this Platform.
684 #
685 ################################################################################
686 [Components]
687 OvmfPkg/ResetVector/ResetVector.inf
688
689 #
690 # SEC Phase modules
691 #
692 OvmfPkg/Sec/SecMain.inf {
693 <LibraryClasses>
694 NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
695 NULL|OvmfPkg/Library/PlatformInitLib/PlatformInitLib.inf
696 }
697
698 #
699 # PEI Phase modules
700 #
701 MdeModulePkg/Core/Pei/PeiMain.inf
702 MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
703 <LibraryClasses>
704 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
705 }
706 MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf {
707 <LibraryClasses>
708 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
709 }
710 MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf {
711 <LibraryClasses>
712 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
713 }
714 MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
715
716 OvmfPkg/PlatformPei/PlatformPei.inf
717 UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf {
718 <LibraryClasses>
719 !if $(SMM_REQUIRE) == TRUE
720 LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxPeiLib.inf
721 !endif
722 }
723 !if $(SMM_REQUIRE) == TRUE
724 MdeModulePkg/Universal/FaultTolerantWritePei/FaultTolerantWritePei.inf
725 MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
726 OvmfPkg/SmmAccess/SmmAccessPei.inf
727 !endif
728 UefiCpuPkg/CpuMpPei/CpuMpPei.inf
729
730 !include OvmfPkg/OvmfTpmComponentsPei.dsc.inc
731
732 #
733 # DXE Phase modules
734 #
735 MdeModulePkg/Core/Dxe/DxeMain.inf {
736 <LibraryClasses>
737 NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
738 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
739 }
740
741 MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
742 MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf
743 MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
744 <LibraryClasses>
745 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
746 }
747
748 MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
749
750 MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf {
751 <LibraryClasses>
752 !if $(SECURE_BOOT_ENABLE) == TRUE
753 NULL|SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.inf
754 !include OvmfPkg/OvmfTpmSecurityStub.dsc.inc
755 !endif
756 }
757
758 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
759 UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
760 UefiCpuPkg/CpuDxe/CpuDxe.inf
761 !ifdef $(CSM_ENABLE)
762 OvmfPkg/8259InterruptControllerDxe/8259.inf
763 OvmfPkg/8254TimerDxe/8254Timer.inf
764 !else
765 OvmfPkg/LocalApicTimerDxe/LocalApicTimerDxe.inf
766 !endif
767 OvmfPkg/IncompatiblePciDeviceSupportDxe/IncompatiblePciDeviceSupport.inf
768 OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.inf
769 MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf {
770 <LibraryClasses>
771 PciHostBridgeLib|OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.inf
772 PciHostBridgeUtilityLib|OvmfPkg/Library/PciHostBridgeUtilityLib/PciHostBridgeUtilityLib.inf
773 NULL|OvmfPkg/Library/PlatformHasIoMmuLib/PlatformHasIoMmuLib.inf
774 }
775 MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf {
776 <LibraryClasses>
777 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
778 }
779 MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
780 MdeModulePkg/Universal/Metronome/Metronome.inf
781 PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
782 MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf
783 MdeModulePkg/Universal/BdsDxe/BdsDxe.inf {
784 <LibraryClasses>
785 XenPlatformLib|OvmfPkg/Library/XenPlatformLib/XenPlatformLib.inf
786 !ifdef $(CSM_ENABLE)
787 NULL|OvmfPkg/Csm/CsmSupportLib/CsmSupportLib.inf
788 NULL|OvmfPkg/Csm/LegacyBootManagerLib/LegacyBootManagerLib.inf
789 !endif
790 }
791 MdeModulePkg/Logo/LogoDxe.inf
792 MdeModulePkg/Application/UiApp/UiApp.inf {
793 <LibraryClasses>
794 NULL|MdeModulePkg/Library/DeviceManagerUiLib/DeviceManagerUiLib.inf
795 NULL|MdeModulePkg/Library/BootManagerUiLib/BootManagerUiLib.inf
796 NULL|MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf
797 !ifdef $(CSM_ENABLE)
798 NULL|OvmfPkg/Csm/LegacyBootManagerLib/LegacyBootManagerLib.inf
799 NULL|OvmfPkg/Csm/LegacyBootMaintUiLib/LegacyBootMaintUiLib.inf
800 !endif
801 }
802 OvmfPkg/QemuKernelLoaderFsDxe/QemuKernelLoaderFsDxe.inf {
803 <LibraryClasses>
804 NULL|OvmfPkg/Library/BlobVerifierLibNull/BlobVerifierLibNull.inf
805 }
806 OvmfPkg/VirtioPciDeviceDxe/VirtioPciDeviceDxe.inf
807 OvmfPkg/Virtio10Dxe/Virtio10.inf
808 OvmfPkg/VirtioBlkDxe/VirtioBlk.inf
809 OvmfPkg/VirtioScsiDxe/VirtioScsi.inf
810 OvmfPkg/VirtioRngDxe/VirtioRng.inf
811 !if $(PVSCSI_ENABLE) == TRUE
812 OvmfPkg/PvScsiDxe/PvScsiDxe.inf
813 !endif
814 !if $(MPT_SCSI_ENABLE) == TRUE
815 OvmfPkg/MptScsiDxe/MptScsiDxe.inf
816 !endif
817 !if $(LSI_SCSI_ENABLE) == TRUE
818 OvmfPkg/LsiScsiDxe/LsiScsiDxe.inf
819 !endif
820 MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
821 MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
822 MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
823 MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
824 MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
825 MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf {
826 <LibraryClasses>
827 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
828 }
829 MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
830 MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {
831 <LibraryClasses>
832 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
833 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
834 }
835 MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
836 MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
837 MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
838 MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
839 FatPkg/EnhancedFatDxe/Fat.inf
840 MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf
841 OvmfPkg/VirtioFsDxe/VirtioFsDxe.inf
842 MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
843 MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
844 OvmfPkg/SataControllerDxe/SataControllerDxe.inf
845 MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
846 MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
847 MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf
848 MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
849 MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
850 MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
851 MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
852
853 !ifndef $(CSM_ENABLE)
854 OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf
855 !endif
856 OvmfPkg/QemuRamfbDxe/QemuRamfbDxe.inf
857 OvmfPkg/VirtioGpuDxe/VirtioGpu.inf
858
859 #
860 # ISA Support
861 #
862 OvmfPkg/SioBusDxe/SioBusDxe.inf
863 MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
864 MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
865
866 #
867 # SMBIOS Support
868 #
869 MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf {
870 <LibraryClasses>
871 NULL|OvmfPkg/Library/SmbiosVersionLib/DetectSmbiosVersionLib.inf
872 }
873 OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
874
875 #
876 # ACPI Support
877 #
878 MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
879 OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf
880 MdeModulePkg/Universal/Acpi/S3SaveStateDxe/S3SaveStateDxe.inf
881 MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/BootScriptExecutorDxe.inf
882 MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResourceTableDxe.inf
883
884 #
885 # Network Support
886 #
887 !include NetworkPkg/NetworkComponents.dsc.inc
888
889 NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf {
890 <LibraryClasses>
891 NULL|OvmfPkg/Library/PxeBcPcdProducerLib/PxeBcPcdProducerLib.inf
892 }
893
894 !if $(NETWORK_TLS_ENABLE) == TRUE
895 NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.inf {
896 <LibraryClasses>
897 NULL|OvmfPkg/Library/TlsAuthConfigLib/TlsAuthConfigLib.inf
898 }
899 !endif
900 OvmfPkg/VirtioNetDxe/VirtioNet.inf
901
902 #
903 # Usb Support
904 #
905 MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
906 MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
907 MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
908 MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
909 MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
910 MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
911
912 !ifdef $(CSM_ENABLE)
913 OvmfPkg/Csm/BiosThunk/VideoDxe/VideoDxe.inf {
914 <LibraryClasses>
915 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
916 }
917 OvmfPkg/Csm/LegacyBiosDxe/LegacyBiosDxe.inf
918 OvmfPkg/Csm/Csm16/Csm16.inf
919 !endif
920
921 !if $(TOOL_CHAIN_TAG) != "XCODE5"
922 ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf {
923 <PcdsFixedAtBuild>
924 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
925 }
926 ShellPkg/DynamicCommand/HttpDynamicCommand/HttpDynamicCommand.inf {
927 <PcdsFixedAtBuild>
928 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
929 }
930 OvmfPkg/LinuxInitrdDynamicShellCommand/LinuxInitrdDynamicShellCommand.inf {
931 <PcdsFixedAtBuild>
932 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
933 }
934 !endif
935 ShellPkg/Application/Shell/Shell.inf {
936 <LibraryClasses>
937 ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
938 NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
939 NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
940 NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
941 NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
942 NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
943 NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
944 NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
945 !if $(NETWORK_IP6_ENABLE) == TRUE
946 NULL|ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf
947 !endif
948 HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
949 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
950 BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
951
952 <PcdsFixedAtBuild>
953 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
954 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
955 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
956 }
957
958 !if $(SECURE_BOOT_ENABLE) == TRUE
959 SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
960 OvmfPkg/EnrollDefaultKeys/EnrollDefaultKeys.inf
961 !endif
962
963 OvmfPkg/PlatformDxe/Platform.inf
964 OvmfPkg/AmdSevDxe/AmdSevDxe.inf {
965 <LibraryClasses>
966 PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
967 }
968 OvmfPkg/IoMmuDxe/IoMmuDxe.inf
969
970 OvmfPkg/TdxDxe/TdxDxe.inf
971
972 !if $(SMM_REQUIRE) == TRUE
973 OvmfPkg/SmmAccess/SmmAccess2Dxe.inf
974 OvmfPkg/SmmControl2Dxe/SmmControl2Dxe.inf
975 OvmfPkg/CpuS3DataDxe/CpuS3DataDxe.inf
976
977 #
978 # SMM Initial Program Load (a DXE_RUNTIME_DRIVER)
979 #
980 MdeModulePkg/Core/PiSmmCore/PiSmmIpl.inf
981
982 #
983 # SMM_CORE
984 #
985 MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf
986
987 #
988 # Privileged drivers (DXE_SMM_DRIVER modules)
989 #
990 OvmfPkg/CpuHotplugSmm/CpuHotplugSmm.inf
991 UefiCpuPkg/CpuIo2Smm/CpuIo2Smm.inf
992 MdeModulePkg/Universal/LockBox/SmmLockBox/SmmLockBox.inf {
993 <LibraryClasses>
994 LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxSmmLib.inf
995 }
996 UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf {
997 <LibraryClasses>
998 SmmCpuPlatformHookLib|OvmfPkg/Library/SmmCpuPlatformHookLibQemu/SmmCpuPlatformHookLibQemu.inf
999 SmmCpuFeaturesLib|OvmfPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.inf
1000 }
1001
1002 #
1003 # Variable driver stack (SMM)
1004 #
1005 OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesSmm.inf {
1006 <LibraryClasses>
1007 VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
1008 }
1009 MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmm.inf
1010 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmm.inf {
1011 <LibraryClasses>
1012 NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
1013 NULL|MdeModulePkg/Library/VarCheckPolicyLib/VarCheckPolicyLib.inf
1014 }
1015 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmmRuntimeDxe.inf
1016
1017 !else
1018
1019 #
1020 # Variable driver stack (non-SMM)
1021 #
1022 OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
1023 OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.inf {
1024 <LibraryClasses>
1025 PlatformFvbLib|OvmfPkg/Library/EmuVariableFvbLib/EmuVariableFvbLib.inf
1026 }
1027 MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
1028 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
1029 <LibraryClasses>
1030 NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
1031 }
1032 !endif
1033
1034 #
1035 # TPM support
1036 #
1037 !include OvmfPkg/OvmfTpmComponentsDxe.dsc.inc