]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Variable/RuntimeDxe/VariableStandaloneMm.inf
MdeModulePkg/Variable: Add RT GetVariable() cache support
[mirror_edk2.git] / MdeModulePkg / Universal / Variable / RuntimeDxe / VariableStandaloneMm.inf
1 ## @file
2 # Provides SMM variable service.
3 #
4 # This module installs SMM variable protocol into SMM protocol database,
5 # which can be used by SMM driver, and installs SMM variable protocol
6 # into BS protocol database, which can be used to notify the SMM Runtime
7 # Dxe driver that the SMM variable service is ready.
8 # This module should be used with SMM Runtime DXE module together. The
9 # SMM Runtime DXE module would install variable arch protocol and variable
10 # write arch protocol based on SMM variable module.
11 #
12 # Caution: This module requires additional review when modified.
13 # This driver will have external input - variable data and communicate buffer in SMM mode.
14 # This external input must be validated carefully to avoid security issues such as
15 # buffer overflow or integer overflow.
16 # The whole SMM authentication variable design relies on the integrity of flash part and SMM.
17 # which is assumed to be protected by platform. All variable code and metadata in flash/SMM Memory
18 # may not be modified without authorization. If platform fails to protect these resources,
19 # the authentication service provided in this driver will be broken, and the behavior is undefined.
20 #
21 # Copyright (c) 2010 - 2019, Intel Corporation. All rights reserved.<BR>
22 # Copyright (c) 2018, Linaro, Ltd. All rights reserved.<BR>
23 # SPDX-License-Identifier: BSD-2-Clause-Patent
24 #
25 ##
26
27 [Defines]
28 INF_VERSION = 0x0001001B
29 BASE_NAME = VariableStandaloneMm
30 FILE_GUID = 7ee2c0c1-c21a-4113-a53a-66824a95696f
31 MODULE_TYPE = MM_STANDALONE
32 VERSION_STRING = 1.0
33 PI_SPECIFICATION_VERSION = 0x00010032
34 ENTRY_POINT = VariableServiceInitialize
35
36 #
37 # The following information is for reference only and not required by the build tools.
38 #
39 # VALID_ARCHITECTURES = IA32 X64 ARM AARCH64
40 #
41
42
43 [Sources]
44 Reclaim.c
45 Variable.c
46 VariableSmm.c
47 VariableStandaloneMm.c
48 VariableNonVolatile.c
49 VariableNonVolatile.h
50 VariableParsing.c
51 VariableParsing.h
52 VariableRuntimeCache.c
53 VariableRuntimeCache.h
54 VarCheck.c
55 Variable.h
56 PrivilegePolymorphic.h
57 VariableExLib.c
58 TcgMorLockSmm.c
59 SpeculationBarrierSmm.c
60
61 [Packages]
62 MdePkg/MdePkg.dec
63 MdeModulePkg/MdeModulePkg.dec
64 StandaloneMmPkg/StandaloneMmPkg.dec
65
66 [LibraryClasses]
67 AuthVariableLib
68 BaseLib
69 BaseMemoryLib
70 DebugLib
71 HobLib
72 MemoryAllocationLib
73 MmServicesTableLib
74 StandaloneMmDriverEntryPoint
75 SynchronizationLib
76 VarCheckLib
77
78 [Protocols]
79 gEfiSmmFirmwareVolumeBlockProtocolGuid ## CONSUMES
80 ## CONSUMES
81 ## NOTIFY
82 gEfiSmmFaultTolerantWriteProtocolGuid
83 ## PRODUCES
84 ## UNDEFINED # SmiHandlerRegister
85 gEfiSmmVariableProtocolGuid
86 gEfiMmEndOfDxeProtocolGuid ## NOTIFY
87 gEdkiiSmmVarCheckProtocolGuid ## PRODUCES
88
89 [Guids]
90 ## SOMETIMES_CONSUMES ## GUID # Signature of Variable store header
91 ## SOMETIMES_PRODUCES ## GUID # Signature of Variable store header
92 ## SOMETIMES_CONSUMES ## HOB
93 ## SOMETIMES_PRODUCES ## SystemTable
94 gEfiAuthenticatedVariableGuid
95
96 ## SOMETIMES_CONSUMES ## GUID # Signature of Variable store header
97 ## SOMETIMES_PRODUCES ## GUID # Signature of Variable store header
98 ## SOMETIMES_CONSUMES ## HOB
99 ## SOMETIMES_PRODUCES ## SystemTable
100 gEfiVariableGuid
101
102 ## SOMETIMES_CONSUMES ## Variable:L"PlatformLang"
103 ## SOMETIMES_PRODUCES ## Variable:L"PlatformLang"
104 ## SOMETIMES_CONSUMES ## Variable:L"Lang"
105 ## SOMETIMES_PRODUCES ## Variable:L"Lang"
106 gEfiGlobalVariableGuid
107
108 gEfiMemoryOverwriteControlDataGuid ## SOMETIMES_CONSUMES ## Variable:L"MemoryOverwriteRequestControl"
109 gEfiMemoryOverwriteRequestControlLockGuid ## SOMETIMES_PRODUCES ## Variable:L"MemoryOverwriteRequestControlLock"
110
111 gEfiSystemNvDataFvGuid ## CONSUMES ## GUID
112 gEdkiiFaultTolerantWriteGuid ## SOMETIMES_CONSUMES ## HOB
113
114 ## SOMETIMES_CONSUMES ## Variable:L"VarErrorFlag"
115 ## SOMETIMES_PRODUCES ## Variable:L"VarErrorFlag"
116 gEdkiiVarErrorFlagGuid
117
118 [FixedPcd]
119 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize ## CONSUMES
120 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase ## SOMETIMES_CONSUMES
121 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64 ## CONSUMES
122 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize ## CONSUMES
123 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize ## CONSUMES
124 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVolatileVariableSize ## CONSUMES
125 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize ## CONSUMES
126 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize ## CONSUMES
127 gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize ## CONSUMES
128 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxUserNvVariableSpaceSize ## CONSUMES
129 gEfiMdeModulePkgTokenSpaceGuid.PcdBoottimeReservedNvVariableSpaceSize ## CONSUMES
130 gEfiMdeModulePkgTokenSpaceGuid.PcdReclaimVariableSpaceAtEndOfDxe ## CONSUMES
131 gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvModeEnable ## SOMETIMES_CONSUMES
132 gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved ## SOMETIMES_CONSUMES
133
134 [FeaturePcd]
135 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics ## CONSUMES # statistic the information of variable.
136 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDeprecate ## CONSUMES # Auto update PlatformLang/Lang
137
138 [Depex]
139 TRUE