VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/OvmfPkg/OvmfXen.dsc@ 108794

Last change on this file since 108794 was 108794, checked in by vboxsync, 2 weeks ago

Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643

  • Property svn:eol-style set to native
File size: 32.2 KB
Line 
1## @file
2# EFI/Framework Open Virtual Machine Firmware (OVMF) platform
3#
4# Copyright (c) 2006 - 2023, Intel Corporation. All rights reserved.<BR>
5# (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
6# Copyright (c) 2019, Citrix Systems, Inc.
7# Copyright (c) Microsoft Corporation.
8#
9# SPDX-License-Identifier: BSD-2-Clause-Patent
10#
11##
12
13################################################################################
14#
15# Defines Section - statements that will be processed to create a Makefile.
16#
17################################################################################
18[Defines]
19 PLATFORM_NAME = Ovmf
20 PLATFORM_GUID = e3aa4fbe-9459-482d-bd40-d3f3b5f89d6e
21 PLATFORM_VERSION = 0.1
22 DSC_SPECIFICATION = 0x00010005
23 OUTPUT_DIRECTORY = Build/OvmfXen
24 SUPPORTED_ARCHITECTURES = X64
25 BUILD_TARGETS = NOOPT|DEBUG|RELEASE
26 SKUID_IDENTIFIER = DEFAULT
27 FLASH_DEFINITION = OvmfPkg/OvmfXen.fdf
28
29 #
30 # Defines for default states. These can be changed on the command line.
31 # -D FLAG=VALUE
32 #
33 DEFINE SOURCE_DEBUG_ENABLE = FALSE
34
35 #
36 # Shell can be useful for debugging but should not be enabled for production
37 #
38 DEFINE BUILD_SHELL = TRUE
39
40 #
41 # Network definition
42 #
43 DEFINE NETWORK_TLS_ENABLE = FALSE
44 DEFINE NETWORK_IP6_ENABLE = FALSE
45 DEFINE NETWORK_HTTP_BOOT_ENABLE = FALSE
46 DEFINE NETWORK_ALLOW_HTTP_CONNECTIONS = TRUE
47 DEFINE NETWORK_ISCSI_ENABLE = TRUE
48
49!include NetworkPkg/NetworkDefines.dsc.inc
50
51 #
52 # Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to
53 # one of the supported values, in place of any of the convenience macros, is
54 # permitted.
55 #
56!ifdef $(FD_SIZE_1MB)
57 DEFINE FD_SIZE_IN_KB = 1024
58!else
59!ifdef $(FD_SIZE_2MB)
60 DEFINE FD_SIZE_IN_KB = 2048
61!else
62!ifdef $(FD_SIZE_4MB)
63 DEFINE FD_SIZE_IN_KB = 4096
64!else
65 DEFINE FD_SIZE_IN_KB = 2048
66!endif
67!endif
68!endif
69
70!include OvmfPkg/Include/Dsc/OvmfPkg.dsc.inc
71
72[BuildOptions]
73 GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
74 INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
75 MSFT:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
76!if $(TOOL_CHAIN_TAG) != "XCODE5"
77 GCC:*_*_*_CC_FLAGS = -mno-mmx -mno-sse
78!endif
79!if $(SOURCE_DEBUG_ENABLE) == TRUE
80 MSFT:*_*_X64_GENFW_FLAGS = --keepexceptiontable
81 GCC:*_*_X64_GENFW_FLAGS = --keepexceptiontable
82 INTEL:*_*_X64_GENFW_FLAGS = --keepexceptiontable
83!endif
84 RELEASE_*_*_GENFW_FLAGS = --zero
85
86 #
87 # Disable deprecated APIs.
88 #
89 MSFT:*_*_*_CC_FLAGS = /D DISABLE_NEW_DEPRECATED_INTERFACES
90 INTEL:*_*_*_CC_FLAGS = /D DISABLE_NEW_DEPRECATED_INTERFACES
91 GCC:*_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES
92
93!include NetworkPkg/NetworkBuildOptions.dsc.inc
94
95[BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
96 GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
97 XCODE:*_*_*_DLINK_FLAGS = -seg1addr 0x1000 -segalign 0x1000
98 XCODE:*_*_*_MTOC_FLAGS = -align 0x1000
99 CLANGPDB:*_*_*_DLINK_FLAGS = /ALIGN:4096
100
101# Force PE/COFF sections to be aligned at 4KB boundaries to support page level
102# protection of DXE_SMM_DRIVER/SMM_CORE modules
103[BuildOptions.common.EDKII.DXE_SMM_DRIVER, BuildOptions.common.EDKII.SMM_CORE]
104 GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
105 XCODE:*_*_*_DLINK_FLAGS = -seg1addr 0x1000 -segalign 0x1000
106 XCODE:*_*_*_MTOC_FLAGS = -align 0x1000
107 CLANGPDB:*_*_*_DLINK_FLAGS = /ALIGN:4096
108
109################################################################################
110#
111# SKU Identification section - list of all SKU IDs supported by this Platform.
112#
113################################################################################
114[SkuIds]
115 0|DEFAULT
116
117################################################################################
118#
119# Library Class section - list of all Library Classes needed by this Platform.
120#
121################################################################################
122
123!include MdePkg/MdeLibs.dsc.inc
124
125[LibraryClasses]
126 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
127 TimerLib|MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf
128 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/BaseResetSystemLibXen.inf
129 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
130 BaseMemoryLib|MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.inf
131 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
132 SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
133 BmpSupportLib|MdeModulePkg/Library/BaseBmpSupportLib/BaseBmpSupportLib.inf
134 SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
135 CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
136 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
137 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
138 CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
139 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
140 UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
141 HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
142 SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
143 UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
144 BootLogoLib|MdeModulePkg/Library/BootLogoLib/BootLogoLib.inf
145 FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf
146 CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
147 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
148 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
149 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
150 PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
151 PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf
152 PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
153 PciSegmentLib|MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf
154 PciCapLib|OvmfPkg/Library/BasePciCapLib/BasePciCapLib.inf
155 PciCapPciSegmentLib|OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.inf
156 PciCapPciIoLib|OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf
157 CcProbeLib|MdePkg/Library/CcProbeLibNull/CcProbeLibNull.inf
158 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicSev.inf
159 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
160 SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf
161 MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf
162 MicrocodeLib|UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf
163 CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf
164 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
165 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
166 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
167 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
168 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
169 DevicePathLib|MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf
170 NvVarsFileLib|OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.inf
171 FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
172 SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
173 UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
174 SerializeVariablesLib|OvmfPkg/Library/SerializeVariablesLib/SerializeVariablesLib.inf
175 QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgDxeLib.inf
176 QemuFwCfgSimpleParserLib|OvmfPkg/Library/QemuFwCfgSimpleParserLib/QemuFwCfgSimpleParserLib.inf
177 QemuLoadImageLib|OvmfPkg/Library/GenericQemuLoadImageLib/GenericQemuLoadImageLib.inf
178 MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/DxeMemEncryptSevLib.inf
179 LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf
180 CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf
181 FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.inf
182 MemEncryptTdxLib|OvmfPkg/Library/BaseMemEncryptTdxLib/BaseMemEncryptTdxLib.inf
183 PeiHardwareInfoLib|OvmfPkg/Library/HardwareInfoLib/PeiHardwareInfoLib.inf
184 DxeHardwareInfoLib|OvmfPkg/Library/HardwareInfoLib/DxeHardwareInfoLib.inf
185 ImagePropertiesRecordLib|MdeModulePkg/Library/ImagePropertiesRecordLib/ImagePropertiesRecordLib.inf
186
187!if $(SOURCE_DEBUG_ENABLE) == TRUE
188 PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
189 DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
190!else
191 PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
192 DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
193!endif
194
195 LocalApicLib|UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf
196 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
197
198 IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
199!if $(NETWORK_TLS_ENABLE) == TRUE
200 OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
201!else
202 OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLibCrypto.inf
203!endif
204 RngLib|MdeModulePkg/Library/BaseRngLibTimerLib/BaseRngLibTimerLib.inf
205
206 AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf
207 VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf
208 VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLib.inf
209 VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.inf
210 VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseVariableFlashInfoLib.inf
211
212
213 #
214 # Network libraries
215 #
216!include NetworkPkg/NetworkLibs.dsc.inc
217
218!if $(NETWORK_TLS_ENABLE) == TRUE
219 TlsLib|CryptoPkg/Library/TlsLib/TlsLib.inf
220!endif
221
222!include OvmfPkg/Include/Dsc/ShellLibs.dsc.inc
223
224 ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
225 S3BootScriptLib|MdeModulePkg/Library/PiDxeS3BootScriptLib/DxeS3BootScriptLib.inf
226 SmbusLib|MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.inf
227 OrderedCollectionLib|MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf
228 XenHypercallLib|OvmfPkg/Library/XenHypercallLib/XenHypercallLib.inf
229 XenPlatformLib|OvmfPkg/Library/XenPlatformLib/XenPlatformLib.inf
230 XenIoMmioLib|OvmfPkg/Library/XenIoMmioLib/XenIoMmioLib.inf
231
232 Tcg2PhysicalPresenceLib|OvmfPkg/Library/Tcg2PhysicalPresenceLibNull/DxeTcg2PhysicalPresenceLib.inf
233 TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf
234 RealTimeClockLib|OvmfPkg/Library/XenRealTimeClockLib/XenRealTimeClockLib.inf
235 TimeBaseLib|EmbeddedPkg/Library/TimeBaseLib/TimeBaseLib.inf
236!ifdef $(DEBUG_ON_HYPERVISOR_CONSOLE)
237 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformRomDebugLibIoPortNocheck.inf
238!else
239 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
240!endif
241
242[LibraryClasses.common]
243 AmdSvsmLib|UefiCpuPkg/Library/AmdSvsmLibNull/AmdSvsmLibNull.inf
244 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
245 CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
246 TdxLib|MdePkg/Library/TdxLib/TdxLib.inf
247
248[LibraryClasses.common.SEC]
249 QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgSecLib.inf
250!ifndef $(DEBUG_ON_HYPERVISOR_CONSOLE)
251 DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformRomDebugLibIoPort.inf
252!endif
253 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
254 ExtractGuidedSectionLib|MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.inf
255!if $(SOURCE_DEBUG_ENABLE) == TRUE
256 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
257!endif
258 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
259 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
260 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
261 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
262 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf
263 MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/SecMemEncryptSevLib.inf
264
265[LibraryClasses.common.PEI_CORE]
266 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
267 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
268 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
269 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
270 PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
271 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
272 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
273 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
274 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
275 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
276
277[LibraryClasses.common.PEIM]
278 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
279 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
280 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
281 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
282 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
283 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
284 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
285 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
286 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
287 ResourcePublicationLib|MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf
288 ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
289!if $(SOURCE_DEBUG_ENABLE) == TRUE
290 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
291!endif
292 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuExceptionHandlerLib.inf
293 MpInitLib|UefiCpuPkg/Library/MpInitLib/PeiMpInitLib.inf
294 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/PeiQemuFwCfgS3LibFwCfg.inf
295 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
296 QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgPeiLib.inf
297 MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLib.inf
298
299[LibraryClasses.common.DXE_CORE]
300 HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
301 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
302 MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
303 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
304 ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
305!if $(SOURCE_DEBUG_ENABLE) == TRUE
306 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
307!endif
308 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
309 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
310
311[LibraryClasses.common.DXE_RUNTIME_DRIVER]
312 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
313 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLibXen.inf
314 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
315 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
316 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
317 ReportStatusCodeLib|MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf
318 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
319 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
320 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
321 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
322 VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLibRuntimeDxe.inf
323
324[LibraryClasses.common.UEFI_DRIVER]
325 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
326 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLibXen.inf
327 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
328 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
329 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
330 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
331 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
332 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
333
334[LibraryClasses.common.DXE_DRIVER]
335 AcpiPlatformLib|OvmfPkg/Library/AcpiPlatformLib/DxeAcpiPlatformLib.inf
336 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
337 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLibXen.inf
338 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
339 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
340 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
341 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
342 PlatformBootManagerLib|OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
343 PlatformBmPrintScLib|OvmfPkg/Library/PlatformBmPrintScLib/PlatformBmPrintScLib.inf
344 QemuBootOrderLib|OvmfPkg/Library/QemuBootOrderLib/QemuBootOrderLib.inf
345 CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
346 LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxDxeLib.inf
347!if $(SOURCE_DEBUG_ENABLE) == TRUE
348 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
349!endif
350 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
351 MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf
352 NestedInterruptTplLib|OvmfPkg/Library/NestedInterruptTplLib/NestedInterruptTplLib.inf
353 QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
354
355[LibraryClasses.common.UEFI_APPLICATION]
356 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
357 ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLibXen.inf
358 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
359 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
360 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
361 PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
362
363################################################################################
364#
365# Pcd Section - list of all EDK II PCD Entries defined by this Platform.
366#
367################################################################################
368[PcdsFeatureFlag]
369 gEfiMdeModulePkgTokenSpaceGuid.PcdHiiOsRuntimeSupport|FALSE
370 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportUefiDecompress|FALSE
371 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
372 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
373 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
374 gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE
375
376[PcdsFixedAtBuild]
377 gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration|TRUE
378 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
379 gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
380 gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
381 gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|0
382!if ($(FD_SIZE_IN_KB) == 1024) || ($(FD_SIZE_IN_KB) == 2048)
383 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x2000
384 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x2800
385!if $(NETWORK_TLS_ENABLE) == FALSE
386 # match PcdFlashNvStorageVariableSize purely for convenience
387 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0xe000
388!endif
389!endif
390!if $(FD_SIZE_IN_KB) == 4096
391 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x8400
392 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x8400
393!if $(NETWORK_TLS_ENABLE) == FALSE
394 # match PcdFlashNvStorageVariableSize purely for convenience
395 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x40000
396!endif
397!endif
398!if $(NETWORK_TLS_ENABLE) == TRUE
399 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x80000
400 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVolatileVariableSize|0x40000
401!endif
402
403 gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
404 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
405 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE
406
407 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
408
409 # DEBUG_INIT 0x00000001 // Initialization
410 # DEBUG_WARN 0x00000002 // Warnings
411 # DEBUG_LOAD 0x00000004 // Load events
412 # DEBUG_FS 0x00000008 // EFI File system
413 # DEBUG_POOL 0x00000010 // Alloc & Free (pool)
414 # DEBUG_PAGE 0x00000020 // Alloc & Free (page)
415 # DEBUG_INFO 0x00000040 // Informational debug messages
416 # DEBUG_DISPATCH 0x00000080 // PEI/DXE/SMM Dispatchers
417 # DEBUG_VARIABLE 0x00000100 // Variable
418 # DEBUG_BM 0x00000400 // Boot Manager
419 # DEBUG_BLKIO 0x00001000 // BlkIo Driver
420 # DEBUG_NET 0x00004000 // SNP Driver
421 # DEBUG_UNDI 0x00010000 // UNDI Driver
422 # DEBUG_LOADFILE 0x00020000 // LoadFile
423 # DEBUG_EVENT 0x00080000 // Event messages
424 # DEBUG_GCD 0x00100000 // Global Coherency Database changes
425 # DEBUG_CACHE 0x00200000 // Memory range cachability changes
426 # DEBUG_VERBOSE 0x00400000 // Detailed debug messages that may
427 # // significantly impact boot performance
428 # DEBUG_ERROR 0x80000000 // Error
429 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x8000004F
430
431!if $(SOURCE_DEBUG_ENABLE) == TRUE
432 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x17
433!else
434 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
435!endif
436
437 # This PCD is used to set the base address of the PCI express hierarchy. It
438 # is only consulted when OVMF runs on Q35. In that case it is programmed into
439 # the PCIEXBAR register.
440 #
441 # On Q35 machine types that QEMU intends to support in the long term, QEMU
442 # never lets the RAM below 4 GB exceed 2816 MB.
443 gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xB0000000
444
445!if $(SOURCE_DEBUG_ENABLE) == TRUE
446 gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdDebugLoadImageMethod|0x2
447!endif
448
449 #
450 # Network Pcds
451 #
452!include NetworkPkg/NetworkFixedPcds.dsc.inc
453
454!ifdef $(DEBUG_ON_HYPERVISOR_CONSOLE)
455 ## Set Xen's debug IO port for PlatformDebugLibIoPort
456 gUefiOvmfPkgTokenSpaceGuid.PcdDebugIoPort|0xe9
457!endif
458
459 # Point to the MdeModulePkg/Application/UiApp/UiApp.inf
460 gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 }
461
462 # We populate DXE IPL tables with 1G pages preferably on Xen
463 gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable|TRUE
464
465 #
466 # PcdFirstTimeWakeUpAPsBySipi determines whether to employ
467 # SIPI instead of the INIT-SIPI-SIPI sequence during APs
468 # initialization. Deactivate this parameter to preserve
469 # the original execution of INIT-SIPI-SIPI.
470 #
471 gUefiCpuPkgTokenSpaceGuid.PcdFirstTimeWakeUpAPsBySipi|FALSE
472
473################################################################################
474#
475# Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
476#
477################################################################################
478
479[PcdsDynamicDefault]
480 gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved|0
481 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0
482 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64|0
483 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64|0
484 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
485 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
486 gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable|FALSE
487 gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId|0
488 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoBase|0x0
489 gUefiOvmfPkgTokenSpaceGuid.PcdPciIoSize|0x0
490 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Base|0x0
491 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Size|0x0
492 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Base|0x0
493 gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size|0x800000000
494
495 gEfiMdePkgTokenSpaceGuid.PcdFSBClock|100000000
496 gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|0
497
498 # Set video resolution for text setup.
499 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640
500 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480
501
502 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0208
503 gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev|0x0
504 gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated|FALSE
505
506 # Noexec settings for DXE.
507 gEfiMdeModulePkgTokenSpaceGuid.PcdSetNxForStack|FALSE
508
509 # Set memory encryption mask
510 gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask|0x0
511
512 # Set Tdx shared bit mask
513 gEfiMdeModulePkgTokenSpaceGuid.PcdTdxSharedBitMask|0x0
514
515 gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x00
516
517!include OvmfPkg/Include/Dsc/OvmfDisplayPcds.dsc.inc
518
519################################################################################
520#
521# Components Section - list of all EDK II Modules needed by this Platform.
522#
523################################################################################
524[Components]
525 OvmfPkg/XenResetVector/XenResetVector.inf
526
527 #
528 # SEC Phase modules
529 #
530 OvmfPkg/Sec/SecMain.inf {
531 <LibraryClasses>
532 NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
533 }
534
535 #
536 # PEI Phase modules
537 #
538 MdeModulePkg/Core/Pei/PeiMain.inf
539 MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
540 <LibraryClasses>
541 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
542 }
543 MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf {
544 <LibraryClasses>
545 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
546 }
547 MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf {
548 <LibraryClasses>
549 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
550 }
551 MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
552
553 OvmfPkg/XenPlatformPei/XenPlatformPei.inf
554 UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
555 UefiCpuPkg/CpuMpPei/CpuMpPei.inf
556
557 #
558 # DXE Phase modules
559 #
560 MdeModulePkg/Core/Dxe/DxeMain.inf {
561 <LibraryClasses>
562 NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
563 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
564 }
565
566 MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
567 MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf
568 MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
569 <LibraryClasses>
570 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
571 }
572
573 MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
574
575 MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
576
577 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
578 OvmfPkg/LocalApicTimerDxe/LocalApicTimerDxe.inf
579 UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
580 UefiCpuPkg/CpuDxe/CpuDxe.inf
581 OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.inf
582 MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf {
583 <LibraryClasses>
584 PciHostBridgeLib|OvmfPkg/Library/PciHostBridgeLibScan/PciHostBridgeLibScan.inf
585 PciHostBridgeUtilityLib|OvmfPkg/Library/PciHostBridgeUtilityLib/PciHostBridgeUtilityLib.inf
586 NULL|OvmfPkg/Library/PlatformHasIoMmuLib/PlatformHasIoMmuLib.inf
587 }
588 MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf {
589 <LibraryClasses>
590 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
591 }
592 MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
593 MdeModulePkg/Universal/Metronome/Metronome.inf
594 EmbeddedPkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
595 MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf
596 MdeModulePkg/Universal/BdsDxe/BdsDxe.inf
597 MdeModulePkg/Logo/LogoDxe.inf
598 MdeModulePkg/Application/UiApp/UiApp.inf {
599 <LibraryClasses>
600 NULL|MdeModulePkg/Library/DeviceManagerUiLib/DeviceManagerUiLib.inf
601 NULL|MdeModulePkg/Library/BootManagerUiLib/BootManagerUiLib.inf
602 NULL|MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf
603 }
604 OvmfPkg/QemuKernelLoaderFsDxe/QemuKernelLoaderFsDxe.inf {
605 <LibraryClasses>
606 NULL|OvmfPkg/Library/BlobVerifierLibNull/BlobVerifierLibNull.inf
607 }
608 OvmfPkg/XenIoPvhDxe/XenIoPvhDxe.inf
609 OvmfPkg/XenIoPciDxe/XenIoPciDxe.inf
610 OvmfPkg/XenBusDxe/XenBusDxe.inf
611 OvmfPkg/XenPvBlkDxe/XenPvBlkDxe.inf
612 MdeModulePkg/Universal/SerialDxe/SerialDxe.inf {
613 <LibraryClasses>
614 SerialPortLib|OvmfPkg/Library/XenConsoleSerialPortLib/XenConsoleSerialPortLib.inf
615 }
616 MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
617 MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
618 MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
619 MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
620 MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
621 MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf {
622 <LibraryClasses>
623 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
624 }
625 MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
626 MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {
627 <LibraryClasses>
628 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
629 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
630 }
631 MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
632 MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
633 MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
634 MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
635 FatPkg/EnhancedFatDxe/Fat.inf
636 MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf
637 MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
638 MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
639 MdeModulePkg/Bus/Pci/SataControllerDxe/SataControllerDxe.inf
640 MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
641 MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
642 MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf
643 MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
644 MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
645 MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
646
647 OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf
648 OvmfPkg/QemuRamfbDxe/QemuRamfbDxe.inf
649
650 SecurityPkg/RandomNumberGenerator/RngDxe/RngDxe.inf
651
652 #
653 # ISA Support
654 #
655 OvmfPkg/SioBusDxe/SioBusDxe.inf
656 MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
657 MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
658
659 #
660 # SMBIOS Support
661 #
662 MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf {
663 <LibraryClasses>
664 NULL|OvmfPkg/Library/SmbiosVersionLib/DetectSmbiosVersionLib.inf
665 }
666 OvmfPkg/SmbiosPlatformDxe/XenSmbiosPlatformDxe.inf
667
668 #
669 # ACPI Support
670 #
671 MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
672 OvmfPkg/XenAcpiPlatformDxe/XenAcpiPlatformDxe.inf
673 MdeModulePkg/Universal/Acpi/S3SaveStateDxe/S3SaveStateDxe.inf
674 MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/BootScriptExecutorDxe.inf
675 MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResourceTableDxe.inf
676
677 #
678 # Hash2 Protocol producer
679 #
680 SecurityPkg/Hash2DxeCrypto/Hash2DxeCrypto.inf
681
682 #
683 # Network Support
684 #
685!include NetworkPkg/NetworkComponents.dsc.inc
686
687!if $(NETWORK_TLS_ENABLE) == TRUE
688 NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.inf {
689 <LibraryClasses>
690 NULL|OvmfPkg/Library/TlsAuthConfigLib/TlsAuthConfigLib.inf
691 }
692!endif
693
694 #
695 # Usb Support
696 #
697 MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
698 MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
699 MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
700 MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
701 MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
702 MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
703
704!include OvmfPkg/Include/Dsc/ShellComponents.dsc.inc
705
706 OvmfPkg/PlatformDxe/Platform.inf
707 OvmfPkg/AmdSevDxe/AmdSevDxe.inf {
708 <LibraryClasses>
709 PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
710 }
711 OvmfPkg/IoMmuDxe/IoMmuDxe.inf
712
713 #
714 # Variable driver stack (non-SMM)
715 #
716 OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
717 OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.inf {
718 <LibraryClasses>
719 PlatformFvbLib|OvmfPkg/Library/EmuVariableFvbLib/EmuVariableFvbLib.inf
720 }
721 MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
722 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
723 <LibraryClasses>
724 NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
725 }
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette