]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.c
MdeModulePkg/FaultTolerantWriteDxe: implement standalone MM version
[mirror_edk2.git] / MdeModulePkg / Universal / FaultTolerantWriteDxe / FaultTolerantWriteDxe.c
CommitLineData
8a2d4996 1/** @file\r
2\r
3 This is a simple fault tolerant write driver.\r
4\r
d1102dba
LG
5 This boot service protocol only provides fault tolerant write capability for\r
6 block devices. The protocol has internal non-volatile intermediate storage\r
7 of the data and private information. It should be able to recover\r
8 automatically from a critical fault, such as power failure.\r
8a2d4996 9\r
d1102dba 10 The implementation uses an FTW (Fault Tolerant Write) Work Space.\r
8a2d4996 11 This work space is a memory copy of the work space on the Working Block,\r
12 the size of the work space is the FTW_WORK_SPACE_SIZE bytes.\r
d1102dba 13\r
8a2d4996 14 The work space stores each write record as EFI_FTW_RECORD structure.\r
15 The spare block stores the write buffer before write to the target block.\r
d1102dba 16\r
8a2d4996 17 The write record has three states to specify the different phase of write operation.\r
18 1) WRITE_ALLOCATED is that the record is allocated in write space.\r
19 The information of write operation is stored in write record structure.\r
20 2) SPARE_COMPLETED is that the data from write buffer is writed into the spare block as the backup.\r
21 3) WRITE_COMPLETED is that the data is copied from the spare block to the target block.\r
22\r
23 This driver operates the data as the whole size of spare block.\r
24 It first read the SpareAreaLength data from the target block into the spare memory buffer.\r
25 Then copy the write buffer data into the spare memory buffer.\r
26 Then write the spare memory buffer into the spare block.\r
27 Final copy the data from the spare block to the target block.\r
28\r
29 To make this drive work well, the following conditions must be satisfied:\r
d1102dba 30 1. The write NumBytes data must be fit within Spare area.\r
8a2d4996 31 Offset + NumBytes <= SpareAreaLength\r
32 2. The whole flash range has the same block size.\r
33 3. Working block is an area which contains working space in its last block and has the same size as spare block.\r
d1102dba 34 4. Working Block area must be in the single one Firmware Volume Block range which FVB protocol is produced on.\r
8a2d4996 35 5. Spare area must be in the single one Firmware Volume Block range which FVB protocol is produced on.\r
d1102dba 36 6. Any write data area (SpareAreaLength Area) which the data will be written into must be\r
8a2d4996 37 in the single one Firmware Volume Block range which FVB protocol is produced on.\r
38 7. If write data area (such as Variable range) is enlarged, the spare area range must be enlarged.\r
39 The spare area must be enough large to store the write data before write them into the target range.\r
40 If one of them is not satisfied, FtwWrite may fail.\r
41 Usually, Spare area only takes one block. That's SpareAreaLength = BlockSize, NumberOfSpareBlock = 1.\r
42\r
d1102dba
LG
43Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
44This program and the accompanying materials\r
45are licensed and made available under the terms and conditions of the BSD License\r
46which accompanies this distribution. The full text of the license may be found at\r
47http://opensource.org/licenses/bsd-license.php\r
48\r
49THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
50WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
8a2d4996 51\r
52**/\r
53\r
22cedf5b 54#include <Library/UefiBootServicesTableLib.h>\r
8a2d4996 55#include "FaultTolerantWrite.h"\r
56EFI_EVENT mFvbRegistration = NULL;\r
57\r
58\r
59/**\r
0a18956d 60 Retrieve the FVB protocol interface by HANDLE.\r
8a2d4996 61\r
62 @param[in] FvBlockHandle The handle of FVB protocol that provides services for\r
63 reading, writing, and erasing the target block.\r
64 @param[out] FvBlock The interface of FVB protocol\r
65\r
66 @retval EFI_SUCCESS The interface information for the specified protocol was returned.\r
67 @retval EFI_UNSUPPORTED The device does not support the FVB protocol.\r
68 @retval EFI_INVALID_PARAMETER FvBlockHandle is not a valid EFI_HANDLE or FvBlock is NULL.\r
d1102dba 69\r
8a2d4996 70**/\r
71EFI_STATUS\r
72FtwGetFvbByHandle (\r
73 IN EFI_HANDLE FvBlockHandle,\r
74 OUT EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL **FvBlock\r
75 )\r
76{\r
77 //\r
78 // To get the FVB protocol interface on the handle\r
79 //\r
80 return gBS->HandleProtocol (\r
81 FvBlockHandle,\r
82 &gEfiFirmwareVolumeBlockProtocolGuid,\r
83 (VOID **) FvBlock\r
84 );\r
85}\r
86\r
87/**\r
0a18956d 88 Retrieve the Swap Address Range protocol interface.\r
8a2d4996 89\r
90 @param[out] SarProtocol The interface of SAR protocol\r
91\r
92 @retval EFI_SUCCESS The SAR protocol instance was found and returned in SarProtocol.\r
93 @retval EFI_NOT_FOUND The SAR protocol instance was not found.\r
94 @retval EFI_INVALID_PARAMETER SarProtocol is NULL.\r
95\r
96**/\r
97EFI_STATUS\r
98FtwGetSarProtocol (\r
99 OUT VOID **SarProtocol\r
100 )\r
101{\r
102 EFI_STATUS Status;\r
103\r
104 //\r
105 // Locate Swap Address Range protocol\r
106 //\r
107 Status = gBS->LocateProtocol (\r
d1102dba
LG
108 &gEfiSwapAddressRangeProtocolGuid,\r
109 NULL,\r
8a2d4996 110 SarProtocol\r
111 );\r
112 return Status;\r
113}\r
114\r
115/**\r
116 Function returns an array of handles that support the FVB protocol\r
d1102dba 117 in a buffer allocated from pool.\r
8a2d4996 118\r
119 @param[out] NumberHandles The number of handles returned in Buffer.\r
120 @param[out] Buffer A pointer to the buffer to return the requested\r
121 array of handles that support FVB protocol.\r
122\r
123 @retval EFI_SUCCESS The array of handles was returned in Buffer, and the number of\r
124 handles in Buffer was returned in NumberHandles.\r
125 @retval EFI_NOT_FOUND No FVB handle was found.\r
126 @retval EFI_OUT_OF_RESOURCES There is not enough pool memory to store the matching results.\r
127 @retval EFI_INVALID_PARAMETER NumberHandles is NULL or Buffer is NULL.\r
d1102dba 128\r
8a2d4996 129**/\r
130EFI_STATUS\r
131GetFvbCountAndBuffer (\r
132 OUT UINTN *NumberHandles,\r
133 OUT EFI_HANDLE **Buffer\r
134 )\r
135{\r
136 EFI_STATUS Status;\r
137\r
138 //\r
139 // Locate all handles of Fvb protocol\r
140 //\r
141 Status = gBS->LocateHandleBuffer (\r
142 ByProtocol,\r
143 &gEfiFirmwareVolumeBlockProtocolGuid,\r
144 NULL,\r
145 NumberHandles,\r
146 Buffer\r
147 );\r
148 return Status;\r
149}\r
150\r
151\r
152/**\r
153 Firmware Volume Block Protocol notification event handler.\r
154\r
155 @param[in] Event Event whose notification function is being invoked.\r
156 @param[in] Context Pointer to the notification function's context.\r
157\r
158**/\r
159VOID\r
160EFIAPI\r
161FvbNotificationEvent (\r
162 IN EFI_EVENT Event,\r
163 IN VOID *Context\r
164 )\r
165{\r
166 EFI_STATUS Status;\r
167 EFI_FAULT_TOLERANT_WRITE_PROTOCOL *FtwProtocol;\r
168 EFI_FTW_DEVICE *FtwDevice;\r
169\r
170 //\r
8dc8879a 171 // Just return to avoid installing FaultTolerantWriteProtocol again\r
172 // if Fault Tolerant Write protocol has been installed.\r
d1102dba 173 //\r
8a2d4996 174 Status = gBS->LocateProtocol (\r
d1102dba
LG
175 &gEfiFaultTolerantWriteProtocolGuid,\r
176 NULL,\r
8a2d4996 177 (VOID **) &FtwProtocol\r
178 );\r
179 if (!EFI_ERROR (Status)) {\r
180 return ;\r
181 }\r
182\r
183 //\r
184 // Found proper FVB protocol and initialize FtwDevice for protocol installation\r
185 //\r
186 FtwDevice = (EFI_FTW_DEVICE *)Context;\r
187 Status = InitFtwProtocol (FtwDevice);\r
188 if (EFI_ERROR(Status)) {\r
189 return ;\r
d1102dba
LG
190 }\r
191\r
8a2d4996 192 //\r
193 // Install protocol interface\r
194 //\r
195 Status = gBS->InstallProtocolInterface (\r
196 &FtwDevice->Handle,\r
197 &gEfiFaultTolerantWriteProtocolGuid,\r
198 EFI_NATIVE_INTERFACE,\r
199 &FtwDevice->FtwInstance\r
200 );\r
201 ASSERT_EFI_ERROR (Status);\r
d1102dba 202\r
8a2d4996 203 Status = gBS->CloseEvent (Event);\r
204 ASSERT_EFI_ERROR (Status);\r
d1102dba 205\r
8a2d4996 206 return;\r
207}\r
208\r
209\r
210/**\r
211 This function is the entry point of the Fault Tolerant Write driver.\r
212\r
213 @param[in] ImageHandle A handle for the image that is initializing this driver\r
214 @param[in] SystemTable A pointer to the EFI system table\r
215\r
216 @retval EFI_SUCCESS The initialization finished successfully.\r
217 @retval EFI_OUT_OF_RESOURCES Allocate memory error\r
218 @retval EFI_INVALID_PARAMETER Workspace or Spare block does not exist\r
d1102dba 219\r
8a2d4996 220**/\r
221EFI_STATUS\r
222EFIAPI\r
223FaultTolerantWriteInitialize (\r
224 IN EFI_HANDLE ImageHandle,\r
225 IN EFI_SYSTEM_TABLE *SystemTable\r
226 )\r
227{\r
228 EFI_STATUS Status;\r
229 EFI_FTW_DEVICE *FtwDevice;\r
230\r
4e1005ec
ED
231 FtwDevice = NULL;\r
232\r
8a2d4996 233 //\r
234 // Allocate private data structure for FTW protocol and do some initialization\r
235 //\r
236 Status = InitFtwDevice (&FtwDevice);\r
237 if (EFI_ERROR(Status)) {\r
238 return Status;\r
239 }\r
240\r
241 //\r
242 // Register FvbNotificationEvent () notify function.\r
d1102dba 243 //\r
8a2d4996 244 EfiCreateProtocolNotifyEvent (\r
245 &gEfiFirmwareVolumeBlockProtocolGuid,\r
246 TPL_CALLBACK,\r
247 FvbNotificationEvent,\r
248 (VOID *)FtwDevice,\r
249 &mFvbRegistration\r
250 );\r
d1102dba 251\r
8a2d4996 252 return EFI_SUCCESS;\r
253}\r
22cedf5b
AB
254\r
255/**\r
256 Internal implementation of CRC32. Depending on the execution context\r
257 (traditional SMM or DXE vs standalone MM), this function is implemented\r
258 via a call to the CalculateCrc32 () boot service, or via a library\r
259 call.\r
260\r
261 If Buffer is NULL, then ASSERT().\r
262 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().\r
263\r
264 @param[in] Buffer A pointer to the buffer on which the 32-bit CRC is to be computed.\r
265 @param[in] Length The number of bytes in the buffer Data.\r
266\r
267 @retval Crc32 The 32-bit CRC was computed for the data buffer.\r
268\r
269**/\r
270UINT32\r
271FtwCalculateCrc32 (\r
272 IN VOID *Buffer,\r
273 IN UINTN Length\r
274 )\r
275{\r
276 EFI_STATUS Status;\r
277 UINT32 ReturnValue;\r
278\r
279 Status = gBS->CalculateCrc32 (Buffer, Length, &ReturnValue);\r
280 ASSERT_EFI_ERROR (Status);\r
281\r
282 return ReturnValue;\r
283}\r