]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmm.inf
MdeModulePkg: Variable drivers robustly handle crashes during Reclaim().
[mirror_edk2.git] / MdeModulePkg / Universal / FaultTolerantWriteDxe / FaultTolerantWriteSmm.inf
CommitLineData
8a2d4996 1## @file\r
2# This driver installs SMM Fault Tolerant Write (FTW) protocol, which provides fault \r
3# tolerant write capability in SMM environment for block devices. Its implementation \r
4# depends on the full functionality SMM FVB protocol that support read, write/erase \r
5# flash access.\r
6#\r
f07268bd 7# Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>\r
8a2d4996 8#\r
9# This program and the accompanying materials\r
10# are licensed and made available under the terms and conditions of the BSD License\r
11# which accompanies this distribution. The full text of the license may be found at\r
12# http://opensource.org/licenses/bsd-license.php\r
13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15#\r
16##\r
17\r
18[Defines]\r
19 INF_VERSION = 0x00010005\r
20 BASE_NAME = SmmFaultTolerantWriteDxe\r
21 FILE_GUID = 470CB248-E8AC-473c-BB4F-81069A1FE6FD\r
22 MODULE_TYPE = DXE_SMM_DRIVER\r
23 VERSION_STRING = 1.0\r
24 PI_SPECIFICATION_VERSION = 0x0001000A\r
25 ENTRY_POINT = SmmFaultTolerantWriteInitialize\r
26\r
27#\r
28# The following information is for reference only and not required by the build tools.\r
29#\r
30# VALID_ARCHITECTURES = IA32 X64\r
31#\r
32\r
33[Sources]\r
34 FtwMisc.c\r
35 UpdateWorkingBlock.c\r
36 FaultTolerantWrite.c\r
37 FaultTolerantWriteSmm.c\r
38 FaultTolerantWrite.h\r
3fee5868 39 FaultTolerantWriteSmmCommon.h\r
8a2d4996 40\r
41[Packages]\r
42 MdePkg/MdePkg.dec\r
43 MdeModulePkg/MdeModulePkg.dec\r
44\r
45[LibraryClasses]\r
46 SmmServicesTableLib\r
47 MemoryAllocationLib\r
48 BaseMemoryLib\r
49 UefiDriverEntryPoint\r
50 DebugLib\r
51 UefiLib\r
a326830d 52 PcdLib\r
8a2d4996 53\r
54[Guids]\r
3e02ebb2 55 gEdkiiWorkingBlockSignatureGuid ## CONSUMES ## FV Signature of Working Space Header\r
8a2d4996 56\r
57[Protocols]\r
63971079 58 gEfiSmmSwapAddressRangeProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdFullFtwServiceEnable ## CONSUMES\r
8a2d4996 59 gEfiSmmFirmwareVolumeBlockProtocolGuid ## CONSUMES\r
60 gEfiSmmFaultTolerantWriteProtocolGuid ## PRODUCES\r
c219324c 61 gEfiSmmAccess2ProtocolGuid ## CONSUMES\r
f07268bd 62 gEfiSmmEndOfDxeProtocolGuid ## CONSUMES\r
8a2d4996 63\r
64[FeaturePcd]\r
65 gEfiMdeModulePkgTokenSpaceGuid.PcdFullFtwServiceEnable\r
66\r
67[Pcd]\r
68 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase\r
69 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64\r
70 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize\r
71 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase\r
72 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64\r
73 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize\r
74\r
75[Depex]\r
76 gEfiSmmFirmwareVolumeBlockProtocolGuid\r
77\r