]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmm.inf
MdeModulePkg: Variable drivers robustly handle crashes during Reclaim().
[mirror_edk2.git] / MdeModulePkg / Universal / Variable / RuntimeDxe / VariableSmm.inf
CommitLineData
8a2d4996 1## @file
2# Component description file for SMM Variable module.
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.
8a2d4996 11#
2445a70e 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 issue like
15# buffer overflow, integer overflow.
16#
ff843847 17# Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>
2445a70e 18# This program and the accompanying materials
19# are licensed and made available under the terms and conditions of the BSD License
20# which accompanies this distribution. The full text of the license may be found at
21# http://opensource.org/licenses/bsd-license.php
22# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
23# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
8a2d4996 24#
25#
26##
27
28[Defines]
29 INF_VERSION = 0x00010005
30 BASE_NAME = VariableSmm
31 FILE_GUID = 23A089B3-EED5-4ac5-B2AB-43E3298C2343
32 MODULE_TYPE = DXE_SMM_DRIVER
33 VERSION_STRING = 1.0
34 PI_SPECIFICATION_VERSION = 0x0001000A
35 ENTRY_POINT = VariableServiceInitialize
36
37#
38# The following information is for reference only and not required by the build tools.
39#
40# VALID_ARCHITECTURES = IA32 X64
41#
42
43
44[Sources]
45 Reclaim.c
46 Variable.c
47 VariableSmm.c
48 Variable.h
8a2d4996 49
50[Packages]
51 MdePkg/MdePkg.dec
52 MdeModulePkg/MdeModulePkg.dec
53
54[LibraryClasses]
55 UefiDriverEntryPoint
56 MemoryAllocationLib
57 BaseLib
58 SynchronizationLib
59 UefiLib
8a2d4996 60 SmmServicesTableLib
61 BaseMemoryLib
62 DebugLib
63 DxeServicesTableLib
0f7aff72 64 HobLib
a326830d 65 PcdLib
8a2d4996 66
67[Protocols]
68 gEfiSmmFirmwareVolumeBlockProtocolGuid ## SOMETIMES_CONSUMES
69 gEfiSmmVariableProtocolGuid ## ALWAYS_PRODUCES
70 gEfiSmmFaultTolerantWriteProtocolGuid ## SOMETIMES_CONSUMES
2445a70e 71 gEfiSmmAccess2ProtocolGuid ## ALWAYS_CONSUMES
ff843847 72 gEfiSmmEndOfDxeProtocolGuid ## ALWAYS_CONSUMES
8a2d4996 73
74[Guids]
75 gEfiVariableGuid ## PRODUCES ## Configuration Table Guid
76 gEfiGlobalVariableGuid ## PRODUCES ## Variable Guid
d00ed85e 77 gSmmVariableWriteGuid ## PRODUCES ## SMM Variable Write Guid
222f8505 78 gEfiSystemNvDataFvGuid ## CONSUMES
a5f15e30 79 gEfiHardwareErrorVariableGuid ## SOMETIMES_CONSUMES
3e02ebb2 80 gEdkiiFaultTolerantWriteGuid ## CONSUMES
8a2d4996 81
82[Pcd]
83 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
84 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase
85 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64
86 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize
87 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize
88 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize
89 gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize
90
91[FeaturePcd]
92 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics ## SOMETIME_CONSUMES (statistic the information of variable.)
93
94[Depex]
95 TRUE
96
0f7aff72 97