]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmm.inf
MdeModulePkg/SmmLockBox: Update to consume SpeculationBarrier
[mirror_edk2.git] / MdeModulePkg / Universal / Variable / RuntimeDxe / VariableSmm.inf
CommitLineData
4b738c76 1## @file\r
fa0737a8
SZ
2# Provides SMM variable service.\r
3#\r
4b738c76 4# This module installs SMM variable protocol into SMM protocol database,\r
fa0737a8 5# which can be used by SMM driver, and installs SMM variable protocol\r
4b738c76
HT
6# into BS protocol database, which can be used to notify the SMM Runtime\r
7# Dxe driver that the SMM variable service is ready.\r
fa0737a8
SZ
8# This module should be used with SMM Runtime DXE module together. The\r
9# SMM Runtime DXE module would install variable arch protocol and variable\r
4b738c76
HT
10# write arch protocol based on SMM variable module.\r
11#\r
12# Caution: This module requires additional review when modified.\r
13# This driver will have external input - variable data and communicate buffer in SMM mode.\r
fa0737a8
SZ
14# This external input must be validated carefully to avoid security issues such as\r
15# buffer overflow or integer overflow.\r
16# The whole SMM authentication variable design relies on the integrity of flash part and SMM.\r
17# which is assumed to be protected by platform. All variable code and metadata in flash/SMM Memory\r
18# may not be modified without authorization. If platform fails to protect these resources,\r
19# the authentication service provided in this driver will be broken, and the behavior is undefined.\r
4b738c76 20#\r
2f6aa774 21# Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.<BR>\r
4b738c76
HT
22# This program and the accompanying materials\r
23# are licensed and made available under the terms and conditions of the BSD License\r
24# which accompanies this distribution. The full text of the license may be found at\r
25# http://opensource.org/licenses/bsd-license.php\r
26# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
27# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
28#\r
4b738c76
HT
29##\r
30\r
31[Defines]\r
32 INF_VERSION = 0x00010005\r
33 BASE_NAME = VariableSmm\r
6036e94d 34 MODULE_UNI_FILE = VariableSmm.uni\r
4b738c76
HT
35 FILE_GUID = 23A089B3-EED5-4ac5-B2AB-43E3298C2343\r
36 MODULE_TYPE = DXE_SMM_DRIVER\r
37 VERSION_STRING = 1.0\r
38 PI_SPECIFICATION_VERSION = 0x0001000A\r
39 ENTRY_POINT = VariableServiceInitialize\r
40\r
41#\r
42# The following information is for reference only and not required by the build tools.\r
43#\r
44# VALID_ARCHITECTURES = IA32 X64\r
45#\r
46\r
47\r
48[Sources]\r
49 Reclaim.c\r
50 Variable.c\r
51 VariableSmm.c\r
efb01a10 52 VarCheck.c\r
4b738c76 53 Variable.h\r
00663d04 54 PrivilegePolymorphic.h\r
fa0737a8 55 VariableExLib.c\r
2f6aa774 56 TcgMorLockSmm.c\r
e83d841f 57 LoadFenceSmm.c\r
4b738c76
HT
58\r
59[Packages]\r
60 MdePkg/MdePkg.dec\r
61 MdeModulePkg/MdeModulePkg.dec\r
62\r
63[LibraryClasses]\r
64 UefiDriverEntryPoint\r
65 MemoryAllocationLib\r
66 BaseLib\r
67 SynchronizationLib\r
68 UefiLib\r
69 SmmServicesTableLib\r
70 BaseMemoryLib\r
71 DebugLib\r
72 DxeServicesTableLib\r
73 HobLib\r
74 PcdLib\r
842b1242 75 SmmMemLib\r
fa0737a8 76 AuthVariableLib\r
8021f4c7 77 VarCheckLib\r
fda8f631 78 UefiBootServicesTableLib\r
4b738c76
HT
79\r
80[Protocols]\r
6036e94d
SZ
81 gEfiSmmFirmwareVolumeBlockProtocolGuid ## CONSUMES\r
82 ## CONSUMES\r
83 ## NOTIFY\r
84 gEfiSmmFaultTolerantWriteProtocolGuid\r
85 ## PRODUCES\r
86 ## UNDEFINED # SmiHandlerRegister\r
87 gEfiSmmVariableProtocolGuid\r
efb01a10
SZ
88 gEfiSmmEndOfDxeProtocolGuid ## NOTIFY\r
89 gEdkiiSmmVarCheckProtocolGuid ## PRODUCES\r
fda8f631
LE
90 gEfiTcgProtocolGuid ## SOMETIMES_CONSUMES\r
91 gEfiTcg2ProtocolGuid ## SOMETIMES_CONSUMES\r
4b738c76
HT
92\r
93[Guids]\r
8d878f84
LG
94 ## SOMETIMES_CONSUMES ## GUID # Signature of Variable store header\r
95 ## SOMETIMES_PRODUCES ## GUID # Signature of Variable store header\r
6036e94d 96 ## SOMETIMES_CONSUMES ## HOB\r
fa0737a8
SZ
97 ## SOMETIMES_PRODUCES ## SystemTable\r
98 gEfiAuthenticatedVariableGuid\r
99\r
8d878f84
LG
100 ## SOMETIMES_CONSUMES ## GUID # Signature of Variable store header\r
101 ## SOMETIMES_PRODUCES ## GUID # Signature of Variable store header\r
fa0737a8
SZ
102 ## SOMETIMES_CONSUMES ## HOB\r
103 ## SOMETIMES_PRODUCES ## SystemTable\r
6036e94d 104 gEfiVariableGuid\r
fa0737a8 105\r
6036e94d
SZ
106 ## SOMETIMES_CONSUMES ## Variable:L"PlatformLang"\r
107 ## SOMETIMES_PRODUCES ## Variable:L"PlatformLang"\r
108 ## SOMETIMES_CONSUMES ## Variable:L"Lang"\r
109 ## SOMETIMES_PRODUCES ## Variable:L"Lang"\r
6036e94d 110 gEfiGlobalVariableGuid\r
fa0737a8 111\r
8d878f84
LG
112 gEfiMemoryOverwriteControlDataGuid ## SOMETIMES_CONSUMES ## Variable:L"MemoryOverwriteRequestControl"\r
113 gEfiMemoryOverwriteRequestControlLockGuid ## SOMETIMES_PRODUCES ## Variable:L"MemoryOverwriteRequestControlLock"\r
2f6aa774 114\r
fa0737a8 115 gSmmVariableWriteGuid ## PRODUCES ## GUID # Install protocol\r
6036e94d 116 gEfiSystemNvDataFvGuid ## CONSUMES ## GUID\r
fa0737a8 117 gEdkiiFaultTolerantWriteGuid ## SOMETIMES_CONSUMES ## HOB\r
8d878f84
LG
118\r
119 ## SOMETIMES_CONSUMES ## Variable:L"VarErrorFlag"\r
120 ## SOMETIMES_PRODUCES ## Variable:L"VarErrorFlag"\r
121 gEdkiiVarErrorFlagGuid\r
4b738c76
HT
122\r
123[Pcd]\r
fa0737a8
SZ
124 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize ## CONSUMES\r
125 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase ## SOMETIMES_CONSUMES\r
126 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64 ## CONSUMES\r
127 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize ## CONSUMES\r
128 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize ## CONSUMES\r
9b4a2032 129 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVolatileVariableSize ## CONSUMES\r
fa0737a8
SZ
130 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize ## CONSUMES\r
131 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize ## CONSUMES\r
132 gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize ## CONSUMES\r
4edb1866
SZ
133 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxUserNvVariableSpaceSize ## CONSUMES\r
134 gEfiMdeModulePkgTokenSpaceGuid.PcdBoottimeReservedNvVariableSpaceSize ## CONSUMES\r
fa0737a8 135 gEfiMdeModulePkgTokenSpaceGuid.PcdReclaimVariableSpaceAtEndOfDxe ## CONSUMES\r
0fb5e515 136\r
4b738c76 137[FeaturePcd]\r
fa0737a8
SZ
138 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics ## CONSUMES # statistic the information of variable.\r
139 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDeprecate ## CONSUMES # Auto update PlatformLang/Lang\r
4b738c76
HT
140\r
141[Depex]\r
142 TRUE\r
143\r
6036e94d
SZ
144[UserExtensions.TianoCore."ExtraFiles"]\r
145 VariableSmmExtra.uni\r