]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/EdkFvbServiceLib/Fvb.c
44de6eeaa0db52236c624c5bdf98d4cf5209aaf8
[mirror_edk2.git] / MdeModulePkg / Library / EdkFvbServiceLib / Fvb.c
1 /**@file
2 Firmware Volume Block Protocol Runtime Interface Abstraction
3 And FVB Extension protocol Runtime Interface Abstraction
4
5 mFvbEntry is an array of Handle Fvb pairs. The Fvb Lib Instance matches the
6 index in the mFvbEntry array. This should be the same sequence as the FVB's
7 were described in the HOB. We have to remember the handle so we can tell if
8 the protocol has been reinstalled and it needs updating.
9
10
11 Copyright (c) 2006 - 2008, Intel Corporation
12 All rights reserved. This program and the accompanying materials
13 are licensed and made available under the terms and conditions of the BSD License
14 which accompanies this distribution. The full text of the license may be found at
15 http://opensource.org/licenses/bsd-license.php
16
17 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
18 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19
20 **/
21
22
23 #include "Fvb.h"
24
25
26 //
27 // Event for Set Virtual Map Changed Event
28 //
29 EFI_EVENT mSetVirtualMapChangedEvent = NULL;
30
31 //
32 // Lib will ASSERT if more FVB devices than this are added to the system.
33 //
34 FVB_ENTRY *mFvbEntry = NULL;
35 EFI_EVENT mFvbRegistration = NULL;
36 UINTN mFvbCount = 0;
37
38 /**
39 Check whether an address is runtime memory or not.
40
41 @param Address The Address being checked.
42
43 @retval TRUE The address is runtime memory.
44 @retval FALSE The address is not runtime memory.
45 **/
46 BOOLEAN
47 IsRuntimeMemory (
48 IN VOID *Address
49 )
50 {
51 EFI_STATUS Status;
52 UINT8 TmpMemoryMap[1];
53 UINTN MapKey;
54 UINTN DescriptorSize;
55 UINT32 DescriptorVersion;
56 UINTN MemoryMapSize;
57 EFI_MEMORY_DESCRIPTOR *MemoryMap;
58 EFI_MEMORY_DESCRIPTOR *MemoryMapPtr;
59 BOOLEAN IsRuntime;
60 UINTN Index;
61
62 IsRuntime = FALSE;
63
64 //
65 // Get System MemoryMapSize
66 //
67 MemoryMapSize = 1;
68 Status = gBS->GetMemoryMap (
69 &MemoryMapSize,
70 (EFI_MEMORY_DESCRIPTOR *)TmpMemoryMap,
71 &MapKey,
72 &DescriptorSize,
73 &DescriptorVersion
74 );
75 ASSERT (Status == EFI_BUFFER_TOO_SMALL);
76 //
77 // Enlarge space here, because we will allocate pool now.
78 //
79 MemoryMapSize += EFI_PAGE_SIZE;
80 MemoryMap = AllocatePool (MemoryMapSize);
81 ASSERT (MemoryMap != NULL);
82
83 //
84 // Get System MemoryMap
85 //
86 Status = gBS->GetMemoryMap (
87 &MemoryMapSize,
88 MemoryMap,
89 &MapKey,
90 &DescriptorSize,
91 &DescriptorVersion
92 );
93 ASSERT_EFI_ERROR (Status);
94
95 MemoryMapPtr = MemoryMap;
96 //
97 // Search the request Address
98 //
99 for (Index = 0; Index < (MemoryMapSize / DescriptorSize); Index++) {
100 if (((EFI_PHYSICAL_ADDRESS)(UINTN)Address >= MemoryMap->PhysicalStart) &&
101 ((EFI_PHYSICAL_ADDRESS)(UINTN)Address < MemoryMap->PhysicalStart
102 + LShiftU64 (MemoryMap->NumberOfPages, EFI_PAGE_SHIFT))) {
103 //
104 // Found it
105 //
106 if ((MemoryMap->Attribute & EFI_MEMORY_RUNTIME) != 0) {
107 IsRuntime = TRUE;
108 }
109 break;
110 }
111 //
112 // Get next item
113 //
114 MemoryMap = (EFI_MEMORY_DESCRIPTOR *)((UINTN) MemoryMap + DescriptorSize);
115 }
116
117 //
118 // Done
119 //
120 FreePool (MemoryMapPtr);
121
122 return IsRuntime;
123 }
124
125
126 /**
127 Update mFvbEntry. Add new entry, or update existing entry if Fvb protocol is
128 reinstalled.
129
130 @param Event The Event that is being processed
131 @param Context Event Context
132
133 **/
134 VOID
135 EFIAPI
136 FvbNotificationEvent (
137 IN EFI_EVENT Event,
138 IN VOID *Context
139 )
140 {
141 EFI_STATUS Status;
142 UINTN BufferSize;
143 EFI_HANDLE Handle;
144 UINTN Index;
145 UINTN UpdateIndex;
146
147 while (TRUE) {
148 BufferSize = sizeof (Handle);
149 Status = gBS->LocateHandle (
150 ByRegisterNotify,
151 &gEfiFirmwareVolumeBlockProtocolGuid,
152 mFvbRegistration,
153 &BufferSize,
154 &Handle
155 );
156 if (EFI_ERROR (Status)) {
157 //
158 // Exit Path of While Loop....
159 //
160 break;
161 }
162
163 UpdateIndex = MAX_FVB_COUNT;
164 for (Index = 0; Index < mFvbCount; Index++) {
165 if (mFvbEntry[Index].Handle == Handle) {
166 //
167 // If the handle is already in the table just update the protocol
168 //
169 UpdateIndex = Index;
170 break;
171 }
172 }
173
174 if (UpdateIndex == MAX_FVB_COUNT) {
175 //
176 // Use the next free slot for a new entry
177 //
178 UpdateIndex = mFvbCount++;
179 //
180 // Check the UpdateIndex whether exceed the maximum value.
181 //
182 ASSERT (UpdateIndex < MAX_FVB_COUNT);
183 mFvbEntry[UpdateIndex].Handle = Handle;
184 }
185 //
186 // The array does not have enough entries
187 //
188 ASSERT (UpdateIndex < MAX_FVB_COUNT);
189
190 //
191 // Get the interface pointer and if it's ours, skip it
192 //
193 Status = gBS->HandleProtocol (
194 Handle,
195 &gEfiFirmwareVolumeBlockProtocolGuid,
196 (VOID **) &mFvbEntry[UpdateIndex].Fvb
197 );
198 ASSERT_EFI_ERROR (Status);
199
200 Status = gBS->HandleProtocol (
201 Handle,
202 &gEfiFvbExtensionProtocolGuid,
203 (VOID **) &mFvbEntry[UpdateIndex].FvbExtension
204 );
205 if (Status != EFI_SUCCESS) {
206 mFvbEntry[UpdateIndex].FvbExtension = NULL;
207 }
208
209 //
210 // Check the FVB can be accessed in RUNTIME, The FVBs in FVB handle list come from two ways:
211 // 1) Dxe Core. (FVB information is transferred from FV HOB). 2) FVB driver. The FVB produced
212 // Dxe core is used to discovery DXE driver and dispatch. These FVBs can only be accessed in
213 // boot time. FVB driver will discovery all FV in FLASH and these FVBs can be accessed in
214 // runtime. The FVB itself produced by FVB driver is allocated in runtime memory. So we can
215 // determine the what FVB can be accessed in RUNTIME by judging whether FVB itself is allocated
216 // in RUNTIME memory.
217 //
218 mFvbEntry[UpdateIndex].IsRuntimeAccess = IsRuntimeMemory (mFvbEntry[UpdateIndex].Fvb);
219 }
220 }
221
222 /**
223 Convert all pointers in mFvbEntry after ExitBootServices.
224
225 @param Event The Event that is being processed
226 @param Context Event Context
227
228 **/
229 VOID
230 EFIAPI
231 FvbVirtualAddressChangeNotifyEvent (
232 IN EFI_EVENT Event,
233 IN VOID *Context
234 )
235 {
236 UINTN Index;
237
238 if (mFvbEntry != NULL) {
239 for (Index = 0; Index < MAX_FVB_COUNT; Index++) {
240 if (!mFvbEntry[Index].IsRuntimeAccess) {
241 continue;
242 }
243
244 if (mFvbEntry[Index].Fvb != NULL) {
245 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->GetBlockSize);
246 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->GetPhysicalAddress);
247 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->GetAttributes);
248 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->SetAttributes);
249 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->Read);
250 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->Write);
251 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->EraseBlocks);
252 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb);
253 }
254
255 if (mFvbEntry[Index].FvbExtension != NULL) {
256 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].FvbExtension->EraseFvbCustomBlock);
257 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].FvbExtension);
258 }
259 }
260
261 EfiConvertPointer (0x0, (VOID **) &mFvbEntry);
262 }
263 }
264
265
266 /**
267 Library constructor function entry.
268
269 @param ImageHandle The handle of image who call this library.
270 @param SystemTable The point of System Table.
271
272 @retval EFI_SUCESS Success construct this library.
273 @retval Others Fail to construct this library.
274 **/
275 EFI_STATUS
276 EFIAPI
277 FvbLibInitialize (
278 IN EFI_HANDLE ImageHandle,
279 IN EFI_SYSTEM_TABLE *SystemTable
280 )
281 {
282 EFI_STATUS Status;
283
284 mFvbEntry = AllocateRuntimeZeroPool (sizeof (FVB_ENTRY) * MAX_FVB_COUNT);
285 ASSERT (mFvbEntry != NULL);
286
287 //
288 // Register FvbNotificationEvent () notify function.
289 //
290 EfiCreateProtocolNotifyEvent (
291 &gEfiFirmwareVolumeBlockProtocolGuid,
292 TPL_CALLBACK,
293 FvbNotificationEvent,
294 NULL,
295 &mFvbRegistration
296 );
297
298 //
299 // Register SetVirtualAddressMap () notify function
300 //
301 Status = gBS->CreateEventEx (
302 EVT_NOTIFY_SIGNAL,
303 TPL_NOTIFY,
304 FvbVirtualAddressChangeNotifyEvent,
305 NULL,
306 &gEfiEventVirtualAddressChangeGuid,
307 &mSetVirtualMapChangedEvent
308 );
309 ASSERT_EFI_ERROR (Status);
310
311 return Status;
312 }
313
314 //
315 // =============================================================================
316 // The following functions wrap Fvb protocol in the Runtime Lib functions.
317 // The Instance translates into Fvb instance. The Fvb order defined by HOBs and
318 // thus the sequence of FVB protocol addition define Instance.
319 //
320
321 /**
322 Reads specified number of bytes into a buffer from the specified block.
323
324 The EfiFvbReadBlock() function reads the requested number of bytes from
325 the requested block in the specified firmware volume and stores them in
326 the provided buffer. Implementations should be mindful that the firmware
327 volume might be in the ReadDisabled state. If it is in this state, the
328 EfiFvbReadBlock() function must return the status code EFI_ACCESS_DENIED
329 without modifying the contents of the buffer.
330
331 The EfiFvbReadBlock() function must also prevent spanning block boundaries.
332 If a read is requested that would span a block boundary, the read must read
333 up to the boundary but not beyond. The output parameter NumBytes must be
334 set to correctly indicate the number of bytes actually read.
335 The caller must be aware that a read may be partially completed.
336
337 If NumBytes is NULL, then ASSERT().
338
339 If Buffer is NULL, then ASSERT().
340
341 @param[in] Instance The FV instance to be read from.
342 @param[in] Lba The logical block address to be read from
343 @param[in] Offset The offset relative to the block, at which to begin reading.
344 @param[in, out] NumBytes Pointer to a UINTN. On input, *NumBytes contains the total
345 size of the buffer. On output, it contains the actual number
346 of bytes read.
347 @param[out] Buffer Pointer to a caller allocated buffer that will be
348 used to hold the data read.
349
350 @retval EFI_SUCCESS The firmware volume was read successfully and contents are in Buffer.
351 @retval EFI_BAD_BUFFER_SIZE Read attempted across an LBA boundary. On output, NumBytes contains
352 the total number of bytes returned in Buffer.
353 @retval EFI_ACCESS_DENIED The firmware volume is in the ReadDisabled state.
354 @retval EFI_DEVICE_ERROR The block device is not functioning correctly and could not be read.
355 @retval EFI_INVALID_PARAMETER Invalid parameter, Instance is larger than the max FVB number. Lba index
356 is larger than the last block of the firmware volume. Offset is larger
357 than the block size.
358
359 **/
360 EFI_STATUS
361 EFIAPI
362 EfiFvbReadBlock (
363 IN UINTN Instance,
364 IN EFI_LBA Lba,
365 IN UINTN Offset,
366 IN OUT UINTN *NumBytes,
367 OUT UINT8 *Buffer
368 )
369 {
370 ASSERT (NumBytes != NULL);
371 ASSERT (Buffer != NULL);
372
373 if (Instance >= mFvbCount) {
374 return EFI_INVALID_PARAMETER;
375 }
376
377 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
378 return EFI_INVALID_PARAMETER;
379 }
380
381 return mFvbEntry[Instance].Fvb->Read (mFvbEntry[Instance].Fvb, Lba, Offset, NumBytes, Buffer);
382 }
383
384 /**
385 Writes specified number of bytes from the input buffer to the block
386
387 The EfiFvbWriteBlock() function writes the specified number of bytes
388 from the provided buffer to the specified block and offset in the
389 requested firmware volume.
390
391 If the firmware volume is sticky write, the caller must ensure that
392 all the bits of the specified range to write are in the EFI_FVB_ERASE_POLARITY
393 state before calling the EfiFvbWriteBlock() function, or else the
394 result will be unpredictable. This unpredictability arises because,
395 for a sticky-write firmware volume, a write may negate a bit in the
396 EFI_FVB_ERASE_POLARITY state but it cannot flip it back again. In
397 general, before calling the EfiFvbWriteBlock() function, the caller
398 should call the EfiFvbEraseBlock() function first to erase the specified
399 block to write. A block erase cycle will transition bits from the
400 (NOT)EFI_FVB_ERASE_POLARITY state back to the EFI_FVB_ERASE_POLARITY state.
401 Implementations should be mindful that the firmware volume might be
402 in the WriteDisabled state. If it is in this state, the EfiFvbWriteBlock()
403 function must return the status code EFI_ACCESS_DENIED without modifying
404 the contents of the firmware volume.
405
406 The EfiFvbWriteBlock() function must also prevent spanning block boundaries.
407 If a write is requested that spans a block boundary, the write must store
408 up to the boundary but not beyond. The output parameter NumBytes must be
409 set to correctly indicate the number of bytes actually written. The caller
410 must be aware that a write may be partially completed.
411 All writes, partial or otherwise, must be fully flushed to the hardware
412 before the EfiFvbWriteBlock() function returns.
413
414 If NumBytes is NULL, then ASSERT().
415
416 @param Instance The FV instance to be written to.
417 @param Lba The starting logical block index to write.
418 @param Offset The offset relative to the block to write.
419 @param NumBytes Pointer to a UINTN. On input, *NumBytes contains
420 the total size of the buffer. On output, it contains
421 the actual number of bytes written.
422 @param Buffer Pointer to a caller allocated buffer that contains
423 the source for the write
424
425 @retval EFI_SUCCESS The firmware volume was written successfully.
426 @retval EFI_BAD_BUFFER_SIZE The write was attempted across an LBA boundary.
427 On output, NumBytes contains the total number of bytes actually written.
428 @retval EFI_ACCESS_DENIED The firmware volume is in the WriteDisabled state.
429 @retval EFI_DEVICE_ERROR The block device is malfunctioning and could not be written.
430 @retval EFI_INVALID_PARAMETER Invalid parameter, Instance is larger than the max FVB number.
431 Lba index is larger than the last block of the firmware volume.
432 Offset is larger than the block size.
433 **/
434 EFI_STATUS
435 EFIAPI
436 EfiFvbWriteBlock (
437 IN UINTN Instance,
438 IN EFI_LBA Lba,
439 IN UINTN Offset,
440 IN OUT UINTN *NumBytes,
441 IN UINT8 *Buffer
442 )
443 {
444 ASSERT (NumBytes != NULL);
445
446 if (Instance >= mFvbCount) {
447 return EFI_INVALID_PARAMETER;
448 }
449
450 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
451 return EFI_INVALID_PARAMETER;
452 }
453
454 return mFvbEntry[Instance].Fvb->Write (mFvbEntry[Instance].Fvb, Lba, Offset, NumBytes, Buffer);
455 }
456
457
458 /**
459 Erases and initializes a firmware volume block.
460
461 The EfiFvbEraseBlock() function erases one block specified by Lba.
462 Implementations should be mindful that the firmware volume might
463 be in the WriteDisabled state. If it is in this state, the EfiFvbEraseBlock()
464 function must return the status code EFI_ACCESS_DENIED without
465 modifying the contents of the firmware volume. If Instance is
466 larger than the max FVB number, or Lba index is larger than the
467 last block of the firmware volume, this function return the status
468 code EFI_INVALID_PARAMETER.
469
470 All calls to EfiFvbEraseBlock() must be fully flushed to the
471 hardware before this function returns.
472
473 @param[in] Instance The FV instance to be erased.
474 @param[in] Lba The logical block index to be erased from.
475
476 @retval EFI_SUCCESS The erase request was successfully completed.
477 @retval EFI_ACCESS_DENIED The firmware volume is in the WriteDisabled state.
478 @retval EFI_DEVICE_ERROR The block device is not functioning correctly and
479 could not be written. The firmware device may
480 have been partially erased.
481 @retval EFI_INVALID_PARAMETER Invalid parameter. Instance is larger than the max
482 FVB number. Lba index is larger than the last block
483 of the firmware volume.
484
485 **/
486 EFI_STATUS
487 EFIAPI
488 EfiFvbEraseBlock (
489 IN UINTN Instance,
490 IN EFI_LBA Lba
491 )
492 {
493 if (Instance >= mFvbCount) {
494 return EFI_INVALID_PARAMETER;
495 }
496
497 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
498 return EFI_INVALID_PARAMETER;
499 }
500
501 return mFvbEntry[Instance].Fvb->EraseBlocks (mFvbEntry[Instance].Fvb, Lba, 1, EFI_LBA_LIST_TERMINATOR);
502 }
503
504
505 /**
506 Retrieves the attributes and current settings of the specified block,
507 returns resulting attributes in output parameter.
508
509 The EfiFvbGetAttributes() function retrieves the attributes and current
510 settings of the block specified by Instance. If Instance is larger than
511 the max FVB number, this function returns the status code EFI_INVALID_PARAMETER.
512
513 If Attributes is NULL, then ASSERT().
514
515 @param[in] Instance The FV instance to be operated.
516 @param[out] Attributes Pointer to EFI_FVB_ATTRIBUTES_2 in which the
517 attributes and current settings are returned.
518
519 @retval EFI_EFI_SUCCESS The firmware volume attributes were returned.
520 @retval EFI_INVALID_PARAMETER Invalid parameter. Instance is larger than the max FVB number.
521 **/
522 EFI_STATUS
523 EFIAPI
524 EfiFvbGetVolumeAttributes (
525 IN UINTN Instance,
526 OUT EFI_FVB_ATTRIBUTES_2 *Attributes
527 )
528 {
529 ASSERT (Attributes != NULL);
530
531 if (Instance >= mFvbCount) {
532 return EFI_INVALID_PARAMETER;
533 }
534
535 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
536 return EFI_INVALID_PARAMETER;
537 }
538
539 return mFvbEntry[Instance].Fvb->GetAttributes (mFvbEntry[Instance].Fvb, Attributes);
540 }
541
542
543 /**
544 Modify the attributes and current settings of the specified block
545 according to the input parameter.
546
547 The EfiFvbSetAttributes() function sets configurable firmware volume
548 attributes and returns the new settings of the firmware volume specified
549 by Instance. If Instance is larger than the max FVB number, this function
550 returns the status code EFI_INVALID_PARAMETER.
551
552 If Attributes is NULL, then ASSERT().
553
554 @param[in] Instance The FV instance to be operated.
555 @param[in, out]Attributes On input, Attributes is a pointer to EFI_FVB_ATTRIBUTES_2
556 that contains the desired firmware volume settings.
557 On successful return, it contains the new settings of the firmware volume.
558
559 @retval EFI_EFI_SUCCESS The firmware volume attributes were modified successfully.
560 @retval EFI_INVALID_PARAMETER Invalid parameter. Instance is larger than the max FVB number.
561
562 **/
563 EFI_STATUS
564 EFIAPI
565 EfiFvbSetVolumeAttributes (
566 IN UINTN Instance,
567 IN OUT EFI_FVB_ATTRIBUTES_2 *Attributes
568 )
569 {
570 ASSERT (Attributes != NULL);
571
572 if (Instance >= mFvbCount) {
573 return EFI_INVALID_PARAMETER;
574 }
575
576 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
577 return EFI_INVALID_PARAMETER;
578 }
579
580 return mFvbEntry[Instance].Fvb->SetAttributes (mFvbEntry[Instance].Fvb, Attributes);
581 }
582
583
584 /**
585 Retrieves the physical address of the specified memory mapped FV.
586
587 Retrieve the base address of a memory-mapped firmware volume specified by Instance.
588 If Instance is larger than the max FVB number, this function returns the status
589 code EFI_INVALID_PARAMETER.
590
591 If BaseAddress is NULL, then ASSERT().
592
593 @param[in] Instance The FV instance to be operated.
594 @param[out] BaseAddress Pointer to a caller allocated EFI_PHYSICAL_ADDRESS
595 that on successful return, contains the base address
596 of the firmware volume.
597
598 @retval EFI_EFI_SUCCESS The firmware volume base address is returned.
599 @retval EFI_INVALID_PARAMETER Invalid parameter. Instance is larger than the max FVB number.
600
601 **/
602 EFI_STATUS
603 EFIAPI
604 EfiFvbGetPhysicalAddress (
605 IN UINTN Instance,
606 OUT EFI_PHYSICAL_ADDRESS *BaseAddress
607 )
608 {
609 ASSERT (BaseAddress != NULL);
610
611 if (Instance >= mFvbCount) {
612 return EFI_INVALID_PARAMETER;
613 }
614
615 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
616 return EFI_INVALID_PARAMETER;
617 }
618
619 return mFvbEntry[Instance].Fvb->GetPhysicalAddress (mFvbEntry[Instance].Fvb, BaseAddress);
620 }
621
622
623 /**
624 Retrieve the block size of the specified fv.
625
626 The EfiFvbGetBlockSize() function retrieves the size of the requested block.
627 It also returns the number of additional blocks with the identical size.
628 If Instance is larger than the max FVB number, or Lba index is larger than
629 the last block of the firmware volume, this function return the status code
630 EFI_INVALID_PARAMETER.
631
632 If BlockSize is NULL, then ASSERT().
633
634 If NumOfBlocks is NULL, then ASSERT().
635
636 @param[in] Instance The FV instance to be operated.
637 @param[in] Lba Indicates which block to return the size for.
638 @param[out] BlockSize Pointer to a caller-allocated UINTN in which the
639 size of the block is returned.
640 @param[out] NumOfBlocks Pointer to a caller-allocated UINTN in which the
641 number of consecutive blocks, starting with Lba,
642 is returned. All blocks in this range have a size of BlockSize.
643
644 @retval EFI_EFI_SUCCESS The firmware volume base address is returned.
645 @retval EFI_INVALID_PARAMETER Invalid parameter. Instance is larger than the max FVB number.
646 Lba index is larger than the last block of the firmware volume.
647
648 **/
649 EFI_STATUS
650 EFIAPI
651 EfiFvbGetBlockSize (
652 IN UINTN Instance,
653 IN EFI_LBA Lba,
654 OUT UINTN *BlockSize,
655 OUT UINTN *NumOfBlocks
656 )
657 {
658 ASSERT (BlockSize != NULL);
659 ASSERT (NumOfBlocks != NULL);
660
661 if (Instance >= mFvbCount) {
662 return EFI_INVALID_PARAMETER;
663 }
664
665 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
666 return EFI_INVALID_PARAMETER;
667 }
668
669 return mFvbEntry[Instance].Fvb->GetBlockSize (mFvbEntry[Instance].Fvb, Lba, BlockSize, NumOfBlocks);
670 }
671
672
673 /**
674 Erases and initializes a specified range of a firmware volume.
675
676 The EfiFvbEraseCustomBlockRange() function erases the specified range in the firmware
677 volume index by Instance. If Instance is larger than the max FVB number, StartLba or
678 LastLba index is larger than the last block of the firmware volume, StartLba > LastLba
679 or StartLba equal to LastLba but OffsetStartLba > OffsetLastLba, this function return
680 the status code EFI_INVALID_PARAMETER.
681
682 @param[in] Instance The FV instance to be operated.
683 @param[in] StartLba The starting logical block index to be erased.
684 @param[in] OffsetStartLba Offset into the starting block at which to
685 begin erasing.
686 @param[in] LastLba The last logical block index to be erased.
687 @param[in] OffsetLastLba Offset into the last block at which to end erasing.
688
689 @retval EFI_EFI_SUCCESS Successfully erase custom block range
690 @retval EFI_INVALID_PARAMETER Invalid parameter. Instance is larger than the max FVB number.
691 @retval EFI_UNSUPPORTED Firmware volume block device has no this capability.
692
693 **/
694 EFI_STATUS
695 EFIAPI
696 EfiFvbEraseCustomBlockRange (
697 IN UINTN Instance,
698 IN EFI_LBA StartLba,
699 IN UINTN OffsetStartLba,
700 IN EFI_LBA LastLba,
701 IN UINTN OffsetLastLba
702 )
703 {
704 if (Instance >= mFvbCount) {
705 return EFI_INVALID_PARAMETER;
706 }
707
708 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
709 return EFI_INVALID_PARAMETER;
710 }
711
712 if (mFvbEntry[Instance].FvbExtension == NULL) {
713 return EFI_UNSUPPORTED;
714 }
715
716 if (mFvbEntry[Instance].FvbExtension->EraseFvbCustomBlock == NULL) {
717 return EFI_UNSUPPORTED;
718 }
719
720 return mFvbEntry[Instance].FvbExtension->EraseFvbCustomBlock (
721 mFvbEntry[Instance].FvbExtension,
722 StartLba,
723 OffsetStartLba,
724 LastLba,
725 OffsetLastLba
726 );
727 }