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