2 The EFI_SWAP_ADDRESS_RANGE_PROTOCOL is used to abstract the swap operation of boot block
3 and backup block of FV. This swap is especially needed when updating the boot block of FV. If any
4 power failure happens during the boot block update, the swapped backup block (now the boot block)
5 can boot the machine with the old boot block backed up in it. The swap operation is platform dependent, so
6 other protocols such as FTW (Fault Tolerant Write) should use this protocol instead of handling hardware directly.
8 Copyright (c) 2009, Intel Corporation
9 All rights reserved. This program and the accompanying materials
10 are licensed and made available under the terms and conditions of the BSD License
11 which accompanies this distribution. The full text of the license may be found at
12 http://opensource.org/licenses/bsd-license.php
14 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19 #ifndef _EFI_SWAP_ADDRESS_RANGE_PROTOCOL_H_
20 #define _EFI_SWAP_ADDRESS_RANGE_PROTOCOL_H_
22 #define EFI_SWAP_ADDRESS_RANGE_PROTOCOL_GUID \
24 0x1259f60d, 0xb754, 0x468e, {0xa7, 0x89, 0x4d, 0xb8, 0x5d, 0x55, 0xe8, 0x7e } \
28 // Forward reference for pure ANSI compatability
30 typedef struct _EFI_SWAP_ADDRESS_RANGE_PROTOCOL EFI_SWAP_ADDRESS_RANGE_PROTOCOL
;
32 #define EFI_UNSUPPORT_LOCK 0
33 #define EFI_SOFTWARE_LOCK 1
34 #define EFI_HARDWARE_LOCK 2
36 typedef UINT8 EFI_SWAP_LOCK_CAPABILITY
;
43 This function gets the address range location of
44 boot block and backup block.
46 @param This Indicates the calling context.
47 @param BootBlockBase Base address of current boot block.
48 @param BootBlockSize Size (in bytes) of current boot block.
49 @param BackupBlockBase Base address of current backup block.
50 @param BackupBlockSize Size (in bytes) of current backup block.
52 @retval EFI_SUCCESS The call was successful.
57 (EFIAPI
*EFI_GET_RANGE_LOCATION
) (
58 IN EFI_SWAP_ADDRESS_RANGE_PROTOCOL
*This
,
59 OUT EFI_PHYSICAL_ADDRESS
*BootBlockBase
,
60 OUT UINTN
*BootBlockSize
,
61 OUT EFI_PHYSICAL_ADDRESS
*BackupBlockBase
,
62 OUT UINTN
*BackupBlockSize
66 This service checks if the boot block and backup block has been swapped.
68 @param This Indicates the calling context.
69 @param SwapState True if the boot block and backup block has been swapped.
70 False if the boot block and backup block has not been swapped.
72 @retval EFI_SUCCESS The call was successful.
77 (EFIAPI
*EFI_GET_SWAP_STATE
) (
78 IN EFI_SWAP_ADDRESS_RANGE_PROTOCOL
*This
,
79 OUT BOOLEAN
*SwapState
83 This service swaps the boot block and backup block, or swaps them back.
85 It also acquires and releases software swap lock during operation. The setting of the new swap state
86 is not affected by the old swap state.
88 @param This Indicates the calling context.
89 @param NewSwapState True to swap real boot block and backup block, False to swap them back.
91 @retval EFI_SUCCESS The call was successful.
92 @retval EFI_ABORTED Set swap state error
97 (EFIAPI
*EFI_SET_SWAP_STATE
) (
98 IN EFI_SWAP_ADDRESS_RANGE_PROTOCOL
*This
,
99 IN BOOLEAN NewSwapState
105 This service checks if a Real Time Clock (RTC) power failure happened.
107 If parameter RtcPowerFailed is true after the function returns, RTC power supply failed or was removed.
108 It is recommended to check RTC power status before calling GetSwapState().
110 @param This Indicates the calling context.
111 @param RtcPowerFailed True if the RTC (Real Time Clock) power failed or was removed.
113 @retval EFI_SUCCESS The call was successful.
118 (EFIAPI
*EFI_GET_RTC_POWER_STATUS
) (
119 IN EFI_SWAP_ADDRESS_RANGE_PROTOCOL
*This
,
120 OUT BOOLEAN
*RtcPowerFailed
124 This service returns all lock methods for swap operations that the current platform supports. Could be software lock, hardware lock, or unsupport lock.
125 Note that software and hardware lock methods can be used simultaneously.
127 @param This Indicates the calling context.
128 @param LockCapability Current lock method for swap operation.
130 @retval EFI_SUCCESS The call was successful.
135 (EFIAPI
*EFI_GET_SWAP_LOCK_CAPABILITY
) (
136 IN EFI_SWAP_ADDRESS_RANGE_PROTOCOL
*This
,
137 OUT EFI_SWAP_LOCK_CAPABILITY
*LockCapability
143 This service is used to acquire or release appointed kind of lock for Swap Address Range operation.
145 Note that software and hardware lock mothod can be used simultaneously.
147 @param This Indicates the calling context.
148 @param LockCapability Indicates which lock to acquire or release.
149 @param NewLockState True to acquire lock, False to release lock.
151 @retval EFI_SUCCESS The call was successful.
156 (EFIAPI
*EFI_SET_SWAP_LOCK
) (
157 IN EFI_SWAP_ADDRESS_RANGE_PROTOCOL
*This
,
158 IN EFI_SWAP_LOCK_CAPABILITY LockCapability
,
159 IN BOOLEAN NewLockState
162 struct _EFI_SWAP_ADDRESS_RANGE_PROTOCOL
{
163 EFI_GET_RANGE_LOCATION GetRangeLocation
; // has output parameters for base and length
164 EFI_GET_SWAP_STATE GetSwapState
; // are ranges swapped or not
165 EFI_SET_SWAP_STATE SetSwapState
; // swap or unswap ranges
166 EFI_GET_RTC_POWER_STATUS GetRtcPowerStatus
; // checks RTC battery, or whatever...
167 EFI_GET_SWAP_LOCK_CAPABILITY GetSwapLockCapability
; // Get TOP_SWAP lock capability,
168 EFI_SET_SWAP_LOCK SetSwapLock
; // Set TOP_SWAP lock state
171 extern EFI_GUID gEfiSwapAddressRangeProtocolGuid
;