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