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