X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FInclude%2FProtocol%2FFirmwareVolumeBlock.h;h=f24bac6cff8269fd005b0f5990e7b2fd0b63ba95;hb=52437cb7633bc1811c53899c8981364c71246a26;hp=2e852221d4e4eab9cf605b69dd32404140bc88ea;hpb=d1f950002362305fcd4c30f108ef7b76679f5843;p=mirror_edk2.git diff --git a/MdePkg/Include/Protocol/FirmwareVolumeBlock.h b/MdePkg/Include/Protocol/FirmwareVolumeBlock.h index 2e852221d4..f24bac6cff 100644 --- a/MdePkg/Include/Protocol/FirmwareVolumeBlock.h +++ b/MdePkg/Include/Protocol/FirmwareVolumeBlock.h @@ -1,42 +1,47 @@ /** @file This file provides control over block-oriented firmware devices. - Copyright (c) 2006 - 2007, 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 - which accompanies this distribution. The full text of the license may be found at - http://opensource.org/licenses/bsd-license.php +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 that accompanies this distribution. +The full text of the license may be found at +http://opensource.org/licenses/bsd-license.php. - THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - Module Name: FirmwareVolumeBlock.h +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. @par Revision Reference: PI - Version 1.00. + Version 1.0 and 1.2. **/ #ifndef __FIRMWARE_VOLUME_BLOCK_H__ #define __FIRMWARE_VOLUME_BLOCK_H__ - +// +// EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL is defined in PI 1.0 spec and its GUID value +// is later updated to be the same as that of EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL +// defined in PI 1.2 spec. +// #define EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL_GUID \ - { 0xDE28BC59, 0x6228, 0x41BD, 0xBD, {0xF6, 0xA3, 0xB9, 0xAD,0xB5, 0x8D, 0xA1 } } + { 0x8f644fa9, 0xe850, 0x4db1, {0x9c, 0xe2, 0xb, 0x44, 0x69, 0x8e, 0x8d, 0xa4 } } +#define EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL_GUID \ + { 0x8f644fa9, 0xe850, 0x4db1, {0x9c, 0xe2, 0xb, 0x44, 0x69, 0x8e, 0x8d, 0xa4 } } typedef struct _EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL; +typedef EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL; + /** The GetAttributes() function retrieves the attributes and - current settings of the block. Status Codes Returned + current settings of the block. - @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL - instance. + @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance. - @param Attributes Pointer to EFI_FVB_ATTRIBUTES in which the + @param Attributes Pointer to EFI_FVB_ATTRIBUTES_2 in which the attributes and current settings are - returned. Type EFI_FVB_ATTRIBUTES is defined + returned. Type EFI_FVB_ATTRIBUTES_2 is defined in EFI_FIRMWARE_VOLUME_HEADER. @retval EFI_SUCCESS The firmware volume attributes were @@ -45,9 +50,9 @@ typedef struct _EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL EFI_FIRMWARE_VOLUME_BLOCK_PRO **/ typedef EFI_STATUS -(EFIAPI * EFI_FVB_GET_ATTRIBUTES) ( - IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - OUT EFI_FVB_ATTRIBUTES *Attributes +(EFIAPI * EFI_FVB_GET_ATTRIBUTES)( + IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, + OUT EFI_FVB_ATTRIBUTES_2 *Attributes ); @@ -55,20 +60,17 @@ EFI_STATUS The SetAttributes() function sets configurable firmware volume attributes and returns the new settings of the firmware volume. - @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL - instance. + @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance. @param Attributes On input, Attributes is a pointer to - EFI_FVB_ATTRIBUTES that contains the + EFI_FVB_ATTRIBUTES_2 that contains the desired firmware volume settings. On successful return, it contains the new settings of the firmware volume. Type - EFI_FVB_ATTRIBUTES is defined in + EFI_FVB_ATTRIBUTES_2 is defined in EFI_FIRMWARE_VOLUME_HEADER. - - @retval EFI_SUCCESS The firmware volume attributes were - returned. + @retval EFI_SUCCESS The firmware volume attributes were returned. @retval EFI_INVALID_PARAMETER The attributes requested are in conflict with the capabilities @@ -78,9 +80,9 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI * EFI_FVB_SET_ATTRIBUTES) ( - IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - IN OUT EFI_FVB_ATTRIBUTES *Attributes +(EFIAPI * EFI_FVB_SET_ATTRIBUTES)( + IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, + IN OUT EFI_FVB_ATTRIBUTES_2 *Attributes ); @@ -89,28 +91,22 @@ EFI_STATUS a memory-mapped firmware volume. This function should be called only for memory-mapped firmware volumes. - @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL - nstance. - + @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance. + @param Address Pointer to a caller-allocated EFI_PHYSICAL_ADDRESS that, on successful return from GetPhysicalAddress(), contains the - base address of the firmware volume. Type - EFI_PHYSICAL_ADDRESS is defined in - AllocatePages() in the UEFI 2.0 specification. - - @retval EFI_SUCCESS The firmware volume base address is - returned. - - @retval EFI_NOT_SUPPORTED The firmware volume is not memory - mapped. + base address of the firmware volume. + @retval EFI_SUCCESS The firmware volume base address was returned. + + @retval EFI_UNSUPPORTED The firmware volume is not memory mapped. **/ typedef EFI_STATUS -(EFIAPI * EFI_FVB_GET_PHYSICAL_ADDRESS) ( - IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, +(EFIAPI * EFI_FVB_GET_PHYSICAL_ADDRESS)( + IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, OUT EFI_PHYSICAL_ADDRESS *Address ); @@ -121,15 +117,12 @@ EFI_STATUS retrieve the block map (see EFI_FIRMWARE_VOLUME_HEADER). - @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL - instance. + @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance. - @param Lba Indicates the block for which to return the size. - Type EFI_LBA is defined in the BLOCK_IO Protocol - (section 11.6) in the UEFI 2.0 specification. + @param Lba Indicates the block for which to return the size. - @param BlockSize Pointer to a caller-allocated UINTN in which - the size of the block is returned. + @param BlockSize Pointer to a caller-allocated UINTN in which + the size of the block is returned. @param NumberOfBlocks Pointer to a caller-allocated UINTN in which the number of consecutive blocks, @@ -137,25 +130,25 @@ EFI_STATUS blocks in this range have a size of BlockSize. - - @retval EFI_SUCCESS The firmware volume base address is - returned. - - @retval EFI_INVALID_PARAMETER The requested LBA is out of - range. + + @retval EFI_SUCCESS The firmware volume base address was returned. + + @retval EFI_INVALID_PARAMETER The requested LBA is out of range. **/ typedef EFI_STATUS -(EFIAPI * EFI_FVB_GET_BLOCK_SIZE) ( - IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - IN CONST EFI_LBA Lba, +(EFIAPI * EFI_FVB_GET_BLOCK_SIZE)( + IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, + IN EFI_LBA Lba, OUT UINTN *BlockSize, OUT UINTN *NumberOfBlocks ); /** + Reads the specified number of bytes into a buffer from the specified block. + The Read() function reads the requested number of bytes from the requested block and stores them in the provided buffer. Implementations should be mindful that the firmware volume @@ -169,13 +162,12 @@ EFI_STATUS indicate the number of bytes actually read. The caller must be aware that a read may be partially completed. - @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL - instance. Lba The starting logical block index - from which to read. Type EFI_LBA is defined in the - BLOCK_IO Protocol (section 11.6) in the UEFI 2.0 - specification. + @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance. - @param Offset Offset into the block at which to begin reading. + @param Lba The starting logical block index + from which to read. + + @param Offset Offset into the block at which to begin reading. @param NumBytes Pointer to a UINTN. At entry, *NumBytes contains the total size of the buffer. At @@ -185,17 +177,17 @@ EFI_STATUS @param Buffer Pointer to a caller-allocated buffer that will be used to hold the data that is read. - @retval EFI_SUCCESS The firmware volume was read successfully - and contents are in Buffer. - + @retval EFI_SUCCESS The firmware volume was read successfully, + and contents are in Buffer. + @retval EFI_BAD_BUFFER_SIZE Read attempted across an LBA boundary. On output, NumBytes contains the total number of bytes returned in Buffer. - + @retval EFI_ACCESS_DENIED The firmware volume is in the ReadDisabled state. - + @retval EFI_DEVICE_ERROR The block device is not functioning correctly and could not be read. @@ -203,17 +195,17 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_FVB_READ) ( - IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - IN CONST EFI_LBA Lba, - IN CONST UINTN Offset, +(EFIAPI *EFI_FVB_READ)( + IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, + IN EFI_LBA Lba, + IN UINTN Offset, IN OUT UINTN *NumBytes, - OUT UINT8 *Buffer + IN OUT UINT8 *Buffer ); - - /** + Writes the specified number of bytes from the input buffer to the block. + The Write() function writes the specified number of bytes from the provided buffer to the specified block and offset. If the firmware volume is sticky write, the caller must ensure that @@ -222,9 +214,9 @@ EFI_STATUS function, or else the result will be unpredictable. This unpredictability arises because, for a sticky-write firmware volume, a write may negate a bit in the EFI_FVB_ERASE_POLARITY - state but it cannot flip it back again. In general, before - calling the Write() function, the caller should call the - EraseBlocks() function first to erase the specified block to + state but cannot flip it back again. Before calling the + Write() function, it is recommended for the caller to first call + the EraseBlocks() function to erase the specified block to write. A block erase cycle will transition bits from the (NOT)EFI_FVB_ERASE_POLARITY state back to the EFI_FVB_ERASE_POLARITY state. Implementations should be @@ -241,34 +233,30 @@ EFI_STATUS fully flushed to the hardware before the Write() service returns. - @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL - instance. - - @param Lba The starting logical block index to write to. Type - EFI_LBA is defined in the BLOCK_IO Protocol - (section 11.6) in the UEFI 2.0 specification. - Offset Offset into the block at which to begin - writing. - - @param NumBytes Pointer to a UINTN. At entry, *NumBytes + @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance. + + @param Lba The starting logical block index to write to. + + @param Offset Offset into the block at which to begin writing. + + @param NumBytes The pointer to a UINTN. At entry, *NumBytes contains the total size of the buffer. At exit, *NumBytes contains the total number of bytes actually written. - - @param Buffer Pointer to a caller-allocated buffer that - contains the source for the write. - - @retval EFI_SUCCESS The firmware volume was written - successfully. - + + @param Buffer The pointer to a caller-allocated buffer that + contains the source for the write. + + @retval EFI_SUCCESS The firmware volume was written successfully. + @retval EFI_BAD_BUFFER_SIZE The write was attempted across an LBA boundary. On output, NumBytes contains the total number of bytes actually written. - + @retval EFI_ACCESS_DENIED The firmware volume is in the WriteDisabled state. - + @retval EFI_DEVICE_ERROR The block device is malfunctioning and could not be written. @@ -276,24 +264,26 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI * EFI_FVB_WRITE) ( - IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, - IN CONST EFI_LBA Lba, - IN CONST UINTN Offset, +(EFIAPI * EFI_FVB_WRITE)( + IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, + IN EFI_LBA Lba, + IN UINTN Offset, IN OUT UINTN *NumBytes, - IN CONST UINT8 *Buffer + IN UINT8 *Buffer ); -// -// EFI_LBA_LIST_TERMINATOR -// +/// +/// EFI_LBA_LIST_TERMINATOR +/// #define EFI_LBA_LIST_TERMINATOR 0xFFFFFFFFFFFFFFFFULL /** + Erases and initializes a firmware volume block. + The EraseBlocks() function erases one or more blocks as denoted by the variable argument list. The entire parameter list of blocks must be verified before erasing any blocks. If a block is @@ -309,7 +299,7 @@ EFI_STATUS flushed to the hardware before the EraseBlocks() service returns. - @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL + @param This Indicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance. @param ... The variable argument list is a list of tuples. @@ -317,7 +307,7 @@ EFI_STATUS and consists of the following: - An EFI_LBA that indicates the starting LBA - A UINTN that indicates the number of blocks to - erase + erase. The list is terminated with an EFI_LBA_LIST_TERMINATOR. For example, the @@ -325,9 +315,9 @@ EFI_STATUS (5-7 and 10-11) are to be erased: EraseBlocks (This, 5, 3, 10, 2, EFI_LBA_LIST_TERMINATOR); - @retval EFI_SUCCESS The erase request was successfully + @retval EFI_SUCCESS The erase request successfully completed. - + @retval EFI_ACCESS_DENIED The firmware volume is in the WriteDisabled state. @retval EFI_DEVICE_ERROR The block device is not functioning @@ -336,81 +326,26 @@ EFI_STATUS partially erased. @retval EFI_INVALID_PARAMETER One or more of the LBAs listed in the variable argument list do - not exist in the firmware volume. + not exist in the firmware volume. **/ typedef EFI_STATUS -(EFIAPI * EFI_FVB_ERASE_BLOCKS) ( - IN CONST EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *This, +(EFIAPI * EFI_FVB_ERASE_BLOCKS)( + IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, ... ); - - -/** - The Firmware Volume Block Protocol is the low-level interface - to a firmware volume. File-level access to a firmware volume - should not be done using the Firmware Volume Block Protocol. - Normal access to a firmware volume must use the Firmware - Volume Protocol. Typically, only the file system driver that - produces the Firmware Volume Protocol will bind to the - Firmware Volume Block Protocol. The Firmware Volume Block - Protocol provides the following: - - Byte-level read/write functionality. - - Block-level erase functionality. - - It further exposes device-hardening features, such as may be - equired to protect the firmware from unwanted overwriting - and/or erasure. - - It is useful to layer a file system driver on top of the - Firmware Volume Block Protocol. - - This file system driver produces the Firmware Volume Protocol, - which provides file-level access to a firmware volume. The - Firmware Volume Protocol abstracts the file system that is - used to format the firmware volume and the hardware - device-hardening features that may be present. - - - @param GetPhysicalAddress Retrieves the memory-mapped - address of the firmware volume. - See the GetPhysicalAddress() - function description. - - @param GetBlockSize Retrieves the size for a specific block. - Also returns the number of consecutive - similarly sized blocks. See the - GetBlockSize() function description. - - @param Read Reads n bytes into a buffer from the firmware - volume hardware. See the Read() function - description. - - @param Write Writes n bytes from a buffer into the firmware - volume hardware. See the Write() function - description. - - @param EraseBlocks Erases specified block(s) and sets all - values as indicated by the - EFI_FVB_ERASE_POLARITY bit. See the - EraseBlocks() function description. Type - EFI_FVB_ERASE_POLARITY is defined in - EFI_FIRMWARE_VOLUME_HEADER. ParentHandle - Handle of the parent firmware volume. Type - EFI_HANDLE is defined in - InstallProtocolInterface() in the UEFI 2.0 - specification. - - @param GetAttributes Retrieves the current volume attributes. - See the GetAttributes() function - description. - - @param SetAttributes Sets the current volume attributes. See - the SetAttributes() function description. - - -**/ -struct _EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL { +/// +/// The Firmware Volume Block Protocol is the low-level interface +/// to a firmware volume. File-level access to a firmware volume +/// should not be done using the Firmware Volume Block Protocol. +/// Normal access to a firmware volume must use the Firmware +/// Volume Protocol. Typically, only the file system driver that +/// produces the Firmware Volume Protocol will bind to the +/// Firmware Volume Block Protocol. +/// +struct _EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL{ EFI_FVB_GET_ATTRIBUTES GetAttributes; EFI_FVB_SET_ATTRIBUTES SetAttributes; EFI_FVB_GET_PHYSICAL_ADDRESS GetPhysicalAddress; @@ -418,11 +353,14 @@ struct _EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL { EFI_FVB_READ Read; EFI_FVB_WRITE Write; EFI_FVB_ERASE_BLOCKS EraseBlocks; + /// + /// The handle of the parent firmware volume. + /// EFI_HANDLE ParentHandle; }; extern EFI_GUID gEfiFirmwareVolumeBlockProtocolGuid; - +extern EFI_GUID gEfiFirmwareVolumeBlock2ProtocolGuid; #endif