X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdeModulePkg%2FUniversal%2FFaultTolerantWriteDxe%2FFaultTolerantWriteDxe.inf;h=30a765c807c2bf275adc659c166ad60e5500b995;hp=137695916387695b57e336eca190e0cbdf3011e8;hb=d1102dba7210b95e41d06c2338a22ba6af248645;hpb=92a4f6f3c7898c4d4bc54cdd0fa6734b1a352269 diff --git a/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf b/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf index 1376959163..30a765c807 100644 --- a/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf +++ b/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf @@ -1,9 +1,11 @@ ## @file -# This driver installs Fault Tolerant Write (FTW) protocol, +# Fault Tolerant Write Dxe Driver. +# +# This driver installs Fault Tolerant Write (FTW) protocol, # which provides fault tolerant write capability for block devices. # Its implementation depends on the full functionality FVB protocol that support read, write/erase flash access. # -# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -17,10 +19,11 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = FaultTolerantWriteDxe + MODULE_UNI_FILE = FaultTolerantWriteDxe.uni FILE_GUID = FE5CEA76-4F72-49e8-986F-2CD899DFFE5D MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 - ENTRY_POINT = InitializeFaultTolerantWrite + ENTRY_POINT = FaultTolerantWriteInitialize # # The following information is for reference only and not required by the build tools. @@ -32,6 +35,7 @@ FtwMisc.c UpdateWorkingBlock.c FaultTolerantWrite.c + FaultTolerantWriteDxe.c FaultTolerantWrite.h [Packages] @@ -45,26 +49,43 @@ UefiDriverEntryPoint DebugLib UefiLib + PcdLib + ReportStatusCodeLib [Guids] - gEfiSystemNvDataFvGuid ## CONSUMES ## FV Signature of Working Space Header + # + # Signature in EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER + # + ## CONSUMES ## GUID + ## PRODUCES ## GUID + gEdkiiWorkingBlockSignatureGuid [Protocols] - gEfiSwapAddressRangeProtocolGuid | PcdFullFtwServiceEnable ## CONSUMES - gEfiFirmwareVolumeBlockProtocolGuid ## CONSUMES + gEfiSwapAddressRangeProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdFullFtwServiceEnable ## SOMETIMES_CONSUMES + ## NOTIFY + ## CONSUMES + gEfiFirmwareVolumeBlockProtocolGuid gEfiFaultTolerantWriteProtocolGuid ## PRODUCES [FeaturePcd] - gEfiMdeModulePkgTokenSpaceGuid.PcdFullFtwServiceEnable + gEfiMdeModulePkgTokenSpaceGuid.PcdFullFtwServiceEnable ## CONSUMES [Pcd] - gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase - gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64 - gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize - gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase - gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64 - gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize + gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase ## SOMETIMES_CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64 ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase ## SOMETIMES_CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64 ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize ## CONSUMES +# +# gBS->CalculateCrc32() is consumed in EntryPoint. +# PI spec said: When the DXE Foundation is notified that the EFI_RUNTIME_ARCH_PROTOCOL +# has been installed, then the Boot Service CalculateCrc32() is available. +# So add gEfiRuntimeArchProtocolGuid Depex here. +# [Depex] - gEfiFirmwareVolumeBlockProtocolGuid + gEfiFirmwareVolumeBlockProtocolGuid AND gEfiRuntimeArchProtocolGuid +[UserExtensions.TianoCore."ExtraFiles"] + FaultTolerantWriteDxeExtra.uni