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