TianoCore EDK2 master
|
#include <PiMm.h>
#include <Library/MmServicesTableLib.h>
#include <Library/BaseLib.h>
#include <Protocol/SmmSwapAddressRange.h>
#include "FaultTolerantWrite.h"
#include "FaultTolerantWriteSmmCommon.h"
#include <Protocol/MmEndOfDxe.h>
Go to the source code of this file.
Functions | |
EFI_STATUS | FtwGetFvbByHandle (IN EFI_HANDLE FvBlockHandle, OUT EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL **FvBlock) |
EFI_STATUS | FtwGetSarProtocol (OUT VOID **SarProtocol) |
EFI_STATUS | GetFvbCountAndBuffer (OUT UINTN *NumberHandles, OUT EFI_HANDLE **Buffer) |
EFI_STATUS | GetFvbByAddressAndAttribute (IN EFI_PHYSICAL_ADDRESS Address, IN EFI_FVB_ATTRIBUTES_2 Attributes, OUT EFI_HANDLE *SmmFvbHandle) |
EFI_STATUS EFIAPI | SmmFaultTolerantWriteHandler (IN EFI_HANDLE DispatchHandle, IN CONST VOID *RegisterContext, IN OUT VOID *CommBuffer, IN OUT UINTN *CommBufferSize) |
EFI_STATUS EFIAPI | FvbNotificationEvent (IN CONST EFI_GUID *Protocol, IN VOID *Interface, IN EFI_HANDLE Handle) |
EFI_STATUS EFIAPI | MmEndOfDxeCallback (IN CONST EFI_GUID *Protocol, IN VOID *Interface, IN EFI_HANDLE Handle) |
EFI_STATUS | MmFaultTolerantWriteInitialize (VOID) |
Variables | |
VOID * | mFvbRegistration = NULL |
EFI_FTW_DEVICE * | mFtwDevice = NULL |
BOOLEAN | mEndOfDxe = FALSE |
This is a simple fault tolerant write driver that is intended to use in the SMM environment.
This boot service protocol only provides fault tolerant write capability for block devices. The protocol has internal non-volatile intermediate storage of the data and private information. It should be able to recover automatically from a critical fault, such as power failure.
The implementation uses an FTW (Fault Tolerant Write) Work Space. This work space is a memory copy of the work space on the Working Block, the size of the work space is the FTW_WORK_SPACE_SIZE bytes.
The work space stores each write record as EFI_FTW_RECORD structure. The spare block stores the write buffer before write to the target block.
The write record has three states to specify the different phase of write operation. 1) WRITE_ALLOCATED is that the record is allocated in write space. The information of write operation is stored in write record structure. 2) SPARE_COMPLETED is that the data from write buffer is writed into the spare block as the backup. 3) WRITE_COMPLETED is that the data is copied from the spare block to the target block.
This driver operates the data as the whole size of spare block. It first read the SpareAreaLength data from the target block into the spare memory buffer. Then copy the write buffer data into the spare memory buffer. Then write the spare memory buffer into the spare block. Final copy the data from the spare block to the target block.
To make this drive work well, the following conditions must be satisfied:
Caution: This module requires additional review when modified. This driver need to make sure the CommBuffer is not in the SMRAM range.
Copyright (c) 2010 - 2024, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file FaultTolerantWriteSmm.c.
EFI_STATUS FtwGetFvbByHandle | ( | IN EFI_HANDLE | FvBlockHandle, |
OUT EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL ** | FvBlock | ||
) |
Retrieve the SMM FVB protocol interface by HANDLE.
[in] | FvBlockHandle | The handle of SMM FVB protocol that provides services for reading, writing, and erasing the target block. |
[out] | FvBlock | The interface of SMM FVB protocol |
EFI_SUCCESS | The interface information for the specified protocol was returned. |
EFI_UNSUPPORTED | The device does not support the SMM FVB protocol. |
EFI_INVALID_PARAMETER | FvBlockHandle is not a valid EFI_HANDLE or FvBlock is NULL. |
Definition at line 80 of file FaultTolerantWriteSmm.c.
EFI_STATUS FtwGetSarProtocol | ( | OUT VOID ** | SarProtocol | ) |
Retrieve the SMM Swap Address Range protocol interface.
[out] | SarProtocol | The interface of SMM SAR protocol |
EFI_SUCCESS | The SMM SAR protocol instance was found and returned in SarProtocol. |
EFI_NOT_FOUND | The SMM SAR protocol instance was not found. |
EFI_INVALID_PARAMETER | SarProtocol is NULL. |
Definition at line 106 of file FaultTolerantWriteSmm.c.
EFI_STATUS EFIAPI FvbNotificationEvent | ( | IN CONST EFI_GUID * | Protocol, |
IN VOID * | Interface, | ||
IN EFI_HANDLE | Handle | ||
) |
SMM Firmware Volume Block Protocol notification event handler.
[in] | Protocol | Points to the protocol's unique identifier |
[in] | Interface | Points to the interface instance |
[in] | Handle | The handle on which the interface was installed |
EFI_SUCCESS | SmmEventCallback runs successfully |
Register SMM FTW SMI handler
Definition at line 525 of file FaultTolerantWriteSmm.c.
EFI_STATUS GetFvbByAddressAndAttribute | ( | IN EFI_PHYSICAL_ADDRESS | Address, |
IN EFI_FVB_ATTRIBUTES_2 | Attributes, | ||
OUT EFI_HANDLE * | SmmFvbHandle | ||
) |
Get the handle of the SMM FVB protocol by the FVB base address and attributes.
[in] | Address | The base address of SMM FVB protocol. |
[in] | Attributes | The attributes of the SMM FVB protocol. |
[out] | SmmFvbHandle | The handle of the SMM FVB protocol. |
EFI_SUCCESS | The FVB handle is found. |
EFI_ABORTED | The FVB protocol is not found. |
Definition at line 200 of file FaultTolerantWriteSmm.c.
EFI_STATUS GetFvbCountAndBuffer | ( | OUT UINTN * | NumberHandles, |
OUT EFI_HANDLE ** | Buffer | ||
) |
Function returns an array of handles that support the SMM FVB protocol in a buffer allocated from pool.
[out] | NumberHandles | The number of handles returned in Buffer. |
[out] | Buffer | A pointer to the buffer to return the requested array of handles that support SMM FVB protocol. |
EFI_SUCCESS | The array of handles was returned in Buffer, and the number of handles in Buffer was returned in NumberHandles. |
EFI_NOT_FOUND | No SMM FVB handle was found. |
EFI_OUT_OF_RESOURCES | There is not enough pool memory to store the matching results. |
EFI_INVALID_PARAMETER | NumberHandles is NULL or Buffer is NULL. |
Definition at line 139 of file FaultTolerantWriteSmm.c.
EFI_STATUS EFIAPI MmEndOfDxeCallback | ( | IN CONST EFI_GUID * | Protocol, |
IN VOID * | Interface, | ||
IN EFI_HANDLE | Handle | ||
) |
SMM END_OF_DXE protocol notification event handler.
Protocol | Points to the protocol's unique identifier |
Interface | Points to the interface instance |
Handle | The handle on which the interface was installed |
EFI_SUCCESS | SmmEndOfDxeCallback runs successfully |
Definition at line 593 of file FaultTolerantWriteSmm.c.
EFI_STATUS MmFaultTolerantWriteInitialize | ( | VOID | ) |
Shared entry point of the module
EFI_SUCCESS | The initialization finished successfully. |
EFI_OUT_OF_RESOURCES | Allocate memory error |
EFI_INVALID_PARAMETER | Workspace or Spare block does not exist |
Definition at line 611 of file FaultTolerantWriteSmm.c.
EFI_STATUS EFIAPI SmmFaultTolerantWriteHandler | ( | IN EFI_HANDLE | DispatchHandle, |
IN CONST VOID * | RegisterContext, | ||
IN OUT VOID * | CommBuffer, | ||
IN OUT UINTN * | CommBufferSize | ||
) |
Communication service SMI Handler entry.
This SMI handler provides services for the fault tolerant write wrapper driver.
Caution: This function requires additional review when modified. This driver need to make sure the CommBuffer is not in the SMRAM range. Also in FTW_FUNCTION_GET_LAST_WRITE case, check SmmFtwGetLastWriteHeader->Data + SmmFtwGetLastWriteHeader->PrivateDataSize within communication buffer.
[in] | DispatchHandle | The unique handle assigned to this handler by SmiHandlerRegister(). |
[in] | RegisterContext | Points to an optional handler context which was specified when the handler was registered. |
[in,out] | CommBuffer | A pointer to a collection of data in memory that will be conveyed from a non-SMM environment into an SMM environment. |
[in,out] | CommBufferSize | The size of the CommBuffer. |
EFI_SUCCESS | The interrupt was handled and quiesced. No other handlers should still be called. |
EFI_WARN_INTERRUPT_SOURCE_QUIESCED | The interrupt has been quiesced but other handlers should still be called. |
EFI_WARN_INTERRUPT_SOURCE_PENDING | The interrupt is still pending and other handlers should still be called. |
EFI_INTERRUPT_PENDING | The interrupt could not be quiesced. |
Definition at line 297 of file FaultTolerantWriteSmm.c.
BOOLEAN mEndOfDxe = FALSE |
The flag to indicate whether the platform has left the DXE phase of execution.
Definition at line 65 of file FaultTolerantWriteSmm.c.
EFI_FTW_DEVICE* mFtwDevice = NULL |
Definition at line 60 of file FaultTolerantWriteSmm.c.
VOID* mFvbRegistration = NULL |
Definition at line 59 of file FaultTolerantWriteSmm.c.