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