1 | ## @file
|
---|
2 | # A DXE_RUNTIME_DRIVER providing synchronous SMI activations via the
|
---|
3 | # EFI_SMM_CONTROL2_PROTOCOL.
|
---|
4 | #
|
---|
5 | # We expect the PEI phase to have covered the following:
|
---|
6 | # - ensure that the underlying QEMU machine type be Q35
|
---|
7 | # (responsible: OvmfPkg/SmmAccess/SmmAccessPei.inf)
|
---|
8 | # - ensure that the ACPI PM IO space be configured
|
---|
9 | # (responsible: OvmfPkg/PlatformPei/PlatformPei.inf)
|
---|
10 | #
|
---|
11 | # Our own entry point is responsible for confirming the SMI feature and for
|
---|
12 | # configuring it.
|
---|
13 | #
|
---|
14 | # Copyright (C) 2013, 2015, Red Hat, Inc.
|
---|
15 | # Copyright (c) 2024, Intel Corporation. All rights reserved.
|
---|
16 | #
|
---|
17 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
18 | #
|
---|
19 | ##
|
---|
20 |
|
---|
21 | [Defines]
|
---|
22 | INF_VERSION = 0x00010005
|
---|
23 | BASE_NAME = SmmControl2Dxe
|
---|
24 | FILE_GUID = 1206F7CA-A475-4624-A83E-E6FC9BB38E49
|
---|
25 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
26 | VERSION_STRING = 1.0
|
---|
27 | PI_SPECIFICATION_VERSION = 0x00010400
|
---|
28 | ENTRY_POINT = SmmControl2DxeEntryPoint
|
---|
29 |
|
---|
30 | #
|
---|
31 | # The following information is for reference only and not required by the build tools.
|
---|
32 | #
|
---|
33 | # VALID_ARCHITECTURES = IA32 X64
|
---|
34 | #
|
---|
35 |
|
---|
36 | [Sources]
|
---|
37 | SmiFeatures.h
|
---|
38 | SmiFeatures.c
|
---|
39 | SmmControl2Dxe.c
|
---|
40 |
|
---|
41 | [Packages]
|
---|
42 | MdePkg/MdePkg.dec
|
---|
43 | MdeModulePkg/MdeModulePkg.dec
|
---|
44 | OvmfPkg/OvmfPkg.dec
|
---|
45 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
46 |
|
---|
47 | [LibraryClasses]
|
---|
48 | BaseLib
|
---|
49 | DebugLib
|
---|
50 | IoLib
|
---|
51 | MemEncryptSevLib
|
---|
52 | MemoryAllocationLib
|
---|
53 | PcdLib
|
---|
54 | PciLib
|
---|
55 | QemuFwCfgLib
|
---|
56 | QemuFwCfgS3Lib
|
---|
57 | UefiBootServicesTableLib
|
---|
58 | UefiDriverEntryPoint
|
---|
59 |
|
---|
60 | [Protocols]
|
---|
61 | gEfiS3SaveStateProtocolGuid ## SOMETIMES_CONSUMES
|
---|
62 | gEfiSmmControl2ProtocolGuid ## PRODUCES
|
---|
63 |
|
---|
64 | [Pcd]
|
---|
65 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmApSyncTimeout ## SOMETIMES_PRODUCES
|
---|
66 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmApSyncTimeout2 ## SOMETIMES_PRODUCES
|
---|
67 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmSyncMode ## SOMETIMES_PRODUCES
|
---|
68 | gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable
|
---|
69 |
|
---|
70 | [FeaturePcd]
|
---|
71 | gUefiOvmfPkgTokenSpaceGuid.PcdSmmSmramRequire
|
---|
72 |
|
---|
73 | [Depex]
|
---|
74 | TRUE
|
---|