]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmm.inf
Fix up the UnixPkg to work with clang on OS X. XCLANG toolchain configuration has...
[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
7# Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>\r
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
39\r
40[Packages]\r
41 MdePkg/MdePkg.dec\r
42 MdeModulePkg/MdeModulePkg.dec\r
43\r
44[LibraryClasses]\r
45 SmmServicesTableLib\r
46 MemoryAllocationLib\r
47 BaseMemoryLib\r
48 UefiDriverEntryPoint\r
49 DebugLib\r
50 UefiLib\r
51\r
52[Guids]\r
53 gEfiSystemNvDataFvGuid ## CONSUMES ## FV Signature of Working Space Header\r
54\r
55[Protocols]\r
56 gEfiSmmSwapAddressRangeProtocolGuid | PcdFullFtwServiceEnable ## CONSUMES\r
57 gEfiSmmFirmwareVolumeBlockProtocolGuid ## CONSUMES\r
58 gEfiSmmFaultTolerantWriteProtocolGuid ## PRODUCES\r
59\r
60[FeaturePcd]\r
61 gEfiMdeModulePkgTokenSpaceGuid.PcdFullFtwServiceEnable\r
62\r
63[Pcd]\r
64 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase\r
65 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64\r
66 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize\r
67 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase\r
68 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64\r
69 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize\r
70\r
71[Depex]\r
72 gEfiSmmFirmwareVolumeBlockProtocolGuid\r
73\r