]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/FaultTolerantWriteDxe/FtwMisc.c
MdeModulePkg: Apply uncrustify changes
[mirror_edk2.git] / MdeModulePkg / Universal / FaultTolerantWriteDxe / FtwMisc.c
1 /** @file
2
3 Internal generic functions to operate flash block.
4
5 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #include "FaultTolerantWrite.h"
11
12 /**
13
14 Check whether a flash buffer is erased.
15
16 @param Buffer Buffer to check
17 @param BufferSize Size of the buffer
18
19 @return A BOOLEAN value indicating erased or not.
20
21 **/
22 BOOLEAN
23 IsErasedFlashBuffer (
24 IN UINT8 *Buffer,
25 IN UINTN BufferSize
26 )
27 {
28 BOOLEAN IsEmpty;
29 UINT8 *Ptr;
30 UINTN Index;
31
32 Ptr = Buffer;
33 IsEmpty = TRUE;
34 for (Index = 0; Index < BufferSize; Index += 1) {
35 if (*Ptr++ != FTW_ERASED_BYTE) {
36 IsEmpty = FALSE;
37 break;
38 }
39 }
40
41 return IsEmpty;
42 }
43
44 /**
45 To erase the block with specified blocks.
46
47
48 @param FtwDevice The private data of FTW driver
49 @param FvBlock FVB Protocol interface
50 @param Lba Lba of the firmware block
51 @param NumberOfBlocks The number of consecutive blocks starting with Lba
52
53 @retval EFI_SUCCESS Block LBA is Erased successfully
54 @retval Others Error occurs
55
56 **/
57 EFI_STATUS
58 FtwEraseBlock (
59 IN EFI_FTW_DEVICE *FtwDevice,
60 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvBlock,
61 EFI_LBA Lba,
62 UINTN NumberOfBlocks
63 )
64 {
65 return FvBlock->EraseBlocks (
66 FvBlock,
67 Lba,
68 NumberOfBlocks,
69 EFI_LBA_LIST_TERMINATOR
70 );
71 }
72
73 /**
74 Erase spare block.
75
76 @param FtwDevice The private data of FTW driver
77
78 @retval EFI_SUCCESS The erase request was successfully completed.
79 @retval EFI_ACCESS_DENIED The firmware volume is in the WriteDisabled state.
80 @retval EFI_DEVICE_ERROR The block device is not functioning
81 correctly and could not be written.
82 The firmware device may have been
83 partially erased.
84 @retval EFI_INVALID_PARAMETER One or more of the LBAs listed
85 in the variable argument list do
86 not exist in the firmware volume.
87
88
89 **/
90 EFI_STATUS
91 FtwEraseSpareBlock (
92 IN EFI_FTW_DEVICE *FtwDevice
93 )
94 {
95 return FtwDevice->FtwBackupFvb->EraseBlocks (
96 FtwDevice->FtwBackupFvb,
97 FtwDevice->FtwSpareLba,
98 FtwDevice->NumberOfSpareBlock,
99 EFI_LBA_LIST_TERMINATOR
100 );
101 }
102
103 /**
104
105 Is it in working block?
106
107 @param FtwDevice The private data of FTW driver
108 @param FvBlock Fvb protocol instance
109 @param Lba The block specified
110
111 @return A BOOLEAN value indicating in working block or not.
112
113 **/
114 BOOLEAN
115 IsWorkingBlock (
116 EFI_FTW_DEVICE *FtwDevice,
117 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvBlock,
118 EFI_LBA Lba
119 )
120 {
121 //
122 // If matching the following condition, the target block is in working block.
123 // 1. Target block is on the FV of working block (Using the same FVB protocol instance).
124 // 2. Lba falls into the range of working block.
125 //
126 return (BOOLEAN)
127 (
128 (FvBlock == FtwDevice->FtwFvBlock) &&
129 (Lba >= FtwDevice->FtwWorkBlockLba) &&
130 (Lba <= FtwDevice->FtwWorkSpaceLba)
131 );
132 }
133
134 /**
135
136 Get firmware volume block by address.
137
138
139 @param Address Address specified the block
140 @param FvBlock The block caller wanted
141
142 @retval EFI_SUCCESS The protocol instance if found.
143 @retval EFI_NOT_FOUND Block not found
144
145 **/
146 EFI_HANDLE
147 GetFvbByAddress (
148 IN EFI_PHYSICAL_ADDRESS Address,
149 OUT EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL **FvBlock
150 )
151 {
152 EFI_STATUS Status;
153 EFI_HANDLE *HandleBuffer;
154 UINTN HandleCount;
155 UINTN Index;
156 EFI_PHYSICAL_ADDRESS FvbBaseAddress;
157 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *Fvb;
158 EFI_HANDLE FvbHandle;
159 UINTN BlockSize;
160 UINTN NumberOfBlocks;
161
162 *FvBlock = NULL;
163 FvbHandle = NULL;
164 HandleBuffer = NULL;
165 //
166 // Locate all handles of Fvb protocol
167 //
168 Status = GetFvbCountAndBuffer (&HandleCount, &HandleBuffer);
169 if (EFI_ERROR (Status)) {
170 return NULL;
171 }
172
173 //
174 // Get the FVB to access variable store
175 //
176 for (Index = 0; Index < HandleCount; Index += 1) {
177 Status = FtwGetFvbByHandle (HandleBuffer[Index], &Fvb);
178 if (EFI_ERROR (Status)) {
179 break;
180 }
181
182 //
183 // Compare the address and select the right one
184 //
185 Status = Fvb->GetPhysicalAddress (Fvb, &FvbBaseAddress);
186 if (EFI_ERROR (Status)) {
187 continue;
188 }
189
190 //
191 // Now, one FVB has one type of BlockSize
192 //
193 Status = Fvb->GetBlockSize (Fvb, 0, &BlockSize, &NumberOfBlocks);
194 if (EFI_ERROR (Status)) {
195 continue;
196 }
197
198 if ((Address >= FvbBaseAddress) && (Address < (FvbBaseAddress + BlockSize * NumberOfBlocks))) {
199 *FvBlock = Fvb;
200 FvbHandle = HandleBuffer[Index];
201 break;
202 }
203 }
204
205 FreePool (HandleBuffer);
206 return FvbHandle;
207 }
208
209 /**
210
211 Is it in boot block?
212
213 @param FtwDevice The private data of FTW driver
214 @param FvBlock Fvb protocol instance
215
216 @return A BOOLEAN value indicating in boot block or not.
217
218 **/
219 BOOLEAN
220 IsBootBlock (
221 EFI_FTW_DEVICE *FtwDevice,
222 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvBlock
223 )
224 {
225 EFI_STATUS Status;
226 EFI_SWAP_ADDRESS_RANGE_PROTOCOL *SarProtocol;
227 EFI_PHYSICAL_ADDRESS BootBlockBase;
228 UINTN BootBlockSize;
229 EFI_PHYSICAL_ADDRESS BackupBlockBase;
230 UINTN BackupBlockSize;
231 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *BootFvb;
232 BOOLEAN IsSwapped;
233 EFI_HANDLE FvbHandle;
234
235 if (!FeaturePcdGet (PcdFullFtwServiceEnable)) {
236 return FALSE;
237 }
238
239 Status = FtwGetSarProtocol ((VOID **)&SarProtocol);
240 if (EFI_ERROR (Status)) {
241 return FALSE;
242 }
243
244 //
245 // Get the boot block range
246 //
247 Status = SarProtocol->GetRangeLocation (
248 SarProtocol,
249 &BootBlockBase,
250 &BootBlockSize,
251 &BackupBlockBase,
252 &BackupBlockSize
253 );
254 if (EFI_ERROR (Status)) {
255 return FALSE;
256 }
257
258 Status = SarProtocol->GetSwapState (SarProtocol, &IsSwapped);
259 if (EFI_ERROR (Status)) {
260 return FALSE;
261 }
262
263 //
264 // Get FVB by address
265 //
266 if (!IsSwapped) {
267 FvbHandle = GetFvbByAddress (BootBlockBase, &BootFvb);
268 } else {
269 FvbHandle = GetFvbByAddress (BackupBlockBase, &BootFvb);
270 }
271
272 if (FvbHandle == NULL) {
273 return FALSE;
274 }
275
276 //
277 // Compare the Fvb
278 //
279 return (BOOLEAN)(FvBlock == BootFvb);
280 }
281
282 /**
283 Copy the content of spare block to a boot block. Size is FTW_BLOCK_SIZE.
284 Spare block is accessed by FTW working FVB protocol interface.
285 Target block is accessed by FvBlock protocol interface.
286
287 FTW will do extra work on boot block update.
288 FTW should depend on a protocol of EFI_ADDRESS_RANGE_SWAP_PROTOCOL,
289 which is produced by a chipset driver.
290 FTW updating boot block steps may be:
291 1. GetRangeLocation(), if the Range is inside the boot block, FTW know
292 that boot block will be update. It shall add a FLAG in the working block.
293 2. When spare block is ready,
294 3. SetSwapState(SWAPPED)
295 4. erasing boot block,
296 5. programming boot block until the boot block is ok.
297 6. SetSwapState(UNSWAPPED)
298 FTW shall not allow to update boot block when battery state is error.
299
300 @param FtwDevice The private data of FTW driver
301
302 @retval EFI_SUCCESS Spare block content is copied to boot block
303 @retval EFI_INVALID_PARAMETER Input parameter error
304 @retval EFI_OUT_OF_RESOURCES Allocate memory error
305 @retval EFI_ABORTED The function could not complete successfully
306
307 **/
308 EFI_STATUS
309 FlushSpareBlockToBootBlock (
310 EFI_FTW_DEVICE *FtwDevice
311 )
312 {
313 EFI_STATUS Status;
314 UINTN Length;
315 UINT8 *Buffer;
316 UINTN Count;
317 UINT8 *Ptr;
318 UINTN Index;
319 BOOLEAN TopSwap;
320 EFI_SWAP_ADDRESS_RANGE_PROTOCOL *SarProtocol;
321 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *BootFvb;
322 EFI_LBA BootLba;
323
324 if (!FeaturePcdGet (PcdFullFtwServiceEnable)) {
325 return EFI_UNSUPPORTED;
326 }
327
328 //
329 // Locate swap address range protocol
330 //
331 Status = FtwGetSarProtocol ((VOID **)&SarProtocol);
332 if (EFI_ERROR (Status)) {
333 return Status;
334 }
335
336 //
337 // Allocate a memory buffer
338 //
339 Length = FtwDevice->SpareAreaLength;
340 Buffer = AllocatePool (Length);
341 if (Buffer == NULL) {
342 return EFI_OUT_OF_RESOURCES;
343 }
344
345 //
346 // Get TopSwap bit state
347 //
348 Status = SarProtocol->GetSwapState (SarProtocol, &TopSwap);
349 if (EFI_ERROR (Status)) {
350 DEBUG ((DEBUG_ERROR, "Ftw: Get Top Swapped status - %r\n", Status));
351 FreePool (Buffer);
352 return EFI_ABORTED;
353 }
354
355 if (TopSwap) {
356 //
357 // Get FVB of current boot block
358 //
359 if (GetFvbByAddress (FtwDevice->SpareAreaAddress + FtwDevice->SpareAreaLength, &BootFvb) == NULL) {
360 FreePool (Buffer);
361 return EFI_ABORTED;
362 }
363
364 //
365 // Read data from current boot block
366 //
367 BootLba = 0;
368 Ptr = Buffer;
369 for (Index = 0; Index < FtwDevice->NumberOfSpareBlock; Index += 1) {
370 Count = FtwDevice->SpareBlockSize;
371 Status = BootFvb->Read (
372 BootFvb,
373 BootLba + Index,
374 0,
375 &Count,
376 Ptr
377 );
378 if (EFI_ERROR (Status)) {
379 FreePool (Buffer);
380 return Status;
381 }
382
383 Ptr += Count;
384 }
385 } else {
386 //
387 // Read data from spare block
388 //
389 Ptr = Buffer;
390 for (Index = 0; Index < FtwDevice->NumberOfSpareBlock; Index += 1) {
391 Count = FtwDevice->SpareBlockSize;
392 Status = FtwDevice->FtwBackupFvb->Read (
393 FtwDevice->FtwBackupFvb,
394 FtwDevice->FtwSpareLba + Index,
395 0,
396 &Count,
397 Ptr
398 );
399 if (EFI_ERROR (Status)) {
400 FreePool (Buffer);
401 return Status;
402 }
403
404 Ptr += Count;
405 }
406
407 //
408 // Set TopSwap bit
409 //
410 Status = SarProtocol->SetSwapState (SarProtocol, TRUE);
411 if (EFI_ERROR (Status)) {
412 FreePool (Buffer);
413 return Status;
414 }
415 }
416
417 //
418 // Erase current spare block
419 // Because TopSwap is set, this actually erase the top block (boot block)!
420 //
421 Status = FtwEraseSpareBlock (FtwDevice);
422 if (EFI_ERROR (Status)) {
423 FreePool (Buffer);
424 return EFI_ABORTED;
425 }
426
427 //
428 // Write memory buffer to current spare block. Still top block.
429 //
430 Ptr = Buffer;
431 for (Index = 0; Index < FtwDevice->NumberOfSpareBlock; Index += 1) {
432 Count = FtwDevice->SpareBlockSize;
433 Status = FtwDevice->FtwBackupFvb->Write (
434 FtwDevice->FtwBackupFvb,
435 FtwDevice->FtwSpareLba + Index,
436 0,
437 &Count,
438 Ptr
439 );
440 if (EFI_ERROR (Status)) {
441 DEBUG ((DEBUG_ERROR, "Ftw: FVB Write boot block - %r\n", Status));
442 FreePool (Buffer);
443 return Status;
444 }
445
446 Ptr += Count;
447 }
448
449 FreePool (Buffer);
450
451 //
452 // Clear TopSwap bit
453 //
454 Status = SarProtocol->SetSwapState (SarProtocol, FALSE);
455
456 return Status;
457 }
458
459 /**
460 Copy the content of spare block to a target block.
461 Spare block is accessed by FTW backup FVB protocol interface.
462 Target block is accessed by FvBlock protocol interface.
463
464
465 @param FtwDevice The private data of FTW driver
466 @param FvBlock FVB Protocol interface to access target block
467 @param Lba Lba of the target block
468 @param BlockSize The size of the block
469 @param NumberOfBlocks The number of consecutive blocks starting with Lba
470
471 @retval EFI_SUCCESS Spare block content is copied to target block
472 @retval EFI_INVALID_PARAMETER Input parameter error
473 @retval EFI_OUT_OF_RESOURCES Allocate memory error
474 @retval EFI_ABORTED The function could not complete successfully
475
476 **/
477 EFI_STATUS
478 FlushSpareBlockToTargetBlock (
479 EFI_FTW_DEVICE *FtwDevice,
480 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvBlock,
481 EFI_LBA Lba,
482 UINTN BlockSize,
483 UINTN NumberOfBlocks
484 )
485 {
486 EFI_STATUS Status;
487 UINTN Length;
488 UINT8 *Buffer;
489 UINTN Count;
490 UINT8 *Ptr;
491 UINTN Index;
492
493 if ((FtwDevice == NULL) || (FvBlock == NULL)) {
494 return EFI_INVALID_PARAMETER;
495 }
496
497 //
498 // Allocate a memory buffer
499 //
500 Length = FtwDevice->SpareAreaLength;
501 Buffer = AllocatePool (Length);
502 if (Buffer == NULL) {
503 return EFI_OUT_OF_RESOURCES;
504 }
505
506 //
507 // Read all content of spare block to memory buffer
508 //
509 Ptr = Buffer;
510 for (Index = 0; Index < FtwDevice->NumberOfSpareBlock; Index += 1) {
511 Count = FtwDevice->SpareBlockSize;
512 Status = FtwDevice->FtwBackupFvb->Read (
513 FtwDevice->FtwBackupFvb,
514 FtwDevice->FtwSpareLba + Index,
515 0,
516 &Count,
517 Ptr
518 );
519 if (EFI_ERROR (Status)) {
520 FreePool (Buffer);
521 return Status;
522 }
523
524 Ptr += Count;
525 }
526
527 //
528 // Erase the target block
529 //
530 Status = FtwEraseBlock (FtwDevice, FvBlock, Lba, NumberOfBlocks);
531 if (EFI_ERROR (Status)) {
532 FreePool (Buffer);
533 return EFI_ABORTED;
534 }
535
536 //
537 // Write memory buffer to block, using the FvBlock protocol interface
538 //
539 Ptr = Buffer;
540 for (Index = 0; Index < NumberOfBlocks; Index += 1) {
541 Count = BlockSize;
542 Status = FvBlock->Write (FvBlock, Lba + Index, 0, &Count, Ptr);
543 if (EFI_ERROR (Status)) {
544 DEBUG ((DEBUG_ERROR, "Ftw: FVB Write block - %r\n", Status));
545 FreePool (Buffer);
546 return Status;
547 }
548
549 Ptr += Count;
550 }
551
552 FreePool (Buffer);
553
554 return Status;
555 }
556
557 /**
558 Copy the content of spare block to working block. Size is FTW_BLOCK_SIZE.
559 Spare block is accessed by FTW backup FVB protocol interface. LBA is
560 FtwDevice->FtwSpareLba.
561 Working block is accessed by FTW working FVB protocol interface. LBA is
562 FtwDevice->FtwWorkBlockLba.
563
564 Since the working block header is important when FTW initializes, the
565 state of the operation should be handled carefully. The Crc value is
566 calculated without STATE element.
567
568 @param FtwDevice The private data of FTW driver
569
570 @retval EFI_SUCCESS Spare block content is copied to target block
571 @retval EFI_OUT_OF_RESOURCES Allocate memory error
572 @retval EFI_ABORTED The function could not complete successfully
573
574 **/
575 EFI_STATUS
576 FlushSpareBlockToWorkingBlock (
577 EFI_FTW_DEVICE *FtwDevice
578 )
579 {
580 EFI_STATUS Status;
581 UINTN Length;
582 UINT8 *Buffer;
583 EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER *WorkingBlockHeader;
584 UINTN Count;
585 UINT8 *Ptr;
586 UINTN Index;
587
588 //
589 // Allocate a memory buffer
590 //
591 Length = FtwDevice->SpareAreaLength;
592 Buffer = AllocatePool (Length);
593 if (Buffer == NULL) {
594 return EFI_OUT_OF_RESOURCES;
595 }
596
597 //
598 // To guarantee that the WorkingBlockValid is set on spare block
599 //
600 // Offset = OFFSET_OF(EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER,
601 // WorkingBlockValid);
602 // To skip Signature and Crc: sizeof(EFI_GUID)+sizeof(UINT32).
603 //
604 FtwUpdateFvState (
605 FtwDevice->FtwBackupFvb,
606 FtwDevice->SpareBlockSize,
607 FtwDevice->FtwSpareLba + FtwDevice->FtwWorkSpaceLbaInSpare,
608 FtwDevice->FtwWorkSpaceBaseInSpare + sizeof (EFI_GUID) + sizeof (UINT32),
609 WORKING_BLOCK_VALID
610 );
611 //
612 // Read from spare block to memory buffer
613 //
614 Ptr = Buffer;
615 for (Index = 0; Index < FtwDevice->NumberOfSpareBlock; Index += 1) {
616 Count = FtwDevice->SpareBlockSize;
617 Status = FtwDevice->FtwBackupFvb->Read (
618 FtwDevice->FtwBackupFvb,
619 FtwDevice->FtwSpareLba + Index,
620 0,
621 &Count,
622 Ptr
623 );
624 if (EFI_ERROR (Status)) {
625 FreePool (Buffer);
626 return Status;
627 }
628
629 Ptr += Count;
630 }
631
632 //
633 // Clear the CRC and STATE, copy data from spare to working block.
634 //
635 WorkingBlockHeader = (EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER *)(Buffer + (UINTN)FtwDevice->FtwWorkSpaceLbaInSpare * FtwDevice->SpareBlockSize + FtwDevice->FtwWorkSpaceBaseInSpare);
636 InitWorkSpaceHeader (WorkingBlockHeader);
637 WorkingBlockHeader->WorkingBlockValid = FTW_ERASE_POLARITY;
638 WorkingBlockHeader->WorkingBlockInvalid = FTW_ERASE_POLARITY;
639
640 //
641 // target block is working block, then
642 // Set WorkingBlockInvalid in EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER
643 // before erase the working block.
644 //
645 // Offset = OFFSET_OF(EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER,
646 // WorkingBlockInvalid);
647 // So hardcode offset as sizeof(EFI_GUID)+sizeof(UINT32) to
648 // skip Signature and Crc.
649 //
650 Status = FtwUpdateFvState (
651 FtwDevice->FtwFvBlock,
652 FtwDevice->WorkBlockSize,
653 FtwDevice->FtwWorkSpaceLba,
654 FtwDevice->FtwWorkSpaceBase + sizeof (EFI_GUID) + sizeof (UINT32),
655 WORKING_BLOCK_INVALID
656 );
657 if (EFI_ERROR (Status)) {
658 FreePool (Buffer);
659 return EFI_ABORTED;
660 }
661
662 FtwDevice->FtwWorkSpaceHeader->WorkingBlockInvalid = FTW_VALID_STATE;
663
664 //
665 // Erase the working block
666 //
667 Status = FtwEraseBlock (FtwDevice, FtwDevice->FtwFvBlock, FtwDevice->FtwWorkBlockLba, FtwDevice->NumberOfWorkBlock);
668 if (EFI_ERROR (Status)) {
669 FreePool (Buffer);
670 return EFI_ABORTED;
671 }
672
673 //
674 // Write memory buffer to working block, using the FvBlock protocol interface
675 //
676 Ptr = Buffer;
677 for (Index = 0; Index < FtwDevice->NumberOfWorkBlock; Index += 1) {
678 Count = FtwDevice->WorkBlockSize;
679 Status = FtwDevice->FtwFvBlock->Write (
680 FtwDevice->FtwFvBlock,
681 FtwDevice->FtwWorkBlockLba + Index,
682 0,
683 &Count,
684 Ptr
685 );
686 if (EFI_ERROR (Status)) {
687 DEBUG ((DEBUG_ERROR, "Ftw: FVB Write block - %r\n", Status));
688 FreePool (Buffer);
689 return Status;
690 }
691
692 Ptr += Count;
693 }
694
695 //
696 // Since the memory buffer will not be used, free memory Buffer.
697 //
698 FreePool (Buffer);
699
700 //
701 // Update the VALID of the working block
702 //
703 // Offset = OFFSET_OF(EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER, WorkingBlockValid);
704 // So hardcode offset as sizeof(EFI_GUID)+sizeof(UINT32) to skip Signature and Crc.
705 //
706 Status = FtwUpdateFvState (
707 FtwDevice->FtwFvBlock,
708 FtwDevice->WorkBlockSize,
709 FtwDevice->FtwWorkSpaceLba,
710 FtwDevice->FtwWorkSpaceBase + sizeof (EFI_GUID) + sizeof (UINT32),
711 WORKING_BLOCK_VALID
712 );
713 if (EFI_ERROR (Status)) {
714 return EFI_ABORTED;
715 }
716
717 FtwDevice->FtwWorkSpaceHeader->WorkingBlockInvalid = FTW_INVALID_STATE;
718 FtwDevice->FtwWorkSpaceHeader->WorkingBlockValid = FTW_VALID_STATE;
719
720 return EFI_SUCCESS;
721 }
722
723 /**
724 Update a bit of state on a block device. The location of the bit is
725 calculated by the (Lba, Offset, bit). Here bit is determined by the
726 the name of a certain bit.
727
728
729 @param FvBlock FVB Protocol interface to access SrcBlock and DestBlock
730 @param BlockSize The size of the block
731 @param Lba Lba of a block
732 @param Offset Offset on the Lba
733 @param NewBit New value that will override the old value if it can be change
734
735 @retval EFI_SUCCESS A state bit has been updated successfully
736 @retval Others Access block device error.
737 Notes:
738 Assume all bits of State are inside the same BYTE.
739 @retval EFI_ABORTED Read block fail
740
741 **/
742 EFI_STATUS
743 FtwUpdateFvState (
744 IN EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvBlock,
745 IN UINTN BlockSize,
746 IN EFI_LBA Lba,
747 IN UINTN Offset,
748 IN UINT8 NewBit
749 )
750 {
751 EFI_STATUS Status;
752 UINT8 State;
753 UINTN Length;
754
755 //
756 // Calculate the real Offset and Lba to write.
757 //
758 while (Offset >= BlockSize) {
759 Offset -= BlockSize;
760 Lba++;
761 }
762
763 //
764 // Read state from device, assume State is only one byte.
765 //
766 Length = sizeof (UINT8);
767 Status = FvBlock->Read (FvBlock, Lba, Offset, &Length, &State);
768 if (EFI_ERROR (Status)) {
769 return EFI_ABORTED;
770 }
771
772 State ^= FTW_POLARITY_REVERT;
773 State = (UINT8)(State | NewBit);
774 State ^= FTW_POLARITY_REVERT;
775
776 //
777 // Write state back to device
778 //
779 Length = sizeof (UINT8);
780 Status = FvBlock->Write (FvBlock, Lba, Offset, &Length, &State);
781
782 return Status;
783 }
784
785 /**
786 Get the last Write Header pointer.
787 The last write header is the header whose 'complete' state hasn't been set.
788 After all, this header may be a EMPTY header entry for next Allocate.
789
790
791 @param FtwWorkSpaceHeader Pointer of the working block header
792 @param FtwWorkSpaceSize Size of the work space
793 @param FtwWriteHeader Pointer to retrieve the last write header
794
795 @retval EFI_SUCCESS Get the last write record successfully
796 @retval EFI_ABORTED The FTW work space is damaged
797
798 **/
799 EFI_STATUS
800 FtwGetLastWriteHeader (
801 IN EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER *FtwWorkSpaceHeader,
802 IN UINTN FtwWorkSpaceSize,
803 OUT EFI_FAULT_TOLERANT_WRITE_HEADER **FtwWriteHeader
804 )
805 {
806 UINTN Offset;
807 EFI_FAULT_TOLERANT_WRITE_HEADER *FtwHeader;
808
809 *FtwWriteHeader = NULL;
810 FtwHeader = (EFI_FAULT_TOLERANT_WRITE_HEADER *)(FtwWorkSpaceHeader + 1);
811 Offset = sizeof (EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER);
812
813 while (FtwHeader->Complete == FTW_VALID_STATE) {
814 Offset += FTW_WRITE_TOTAL_SIZE (FtwHeader->NumberOfWrites, FtwHeader->PrivateDataSize);
815 //
816 // If Offset exceed the FTW work space boudary, return error.
817 //
818 if (Offset >= FtwWorkSpaceSize) {
819 *FtwWriteHeader = FtwHeader;
820 return EFI_ABORTED;
821 }
822
823 FtwHeader = (EFI_FAULT_TOLERANT_WRITE_HEADER *)((UINT8 *)FtwWorkSpaceHeader + Offset);
824 }
825
826 //
827 // Last write header is found
828 //
829 *FtwWriteHeader = FtwHeader;
830
831 return EFI_SUCCESS;
832 }
833
834 /**
835 Get the last Write Record pointer. The last write Record is the Record
836 whose DestinationCompleted state hasn't been set. After all, this Record
837 may be a EMPTY record entry for next write.
838
839
840 @param FtwWriteHeader Pointer to the write record header
841 @param FtwWriteRecord Pointer to retrieve the last write record
842
843 @retval EFI_SUCCESS Get the last write record successfully
844 @retval EFI_ABORTED The FTW work space is damaged
845
846 **/
847 EFI_STATUS
848 FtwGetLastWriteRecord (
849 IN EFI_FAULT_TOLERANT_WRITE_HEADER *FtwWriteHeader,
850 OUT EFI_FAULT_TOLERANT_WRITE_RECORD **FtwWriteRecord
851 )
852 {
853 UINTN Index;
854 EFI_FAULT_TOLERANT_WRITE_RECORD *FtwRecord;
855
856 *FtwWriteRecord = NULL;
857 FtwRecord = (EFI_FAULT_TOLERANT_WRITE_RECORD *)(FtwWriteHeader + 1);
858
859 //
860 // Try to find the last write record "that has not completed"
861 //
862 for (Index = 0; Index < FtwWriteHeader->NumberOfWrites; Index += 1) {
863 if (FtwRecord->DestinationComplete != FTW_VALID_STATE) {
864 //
865 // The last write record is found
866 //
867 *FtwWriteRecord = FtwRecord;
868 return EFI_SUCCESS;
869 }
870
871 FtwRecord++;
872
873 if (FtwWriteHeader->PrivateDataSize != 0) {
874 FtwRecord = (EFI_FAULT_TOLERANT_WRITE_RECORD *)((UINTN)FtwRecord + (UINTN)FtwWriteHeader->PrivateDataSize);
875 }
876 }
877
878 //
879 // if Index == NumberOfWrites, then
880 // the last record has been written successfully,
881 // but the Header->Complete Flag has not been set.
882 // also return the last record.
883 //
884 if (Index == FtwWriteHeader->NumberOfWrites) {
885 *FtwWriteRecord = (EFI_FAULT_TOLERANT_WRITE_RECORD *)((UINTN)FtwRecord - FTW_RECORD_SIZE (FtwWriteHeader->PrivateDataSize));
886 return EFI_SUCCESS;
887 }
888
889 return EFI_ABORTED;
890 }
891
892 /**
893 To check if FtwRecord is the first record of FtwHeader.
894
895 @param FtwHeader Pointer to the write record header
896 @param FtwRecord Pointer to the write record
897
898 @retval TRUE FtwRecord is the first Record of the FtwHeader
899 @retval FALSE FtwRecord is not the first Record of the FtwHeader
900
901 **/
902 BOOLEAN
903 IsFirstRecordOfWrites (
904 IN EFI_FAULT_TOLERANT_WRITE_HEADER *FtwHeader,
905 IN EFI_FAULT_TOLERANT_WRITE_RECORD *FtwRecord
906 )
907 {
908 UINT8 *Head;
909 UINT8 *Ptr;
910
911 Head = (UINT8 *)FtwHeader;
912 Ptr = (UINT8 *)FtwRecord;
913
914 Head += sizeof (EFI_FAULT_TOLERANT_WRITE_HEADER);
915 return (BOOLEAN)(Head == Ptr);
916 }
917
918 /**
919 To check if FtwRecord is the last record of FtwHeader. Because the
920 FtwHeader has NumberOfWrites & PrivateDataSize, the FtwRecord can be
921 determined if it is the last record of FtwHeader.
922
923 @param FtwHeader Pointer to the write record header
924 @param FtwRecord Pointer to the write record
925
926 @retval TRUE FtwRecord is the last Record of the FtwHeader
927 @retval FALSE FtwRecord is not the last Record of the FtwHeader
928
929 **/
930 BOOLEAN
931 IsLastRecordOfWrites (
932 IN EFI_FAULT_TOLERANT_WRITE_HEADER *FtwHeader,
933 IN EFI_FAULT_TOLERANT_WRITE_RECORD *FtwRecord
934 )
935 {
936 UINT8 *Head;
937 UINT8 *Ptr;
938
939 Head = (UINT8 *)FtwHeader;
940 Ptr = (UINT8 *)FtwRecord;
941
942 Head += FTW_WRITE_TOTAL_SIZE (FtwHeader->NumberOfWrites - 1, FtwHeader->PrivateDataSize);
943 return (BOOLEAN)(Head == Ptr);
944 }
945
946 /**
947 To check if FtwRecord is the first record of FtwHeader.
948
949 @param FtwHeader Pointer to the write record header
950 @param FtwRecord Pointer to retrieve the previous write record
951
952 @retval EFI_ACCESS_DENIED Input record is the first record, no previous record is return.
953 @retval EFI_SUCCESS The previous write record is found.
954
955 **/
956 EFI_STATUS
957 GetPreviousRecordOfWrites (
958 IN EFI_FAULT_TOLERANT_WRITE_HEADER *FtwHeader,
959 IN OUT EFI_FAULT_TOLERANT_WRITE_RECORD **FtwRecord
960 )
961 {
962 UINT8 *Ptr;
963
964 if (IsFirstRecordOfWrites (FtwHeader, *FtwRecord)) {
965 *FtwRecord = NULL;
966 return EFI_ACCESS_DENIED;
967 }
968
969 Ptr = (UINT8 *)(*FtwRecord);
970 Ptr -= FTW_RECORD_SIZE (FtwHeader->PrivateDataSize);
971 *FtwRecord = (EFI_FAULT_TOLERANT_WRITE_RECORD *)Ptr;
972 return EFI_SUCCESS;
973 }
974
975 /**
976 Allocate private data for FTW driver and initialize it.
977
978 @param[out] FtwData Pointer to the FTW device structure
979
980 @retval EFI_SUCCESS Initialize the FTW device successfully.
981 @retval EFI_OUT_OF_RESOURCES Allocate memory error
982 @retval EFI_INVALID_PARAMETER Workspace or Spare block does not exist
983
984 **/
985 EFI_STATUS
986 InitFtwDevice (
987 OUT EFI_FTW_DEVICE **FtwData
988 )
989 {
990 EFI_FTW_DEVICE *FtwDevice;
991
992 //
993 // Allocate private data of this driver,
994 // Including the FtwWorkSpace[FTW_WORK_SPACE_SIZE].
995 //
996 FtwDevice = AllocateZeroPool (sizeof (EFI_FTW_DEVICE) + PcdGet32 (PcdFlashNvStorageFtwWorkingSize));
997 if (FtwDevice == NULL) {
998 return EFI_OUT_OF_RESOURCES;
999 }
1000
1001 //
1002 // Initialize other parameters, and set WorkSpace as FTW_ERASED_BYTE.
1003 //
1004 FtwDevice->WorkSpaceLength = (UINTN)PcdGet32 (PcdFlashNvStorageFtwWorkingSize);
1005 FtwDevice->SpareAreaLength = (UINTN)PcdGet32 (PcdFlashNvStorageFtwSpareSize);
1006 if ((FtwDevice->WorkSpaceLength == 0) || (FtwDevice->SpareAreaLength == 0)) {
1007 DEBUG ((DEBUG_ERROR, "Ftw: Workspace or Spare block does not exist!\n"));
1008 FreePool (FtwDevice);
1009 return EFI_INVALID_PARAMETER;
1010 }
1011
1012 FtwDevice->Signature = FTW_DEVICE_SIGNATURE;
1013 FtwDevice->FtwFvBlock = NULL;
1014 FtwDevice->FtwBackupFvb = NULL;
1015 FtwDevice->FtwWorkSpaceLba = (EFI_LBA)(-1);
1016 FtwDevice->FtwSpareLba = (EFI_LBA)(-1);
1017
1018 FtwDevice->WorkSpaceAddress = (EFI_PHYSICAL_ADDRESS)PcdGet64 (PcdFlashNvStorageFtwWorkingBase64);
1019 if (FtwDevice->WorkSpaceAddress == 0) {
1020 FtwDevice->WorkSpaceAddress = (EFI_PHYSICAL_ADDRESS)PcdGet32 (PcdFlashNvStorageFtwWorkingBase);
1021 }
1022
1023 FtwDevice->SpareAreaAddress = (EFI_PHYSICAL_ADDRESS)PcdGet64 (PcdFlashNvStorageFtwSpareBase64);
1024 if (FtwDevice->SpareAreaAddress == 0) {
1025 FtwDevice->SpareAreaAddress = (EFI_PHYSICAL_ADDRESS)PcdGet32 (PcdFlashNvStorageFtwSpareBase);
1026 }
1027
1028 *FtwData = FtwDevice;
1029 return EFI_SUCCESS;
1030 }
1031
1032 /**
1033 Find the proper Firmware Volume Block protocol for FTW operation.
1034
1035 @param[in, out] FtwDevice Pointer to the FTW device structure
1036
1037 @retval EFI_SUCCESS Find the FVB protocol successfully.
1038 @retval EFI_NOT_FOUND No proper FVB protocol was found.
1039 @retval EFI_ABORTED Some data can not be got or be invalid.
1040
1041 **/
1042 EFI_STATUS
1043 FindFvbForFtw (
1044 IN OUT EFI_FTW_DEVICE *FtwDevice
1045 )
1046 {
1047 EFI_STATUS Status;
1048 EFI_HANDLE *HandleBuffer;
1049 UINTN HandleCount;
1050 UINTN Index;
1051 EFI_PHYSICAL_ADDRESS FvbBaseAddress;
1052 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *Fvb;
1053 EFI_FVB_ATTRIBUTES_2 Attributes;
1054 UINT32 LbaIndex;
1055 UINTN BlockSize;
1056 UINTN NumberOfBlocks;
1057
1058 HandleBuffer = NULL;
1059
1060 //
1061 // Get all FVB handle.
1062 //
1063 Status = GetFvbCountAndBuffer (&HandleCount, &HandleBuffer);
1064 if (EFI_ERROR (Status)) {
1065 return EFI_NOT_FOUND;
1066 }
1067
1068 //
1069 // Get the FVB to access variable store
1070 //
1071 Fvb = NULL;
1072 for (Index = 0; Index < HandleCount; Index += 1) {
1073 Status = FtwGetFvbByHandle (HandleBuffer[Index], &Fvb);
1074 if (EFI_ERROR (Status)) {
1075 Status = EFI_NOT_FOUND;
1076 break;
1077 }
1078
1079 //
1080 // Ensure this FVB protocol support Write operation.
1081 //
1082 Status = Fvb->GetAttributes (Fvb, &Attributes);
1083 if (EFI_ERROR (Status) || ((Attributes & EFI_FVB2_WRITE_STATUS) == 0)) {
1084 continue;
1085 }
1086
1087 //
1088 // Compare the address and select the right one
1089 //
1090 Status = Fvb->GetPhysicalAddress (Fvb, &FvbBaseAddress);
1091 if (EFI_ERROR (Status)) {
1092 continue;
1093 }
1094
1095 //
1096 // Now, one FVB has one type of BlockSize.
1097 //
1098 Status = Fvb->GetBlockSize (Fvb, 0, &BlockSize, &NumberOfBlocks);
1099 if (EFI_ERROR (Status)) {
1100 continue;
1101 }
1102
1103 if ((FtwDevice->FtwFvBlock == NULL) && (FtwDevice->WorkSpaceAddress >= FvbBaseAddress) &&
1104 ((FtwDevice->WorkSpaceAddress + FtwDevice->WorkSpaceLength) <= (FvbBaseAddress + BlockSize * NumberOfBlocks)))
1105 {
1106 FtwDevice->FtwFvBlock = Fvb;
1107 //
1108 // To get the LBA of work space
1109 //
1110 for (LbaIndex = 1; LbaIndex <= NumberOfBlocks; LbaIndex += 1) {
1111 if ( (FtwDevice->WorkSpaceAddress >= (FvbBaseAddress + BlockSize * (LbaIndex - 1)))
1112 && (FtwDevice->WorkSpaceAddress < (FvbBaseAddress + BlockSize * LbaIndex)))
1113 {
1114 FtwDevice->FtwWorkSpaceLba = LbaIndex - 1;
1115 //
1116 // Get the Work space size and Base(Offset)
1117 //
1118 FtwDevice->FtwWorkSpaceSize = FtwDevice->WorkSpaceLength;
1119 FtwDevice->WorkBlockSize = BlockSize;
1120 FtwDevice->FtwWorkSpaceBase = (UINTN)(FtwDevice->WorkSpaceAddress - (FvbBaseAddress + FtwDevice->WorkBlockSize * (LbaIndex - 1)));
1121 FtwDevice->NumberOfWorkSpaceBlock = FTW_BLOCKS (FtwDevice->FtwWorkSpaceBase + FtwDevice->FtwWorkSpaceSize, FtwDevice->WorkBlockSize);
1122 if (FtwDevice->FtwWorkSpaceSize >= FtwDevice->WorkBlockSize) {
1123 //
1124 // Check the alignment of work space address and length, they should be block size aligned when work space size is larger than one block size.
1125 //
1126 if (((FtwDevice->WorkSpaceAddress & (FtwDevice->WorkBlockSize - 1)) != 0) ||
1127 ((FtwDevice->WorkSpaceLength & (FtwDevice->WorkBlockSize - 1)) != 0))
1128 {
1129 DEBUG ((DEBUG_ERROR, "Ftw: Work space address or length is not block size aligned when work space size is larger than one block size\n"));
1130 FreePool (HandleBuffer);
1131 ASSERT (FALSE);
1132 return EFI_ABORTED;
1133 }
1134 } else if ((FtwDevice->FtwWorkSpaceBase + FtwDevice->FtwWorkSpaceSize) > FtwDevice->WorkBlockSize) {
1135 DEBUG ((DEBUG_ERROR, "Ftw: The work space range should not span blocks when work space size is less than one block size\n"));
1136 FreePool (HandleBuffer);
1137 ASSERT (FALSE);
1138 return EFI_ABORTED;
1139 }
1140
1141 break;
1142 }
1143 }
1144 }
1145
1146 if ((FtwDevice->FtwBackupFvb == NULL) && (FtwDevice->SpareAreaAddress >= FvbBaseAddress) &&
1147 ((FtwDevice->SpareAreaAddress + FtwDevice->SpareAreaLength) <= (FvbBaseAddress + BlockSize * NumberOfBlocks)))
1148 {
1149 FtwDevice->FtwBackupFvb = Fvb;
1150 //
1151 // To get the LBA of spare
1152 //
1153 for (LbaIndex = 1; LbaIndex <= NumberOfBlocks; LbaIndex += 1) {
1154 if ( (FtwDevice->SpareAreaAddress >= (FvbBaseAddress + BlockSize * (LbaIndex - 1)))
1155 && (FtwDevice->SpareAreaAddress < (FvbBaseAddress + BlockSize * LbaIndex)))
1156 {
1157 //
1158 // Get the NumberOfSpareBlock and BlockSize
1159 //
1160 FtwDevice->FtwSpareLba = LbaIndex - 1;
1161 FtwDevice->SpareBlockSize = BlockSize;
1162 FtwDevice->NumberOfSpareBlock = FtwDevice->SpareAreaLength / FtwDevice->SpareBlockSize;
1163 //
1164 // Check the range of spare area to make sure that it's in FV range
1165 //
1166 if ((FtwDevice->FtwSpareLba + FtwDevice->NumberOfSpareBlock) > NumberOfBlocks) {
1167 DEBUG ((DEBUG_ERROR, "Ftw: Spare area is out of FV range\n"));
1168 FreePool (HandleBuffer);
1169 ASSERT (FALSE);
1170 return EFI_ABORTED;
1171 }
1172
1173 //
1174 // Check the alignment of spare area address and length, they should be block size aligned
1175 //
1176 if (((FtwDevice->SpareAreaAddress & (FtwDevice->SpareBlockSize - 1)) != 0) ||
1177 ((FtwDevice->SpareAreaLength & (FtwDevice->SpareBlockSize - 1)) != 0))
1178 {
1179 DEBUG ((DEBUG_ERROR, "Ftw: Spare area address or length is not block size aligned\n"));
1180 FreePool (HandleBuffer);
1181 //
1182 // Report Status Code EFI_SW_EC_ABORTED.
1183 //
1184 REPORT_STATUS_CODE ((EFI_ERROR_CODE | EFI_ERROR_UNRECOVERED), (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_EC_ABORTED));
1185 ASSERT (FALSE);
1186 CpuDeadLoop ();
1187 }
1188
1189 break;
1190 }
1191 }
1192 }
1193 }
1194
1195 FreePool (HandleBuffer);
1196
1197 if ((FtwDevice->FtwBackupFvb == NULL) || (FtwDevice->FtwFvBlock == NULL) ||
1198 (FtwDevice->FtwWorkSpaceLba == (EFI_LBA)(-1)) || (FtwDevice->FtwSpareLba == (EFI_LBA)(-1)))
1199 {
1200 return EFI_ABORTED;
1201 }
1202
1203 DEBUG ((DEBUG_INFO, "Ftw: FtwWorkSpaceLba - 0x%lx, WorkBlockSize - 0x%x, FtwWorkSpaceBase - 0x%x\n", FtwDevice->FtwWorkSpaceLba, FtwDevice->WorkBlockSize, FtwDevice->FtwWorkSpaceBase));
1204 DEBUG ((DEBUG_INFO, "Ftw: FtwSpareLba - 0x%lx, SpareBlockSize - 0x%x\n", FtwDevice->FtwSpareLba, FtwDevice->SpareBlockSize));
1205
1206 return EFI_SUCCESS;
1207 }
1208
1209 /**
1210 Initialization for Fault Tolerant Write protocol.
1211
1212 @param[in, out] FtwDevice Pointer to the FTW device structure
1213
1214 @retval EFI_SUCCESS Initialize the FTW protocol successfully.
1215 @retval EFI_NOT_FOUND No proper FVB protocol was found.
1216
1217 **/
1218 EFI_STATUS
1219 InitFtwProtocol (
1220 IN OUT EFI_FTW_DEVICE *FtwDevice
1221 )
1222 {
1223 EFI_STATUS Status;
1224 EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL *Fvb;
1225 EFI_FAULT_TOLERANT_WRITE_HEADER *FtwHeader;
1226 UINTN Offset;
1227 EFI_HANDLE FvbHandle;
1228 EFI_LBA WorkSpaceLbaOffset;
1229
1230 //
1231 // Find the right SMM Fvb protocol instance for FTW.
1232 //
1233 Status = FindFvbForFtw (FtwDevice);
1234 if (EFI_ERROR (Status)) {
1235 return EFI_NOT_FOUND;
1236 }
1237
1238 //
1239 // Calculate the start LBA of working block.
1240 //
1241 if (FtwDevice->FtwWorkSpaceSize >= FtwDevice->WorkBlockSize) {
1242 //
1243 // Working block is a standalone area which only contains working space.
1244 //
1245 FtwDevice->NumberOfWorkBlock = FtwDevice->NumberOfWorkSpaceBlock;
1246 } else {
1247 //
1248 // Working block is an area which
1249 // contains working space in its last block and has the same size as spare
1250 // block, unless there are not enough blocks before the block that contains
1251 // working space.
1252 //
1253 FtwDevice->NumberOfWorkBlock = (UINTN)(FtwDevice->FtwWorkSpaceLba + FtwDevice->NumberOfWorkSpaceBlock);
1254 while (FtwDevice->NumberOfWorkBlock * FtwDevice->WorkBlockSize > FtwDevice->SpareAreaLength) {
1255 FtwDevice->NumberOfWorkBlock--;
1256 }
1257 }
1258
1259 FtwDevice->FtwWorkBlockLba = FtwDevice->FtwWorkSpaceLba + FtwDevice->NumberOfWorkSpaceBlock - FtwDevice->NumberOfWorkBlock;
1260 DEBUG ((DEBUG_INFO, "Ftw: NumberOfWorkBlock - 0x%x, FtwWorkBlockLba - 0x%lx\n", FtwDevice->NumberOfWorkBlock, FtwDevice->FtwWorkBlockLba));
1261
1262 //
1263 // Calcualte the LBA and base of work space in spare block.
1264 // Note: Do not assume Spare Block and Work Block have same block size.
1265 //
1266 WorkSpaceLbaOffset = FtwDevice->FtwWorkSpaceLba - FtwDevice->FtwWorkBlockLba;
1267 FtwDevice->FtwWorkSpaceLbaInSpare = (EFI_LBA)(((UINTN)WorkSpaceLbaOffset * FtwDevice->WorkBlockSize + FtwDevice->FtwWorkSpaceBase) / FtwDevice->SpareBlockSize);
1268 FtwDevice->FtwWorkSpaceBaseInSpare = ((UINTN)WorkSpaceLbaOffset * FtwDevice->WorkBlockSize + FtwDevice->FtwWorkSpaceBase) % FtwDevice->SpareBlockSize;
1269 DEBUG ((DEBUG_INFO, "Ftw: WorkSpaceLbaInSpare - 0x%lx, WorkSpaceBaseInSpare - 0x%x\n", FtwDevice->FtwWorkSpaceLbaInSpare, FtwDevice->FtwWorkSpaceBaseInSpare));
1270
1271 //
1272 // Initialize other parameters, and set WorkSpace as FTW_ERASED_BYTE.
1273 //
1274 FtwDevice->FtwWorkSpace = (UINT8 *)(FtwDevice + 1);
1275 FtwDevice->FtwWorkSpaceHeader = (EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER *)FtwDevice->FtwWorkSpace;
1276
1277 FtwDevice->FtwLastWriteHeader = NULL;
1278 FtwDevice->FtwLastWriteRecord = NULL;
1279
1280 InitializeLocalWorkSpaceHeader ();
1281
1282 //
1283 // Refresh the working space data from working block
1284 //
1285 Status = WorkSpaceRefresh (FtwDevice);
1286 ASSERT_EFI_ERROR (Status);
1287 //
1288 // If the working block workspace is not valid, try the spare block
1289 //
1290 if (!IsValidWorkSpace (FtwDevice->FtwWorkSpaceHeader)) {
1291 //
1292 // Read from spare block
1293 //
1294 Status = ReadWorkSpaceData (
1295 FtwDevice->FtwBackupFvb,
1296 FtwDevice->SpareBlockSize,
1297 FtwDevice->FtwSpareLba + FtwDevice->FtwWorkSpaceLbaInSpare,
1298 FtwDevice->FtwWorkSpaceBaseInSpare,
1299 FtwDevice->FtwWorkSpaceSize,
1300 FtwDevice->FtwWorkSpace
1301 );
1302 ASSERT_EFI_ERROR (Status);
1303
1304 //
1305 // If spare block is valid, then replace working block content.
1306 //
1307 if (IsValidWorkSpace (FtwDevice->FtwWorkSpaceHeader)) {
1308 Status = FlushSpareBlockToWorkingBlock (FtwDevice);
1309 DEBUG ((
1310 DEBUG_INFO,
1311 "Ftw: Restart working block update in %a() - %r\n",
1312 __FUNCTION__,
1313 Status
1314 ));
1315 FtwAbort (&FtwDevice->FtwInstance);
1316 //
1317 // Refresh work space.
1318 //
1319 Status = WorkSpaceRefresh (FtwDevice);
1320 ASSERT_EFI_ERROR (Status);
1321 } else {
1322 DEBUG ((
1323 DEBUG_INFO,
1324 "Ftw: Both working and spare blocks are invalid, init workspace\n"
1325 ));
1326 //
1327 // If both are invalid, then initialize work space.
1328 //
1329 SetMem (
1330 FtwDevice->FtwWorkSpace,
1331 FtwDevice->FtwWorkSpaceSize,
1332 FTW_ERASED_BYTE
1333 );
1334 InitWorkSpaceHeader (FtwDevice->FtwWorkSpaceHeader);
1335 //
1336 // Initialize the work space
1337 //
1338 Status = FtwReclaimWorkSpace (FtwDevice, FALSE);
1339 ASSERT_EFI_ERROR (Status);
1340 }
1341 }
1342
1343 //
1344 // If the FtwDevice->FtwLastWriteRecord is 1st record of write header &&
1345 // (! SpareComplete) THEN call Abort().
1346 //
1347 if ((FtwDevice->FtwLastWriteHeader->HeaderAllocated == FTW_VALID_STATE) &&
1348 (FtwDevice->FtwLastWriteRecord->SpareComplete != FTW_VALID_STATE) &&
1349 IsFirstRecordOfWrites (FtwDevice->FtwLastWriteHeader, FtwDevice->FtwLastWriteRecord)
1350 )
1351 {
1352 DEBUG ((DEBUG_ERROR, "Ftw: Init.. find first record not SpareCompleted, abort()\n"));
1353 FtwAbort (&FtwDevice->FtwInstance);
1354 }
1355
1356 //
1357 // If Header is incompleted and the last record has completed, then
1358 // call Abort() to set the Header->Complete FLAG.
1359 //
1360 if ((FtwDevice->FtwLastWriteHeader->Complete != FTW_VALID_STATE) &&
1361 (FtwDevice->FtwLastWriteRecord->DestinationComplete == FTW_VALID_STATE) &&
1362 IsLastRecordOfWrites (FtwDevice->FtwLastWriteHeader, FtwDevice->FtwLastWriteRecord)
1363 )
1364 {
1365 DEBUG ((DEBUG_ERROR, "Ftw: Init.. find last record completed but header not, abort()\n"));
1366 FtwAbort (&FtwDevice->FtwInstance);
1367 }
1368
1369 //
1370 // To check the workspace buffer following last Write header/records is EMPTY or not.
1371 // If it's not EMPTY, FTW also need to call reclaim().
1372 //
1373 FtwHeader = FtwDevice->FtwLastWriteHeader;
1374 Offset = (UINT8 *)FtwHeader - FtwDevice->FtwWorkSpace;
1375 if (FtwDevice->FtwWorkSpace[Offset] != FTW_ERASED_BYTE) {
1376 Offset += FTW_WRITE_TOTAL_SIZE (FtwHeader->NumberOfWrites, FtwHeader->PrivateDataSize);
1377 }
1378
1379 if (!IsErasedFlashBuffer (FtwDevice->FtwWorkSpace + Offset, FtwDevice->FtwWorkSpaceSize - Offset)) {
1380 Status = FtwReclaimWorkSpace (FtwDevice, TRUE);
1381 ASSERT_EFI_ERROR (Status);
1382 }
1383
1384 //
1385 // Restart if it's boot block
1386 //
1387 if ((FtwDevice->FtwLastWriteHeader->Complete != FTW_VALID_STATE) &&
1388 (FtwDevice->FtwLastWriteRecord->SpareComplete == FTW_VALID_STATE)
1389 )
1390 {
1391 if (FtwDevice->FtwLastWriteRecord->BootBlockUpdate == FTW_VALID_STATE) {
1392 Status = FlushSpareBlockToBootBlock (FtwDevice);
1393 DEBUG ((DEBUG_ERROR, "Ftw: Restart boot block update - %r\n", Status));
1394 ASSERT_EFI_ERROR (Status);
1395 FtwAbort (&FtwDevice->FtwInstance);
1396 } else {
1397 //
1398 // if (SpareCompleted) THEN Restart to fault tolerant write.
1399 //
1400 FvbHandle = NULL;
1401 FvbHandle = GetFvbByAddress ((EFI_PHYSICAL_ADDRESS)(UINTN)((INT64)FtwDevice->SpareAreaAddress + FtwDevice->FtwLastWriteRecord->RelativeOffset), &Fvb);
1402 if (FvbHandle != NULL) {
1403 Status = FtwRestart (&FtwDevice->FtwInstance, FvbHandle);
1404 DEBUG ((DEBUG_ERROR, "Ftw: Restart last write - %r\n", Status));
1405 ASSERT_EFI_ERROR (Status);
1406 }
1407
1408 FtwAbort (&FtwDevice->FtwInstance);
1409 }
1410 }
1411
1412 //
1413 // Hook the protocol API
1414 //
1415 FtwDevice->FtwInstance.GetMaxBlockSize = FtwGetMaxBlockSize;
1416 FtwDevice->FtwInstance.Allocate = FtwAllocate;
1417 FtwDevice->FtwInstance.Write = FtwWrite;
1418 FtwDevice->FtwInstance.Restart = FtwRestart;
1419 FtwDevice->FtwInstance.Abort = FtwAbort;
1420 FtwDevice->FtwInstance.GetLastWrite = FtwGetLastWrite;
1421
1422 return EFI_SUCCESS;
1423 }