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