]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
Add SMM Variable implementation.
[mirror_edk2.git] / MdeModulePkg / Universal / FaultTolerantWriteDxe / FaultTolerantWriteDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
85e923a5
LG
2# This driver installs Fault Tolerant Write (FTW) protocol, \r
3# which provides fault tolerant write capability for block devices.\r
4# Its implementation depends on the full functionality FVB protocol that support read, write/erase flash access.\r
5#\r
e5eed7d3 6# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
85e923a5 7#\r
e5eed7d3 8# This program and the accompanying materials\r
85e923a5
LG
9# are licensed and made available under the terms and conditions of the BSD License\r
10# which accompanies this distribution. The full text of the license may be found at\r
11# http://opensource.org/licenses/bsd-license.php\r
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14#\r
6bfbb5f0 15##\r
85e923a5
LG
16\r
17[Defines]\r
18 INF_VERSION = 0x00010005\r
19 BASE_NAME = FaultTolerantWriteDxe\r
20 FILE_GUID = FE5CEA76-4F72-49e8-986F-2CD899DFFE5D\r
21 MODULE_TYPE = DXE_DRIVER\r
22 VERSION_STRING = 1.0\r
8a2d4996 23 ENTRY_POINT = FaultTolerantWriteInitialize\r
85e923a5
LG
24\r
25#\r
26# The following information is for reference only and not required by the build tools.\r
27#\r
28# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
29#\r
30\r
6bfbb5f0 31[Sources]\r
85e923a5
LG
32 FtwMisc.c\r
33 UpdateWorkingBlock.c\r
34 FaultTolerantWrite.c\r
8a2d4996 35 FaultTolerantWriteDxe.c\r
85e923a5
LG
36 FaultTolerantWrite.h\r
37\r
38[Packages]\r
39 MdePkg/MdePkg.dec\r
40 MdeModulePkg/MdeModulePkg.dec\r
41\r
42[LibraryClasses]\r
43 UefiBootServicesTableLib\r
44 MemoryAllocationLib\r
45 BaseMemoryLib\r
46 UefiDriverEntryPoint\r
47 DebugLib\r
93367605 48 UefiLib\r
85e923a5
LG
49\r
50[Guids]\r
51 gEfiSystemNvDataFvGuid ## CONSUMES ## FV Signature of Working Space Header\r
52\r
53[Protocols]\r
54 gEfiSwapAddressRangeProtocolGuid | PcdFullFtwServiceEnable ## CONSUMES\r
55 gEfiFirmwareVolumeBlockProtocolGuid ## CONSUMES\r
56 gEfiFaultTolerantWriteProtocolGuid ## PRODUCES\r
57\r
58[FeaturePcd]\r
59 gEfiMdeModulePkgTokenSpaceGuid.PcdFullFtwServiceEnable\r
60\r
61[Pcd]\r
62 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase\r
92a4f6f3 63 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64\r
85e923a5
LG
64 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize\r
65 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase\r
92a4f6f3 66 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64\r
85e923a5
LG
67 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize\r
68\r
69[Depex]\r
93367605 70 gEfiFirmwareVolumeBlockProtocolGuid\r
85e923a5 71\r