VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiRuntimeLib/RuntimeLib.c

最後變更 在這個檔案是 105670,由 vboxsync 提交於 6 月 前

Devices/EFI/FirmwareNew: Merge edk2-stable-202405 and make it build on aarch64, bugref:4643

  • 屬性 svn:eol-style 設為 native
檔案大小: 37.5 KB
 
1/** @file
2 UEFI Runtime Library implementation for non IPF processor types.
3
4 This library hides the global variable for the EFI Runtime Services so the
5 caller does not need to deal with the possibility of being called from an
6 OS virtual address space. All pointer values are different for a virtual
7 mapping than from the normal physical mapping at boot services time.
8
9Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
10SPDX-License-Identifier: BSD-2-Clause-Patent
11
12**/
13
14#include <Uefi.h>
15#include <Library/UefiRuntimeLib.h>
16#include <Library/DebugLib.h>
17#include <Library/UefiBootServicesTableLib.h>
18#include <Library/UefiRuntimeServicesTableLib.h>
19#include <Guid/EventGroup.h>
20
21///
22/// Driver Lib Module Globals
23///
24EFI_EVENT mEfiVirtualNotifyEvent;
25EFI_EVENT mEfiExitBootServicesEvent;
26BOOLEAN mEfiGoneVirtual = FALSE;
27BOOLEAN mEfiAtRuntime = FALSE;
28EFI_RUNTIME_SERVICES *mInternalRT;
29
30/**
31 Set AtRuntime flag as TRUE after ExitBootServices.
32
33 @param[in] Event The Event that is being processed.
34 @param[in] Context The Event Context.
35
36**/
37VOID
38EFIAPI
39RuntimeLibExitBootServicesEvent (
40 IN EFI_EVENT Event,
41 IN VOID *Context
42 )
43{
44 mEfiAtRuntime = TRUE;
45}
46
47/**
48 Fixup internal data so that EFI can be call in virtual mode.
49 Call the passed in Child Notify event and convert any pointers in
50 lib to virtual mode.
51
52 @param[in] Event The Event that is being processed.
53 @param[in] Context The Event Context.
54**/
55VOID
56EFIAPI
57RuntimeLibVirtualNotifyEvent (
58 IN EFI_EVENT Event,
59 IN VOID *Context
60 )
61{
62 //
63 // Update global for Runtime Services Table and IO
64 //
65 EfiConvertPointer (0, (VOID **)&mInternalRT);
66
67 mEfiGoneVirtual = TRUE;
68}
69
70/**
71 Initialize runtime Driver Lib if it has not yet been initialized.
72 It will ASSERT() if gRT is NULL or gBS is NULL.
73 It will ASSERT() if that operation fails.
74
75 @param[in] ImageHandle The firmware allocated handle for the EFI image.
76 @param[in] SystemTable A pointer to the EFI System Table.
77
78 @return EFI_STATUS always returns EFI_SUCCESS except EFI_ALREADY_STARTED if already started.
79**/
80EFI_STATUS
81EFIAPI
82RuntimeDriverLibConstruct (
83 IN EFI_HANDLE ImageHandle,
84 IN EFI_SYSTEM_TABLE *SystemTable
85 )
86{
87 EFI_STATUS Status;
88
89 ASSERT (gRT != NULL);
90 ASSERT (gBS != NULL);
91
92 mInternalRT = gRT;
93 //
94 // Register SetVirtualAddressMap () notify function
95 //
96 Status = gBS->CreateEvent (
97 EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE,
98 TPL_NOTIFY,
99 RuntimeLibVirtualNotifyEvent,
100 NULL,
101 &mEfiVirtualNotifyEvent
102 );
103
104 ASSERT_EFI_ERROR (Status);
105
106 Status = gBS->CreateEvent (
107 EVT_SIGNAL_EXIT_BOOT_SERVICES,
108 TPL_NOTIFY,
109 RuntimeLibExitBootServicesEvent,
110 NULL,
111 &mEfiExitBootServicesEvent
112 );
113
114 ASSERT_EFI_ERROR (Status);
115
116 return Status;
117}
118
119/**
120 If a runtime driver exits with an error, it must call this routine
121 to free the allocated resource before the exiting.
122 It will ASSERT() if gBS is NULL.
123 It will ASSERT() if that operation fails.
124
125 @param[in] ImageHandle The firmware allocated handle for the EFI image.
126 @param[in] SystemTable A pointer to the EFI System Table.
127
128 @retval EFI_SUCCESS The Runtime Driver Lib shutdown successfully.
129 @retval EFI_UNSUPPORTED Runtime Driver lib was not initialized.
130**/
131EFI_STATUS
132EFIAPI
133RuntimeDriverLibDeconstruct (
134 IN EFI_HANDLE ImageHandle,
135 IN EFI_SYSTEM_TABLE *SystemTable
136 )
137{
138 EFI_STATUS Status;
139
140 //
141 // Close SetVirtualAddressMap () notify function
142 //
143 ASSERT (gBS != NULL);
144 Status = gBS->CloseEvent (mEfiVirtualNotifyEvent);
145 ASSERT_EFI_ERROR (Status);
146
147 Status = gBS->CloseEvent (mEfiExitBootServicesEvent);
148 ASSERT_EFI_ERROR (Status);
149
150 return Status;
151}
152
153/**
154 This function allows the caller to determine if UEFI ExitBootServices() has been called.
155
156 This function returns TRUE after all the EVT_SIGNAL_EXIT_BOOT_SERVICES functions have
157 executed as a result of the OS calling ExitBootServices(). Prior to this time FALSE
158 is returned. This function is used by runtime code to decide it is legal to access
159 services that go away after ExitBootServices().
160
161 @retval TRUE The system has finished executing the EVT_SIGNAL_EXIT_BOOT_SERVICES event.
162 @retval FALSE The system has not finished executing the EVT_SIGNAL_EXIT_BOOT_SERVICES event.
163
164**/
165BOOLEAN
166EFIAPI
167EfiAtRuntime (
168 VOID
169 )
170{
171 return mEfiAtRuntime;
172}
173
174/**
175 This function allows the caller to determine if UEFI SetVirtualAddressMap() has been called.
176
177 This function returns TRUE after all the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE functions have
178 executed as a result of the OS calling SetVirtualAddressMap(). Prior to this time FALSE
179 is returned. This function is used by runtime code to decide it is legal to access services
180 that go away after SetVirtualAddressMap().
181
182 @retval TRUE The system has finished executing the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.
183 @retval FALSE The system has not finished executing the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.
184
185**/
186BOOLEAN
187EFIAPI
188EfiGoneVirtual (
189 VOID
190 )
191{
192 return mEfiGoneVirtual;
193}
194
195/**
196 This service is a wrapper for the UEFI Runtime Service ResetSystem().
197
198 The ResetSystem()function resets the entire platform, including all processors and devices,and reboots the system.
199 Calling this interface with ResetType of EfiResetCold causes a system-wide reset. This sets all circuitry within
200 the system to its initial state. This type of reset is asynchronous to system operation and operates without regard
201 to cycle boundaries. EfiResetCold is tantamount to a system power cycle.
202 Calling this interface with ResetType of EfiResetWarm causes a system-wide initialization. The processors are set to
203 their initial state, and pending cycles are not corrupted. If the system does not support this reset type, then an
204 EfiResetCold must be performed.
205 Calling this interface with ResetType of EfiResetShutdown causes the system to enter a power state equivalent to the
206 ACPI G2/S5 or G3 states. If the system does not support this reset type, then when the system is rebooted, it should
207 exhibit the EfiResetCold attributes.
208 The platform may optionally log the parameters from any non-normal reset that occurs.
209 The ResetSystem() function does not return.
210
211 @param ResetType The type of reset to perform.
212 @param ResetStatus The status code for the reset. If the system reset is part of a normal operation, the status code
213 would be EFI_SUCCESS. If the system reset is due to some type of failure the most appropriate EFI
214 Status code would be used.
215 @param DataSizeThe size, in bytes, of ResetData.
216 @param ResetData For a ResetType of EfiResetCold, EfiResetWarm, or EfiResetShutdown the data buffer starts with a
217 Null-terminated Unicode string, optionally followed by additional binary data. The string is a
218 description that the caller may use to further indicate the reason for the system reset. ResetData
219 is only valid if ResetStatus is something other then EFI_SUCCESS. This pointer must be a physical
220 address. For a ResetType of EfiRestUpdate the data buffer also starts with a Null-terminated string
221 that is followed by a physical VOID * to an EFI_CAPSULE_HEADER.
222
223**/
224VOID
225EFIAPI
226EfiResetSystem (
227 IN EFI_RESET_TYPE ResetType,
228 IN EFI_STATUS ResetStatus,
229 IN UINTN DataSize,
230 IN VOID *ResetData OPTIONAL
231 )
232{
233 mInternalRT->ResetSystem (ResetType, ResetStatus, DataSize, ResetData);
234}
235
236/**
237 This service is a wrapper for the UEFI Runtime Service GetTime().
238
239 The GetTime() function returns a time that was valid sometime during the call to the function.
240 While the returned EFI_TIME structure contains TimeZone and Daylight savings time information,
241 the actual clock does not maintain these values. The current time zone and daylight saving time
242 information returned by GetTime() are the values that were last set via SetTime().
243 The GetTime() function should take approximately the same amount of time to read the time each
244 time it is called. All reported device capabilities are to be rounded up.
245 During runtime, if a PC-AT CMOS device is present in the platform the caller must synchronize
246 access to the device before calling GetTime().
247
248 @param Time A pointer to storage to receive a snapshot of the current time.
249 @param Capabilities An optional pointer to a buffer to receive the real time clock device's
250 capabilities.
251
252 @retval EFI_SUCCESS The operation completed successfully.
253 @retval EFI_INVALID_PARAMETER Time is NULL.
254 @retval EFI_DEVICE_ERROR The time could not be retrieved due to a hardware error.
255 @retval EFI_UNSUPPORTED This call is not supported by this platform at the time the call is made.
256 The platform should describe this runtime service as unsupported at runtime
257 via an EFI_RT_PROPERTIES_TABLE configuration table.
258
259**/
260EFI_STATUS
261EFIAPI
262EfiGetTime (
263 OUT EFI_TIME *Time,
264 OUT EFI_TIME_CAPABILITIES *Capabilities OPTIONAL
265 )
266{
267 return mInternalRT->GetTime (Time, Capabilities);
268}
269
270/**
271 This service is a wrapper for the UEFI Runtime Service SetTime().
272
273 The SetTime() function sets the real time clock device to the supplied time, and records the
274 current time zone and daylight savings time information. The SetTime() function is not allowed
275 to loop based on the current time. For example, if the device does not support a hardware reset
276 for the sub-resolution time, the code is not to implement the feature by waiting for the time to
277 wrap.
278 During runtime, if a PC-AT CMOS device is present in the platform the caller must synchronize
279 access to the device before calling SetTime().
280
281 @param Time A pointer to the current time. Type EFI_TIME is defined in the GetTime()
282 function description. Full error checking is performed on the different
283 fields of the EFI_TIME structure (refer to the EFI_TIME definition in the
284 GetTime() function description for full details), and EFI_INVALID_PARAMETER
285 is returned if any field is out of range.
286
287 @retval EFI_SUCCESS The operation completed successfully.
288 @retval EFI_INVALID_PARAMETER A time field is out of range.
289 @retval EFI_DEVICE_ERROR The time could not be set due to a hardware error.
290 @retval EFI_UNSUPPORTED This call is not supported by this platform at the time the call is made.
291 The platform should describe this runtime service as unsupported at runtime
292 via an EFI_RT_PROPERTIES_TABLE configuration table.
293
294**/
295EFI_STATUS
296EFIAPI
297EfiSetTime (
298 IN EFI_TIME *Time
299 )
300{
301 return mInternalRT->SetTime (Time);
302}
303
304/**
305 This service is a wrapper for the UEFI Runtime Service GetWakeupTime().
306
307 The alarm clock time may be rounded from the set alarm clock time to be within the resolution
308 of the alarm clock device. The resolution of the alarm clock device is defined to be one second.
309 During runtime, if a PC-AT CMOS device is present in the platform the caller must synchronize
310 access to the device before calling GetWakeupTime().
311
312 @param Enabled Indicates if the alarm is currently enabled or disabled.
313 @param Pending Indicates if the alarm signal is pending and requires acknowledgement.
314 @param Time The current alarm setting. Type EFI_TIME is defined in the GetTime()
315 function description.
316
317 @retval EFI_SUCCESS The alarm settings were returned.
318 @retval EFI_INVALID_PARAMETER Enabled is NULL.
319 @retval EFI_INVALID_PARAMETER Pending is NULL.
320 @retval EFI_INVALID_PARAMETER Time is NULL.
321 @retval EFI_DEVICE_ERROR The wakeup time could not be retrieved due to a hardware error.
322 @retval EFI_UNSUPPORTED This call is not supported by this platform at the time the call is made.
323 The platform should describe this runtime service as unsupported at runtime
324 via an EFI_RT_PROPERTIES_TABLE configuration table.
325
326**/
327EFI_STATUS
328EFIAPI
329EfiGetWakeupTime (
330 OUT BOOLEAN *Enabled,
331 OUT BOOLEAN *Pending,
332 OUT EFI_TIME *Time
333 )
334{
335 return mInternalRT->GetWakeupTime (Enabled, Pending, Time);
336}
337
338/**
339 This service is a wrapper for the UEFI Runtime Service SetWakeupTime()
340
341 Setting a system wakeup alarm causes the system to wake up or power on at the set time.
342 When the alarm fires, the alarm signal is latched until it is acknowledged by calling SetWakeupTime()
343 to disable the alarm. If the alarm fires before the system is put into a sleeping or off state,
344 since the alarm signal is latched the system will immediately wake up. If the alarm fires while
345 the system is off and there is insufficient power to power on the system, the system is powered
346 on when power is restored.
347
348 @param Enable Enable or disable the wakeup alarm.
349 @param Time If Enable is TRUE, the time to set the wakeup alarm for. Type EFI_TIME
350 is defined in the GetTime() function description. If Enable is FALSE,
351 then this parameter is optional, and may be NULL.
352
353 @retval EFI_SUCCESS If Enable is TRUE, then the wakeup alarm was enabled.
354 If Enable is FALSE, then the wakeup alarm was disabled.
355 @retval EFI_INVALID_PARAMETER A time field is out of range.
356 @retval EFI_DEVICE_ERROR The wakeup time could not be set due to a hardware error.
357 @retval EFI_UNSUPPORTED This call is not supported by this platform at the time the call is made.
358 The platform should describe this runtime service as unsupported at runtime
359 via an EFI_RT_PROPERTIES_TABLE configuration table.
360
361**/
362EFI_STATUS
363EFIAPI
364EfiSetWakeupTime (
365 IN BOOLEAN Enable,
366 IN EFI_TIME *Time OPTIONAL
367 )
368{
369 return mInternalRT->SetWakeupTime (Enable, Time);
370}
371
372/**
373 This service is a wrapper for the UEFI Runtime Service GetVariable().
374
375 Each vendor may create and manage its own variables without the risk of name conflicts by
376 using a unique VendorGuid. When a variable is set its Attributes are supplied to indicate
377 how the data variable should be stored and maintained by the system. The attributes affect
378 when the variable may be accessed and volatility of the data. Any attempts to access a variable
379 that does not have the attribute set for runtime access will yield the EFI_NOT_FOUND error.
380 If the Data buffer is too small to hold the contents of the variable, the error EFI_BUFFER_TOO_SMALL
381 is returned and DataSize is set to the required buffer size to obtain the data.
382
383 @param VariableName the name of the vendor's variable, it's a Null-Terminated Unicode String
384 @param VendorGuid Unify identifier for vendor.
385 @param Attributes Point to memory location to return the attributes of variable. If the point
386 is NULL, the parameter would be ignored.
387 @param DataSize As input, point to the maximum size of return Data-Buffer.
388 As output, point to the actual size of the returned Data-Buffer.
389 @param Data Point to return Data-Buffer.
390
391 @retval EFI_SUCCESS The function completed successfully.
392 @retval EFI_NOT_FOUND The variable was not found.
393 @retval EFI_BUFFER_TOO_SMALL The DataSize is too small for the result. DataSize has
394 been updated with the size needed to complete the request.
395 @retval EFI_INVALID_PARAMETER VariableName is NULL.
396 @retval EFI_INVALID_PARAMETER VendorGuid is NULL.
397 @retval EFI_INVALID_PARAMETER DataSize is NULL.
398 @retval EFI_INVALID_PARAMETER The DataSize is not too small and Data is NULL.
399 @retval EFI_DEVICE_ERROR The variable could not be retrieved due to a hardware error.
400 @retval EFI_SECURITY_VIOLATION The variable could not be retrieved due to an authentication failure.
401 @retval EFI_UNSUPPORTED After ExitBootServices() has been called, this return code may be returned
402 if no variable storage is supported. The platform should describe this
403 runtime service as unsupported at runtime via an EFI_RT_PROPERTIES_TABLE
404 configuration table.
405**/
406EFI_STATUS
407EFIAPI
408EfiGetVariable (
409 IN CHAR16 *VariableName,
410 IN EFI_GUID *VendorGuid,
411 OUT UINT32 *Attributes OPTIONAL,
412 IN OUT UINTN *DataSize,
413 OUT VOID *Data
414 )
415{
416 return mInternalRT->GetVariable (VariableName, VendorGuid, Attributes, DataSize, Data);
417}
418
419/**
420 This service is a wrapper for the UEFI Runtime Service GetNextVariableName().
421
422 GetNextVariableName() is called multiple times to retrieve the VariableName and VendorGuid of
423 all variables currently available in the system. On each call to GetNextVariableName() the
424 previous results are passed into the interface, and on output the interface returns the next
425 variable name data. When the entire variable list has been returned, the error EFI_NOT_FOUND
426 is returned.
427
428 @param VariableNameSize As input, point to maximum size of variable name.
429 As output, point to actual size of variable name.
430 @param VariableName As input, supplies the last VariableName that was returned by
431 GetNextVariableName().
432 As output, returns the name of variable. The name
433 string is Null-Terminated Unicode string.
434 @param VendorGuid As input, supplies the last VendorGuid that was returned by
435 GetNextVriableName().
436 As output, returns the VendorGuid of the current variable.
437
438 @retval EFI_SUCCESS The function completed successfully.
439 @retval EFI_NOT_FOUND The next variable was not found.
440 @retval EFI_BUFFER_TOO_SMALL The VariableNameSize is too small for the result.
441 VariableNameSize has been updated with the size needed
442 to complete the request.
443 @retval EFI_INVALID_PARAMETER VariableNameSize is NULL.
444 @retval EFI_INVALID_PARAMETER VariableName is NULL.
445 @retval EFI_INVALID_PARAMETER VendorGuid is NULL.
446 @retval EFI_DEVICE_ERROR The variable name could not be retrieved due to a hardware error.
447 @retval EFI_UNSUPPORTED After ExitBootServices() has been called, this return code may be returned
448 if no variable storage is supported. The platform should describe this
449 runtime service as unsupported at runtime via an EFI_RT_PROPERTIES_TABLE
450 configuration table.
451
452**/
453EFI_STATUS
454EFIAPI
455EfiGetNextVariableName (
456 IN OUT UINTN *VariableNameSize,
457 IN OUT CHAR16 *VariableName,
458 IN OUT EFI_GUID *VendorGuid
459 )
460{
461 return mInternalRT->GetNextVariableName (VariableNameSize, VariableName, VendorGuid);
462}
463
464/**
465 This service is a wrapper for the UEFI Runtime Service GetNextVariableName()
466
467 Variables are stored by the firmware and may maintain their values across power cycles. Each vendor
468 may create and manage its own variables without the risk of name conflicts by using a unique VendorGuid.
469
470 @param VariableName The name of the vendor's variable; it's a Null-Terminated
471 Unicode String
472 @param VendorGuid Unify identifier for vendor.
473 @param Attributes Points to a memory location to return the attributes of variable. If the point
474 is NULL, the parameter would be ignored.
475 @param DataSize The size in bytes of Data-Buffer.
476 @param Data Points to the content of the variable.
477
478 @retval EFI_SUCCESS The firmware has successfully stored the variable and its data as
479 defined by the Attributes.
480 @retval EFI_INVALID_PARAMETER An invalid combination of attribute bits was supplied, or the
481 DataSize exceeds the maximum allowed.
482 @retval EFI_INVALID_PARAMETER VariableName is an empty Unicode string.
483 @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the variable and its data.
484 @retval EFI_DEVICE_ERROR The variable could not be saved due to a hardware failure.
485 @retval EFI_WRITE_PROTECTED The variable in question is read-only.
486 @retval EFI_WRITE_PROTECTED The variable in question cannot be deleted.
487 @retval EFI_SECURITY_VIOLATION The variable could not be written due to EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS
488 set but the AuthInfo does NOT pass the validation check carried
489 out by the firmware.
490 @retval EFI_NOT_FOUND The variable trying to be updated or deleted was not found.
491 @retval EFI_UNSUPPORTED This call is not supported by this platform at the time the call is made.
492 The platform should describe this runtime service as unsupported at runtime
493 via an EFI_RT_PROPERTIES_TABLE configuration table.
494
495**/
496EFI_STATUS
497EFIAPI
498EfiSetVariable (
499 IN CHAR16 *VariableName,
500 IN EFI_GUID *VendorGuid,
501 IN UINT32 Attributes,
502 IN UINTN DataSize,
503 IN VOID *Data
504 )
505{
506 return mInternalRT->SetVariable (VariableName, VendorGuid, Attributes, DataSize, Data);
507}
508
509/**
510 This service is a wrapper for the UEFI Runtime Service GetNextHighMonotonicCount().
511
512 The platform's monotonic counter is comprised of two 32-bit quantities: the high 32 bits and
513 the low 32 bits. During boot service time the low 32-bit value is volatile: it is reset to zero
514 on every system reset and is increased by 1 on every call to GetNextMonotonicCount(). The high
515 32-bit value is nonvolatile and is increased by 1 whenever the system resets or whenever the low
516 32-bit count (returned by GetNextMonoticCount()) overflows.
517
518 @param HighCount The pointer to returned value.
519
520 @retval EFI_SUCCESS The next high monotonic count was returned.
521 @retval EFI_DEVICE_ERROR The device is not functioning properly.
522 @retval EFI_INVALID_PARAMETER HighCount is NULL.
523 @retval EFI_UNSUPPORTED This call is not supported by this platform at the time the call is made.
524 The platform should describe this runtime service as unsupported at runtime
525 via an EFI_RT_PROPERTIES_TABLE configuration table.
526
527**/
528EFI_STATUS
529EFIAPI
530EfiGetNextHighMonotonicCount (
531 OUT UINT32 *HighCount
532 )
533{
534 return mInternalRT->GetNextHighMonotonicCount (HighCount);
535}
536
537/**
538 This service is a wrapper for the UEFI Runtime Service ConvertPointer().
539
540 The ConvertPointer() function is used by an EFI component during the SetVirtualAddressMap() operation.
541 ConvertPointer()must be called using physical address pointers during the execution of SetVirtualAddressMap().
542
543 @param DebugDisposition Supplies type information for the pointer being converted.
544 @param Address The pointer to a pointer that is to be fixed to be the
545 value needed for the new virtual address mapping being
546 applied.
547
548 @retval EFI_SUCCESS The pointer pointed to by Address was modified.
549 @retval EFI_NOT_FOUND The pointer pointed to by Address was not found to be part of
550 the current memory map. This is normally fatal.
551 @retval EFI_INVALID_PARAMETER Address is NULL.
552 @retval EFI_INVALID_PARAMETER *Address is NULL and DebugDisposition does
553 not have the EFI_OPTIONAL_PTR bit set.
554 @retval EFI_UNSUPPORTED This call is not supported by this platform at the time the call is made.
555 The platform should describe this runtime service as unsupported at runtime
556 via an EFI_RT_PROPERTIES_TABLE configuration table.
557
558**/
559EFI_STATUS
560EFIAPI
561EfiConvertPointer (
562 IN UINTN DebugDisposition,
563 IN OUT VOID **Address
564 )
565{
566 return gRT->ConvertPointer (DebugDisposition, Address);
567}
568
569/**
570 Determines the new virtual address that is to be used on subsequent memory accesses.
571
572 For IA32, x64, and EBC, this service is a wrapper for the UEFI Runtime Service
573 ConvertPointer(). See the UEFI Specification for details.
574 For IPF, this function interprets Address as a pointer to an EFI_PLABEL structure
575 and both the EntryPoint and GP fields of an EFI_PLABEL are converted from physical
576 to virtiual addressing. Since IPF allows the GP to point to an address outside
577 a PE/COFF image, the physical to virtual offset for the EntryPoint field is used
578 to adjust the GP field. The UEFI Runtime Service ConvertPointer() is used to convert
579 EntryPoint and the status code for this conversion is always returned. If the convertion
580 of EntryPoint fails, then neither EntryPoint nor GP are modified. See the UEFI
581 Specification for details on the UEFI Runtime Service ConvertPointer().
582
583 @param DebugDisposition Supplies type information for the pointer being converted.
584 @param Address The pointer to a pointer that is to be fixed to be the
585 value needed for the new virtual address mapping being
586 applied.
587
588 @return EFI_STATUS value from EfiConvertPointer().
589
590**/
591EFI_STATUS
592EFIAPI
593EfiConvertFunctionPointer (
594 IN UINTN DebugDisposition,
595 IN OUT VOID **Address
596 )
597{
598 return EfiConvertPointer (DebugDisposition, Address);
599}
600
601/**
602 Convert the standard Lib double linked list to a virtual mapping.
603
604 This service uses EfiConvertPointer() to walk a double linked list and convert all the link
605 pointers to their virtual mappings. This function is only guaranteed to work during the
606 EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event and calling it at other times has undefined results.
607
608 @param DebugDisposition Supplies type information for the pointer being converted.
609 @param ListHead Head of linked list to convert.
610
611 @retval EFI_SUCCESS Success to execute the function.
612 @retval !EFI_SUCCESS Failed to e3xecute the function.
613
614**/
615EFI_STATUS
616EFIAPI
617EfiConvertList (
618 IN UINTN DebugDisposition,
619 IN OUT LIST_ENTRY *ListHead
620 )
621{
622 LIST_ENTRY *Link;
623 LIST_ENTRY *NextLink;
624
625 //
626 // For NULL List, return EFI_SUCCESS
627 //
628 if (ListHead == NULL) {
629 return EFI_SUCCESS;
630 }
631
632 //
633 // Convert all the ForwardLink & BackLink pointers in the list
634 //
635 Link = ListHead;
636 do {
637 NextLink = Link->ForwardLink;
638
639 EfiConvertPointer (
640 Link->ForwardLink == ListHead ? DebugDisposition : 0,
641 (VOID **)&Link->ForwardLink
642 );
643
644 EfiConvertPointer (
645 Link->BackLink == ListHead ? DebugDisposition : 0,
646 (VOID **)&Link->BackLink
647 );
648
649 Link = NextLink;
650 } while (Link != ListHead);
651
652 return EFI_SUCCESS;
653}
654
655/**
656 This service is a wrapper for the UEFI Runtime Service SetVirtualAddressMap().
657
658 The SetVirtualAddressMap() function is used by the OS loader. The function can only be called
659 at runtime, and is called by the owner of the system's memory map. I.e., the component which
660 called ExitBootServices(). All events of type EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE must be signaled
661 before SetVirtualAddressMap() returns.
662
663 @param MemoryMapSize The size in bytes of VirtualMap.
664 @param DescriptorSize The size in bytes of an entry in the VirtualMap.
665 @param DescriptorVersion The version of the structure entries in VirtualMap.
666 @param VirtualMap An array of memory descriptors which contain new virtual
667 address mapping information for all runtime ranges. Type
668 EFI_MEMORY_DESCRIPTOR is defined in the
669 GetMemoryMap() function description.
670
671 @retval EFI_SUCCESS The virtual address map has been applied.
672 @retval EFI_UNSUPPORTED EFI firmware is not at runtime, or the EFI firmware is already in
673 virtual address mapped mode.
674 @retval EFI_INVALID_PARAMETER DescriptorSize or DescriptorVersion is
675 invalid.
676 @retval EFI_NO_MAPPING A virtual address was not supplied for a range in the memory
677 map that requires a mapping.
678 @retval EFI_NOT_FOUND A virtual address was supplied for an address that is not found
679 in the memory map.
680 @retval EFI_UNSUPPORTED This call is not supported by this platform at the time the call is made.
681 The platform should describe this runtime service as unsupported at runtime
682 via an EFI_RT_PROPERTIES_TABLE configuration table.
683**/
684EFI_STATUS
685EFIAPI
686EfiSetVirtualAddressMap (
687 IN UINTN MemoryMapSize,
688 IN UINTN DescriptorSize,
689 IN UINT32 DescriptorVersion,
690 IN CONST EFI_MEMORY_DESCRIPTOR *VirtualMap
691 )
692{
693 return mInternalRT->SetVirtualAddressMap (
694 MemoryMapSize,
695 DescriptorSize,
696 DescriptorVersion,
697 (EFI_MEMORY_DESCRIPTOR *)VirtualMap
698 );
699}
700
701/**
702 This service is a wrapper for the UEFI Runtime Service UpdateCapsule().
703
704 Passes capsules to the firmware with both virtual and physical mapping. Depending on the intended
705 consumption, the firmware may process the capsule immediately. If the payload should persist across a
706 system reset, the reset value returned from EFI_QueryCapsuleCapabilities must be passed into ResetSystem()
707 and will cause the capsule to be processed by the firmware as part of the reset process.
708
709 @param CapsuleHeaderArray Virtual pointer to an array of virtual pointers to the capsules
710 being passed into update capsule. Each capsules is assumed to
711 stored in contiguous virtual memory. The capsules in the
712 CapsuleHeaderArray must be the same capsules as the
713 ScatterGatherList. The CapsuleHeaderArray must
714 have the capsules in the same order as the ScatterGatherList.
715 @param CapsuleCount The number of pointers to EFI_CAPSULE_HEADER in
716 CaspuleHeaderArray.
717 @param ScatterGatherList Physical pointer to a set of
718 EFI_CAPSULE_BLOCK_DESCRIPTOR that describes the
719 location in physical memory of a set of capsules. See Related
720 Definitions for an explanation of how more than one capsule is
721 passed via this interface. The capsules in the
722 ScatterGatherList must be in the same order as the
723 CapsuleHeaderArray. This parameter is only referenced if
724 the capsules are defined to persist across system reset.
725
726 @retval EFI_SUCCESS Valid capsule was passed. If CAPSULE_FLAGS_PERSIT_ACROSS_RESET is not set,
727 the capsule has been successfully processed by the firmware.
728 @retval EFI_INVALID_PARAMETER CapsuleSize or HeaderSize is NULL.
729 @retval EFI_INVALID_PARAMETER CapsuleCount is 0
730 @retval EFI_DEVICE_ERROR The capsule update was started, but failed due to a device error.
731 @retval EFI_UNSUPPORTED The capsule type is not supported on this platform.
732 @retval EFI_OUT_OF_RESOURCES There were insufficient resources to process the capsule.
733 @retval EFI_UNSUPPORTED This call is not supported by this platform at the time the call is made.
734 The platform should describe this runtime service as unsupported at runtime
735 via an EFI_RT_PROPERTIES_TABLE configuration table.
736
737**/
738EFI_STATUS
739EFIAPI
740EfiUpdateCapsule (
741 IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,
742 IN UINTN CapsuleCount,
743 IN EFI_PHYSICAL_ADDRESS ScatterGatherList OPTIONAL
744 )
745{
746 return mInternalRT->UpdateCapsule (
747 CapsuleHeaderArray,
748 CapsuleCount,
749 ScatterGatherList
750 );
751}
752
753/**
754 This service is a wrapper for the UEFI Runtime Service QueryCapsuleCapabilities().
755
756 The QueryCapsuleCapabilities() function allows a caller to test to see if a capsule or
757 capsules can be updated via UpdateCapsule(). The Flags values in the capsule header and
758 size of the entire capsule is checked.
759 If the caller needs to query for generic capsule capability a fake EFI_CAPSULE_HEADER can be
760 constructed where CapsuleImageSize is equal to HeaderSize that is equal to sizeof
761 (EFI_CAPSULE_HEADER). To determine reset requirements,
762 CAPSULE_FLAGS_PERSIST_ACROSS_RESET should be set in the Flags field of the
763 EFI_CAPSULE_HEADER.
764 The firmware must support any capsule that has the
765 CAPSULE_FLAGS_PERSIST_ACROSS_RESET flag set in EFI_CAPSULE_HEADER. The
766 firmware sets the policy for what capsules are supported that do not have the
767 CAPSULE_FLAGS_PERSIST_ACROSS_RESET flag set.
768
769 @param CapsuleHeaderArray Virtual pointer to an array of virtual pointers to the capsules
770 being passed into update capsule. The capsules are assumed to
771 stored in contiguous virtual memory.
772 @param CapsuleCount The number of pointers to EFI_CAPSULE_HEADER in
773 CaspuleHeaderArray.
774 @param MaximumCapsuleSize On output the maximum size that UpdateCapsule() can
775 support as an argument to UpdateCapsule() via
776 CapsuleHeaderArray and ScatterGatherList.
777 Undefined on input.
778 @param ResetType Returns the type of reset required for the capsule update.
779
780 @retval EFI_SUCCESS A valid answer was returned.
781 @retval EFI_INVALID_PARAMETER MaximumCapsuleSize is NULL.
782 @retval EFI_UNSUPPORTED The capsule type is not supported on this platform, and
783 MaximumCapsuleSize and ResetType are undefined.
784 @retval EFI_OUT_OF_RESOURCES There were insufficient resources to process the query request.
785 @retval EFI_UNSUPPORTED This call is not supported by this platform at the time the call is made.
786 The platform should describe this runtime service as unsupported at runtime
787 via an EFI_RT_PROPERTIES_TABLE configuration table.
788
789**/
790EFI_STATUS
791EFIAPI
792EfiQueryCapsuleCapabilities (
793 IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,
794 IN UINTN CapsuleCount,
795 OUT UINT64 *MaximumCapsuleSize,
796 OUT EFI_RESET_TYPE *ResetType
797 )
798{
799 return mInternalRT->QueryCapsuleCapabilities (
800 CapsuleHeaderArray,
801 CapsuleCount,
802 MaximumCapsuleSize,
803 ResetType
804 );
805}
806
807/**
808 This service is a wrapper for the UEFI Runtime Service QueryVariableInfo().
809
810 The QueryVariableInfo() function allows a caller to obtain the information about the
811 maximum size of the storage space available for the EFI variables, the remaining size of the storage
812 space available for the EFI variables and the maximum size of each individual EFI variable,
813 associated with the attributes specified.
814 The returned MaximumVariableStorageSize, RemainingVariableStorageSize,
815 MaximumVariableSize information may change immediately after the call based on other
816 runtime activities including asynchronous error events. Also, these values associated with different
817 attributes are not additive in nature.
818
819 @param Attributes Attributes bitmask to specify the type of variables on
820 which to return information. Refer to the
821 GetVariable() function description.
822 @param MaximumVariableStorageSize
823 On output the maximum size of the storage space
824 available for the EFI variables associated with the
825 attributes specified.
826 @param RemainingVariableStorageSize
827 Returns the remaining size of the storage space
828 available for the EFI variables associated with the
829 attributes specified..
830 @param MaximumVariableSize Returns the maximum size of the individual EFI
831 variables associated with the attributes specified.
832
833 @retval EFI_SUCCESS A valid answer was returned.
834 @retval EFI_INVALID_PARAMETER An invalid combination of attribute bits was supplied.
835 @retval EFI_UNSUPPORTED EFI_UNSUPPORTED The attribute is not supported on this platform, and the
836 MaximumVariableStorageSize,
837 RemainingVariableStorageSize, MaximumVariableSize
838 are undefined.
839
840**/
841EFI_STATUS
842EFIAPI
843EfiQueryVariableInfo (
844 IN UINT32 Attributes,
845 OUT UINT64 *MaximumVariableStorageSize,
846 OUT UINT64 *RemainingVariableStorageSize,
847 OUT UINT64 *MaximumVariableSize
848 )
849{
850 return mInternalRT->QueryVariableInfo (
851 Attributes,
852 MaximumVariableStorageSize,
853 RemainingVariableStorageSize,
854 MaximumVariableSize
855 );
856}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette