1 | /** @file
|
---|
2 | Include file that supports UEFI.
|
---|
3 |
|
---|
4 | This include file must contain things defined in the UEFI 2.4 specification.
|
---|
5 | If a code construct is defined in the UEFI 2.4 specification it must be included
|
---|
6 | by this include file.
|
---|
7 |
|
---|
8 | Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
9 | This program and the accompanying materials are licensed and made available under
|
---|
10 | the terms and conditions of the BSD License that accompanies this distribution.
|
---|
11 | The full text of the license may be found at
|
---|
12 | http://opensource.org/licenses/bsd-license.php.
|
---|
13 |
|
---|
14 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
15 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
16 |
|
---|
17 | **/
|
---|
18 |
|
---|
19 | #ifndef __UEFI_SPEC_H__
|
---|
20 | #define __UEFI_SPEC_H__
|
---|
21 |
|
---|
22 | #include <Uefi/UefiMultiPhase.h>
|
---|
23 |
|
---|
24 | #include <Protocol/DevicePath.h>
|
---|
25 | #include <Protocol/SimpleTextIn.h>
|
---|
26 | #include <Protocol/SimpleTextInEx.h>
|
---|
27 | #include <Protocol/SimpleTextOut.h>
|
---|
28 |
|
---|
29 | ///
|
---|
30 | /// Enumeration of EFI memory allocation types.
|
---|
31 | ///
|
---|
32 | typedef enum {
|
---|
33 | ///
|
---|
34 | /// Allocate any available range of pages that satisfies the request.
|
---|
35 | ///
|
---|
36 | AllocateAnyPages,
|
---|
37 | ///
|
---|
38 | /// Allocate any available range of pages whose uppermost address is less than
|
---|
39 | /// or equal to a specified maximum address.
|
---|
40 | ///
|
---|
41 | AllocateMaxAddress,
|
---|
42 | ///
|
---|
43 | /// Allocate pages at a specified address.
|
---|
44 | ///
|
---|
45 | AllocateAddress,
|
---|
46 | ///
|
---|
47 | /// Maximum enumeration value that may be used for bounds checking.
|
---|
48 | ///
|
---|
49 | MaxAllocateType
|
---|
50 | } EFI_ALLOCATE_TYPE;
|
---|
51 |
|
---|
52 | //
|
---|
53 | // Bit definitions for EFI_TIME.Daylight
|
---|
54 | //
|
---|
55 | #define EFI_TIME_ADJUST_DAYLIGHT 0x01
|
---|
56 | #define EFI_TIME_IN_DAYLIGHT 0x02
|
---|
57 |
|
---|
58 | ///
|
---|
59 | /// Value definition for EFI_TIME.TimeZone.
|
---|
60 | ///
|
---|
61 | #define EFI_UNSPECIFIED_TIMEZONE 0x07FF
|
---|
62 |
|
---|
63 | //
|
---|
64 | // Memory cacheability attributes
|
---|
65 | //
|
---|
66 | #define EFI_MEMORY_UC 0x0000000000000001ULL
|
---|
67 | #define EFI_MEMORY_WC 0x0000000000000002ULL
|
---|
68 | #define EFI_MEMORY_WT 0x0000000000000004ULL
|
---|
69 | #define EFI_MEMORY_WB 0x0000000000000008ULL
|
---|
70 | #define EFI_MEMORY_UCE 0x0000000000000010ULL
|
---|
71 | //
|
---|
72 | // Physical memory protection attributes
|
---|
73 | //
|
---|
74 | #define EFI_MEMORY_WP 0x0000000000001000ULL
|
---|
75 | #define EFI_MEMORY_RP 0x0000000000002000ULL
|
---|
76 | #define EFI_MEMORY_XP 0x0000000000004000ULL
|
---|
77 | //
|
---|
78 | // Physical memory persistence attribute.
|
---|
79 | // The memory region supports byte-addressable non-volatility.
|
---|
80 | //
|
---|
81 | #define EFI_MEMORY_NV 0x0000000000008000ULL
|
---|
82 | //
|
---|
83 | // Runtime memory attribute
|
---|
84 | //
|
---|
85 | #define EFI_MEMORY_RUNTIME 0x8000000000000000ULL
|
---|
86 |
|
---|
87 | ///
|
---|
88 | /// Memory descriptor version number.
|
---|
89 | ///
|
---|
90 | #define EFI_MEMORY_DESCRIPTOR_VERSION 1
|
---|
91 |
|
---|
92 | ///
|
---|
93 | /// Definition of an EFI memory descriptor.
|
---|
94 | ///
|
---|
95 | typedef struct {
|
---|
96 | ///
|
---|
97 | /// Type of the memory region. See EFI_MEMORY_TYPE.
|
---|
98 | ///
|
---|
99 | UINT32 Type;
|
---|
100 | ///
|
---|
101 | /// Physical address of the first byte of the memory region. Must aligned
|
---|
102 | /// on a 4 KB boundary.
|
---|
103 | ///
|
---|
104 | EFI_PHYSICAL_ADDRESS PhysicalStart;
|
---|
105 | ///
|
---|
106 | /// Virtual address of the first byte of the memory region. Must aligned
|
---|
107 | /// on a 4 KB boundary.
|
---|
108 | ///
|
---|
109 | EFI_VIRTUAL_ADDRESS VirtualStart;
|
---|
110 | ///
|
---|
111 | /// Number of 4KB pages in the memory region.
|
---|
112 | ///
|
---|
113 | UINT64 NumberOfPages;
|
---|
114 | ///
|
---|
115 | /// Attributes of the memory region that describe the bit mask of capabilities
|
---|
116 | /// for that memory region, and not necessarily the current settings for that
|
---|
117 | /// memory region.
|
---|
118 | ///
|
---|
119 | UINT64 Attribute;
|
---|
120 | } EFI_MEMORY_DESCRIPTOR;
|
---|
121 |
|
---|
122 | /**
|
---|
123 | Allocates memory pages from the system.
|
---|
124 |
|
---|
125 | @param Type The type of allocation to perform.
|
---|
126 | @param MemoryType The type of memory to allocate.
|
---|
127 | @param Pages The number of contiguous 4 KB pages to allocate.
|
---|
128 | @param Memory The pointer to a physical address. On input, the way in which the address is
|
---|
129 | used depends on the value of Type.
|
---|
130 |
|
---|
131 | @retval EFI_SUCCESS The requested pages were allocated.
|
---|
132 | @retval EFI_INVALID_PARAMETER 1) Type is not AllocateAnyPages or
|
---|
133 | AllocateMaxAddress or AllocateAddress.
|
---|
134 | 2) MemoryType is in the range
|
---|
135 | 3) Memory is NULL.
|
---|
136 | 4) MemoryType was EfiPersistentMemory.
|
---|
137 | EfiMaxMemoryType..0x7FFFFFFF.
|
---|
138 | @retval EFI_OUT_OF_RESOURCES The pages could not be allocated.
|
---|
139 | @retval EFI_NOT_FOUND The requested pages could not be found.
|
---|
140 |
|
---|
141 | **/
|
---|
142 | typedef
|
---|
143 | EFI_STATUS
|
---|
144 | (EFIAPI *EFI_ALLOCATE_PAGES)(
|
---|
145 | IN EFI_ALLOCATE_TYPE Type,
|
---|
146 | IN EFI_MEMORY_TYPE MemoryType,
|
---|
147 | IN UINTN Pages,
|
---|
148 | IN OUT EFI_PHYSICAL_ADDRESS *Memory
|
---|
149 | );
|
---|
150 |
|
---|
151 | /**
|
---|
152 | Frees memory pages.
|
---|
153 |
|
---|
154 | @param Memory The base physical address of the pages to be freed.
|
---|
155 | @param Pages The number of contiguous 4 KB pages to free.
|
---|
156 |
|
---|
157 | @retval EFI_SUCCESS The requested pages were freed.
|
---|
158 | @retval EFI_INVALID_PARAMETER Memory is not a page-aligned address or Pages is invalid.
|
---|
159 | @retval EFI_NOT_FOUND The requested memory pages were not allocated with
|
---|
160 | AllocatePages().
|
---|
161 |
|
---|
162 | **/
|
---|
163 | typedef
|
---|
164 | EFI_STATUS
|
---|
165 | (EFIAPI *EFI_FREE_PAGES)(
|
---|
166 | IN EFI_PHYSICAL_ADDRESS Memory,
|
---|
167 | IN UINTN Pages
|
---|
168 | );
|
---|
169 |
|
---|
170 | /**
|
---|
171 | Returns the current memory map.
|
---|
172 |
|
---|
173 | @param MemoryMapSize A pointer to the size, in bytes, of the MemoryMap buffer.
|
---|
174 | On input, this is the size of the buffer allocated by the caller.
|
---|
175 | On output, it is the size of the buffer returned by the firmware if
|
---|
176 | the buffer was large enough, or the size of the buffer needed to contain
|
---|
177 | the map if the buffer was too small.
|
---|
178 | @param MemoryMap A pointer to the buffer in which firmware places the current memory
|
---|
179 | map.
|
---|
180 | @param MapKey A pointer to the location in which firmware returns the key for the
|
---|
181 | current memory map.
|
---|
182 | @param DescriptorSize A pointer to the location in which firmware returns the size, in bytes, of
|
---|
183 | an individual EFI_MEMORY_DESCRIPTOR.
|
---|
184 | @param DescriptorVersion A pointer to the location in which firmware returns the version number
|
---|
185 | associated with the EFI_MEMORY_DESCRIPTOR.
|
---|
186 |
|
---|
187 | @retval EFI_SUCCESS The memory map was returned in the MemoryMap buffer.
|
---|
188 | @retval EFI_BUFFER_TOO_SMALL The MemoryMap buffer was too small. The current buffer size
|
---|
189 | needed to hold the memory map is returned in MemoryMapSize.
|
---|
190 | @retval EFI_INVALID_PARAMETER 1) MemoryMapSize is NULL.
|
---|
191 | 2) The MemoryMap buffer is not too small and MemoryMap is
|
---|
192 | NULL.
|
---|
193 |
|
---|
194 | **/
|
---|
195 | typedef
|
---|
196 | EFI_STATUS
|
---|
197 | (EFIAPI *EFI_GET_MEMORY_MAP)(
|
---|
198 | IN OUT UINTN *MemoryMapSize,
|
---|
199 | IN OUT EFI_MEMORY_DESCRIPTOR *MemoryMap,
|
---|
200 | OUT UINTN *MapKey,
|
---|
201 | OUT UINTN *DescriptorSize,
|
---|
202 | OUT UINT32 *DescriptorVersion
|
---|
203 | );
|
---|
204 |
|
---|
205 | /**
|
---|
206 | Allocates pool memory.
|
---|
207 |
|
---|
208 | @param PoolType The type of pool to allocate.
|
---|
209 | @param Size The number of bytes to allocate from the pool.
|
---|
210 | @param Buffer A pointer to a pointer to the allocated buffer if the call succeeds;
|
---|
211 | undefined otherwise.
|
---|
212 |
|
---|
213 | @retval EFI_SUCCESS The requested number of bytes was allocated.
|
---|
214 | @retval EFI_OUT_OF_RESOURCES The pool requested could not be allocated.
|
---|
215 | @retval EFI_INVALID_PARAMETER PoolType was invalid or Buffer is NULL.
|
---|
216 | PoolType was EfiPersistentMemory.
|
---|
217 |
|
---|
218 | **/
|
---|
219 | typedef
|
---|
220 | EFI_STATUS
|
---|
221 | (EFIAPI *EFI_ALLOCATE_POOL)(
|
---|
222 | IN EFI_MEMORY_TYPE PoolType,
|
---|
223 | IN UINTN Size,
|
---|
224 | OUT VOID **Buffer
|
---|
225 | );
|
---|
226 |
|
---|
227 | /**
|
---|
228 | Returns pool memory to the system.
|
---|
229 |
|
---|
230 | @param Buffer The pointer to the buffer to free.
|
---|
231 |
|
---|
232 | @retval EFI_SUCCESS The memory was returned to the system.
|
---|
233 | @retval EFI_INVALID_PARAMETER Buffer was invalid.
|
---|
234 |
|
---|
235 | **/
|
---|
236 | typedef
|
---|
237 | EFI_STATUS
|
---|
238 | (EFIAPI *EFI_FREE_POOL)(
|
---|
239 | IN VOID *Buffer
|
---|
240 | );
|
---|
241 |
|
---|
242 | /**
|
---|
243 | Changes the runtime addressing mode of EFI firmware from physical to virtual.
|
---|
244 |
|
---|
245 | @param MemoryMapSize The size in bytes of VirtualMap.
|
---|
246 | @param DescriptorSize The size in bytes of an entry in the VirtualMap.
|
---|
247 | @param DescriptorVersion The version of the structure entries in VirtualMap.
|
---|
248 | @param VirtualMap An array of memory descriptors which contain new virtual
|
---|
249 | address mapping information for all runtime ranges.
|
---|
250 |
|
---|
251 | @retval EFI_SUCCESS The virtual address map has been applied.
|
---|
252 | @retval EFI_UNSUPPORTED EFI firmware is not at runtime, or the EFI firmware is already in
|
---|
253 | virtual address mapped mode.
|
---|
254 | @retval EFI_INVALID_PARAMETER DescriptorSize or DescriptorVersion is invalid.
|
---|
255 | @retval EFI_NO_MAPPING A virtual address was not supplied for a range in the memory
|
---|
256 | map that requires a mapping.
|
---|
257 | @retval EFI_NOT_FOUND A virtual address was supplied for an address that is not found
|
---|
258 | in the memory map.
|
---|
259 |
|
---|
260 | **/
|
---|
261 | typedef
|
---|
262 | EFI_STATUS
|
---|
263 | (EFIAPI *EFI_SET_VIRTUAL_ADDRESS_MAP)(
|
---|
264 | IN UINTN MemoryMapSize,
|
---|
265 | IN UINTN DescriptorSize,
|
---|
266 | IN UINT32 DescriptorVersion,
|
---|
267 | IN EFI_MEMORY_DESCRIPTOR *VirtualMap
|
---|
268 | );
|
---|
269 |
|
---|
270 | /**
|
---|
271 | Connects one or more drivers to a controller.
|
---|
272 |
|
---|
273 | @param ControllerHandle The handle of the controller to which driver(s) are to be connected.
|
---|
274 | @param DriverImageHandle A pointer to an ordered list handles that support the
|
---|
275 | EFI_DRIVER_BINDING_PROTOCOL.
|
---|
276 | @param RemainingDevicePath A pointer to the device path that specifies a child of the
|
---|
277 | controller specified by ControllerHandle.
|
---|
278 | @param Recursive If TRUE, then ConnectController() is called recursively
|
---|
279 | until the entire tree of controllers below the controller specified
|
---|
280 | by ControllerHandle have been created. If FALSE, then
|
---|
281 | the tree of controllers is only expanded one level.
|
---|
282 |
|
---|
283 | @retval EFI_SUCCESS 1) One or more drivers were connected to ControllerHandle.
|
---|
284 | 2) No drivers were connected to ControllerHandle, but
|
---|
285 | RemainingDevicePath is not NULL, and it is an End Device
|
---|
286 | Path Node.
|
---|
287 | @retval EFI_INVALID_PARAMETER ControllerHandle is NULL.
|
---|
288 | @retval EFI_NOT_FOUND 1) There are no EFI_DRIVER_BINDING_PROTOCOL instances
|
---|
289 | present in the system.
|
---|
290 | 2) No drivers were connected to ControllerHandle.
|
---|
291 | @retval EFI_SECURITY_VIOLATION
|
---|
292 | The user has no permission to start UEFI device drivers on the device path
|
---|
293 | associated with the ControllerHandle or specified by the RemainingDevicePath.
|
---|
294 | **/
|
---|
295 | typedef
|
---|
296 | EFI_STATUS
|
---|
297 | (EFIAPI *EFI_CONNECT_CONTROLLER)(
|
---|
298 | IN EFI_HANDLE ControllerHandle,
|
---|
299 | IN EFI_HANDLE *DriverImageHandle, OPTIONAL
|
---|
300 | IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath, OPTIONAL
|
---|
301 | IN BOOLEAN Recursive
|
---|
302 | );
|
---|
303 |
|
---|
304 | /**
|
---|
305 | Disconnects one or more drivers from a controller.
|
---|
306 |
|
---|
307 | @param ControllerHandle The handle of the controller from which driver(s) are to be disconnected.
|
---|
308 | @param DriverImageHandle The driver to disconnect from ControllerHandle.
|
---|
309 | If DriverImageHandle is NULL, then all the drivers currently managing
|
---|
310 | ControllerHandle are disconnected from ControllerHandle.
|
---|
311 | @param ChildHandle The handle of the child to destroy.
|
---|
312 | If ChildHandle is NULL, then all the children of ControllerHandle are
|
---|
313 | destroyed before the drivers are disconnected from ControllerHandle.
|
---|
314 |
|
---|
315 | @retval EFI_SUCCESS 1) One or more drivers were disconnected from the controller.
|
---|
316 | 2) On entry, no drivers are managing ControllerHandle.
|
---|
317 | 3) DriverImageHandle is not NULL, and on entry
|
---|
318 | DriverImageHandle is not managing ControllerHandle.
|
---|
319 | @retval EFI_INVALID_PARAMETER 1) ControllerHandle is NULL.
|
---|
320 | 2) DriverImageHandle is not NULL, and it is not a valid EFI_HANDLE.
|
---|
321 | 3) ChildHandle is not NULL, and it is not a valid EFI_HANDLE.
|
---|
322 | 4) DriverImageHandle does not support the EFI_DRIVER_BINDING_PROTOCOL.
|
---|
323 | @retval EFI_OUT_OF_RESOURCES There are not enough resources available to disconnect any drivers from
|
---|
324 | ControllerHandle.
|
---|
325 | @retval EFI_DEVICE_ERROR The controller could not be disconnected because of a device error.
|
---|
326 |
|
---|
327 | **/
|
---|
328 | typedef
|
---|
329 | EFI_STATUS
|
---|
330 | (EFIAPI *EFI_DISCONNECT_CONTROLLER)(
|
---|
331 | IN EFI_HANDLE ControllerHandle,
|
---|
332 | IN EFI_HANDLE DriverImageHandle, OPTIONAL
|
---|
333 | IN EFI_HANDLE ChildHandle OPTIONAL
|
---|
334 | );
|
---|
335 |
|
---|
336 |
|
---|
337 |
|
---|
338 | //
|
---|
339 | // ConvertPointer DebugDisposition type.
|
---|
340 | //
|
---|
341 | #define EFI_OPTIONAL_PTR 0x00000001
|
---|
342 |
|
---|
343 | /**
|
---|
344 | Determines the new virtual address that is to be used on subsequent memory accesses.
|
---|
345 |
|
---|
346 | @param DebugDisposition Supplies type information for the pointer being converted.
|
---|
347 | @param Address A pointer to a pointer that is to be fixed to be the value needed
|
---|
348 | for the new virtual address mappings being applied.
|
---|
349 |
|
---|
350 | @retval EFI_SUCCESS The pointer pointed to by Address was modified.
|
---|
351 | @retval EFI_INVALID_PARAMETER 1) Address is NULL.
|
---|
352 | 2) *Address is NULL and DebugDisposition does
|
---|
353 | not have the EFI_OPTIONAL_PTR bit set.
|
---|
354 | @retval EFI_NOT_FOUND The pointer pointed to by Address was not found to be part
|
---|
355 | of the current memory map. This is normally fatal.
|
---|
356 |
|
---|
357 | **/
|
---|
358 | typedef
|
---|
359 | EFI_STATUS
|
---|
360 | (EFIAPI *EFI_CONVERT_POINTER)(
|
---|
361 | IN UINTN DebugDisposition,
|
---|
362 | IN OUT VOID **Address
|
---|
363 | );
|
---|
364 |
|
---|
365 |
|
---|
366 | //
|
---|
367 | // These types can be ORed together as needed - for example,
|
---|
368 | // EVT_TIMER might be Ored with EVT_NOTIFY_WAIT or
|
---|
369 | // EVT_NOTIFY_SIGNAL.
|
---|
370 | //
|
---|
371 | #define EVT_TIMER 0x80000000
|
---|
372 | #define EVT_RUNTIME 0x40000000
|
---|
373 | #define EVT_NOTIFY_WAIT 0x00000100
|
---|
374 | #define EVT_NOTIFY_SIGNAL 0x00000200
|
---|
375 |
|
---|
376 | #define EVT_SIGNAL_EXIT_BOOT_SERVICES 0x00000201
|
---|
377 | #define EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE 0x60000202
|
---|
378 |
|
---|
379 | //
|
---|
380 | // The event's NotifyContext pointer points to a runtime memory
|
---|
381 | // address.
|
---|
382 | // The event is deprecated in UEFI2.0 and later specifications.
|
---|
383 | //
|
---|
384 | #define EVT_RUNTIME_CONTEXT 0x20000000
|
---|
385 |
|
---|
386 |
|
---|
387 | /**
|
---|
388 | Invoke a notification event
|
---|
389 |
|
---|
390 | @param Event Event whose notification function is being invoked.
|
---|
391 | @param Context The pointer to the notification function's context,
|
---|
392 | which is implementation-dependent.
|
---|
393 |
|
---|
394 | **/
|
---|
395 | typedef
|
---|
396 | VOID
|
---|
397 | (EFIAPI *EFI_EVENT_NOTIFY)(
|
---|
398 | IN EFI_EVENT Event,
|
---|
399 | IN VOID *Context
|
---|
400 | );
|
---|
401 |
|
---|
402 | /**
|
---|
403 | Creates an event.
|
---|
404 |
|
---|
405 | @param Type The type of event to create and its mode and attributes.
|
---|
406 | @param NotifyTpl The task priority level of event notifications, if needed.
|
---|
407 | @param NotifyFunction The pointer to the event's notification function, if any.
|
---|
408 | @param NotifyContext The pointer to the notification function's context; corresponds to parameter
|
---|
409 | Context in the notification function.
|
---|
410 | @param Event The pointer to the newly created event if the call succeeds; undefined
|
---|
411 | otherwise.
|
---|
412 |
|
---|
413 | @retval EFI_SUCCESS The event structure was created.
|
---|
414 | @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
|
---|
415 | @retval EFI_OUT_OF_RESOURCES The event could not be allocated.
|
---|
416 |
|
---|
417 | **/
|
---|
418 | typedef
|
---|
419 | EFI_STATUS
|
---|
420 | (EFIAPI *EFI_CREATE_EVENT)(
|
---|
421 | IN UINT32 Type,
|
---|
422 | IN EFI_TPL NotifyTpl,
|
---|
423 | IN EFI_EVENT_NOTIFY NotifyFunction,
|
---|
424 | IN VOID *NotifyContext,
|
---|
425 | OUT EFI_EVENT *Event
|
---|
426 | );
|
---|
427 |
|
---|
428 | /**
|
---|
429 | Creates an event in a group.
|
---|
430 |
|
---|
431 | @param Type The type of event to create and its mode and attributes.
|
---|
432 | @param NotifyTpl The task priority level of event notifications,if needed.
|
---|
433 | @param NotifyFunction The pointer to the event's notification function, if any.
|
---|
434 | @param NotifyContext The pointer to the notification function's context; corresponds to parameter
|
---|
435 | Context in the notification function.
|
---|
436 | @param EventGroup The pointer to the unique identifier of the group to which this event belongs.
|
---|
437 | If this is NULL, then the function behaves as if the parameters were passed
|
---|
438 | to CreateEvent.
|
---|
439 | @param Event The pointer to the newly created event if the call succeeds; undefined
|
---|
440 | otherwise.
|
---|
441 |
|
---|
442 | @retval EFI_SUCCESS The event structure was created.
|
---|
443 | @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
|
---|
444 | @retval EFI_OUT_OF_RESOURCES The event could not be allocated.
|
---|
445 |
|
---|
446 | **/
|
---|
447 | typedef
|
---|
448 | EFI_STATUS
|
---|
449 | (EFIAPI *EFI_CREATE_EVENT_EX)(
|
---|
450 | IN UINT32 Type,
|
---|
451 | IN EFI_TPL NotifyTpl,
|
---|
452 | IN EFI_EVENT_NOTIFY NotifyFunction OPTIONAL,
|
---|
453 | IN CONST VOID *NotifyContext OPTIONAL,
|
---|
454 | IN CONST EFI_GUID *EventGroup OPTIONAL,
|
---|
455 | OUT EFI_EVENT *Event
|
---|
456 | );
|
---|
457 |
|
---|
458 | ///
|
---|
459 | /// Timer delay types
|
---|
460 | ///
|
---|
461 | typedef enum {
|
---|
462 | ///
|
---|
463 | /// An event's timer settings is to be cancelled and not trigger time is to be set/
|
---|
464 | ///
|
---|
465 | TimerCancel,
|
---|
466 | ///
|
---|
467 | /// An event is to be signaled periodically at a specified interval from the current time.
|
---|
468 | ///
|
---|
469 | TimerPeriodic,
|
---|
470 | ///
|
---|
471 | /// An event is to be signaled once at a specified interval from the current time.
|
---|
472 | ///
|
---|
473 | TimerRelative
|
---|
474 | } EFI_TIMER_DELAY;
|
---|
475 |
|
---|
476 | /**
|
---|
477 | Sets the type of timer and the trigger time for a timer event.
|
---|
478 |
|
---|
479 | @param Event The timer event that is to be signaled at the specified time.
|
---|
480 | @param Type The type of time that is specified in TriggerTime.
|
---|
481 | @param TriggerTime The number of 100ns units until the timer expires.
|
---|
482 | A TriggerTime of 0 is legal.
|
---|
483 | If Type is TimerRelative and TriggerTime is 0, then the timer
|
---|
484 | event will be signaled on the next timer tick.
|
---|
485 | If Type is TimerPeriodic and TriggerTime is 0, then the timer
|
---|
486 | event will be signaled on every timer tick.
|
---|
487 |
|
---|
488 | @retval EFI_SUCCESS The event has been set to be signaled at the requested time.
|
---|
489 | @retval EFI_INVALID_PARAMETER Event or Type is not valid.
|
---|
490 |
|
---|
491 | **/
|
---|
492 | typedef
|
---|
493 | EFI_STATUS
|
---|
494 | (EFIAPI *EFI_SET_TIMER)(
|
---|
495 | IN EFI_EVENT Event,
|
---|
496 | IN EFI_TIMER_DELAY Type,
|
---|
497 | IN UINT64 TriggerTime
|
---|
498 | );
|
---|
499 |
|
---|
500 | /**
|
---|
501 | Signals an event.
|
---|
502 |
|
---|
503 | @param Event The event to signal.
|
---|
504 |
|
---|
505 | @retval EFI_SUCCESS The event has been signaled.
|
---|
506 |
|
---|
507 | **/
|
---|
508 | typedef
|
---|
509 | EFI_STATUS
|
---|
510 | (EFIAPI *EFI_SIGNAL_EVENT)(
|
---|
511 | IN EFI_EVENT Event
|
---|
512 | );
|
---|
513 |
|
---|
514 | /**
|
---|
515 | Stops execution until an event is signaled.
|
---|
516 |
|
---|
517 | @param NumberOfEvents The number of events in the Event array.
|
---|
518 | @param Event An array of EFI_EVENT.
|
---|
519 | @param Index The pointer to the index of the event which satisfied the wait condition.
|
---|
520 |
|
---|
521 | @retval EFI_SUCCESS The event indicated by Index was signaled.
|
---|
522 | @retval EFI_INVALID_PARAMETER 1) NumberOfEvents is 0.
|
---|
523 | 2) The event indicated by Index is of type
|
---|
524 | EVT_NOTIFY_SIGNAL.
|
---|
525 | @retval EFI_UNSUPPORTED The current TPL is not TPL_APPLICATION.
|
---|
526 |
|
---|
527 | **/
|
---|
528 | typedef
|
---|
529 | EFI_STATUS
|
---|
530 | (EFIAPI *EFI_WAIT_FOR_EVENT)(
|
---|
531 | IN UINTN NumberOfEvents,
|
---|
532 | IN EFI_EVENT *Event,
|
---|
533 | OUT UINTN *Index
|
---|
534 | );
|
---|
535 |
|
---|
536 | /**
|
---|
537 | Closes an event.
|
---|
538 |
|
---|
539 | @param Event The event to close.
|
---|
540 |
|
---|
541 | @retval EFI_SUCCESS The event has been closed.
|
---|
542 |
|
---|
543 | **/
|
---|
544 | typedef
|
---|
545 | EFI_STATUS
|
---|
546 | (EFIAPI *EFI_CLOSE_EVENT)(
|
---|
547 | IN EFI_EVENT Event
|
---|
548 | );
|
---|
549 |
|
---|
550 | /**
|
---|
551 | Checks whether an event is in the signaled state.
|
---|
552 |
|
---|
553 | @param Event The event to check.
|
---|
554 |
|
---|
555 | @retval EFI_SUCCESS The event is in the signaled state.
|
---|
556 | @retval EFI_NOT_READY The event is not in the signaled state.
|
---|
557 | @retval EFI_INVALID_PARAMETER Event is of type EVT_NOTIFY_SIGNAL.
|
---|
558 |
|
---|
559 | **/
|
---|
560 | typedef
|
---|
561 | EFI_STATUS
|
---|
562 | (EFIAPI *EFI_CHECK_EVENT)(
|
---|
563 | IN EFI_EVENT Event
|
---|
564 | );
|
---|
565 |
|
---|
566 |
|
---|
567 | //
|
---|
568 | // Task priority level
|
---|
569 | //
|
---|
570 | #define TPL_APPLICATION 4
|
---|
571 | #define TPL_CALLBACK 8
|
---|
572 | #define TPL_NOTIFY 16
|
---|
573 | #define TPL_HIGH_LEVEL 31
|
---|
574 |
|
---|
575 |
|
---|
576 | /**
|
---|
577 | Raises a task's priority level and returns its previous level.
|
---|
578 |
|
---|
579 | @param NewTpl The new task priority level.
|
---|
580 |
|
---|
581 | @return Previous task priority level
|
---|
582 |
|
---|
583 | **/
|
---|
584 | typedef
|
---|
585 | EFI_TPL
|
---|
586 | (EFIAPI *EFI_RAISE_TPL)(
|
---|
587 | IN EFI_TPL NewTpl
|
---|
588 | );
|
---|
589 |
|
---|
590 | /**
|
---|
591 | Restores a task's priority level to its previous value.
|
---|
592 |
|
---|
593 | @param OldTpl The previous task priority level to restore.
|
---|
594 |
|
---|
595 | **/
|
---|
596 | typedef
|
---|
597 | VOID
|
---|
598 | (EFIAPI *EFI_RESTORE_TPL)(
|
---|
599 | IN EFI_TPL OldTpl
|
---|
600 | );
|
---|
601 |
|
---|
602 | /**
|
---|
603 | Returns the value of a variable.
|
---|
604 |
|
---|
605 | @param VariableName A Null-terminated string that is the name of the vendor's
|
---|
606 | variable.
|
---|
607 | @param VendorGuid A unique identifier for the vendor.
|
---|
608 | @param Attributes If not NULL, a pointer to the memory location to return the
|
---|
609 | attributes bitmask for the variable.
|
---|
610 | @param DataSize On input, the size in bytes of the return Data buffer.
|
---|
611 | On output the size of data returned in Data.
|
---|
612 | @param Data The buffer to return the contents of the variable.
|
---|
613 |
|
---|
614 | @retval EFI_SUCCESS The function completed successfully.
|
---|
615 | @retval EFI_NOT_FOUND The variable was not found.
|
---|
616 | @retval EFI_BUFFER_TOO_SMALL The DataSize is too small for the result.
|
---|
617 | @retval EFI_INVALID_PARAMETER VariableName is NULL.
|
---|
618 | @retval EFI_INVALID_PARAMETER VendorGuid is NULL.
|
---|
619 | @retval EFI_INVALID_PARAMETER DataSize is NULL.
|
---|
620 | @retval EFI_INVALID_PARAMETER The DataSize is not too small and Data is NULL.
|
---|
621 | @retval EFI_DEVICE_ERROR The variable could not be retrieved due to a hardware error.
|
---|
622 | @retval EFI_SECURITY_VIOLATION The variable could not be retrieved due to an authentication failure.
|
---|
623 |
|
---|
624 | **/
|
---|
625 | typedef
|
---|
626 | EFI_STATUS
|
---|
627 | (EFIAPI *EFI_GET_VARIABLE)(
|
---|
628 | IN CHAR16 *VariableName,
|
---|
629 | IN EFI_GUID *VendorGuid,
|
---|
630 | OUT UINT32 *Attributes, OPTIONAL
|
---|
631 | IN OUT UINTN *DataSize,
|
---|
632 | OUT VOID *Data
|
---|
633 | );
|
---|
634 |
|
---|
635 | /**
|
---|
636 | Enumerates the current variable names.
|
---|
637 |
|
---|
638 | @param VariableNameSize The size of the VariableName buffer.
|
---|
639 | @param VariableName On input, supplies the last VariableName that was returned
|
---|
640 | by GetNextVariableName(). On output, returns the Nullterminated
|
---|
641 | string of the current variable.
|
---|
642 | @param VendorGuid On input, supplies the last VendorGuid that was returned by
|
---|
643 | GetNextVariableName(). On output, returns the
|
---|
644 | VendorGuid of the current variable.
|
---|
645 |
|
---|
646 | @retval EFI_SUCCESS The function completed successfully.
|
---|
647 | @retval EFI_NOT_FOUND The next variable was not found.
|
---|
648 | @retval EFI_BUFFER_TOO_SMALL The VariableNameSize is too small for the result.
|
---|
649 | @retval EFI_INVALID_PARAMETER VariableNameSize is NULL.
|
---|
650 | @retval EFI_INVALID_PARAMETER VariableName is NULL.
|
---|
651 | @retval EFI_INVALID_PARAMETER VendorGuid is NULL.
|
---|
652 | @retval EFI_DEVICE_ERROR The variable could not be retrieved due to a hardware error.
|
---|
653 |
|
---|
654 | **/
|
---|
655 | typedef
|
---|
656 | EFI_STATUS
|
---|
657 | (EFIAPI *EFI_GET_NEXT_VARIABLE_NAME)(
|
---|
658 | IN OUT UINTN *VariableNameSize,
|
---|
659 | IN OUT CHAR16 *VariableName,
|
---|
660 | IN OUT EFI_GUID *VendorGuid
|
---|
661 | );
|
---|
662 |
|
---|
663 | /**
|
---|
664 | Sets the value of a variable.
|
---|
665 |
|
---|
666 | @param VariableName A Null-terminated string that is the name of the vendor's variable.
|
---|
667 | Each VariableName is unique for each VendorGuid. VariableName must
|
---|
668 | contain 1 or more characters. If VariableName is an empty string,
|
---|
669 | then EFI_INVALID_PARAMETER is returned.
|
---|
670 | @param VendorGuid A unique identifier for the vendor.
|
---|
671 | @param Attributes Attributes bitmask to set for the variable.
|
---|
672 | @param DataSize The size in bytes of the Data buffer. Unless the EFI_VARIABLE_APPEND_WRITE,
|
---|
673 | EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS, or
|
---|
674 | EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS attribute is set, a size of zero
|
---|
675 | causes the variable to be deleted. When the EFI_VARIABLE_APPEND_WRITE attribute is
|
---|
676 | set, then a SetVariable() call with a DataSize of zero will not cause any change to
|
---|
677 | the variable value (the timestamp associated with the variable may be updated however
|
---|
678 | even if no new data value is provided,see the description of the
|
---|
679 | EFI_VARIABLE_AUTHENTICATION_2 descriptor below. In this case the DataSize will not
|
---|
680 | be zero since the EFI_VARIABLE_AUTHENTICATION_2 descriptor will be populated).
|
---|
681 | @param Data The contents for the variable.
|
---|
682 |
|
---|
683 | @retval EFI_SUCCESS The firmware has successfully stored the variable and its data as
|
---|
684 | defined by the Attributes.
|
---|
685 | @retval EFI_INVALID_PARAMETER An invalid combination of attribute bits, name, and GUID was supplied, or the
|
---|
686 | DataSize exceeds the maximum allowed.
|
---|
687 | @retval EFI_INVALID_PARAMETER VariableName is an empty string.
|
---|
688 | @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the variable and its data.
|
---|
689 | @retval EFI_DEVICE_ERROR The variable could not be retrieved due to a hardware error.
|
---|
690 | @retval EFI_WRITE_PROTECTED The variable in question is read-only.
|
---|
691 | @retval EFI_WRITE_PROTECTED The variable in question cannot be deleted.
|
---|
692 | @retval EFI_SECURITY_VIOLATION The variable could not be written due to EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS
|
---|
693 | or EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACESS being set, but the AuthInfo
|
---|
694 | does NOT pass the validation check carried out by the firmware.
|
---|
695 |
|
---|
696 | @retval EFI_NOT_FOUND The variable trying to be updated or deleted was not found.
|
---|
697 |
|
---|
698 | **/
|
---|
699 | typedef
|
---|
700 | EFI_STATUS
|
---|
701 | (EFIAPI *EFI_SET_VARIABLE)(
|
---|
702 | IN CHAR16 *VariableName,
|
---|
703 | IN EFI_GUID *VendorGuid,
|
---|
704 | IN UINT32 Attributes,
|
---|
705 | IN UINTN DataSize,
|
---|
706 | IN VOID *Data
|
---|
707 | );
|
---|
708 |
|
---|
709 |
|
---|
710 | ///
|
---|
711 | /// This provides the capabilities of the
|
---|
712 | /// real time clock device as exposed through the EFI interfaces.
|
---|
713 | ///
|
---|
714 | typedef struct {
|
---|
715 | ///
|
---|
716 | /// Provides the reporting resolution of the real-time clock device in
|
---|
717 | /// counts per second. For a normal PC-AT CMOS RTC device, this
|
---|
718 | /// value would be 1 Hz, or 1, to indicate that the device only reports
|
---|
719 | /// the time to the resolution of 1 second.
|
---|
720 | ///
|
---|
721 | UINT32 Resolution;
|
---|
722 | ///
|
---|
723 | /// Provides the timekeeping accuracy of the real-time clock in an
|
---|
724 | /// error rate of 1E-6 parts per million. For a clock with an accuracy
|
---|
725 | /// of 50 parts per million, the value in this field would be
|
---|
726 | /// 50,000,000.
|
---|
727 | ///
|
---|
728 | UINT32 Accuracy;
|
---|
729 | ///
|
---|
730 | /// A TRUE indicates that a time set operation clears the device's
|
---|
731 | /// time below the Resolution reporting level. A FALSE
|
---|
732 | /// indicates that the state below the Resolution level of the
|
---|
733 | /// device is not cleared when the time is set. Normal PC-AT CMOS
|
---|
734 | /// RTC devices set this value to FALSE.
|
---|
735 | ///
|
---|
736 | BOOLEAN SetsToZero;
|
---|
737 | } EFI_TIME_CAPABILITIES;
|
---|
738 |
|
---|
739 | /**
|
---|
740 | Returns the current time and date information, and the time-keeping capabilities
|
---|
741 | of the hardware platform.
|
---|
742 |
|
---|
743 | @param Time A pointer to storage to receive a snapshot of the current time.
|
---|
744 | @param Capabilities An optional pointer to a buffer to receive the real time clock
|
---|
745 | device's capabilities.
|
---|
746 |
|
---|
747 | @retval EFI_SUCCESS The operation completed successfully.
|
---|
748 | @retval EFI_INVALID_PARAMETER Time is NULL.
|
---|
749 | @retval EFI_DEVICE_ERROR The time could not be retrieved due to hardware error.
|
---|
750 |
|
---|
751 | **/
|
---|
752 | typedef
|
---|
753 | EFI_STATUS
|
---|
754 | (EFIAPI *EFI_GET_TIME)(
|
---|
755 | OUT EFI_TIME *Time,
|
---|
756 | OUT EFI_TIME_CAPABILITIES *Capabilities OPTIONAL
|
---|
757 | );
|
---|
758 |
|
---|
759 | /**
|
---|
760 | Sets the current local time and date information.
|
---|
761 |
|
---|
762 | @param Time A pointer to the current time.
|
---|
763 |
|
---|
764 | @retval EFI_SUCCESS The operation completed successfully.
|
---|
765 | @retval EFI_INVALID_PARAMETER A time field is out of range.
|
---|
766 | @retval EFI_DEVICE_ERROR The time could not be set due due to hardware error.
|
---|
767 |
|
---|
768 | **/
|
---|
769 | typedef
|
---|
770 | EFI_STATUS
|
---|
771 | (EFIAPI *EFI_SET_TIME)(
|
---|
772 | IN EFI_TIME *Time
|
---|
773 | );
|
---|
774 |
|
---|
775 | /**
|
---|
776 | Returns the current wakeup alarm clock setting.
|
---|
777 |
|
---|
778 | @param Enabled Indicates if the alarm is currently enabled or disabled.
|
---|
779 | @param Pending Indicates if the alarm signal is pending and requires acknowledgement.
|
---|
780 | @param Time The current alarm setting.
|
---|
781 |
|
---|
782 | @retval EFI_SUCCESS The alarm settings were returned.
|
---|
783 | @retval EFI_INVALID_PARAMETER Enabled is NULL.
|
---|
784 | @retval EFI_INVALID_PARAMETER Pending is NULL.
|
---|
785 | @retval EFI_INVALID_PARAMETER Time is NULL.
|
---|
786 | @retval EFI_DEVICE_ERROR The wakeup time could not be retrieved due to a hardware error.
|
---|
787 | @retval EFI_UNSUPPORTED A wakeup timer is not supported on this platform.
|
---|
788 |
|
---|
789 | **/
|
---|
790 | typedef
|
---|
791 | EFI_STATUS
|
---|
792 | (EFIAPI *EFI_GET_WAKEUP_TIME)(
|
---|
793 | OUT BOOLEAN *Enabled,
|
---|
794 | OUT BOOLEAN *Pending,
|
---|
795 | OUT EFI_TIME *Time
|
---|
796 | );
|
---|
797 |
|
---|
798 | /**
|
---|
799 | Sets the system wakeup alarm clock time.
|
---|
800 |
|
---|
801 | @param Enabled Enable or disable the wakeup alarm.
|
---|
802 | @param Time If Enable is TRUE, the time to set the wakeup alarm for.
|
---|
803 | If Enable is FALSE, then this parameter is optional, and may be NULL.
|
---|
804 |
|
---|
805 | @retval EFI_SUCCESS If Enable is TRUE, then the wakeup alarm was enabled. If
|
---|
806 | Enable is FALSE, then the wakeup alarm was disabled.
|
---|
807 | @retval EFI_INVALID_PARAMETER A time field is out of range.
|
---|
808 | @retval EFI_DEVICE_ERROR The wakeup time could not be set due to a hardware error.
|
---|
809 | @retval EFI_UNSUPPORTED A wakeup timer is not supported on this platform.
|
---|
810 |
|
---|
811 | **/
|
---|
812 | typedef
|
---|
813 | EFI_STATUS
|
---|
814 | (EFIAPI *EFI_SET_WAKEUP_TIME)(
|
---|
815 | IN BOOLEAN Enable,
|
---|
816 | IN EFI_TIME *Time OPTIONAL
|
---|
817 | );
|
---|
818 |
|
---|
819 | /**
|
---|
820 | Loads an EFI image into memory.
|
---|
821 |
|
---|
822 | @param BootPolicy If TRUE, indicates that the request originates from the boot
|
---|
823 | manager, and that the boot manager is attempting to load
|
---|
824 | FilePath as a boot selection. Ignored if SourceBuffer is
|
---|
825 | not NULL.
|
---|
826 | @param ParentImageHandle The caller's image handle.
|
---|
827 | @param DevicePath The DeviceHandle specific file path from which the image is
|
---|
828 | loaded.
|
---|
829 | @param SourceBuffer If not NULL, a pointer to the memory location containing a copy
|
---|
830 | of the image to be loaded.
|
---|
831 | @param SourceSize The size in bytes of SourceBuffer. Ignored if SourceBuffer is NULL.
|
---|
832 | @param ImageHandle The pointer to the returned image handle that is created when the
|
---|
833 | image is successfully loaded.
|
---|
834 |
|
---|
835 | @retval EFI_SUCCESS Image was loaded into memory correctly.
|
---|
836 | @retval EFI_NOT_FOUND Both SourceBuffer and DevicePath are NULL.
|
---|
837 | @retval EFI_INVALID_PARAMETER One or more parametes are invalid.
|
---|
838 | @retval EFI_UNSUPPORTED The image type is not supported.
|
---|
839 | @retval EFI_OUT_OF_RESOURCES Image was not loaded due to insufficient resources.
|
---|
840 | @retval EFI_LOAD_ERROR Image was not loaded because the image format was corrupt or not
|
---|
841 | understood.
|
---|
842 | @retval EFI_DEVICE_ERROR Image was not loaded because the device returned a read error.
|
---|
843 | @retval EFI_ACCESS_DENIED Image was not loaded because the platform policy prohibits the
|
---|
844 | image from being loaded. NULL is returned in *ImageHandle.
|
---|
845 | @retval EFI_SECURITY_VIOLATION Image was loaded and an ImageHandle was created with a
|
---|
846 | valid EFI_LOADED_IMAGE_PROTOCOL. However, the current
|
---|
847 | platform policy specifies that the image should not be started.
|
---|
848 | **/
|
---|
849 | typedef
|
---|
850 | EFI_STATUS
|
---|
851 | (EFIAPI *EFI_IMAGE_LOAD)(
|
---|
852 | IN BOOLEAN BootPolicy,
|
---|
853 | IN EFI_HANDLE ParentImageHandle,
|
---|
854 | IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
|
---|
855 | IN VOID *SourceBuffer OPTIONAL,
|
---|
856 | IN UINTN SourceSize,
|
---|
857 | OUT EFI_HANDLE *ImageHandle
|
---|
858 | );
|
---|
859 |
|
---|
860 | /**
|
---|
861 | Transfers control to a loaded image's entry point.
|
---|
862 |
|
---|
863 | @param ImageHandle Handle of image to be started.
|
---|
864 | @param ExitDataSize The pointer to the size, in bytes, of ExitData.
|
---|
865 | @param ExitData The pointer to a pointer to a data buffer that includes a Null-terminated
|
---|
866 | string, optionally followed by additional binary data.
|
---|
867 |
|
---|
868 | @retval EFI_INVALID_PARAMETER ImageHandle is either an invalid image handle or the image
|
---|
869 | has already been initialized with StartImage.
|
---|
870 | @retval EFI_SECURITY_VIOLATION The current platform policy specifies that the image should not be started.
|
---|
871 | @return Exit code from image
|
---|
872 |
|
---|
873 | **/
|
---|
874 | typedef
|
---|
875 | EFI_STATUS
|
---|
876 | (EFIAPI *EFI_IMAGE_START)(
|
---|
877 | IN EFI_HANDLE ImageHandle,
|
---|
878 | OUT UINTN *ExitDataSize,
|
---|
879 | OUT CHAR16 **ExitData OPTIONAL
|
---|
880 | );
|
---|
881 |
|
---|
882 | /**
|
---|
883 | Terminates a loaded EFI image and returns control to boot services.
|
---|
884 |
|
---|
885 | @param ImageHandle Handle that identifies the image. This parameter is passed to the
|
---|
886 | image on entry.
|
---|
887 | @param ExitStatus The image's exit code.
|
---|
888 | @param ExitDataSize The size, in bytes, of ExitData. Ignored if ExitStatus is EFI_SUCCESS.
|
---|
889 | @param ExitData The pointer to a data buffer that includes a Null-terminated string,
|
---|
890 | optionally followed by additional binary data. The string is a
|
---|
891 | description that the caller may use to further indicate the reason
|
---|
892 | for the image's exit. ExitData is only valid if ExitStatus
|
---|
893 | is something other than EFI_SUCCESS. The ExitData buffer
|
---|
894 | must be allocated by calling AllocatePool().
|
---|
895 |
|
---|
896 | @retval EFI_SUCCESS The image specified by ImageHandle was unloaded.
|
---|
897 | @retval EFI_INVALID_PARAMETER The image specified by ImageHandle has been loaded and
|
---|
898 | started with LoadImage() and StartImage(), but the
|
---|
899 | image is not the currently executing image.
|
---|
900 |
|
---|
901 | **/
|
---|
902 | typedef
|
---|
903 | EFI_STATUS
|
---|
904 | (EFIAPI *EFI_EXIT)(
|
---|
905 | IN EFI_HANDLE ImageHandle,
|
---|
906 | IN EFI_STATUS ExitStatus,
|
---|
907 | IN UINTN ExitDataSize,
|
---|
908 | IN CHAR16 *ExitData OPTIONAL
|
---|
909 | );
|
---|
910 |
|
---|
911 | /**
|
---|
912 | Unloads an image.
|
---|
913 |
|
---|
914 | @param ImageHandle Handle that identifies the image to be unloaded.
|
---|
915 |
|
---|
916 | @retval EFI_SUCCESS The image has been unloaded.
|
---|
917 | @retval EFI_INVALID_PARAMETER ImageHandle is not a valid image handle.
|
---|
918 |
|
---|
919 | **/
|
---|
920 | typedef
|
---|
921 | EFI_STATUS
|
---|
922 | (EFIAPI *EFI_IMAGE_UNLOAD)(
|
---|
923 | IN EFI_HANDLE ImageHandle
|
---|
924 | );
|
---|
925 |
|
---|
926 | /**
|
---|
927 | Terminates all boot services.
|
---|
928 |
|
---|
929 | @param ImageHandle Handle that identifies the exiting image.
|
---|
930 | @param MapKey Key to the latest memory map.
|
---|
931 |
|
---|
932 | @retval EFI_SUCCESS Boot services have been terminated.
|
---|
933 | @retval EFI_INVALID_PARAMETER MapKey is incorrect.
|
---|
934 |
|
---|
935 | **/
|
---|
936 | typedef
|
---|
937 | EFI_STATUS
|
---|
938 | (EFIAPI *EFI_EXIT_BOOT_SERVICES)(
|
---|
939 | IN EFI_HANDLE ImageHandle,
|
---|
940 | IN UINTN MapKey
|
---|
941 | );
|
---|
942 |
|
---|
943 | /**
|
---|
944 | Induces a fine-grained stall.
|
---|
945 |
|
---|
946 | @param Microseconds The number of microseconds to stall execution.
|
---|
947 |
|
---|
948 | @retval EFI_SUCCESS Execution was stalled at least the requested number of
|
---|
949 | Microseconds.
|
---|
950 |
|
---|
951 | **/
|
---|
952 | typedef
|
---|
953 | EFI_STATUS
|
---|
954 | (EFIAPI *EFI_STALL)(
|
---|
955 | IN UINTN Microseconds
|
---|
956 | );
|
---|
957 |
|
---|
958 | /**
|
---|
959 | Sets the system's watchdog timer.
|
---|
960 |
|
---|
961 | @param Timeout The number of seconds to set the watchdog timer to.
|
---|
962 | @param WatchdogCode The numeric code to log on a watchdog timer timeout event.
|
---|
963 | @param DataSize The size, in bytes, of WatchdogData.
|
---|
964 | @param WatchdogData A data buffer that includes a Null-terminated string, optionally
|
---|
965 | followed by additional binary data.
|
---|
966 |
|
---|
967 | @retval EFI_SUCCESS The timeout has been set.
|
---|
968 | @retval EFI_INVALID_PARAMETER The supplied WatchdogCode is invalid.
|
---|
969 | @retval EFI_UNSUPPORTED The system does not have a watchdog timer.
|
---|
970 | @retval EFI_DEVICE_ERROR The watchdog timer could not be programmed due to a hardware
|
---|
971 | error.
|
---|
972 |
|
---|
973 | **/
|
---|
974 | typedef
|
---|
975 | EFI_STATUS
|
---|
976 | (EFIAPI *EFI_SET_WATCHDOG_TIMER)(
|
---|
977 | IN UINTN Timeout,
|
---|
978 | IN UINT64 WatchdogCode,
|
---|
979 | IN UINTN DataSize,
|
---|
980 | IN CHAR16 *WatchdogData OPTIONAL
|
---|
981 | );
|
---|
982 |
|
---|
983 | ///
|
---|
984 | /// Enumeration of reset types.
|
---|
985 | ///
|
---|
986 | typedef enum {
|
---|
987 | ///
|
---|
988 | /// Used to induce a system-wide reset. This sets all circuitry within the
|
---|
989 | /// system to its initial state. This type of reset is asynchronous to system
|
---|
990 | /// operation and operates withgout regard to cycle boundaries. EfiColdReset
|
---|
991 | /// is tantamount to a system power cycle.
|
---|
992 | ///
|
---|
993 | EfiResetCold,
|
---|
994 | ///
|
---|
995 | /// Used to induce a system-wide initialization. The processors are set to their
|
---|
996 | /// initial state, and pending cycles are not corrupted. If the system does
|
---|
997 | /// not support this reset type, then an EfiResetCold must be performed.
|
---|
998 | ///
|
---|
999 | EfiResetWarm,
|
---|
1000 | ///
|
---|
1001 | /// Used to induce an entry into a power state equivalent to the ACPI G2/S5 or G3
|
---|
1002 | /// state. If the system does not support this reset type, then when the system
|
---|
1003 | /// is rebooted, it should exhibit the EfiResetCold attributes.
|
---|
1004 | ///
|
---|
1005 | EfiResetShutdown,
|
---|
1006 | ///
|
---|
1007 | /// Used to induce a system-wide reset. The exact type of the reset is defined by
|
---|
1008 | /// the EFI_GUID that follows the Null-terminated Unicode string passed into
|
---|
1009 | /// ResetData. If the platform does not recognize the EFI_GUID in ResetData the
|
---|
1010 | /// platform must pick a supported reset type to perform. The platform may
|
---|
1011 | /// optionally log the parameters from any non-normal reset that occurs.
|
---|
1012 | ///
|
---|
1013 | EfiResetPlatformSpecific
|
---|
1014 | } EFI_RESET_TYPE;
|
---|
1015 |
|
---|
1016 | /**
|
---|
1017 | Resets the entire platform.
|
---|
1018 |
|
---|
1019 | @param ResetType The type of reset to perform.
|
---|
1020 | @param ResetStatus The status code for the reset.
|
---|
1021 | @param DataSize The size, in bytes, of WatchdogData.
|
---|
1022 | @param ResetData For a ResetType of EfiResetCold, EfiResetWarm, or
|
---|
1023 | EfiResetShutdown the data buffer starts with a Null-terminated
|
---|
1024 | string, optionally followed by additional binary data.
|
---|
1025 |
|
---|
1026 | **/
|
---|
1027 | typedef
|
---|
1028 | VOID
|
---|
1029 | (EFIAPI *EFI_RESET_SYSTEM)(
|
---|
1030 | IN EFI_RESET_TYPE ResetType,
|
---|
1031 | IN EFI_STATUS ResetStatus,
|
---|
1032 | IN UINTN DataSize,
|
---|
1033 | IN VOID *ResetData OPTIONAL
|
---|
1034 | );
|
---|
1035 |
|
---|
1036 | /**
|
---|
1037 | Returns a monotonically increasing count for the platform.
|
---|
1038 |
|
---|
1039 | @param Count The pointer to returned value.
|
---|
1040 |
|
---|
1041 | @retval EFI_SUCCESS The next monotonic count was returned.
|
---|
1042 | @retval EFI_INVALID_PARAMETER Count is NULL.
|
---|
1043 | @retval EFI_DEVICE_ERROR The device is not functioning properly.
|
---|
1044 |
|
---|
1045 | **/
|
---|
1046 | typedef
|
---|
1047 | EFI_STATUS
|
---|
1048 | (EFIAPI *EFI_GET_NEXT_MONOTONIC_COUNT)(
|
---|
1049 | OUT UINT64 *Count
|
---|
1050 | );
|
---|
1051 |
|
---|
1052 | /**
|
---|
1053 | Returns the next high 32 bits of the platform's monotonic counter.
|
---|
1054 |
|
---|
1055 | @param HighCount The pointer to returned value.
|
---|
1056 |
|
---|
1057 | @retval EFI_SUCCESS The next high monotonic count was returned.
|
---|
1058 | @retval EFI_INVALID_PARAMETER HighCount is NULL.
|
---|
1059 | @retval EFI_DEVICE_ERROR The device is not functioning properly.
|
---|
1060 |
|
---|
1061 | **/
|
---|
1062 | typedef
|
---|
1063 | EFI_STATUS
|
---|
1064 | (EFIAPI *EFI_GET_NEXT_HIGH_MONO_COUNT)(
|
---|
1065 | OUT UINT32 *HighCount
|
---|
1066 | );
|
---|
1067 |
|
---|
1068 | /**
|
---|
1069 | Computes and returns a 32-bit CRC for a data buffer.
|
---|
1070 |
|
---|
1071 | @param Data A pointer to the buffer on which the 32-bit CRC is to be computed.
|
---|
1072 | @param DataSize The number of bytes in the buffer Data.
|
---|
1073 | @param Crc32 The 32-bit CRC that was computed for the data buffer specified by Data
|
---|
1074 | and DataSize.
|
---|
1075 |
|
---|
1076 | @retval EFI_SUCCESS The 32-bit CRC was computed for the data buffer and returned in
|
---|
1077 | Crc32.
|
---|
1078 | @retval EFI_INVALID_PARAMETER Data is NULL.
|
---|
1079 | @retval EFI_INVALID_PARAMETER Crc32 is NULL.
|
---|
1080 | @retval EFI_INVALID_PARAMETER DataSize is 0.
|
---|
1081 |
|
---|
1082 | **/
|
---|
1083 | typedef
|
---|
1084 | EFI_STATUS
|
---|
1085 | (EFIAPI *EFI_CALCULATE_CRC32)(
|
---|
1086 | IN VOID *Data,
|
---|
1087 | IN UINTN DataSize,
|
---|
1088 | OUT UINT32 *Crc32
|
---|
1089 | );
|
---|
1090 |
|
---|
1091 | /**
|
---|
1092 | Copies the contents of one buffer to another buffer.
|
---|
1093 |
|
---|
1094 | @param Destination The pointer to the destination buffer of the memory copy.
|
---|
1095 | @param Source The pointer to the source buffer of the memory copy.
|
---|
1096 | @param Length Number of bytes to copy from Source to Destination.
|
---|
1097 |
|
---|
1098 | **/
|
---|
1099 | typedef
|
---|
1100 | VOID
|
---|
1101 | (EFIAPI *EFI_COPY_MEM)(
|
---|
1102 | IN VOID *Destination,
|
---|
1103 | IN VOID *Source,
|
---|
1104 | IN UINTN Length
|
---|
1105 | );
|
---|
1106 |
|
---|
1107 | /**
|
---|
1108 | The SetMem() function fills a buffer with a specified value.
|
---|
1109 |
|
---|
1110 | @param Buffer The pointer to the buffer to fill.
|
---|
1111 | @param Size Number of bytes in Buffer to fill.
|
---|
1112 | @param Value Value to fill Buffer with.
|
---|
1113 |
|
---|
1114 | **/
|
---|
1115 | typedef
|
---|
1116 | VOID
|
---|
1117 | (EFIAPI *EFI_SET_MEM)(
|
---|
1118 | IN VOID *Buffer,
|
---|
1119 | IN UINTN Size,
|
---|
1120 | IN UINT8 Value
|
---|
1121 | );
|
---|
1122 |
|
---|
1123 | ///
|
---|
1124 | /// Enumeration of EFI Interface Types
|
---|
1125 | ///
|
---|
1126 | typedef enum {
|
---|
1127 | ///
|
---|
1128 | /// Indicates that the supplied protocol interface is supplied in native form.
|
---|
1129 | ///
|
---|
1130 | EFI_NATIVE_INTERFACE
|
---|
1131 | } EFI_INTERFACE_TYPE;
|
---|
1132 |
|
---|
1133 | /**
|
---|
1134 | Installs a protocol interface on a device handle. If the handle does not exist, it is created and added
|
---|
1135 | to the list of handles in the system. InstallMultipleProtocolInterfaces() performs
|
---|
1136 | more error checking than InstallProtocolInterface(), so it is recommended that
|
---|
1137 | InstallMultipleProtocolInterfaces() be used in place of
|
---|
1138 | InstallProtocolInterface()
|
---|
1139 |
|
---|
1140 | @param Handle A pointer to the EFI_HANDLE on which the interface is to be installed.
|
---|
1141 | @param Protocol The numeric ID of the protocol interface.
|
---|
1142 | @param InterfaceType Indicates whether Interface is supplied in native form.
|
---|
1143 | @param Interface A pointer to the protocol interface.
|
---|
1144 |
|
---|
1145 | @retval EFI_SUCCESS The protocol interface was installed.
|
---|
1146 | @retval EFI_OUT_OF_RESOURCES Space for a new handle could not be allocated.
|
---|
1147 | @retval EFI_INVALID_PARAMETER Handle is NULL.
|
---|
1148 | @retval EFI_INVALID_PARAMETER Protocol is NULL.
|
---|
1149 | @retval EFI_INVALID_PARAMETER InterfaceType is not EFI_NATIVE_INTERFACE.
|
---|
1150 | @retval EFI_INVALID_PARAMETER Protocol is already installed on the handle specified by Handle.
|
---|
1151 |
|
---|
1152 | **/
|
---|
1153 | typedef
|
---|
1154 | EFI_STATUS
|
---|
1155 | (EFIAPI *EFI_INSTALL_PROTOCOL_INTERFACE)(
|
---|
1156 | IN OUT EFI_HANDLE *Handle,
|
---|
1157 | IN EFI_GUID *Protocol,
|
---|
1158 | IN EFI_INTERFACE_TYPE InterfaceType,
|
---|
1159 | IN VOID *Interface
|
---|
1160 | );
|
---|
1161 |
|
---|
1162 | /**
|
---|
1163 | Installs one or more protocol interfaces into the boot services environment.
|
---|
1164 |
|
---|
1165 | @param Handle The pointer to a handle to install the new protocol interfaces on,
|
---|
1166 | or a pointer to NULL if a new handle is to be allocated.
|
---|
1167 | @param ... A variable argument list containing pairs of protocol GUIDs and protocol
|
---|
1168 | interfaces.
|
---|
1169 |
|
---|
1170 | @retval EFI_SUCCESS All the protocol interface was installed.
|
---|
1171 | @retval EFI_OUT_OF_RESOURCES There was not enough memory in pool to install all the protocols.
|
---|
1172 | @retval EFI_ALREADY_STARTED A Device Path Protocol instance was passed in that is already present in
|
---|
1173 | the handle database.
|
---|
1174 | @retval EFI_INVALID_PARAMETER Handle is NULL.
|
---|
1175 | @retval EFI_INVALID_PARAMETER Protocol is already installed on the handle specified by Handle.
|
---|
1176 |
|
---|
1177 | **/
|
---|
1178 | typedef
|
---|
1179 | EFI_STATUS
|
---|
1180 | (EFIAPI *EFI_INSTALL_MULTIPLE_PROTOCOL_INTERFACES)(
|
---|
1181 | IN OUT EFI_HANDLE *Handle,
|
---|
1182 | ...
|
---|
1183 | );
|
---|
1184 |
|
---|
1185 | /**
|
---|
1186 | Reinstalls a protocol interface on a device handle.
|
---|
1187 |
|
---|
1188 | @param Handle Handle on which the interface is to be reinstalled.
|
---|
1189 | @param Protocol The numeric ID of the interface.
|
---|
1190 | @param OldInterface A pointer to the old interface. NULL can be used if a structure is not
|
---|
1191 | associated with Protocol.
|
---|
1192 | @param NewInterface A pointer to the new interface.
|
---|
1193 |
|
---|
1194 | @retval EFI_SUCCESS The protocol interface was reinstalled.
|
---|
1195 | @retval EFI_NOT_FOUND The OldInterface on the handle was not found.
|
---|
1196 | @retval EFI_ACCESS_DENIED The protocol interface could not be reinstalled,
|
---|
1197 | because OldInterface is still being used by a
|
---|
1198 | driver that will not release it.
|
---|
1199 | @retval EFI_INVALID_PARAMETER Handle is NULL.
|
---|
1200 | @retval EFI_INVALID_PARAMETER Protocol is NULL.
|
---|
1201 |
|
---|
1202 | **/
|
---|
1203 | typedef
|
---|
1204 | EFI_STATUS
|
---|
1205 | (EFIAPI *EFI_REINSTALL_PROTOCOL_INTERFACE)(
|
---|
1206 | IN EFI_HANDLE Handle,
|
---|
1207 | IN EFI_GUID *Protocol,
|
---|
1208 | IN VOID *OldInterface,
|
---|
1209 | IN VOID *NewInterface
|
---|
1210 | );
|
---|
1211 |
|
---|
1212 | /**
|
---|
1213 | Removes a protocol interface from a device handle. It is recommended that
|
---|
1214 | UninstallMultipleProtocolInterfaces() be used in place of
|
---|
1215 | UninstallProtocolInterface().
|
---|
1216 |
|
---|
1217 | @param Handle The handle on which the interface was installed.
|
---|
1218 | @param Protocol The numeric ID of the interface.
|
---|
1219 | @param Interface A pointer to the interface.
|
---|
1220 |
|
---|
1221 | @retval EFI_SUCCESS The interface was removed.
|
---|
1222 | @retval EFI_NOT_FOUND The interface was not found.
|
---|
1223 | @retval EFI_ACCESS_DENIED The interface was not removed because the interface
|
---|
1224 | is still being used by a driver.
|
---|
1225 | @retval EFI_INVALID_PARAMETER Handle is NULL.
|
---|
1226 | @retval EFI_INVALID_PARAMETER Protocol is NULL.
|
---|
1227 |
|
---|
1228 | **/
|
---|
1229 | typedef
|
---|
1230 | EFI_STATUS
|
---|
1231 | (EFIAPI *EFI_UNINSTALL_PROTOCOL_INTERFACE)(
|
---|
1232 | IN EFI_HANDLE Handle,
|
---|
1233 | IN EFI_GUID *Protocol,
|
---|
1234 | IN VOID *Interface
|
---|
1235 | );
|
---|
1236 |
|
---|
1237 | /**
|
---|
1238 | Removes one or more protocol interfaces into the boot services environment.
|
---|
1239 |
|
---|
1240 | @param Handle The handle to remove the protocol interfaces from.
|
---|
1241 | @param ... A variable argument list containing pairs of protocol GUIDs and
|
---|
1242 | protocol interfaces.
|
---|
1243 |
|
---|
1244 | @retval EFI_SUCCESS All the protocol interfaces were removed.
|
---|
1245 | @retval EFI_INVALID_PARAMETER One of the protocol interfaces was not previously installed on Handle.
|
---|
1246 |
|
---|
1247 | **/
|
---|
1248 | typedef
|
---|
1249 | EFI_STATUS
|
---|
1250 | (EFIAPI *EFI_UNINSTALL_MULTIPLE_PROTOCOL_INTERFACES)(
|
---|
1251 | IN EFI_HANDLE Handle,
|
---|
1252 | ...
|
---|
1253 | );
|
---|
1254 |
|
---|
1255 | /**
|
---|
1256 | Queries a handle to determine if it supports a specified protocol.
|
---|
1257 |
|
---|
1258 | @param Handle The handle being queried.
|
---|
1259 | @param Protocol The published unique identifier of the protocol.
|
---|
1260 | @param Interface Supplies the address where a pointer to the corresponding Protocol
|
---|
1261 | Interface is returned.
|
---|
1262 |
|
---|
1263 | @retval EFI_SUCCESS The interface information for the specified protocol was returned.
|
---|
1264 | @retval EFI_UNSUPPORTED The device does not support the specified protocol.
|
---|
1265 | @retval EFI_INVALID_PARAMETER Handle is NULL.
|
---|
1266 | @retval EFI_INVALID_PARAMETER Protocol is NULL.
|
---|
1267 | @retval EFI_INVALID_PARAMETER Interface is NULL.
|
---|
1268 |
|
---|
1269 | **/
|
---|
1270 | typedef
|
---|
1271 | EFI_STATUS
|
---|
1272 | (EFIAPI *EFI_HANDLE_PROTOCOL)(
|
---|
1273 | IN EFI_HANDLE Handle,
|
---|
1274 | IN EFI_GUID *Protocol,
|
---|
1275 | OUT VOID **Interface
|
---|
1276 | );
|
---|
1277 |
|
---|
1278 | #define EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL 0x00000001
|
---|
1279 | #define EFI_OPEN_PROTOCOL_GET_PROTOCOL 0x00000002
|
---|
1280 | #define EFI_OPEN_PROTOCOL_TEST_PROTOCOL 0x00000004
|
---|
1281 | #define EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER 0x00000008
|
---|
1282 | #define EFI_OPEN_PROTOCOL_BY_DRIVER 0x00000010
|
---|
1283 | #define EFI_OPEN_PROTOCOL_EXCLUSIVE 0x00000020
|
---|
1284 |
|
---|
1285 | /**
|
---|
1286 | Queries a handle to determine if it supports a specified protocol. If the protocol is supported by the
|
---|
1287 | handle, it opens the protocol on behalf of the calling agent.
|
---|
1288 |
|
---|
1289 | @param Handle The handle for the protocol interface that is being opened.
|
---|
1290 | @param Protocol The published unique identifier of the protocol.
|
---|
1291 | @param Interface Supplies the address where a pointer to the corresponding Protocol
|
---|
1292 | Interface is returned.
|
---|
1293 | @param AgentHandle The handle of the agent that is opening the protocol interface
|
---|
1294 | specified by Protocol and Interface.
|
---|
1295 | @param ControllerHandle If the agent that is opening a protocol is a driver that follows the
|
---|
1296 | UEFI Driver Model, then this parameter is the controller handle
|
---|
1297 | that requires the protocol interface. If the agent does not follow
|
---|
1298 | the UEFI Driver Model, then this parameter is optional and may
|
---|
1299 | be NULL.
|
---|
1300 | @param Attributes The open mode of the protocol interface specified by Handle
|
---|
1301 | and Protocol.
|
---|
1302 |
|
---|
1303 | @retval EFI_SUCCESS An item was added to the open list for the protocol interface, and the
|
---|
1304 | protocol interface was returned in Interface.
|
---|
1305 | @retval EFI_UNSUPPORTED Handle does not support Protocol.
|
---|
1306 | @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
|
---|
1307 | @retval EFI_ACCESS_DENIED Required attributes can't be supported in current environment.
|
---|
1308 | @retval EFI_ALREADY_STARTED Item on the open list already has requierd attributes whose agent
|
---|
1309 | handle is the same as AgentHandle.
|
---|
1310 |
|
---|
1311 | **/
|
---|
1312 | typedef
|
---|
1313 | EFI_STATUS
|
---|
1314 | (EFIAPI *EFI_OPEN_PROTOCOL)(
|
---|
1315 | IN EFI_HANDLE Handle,
|
---|
1316 | IN EFI_GUID *Protocol,
|
---|
1317 | OUT VOID **Interface, OPTIONAL
|
---|
1318 | IN EFI_HANDLE AgentHandle,
|
---|
1319 | IN EFI_HANDLE ControllerHandle,
|
---|
1320 | IN UINT32 Attributes
|
---|
1321 | );
|
---|
1322 |
|
---|
1323 |
|
---|
1324 | /**
|
---|
1325 | Closes a protocol on a handle that was opened using OpenProtocol().
|
---|
1326 |
|
---|
1327 | @param Handle The handle for the protocol interface that was previously opened
|
---|
1328 | with OpenProtocol(), and is now being closed.
|
---|
1329 | @param Protocol The published unique identifier of the protocol.
|
---|
1330 | @param AgentHandle The handle of the agent that is closing the protocol interface.
|
---|
1331 | @param ControllerHandle If the agent that opened a protocol is a driver that follows the
|
---|
1332 | UEFI Driver Model, then this parameter is the controller handle
|
---|
1333 | that required the protocol interface.
|
---|
1334 |
|
---|
1335 | @retval EFI_SUCCESS The protocol instance was closed.
|
---|
1336 | @retval EFI_INVALID_PARAMETER 1) Handle is NULL.
|
---|
1337 | 2) AgentHandle is NULL.
|
---|
1338 | 3) ControllerHandle is not NULL and ControllerHandle is not a valid EFI_HANDLE.
|
---|
1339 | 4) Protocol is NULL.
|
---|
1340 | @retval EFI_NOT_FOUND 1) Handle does not support the protocol specified by Protocol.
|
---|
1341 | 2) The protocol interface specified by Handle and Protocol is not
|
---|
1342 | currently open by AgentHandle and ControllerHandle.
|
---|
1343 |
|
---|
1344 | **/
|
---|
1345 | typedef
|
---|
1346 | EFI_STATUS
|
---|
1347 | (EFIAPI *EFI_CLOSE_PROTOCOL)(
|
---|
1348 | IN EFI_HANDLE Handle,
|
---|
1349 | IN EFI_GUID *Protocol,
|
---|
1350 | IN EFI_HANDLE AgentHandle,
|
---|
1351 | IN EFI_HANDLE ControllerHandle
|
---|
1352 | );
|
---|
1353 |
|
---|
1354 | ///
|
---|
1355 | /// EFI Oprn Protocol Information Entry
|
---|
1356 | ///
|
---|
1357 | typedef struct {
|
---|
1358 | EFI_HANDLE AgentHandle;
|
---|
1359 | EFI_HANDLE ControllerHandle;
|
---|
1360 | UINT32 Attributes;
|
---|
1361 | UINT32 OpenCount;
|
---|
1362 | } EFI_OPEN_PROTOCOL_INFORMATION_ENTRY;
|
---|
1363 |
|
---|
1364 | /**
|
---|
1365 | Retrieves the list of agents that currently have a protocol interface opened.
|
---|
1366 |
|
---|
1367 | @param Handle The handle for the protocol interface that is being queried.
|
---|
1368 | @param Protocol The published unique identifier of the protocol.
|
---|
1369 | @param EntryBuffer A pointer to a buffer of open protocol information in the form of
|
---|
1370 | EFI_OPEN_PROTOCOL_INFORMATION_ENTRY structures.
|
---|
1371 | @param EntryCount A pointer to the number of entries in EntryBuffer.
|
---|
1372 |
|
---|
1373 | @retval EFI_SUCCESS The open protocol information was returned in EntryBuffer, and the
|
---|
1374 | number of entries was returned EntryCount.
|
---|
1375 | @retval EFI_OUT_OF_RESOURCES There are not enough resources available to allocate EntryBuffer.
|
---|
1376 | @retval EFI_NOT_FOUND Handle does not support the protocol specified by Protocol.
|
---|
1377 |
|
---|
1378 | **/
|
---|
1379 | typedef
|
---|
1380 | EFI_STATUS
|
---|
1381 | (EFIAPI *EFI_OPEN_PROTOCOL_INFORMATION)(
|
---|
1382 | IN EFI_HANDLE Handle,
|
---|
1383 | IN EFI_GUID *Protocol,
|
---|
1384 | OUT EFI_OPEN_PROTOCOL_INFORMATION_ENTRY **EntryBuffer,
|
---|
1385 | OUT UINTN *EntryCount
|
---|
1386 | );
|
---|
1387 |
|
---|
1388 | /**
|
---|
1389 | Retrieves the list of protocol interface GUIDs that are installed on a handle in a buffer allocated
|
---|
1390 | from pool.
|
---|
1391 |
|
---|
1392 | @param Handle The handle from which to retrieve the list of protocol interface
|
---|
1393 | GUIDs.
|
---|
1394 | @param ProtocolBuffer A pointer to the list of protocol interface GUID pointers that are
|
---|
1395 | installed on Handle.
|
---|
1396 | @param ProtocolBufferCount A pointer to the number of GUID pointers present in
|
---|
1397 | ProtocolBuffer.
|
---|
1398 |
|
---|
1399 | @retval EFI_SUCCESS The list of protocol interface GUIDs installed on Handle was returned in
|
---|
1400 | ProtocolBuffer. The number of protocol interface GUIDs was
|
---|
1401 | returned in ProtocolBufferCount.
|
---|
1402 | @retval EFI_OUT_OF_RESOURCES There is not enough pool memory to store the results.
|
---|
1403 | @retval EFI_INVALID_PARAMETER Handle is NULL.
|
---|
1404 | @retval EFI_INVALID_PARAMETER Handle is not a valid EFI_HANDLE.
|
---|
1405 | @retval EFI_INVALID_PARAMETER ProtocolBuffer is NULL.
|
---|
1406 | @retval EFI_INVALID_PARAMETER ProtocolBufferCount is NULL.
|
---|
1407 |
|
---|
1408 | **/
|
---|
1409 | typedef
|
---|
1410 | EFI_STATUS
|
---|
1411 | (EFIAPI *EFI_PROTOCOLS_PER_HANDLE)(
|
---|
1412 | IN EFI_HANDLE Handle,
|
---|
1413 | OUT EFI_GUID ***ProtocolBuffer,
|
---|
1414 | OUT UINTN *ProtocolBufferCount
|
---|
1415 | );
|
---|
1416 |
|
---|
1417 | /**
|
---|
1418 | Creates an event that is to be signaled whenever an interface is installed for a specified protocol.
|
---|
1419 |
|
---|
1420 | @param Protocol The numeric ID of the protocol for which the event is to be registered.
|
---|
1421 | @param Event Event that is to be signaled whenever a protocol interface is registered
|
---|
1422 | for Protocol.
|
---|
1423 | @param Registration A pointer to a memory location to receive the registration value.
|
---|
1424 |
|
---|
1425 | @retval EFI_SUCCESS The notification event has been registered.
|
---|
1426 | @retval EFI_OUT_OF_RESOURCES Space for the notification event could not be allocated.
|
---|
1427 | @retval EFI_INVALID_PARAMETER Protocol is NULL.
|
---|
1428 | @retval EFI_INVALID_PARAMETER Event is NULL.
|
---|
1429 | @retval EFI_INVALID_PARAMETER Registration is NULL.
|
---|
1430 |
|
---|
1431 | **/
|
---|
1432 | typedef
|
---|
1433 | EFI_STATUS
|
---|
1434 | (EFIAPI *EFI_REGISTER_PROTOCOL_NOTIFY)(
|
---|
1435 | IN EFI_GUID *Protocol,
|
---|
1436 | IN EFI_EVENT Event,
|
---|
1437 | OUT VOID **Registration
|
---|
1438 | );
|
---|
1439 |
|
---|
1440 | ///
|
---|
1441 | /// Enumeration of EFI Locate Search Types
|
---|
1442 | ///
|
---|
1443 | typedef enum {
|
---|
1444 | ///
|
---|
1445 | /// Retrieve all the handles in the handle database.
|
---|
1446 | ///
|
---|
1447 | AllHandles,
|
---|
1448 | ///
|
---|
1449 | /// Retrieve the next handle fron a RegisterProtocolNotify() event.
|
---|
1450 | ///
|
---|
1451 | ByRegisterNotify,
|
---|
1452 | ///
|
---|
1453 | /// Retrieve the set of handles from the handle database that support a
|
---|
1454 | /// specified protocol.
|
---|
1455 | ///
|
---|
1456 | ByProtocol
|
---|
1457 | } EFI_LOCATE_SEARCH_TYPE;
|
---|
1458 |
|
---|
1459 | /**
|
---|
1460 | Returns an array of handles that support a specified protocol.
|
---|
1461 |
|
---|
1462 | @param SearchType Specifies which handle(s) are to be returned.
|
---|
1463 | @param Protocol Specifies the protocol to search by.
|
---|
1464 | @param SearchKey Specifies the search key.
|
---|
1465 | @param BufferSize On input, the size in bytes of Buffer. On output, the size in bytes of
|
---|
1466 | the array returned in Buffer (if the buffer was large enough) or the
|
---|
1467 | size, in bytes, of the buffer needed to obtain the array (if the buffer was
|
---|
1468 | not large enough).
|
---|
1469 | @param Buffer The buffer in which the array is returned.
|
---|
1470 |
|
---|
1471 | @retval EFI_SUCCESS The array of handles was returned.
|
---|
1472 | @retval EFI_NOT_FOUND No handles match the search.
|
---|
1473 | @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small for the result.
|
---|
1474 | @retval EFI_INVALID_PARAMETER SearchType is not a member of EFI_LOCATE_SEARCH_TYPE.
|
---|
1475 | @retval EFI_INVALID_PARAMETER SearchType is ByRegisterNotify and SearchKey is NULL.
|
---|
1476 | @retval EFI_INVALID_PARAMETER SearchType is ByProtocol and Protocol is NULL.
|
---|
1477 | @retval EFI_INVALID_PARAMETER One or more matches are found and BufferSize is NULL.
|
---|
1478 | @retval EFI_INVALID_PARAMETER BufferSize is large enough for the result and Buffer is NULL.
|
---|
1479 |
|
---|
1480 | **/
|
---|
1481 | typedef
|
---|
1482 | EFI_STATUS
|
---|
1483 | (EFIAPI *EFI_LOCATE_HANDLE)(
|
---|
1484 | IN EFI_LOCATE_SEARCH_TYPE SearchType,
|
---|
1485 | IN EFI_GUID *Protocol, OPTIONAL
|
---|
1486 | IN VOID *SearchKey, OPTIONAL
|
---|
1487 | IN OUT UINTN *BufferSize,
|
---|
1488 | OUT EFI_HANDLE *Buffer
|
---|
1489 | );
|
---|
1490 |
|
---|
1491 | /**
|
---|
1492 | Locates the handle to a device on the device path that supports the specified protocol.
|
---|
1493 |
|
---|
1494 | @param Protocol Specifies the protocol to search for.
|
---|
1495 | @param DevicePath On input, a pointer to a pointer to the device path. On output, the device
|
---|
1496 | path pointer is modified to point to the remaining part of the device
|
---|
1497 | path.
|
---|
1498 | @param Device A pointer to the returned device handle.
|
---|
1499 |
|
---|
1500 | @retval EFI_SUCCESS The resulting handle was returned.
|
---|
1501 | @retval EFI_NOT_FOUND No handles match the search.
|
---|
1502 | @retval EFI_INVALID_PARAMETER Protocol is NULL.
|
---|
1503 | @retval EFI_INVALID_PARAMETER DevicePath is NULL.
|
---|
1504 | @retval EFI_INVALID_PARAMETER A handle matched the search and Device is NULL.
|
---|
1505 |
|
---|
1506 | **/
|
---|
1507 | typedef
|
---|
1508 | EFI_STATUS
|
---|
1509 | (EFIAPI *EFI_LOCATE_DEVICE_PATH)(
|
---|
1510 | IN EFI_GUID *Protocol,
|
---|
1511 | IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath,
|
---|
1512 | OUT EFI_HANDLE *Device
|
---|
1513 | );
|
---|
1514 |
|
---|
1515 | /**
|
---|
1516 | Adds, updates, or removes a configuration table entry from the EFI System Table.
|
---|
1517 |
|
---|
1518 | @param Guid A pointer to the GUID for the entry to add, update, or remove.
|
---|
1519 | @param Table A pointer to the configuration table for the entry to add, update, or
|
---|
1520 | remove. May be NULL.
|
---|
1521 |
|
---|
1522 | @retval EFI_SUCCESS The (Guid, Table) pair was added, updated, or removed.
|
---|
1523 | @retval EFI_NOT_FOUND An attempt was made to delete a nonexistent entry.
|
---|
1524 | @retval EFI_INVALID_PARAMETER Guid is NULL.
|
---|
1525 | @retval EFI_OUT_OF_RESOURCES There is not enough memory available to complete the operation.
|
---|
1526 |
|
---|
1527 | **/
|
---|
1528 | typedef
|
---|
1529 | EFI_STATUS
|
---|
1530 | (EFIAPI *EFI_INSTALL_CONFIGURATION_TABLE)(
|
---|
1531 | IN EFI_GUID *Guid,
|
---|
1532 | IN VOID *Table
|
---|
1533 | );
|
---|
1534 |
|
---|
1535 | /**
|
---|
1536 | Returns an array of handles that support the requested protocol in a buffer allocated from pool.
|
---|
1537 |
|
---|
1538 | @param SearchType Specifies which handle(s) are to be returned.
|
---|
1539 | @param Protocol Provides the protocol to search by.
|
---|
1540 | This parameter is only valid for a SearchType of ByProtocol.
|
---|
1541 | @param SearchKey Supplies the search key depending on the SearchType.
|
---|
1542 | @param NoHandles The number of handles returned in Buffer.
|
---|
1543 | @param Buffer A pointer to the buffer to return the requested array of handles that
|
---|
1544 | support Protocol.
|
---|
1545 |
|
---|
1546 | @retval EFI_SUCCESS The array of handles was returned in Buffer, and the number of
|
---|
1547 | handles in Buffer was returned in NoHandles.
|
---|
1548 | @retval EFI_NOT_FOUND No handles match the search.
|
---|
1549 | @retval EFI_OUT_OF_RESOURCES There is not enough pool memory to store the matching results.
|
---|
1550 | @retval EFI_INVALID_PARAMETER NoHandles is NULL.
|
---|
1551 | @retval EFI_INVALID_PARAMETER Buffer is NULL.
|
---|
1552 |
|
---|
1553 | **/
|
---|
1554 | typedef
|
---|
1555 | EFI_STATUS
|
---|
1556 | (EFIAPI *EFI_LOCATE_HANDLE_BUFFER)(
|
---|
1557 | IN EFI_LOCATE_SEARCH_TYPE SearchType,
|
---|
1558 | IN EFI_GUID *Protocol, OPTIONAL
|
---|
1559 | IN VOID *SearchKey, OPTIONAL
|
---|
1560 | IN OUT UINTN *NoHandles,
|
---|
1561 | OUT EFI_HANDLE **Buffer
|
---|
1562 | );
|
---|
1563 |
|
---|
1564 | /**
|
---|
1565 | Returns the first protocol instance that matches the given protocol.
|
---|
1566 |
|
---|
1567 | @param Protocol Provides the protocol to search for.
|
---|
1568 | @param Registration Optional registration key returned from
|
---|
1569 | RegisterProtocolNotify().
|
---|
1570 | @param Interface On return, a pointer to the first interface that matches Protocol and
|
---|
1571 | Registration.
|
---|
1572 |
|
---|
1573 | @retval EFI_SUCCESS A protocol instance matching Protocol was found and returned in
|
---|
1574 | Interface.
|
---|
1575 | @retval EFI_NOT_FOUND No protocol instances were found that match Protocol and
|
---|
1576 | Registration.
|
---|
1577 | @retval EFI_INVALID_PARAMETER Interface is NULL.
|
---|
1578 |
|
---|
1579 | **/
|
---|
1580 | typedef
|
---|
1581 | EFI_STATUS
|
---|
1582 | (EFIAPI *EFI_LOCATE_PROTOCOL)(
|
---|
1583 | IN EFI_GUID *Protocol,
|
---|
1584 | IN VOID *Registration, OPTIONAL
|
---|
1585 | OUT VOID **Interface
|
---|
1586 | );
|
---|
1587 |
|
---|
1588 | ///
|
---|
1589 | /// EFI Capsule Block Descriptor
|
---|
1590 | ///
|
---|
1591 | typedef struct {
|
---|
1592 | ///
|
---|
1593 | /// Length in bytes of the data pointed to by DataBlock/ContinuationPointer.
|
---|
1594 | ///
|
---|
1595 | UINT64 Length;
|
---|
1596 | union {
|
---|
1597 | ///
|
---|
1598 | /// Physical address of the data block. This member of the union is
|
---|
1599 | /// used if Length is not equal to zero.
|
---|
1600 | ///
|
---|
1601 | EFI_PHYSICAL_ADDRESS DataBlock;
|
---|
1602 | ///
|
---|
1603 | /// Physical address of another block of
|
---|
1604 | /// EFI_CAPSULE_BLOCK_DESCRIPTOR structures. This
|
---|
1605 | /// member of the union is used if Length is equal to zero. If
|
---|
1606 | /// ContinuationPointer is zero this entry represents the end of the list.
|
---|
1607 | ///
|
---|
1608 | EFI_PHYSICAL_ADDRESS ContinuationPointer;
|
---|
1609 | } Union;
|
---|
1610 | } EFI_CAPSULE_BLOCK_DESCRIPTOR;
|
---|
1611 |
|
---|
1612 | ///
|
---|
1613 | /// EFI Capsule Header.
|
---|
1614 | ///
|
---|
1615 | typedef struct {
|
---|
1616 | ///
|
---|
1617 | /// A GUID that defines the contents of a capsule.
|
---|
1618 | ///
|
---|
1619 | EFI_GUID CapsuleGuid;
|
---|
1620 | ///
|
---|
1621 | /// The size of the capsule header. This may be larger than the size of
|
---|
1622 | /// the EFI_CAPSULE_HEADER since CapsuleGuid may imply
|
---|
1623 | /// extended header entries
|
---|
1624 | ///
|
---|
1625 | UINT32 HeaderSize;
|
---|
1626 | ///
|
---|
1627 | /// Bit-mapped list describing the capsule attributes. The Flag values
|
---|
1628 | /// of 0x0000 - 0xFFFF are defined by CapsuleGuid. Flag values
|
---|
1629 | /// of 0x10000 - 0xFFFFFFFF are defined by this specification
|
---|
1630 | ///
|
---|
1631 | UINT32 Flags;
|
---|
1632 | ///
|
---|
1633 | /// Size in bytes of the capsule.
|
---|
1634 | ///
|
---|
1635 | UINT32 CapsuleImageSize;
|
---|
1636 | } EFI_CAPSULE_HEADER;
|
---|
1637 |
|
---|
1638 | ///
|
---|
1639 | /// The EFI System Table entry must point to an array of capsules
|
---|
1640 | /// that contain the same CapsuleGuid value. The array must be
|
---|
1641 | /// prefixed by a UINT32 that represents the size of the array of capsules.
|
---|
1642 | ///
|
---|
1643 | typedef struct {
|
---|
1644 | ///
|
---|
1645 | /// the size of the array of capsules.
|
---|
1646 | ///
|
---|
1647 | UINT32 CapsuleArrayNumber;
|
---|
1648 | ///
|
---|
1649 | /// Point to an array of capsules that contain the same CapsuleGuid value.
|
---|
1650 | ///
|
---|
1651 | VOID* CapsulePtr[1];
|
---|
1652 | } EFI_CAPSULE_TABLE;
|
---|
1653 |
|
---|
1654 | #define CAPSULE_FLAGS_PERSIST_ACROSS_RESET 0x00010000
|
---|
1655 | #define CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE 0x00020000
|
---|
1656 | #define CAPSULE_FLAGS_INITIATE_RESET 0x00040000
|
---|
1657 |
|
---|
1658 | /**
|
---|
1659 | Passes capsules to the firmware with both virtual and physical mapping. Depending on the intended
|
---|
1660 | consumption, the firmware may process the capsule immediately. If the payload should persist
|
---|
1661 | across a system reset, the reset value returned from EFI_QueryCapsuleCapabilities must
|
---|
1662 | be passed into ResetSystem() and will cause the capsule to be processed by the firmware as
|
---|
1663 | part of the reset process.
|
---|
1664 |
|
---|
1665 | @param CapsuleHeaderArray Virtual pointer to an array of virtual pointers to the capsules
|
---|
1666 | being passed into update capsule.
|
---|
1667 | @param CapsuleCount Number of pointers to EFI_CAPSULE_HEADER in
|
---|
1668 | CaspuleHeaderArray.
|
---|
1669 | @param ScatterGatherList Physical pointer to a set of
|
---|
1670 | EFI_CAPSULE_BLOCK_DESCRIPTOR that describes the
|
---|
1671 | location in physical memory of a set of capsules.
|
---|
1672 |
|
---|
1673 | @retval EFI_SUCCESS Valid capsule was passed. If
|
---|
1674 | CAPSULE_FLAGS_PERSIT_ACROSS_RESET is not set, the
|
---|
1675 | capsule has been successfully processed by the firmware.
|
---|
1676 | @retval EFI_INVALID_PARAMETER CapsuleSize is NULL, or an incompatible set of flags were
|
---|
1677 | set in the capsule header.
|
---|
1678 | @retval EFI_INVALID_PARAMETER CapsuleCount is 0.
|
---|
1679 | @retval EFI_DEVICE_ERROR The capsule update was started, but failed due to a device error.
|
---|
1680 | @retval EFI_UNSUPPORTED The capsule type is not supported on this platform.
|
---|
1681 | @retval EFI_OUT_OF_RESOURCES When ExitBootServices() has been previously called this error indicates the capsule
|
---|
1682 | is compatible with this platform but is not capable of being submitted or processed
|
---|
1683 | in runtime. The caller may resubmit the capsule prior to ExitBootServices().
|
---|
1684 | @retval EFI_OUT_OF_RESOURCES When ExitBootServices() has not been previously called then this error indicates
|
---|
1685 | the capsule is compatible with this platform but there are insufficient resources to process.
|
---|
1686 |
|
---|
1687 | **/
|
---|
1688 | typedef
|
---|
1689 | EFI_STATUS
|
---|
1690 | (EFIAPI *EFI_UPDATE_CAPSULE)(
|
---|
1691 | IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,
|
---|
1692 | IN UINTN CapsuleCount,
|
---|
1693 | IN EFI_PHYSICAL_ADDRESS ScatterGatherList OPTIONAL
|
---|
1694 | );
|
---|
1695 |
|
---|
1696 | /**
|
---|
1697 | Returns if the capsule can be supported via UpdateCapsule().
|
---|
1698 |
|
---|
1699 | @param CapsuleHeaderArray Virtual pointer to an array of virtual pointers to the capsules
|
---|
1700 | being passed into update capsule.
|
---|
1701 | @param CapsuleCount Number of pointers to EFI_CAPSULE_HEADER in
|
---|
1702 | CaspuleHeaderArray.
|
---|
1703 | @param MaxiumCapsuleSize On output the maximum size that UpdateCapsule() can
|
---|
1704 | support as an argument to UpdateCapsule() via
|
---|
1705 | CapsuleHeaderArray and ScatterGatherList.
|
---|
1706 | @param ResetType Returns the type of reset required for the capsule update.
|
---|
1707 |
|
---|
1708 | @retval EFI_SUCCESS Valid answer returned.
|
---|
1709 | @retval EFI_UNSUPPORTED The capsule type is not supported on this platform, and
|
---|
1710 | MaximumCapsuleSize and ResetType are undefined.
|
---|
1711 | @retval EFI_INVALID_PARAMETER MaximumCapsuleSize is NULL.
|
---|
1712 | @retval EFI_OUT_OF_RESOURCES When ExitBootServices() has been previously called this error indicates the capsule
|
---|
1713 | is compatible with this platform but is not capable of being submitted or processed
|
---|
1714 | in runtime. The caller may resubmit the capsule prior to ExitBootServices().
|
---|
1715 | @retval EFI_OUT_OF_RESOURCES When ExitBootServices() has not been previously called then this error indicates
|
---|
1716 | the capsule is compatible with this platform but there are insufficient resources to process.
|
---|
1717 |
|
---|
1718 | **/
|
---|
1719 | typedef
|
---|
1720 | EFI_STATUS
|
---|
1721 | (EFIAPI *EFI_QUERY_CAPSULE_CAPABILITIES)(
|
---|
1722 | IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,
|
---|
1723 | IN UINTN CapsuleCount,
|
---|
1724 | OUT UINT64 *MaximumCapsuleSize,
|
---|
1725 | OUT EFI_RESET_TYPE *ResetType
|
---|
1726 | );
|
---|
1727 |
|
---|
1728 | /**
|
---|
1729 | Returns information about the EFI variables.
|
---|
1730 |
|
---|
1731 | @param Attributes Attributes bitmask to specify the type of variables on
|
---|
1732 | which to return information.
|
---|
1733 | @param MaximumVariableStorageSize On output the maximum size of the storage space
|
---|
1734 | available for the EFI variables associated with the
|
---|
1735 | attributes specified.
|
---|
1736 | @param RemainingVariableStorageSize Returns the remaining size of the storage space
|
---|
1737 | available for the EFI variables associated with the
|
---|
1738 | attributes specified.
|
---|
1739 | @param MaximumVariableSize Returns the maximum size of the individual EFI
|
---|
1740 | variables associated with the attributes specified.
|
---|
1741 |
|
---|
1742 | @retval EFI_SUCCESS Valid answer returned.
|
---|
1743 | @retval EFI_INVALID_PARAMETER An invalid combination of attribute bits was supplied
|
---|
1744 | @retval EFI_UNSUPPORTED The attribute is not supported on this platform, and the
|
---|
1745 | MaximumVariableStorageSize,
|
---|
1746 | RemainingVariableStorageSize, MaximumVariableSize
|
---|
1747 | are undefined.
|
---|
1748 |
|
---|
1749 | **/
|
---|
1750 | typedef
|
---|
1751 | EFI_STATUS
|
---|
1752 | (EFIAPI *EFI_QUERY_VARIABLE_INFO)(
|
---|
1753 | IN UINT32 Attributes,
|
---|
1754 | OUT UINT64 *MaximumVariableStorageSize,
|
---|
1755 | OUT UINT64 *RemainingVariableStorageSize,
|
---|
1756 | OUT UINT64 *MaximumVariableSize
|
---|
1757 | );
|
---|
1758 |
|
---|
1759 | //
|
---|
1760 | // Firmware should stop at a firmware user interface on next boot
|
---|
1761 | //
|
---|
1762 | #define EFI_OS_INDICATIONS_BOOT_TO_FW_UI 0x0000000000000001
|
---|
1763 | #define EFI_OS_INDICATIONS_TIMESTAMP_REVOCATION 0x0000000000000002
|
---|
1764 | #define EFI_OS_INDICATIONS_FILE_CAPSULE_DELIVERY_SUPPORTED 0x0000000000000004
|
---|
1765 | #define EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED 0x0000000000000008
|
---|
1766 | #define EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED 0x0000000000000010
|
---|
1767 |
|
---|
1768 | //
|
---|
1769 | // EFI Runtime Services Table
|
---|
1770 | //
|
---|
1771 | #define EFI_SYSTEM_TABLE_SIGNATURE SIGNATURE_64 ('I','B','I',' ','S','Y','S','T')
|
---|
1772 | #define EFI_2_40_SYSTEM_TABLE_REVISION ((2 << 16) | (40))
|
---|
1773 | #define EFI_2_31_SYSTEM_TABLE_REVISION ((2 << 16) | (31))
|
---|
1774 | #define EFI_2_30_SYSTEM_TABLE_REVISION ((2 << 16) | (30))
|
---|
1775 | #define EFI_2_20_SYSTEM_TABLE_REVISION ((2 << 16) | (20))
|
---|
1776 | #define EFI_2_10_SYSTEM_TABLE_REVISION ((2 << 16) | (10))
|
---|
1777 | #define EFI_2_00_SYSTEM_TABLE_REVISION ((2 << 16) | (00))
|
---|
1778 | #define EFI_1_10_SYSTEM_TABLE_REVISION ((1 << 16) | (10))
|
---|
1779 | #define EFI_1_02_SYSTEM_TABLE_REVISION ((1 << 16) | (02))
|
---|
1780 | #define EFI_SYSTEM_TABLE_REVISION EFI_2_40_SYSTEM_TABLE_REVISION
|
---|
1781 | #define EFI_SPECIFICATION_VERSION EFI_SYSTEM_TABLE_REVISION
|
---|
1782 |
|
---|
1783 | #define EFI_RUNTIME_SERVICES_SIGNATURE SIGNATURE_64 ('R','U','N','T','S','E','R','V')
|
---|
1784 | #define EFI_RUNTIME_SERVICES_REVISION EFI_SPECIFICATION_VERSION
|
---|
1785 |
|
---|
1786 | ///
|
---|
1787 | /// EFI Runtime Services Table.
|
---|
1788 | ///
|
---|
1789 | typedef struct {
|
---|
1790 | ///
|
---|
1791 | /// The table header for the EFI Runtime Services Table.
|
---|
1792 | ///
|
---|
1793 | EFI_TABLE_HEADER Hdr;
|
---|
1794 |
|
---|
1795 | //
|
---|
1796 | // Time Services
|
---|
1797 | //
|
---|
1798 | EFI_GET_TIME GetTime;
|
---|
1799 | EFI_SET_TIME SetTime;
|
---|
1800 | EFI_GET_WAKEUP_TIME GetWakeupTime;
|
---|
1801 | EFI_SET_WAKEUP_TIME SetWakeupTime;
|
---|
1802 |
|
---|
1803 | //
|
---|
1804 | // Virtual Memory Services
|
---|
1805 | //
|
---|
1806 | EFI_SET_VIRTUAL_ADDRESS_MAP SetVirtualAddressMap;
|
---|
1807 | EFI_CONVERT_POINTER ConvertPointer;
|
---|
1808 |
|
---|
1809 | //
|
---|
1810 | // Variable Services
|
---|
1811 | //
|
---|
1812 | EFI_GET_VARIABLE GetVariable;
|
---|
1813 | EFI_GET_NEXT_VARIABLE_NAME GetNextVariableName;
|
---|
1814 | EFI_SET_VARIABLE SetVariable;
|
---|
1815 |
|
---|
1816 | //
|
---|
1817 | // Miscellaneous Services
|
---|
1818 | //
|
---|
1819 | EFI_GET_NEXT_HIGH_MONO_COUNT GetNextHighMonotonicCount;
|
---|
1820 | EFI_RESET_SYSTEM ResetSystem;
|
---|
1821 |
|
---|
1822 | //
|
---|
1823 | // UEFI 2.0 Capsule Services
|
---|
1824 | //
|
---|
1825 | EFI_UPDATE_CAPSULE UpdateCapsule;
|
---|
1826 | EFI_QUERY_CAPSULE_CAPABILITIES QueryCapsuleCapabilities;
|
---|
1827 |
|
---|
1828 | //
|
---|
1829 | // Miscellaneous UEFI 2.0 Service
|
---|
1830 | //
|
---|
1831 | EFI_QUERY_VARIABLE_INFO QueryVariableInfo;
|
---|
1832 | } EFI_RUNTIME_SERVICES;
|
---|
1833 |
|
---|
1834 |
|
---|
1835 | #define EFI_BOOT_SERVICES_SIGNATURE SIGNATURE_64 ('B','O','O','T','S','E','R','V')
|
---|
1836 | #define EFI_BOOT_SERVICES_REVISION EFI_SPECIFICATION_VERSION
|
---|
1837 |
|
---|
1838 | ///
|
---|
1839 | /// EFI Boot Services Table.
|
---|
1840 | ///
|
---|
1841 | typedef struct {
|
---|
1842 | ///
|
---|
1843 | /// The table header for the EFI Boot Services Table.
|
---|
1844 | ///
|
---|
1845 | /* 64: 0 */
|
---|
1846 | EFI_TABLE_HEADER Hdr;
|
---|
1847 |
|
---|
1848 | //
|
---|
1849 | // Task Priority Services
|
---|
1850 | //
|
---|
1851 | /* 64: 3*8 */
|
---|
1852 | EFI_RAISE_TPL RaiseTPL;
|
---|
1853 | EFI_RESTORE_TPL RestoreTPL;
|
---|
1854 |
|
---|
1855 | //
|
---|
1856 | // Memory Services
|
---|
1857 | //
|
---|
1858 | /* 64: 5*8 */
|
---|
1859 | EFI_ALLOCATE_PAGES AllocatePages;
|
---|
1860 | EFI_FREE_PAGES FreePages;
|
---|
1861 | EFI_GET_MEMORY_MAP GetMemoryMap;
|
---|
1862 | EFI_ALLOCATE_POOL AllocatePool;
|
---|
1863 | EFI_FREE_POOL FreePool;
|
---|
1864 |
|
---|
1865 | //
|
---|
1866 | // Event & Timer Services
|
---|
1867 | //
|
---|
1868 | /* 64: 10*8 = 0x50 (80) */
|
---|
1869 | EFI_CREATE_EVENT CreateEvent;
|
---|
1870 | EFI_SET_TIMER SetTimer;
|
---|
1871 | EFI_WAIT_FOR_EVENT WaitForEvent;
|
---|
1872 | EFI_SIGNAL_EVENT SignalEvent;
|
---|
1873 | EFI_CLOSE_EVENT CloseEvent;
|
---|
1874 | EFI_CHECK_EVENT CheckEvent;
|
---|
1875 |
|
---|
1876 | //
|
---|
1877 | // Protocol Handler Services
|
---|
1878 | //
|
---|
1879 | /* 64: 16*8 = 0x80 (128) */
|
---|
1880 | EFI_INSTALL_PROTOCOL_INTERFACE InstallProtocolInterface;
|
---|
1881 | EFI_REINSTALL_PROTOCOL_INTERFACE ReinstallProtocolInterface;
|
---|
1882 | EFI_UNINSTALL_PROTOCOL_INTERFACE UninstallProtocolInterface;
|
---|
1883 | EFI_HANDLE_PROTOCOL HandleProtocol;
|
---|
1884 | /* 64: 20*8 = 0xA0 (160) */
|
---|
1885 | VOID *Reserved;
|
---|
1886 | EFI_REGISTER_PROTOCOL_NOTIFY RegisterProtocolNotify;
|
---|
1887 | EFI_LOCATE_HANDLE LocateHandle;
|
---|
1888 | EFI_LOCATE_DEVICE_PATH LocateDevicePath;
|
---|
1889 | EFI_INSTALL_CONFIGURATION_TABLE InstallConfigurationTable;
|
---|
1890 |
|
---|
1891 | //
|
---|
1892 | // Image Services
|
---|
1893 | //
|
---|
1894 | /* 64: 25*8 = 0xC8 (200) */
|
---|
1895 | EFI_IMAGE_LOAD LoadImage;
|
---|
1896 | EFI_IMAGE_START StartImage;
|
---|
1897 | EFI_EXIT Exit;
|
---|
1898 | EFI_IMAGE_UNLOAD UnloadImage;
|
---|
1899 | EFI_EXIT_BOOT_SERVICES ExitBootServices;
|
---|
1900 |
|
---|
1901 | //
|
---|
1902 | // Miscellaneous Services
|
---|
1903 | //
|
---|
1904 | /* 64: 30*8 = 0xF0 (240) */
|
---|
1905 | EFI_GET_NEXT_MONOTONIC_COUNT GetNextMonotonicCount;
|
---|
1906 | EFI_STALL Stall;
|
---|
1907 | EFI_SET_WATCHDOG_TIMER SetWatchdogTimer;
|
---|
1908 |
|
---|
1909 | //
|
---|
1910 | // DriverSupport Services
|
---|
1911 | //
|
---|
1912 | /* 64: 33*8 = 0x108 (264) */
|
---|
1913 | EFI_CONNECT_CONTROLLER ConnectController;
|
---|
1914 | EFI_DISCONNECT_CONTROLLER DisconnectController;
|
---|
1915 |
|
---|
1916 | //
|
---|
1917 | // Open and Close Protocol Services
|
---|
1918 | //
|
---|
1919 | /* 64: 35*8 = 0x118 (280) */
|
---|
1920 | EFI_OPEN_PROTOCOL OpenProtocol;
|
---|
1921 | EFI_CLOSE_PROTOCOL CloseProtocol;
|
---|
1922 | EFI_OPEN_PROTOCOL_INFORMATION OpenProtocolInformation;
|
---|
1923 |
|
---|
1924 | //
|
---|
1925 | // Library Services
|
---|
1926 | //
|
---|
1927 | /* 64: 38*8 = 0x130 (304) */
|
---|
1928 | EFI_PROTOCOLS_PER_HANDLE ProtocolsPerHandle;
|
---|
1929 | EFI_LOCATE_HANDLE_BUFFER LocateHandleBuffer;
|
---|
1930 | EFI_LOCATE_PROTOCOL LocateProtocol;
|
---|
1931 | EFI_INSTALL_MULTIPLE_PROTOCOL_INTERFACES InstallMultipleProtocolInterfaces;
|
---|
1932 | EFI_UNINSTALL_MULTIPLE_PROTOCOL_INTERFACES UninstallMultipleProtocolInterfaces;
|
---|
1933 |
|
---|
1934 | //
|
---|
1935 | // 32-bit CRC Services
|
---|
1936 | //
|
---|
1937 | /* 64: 43*8 = 0x158 (344) */
|
---|
1938 | EFI_CALCULATE_CRC32 CalculateCrc32;
|
---|
1939 |
|
---|
1940 | //
|
---|
1941 | // Miscellaneous Services
|
---|
1942 | //
|
---|
1943 | /* 64: 44*8 = 0x160 (352) */
|
---|
1944 | EFI_COPY_MEM CopyMem;
|
---|
1945 | EFI_SET_MEM SetMem;
|
---|
1946 | EFI_CREATE_EVENT_EX CreateEventEx;
|
---|
1947 | /* 64: 47*8 = 0x178 (376) */
|
---|
1948 | } EFI_BOOT_SERVICES;
|
---|
1949 |
|
---|
1950 | ///
|
---|
1951 | /// Contains a set of GUID/pointer pairs comprised of the ConfigurationTable field in the
|
---|
1952 | /// EFI System Table.
|
---|
1953 | ///
|
---|
1954 | typedef struct {
|
---|
1955 | ///
|
---|
1956 | /// The 128-bit GUID value that uniquely identifies the system configuration table.
|
---|
1957 | ///
|
---|
1958 | EFI_GUID VendorGuid;
|
---|
1959 | ///
|
---|
1960 | /// A pointer to the table associated with VendorGuid.
|
---|
1961 | ///
|
---|
1962 | VOID *VendorTable;
|
---|
1963 | } EFI_CONFIGURATION_TABLE;
|
---|
1964 |
|
---|
1965 | ///
|
---|
1966 | /// EFI System Table
|
---|
1967 | ///
|
---|
1968 | typedef struct {
|
---|
1969 | ///
|
---|
1970 | /// The table header for the EFI System Table.
|
---|
1971 | ///
|
---|
1972 | EFI_TABLE_HEADER Hdr;
|
---|
1973 | ///
|
---|
1974 | /// A pointer to a null terminated string that identifies the vendor
|
---|
1975 | /// that produces the system firmware for the platform.
|
---|
1976 | ///
|
---|
1977 | CHAR16 *FirmwareVendor;
|
---|
1978 | ///
|
---|
1979 | /// A firmware vendor specific value that identifies the revision
|
---|
1980 | /// of the system firmware for the platform.
|
---|
1981 | ///
|
---|
1982 | UINT32 FirmwareRevision;
|
---|
1983 | ///
|
---|
1984 | /// The handle for the active console input device. This handle must support
|
---|
1985 | /// EFI_SIMPLE_TEXT_INPUT_PROTOCOL and EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
|
---|
1986 | ///
|
---|
1987 | EFI_HANDLE ConsoleInHandle;
|
---|
1988 | ///
|
---|
1989 | /// A pointer to the EFI_SIMPLE_TEXT_INPUT_PROTOCOL interface that is
|
---|
1990 | /// associated with ConsoleInHandle.
|
---|
1991 | ///
|
---|
1992 | EFI_SIMPLE_TEXT_INPUT_PROTOCOL *ConIn;
|
---|
1993 | ///
|
---|
1994 | /// The handle for the active console output device.
|
---|
1995 | ///
|
---|
1996 | EFI_HANDLE ConsoleOutHandle;
|
---|
1997 | ///
|
---|
1998 | /// A pointer to the EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL interface
|
---|
1999 | /// that is associated with ConsoleOutHandle.
|
---|
2000 | ///
|
---|
2001 | EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *ConOut;
|
---|
2002 | ///
|
---|
2003 | /// The handle for the active standard error console device.
|
---|
2004 | /// This handle must support the EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.
|
---|
2005 | ///
|
---|
2006 | EFI_HANDLE StandardErrorHandle;
|
---|
2007 | ///
|
---|
2008 | /// A pointer to the EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL interface
|
---|
2009 | /// that is associated with StandardErrorHandle.
|
---|
2010 | ///
|
---|
2011 | EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *StdErr;
|
---|
2012 | ///
|
---|
2013 | /// A pointer to the EFI Runtime Services Table.
|
---|
2014 | ///
|
---|
2015 | EFI_RUNTIME_SERVICES *RuntimeServices;
|
---|
2016 | ///
|
---|
2017 | /// A pointer to the EFI Boot Services Table.
|
---|
2018 | ///
|
---|
2019 | EFI_BOOT_SERVICES *BootServices;
|
---|
2020 | ///
|
---|
2021 | /// The number of system configuration tables in the buffer ConfigurationTable.
|
---|
2022 | ///
|
---|
2023 | UINTN NumberOfTableEntries;
|
---|
2024 | ///
|
---|
2025 | /// A pointer to the system configuration tables.
|
---|
2026 | /// The number of entries in the table is NumberOfTableEntries.
|
---|
2027 | ///
|
---|
2028 | EFI_CONFIGURATION_TABLE *ConfigurationTable;
|
---|
2029 | } EFI_SYSTEM_TABLE;
|
---|
2030 |
|
---|
2031 | /**
|
---|
2032 | This is the declaration of an EFI image entry point. This entry point is
|
---|
2033 | the same for UEFI Applications, UEFI OS Loaders, and UEFI Drivers including
|
---|
2034 | both device drivers and bus drivers.
|
---|
2035 |
|
---|
2036 | @param ImageHandle The firmware allocated handle for the UEFI image.
|
---|
2037 | @param SystemTable A pointer to the EFI System Table.
|
---|
2038 |
|
---|
2039 | @retval EFI_SUCCESS The operation completed successfully.
|
---|
2040 | @retval Others An unexpected error occurred.
|
---|
2041 | **/
|
---|
2042 | typedef
|
---|
2043 | EFI_STATUS
|
---|
2044 | (EFIAPI *EFI_IMAGE_ENTRY_POINT)(
|
---|
2045 | IN EFI_HANDLE ImageHandle,
|
---|
2046 | IN EFI_SYSTEM_TABLE *SystemTable
|
---|
2047 | );
|
---|
2048 |
|
---|
2049 | //
|
---|
2050 | // EFI Load Options Attributes
|
---|
2051 | //
|
---|
2052 | #define LOAD_OPTION_ACTIVE 0x00000001
|
---|
2053 | #define LOAD_OPTION_FORCE_RECONNECT 0x00000002
|
---|
2054 | #define LOAD_OPTION_HIDDEN 0x00000008
|
---|
2055 | #define LOAD_OPTION_CATEGORY 0x00001F00
|
---|
2056 |
|
---|
2057 | #define LOAD_OPTION_CATEGORY_BOOT 0x00000000
|
---|
2058 | #define LOAD_OPTION_CATEGORY_APP 0x00000100
|
---|
2059 |
|
---|
2060 | #define EFI_BOOT_OPTION_SUPPORT_KEY 0x00000001
|
---|
2061 | #define EFI_BOOT_OPTION_SUPPORT_APP 0x00000002
|
---|
2062 | #define EFI_BOOT_OPTION_SUPPORT_COUNT 0x00000300
|
---|
2063 |
|
---|
2064 | ///
|
---|
2065 | /// EFI Boot Key Data
|
---|
2066 | ///
|
---|
2067 | typedef union {
|
---|
2068 | struct {
|
---|
2069 | ///
|
---|
2070 | /// Indicates the revision of the EFI_KEY_OPTION structure. This revision level should be 0.
|
---|
2071 | ///
|
---|
2072 | UINT32 Revision : 8;
|
---|
2073 | ///
|
---|
2074 | /// Either the left or right Shift keys must be pressed (1) or must not be pressed (0).
|
---|
2075 | ///
|
---|
2076 | UINT32 ShiftPressed : 1;
|
---|
2077 | ///
|
---|
2078 | /// Either the left or right Control keys must be pressed (1) or must not be pressed (0).
|
---|
2079 | ///
|
---|
2080 | UINT32 ControlPressed : 1;
|
---|
2081 | ///
|
---|
2082 | /// Either the left or right Alt keys must be pressed (1) or must not be pressed (0).
|
---|
2083 | ///
|
---|
2084 | UINT32 AltPressed : 1;
|
---|
2085 | ///
|
---|
2086 | /// Either the left or right Logo keys must be pressed (1) or must not be pressed (0).
|
---|
2087 | ///
|
---|
2088 | UINT32 LogoPressed : 1;
|
---|
2089 | ///
|
---|
2090 | /// The Menu key must be pressed (1) or must not be pressed (0).
|
---|
2091 | ///
|
---|
2092 | UINT32 MenuPressed : 1;
|
---|
2093 | ///
|
---|
2094 | /// The SysReq key must be pressed (1) or must not be pressed (0).
|
---|
2095 | ///
|
---|
2096 | UINT32 SysReqPressed : 1;
|
---|
2097 | UINT32 Reserved : 16;
|
---|
2098 | ///
|
---|
2099 | /// Specifies the actual number of entries in EFI_KEY_OPTION.Keys, from 0-3. If
|
---|
2100 | /// zero, then only the shift state is considered. If more than one, then the boot option will
|
---|
2101 | /// only be launched if all of the specified keys are pressed with the same shift state.
|
---|
2102 | ///
|
---|
2103 | UINT32 InputKeyCount : 2;
|
---|
2104 | } Options;
|
---|
2105 | UINT32 PackedValue;
|
---|
2106 | } EFI_BOOT_KEY_DATA;
|
---|
2107 |
|
---|
2108 | ///
|
---|
2109 | /// EFI Key Option.
|
---|
2110 | ///
|
---|
2111 | #pragma pack(1)
|
---|
2112 | typedef struct {
|
---|
2113 | ///
|
---|
2114 | /// Specifies options about how the key will be processed.
|
---|
2115 | ///
|
---|
2116 | EFI_BOOT_KEY_DATA KeyData;
|
---|
2117 | ///
|
---|
2118 | /// The CRC-32 which should match the CRC-32 of the entire EFI_LOAD_OPTION to
|
---|
2119 | /// which BootOption refers. If the CRC-32s do not match this value, then this key
|
---|
2120 | /// option is ignored.
|
---|
2121 | ///
|
---|
2122 | UINT32 BootOptionCrc;
|
---|
2123 | ///
|
---|
2124 | /// The Boot#### option which will be invoked if this key is pressed and the boot option
|
---|
2125 | /// is active (LOAD_OPTION_ACTIVE is set).
|
---|
2126 | ///
|
---|
2127 | UINT16 BootOption;
|
---|
2128 | ///
|
---|
2129 | /// The key codes to compare against those returned by the
|
---|
2130 | /// EFI_SIMPLE_TEXT_INPUT and EFI_SIMPLE_TEXT_INPUT_EX protocols.
|
---|
2131 | /// The number of key codes (0-3) is specified by the EFI_KEY_CODE_COUNT field in KeyOptions.
|
---|
2132 | ///
|
---|
2133 | //EFI_INPUT_KEY Keys[];
|
---|
2134 | } EFI_KEY_OPTION;
|
---|
2135 | #pragma pack()
|
---|
2136 |
|
---|
2137 | //
|
---|
2138 | // EFI File location to boot from on removable media devices
|
---|
2139 | //
|
---|
2140 | #define EFI_REMOVABLE_MEDIA_FILE_NAME_IA32 L"\\EFI\\BOOT\\BOOTIA32.EFI"
|
---|
2141 | #define EFI_REMOVABLE_MEDIA_FILE_NAME_IA64 L"\\EFI\\BOOT\\BOOTIA64.EFI"
|
---|
2142 | #define EFI_REMOVABLE_MEDIA_FILE_NAME_X64 L"\\EFI\\BOOT\\BOOTX64.EFI"
|
---|
2143 | #define EFI_REMOVABLE_MEDIA_FILE_NAME_ARM L"\\EFI\\BOOT\\BOOTARM.EFI"
|
---|
2144 | #define EFI_REMOVABLE_MEDIA_FILE_NAME_AARCH64 L"\\EFI\\BOOT\\BOOTAA64.EFI"
|
---|
2145 |
|
---|
2146 | #if defined (MDE_CPU_IA32)
|
---|
2147 | #define EFI_REMOVABLE_MEDIA_FILE_NAME EFI_REMOVABLE_MEDIA_FILE_NAME_IA32
|
---|
2148 | #elif defined (MDE_CPU_IPF)
|
---|
2149 | #define EFI_REMOVABLE_MEDIA_FILE_NAME EFI_REMOVABLE_MEDIA_FILE_NAME_IA64
|
---|
2150 | #elif defined (MDE_CPU_X64)
|
---|
2151 | #define EFI_REMOVABLE_MEDIA_FILE_NAME EFI_REMOVABLE_MEDIA_FILE_NAME_X64
|
---|
2152 | #elif defined (MDE_CPU_EBC)
|
---|
2153 | #elif defined (MDE_CPU_ARM)
|
---|
2154 | #define EFI_REMOVABLE_MEDIA_FILE_NAME EFI_REMOVABLE_MEDIA_FILE_NAME_ARM
|
---|
2155 | #elif defined (MDE_CPU_AARCH64)
|
---|
2156 | #define EFI_REMOVABLE_MEDIA_FILE_NAME EFI_REMOVABLE_MEDIA_FILE_NAME_AARCH64
|
---|
2157 | #else
|
---|
2158 | #error Unknown Processor Type
|
---|
2159 | #endif
|
---|
2160 |
|
---|
2161 | #include <Uefi/UefiPxe.h>
|
---|
2162 | #include <Uefi/UefiGpt.h>
|
---|
2163 | #include <Uefi/UefiInternalFormRepresentation.h>
|
---|
2164 |
|
---|
2165 | #endif
|
---|