]> git.proxmox.com Git - mirror_edk2.git/blame - SecurityPkg/VariableAuthenticated/RuntimeDxe/VariableSmm.inf
Update common authenticated variable (non PK/KEK/DB/DBX) support to comply with lates...
[mirror_edk2.git] / SecurityPkg / VariableAuthenticated / RuntimeDxe / VariableSmm.inf
CommitLineData
0c18794e 1## @file\r
2# Component description file for SMM Authenticated Variable module.\r
3#\r
4# This module installs SMM variable protocol into SMM protocol database,\r
2d3fb919 5# which can be used by SMM driver, and installs SMM variable protocol\r
0c18794e 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
2d3fb919 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
0c18794e 10# write arch protocol based on SMM variable module.\r
11#\r
ecc722ad 12# Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>\r
0c18794e 13# This program and the accompanying materials\r
14# are licensed and made available under the terms and conditions of the BSD License\r
15# which accompanies this distribution. The full text of the license may be found at\r
16# http://opensource.org/licenses/bsd-license.php\r
17# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
18# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
19#\r
20##\r
21\r
22[Defines]\r
23 INF_VERSION = 0x00010005\r
24 BASE_NAME = VariableSmm\r
25 FILE_GUID = D34BDC5E-968A-40f5-A48C-E594F45AE211\r
26 MODULE_TYPE = DXE_SMM_DRIVER\r
27 VERSION_STRING = 1.0\r
28 PI_SPECIFICATION_VERSION = 0x0001000A\r
29 ENTRY_POINT = VariableServiceInitialize\r
30\r
31#\r
32# The following information is for reference only and not required by the build tools.\r
33#\r
34# VALID_ARCHITECTURES = IA32 X64\r
35#\r
36\r
37\r
38[Sources]\r
39 Reclaim.c\r
40 Variable.c\r
41 VariableSmm.c\r
42 AuthService.c\r
43 Variable.h\r
44 AuthService.h\r
45\r
46[Packages]\r
47 MdePkg/MdePkg.dec\r
48 MdeModulePkg/MdeModulePkg.dec\r
49 CryptoPkg/CryptoPkg.dec\r
50 SecurityPkg/SecurityPkg.dec\r
51\r
52[LibraryClasses]\r
53 UefiDriverEntryPoint\r
54 MemoryAllocationLib\r
55 BaseLib\r
56 SynchronizationLib\r
57 UefiLib\r
58 SmmServicesTableLib\r
59 BaseMemoryLib\r
60 DebugLib\r
61 DxeServicesTableLib\r
62 BaseCryptLib\r
2d3fb919 63 PlatformSecureLib\r
9a000b46 64 HobLib\r
0c18794e 65\r
66[Protocols]\r
67 gEfiSmmFirmwareVolumeBlockProtocolGuid ## SOMETIMES_CONSUMES\r
68 gEfiSmmVariableProtocolGuid ## ALWAYS_PRODUCES\r
69 gEfiSmmFaultTolerantWriteProtocolGuid ## SOMETIMES_CONSUMES\r
70\r
71[Guids]\r
2d3fb919 72 gEfiAuthenticatedVariableGuid ## PRODUCES ## Configuration Table Guid\r
0c18794e 73 gEfiGlobalVariableGuid ## PRODUCES ## Variable Guid\r
2d3fb919 74 gSmmVariableWriteGuid ## PRODUCES ## SMM Variable Write Guid\r
85560919 75 gEfiCertTypeRsa2048Sha256Guid\r
0c18794e 76 gEfiImageSecurityDatabaseGuid\r
77 gEfiCertX509Guid\r
78 gEfiCertPkcs7Guid\r
beda2356 79 gEfiCertRsa2048Guid\r
80 gEfiSecureBootEnableDisableGuid\r
ecc722ad 81 gEfiCustomModeEnableGuid\r
4d832aab 82 gEfiSystemNvDataFvGuid ## CONSUMES\r
ed47ae02 83 gEfiCertDbGuid\r
0c18794e 84\r
85[Pcd]\r
86 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize\r
87 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase\r
88 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64\r
89 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize\r
90 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize\r
91 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize\r
92 gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize\r
2d3fb919 93\r
0c18794e 94[FeaturePcd]\r
95 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics ## SOMETIME_CONSUMES (statistic the information of variable.)\r
96\r
97[Depex]\r
2d3fb919 98 TRUE\r
99\r
0c18794e 100\r