]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/EdkFvbServiceLib/Fvb.c
Fix bug in function EfiFvbEraseBlock()
[mirror_edk2.git] / MdeModulePkg / Library / EdkFvbServiceLib / Fvb.c
1 /**@file
2
3 Firmware Volume Block Protocol Runtime 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 updateing.
9
10 If you are using any of these lib functions.you must first call FvbInitialize ().
11
12 Copyright (c) 2006, Intel Corporation
13 All rights reserved. This program and the accompanying materials
14 are licensed and made available under the terms and conditions of the BSD License
15 which accompanies this distribution. The full text of the license may be found at
16 http://opensource.org/licenses/bsd-license.php
17
18 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
19 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
20
21 **/
22
23
24 #include "Fvb.h"
25
26 //
27 // Event for Set Virtual Map Changed Event
28 //
29 STATIC EFI_EVENT mSetVirtualMapChangedEvent = NULL;
30
31 //
32 // Lib will ASSERT if more FVB devices than this are added to the system.
33 //
34 STATIC FVB_ENTRY *mFvbEntry;
35 STATIC EFI_EVENT mFvbRegistration;
36 STATIC UINTN mFvbCount;
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 Status = gBS->AllocatePool (
81 EfiBootServicesData,
82 MemoryMapSize,
83 (VOID**)&MemoryMap
84 );
85 ASSERT_EFI_ERROR (Status);
86
87 //
88 // Get System MemoryMap
89 //
90 Status = gBS->GetMemoryMap (
91 &MemoryMapSize,
92 MemoryMap,
93 &MapKey,
94 &DescriptorSize,
95 &DescriptorVersion
96 );
97 ASSERT_EFI_ERROR (Status);
98
99 MemoryMapPtr = MemoryMap;
100 //
101 // Search the request Address
102 //
103 for (Index = 0; Index < (MemoryMapSize / DescriptorSize); Index++) {
104 if (((EFI_PHYSICAL_ADDRESS)(UINTN)Address >= MemoryMap->PhysicalStart) &&
105 ((EFI_PHYSICAL_ADDRESS)(UINTN)Address < MemoryMap->PhysicalStart
106 + LShiftU64 (MemoryMap->NumberOfPages, EFI_PAGE_SHIFT))) {
107 //
108 // Found it
109 //
110 if (MemoryMap->Attribute & EFI_MEMORY_RUNTIME) {
111 IsRuntime = TRUE;
112 }
113 break;
114 }
115 //
116 // Get next item
117 //
118 MemoryMap = (EFI_MEMORY_DESCRIPTOR *)((UINTN)MemoryMap + DescriptorSize);
119 }
120
121 //
122 // Done
123 //
124 gBS->FreePool (MemoryMapPtr);
125
126 return IsRuntime;
127 }
128
129 /**
130 Update mFvbEntry. Add new entry, or update existing entry if Fvb protocol is
131 reinstalled.
132
133 @param Event The Event that is being processed
134 @param Context Event Context
135
136 **/
137 STATIC
138 VOID
139 EFIAPI
140 FvbNotificationEvent (
141 IN EFI_EVENT Event,
142 IN VOID *Context
143 )
144 {
145 EFI_STATUS Status;
146 UINTN BufferSize;
147 EFI_HANDLE Handle;
148 UINTN Index;
149 UINTN UpdateIndex;
150
151 while (TRUE) {
152 BufferSize = sizeof (Handle);
153 Status = gBS->LocateHandle (
154 ByRegisterNotify,
155 &gEfiFirmwareVolumeBlockProtocolGuid,
156 mFvbRegistration,
157 &BufferSize,
158 &Handle
159 );
160 if (EFI_ERROR (Status)) {
161 //
162 // Exit Path of While Loop....
163 //
164 break;
165 }
166
167 UpdateIndex = MAX_FVB_COUNT;
168 for (Index = 0; Index < mFvbCount; Index++) {
169 if (mFvbEntry[Index].Handle == Handle) {
170 //
171 // If the handle is already in the table just update the protocol
172 //
173 UpdateIndex = Index;
174 break;
175 }
176 }
177
178 if (UpdateIndex == MAX_FVB_COUNT) {
179 //
180 // Use the next free slot for a new entry
181 //
182 UpdateIndex = mFvbCount++;
183 //
184 // Check the UpdateIndex whether exceed the maximum value.
185 //
186 ASSERT (UpdateIndex < MAX_FVB_COUNT);
187 mFvbEntry[UpdateIndex].Handle = Handle;
188 }
189 //
190 // The array does not have enough entries
191 //
192 ASSERT (UpdateIndex < MAX_FVB_COUNT);
193
194 //
195 // Get the interface pointer and if it's ours, skip it
196 //
197 Status = gBS->HandleProtocol (
198 Handle,
199 &gEfiFirmwareVolumeBlockProtocolGuid,
200 (VOID **) &mFvbEntry[UpdateIndex].Fvb
201 );
202 ASSERT_EFI_ERROR (Status);
203
204 Status = gBS->HandleProtocol (
205 Handle,
206 &gEfiFvbExtensionProtocolGuid,
207 (VOID **) &mFvbEntry[UpdateIndex].FvbExtension
208 );
209 if (Status != EFI_SUCCESS) {
210 mFvbEntry[UpdateIndex].FvbExtension = NULL;
211 }
212
213 //
214 // Check the FVB can be accessed in RUNTIME, The FVBs in FVB handle list comes
215 // from two way:
216 // 1) Dxe Core. (FVB information is transferred from FV HOB).
217 // 2) FVB driver.
218 // The FVB produced Dxe core is used for discoverying DXE driver and dispatch. These
219 // FVBs can only be accessed in boot time.
220 // FVB driver will discovery all FV in FLASH and these FVBs can be accessed in runtime.
221 // The FVB itself produced by FVB driver is allocated in runtime memory. So we can
222 // determine the what FVB can be accessed in RUNTIME by judging whether FVB itself is allocated
223 // in RUNTIME memory.
224 //
225 mFvbEntry[UpdateIndex].IsRuntimeAccess = IsRuntimeMemory (mFvbEntry[UpdateIndex].Fvb);
226 }
227 }
228
229 /**
230 Convert all pointers in mFvbEntry after ExitBootServices.
231
232 @param Event The Event that is being processed
233 @param Context Event Context
234
235 **/
236 VOID
237 EFIAPI
238 FvbVirtualAddressChangeNotifyEvent (
239 IN EFI_EVENT Event,
240 IN VOID *Context
241 )
242 {
243 UINTN Index;
244 if (mFvbEntry != NULL) {
245 for (Index = 0; Index < MAX_FVB_COUNT; Index++) {
246 if (!mFvbEntry[Index].IsRuntimeAccess) {
247 continue;
248 }
249
250 if (NULL != mFvbEntry[Index].Fvb) {
251 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->GetBlockSize);
252 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->GetPhysicalAddress);
253 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->GetAttributes);
254 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->SetAttributes);
255 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->Read);
256 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->Write);
257 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb->EraseBlocks);
258 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].Fvb);
259 }
260
261 if (NULL != mFvbEntry[Index].FvbExtension) {
262 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].FvbExtension->EraseFvbCustomBlock);
263 EfiConvertPointer (0x0, (VOID **) &mFvbEntry[Index].FvbExtension);
264 }
265 }
266
267 EfiConvertPointer (0x0, (VOID **) &mFvbEntry);
268 }
269 }
270
271 /**
272 Library constructor function entry.
273
274 @param ImageHandle The handle of image who call this libary.
275 @param SystemTable The point of System Table.
276
277 @retval EFI_SUCESS Sucess construct this library.
278 @retval Others Fail to contruct this libary.
279 **/
280 EFI_STATUS
281 EFIAPI
282 FvbLibInitialize (
283 IN EFI_HANDLE ImageHandle,
284 IN EFI_SYSTEM_TABLE *SystemTable
285 )
286 {
287 UINTN Status;
288 mFvbCount = 0;
289
290 Status = gBS->AllocatePool (
291 EfiRuntimeServicesData,
292 (UINTN) sizeof (FVB_ENTRY) * MAX_FVB_COUNT,
293 (VOID *) &mFvbEntry
294 );
295
296 if (EFI_ERROR (Status)) {
297 return Status;
298 }
299
300 ZeroMem (mFvbEntry, sizeof (FVB_ENTRY) * MAX_FVB_COUNT);
301
302 EfiCreateProtocolNotifyEvent (
303 &gEfiFirmwareVolumeBlockProtocolGuid,
304 TPL_CALLBACK,
305 FvbNotificationEvent,
306 NULL,
307 &mFvbRegistration
308 );
309
310 //
311 // Register SetVirtualAddressMap () notify function
312 //
313 Status = gBS->CreateEvent (
314 EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE,
315 TPL_NOTIFY,
316 FvbVirtualAddressChangeNotifyEvent,
317 NULL,
318 &mSetVirtualMapChangedEvent
319 );
320 ASSERT_EFI_ERROR (Status);
321
322 return EFI_SUCCESS;
323 }
324
325 //
326 // =============================================================================
327 // The following functions wrap Fvb protocol in the Runtime Lib functions.
328 // The Instance translates into Fvb instance. The Fvb order defined by HOBs and
329 // thus the sequence of FVB protocol addition define Instance.
330 //
331 // EfiFvbInitialize () must be called before any of the following functions
332 // must be called.
333 // =============================================================================
334 //
335
336 /**
337 Reads specified number of bytes into a buffer from the specified block
338
339 @param Instance The FV instance to be read from.
340 @param Lba The logical block address to be read from
341 @param Offset Offset into the block at which to begin reading
342 @param NumBytes Pointer that on input contains the total size of
343 the buffer. On output, it contains the total number
344 of bytes read
345 @param Buffer Pointer to a caller allocated buffer that will be
346 used to hold the data read
347
348 @retval EFI_INVALID_PARAMETER Invalid parameter
349 @retval EFI_SUCESS Sucess to Read block
350 @retval Others Fail to read block
351 **/
352 EFI_STATUS
353 EfiFvbReadBlock (
354 IN UINTN Instance,
355 IN EFI_LBA Lba,
356 IN UINTN Offset,
357 IN OUT UINTN *NumBytes,
358 IN UINT8 *Buffer
359 )
360 {
361 if (Instance >= mFvbCount) {
362 return EFI_INVALID_PARAMETER;
363 }
364
365 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
366 return EFI_INVALID_PARAMETER;
367 }
368
369 return mFvbEntry[Instance].Fvb->Read (mFvbEntry[Instance].Fvb, Lba, Offset, NumBytes, Buffer);
370 }
371
372 /**
373 Writes specified number of bytes from the input buffer to the block
374
375 @param Instance The FV instance to be written to
376 @param Lba The starting logical block index to write to
377 @param Offset Offset into the block at which to begin writing
378 @param NumBytes Pointer that on input contains the total size of
379 the buffer. On output, it contains the total number
380 of bytes actually written
381 @param Buffer Pointer to a caller allocated buffer that contains
382 the source for the write
383
384 @retval EFI_INVALID_PARAMETER Invalid parameter
385 @retval EFI_SUCESS Sucess to write block
386 @retval Others Fail to write block
387 **/
388 EFI_STATUS
389 EfiFvbWriteBlock (
390 IN UINTN Instance,
391 IN EFI_LBA Lba,
392 IN UINTN Offset,
393 IN OUT UINTN *NumBytes,
394 IN UINT8 *Buffer
395 )
396 {
397 if (Instance >= mFvbCount) {
398 return EFI_INVALID_PARAMETER;
399 }
400
401 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
402 return EFI_INVALID_PARAMETER;
403 }
404
405 return mFvbEntry[Instance].Fvb->Write (mFvbEntry[Instance].Fvb, Lba, Offset, NumBytes, Buffer);
406 }
407
408 /**
409 Erases and initializes a firmware volume block
410
411 @param Instance The FV instance to be erased
412 @param Lba The logical block index to be erased
413
414 @retval EFI_INVALID_PARAMETER Invalid parameter
415 @retval EFI_SUCESS Sucess to erase block
416 @retval Others Fail to erase block
417 **/
418 EFI_STATUS
419 EfiFvbEraseBlock (
420 IN UINTN Instance,
421 IN EFI_LBA Lba
422 )
423 {
424 if (Instance >= mFvbCount) {
425 return EFI_INVALID_PARAMETER;
426 }
427
428 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
429 return EFI_INVALID_PARAMETER;
430 }
431
432 return mFvbEntry[Instance].Fvb->EraseBlocks (mFvbEntry[Instance].Fvb, Lba, 1, EFI_LBA_LIST_TERMINATOR);
433 }
434
435 /**
436 Retrieves attributes, insures positive polarity of attribute bits, returns
437 resulting attributes in output parameter
438
439 @param Instance The FV instance whose attributes is going to be returned
440 @param Attributes Output buffer which contains attributes
441
442 @retval EFI_INVALID_PARAMETER Invalid parameter
443 @retval EFI_SUCESS Sucess to get Fv attribute
444 @retval Others Fail to get Fv attribute
445 **/
446 EFI_STATUS
447 EfiFvbGetVolumeAttributes (
448 IN UINTN Instance,
449 OUT EFI_FVB_ATTRIBUTES *Attributes
450 )
451 {
452 if (Instance >= mFvbCount) {
453 return EFI_INVALID_PARAMETER;
454 }
455
456 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
457 return EFI_INVALID_PARAMETER;
458 }
459
460 return mFvbEntry[Instance].Fvb->GetAttributes (mFvbEntry[Instance].Fvb, Attributes);
461 }
462
463 /**
464 Modifies the current settings of the firmware volume according to the
465 input parameter, and returns the new setting of the volume
466
467 @param Instance The FV instance whose attributes is going to be
468 modified
469 @param Attributes On input, it is a pointer to EFI_FVB_ATTRIBUTES
470 containing the desired firmware volume settings.
471 On successful return, it contains the new settings
472 of the firmware volume
473
474 @retval EFI_INVALID_PARAMETER Invalid parameter
475 @retval EFI_SUCESS Sucess to set Fv attribute
476 @retval Others Fail to set Fv attribute
477 **/
478 EFI_STATUS
479 EfiFvbSetVolumeAttributes (
480 IN UINTN Instance,
481 IN OUT EFI_FVB_ATTRIBUTES *Attributes
482 )
483 {
484 if (Instance >= mFvbCount) {
485 return EFI_INVALID_PARAMETER;
486 }
487
488 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
489 return EFI_INVALID_PARAMETER;
490 }
491
492 return mFvbEntry[Instance].Fvb->SetAttributes (mFvbEntry[Instance].Fvb, Attributes);
493 }
494
495 /**
496 Retrieves the physical address of a memory mapped FV
497
498 @param Instance The FV instance whose base address is going to be
499 returned
500 @param BaseAddress Pointer to a caller allocated EFI_PHYSICAL_ADDRESS
501 that on successful return, contains the base address
502 of the firmware volume.
503
504 @retval EFI_INVALID_PARAMETER Invalid parameter
505 @retval EFI_SUCESS Sucess to get physical address
506 @retval Others Fail to get physical address
507 **/
508 EFI_STATUS
509 EfiFvbGetPhysicalAddress (
510 IN UINTN Instance,
511 OUT EFI_PHYSICAL_ADDRESS *BaseAddress
512 )
513 {
514 if (Instance >= mFvbCount) {
515 return EFI_INVALID_PARAMETER;
516 }
517
518 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
519 return EFI_INVALID_PARAMETER;
520 }
521
522 return mFvbEntry[Instance].Fvb->GetPhysicalAddress (mFvbEntry[Instance].Fvb, BaseAddress);
523 }
524
525 /**
526 Retrieve the size of a logical block
527
528 @param Instance The FV instance whose block size is going to be
529 returned
530 @param Lba Indicates which block to return the size for.
531 @param BlockSize A pointer to a caller allocated UINTN in which
532 the size of the block is returned
533 @param NumOfBlocks a pointer to a caller allocated UINTN in which the
534 number of consecutive blocks starting with Lba is
535 returned. All blocks in this range have a size of
536 BlockSize
537
538 @retval EFI_INVALID_PARAMETER Invalid parameter
539 @retval EFI_SUCESS Sucess to get block size
540 @retval Others Fail to get block size
541 **/
542 EFI_STATUS
543 EfiFvbGetBlockSize (
544 IN UINTN Instance,
545 IN EFI_LBA Lba,
546 OUT UINTN *BlockSize,
547 OUT UINTN *NumOfBlocks
548 )
549 {
550 if (Instance >= mFvbCount) {
551 return EFI_INVALID_PARAMETER;
552 }
553
554 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
555 return EFI_INVALID_PARAMETER;
556 }
557
558 return mFvbEntry[Instance].Fvb->GetBlockSize (mFvbEntry[Instance].Fvb, Lba, BlockSize, NumOfBlocks);
559 }
560
561 /**
562 Erases and initializes a specified range of a firmware volume
563
564 @param Instance The FV instance to be erased
565 @param StartLba The starting logical block index to be erased
566 @param OffsetStartLba Offset into the starting block at which to
567 begin erasing
568 @param LastLba The last logical block index to be erased
569 @param OffsetLastLba Offset into the last block at which to end erasing
570
571 @retval EFI_INVALID_PARAMETER Invalid parameter
572 @retval EFI_SUCESS Sucess to erase custom block range
573 @retval Others Fail to erase custom block range
574 **/
575 EFI_STATUS
576 EfiFvbEraseCustomBlockRange (
577 IN UINTN Instance,
578 IN EFI_LBA StartLba,
579 IN UINTN OffsetStartLba,
580 IN EFI_LBA LastLba,
581 IN UINTN OffsetLastLba
582 )
583 {
584 if (Instance >= mFvbCount) {
585 return EFI_INVALID_PARAMETER;
586 }
587
588 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
589 return EFI_INVALID_PARAMETER;
590 }
591
592 if (!(mFvbEntry[Instance].FvbExtension)) {
593 return EFI_UNSUPPORTED;
594 }
595
596 if (!(mFvbEntry[Instance].FvbExtension->EraseFvbCustomBlock)) {
597 return EFI_UNSUPPORTED;
598 }
599
600 return mFvbEntry[Instance].FvbExtension->EraseFvbCustomBlock (
601 mFvbEntry[Instance].FvbExtension,
602 StartLba,
603 OffsetStartLba,
604 LastLba,
605 OffsetLastLba
606 );
607 }