]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c
Build drivers for IPF, X64, IA32 arch
[mirror_edk2.git] / MdeModulePkg / Library / EdkFvbServiceLib / X64 / 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 #include "Fvb.h"
24
25 //
26 // Event for Exit Boot Services Callback
27 //
28 STATIC EFI_EVENT mExitBootServicesEvent = NULL;
29
30 //
31 // Lib will ASSERT if more FVB devices than this are added to the system.
32 //
33 STATIC FVB_ENTRY *mFvbEntry;
34 STATIC EFI_EVENT mFvbRegistration;
35 STATIC BOOLEAN mEfiFvbInitialized = FALSE;
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_EXIT_BOOT_SERVICES,
315 TPL_NOTIFY,
316 FvbVirtualAddressChangeNotifyEvent,
317 NULL,
318 &mExitBootServicesEvent
319 );
320 ASSERT_EFI_ERROR (Status);
321
322 mEfiFvbInitialized = TRUE;
323
324 return EFI_SUCCESS;
325 }
326
327 //
328 // =============================================================================
329 // The following functions wrap Fvb protocol in the Runtime Lib functions.
330 // The Instance translates into Fvb instance. The Fvb order defined by HOBs and
331 // thus the sequence of FVB protocol addition define Instance.
332 //
333 // EfiFvbInitialize () must be called before any of the following functions
334 // must be called.
335 // =============================================================================
336 //
337
338 /**
339 Reads specified number of bytes into a buffer from the specified block
340
341 @param Instance The FV instance to be read from.
342 @param Lba The logical block address to be read from
343 @param Offset Offset into the block at which to begin reading
344 @param NumBytes Pointer that on input contains the total size of
345 the buffer. On output, it contains the total number
346 of bytes read
347 @param Buffer Pointer to a caller allocated buffer that will be
348 used to hold the data read
349
350 @retval EFI_INVALID_PARAMETER Invalid parameter
351 @retval EFI_SUCESS Sucess to Read block
352 @retval Others Fail to read block
353 **/
354 EFI_STATUS
355 EfiFvbReadBlock (
356 IN UINTN Instance,
357 IN EFI_LBA Lba,
358 IN UINTN Offset,
359 IN OUT UINTN *NumBytes,
360 IN UINT8 *Buffer
361 )
362 {
363 if (Instance >= mFvbCount) {
364 return EFI_INVALID_PARAMETER;
365 }
366
367 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
368 return EFI_INVALID_PARAMETER;
369 }
370
371 return mFvbEntry[Instance].Fvb->Read (mFvbEntry[Instance].Fvb, Lba, Offset, NumBytes, Buffer);
372 }
373
374 /**
375 Writes specified number of bytes from the input buffer to the block
376
377 @param Instance The FV instance to be written to
378 @param Lba The starting logical block index to write to
379 @param Offset Offset into the block at which to begin writing
380 @param NumBytes Pointer that on input contains the total size of
381 the buffer. On output, it contains the total number
382 of bytes actually written
383 @param Buffer Pointer to a caller allocated buffer that contains
384 the source for the write
385
386 @retval EFI_INVALID_PARAMETER Invalid parameter
387 @retval EFI_SUCESS Sucess to write block
388 @retval Others Fail to write block
389 **/
390 EFI_STATUS
391 EfiFvbWriteBlock (
392 IN UINTN Instance,
393 IN EFI_LBA Lba,
394 IN UINTN Offset,
395 IN OUT UINTN *NumBytes,
396 IN UINT8 *Buffer
397 )
398 {
399 if (Instance >= mFvbCount) {
400 return EFI_INVALID_PARAMETER;
401 }
402
403 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
404 return EFI_INVALID_PARAMETER;
405 }
406
407 return mFvbEntry[Instance].Fvb->Write (mFvbEntry[Instance].Fvb, Lba, Offset, NumBytes, Buffer);
408 }
409
410 /**
411 Erases and initializes a firmware volume block
412
413 @param Instance The FV instance to be erased
414 @param Lba The logical block index to be erased
415
416 @retval EFI_INVALID_PARAMETER Invalid parameter
417 @retval EFI_SUCESS Sucess to erase block
418 @retval Others Fail to erase block
419 **/
420 EFI_STATUS
421 EfiFvbEraseBlock (
422 IN UINTN Instance,
423 IN EFI_LBA Lba
424 )
425 {
426 if (Instance >= mFvbCount) {
427 return EFI_INVALID_PARAMETER;
428 }
429
430 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
431 return EFI_INVALID_PARAMETER;
432 }
433
434 return mFvbEntry[Instance].Fvb->EraseBlocks (mFvbEntry[Instance].Fvb, Lba, -1);
435 }
436
437 /**
438 Retrieves attributes, insures positive polarity of attribute bits, returns
439 resulting attributes in output parameter
440
441 @param Instance The FV instance whose attributes is going to be returned
442 @param Attributes Output buffer which contains attributes
443
444 @retval EFI_INVALID_PARAMETER Invalid parameter
445 @retval EFI_SUCESS Sucess to get Fv attribute
446 @retval Others Fail to get Fv attribute
447 **/
448 EFI_STATUS
449 EfiFvbGetVolumeAttributes (
450 IN UINTN Instance,
451 OUT EFI_FVB_ATTRIBUTES *Attributes
452 )
453 {
454 if (Instance >= mFvbCount) {
455 return EFI_INVALID_PARAMETER;
456 }
457
458 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
459 return EFI_INVALID_PARAMETER;
460 }
461
462 return mFvbEntry[Instance].Fvb->GetAttributes (mFvbEntry[Instance].Fvb, Attributes);
463 }
464
465 /**
466 Modifies the current settings of the firmware volume according to the
467 input parameter, and returns the new setting of the volume
468
469 @param Instance The FV instance whose attributes is going to be
470 modified
471 @param Attributes On input, it is a pointer to EFI_FVB_ATTRIBUTES
472 containing the desired firmware volume settings.
473 On successful return, it contains the new settings
474 of the firmware volume
475
476 @retval EFI_INVALID_PARAMETER Invalid parameter
477 @retval EFI_SUCESS Sucess to set Fv attribute
478 @retval Others Fail to set Fv attribute
479 **/
480 EFI_STATUS
481 EfiFvbSetVolumeAttributes (
482 IN UINTN Instance,
483 IN EFI_FVB_ATTRIBUTES Attributes
484 )
485 {
486 if (Instance >= mFvbCount) {
487 return EFI_INVALID_PARAMETER;
488 }
489
490 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
491 return EFI_INVALID_PARAMETER;
492 }
493
494 return mFvbEntry[Instance].Fvb->SetAttributes (mFvbEntry[Instance].Fvb, &Attributes);
495 }
496
497 /**
498 Retrieves the physical address of a memory mapped FV
499
500 @param Instance The FV instance whose base address is going to be
501 returned
502 @param BaseAddress Pointer to a caller allocated EFI_PHYSICAL_ADDRESS
503 that on successful return, contains the base address
504 of the firmware volume.
505
506 @retval EFI_INVALID_PARAMETER Invalid parameter
507 @retval EFI_SUCESS Sucess to get physical address
508 @retval Others Fail to get physical address
509 **/
510 EFI_STATUS
511 EfiFvbGetPhysicalAddress (
512 IN UINTN Instance,
513 OUT EFI_PHYSICAL_ADDRESS *BaseAddress
514 )
515 {
516 if (Instance >= mFvbCount) {
517 return EFI_INVALID_PARAMETER;
518 }
519
520 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
521 return EFI_INVALID_PARAMETER;
522 }
523
524 return mFvbEntry[Instance].Fvb->GetPhysicalAddress (mFvbEntry[Instance].Fvb, BaseAddress);
525 }
526
527 /**
528 Retrieve the size of a logical block
529
530 @param Instance The FV instance whose block size is going to be
531 returned
532 @param Lba Indicates which block to return the size for.
533 @param BlockSize A pointer to a caller allocated UINTN in which
534 the size of the block is returned
535 @param NumOfBlocks a pointer to a caller allocated UINTN in which the
536 number of consecutive blocks starting with Lba is
537 returned. All blocks in this range have a size of
538 BlockSize
539
540 @retval EFI_INVALID_PARAMETER Invalid parameter
541 @retval EFI_SUCESS Sucess to get block size
542 @retval Others Fail to get block size
543 **/
544 EFI_STATUS
545 EfiFvbGetBlockSize (
546 IN UINTN Instance,
547 IN EFI_LBA Lba,
548 OUT UINTN *BlockSize,
549 OUT UINTN *NumOfBlocks
550 )
551 {
552 if (Instance >= mFvbCount) {
553 return EFI_INVALID_PARAMETER;
554 }
555
556 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
557 return EFI_INVALID_PARAMETER;
558 }
559
560 return mFvbEntry[Instance].Fvb->GetBlockSize (mFvbEntry[Instance].Fvb, Lba, BlockSize, NumOfBlocks);
561 }
562
563 /**
564 Erases and initializes a specified range of a firmware volume
565
566 @param Instance The FV instance to be erased
567 @param StartLba The starting logical block index to be erased
568 @param OffsetStartLba Offset into the starting block at which to
569 begin erasing
570 @param LastLba The last logical block index to be erased
571 @param OffsetLastLba Offset into the last block at which to end erasing
572
573 @retval EFI_INVALID_PARAMETER Invalid parameter
574 @retval EFI_SUCESS Sucess to erase custom block range
575 @retval Others Fail to erase custom block range
576 **/
577 EFI_STATUS
578 EfiFvbEraseCustomBlockRange (
579 IN UINTN Instance,
580 IN EFI_LBA StartLba,
581 IN UINTN OffsetStartLba,
582 IN EFI_LBA LastLba,
583 IN UINTN OffsetLastLba
584 )
585 {
586 if (Instance >= mFvbCount) {
587 return EFI_INVALID_PARAMETER;
588 }
589
590 if (EfiAtRuntime() && !mFvbEntry[Instance].IsRuntimeAccess) {
591 return EFI_INVALID_PARAMETER;
592 }
593
594 if (!(mFvbEntry[Instance].FvbExtension)) {
595 return EFI_UNSUPPORTED;
596 }
597
598 if (!(mFvbEntry[Instance].FvbExtension->EraseFvbCustomBlock)) {
599 return EFI_UNSUPPORTED;
600 }
601
602 return mFvbEntry[Instance].FvbExtension->EraseFvbCustomBlock (
603 mFvbEntry[Instance].FvbExtension,
604 StartLba,
605 OffsetStartLba,
606 LastLba,
607 OffsetLastLba
608 );
609 }