]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
f4576447db20d4c1a6cd4e12f23833080c7c5d85
[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 - 2013, 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 ReportStatusCodeLib
51
52 [Guids]
53 gEdkiiWorkingBlockSignatureGuid ## CONSUMES ## FV Signature of Working Space Header
54
55 [Protocols]
56 gEfiSwapAddressRangeProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdFullFtwServiceEnable ## CONSUMES
57 gEfiFirmwareVolumeBlockProtocolGuid ## CONSUMES
58 gEfiFaultTolerantWriteProtocolGuid ## PRODUCES
59
60 [FeaturePcd]
61 gEfiMdeModulePkgTokenSpaceGuid.PcdFullFtwServiceEnable
62
63 [Pcd]
64 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase
65 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64
66 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
67 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase
68 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64
69 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
70
71 [Depex]
72 gEfiFirmwareVolumeBlockProtocolGuid
73