]>
Commit | Line | Data |
---|---|---|
fb3df220 | 1 | /** @file\r |
50a64e5b | 2 | Provides library functions for each of the UEFI Runtime Services.\r |
3 | Only available to DXE and UEFI module types.\r | |
fb3df220 | 4 | \r |
9df063a0 | 5 | Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r |
af2dc6a7 | 6 | This program and the accompanying materials are licensed and made available under \r |
7 | the terms and conditions of the BSD License that accompanies this distribution. \r | |
8 | The full text of the license may be found at\r | |
9 | http://opensource.org/licenses/bsd-license.php.\r | |
fb3df220 | 10 | \r |
50a64e5b | 11 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
12 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
fb3df220 | 13 | **/\r |
14 | \r | |
15 | #ifndef __UEFI_RUNTIME_LIB__\r | |
16 | #define __UEFI_RUNTIME_LIB__\r | |
17 | \r | |
fb3df220 | 18 | /**\r |
22d9510d | 19 | This function allows the caller to determine if UEFI ExitBootServices() has been called.\r |
fb3df220 | 20 | \r |
22d9510d | 21 | This function returns TRUE after all the EVT_SIGNAL_EXIT_BOOT_SERVICES functions have\r |
22 | executed as a result of the OS calling ExitBootServices(). Prior to this time FALSE\r | |
23 | is returned. This function is used by runtime code to decide it is legal to access\r | |
24 | services that go away after ExitBootServices().\r | |
fb3df220 | 25 | \r |
22d9510d | 26 | @retval TRUE The system has finished executing the EVT_SIGNAL_EXIT_BOOT_SERVICES event.\r |
27 | @retval FALSE The system has not finished executing the EVT_SIGNAL_EXIT_BOOT_SERVICES event.\r | |
fb3df220 | 28 | \r |
29 | **/\r | |
30 | BOOLEAN\r | |
31 | EFIAPI\r | |
32 | EfiAtRuntime (\r | |
3b89de63 | 33 | VOID\r |
fb3df220 | 34 | );\r |
35 | \r | |
36 | /**\r | |
22d9510d | 37 | This function allows the caller to determine if UEFI SetVirtualAddressMap() has been called. \r |
fb3df220 | 38 | \r |
22d9510d | 39 | This function returns TRUE after all the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE functions have\r |
40 | executed as a result of the OS calling SetVirtualAddressMap(). Prior to this time FALSE\r | |
41 | is returned. This function is used by runtime code to decide it is legal to access services\r | |
42 | that go away after SetVirtualAddressMap().\r | |
43 | \r | |
44 | @retval TRUE The system has finished executing the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.\r | |
45 | @retval FALSE The system has not finished executing the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.\r | |
fb3df220 | 46 | \r |
47 | **/\r | |
48 | BOOLEAN\r | |
49 | EFIAPI\r | |
50 | EfiGoneVirtual (\r | |
3b89de63 | 51 | VOID\r |
fb3df220 | 52 | );\r |
53 | \r | |
54 | /**\r | |
22d9510d | 55 | This service is a wrapper for the UEFI Runtime Service GetTime().\r |
56 | \r | |
57 | The GetTime() function returns a time that was valid sometime during the call to the function.\r | |
58 | While the returned EFI_TIME structure contains TimeZone and Daylight savings time information,\r | |
59 | the actual clock does not maintain these values. The current time zone and daylight saving time\r | |
60 | information returned by GetTime() are the values that were last set via SetTime().\r | |
61 | The GetTime() function should take approximately the same amount of time to read the time each\r | |
62 | time it is called. All reported device capabilities are to be rounded up.\r | |
1a2f870c | 63 | During runtime, if a PC-AT CMOS device is present in the platform, the caller must synchronize\r |
22d9510d | 64 | access to the device before calling GetTime().\r |
fb3df220 | 65 | \r |
66 | @param Time A pointer to storage to receive a snapshot of the current time.\r | |
67 | @param Capabilities An optional pointer to a buffer to receive the real time clock device's\r | |
68 | capabilities.\r | |
3b89de63 | 69 | \r |
22d9510d | 70 | @retval EFI_SUCCESS The operation completed successfully.\r |
71 | @retval EFI_INVALID_PARAMETER Time is NULL.\r | |
72 | @retval EFI_DEVICE_ERROR The time could not be retrieved due to a hardware error.\r | |
fb3df220 | 73 | \r |
74 | **/\r | |
75 | EFI_STATUS\r | |
76 | EFIAPI\r | |
77 | EfiGetTime (\r | |
78 | OUT EFI_TIME *Time,\r | |
22d9510d | 79 | OUT EFI_TIME_CAPABILITIES *Capabilities OPTIONAL\r |
fb3df220 | 80 | );\r |
81 | \r | |
82 | /**\r | |
22d9510d | 83 | This service is a wrapper for the UEFI Runtime Service SetTime().\r |
84 | \r | |
85 | The SetTime() function sets the real time clock device to the supplied time, and records the\r | |
86 | current time zone and daylight savings time information. The SetTime() function is not allowed\r | |
87 | to loop based on the current time. For example, if the device does not support a hardware reset\r | |
88 | for the sub-resolution time, the code is not to implement the feature by waiting for the time to\r | |
89 | wrap.\r | |
1a2f870c | 90 | During runtime, if a PC-AT CMOS device is present in the platform, the caller must synchronize\r |
22d9510d | 91 | access to the device before calling SetTime().\r |
92 | \r | |
93 | @param Time A pointer to the current time. Type EFI_TIME is defined in the GetTime()\r | |
94 | function description. Full error checking is performed on the different\r | |
95 | fields of the EFI_TIME structure (refer to the EFI_TIME definition in the\r | |
96 | GetTime() function description for full details), and EFI_INVALID_PARAMETER\r | |
97 | is returned if any field is out of range.\r | |
98 | \r | |
99 | @retval EFI_SUCCESS The operation completed successfully.\r | |
100 | @retval EFI_INVALID_PARAMETER A time field is out of range.\r | |
101 | @retval EFI_DEVICE_ERROR The time could not be set due to a hardware error.\r | |
fb3df220 | 102 | \r |
103 | **/\r | |
104 | EFI_STATUS\r | |
105 | EFIAPI\r | |
106 | EfiSetTime (\r | |
107 | IN EFI_TIME *Time\r | |
108 | );\r | |
109 | \r | |
110 | /**\r | |
cf8ae2f6 | 111 | This service is a wrapper for the UEFI Runtime Service GetWakeupTime().\r |
fb3df220 | 112 | \r |
22d9510d | 113 | The alarm clock time may be rounded from the set alarm clock time to be within the resolution\r |
114 | of the alarm clock device. The resolution of the alarm clock device is defined to be one second.\r | |
115 | During runtime, if a PC-AT CMOS device is present in the platform the caller must synchronize\r | |
116 | access to the device before calling GetWakeupTime().\r | |
3b89de63 | 117 | \r |
22d9510d | 118 | @param Enabled Indicates if the alarm is currently enabled or disabled.\r |
119 | @param Pending Indicates if the alarm signal is pending and requires acknowledgement.\r | |
120 | @param Time The current alarm setting. Type EFI_TIME is defined in the GetTime()\r | |
121 | function description.\r | |
122 | \r | |
af2dc6a7 | 123 | @retval EFI_SUCCESS The alarm settings were returned.\r |
22d9510d | 124 | @retval EFI_INVALID_PARAMETER Enabled is NULL.\r |
125 | @retval EFI_INVALID_PARAMETER Pending is NULL.\r | |
126 | @retval EFI_INVALID_PARAMETER Time is NULL.\r | |
127 | @retval EFI_DEVICE_ERROR The wakeup time could not be retrieved due to a hardware error.\r | |
128 | @retval EFI_UNSUPPORTED A wakeup timer is not supported on this platform.\r | |
fb3df220 | 129 | \r |
130 | **/\r | |
131 | EFI_STATUS\r | |
132 | EFIAPI\r | |
133 | EfiGetWakeupTime (\r | |
134 | OUT BOOLEAN *Enabled,\r | |
135 | OUT BOOLEAN *Pending,\r | |
136 | OUT EFI_TIME *Time\r | |
137 | );\r | |
138 | \r | |
139 | /**\r | |
cf8ae2f6 | 140 | This service is a wrapper for the UEFI Runtime Service SetWakeupTime()\r |
141 | \r | |
142 | Setting a system wakeup alarm causes the system to wake up or power on at the set time.\r | |
143 | When the alarm fires, the alarm signal is latched until it is acknowledged by calling SetWakeupTime()\r | |
144 | to disable the alarm. If the alarm fires before the system is put into a sleeping or off state,\r | |
145 | since the alarm signal is latched the system will immediately wake up. If the alarm fires while\r | |
146 | the system is off and there is insufficient power to power on the system, the system is powered\r | |
147 | on when power is restored.\r | |
fb3df220 | 148 | \r |
22d9510d | 149 | @param Enable Enable or disable the wakeup alarm.\r |
150 | @param Time If Enable is TRUE, the time to set the wakeup alarm for. Type EFI_TIME\r | |
151 | is defined in the GetTime() function description. If Enable is FALSE,\r | |
152 | then this parameter is optional, and may be NULL.\r | |
3b89de63 | 153 | \r |
22d9510d | 154 | @retval EFI_SUCCESS If Enable is TRUE, then the wakeup alarm was enabled.\r |
155 | If Enable is FALSE, then the wakeup alarm was disabled.\r | |
156 | @retval EFI_INVALID_PARAMETER A time field is out of range.\r | |
157 | @retval EFI_DEVICE_ERROR The wakeup time could not be set due to a hardware error.\r | |
158 | @retval EFI_UNSUPPORTED A wakeup timer is not supported on this platform.\r | |
fb3df220 | 159 | \r |
160 | **/\r | |
161 | EFI_STATUS\r | |
162 | EFIAPI\r | |
163 | EfiSetWakeupTime (\r | |
164 | IN BOOLEAN Enable,\r | |
22d9510d | 165 | IN EFI_TIME *Time OPTIONAL\r |
fb3df220 | 166 | );\r |
167 | \r | |
168 | /**\r | |
cf8ae2f6 | 169 | This service is a wrapper for the UEFI Runtime Service GetVariable().\r |
fb3df220 | 170 | \r |
cf8ae2f6 | 171 | Each vendor may create and manage its own variables without the risk of name conflicts by\r |
1a2f870c | 172 | using a unique VendorGuid. When a variable is set, its Attributes are supplied to indicate\r |
cf8ae2f6 | 173 | how the data variable should be stored and maintained by the system. The attributes affect\r |
174 | when the variable may be accessed and volatility of the data. Any attempts to access a variable\r | |
175 | that does not have the attribute set for runtime access will yield the EFI_NOT_FOUND error.\r | |
176 | If the Data buffer is too small to hold the contents of the variable, the error EFI_BUFFER_TOO_SMALL\r | |
177 | is returned and DataSize is set to the required buffer size to obtain the data.\r | |
178 | \r | |
179 | @param VariableName the name of the vendor's variable, it's a Null-Terminated Unicode String\r | |
fb3df220 | 180 | @param VendorGuid Unify identifier for vendor.\r |
3b89de63 | 181 | @param Attributes Point to memory location to return the attributes of variable. If the point\r |
fb3df220 | 182 | is NULL, the parameter would be ignored.\r |
28d3e14f | 183 | @param DataSize As input, point to the maximum size of return Data-Buffer.\r |
fb3df220 | 184 | As output, point to the actual size of the returned Data-Buffer.\r |
185 | @param Data Point to return Data-Buffer.\r | |
3b89de63 | 186 | \r |
22d9510d | 187 | @retval EFI_SUCCESS The function completed successfully.\r |
188 | @retval EFI_NOT_FOUND The variable was not found.\r | |
189 | @retval EFI_BUFFER_TOO_SMALL The DataSize is too small for the result. DataSize has\r | |
190 | been updated with the size needed to complete the request.\r | |
191 | @retval EFI_INVALID_PARAMETER VariableName is NULL.\r | |
192 | @retval EFI_INVALID_PARAMETER VendorGuid is NULL.\r | |
193 | @retval EFI_INVALID_PARAMETER DataSize is NULL.\r | |
194 | @retval EFI_INVALID_PARAMETER The DataSize is not too small and Data is NULL.\r | |
195 | @retval EFI_DEVICE_ERROR The variable could not be retrieved due to a hardware error.\r | |
196 | @retval EFI_SECURITY_VIOLATION The variable could not be retrieved due to an authentication failure.\r | |
fb3df220 | 197 | **/\r |
198 | EFI_STATUS\r | |
199 | EFIAPI\r | |
200 | EfiGetVariable (\r | |
201 | IN CHAR16 *VariableName,\r | |
202 | IN EFI_GUID *VendorGuid,\r | |
201c7668 | 203 | OUT UINT32 *Attributes OPTIONAL,\r |
fb3df220 | 204 | IN OUT UINTN *DataSize,\r |
205 | OUT VOID *Data\r | |
bf231ea6 | 206 | );\r |
fb3df220 | 207 | \r |
208 | /**\r | |
cf8ae2f6 | 209 | This service is a wrapper for the UEFI Runtime Service GetNextVariableName().\r |
210 | \r | |
211 | GetNextVariableName() is called multiple times to retrieve the VariableName and VendorGuid of\r | |
212 | all variables currently available in the system. On each call to GetNextVariableName() the\r | |
213 | previous results are passed into the interface, and on output the interface returns the next\r | |
214 | variable name data. When the entire variable list has been returned, the error EFI_NOT_FOUND\r | |
215 | is returned.\r | |
fb3df220 | 216 | \r |
28d3e14f | 217 | @param VariableNameSize As input, point to maximum size of variable name.\r |
218 | As output, point to actual size of variable name.\r | |
3b89de63 | 219 | @param VariableName As input, supplies the last VariableName that was returned by\r |
fb3df220 | 220 | GetNextVariableName().\r |
3b89de63 | 221 | As output, returns the name of variable. The name\r |
fb3df220 | 222 | string is Null-Terminated Unicode string.\r |
3b89de63 | 223 | @param VendorGuid As input, supplies the last VendorGuid that was returned by\r |
fb3df220 | 224 | GetNextVriableName().\r |
225 | As output, returns the VendorGuid of the current variable.\r | |
3b89de63 | 226 | \r |
22d9510d | 227 | @retval EFI_SUCCESS The function completed successfully.\r |
228 | @retval EFI_NOT_FOUND The next variable was not found.\r | |
229 | @retval EFI_BUFFER_TOO_SMALL The VariableNameSize is too small for the result.\r | |
230 | VariableNameSize has been updated with the size needed\r | |
231 | to complete the request.\r | |
232 | @retval EFI_INVALID_PARAMETER VariableNameSize is NULL.\r | |
233 | @retval EFI_INVALID_PARAMETER VariableName is NULL.\r | |
234 | @retval EFI_INVALID_PARAMETER VendorGuid is NULL.\r | |
235 | @retval EFI_DEVICE_ERROR The variable name could not be retrieved due to a hardware error.\r | |
fb3df220 | 236 | \r |
237 | **/\r | |
238 | EFI_STATUS\r | |
239 | EFIAPI\r | |
240 | EfiGetNextVariableName (\r | |
241 | IN OUT UINTN *VariableNameSize,\r | |
242 | IN OUT CHAR16 *VariableName,\r | |
243 | IN OUT EFI_GUID *VendorGuid\r | |
244 | );\r | |
245 | \r | |
246 | /**\r | |
cf8ae2f6 | 247 | This service is a wrapper for the UEFI Runtime Service GetNextVariableName()\r |
248 | \r | |
249 | Variables are stored by the firmware and may maintain their values across power cycles. Each vendor\r | |
250 | may create and manage its own variables without the risk of name conflicts by using a unique VendorGuid.\r | |
fb3df220 | 251 | \r |
1a2f870c | 252 | @param VariableName the name of the vendor's variable, as a\r |
fb3df220 | 253 | Null-Terminated Unicode String\r |
254 | @param VendorGuid Unify identifier for vendor.\r | |
3b89de63 | 255 | @param Attributes Point to memory location to return the attributes of variable. If the point\r |
fb3df220 | 256 | is NULL, the parameter would be ignored.\r |
257 | @param DataSize The size in bytes of Data-Buffer.\r | |
258 | @param Data Point to the content of the variable.\r | |
259 | \r | |
22d9510d | 260 | @retval EFI_SUCCESS The firmware has successfully stored the variable and its data as\r |
261 | defined by the Attributes.\r | |
262 | @retval EFI_INVALID_PARAMETER An invalid combination of attribute bits was supplied, or the\r | |
263 | DataSize exceeds the maximum allowed.\r | |
264 | @retval EFI_INVALID_PARAMETER VariableName is an empty Unicode string.\r | |
265 | @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the variable and its data.\r | |
266 | @retval EFI_DEVICE_ERROR The variable could not be saved due to a hardware failure.\r | |
267 | @retval EFI_WRITE_PROTECTED The variable in question is read-only.\r | |
268 | @retval EFI_WRITE_PROTECTED The variable in question cannot be deleted.\r | |
269 | @retval EFI_SECURITY_VIOLATION The variable could not be written due to EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS\r | |
270 | set but the AuthInfo does NOT pass the validation check carried\r | |
271 | out by the firmware.\r | |
272 | @retval EFI_NOT_FOUND The variable trying to be updated or deleted was not found.\r | |
fb3df220 | 273 | \r |
274 | **/\r | |
275 | EFI_STATUS\r | |
276 | EFIAPI\r | |
277 | EfiSetVariable (\r | |
278 | IN CHAR16 *VariableName,\r | |
279 | IN EFI_GUID *VendorGuid,\r | |
280 | IN UINT32 Attributes,\r | |
281 | IN UINTN DataSize,\r | |
282 | IN VOID *Data\r | |
283 | );\r | |
284 | \r | |
285 | /**\r | |
cf8ae2f6 | 286 | This service is a wrapper for the UEFI Runtime Service GetNextHighMonotonicCount().\r |
287 | \r | |
cd2ed84a | 288 | The platform's monotonic counter is comprised of two 32-bit quantities: the high 32 bits and\r |
cf8ae2f6 | 289 | the low 32 bits. During boot service time the low 32-bit value is volatile: it is reset to zero\r |
290 | on every system reset and is increased by 1 on every call to GetNextMonotonicCount(). The high\r | |
291 | 32-bit value is nonvolatile and is increased by 1 whenever the system resets or whenever the low\r | |
292 | 32-bit count (returned by GetNextMonoticCount()) overflows.\r | |
fb3df220 | 293 | \r |
294 | @param HighCount Pointer to returned value.\r | |
295 | \r | |
22d9510d | 296 | @retval EFI_SUCCESS The next high monotonic count was returned.\r |
297 | @retval EFI_DEVICE_ERROR The device is not functioning properly.\r | |
298 | @retval EFI_INVALID_PARAMETER HighCount is NULL.\r | |
fb3df220 | 299 | \r |
300 | **/\r | |
301 | EFI_STATUS\r | |
302 | EFIAPI\r | |
303 | EfiGetNextHighMonotonicCount (\r | |
304 | OUT UINT32 *HighCount\r | |
305 | );\r | |
306 | \r | |
307 | /**\r | |
cf8ae2f6 | 308 | This service is a wrapper for the UEFI Runtime Service ResetSystem().\r |
309 | \r | |
310 | The ResetSystem()function resets the entire platform, including all processors and devices,and reboots the system.\r | |
311 | Calling this interface with ResetType of EfiResetCold causes a system-wide reset. This sets all circuitry within\r | |
312 | the system to its initial state. This type of reset is asynchronous to system operation and operates without regard\r | |
313 | to cycle boundaries. EfiResetCold is tantamount to a system power cycle.\r | |
314 | Calling this interface with ResetType of EfiResetWarm causes a system-wide initialization. The processors are set to\r | |
315 | their initial state, and pending cycles are not corrupted. If the system does not support this reset type, then an\r | |
316 | EfiResetCold must be performed.\r | |
317 | Calling this interface with ResetType of EfiResetShutdown causes the system to enter a power state equivalent to the\r | |
318 | ACPI G2/S5 or G3 states. If the system does not support this reset type, then when the system is rebooted, it should\r | |
319 | exhibit the EfiResetCold attributes.\r | |
28d3e14f | 320 | The platform may optionally log the parameters from any non-normal reset that occurs.\r |
cf8ae2f6 | 321 | The ResetSystem() function does not return.\r |
fb3df220 | 322 | \r |
323 | @param ResetType The type of reset to perform.\r | |
cf8ae2f6 | 324 | @param ResetStatus The status code for the reset. If the system reset is part of a normal operation, the status code\r |
325 | would be EFI_SUCCESS. If the system reset is due to some type of failure the most appropriate EFI\r | |
326 | Status code would be used.\r | |
22d9510d | 327 | @param DataSizeThe size, in bytes, of ResetData.\r |
cf8ae2f6 | 328 | @param ResetData For a ResetType of EfiResetCold, EfiResetWarm, or EfiResetShutdown the data buffer starts with a\r |
329 | Null-terminated Unicode string, optionally followed by additional binary data. The string is a\r | |
330 | description that the caller may use to further indicate the reason for the system reset. ResetData\r | |
331 | is only valid if ResetStatus is something other then EFI_SUCCESS. This pointer must be a physical\r | |
332 | address. For a ResetType of EfiRestUpdate the data buffer also starts with a Null-terminated string\r | |
333 | that is followed by a physical VOID * to an EFI_CAPSULE_HEADER.\r | |
fb3df220 | 334 | \r |
fb3df220 | 335 | **/\r |
336 | VOID\r | |
201c7668 | 337 | EFIAPI\r |
fb3df220 | 338 | EfiResetSystem (\r |
339 | IN EFI_RESET_TYPE ResetType,\r | |
340 | IN EFI_STATUS ResetStatus,\r | |
341 | IN UINTN DataSize,\r | |
008dfe31 | 342 | IN VOID *ResetData OPTIONAL\r |
fb3df220 | 343 | );\r |
344 | \r | |
345 | /**\r | |
cf8ae2f6 | 346 | This service is a wrapper for the UEFI Runtime Service ConvertPointer(). \r |
347 | \r | |
348 | The ConvertPointer() function is used by an EFI component during the SetVirtualAddressMap() operation.\r | |
349 | ConvertPointer()must be called using physical address pointers during the execution of SetVirtualAddressMap().\r | |
fb3df220 | 350 | \r |
351 | @param DebugDisposition Supplies type information for the pointer being converted.\r | |
3b89de63 | 352 | @param Address The pointer to a pointer that is to be fixed to be the\r |
353 | value needed for the new virtual address mapping being\r | |
fb3df220 | 354 | applied.\r |
355 | \r | |
22d9510d | 356 | @retval EFI_SUCCESS The pointer pointed to by Address was modified.\r |
357 | @retval EFI_NOT_FOUND The pointer pointed to by Address was not found to be part of\r | |
358 | the current memory map. This is normally fatal.\r | |
359 | @retval EFI_INVALID_PARAMETER Address is NULL.\r | |
360 | @retval EFI_INVALID_PARAMETER *Address is NULL and DebugDispositio\r | |
fb3df220 | 361 | \r |
362 | **/\r | |
363 | EFI_STATUS\r | |
364 | EFIAPI\r | |
365 | EfiConvertPointer (\r | |
366 | IN UINTN DebugDisposition,\r | |
367 | IN OUT VOID **Address\r | |
368 | );\r | |
369 | \r | |
20742255 | 370 | /**\r |
371 | Determines the new virtual address that is to be used on subsequent memory accesses.\r | |
372 | \r | |
030cd1a2 | 373 | For IA32, x64, and EBC, this service is a wrapper for the UEFI Runtime Service\r |
20742255 | 374 | ConvertPointer(). See the UEFI Specification for details. \r |
375 | For IPF, this function interprets Address as a pointer to an EFI_PLABEL structure\r | |
376 | and both the EntryPoint and GP fields of an EFI_PLABEL are converted from physical\r | |
377 | to virtiual addressing. Since IPF allows the GP to point to an address outside\r | |
378 | a PE/COFF image, the physical to virtual offset for the EntryPoint field is used\r | |
379 | to adjust the GP field. The UEFI Runtime Service ConvertPointer() is used to convert\r | |
380 | EntryPoint and the status code for this conversion is always returned. If the convertion\r | |
381 | of EntryPoint fails, then neither EntryPoint nor GP are modified. See the UEFI\r | |
382 | Specification for details on the UEFI Runtime Service ConvertPointer().\r | |
383 | \r | |
384 | @param DebugDisposition Supplies type information for the pointer being converted.\r | |
385 | @param Address The pointer to a pointer that is to be fixed to be the\r | |
386 | value needed for the new virtual address mapping being\r | |
387 | applied.\r | |
388 | \r | |
22d9510d | 389 | @return EFI_STATUS value from EfiConvertPointer().\r |
20742255 | 390 | \r |
391 | **/\r | |
392 | EFI_STATUS\r | |
393 | EFIAPI\r | |
394 | EfiConvertFunctionPointer (\r | |
395 | IN UINTN DebugDisposition,\r | |
396 | IN OUT VOID **Address\r | |
397 | );\r | |
fb3df220 | 398 | \r |
399 | /**\r | |
cf8ae2f6 | 400 | This service is a wrapper for the UEFI Runtime Service SetVirtualAddressMap().\r |
401 | \r | |
402 | The SetVirtualAddressMap() function is used by the OS loader. The function can only be called\r | |
cd2ed84a | 403 | at runtime, and is called by the owner of the system's memory map. I.e., the component which\r |
cf8ae2f6 | 404 | called ExitBootServices(). All events of type EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE must be signaled\r |
405 | before SetVirtualAddressMap() returns.\r | |
fb3df220 | 406 | \r |
407 | @param MemoryMapSize The size in bytes of VirtualMap.\r | |
408 | @param DescriptorSize The size in bytes of an entry in the VirtualMap.\r | |
409 | @param DescriptorVersion The version of the structure entries in VirtualMap.\r | |
410 | @param VirtualMap An array of memory descriptors which contain new virtual\r | |
411 | address mapping information for all runtime ranges. Type\r | |
412 | EFI_MEMORY_DESCRIPTOR is defined in the\r | |
413 | GetMemoryMap() function description.\r | |
414 | \r | |
415 | @retval EFI_SUCCESS The virtual address map has been applied.\r | |
416 | @retval EFI_UNSUPPORTED EFI firmware is not at runtime, or the EFI firmware is already in\r | |
417 | virtual address mapped mode.\r | |
418 | @retval EFI_INVALID_PARAMETER DescriptorSize or DescriptorVersion is\r | |
419 | invalid.\r | |
420 | @retval EFI_NO_MAPPING A virtual address was not supplied for a range in the memory\r | |
421 | map that requires a mapping.\r | |
422 | @retval EFI_NOT_FOUND A virtual address was supplied for an address that is not found\r | |
423 | in the memory map.\r | |
424 | **/\r | |
425 | EFI_STATUS\r | |
426 | EFIAPI\r | |
427 | EfiSetVirtualAddressMap (\r | |
428 | IN UINTN MemoryMapSize,\r | |
429 | IN UINTN DescriptorSize,\r | |
430 | IN UINT32 DescriptorVersion,\r | |
431 | IN CONST EFI_MEMORY_DESCRIPTOR *VirtualMap\r | |
432 | );\r | |
433 | \r | |
434 | \r | |
435 | /**\r | |
bf231ea6 | 436 | Convert the standard Lib double linked list to a virtual mapping.\r |
fb3df220 | 437 | \r |
22d9510d | 438 | This service uses EfiConvertPointer() to walk a double linked list and convert all the link\r |
439 | pointers to their virtual mappings. This function is only guaranteed to work during the\r | |
440 | EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event and calling it at other times has undefined results.\r | |
441 | \r | |
fb3df220 | 442 | @param DebugDisposition Supplies type information for the pointer being converted.\r |
443 | @param ListHead Head of linked list to convert.\r | |
444 | \r | |
af2dc6a7 | 445 | @retval EFI_SUCCESS Successfully executed the function.\r |
1a2f870c | 446 | @retval !EFI_SUCCESS Failed to execute the function.\r |
fb3df220 | 447 | \r |
448 | **/\r | |
449 | EFI_STATUS\r | |
450 | EFIAPI\r | |
451 | EfiConvertList (\r | |
452 | IN UINTN DebugDisposition,\r | |
453 | IN OUT LIST_ENTRY *ListHead\r | |
454 | );\r | |
455 | \r | |
456 | /**\r | |
cf8ae2f6 | 457 | This service is a wrapper for the UEFI Runtime Service UpdateCapsule().\r |
458 | \r | |
459 | Passes capsules to the firmware with both virtual and physical mapping. Depending on the intended\r | |
460 | consumption, the firmware may process the capsule immediately. If the payload should persist across a\r | |
461 | system reset, the reset value returned from EFI_QueryCapsuleCapabilities must be passed into ResetSystem()\r | |
462 | and will cause the capsule to be processed by the firmware as part of the reset process.\r | |
3b89de63 | 463 | \r |
fb3df220 | 464 | @param CapsuleHeaderArray Virtual pointer to an array of virtual pointers to the capsules\r |
465 | being passed into update capsule. Each capsules is assumed to\r | |
466 | stored in contiguous virtual memory. The capsules in the\r | |
467 | CapsuleHeaderArray must be the same capsules as the\r | |
468 | ScatterGatherList. The CapsuleHeaderArray must\r | |
469 | have the capsules in the same order as the ScatterGatherList.\r | |
470 | @param CapsuleCount Number of pointers to EFI_CAPSULE_HEADER in\r | |
471 | CaspuleHeaderArray.\r | |
472 | @param ScatterGatherList Physical pointer to a set of\r | |
473 | EFI_CAPSULE_BLOCK_DESCRIPTOR that describes the\r | |
474 | location in physical memory of a set of capsules. See Related\r | |
475 | Definitions for an explanation of how more than one capsule is\r | |
476 | passed via this interface. The capsules in the\r | |
477 | ScatterGatherList must be in the same order as the\r | |
478 | CapsuleHeaderArray. This parameter is only referenced if\r | |
479 | the capsules are defined to persist across system reset.\r | |
480 | \r | |
af2dc6a7 | 481 | @retval EFI_SUCCESS A valid capsule was passed. If CAPSULE_FLAGS_PERSIT_ACROSS_RESET is not set,\r |
22d9510d | 482 | the capsule has been successfully processed by the firmware.\r |
eaa8a234 | 483 | @retval EFI_INVALID_PARAMETER CapsuleSize is NULL, or an incompatible set of flags were\r |
484 | set in the capsule header.\r | |
22d9510d | 485 | @retval EFI_INVALID_PARAMETER CapsuleCount is 0\r |
fb3df220 | 486 | @retval EFI_DEVICE_ERROR The capsule update was started, but failed due to a device error.\r |
22d9510d | 487 | @retval EFI_UNSUPPORTED The capsule type is not supported on this platform.\r |
488 | @retval EFI_OUT_OF_RESOURCES There were insufficient resources to process the capsule.\r | |
fb3df220 | 489 | \r |
490 | **/\r | |
491 | EFI_STATUS\r | |
492 | EFIAPI\r | |
493 | EfiUpdateCapsule (\r | |
3b89de63 | 494 | IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,\r |
fb3df220 | 495 | IN UINTN CapsuleCount,\r |
d27e363b | 496 | IN EFI_PHYSICAL_ADDRESS ScatterGatherList OPTIONAL\r |
fb3df220 | 497 | );\r |
498 | \r | |
499 | \r | |
500 | /**\r | |
cf8ae2f6 | 501 | This service is a wrapper for the UEFI Runtime Service QueryCapsuleCapabilities().\r |
502 | \r | |
fb3df220 | 503 | The QueryCapsuleCapabilities() function allows a caller to test to see if a capsule or\r |
504 | capsules can be updated via UpdateCapsule(). The Flags values in the capsule header and\r | |
505 | size of the entire capsule is checked.\r | |
506 | If the caller needs to query for generic capsule capability a fake EFI_CAPSULE_HEADER can be\r | |
507 | constructed where CapsuleImageSize is equal to HeaderSize that is equal to sizeof\r | |
508 | (EFI_CAPSULE_HEADER). To determine reset requirements,\r | |
509 | CAPSULE_FLAGS_PERSIST_ACROSS_RESET should be set in the Flags field of the\r | |
510 | EFI_CAPSULE_HEADER.\r | |
511 | The firmware must support any capsule that has the\r | |
512 | CAPSULE_FLAGS_PERSIST_ACROSS_RESET flag set in EFI_CAPSULE_HEADER. The\r | |
513 | firmware sets the policy for what capsules are supported that do not have the\r | |
514 | CAPSULE_FLAGS_PERSIST_ACROSS_RESET flag set.\r | |
3b89de63 | 515 | \r |
fb3df220 | 516 | @param CapsuleHeaderArray Virtual pointer to an array of virtual pointers to the capsules\r |
517 | being passed into update capsule. The capsules are assumed to\r | |
518 | stored in contiguous virtual memory.\r | |
519 | @param CapsuleCount Number of pointers to EFI_CAPSULE_HEADER in\r | |
520 | CaspuleHeaderArray.\r | |
42eedea9 | 521 | @param MaximumCapsuleSize On output the maximum size that UpdateCapsule() can\r |
fb3df220 | 522 | support as an argument to UpdateCapsule() via\r |
523 | CapsuleHeaderArray and ScatterGatherList.\r | |
524 | Undefined on input.\r | |
525 | @param ResetType Returns the type of reset required for the capsule update.\r | |
526 | \r | |
af2dc6a7 | 527 | @retval EFI_SUCCESS A valid answer was returned.\r |
fb3df220 | 528 | @retval EFI_INVALID_PARAMETER MaximumCapsuleSize is NULL.\r |
529 | @retval EFI_UNSUPPORTED The capsule type is not supported on this platform, and\r | |
530 | MaximumCapsuleSize and ResetType are undefined.\r | |
22d9510d | 531 | @retval EFI_OUT_OF_RESOURCES There were insufficient resources to process the query request.\r |
fb3df220 | 532 | \r |
533 | **/\r | |
534 | EFI_STATUS\r | |
535 | EFIAPI\r | |
536 | EfiQueryCapsuleCapabilities (\r | |
3b89de63 | 537 | IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,\r |
538 | IN UINTN CapsuleCount,\r | |
fb3df220 | 539 | OUT UINT64 *MaximumCapsuleSize,\r |
540 | OUT EFI_RESET_TYPE *ResetType\r | |
541 | );\r | |
542 | \r | |
543 | \r | |
544 | /**\r | |
cf8ae2f6 | 545 | This service is a wrapper for the UEFI Runtime Service QueryVariableInfo().\r |
22d9510d | 546 | \r |
fb3df220 | 547 | The QueryVariableInfo() function allows a caller to obtain the information about the\r |
548 | maximum size of the storage space available for the EFI variables, the remaining size of the storage\r | |
549 | space available for the EFI variables and the maximum size of each individual EFI variable,\r | |
550 | associated with the attributes specified.\r | |
551 | The returned MaximumVariableStorageSize, RemainingVariableStorageSize,\r | |
552 | MaximumVariableSize information may change immediately after the call based on other\r | |
553 | runtime activities including asynchronous error events. Also, these values associated with different\r | |
554 | attributes are not additive in nature.\r | |
3b89de63 | 555 | \r |
fb3df220 | 556 | @param Attributes Attributes bitmask to specify the type of variables on\r |
557 | which to return information. Refer to the\r | |
558 | GetVariable() function description.\r | |
3b89de63 | 559 | @param MaximumVariableStorageSize\r |
fb3df220 | 560 | On output the maximum size of the storage space\r |
561 | available for the EFI variables associated with the\r | |
562 | attributes specified.\r | |
3b89de63 | 563 | @param RemainingVariableStorageSize\r |
fb3df220 | 564 | Returns the remaining size of the storage space\r |
565 | available for the EFI variables associated with the\r | |
af2dc6a7 | 566 | attributes specified.\r |
fb3df220 | 567 | @param MaximumVariableSize Returns the maximum size of the individual EFI\r |
568 | variables associated with the attributes specified.\r | |
569 | \r | |
af2dc6a7 | 570 | @retval EFI_SUCCESS A valid answer was returned.\r |
fb3df220 | 571 | @retval EFI_INVALID_PARAMETER An invalid combination of attribute bits was supplied.\r |
572 | @retval EFI_UNSUPPORTED EFI_UNSUPPORTED The attribute is not supported on this platform, and the\r | |
573 | MaximumVariableStorageSize,\r | |
574 | RemainingVariableStorageSize, MaximumVariableSize\r | |
575 | are undefined.\r | |
cf8ae2f6 | 576 | \r |
fb3df220 | 577 | **/\r |
578 | EFI_STATUS\r | |
579 | EFIAPI\r | |
580 | EfiQueryVariableInfo (\r | |
42eedea9 | 581 | IN UINT32 Attributes,\r |
fb3df220 | 582 | OUT UINT64 *MaximumVariableStorageSize,\r |
583 | OUT UINT64 *RemainingVariableStorageSize,\r | |
584 | OUT UINT64 *MaximumVariableSize\r | |
585 | );\r | |
586 | \r | |
587 | #endif\r | |
588 | \r |