]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Uefi/UefiSpec.h
MdePkg: Add EFI_LOAD_OPTION definition.
[mirror_edk2.git] / MdePkg / Include / Uefi / UefiSpec.h
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 - 2015, 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[in] Type The type of allocation to perform.
126 @param[in] MemoryType The type of memory to allocate.
127 @param[in] Pages The number of contiguous 4 KB pages to allocate.
128 @param[in, out] 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[in] Memory The base physical address of the pages to be freed.
155 @param[in] 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[in, out] 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[in, out] MemoryMap A pointer to the buffer in which firmware places the current memory
179 map.
180 @param[out] MapKey A pointer to the location in which firmware returns the key for the
181 current memory map.
182 @param[out] DescriptorSize A pointer to the location in which firmware returns the size, in bytes, of
183 an individual EFI_MEMORY_DESCRIPTOR.
184 @param[out] 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[in] PoolType The type of pool to allocate.
209 @param[in] Size The number of bytes to allocate from the pool.
210 @param[out] 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[in] 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[in] MemoryMapSize The size in bytes of VirtualMap.
246 @param[in] DescriptorSize The size in bytes of an entry in the VirtualMap.
247 @param[in] DescriptorVersion The version of the structure entries in VirtualMap.
248 @param[in] 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[in] ControllerHandle The handle of the controller to which driver(s) are to be connected.
274 @param[in] DriverImageHandle A pointer to an ordered list handles that support the
275 EFI_DRIVER_BINDING_PROTOCOL.
276 @param[in] RemainingDevicePath A pointer to the device path that specifies a child of the
277 controller specified by ControllerHandle.
278 @param[in] 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[in] ControllerHandle The handle of the controller from which driver(s) are to be disconnected.
308 @param[in] 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[in] 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[in] DebugDisposition Supplies type information for the pointer being converted.
347 @param[in, out] 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[in] Event Event whose notification function is being invoked.
391 @param[in] 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[in] Type The type of event to create and its mode and attributes.
406 @param[in] NotifyTpl The task priority level of event notifications, if needed.
407 @param[in] NotifyFunction The pointer to the event's notification function, if any.
408 @param[in] NotifyContext The pointer to the notification function's context; corresponds to parameter
409 Context in the notification function.
410 @param[out] 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[in] Type The type of event to create and its mode and attributes.
432 @param[in] NotifyTpl The task priority level of event notifications,if needed.
433 @param[in] NotifyFunction The pointer to the event's notification function, if any.
434 @param[in] NotifyContext The pointer to the notification function's context; corresponds to parameter
435 Context in the notification function.
436 @param[in] 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[out] 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[in] Event The timer event that is to be signaled at the specified time.
480 @param[in] Type The type of time that is specified in TriggerTime.
481 @param[in] 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[in] 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[in] NumberOfEvents The number of events in the Event array.
518 @param[in] Event An array of EFI_EVENT.
519 @param[out] 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[in] 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[in] 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[in] 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[in] 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[in] VariableName A Null-terminated string that is the name of the vendor's
606 variable.
607 @param[in] VendorGuid A unique identifier for the vendor.
608 @param[out] Attributes If not NULL, a pointer to the memory location to return the
609 attributes bitmask for the variable.
610 @param[in, out] DataSize On input, the size in bytes of the return Data buffer.
611 On output the size of data returned in Data.
612 @param[out] 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[in, out] VariableNameSize The size of the VariableName buffer.
639 @param[in, out] 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[in, out] 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[in] 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[in] VendorGuid A unique identifier for the vendor.
671 @param[in] Attributes Attributes bitmask to set for the variable.
672 @param[in] 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[in] 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[out] Time A pointer to storage to receive a snapshot of the current time.
744 @param[out] 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[in] 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[out] Enabled Indicates if the alarm is currently enabled or disabled.
779 @param[out] Pending Indicates if the alarm signal is pending and requires acknowledgement.
780 @param[out] 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[in] Enable Enable or disable the wakeup alarm.
802 @param[in] 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[in] 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[in] ParentImageHandle The caller's image handle.
827 @param[in] DevicePath The DeviceHandle specific file path from which the image is
828 loaded.
829 @param[in] SourceBuffer If not NULL, a pointer to the memory location containing a copy
830 of the image to be loaded.
831 @param[in] SourceSize The size in bytes of SourceBuffer. Ignored if SourceBuffer is NULL.
832 @param[out] 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[in] ImageHandle Handle of image to be started.
864 @param[out] ExitDataSize The pointer to the size, in bytes, of ExitData.
865 @param[out] 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[in] ImageHandle Handle that identifies the image. This parameter is passed to the
886 image on entry.
887 @param[in] ExitStatus The image's exit code.
888 @param[in] ExitDataSize The size, in bytes, of ExitData. Ignored if ExitStatus is EFI_SUCCESS.
889 @param[in] 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[in] 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[in] ImageHandle Handle that identifies the exiting image.
930 @param[in] 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[in] 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[in] Timeout The number of seconds to set the watchdog timer to.
962 @param[in] WatchdogCode The numeric code to log on a watchdog timer timeout event.
963 @param[in] DataSize The size, in bytes, of WatchdogData.
964 @param[in] 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 Resets the entire platform.
985
986 @param[in] ResetType The type of reset to perform.
987 @param[in] ResetStatus The status code for the reset.
988 @param[in] DataSize The size, in bytes, of WatchdogData.
989 @param[in] ResetData For a ResetType of EfiResetCold, EfiResetWarm, or
990 EfiResetShutdown the data buffer starts with a Null-terminated
991 string, optionally followed by additional binary data.
992
993 **/
994 typedef
995 VOID
996 (EFIAPI *EFI_RESET_SYSTEM)(
997 IN EFI_RESET_TYPE ResetType,
998 IN EFI_STATUS ResetStatus,
999 IN UINTN DataSize,
1000 IN VOID *ResetData OPTIONAL
1001 );
1002
1003 /**
1004 Returns a monotonically increasing count for the platform.
1005
1006 @param[out] Count The pointer to returned value.
1007
1008 @retval EFI_SUCCESS The next monotonic count was returned.
1009 @retval EFI_INVALID_PARAMETER Count is NULL.
1010 @retval EFI_DEVICE_ERROR The device is not functioning properly.
1011
1012 **/
1013 typedef
1014 EFI_STATUS
1015 (EFIAPI *EFI_GET_NEXT_MONOTONIC_COUNT)(
1016 OUT UINT64 *Count
1017 );
1018
1019 /**
1020 Returns the next high 32 bits of the platform's monotonic counter.
1021
1022 @param[out] HighCount The pointer to returned value.
1023
1024 @retval EFI_SUCCESS The next high monotonic count was returned.
1025 @retval EFI_INVALID_PARAMETER HighCount is NULL.
1026 @retval EFI_DEVICE_ERROR The device is not functioning properly.
1027
1028 **/
1029 typedef
1030 EFI_STATUS
1031 (EFIAPI *EFI_GET_NEXT_HIGH_MONO_COUNT)(
1032 OUT UINT32 *HighCount
1033 );
1034
1035 /**
1036 Computes and returns a 32-bit CRC for a data buffer.
1037
1038 @param[in] Data A pointer to the buffer on which the 32-bit CRC is to be computed.
1039 @param[in] DataSize The number of bytes in the buffer Data.
1040 @param[out] Crc32 The 32-bit CRC that was computed for the data buffer specified by Data
1041 and DataSize.
1042
1043 @retval EFI_SUCCESS The 32-bit CRC was computed for the data buffer and returned in
1044 Crc32.
1045 @retval EFI_INVALID_PARAMETER Data is NULL.
1046 @retval EFI_INVALID_PARAMETER Crc32 is NULL.
1047 @retval EFI_INVALID_PARAMETER DataSize is 0.
1048
1049 **/
1050 typedef
1051 EFI_STATUS
1052 (EFIAPI *EFI_CALCULATE_CRC32)(
1053 IN VOID *Data,
1054 IN UINTN DataSize,
1055 OUT UINT32 *Crc32
1056 );
1057
1058 /**
1059 Copies the contents of one buffer to another buffer.
1060
1061 @param[in] Destination The pointer to the destination buffer of the memory copy.
1062 @param[in] Source The pointer to the source buffer of the memory copy.
1063 @param[in] Length Number of bytes to copy from Source to Destination.
1064
1065 **/
1066 typedef
1067 VOID
1068 (EFIAPI *EFI_COPY_MEM)(
1069 IN VOID *Destination,
1070 IN VOID *Source,
1071 IN UINTN Length
1072 );
1073
1074 /**
1075 The SetMem() function fills a buffer with a specified value.
1076
1077 @param[in] Buffer The pointer to the buffer to fill.
1078 @param[in] Size Number of bytes in Buffer to fill.
1079 @param[in] Value Value to fill Buffer with.
1080
1081 **/
1082 typedef
1083 VOID
1084 (EFIAPI *EFI_SET_MEM)(
1085 IN VOID *Buffer,
1086 IN UINTN Size,
1087 IN UINT8 Value
1088 );
1089
1090 ///
1091 /// Enumeration of EFI Interface Types
1092 ///
1093 typedef enum {
1094 ///
1095 /// Indicates that the supplied protocol interface is supplied in native form.
1096 ///
1097 EFI_NATIVE_INTERFACE
1098 } EFI_INTERFACE_TYPE;
1099
1100 /**
1101 Installs a protocol interface on a device handle. If the handle does not exist, it is created and added
1102 to the list of handles in the system. InstallMultipleProtocolInterfaces() performs
1103 more error checking than InstallProtocolInterface(), so it is recommended that
1104 InstallMultipleProtocolInterfaces() be used in place of
1105 InstallProtocolInterface()
1106
1107 @param[in, out] Handle A pointer to the EFI_HANDLE on which the interface is to be installed.
1108 @param[in] Protocol The numeric ID of the protocol interface.
1109 @param[in] InterfaceType Indicates whether Interface is supplied in native form.
1110 @param[in] Interface A pointer to the protocol interface.
1111
1112 @retval EFI_SUCCESS The protocol interface was installed.
1113 @retval EFI_OUT_OF_RESOURCES Space for a new handle could not be allocated.
1114 @retval EFI_INVALID_PARAMETER Handle is NULL.
1115 @retval EFI_INVALID_PARAMETER Protocol is NULL.
1116 @retval EFI_INVALID_PARAMETER InterfaceType is not EFI_NATIVE_INTERFACE.
1117 @retval EFI_INVALID_PARAMETER Protocol is already installed on the handle specified by Handle.
1118
1119 **/
1120 typedef
1121 EFI_STATUS
1122 (EFIAPI *EFI_INSTALL_PROTOCOL_INTERFACE)(
1123 IN OUT EFI_HANDLE *Handle,
1124 IN EFI_GUID *Protocol,
1125 IN EFI_INTERFACE_TYPE InterfaceType,
1126 IN VOID *Interface
1127 );
1128
1129 /**
1130 Installs one or more protocol interfaces into the boot services environment.
1131
1132 @param[in, out] Handle The pointer to a handle to install the new protocol interfaces on,
1133 or a pointer to NULL if a new handle is to be allocated.
1134 @param ... A variable argument list containing pairs of protocol GUIDs and protocol
1135 interfaces.
1136
1137 @retval EFI_SUCCESS All the protocol interface was installed.
1138 @retval EFI_OUT_OF_RESOURCES There was not enough memory in pool to install all the protocols.
1139 @retval EFI_ALREADY_STARTED A Device Path Protocol instance was passed in that is already present in
1140 the handle database.
1141 @retval EFI_INVALID_PARAMETER Handle is NULL.
1142 @retval EFI_INVALID_PARAMETER Protocol is already installed on the handle specified by Handle.
1143
1144 **/
1145 typedef
1146 EFI_STATUS
1147 (EFIAPI *EFI_INSTALL_MULTIPLE_PROTOCOL_INTERFACES)(
1148 IN OUT EFI_HANDLE *Handle,
1149 ...
1150 );
1151
1152 /**
1153 Reinstalls a protocol interface on a device handle.
1154
1155 @param[in] Handle Handle on which the interface is to be reinstalled.
1156 @param[in] Protocol The numeric ID of the interface.
1157 @param[in] OldInterface A pointer to the old interface. NULL can be used if a structure is not
1158 associated with Protocol.
1159 @param[in] NewInterface A pointer to the new interface.
1160
1161 @retval EFI_SUCCESS The protocol interface was reinstalled.
1162 @retval EFI_NOT_FOUND The OldInterface on the handle was not found.
1163 @retval EFI_ACCESS_DENIED The protocol interface could not be reinstalled,
1164 because OldInterface is still being used by a
1165 driver that will not release it.
1166 @retval EFI_INVALID_PARAMETER Handle is NULL.
1167 @retval EFI_INVALID_PARAMETER Protocol is NULL.
1168
1169 **/
1170 typedef
1171 EFI_STATUS
1172 (EFIAPI *EFI_REINSTALL_PROTOCOL_INTERFACE)(
1173 IN EFI_HANDLE Handle,
1174 IN EFI_GUID *Protocol,
1175 IN VOID *OldInterface,
1176 IN VOID *NewInterface
1177 );
1178
1179 /**
1180 Removes a protocol interface from a device handle. It is recommended that
1181 UninstallMultipleProtocolInterfaces() be used in place of
1182 UninstallProtocolInterface().
1183
1184 @param[in] Handle The handle on which the interface was installed.
1185 @param[in] Protocol The numeric ID of the interface.
1186 @param[in] Interface A pointer to the interface.
1187
1188 @retval EFI_SUCCESS The interface was removed.
1189 @retval EFI_NOT_FOUND The interface was not found.
1190 @retval EFI_ACCESS_DENIED The interface was not removed because the interface
1191 is still being used by a driver.
1192 @retval EFI_INVALID_PARAMETER Handle is NULL.
1193 @retval EFI_INVALID_PARAMETER Protocol is NULL.
1194
1195 **/
1196 typedef
1197 EFI_STATUS
1198 (EFIAPI *EFI_UNINSTALL_PROTOCOL_INTERFACE)(
1199 IN EFI_HANDLE Handle,
1200 IN EFI_GUID *Protocol,
1201 IN VOID *Interface
1202 );
1203
1204 /**
1205 Removes one or more protocol interfaces into the boot services environment.
1206
1207 @param[in] Handle The handle to remove the protocol interfaces from.
1208 @param ... A variable argument list containing pairs of protocol GUIDs and
1209 protocol interfaces.
1210
1211 @retval EFI_SUCCESS All the protocol interfaces were removed.
1212 @retval EFI_INVALID_PARAMETER One of the protocol interfaces was not previously installed on Handle.
1213
1214 **/
1215 typedef
1216 EFI_STATUS
1217 (EFIAPI *EFI_UNINSTALL_MULTIPLE_PROTOCOL_INTERFACES)(
1218 IN EFI_HANDLE Handle,
1219 ...
1220 );
1221
1222 /**
1223 Queries a handle to determine if it supports a specified protocol.
1224
1225 @param[in] Handle The handle being queried.
1226 @param[in] Protocol The published unique identifier of the protocol.
1227 @param[out] Interface Supplies the address where a pointer to the corresponding Protocol
1228 Interface is returned.
1229
1230 @retval EFI_SUCCESS The interface information for the specified protocol was returned.
1231 @retval EFI_UNSUPPORTED The device does not support the specified protocol.
1232 @retval EFI_INVALID_PARAMETER Handle is NULL.
1233 @retval EFI_INVALID_PARAMETER Protocol is NULL.
1234 @retval EFI_INVALID_PARAMETER Interface is NULL.
1235
1236 **/
1237 typedef
1238 EFI_STATUS
1239 (EFIAPI *EFI_HANDLE_PROTOCOL)(
1240 IN EFI_HANDLE Handle,
1241 IN EFI_GUID *Protocol,
1242 OUT VOID **Interface
1243 );
1244
1245 #define EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL 0x00000001
1246 #define EFI_OPEN_PROTOCOL_GET_PROTOCOL 0x00000002
1247 #define EFI_OPEN_PROTOCOL_TEST_PROTOCOL 0x00000004
1248 #define EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER 0x00000008
1249 #define EFI_OPEN_PROTOCOL_BY_DRIVER 0x00000010
1250 #define EFI_OPEN_PROTOCOL_EXCLUSIVE 0x00000020
1251
1252 /**
1253 Queries a handle to determine if it supports a specified protocol. If the protocol is supported by the
1254 handle, it opens the protocol on behalf of the calling agent.
1255
1256 @param[in] Handle The handle for the protocol interface that is being opened.
1257 @param[in] Protocol The published unique identifier of the protocol.
1258 @param[out] Interface Supplies the address where a pointer to the corresponding Protocol
1259 Interface is returned.
1260 @param[in] AgentHandle The handle of the agent that is opening the protocol interface
1261 specified by Protocol and Interface.
1262 @param[in] ControllerHandle If the agent that is opening a protocol is a driver that follows the
1263 UEFI Driver Model, then this parameter is the controller handle
1264 that requires the protocol interface. If the agent does not follow
1265 the UEFI Driver Model, then this parameter is optional and may
1266 be NULL.
1267 @param[in] Attributes The open mode of the protocol interface specified by Handle
1268 and Protocol.
1269
1270 @retval EFI_SUCCESS An item was added to the open list for the protocol interface, and the
1271 protocol interface was returned in Interface.
1272 @retval EFI_UNSUPPORTED Handle does not support Protocol.
1273 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
1274 @retval EFI_ACCESS_DENIED Required attributes can't be supported in current environment.
1275 @retval EFI_ALREADY_STARTED Item on the open list already has requierd attributes whose agent
1276 handle is the same as AgentHandle.
1277
1278 **/
1279 typedef
1280 EFI_STATUS
1281 (EFIAPI *EFI_OPEN_PROTOCOL)(
1282 IN EFI_HANDLE Handle,
1283 IN EFI_GUID *Protocol,
1284 OUT VOID **Interface, OPTIONAL
1285 IN EFI_HANDLE AgentHandle,
1286 IN EFI_HANDLE ControllerHandle,
1287 IN UINT32 Attributes
1288 );
1289
1290
1291 /**
1292 Closes a protocol on a handle that was opened using OpenProtocol().
1293
1294 @param[in] Handle The handle for the protocol interface that was previously opened
1295 with OpenProtocol(), and is now being closed.
1296 @param[in] Protocol The published unique identifier of the protocol.
1297 @param[in] AgentHandle The handle of the agent that is closing the protocol interface.
1298 @param[in] ControllerHandle If the agent that opened a protocol is a driver that follows the
1299 UEFI Driver Model, then this parameter is the controller handle
1300 that required the protocol interface.
1301
1302 @retval EFI_SUCCESS The protocol instance was closed.
1303 @retval EFI_INVALID_PARAMETER 1) Handle is NULL.
1304 2) AgentHandle is NULL.
1305 3) ControllerHandle is not NULL and ControllerHandle is not a valid EFI_HANDLE.
1306 4) Protocol is NULL.
1307 @retval EFI_NOT_FOUND 1) Handle does not support the protocol specified by Protocol.
1308 2) The protocol interface specified by Handle and Protocol is not
1309 currently open by AgentHandle and ControllerHandle.
1310
1311 **/
1312 typedef
1313 EFI_STATUS
1314 (EFIAPI *EFI_CLOSE_PROTOCOL)(
1315 IN EFI_HANDLE Handle,
1316 IN EFI_GUID *Protocol,
1317 IN EFI_HANDLE AgentHandle,
1318 IN EFI_HANDLE ControllerHandle
1319 );
1320
1321 ///
1322 /// EFI Oprn Protocol Information Entry
1323 ///
1324 typedef struct {
1325 EFI_HANDLE AgentHandle;
1326 EFI_HANDLE ControllerHandle;
1327 UINT32 Attributes;
1328 UINT32 OpenCount;
1329 } EFI_OPEN_PROTOCOL_INFORMATION_ENTRY;
1330
1331 /**
1332 Retrieves the list of agents that currently have a protocol interface opened.
1333
1334 @param[in] Handle The handle for the protocol interface that is being queried.
1335 @param[in] Protocol The published unique identifier of the protocol.
1336 @param[out] EntryBuffer A pointer to a buffer of open protocol information in the form of
1337 EFI_OPEN_PROTOCOL_INFORMATION_ENTRY structures.
1338 @param[out] EntryCount A pointer to the number of entries in EntryBuffer.
1339
1340 @retval EFI_SUCCESS The open protocol information was returned in EntryBuffer, and the
1341 number of entries was returned EntryCount.
1342 @retval EFI_OUT_OF_RESOURCES There are not enough resources available to allocate EntryBuffer.
1343 @retval EFI_NOT_FOUND Handle does not support the protocol specified by Protocol.
1344
1345 **/
1346 typedef
1347 EFI_STATUS
1348 (EFIAPI *EFI_OPEN_PROTOCOL_INFORMATION)(
1349 IN EFI_HANDLE Handle,
1350 IN EFI_GUID *Protocol,
1351 OUT EFI_OPEN_PROTOCOL_INFORMATION_ENTRY **EntryBuffer,
1352 OUT UINTN *EntryCount
1353 );
1354
1355 /**
1356 Retrieves the list of protocol interface GUIDs that are installed on a handle in a buffer allocated
1357 from pool.
1358
1359 @param[in] Handle The handle from which to retrieve the list of protocol interface
1360 GUIDs.
1361 @param[out] ProtocolBuffer A pointer to the list of protocol interface GUID pointers that are
1362 installed on Handle.
1363 @param[out] ProtocolBufferCount A pointer to the number of GUID pointers present in
1364 ProtocolBuffer.
1365
1366 @retval EFI_SUCCESS The list of protocol interface GUIDs installed on Handle was returned in
1367 ProtocolBuffer. The number of protocol interface GUIDs was
1368 returned in ProtocolBufferCount.
1369 @retval EFI_OUT_OF_RESOURCES There is not enough pool memory to store the results.
1370 @retval EFI_INVALID_PARAMETER Handle is NULL.
1371 @retval EFI_INVALID_PARAMETER Handle is not a valid EFI_HANDLE.
1372 @retval EFI_INVALID_PARAMETER ProtocolBuffer is NULL.
1373 @retval EFI_INVALID_PARAMETER ProtocolBufferCount is NULL.
1374
1375 **/
1376 typedef
1377 EFI_STATUS
1378 (EFIAPI *EFI_PROTOCOLS_PER_HANDLE)(
1379 IN EFI_HANDLE Handle,
1380 OUT EFI_GUID ***ProtocolBuffer,
1381 OUT UINTN *ProtocolBufferCount
1382 );
1383
1384 /**
1385 Creates an event that is to be signaled whenever an interface is installed for a specified protocol.
1386
1387 @param[in] Protocol The numeric ID of the protocol for which the event is to be registered.
1388 @param[in] Event Event that is to be signaled whenever a protocol interface is registered
1389 for Protocol.
1390 @param[out] Registration A pointer to a memory location to receive the registration value.
1391
1392 @retval EFI_SUCCESS The notification event has been registered.
1393 @retval EFI_OUT_OF_RESOURCES Space for the notification event could not be allocated.
1394 @retval EFI_INVALID_PARAMETER Protocol is NULL.
1395 @retval EFI_INVALID_PARAMETER Event is NULL.
1396 @retval EFI_INVALID_PARAMETER Registration is NULL.
1397
1398 **/
1399 typedef
1400 EFI_STATUS
1401 (EFIAPI *EFI_REGISTER_PROTOCOL_NOTIFY)(
1402 IN EFI_GUID *Protocol,
1403 IN EFI_EVENT Event,
1404 OUT VOID **Registration
1405 );
1406
1407 ///
1408 /// Enumeration of EFI Locate Search Types
1409 ///
1410 typedef enum {
1411 ///
1412 /// Retrieve all the handles in the handle database.
1413 ///
1414 AllHandles,
1415 ///
1416 /// Retrieve the next handle fron a RegisterProtocolNotify() event.
1417 ///
1418 ByRegisterNotify,
1419 ///
1420 /// Retrieve the set of handles from the handle database that support a
1421 /// specified protocol.
1422 ///
1423 ByProtocol
1424 } EFI_LOCATE_SEARCH_TYPE;
1425
1426 /**
1427 Returns an array of handles that support a specified protocol.
1428
1429 @param[in] SearchType Specifies which handle(s) are to be returned.
1430 @param[in] Protocol Specifies the protocol to search by.
1431 @param[in] SearchKey Specifies the search key.
1432 @param[in, out] BufferSize On input, the size in bytes of Buffer. On output, the size in bytes of
1433 the array returned in Buffer (if the buffer was large enough) or the
1434 size, in bytes, of the buffer needed to obtain the array (if the buffer was
1435 not large enough).
1436 @param[out] Buffer The buffer in which the array is returned.
1437
1438 @retval EFI_SUCCESS The array of handles was returned.
1439 @retval EFI_NOT_FOUND No handles match the search.
1440 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small for the result.
1441 @retval EFI_INVALID_PARAMETER SearchType is not a member of EFI_LOCATE_SEARCH_TYPE.
1442 @retval EFI_INVALID_PARAMETER SearchType is ByRegisterNotify and SearchKey is NULL.
1443 @retval EFI_INVALID_PARAMETER SearchType is ByProtocol and Protocol is NULL.
1444 @retval EFI_INVALID_PARAMETER One or more matches are found and BufferSize is NULL.
1445 @retval EFI_INVALID_PARAMETER BufferSize is large enough for the result and Buffer is NULL.
1446
1447 **/
1448 typedef
1449 EFI_STATUS
1450 (EFIAPI *EFI_LOCATE_HANDLE)(
1451 IN EFI_LOCATE_SEARCH_TYPE SearchType,
1452 IN EFI_GUID *Protocol, OPTIONAL
1453 IN VOID *SearchKey, OPTIONAL
1454 IN OUT UINTN *BufferSize,
1455 OUT EFI_HANDLE *Buffer
1456 );
1457
1458 /**
1459 Locates the handle to a device on the device path that supports the specified protocol.
1460
1461 @param[in] Protocol Specifies the protocol to search for.
1462 @param[in, out] DevicePath On input, a pointer to a pointer to the device path. On output, the device
1463 path pointer is modified to point to the remaining part of the device
1464 path.
1465 @param[out] Device A pointer to the returned device handle.
1466
1467 @retval EFI_SUCCESS The resulting handle was returned.
1468 @retval EFI_NOT_FOUND No handles match the search.
1469 @retval EFI_INVALID_PARAMETER Protocol is NULL.
1470 @retval EFI_INVALID_PARAMETER DevicePath is NULL.
1471 @retval EFI_INVALID_PARAMETER A handle matched the search and Device is NULL.
1472
1473 **/
1474 typedef
1475 EFI_STATUS
1476 (EFIAPI *EFI_LOCATE_DEVICE_PATH)(
1477 IN EFI_GUID *Protocol,
1478 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath,
1479 OUT EFI_HANDLE *Device
1480 );
1481
1482 /**
1483 Adds, updates, or removes a configuration table entry from the EFI System Table.
1484
1485 @param[in] Guid A pointer to the GUID for the entry to add, update, or remove.
1486 @param[in] Table A pointer to the configuration table for the entry to add, update, or
1487 remove. May be NULL.
1488
1489 @retval EFI_SUCCESS The (Guid, Table) pair was added, updated, or removed.
1490 @retval EFI_NOT_FOUND An attempt was made to delete a nonexistent entry.
1491 @retval EFI_INVALID_PARAMETER Guid is NULL.
1492 @retval EFI_OUT_OF_RESOURCES There is not enough memory available to complete the operation.
1493
1494 **/
1495 typedef
1496 EFI_STATUS
1497 (EFIAPI *EFI_INSTALL_CONFIGURATION_TABLE)(
1498 IN EFI_GUID *Guid,
1499 IN VOID *Table
1500 );
1501
1502 /**
1503 Returns an array of handles that support the requested protocol in a buffer allocated from pool.
1504
1505 @param[in] SearchType Specifies which handle(s) are to be returned.
1506 @param[in] Protocol Provides the protocol to search by.
1507 This parameter is only valid for a SearchType of ByProtocol.
1508 @param[in] SearchKey Supplies the search key depending on the SearchType.
1509 @param[in, out] NoHandles The number of handles returned in Buffer.
1510 @param[out] Buffer A pointer to the buffer to return the requested array of handles that
1511 support Protocol.
1512
1513 @retval EFI_SUCCESS The array of handles was returned in Buffer, and the number of
1514 handles in Buffer was returned in NoHandles.
1515 @retval EFI_NOT_FOUND No handles match the search.
1516 @retval EFI_OUT_OF_RESOURCES There is not enough pool memory to store the matching results.
1517 @retval EFI_INVALID_PARAMETER NoHandles is NULL.
1518 @retval EFI_INVALID_PARAMETER Buffer is NULL.
1519
1520 **/
1521 typedef
1522 EFI_STATUS
1523 (EFIAPI *EFI_LOCATE_HANDLE_BUFFER)(
1524 IN EFI_LOCATE_SEARCH_TYPE SearchType,
1525 IN EFI_GUID *Protocol, OPTIONAL
1526 IN VOID *SearchKey, OPTIONAL
1527 IN OUT UINTN *NoHandles,
1528 OUT EFI_HANDLE **Buffer
1529 );
1530
1531 /**
1532 Returns the first protocol instance that matches the given protocol.
1533
1534 @param[in] Protocol Provides the protocol to search for.
1535 @param[in] Registration Optional registration key returned from
1536 RegisterProtocolNotify().
1537 @param[out] Interface On return, a pointer to the first interface that matches Protocol and
1538 Registration.
1539
1540 @retval EFI_SUCCESS A protocol instance matching Protocol was found and returned in
1541 Interface.
1542 @retval EFI_NOT_FOUND No protocol instances were found that match Protocol and
1543 Registration.
1544 @retval EFI_INVALID_PARAMETER Interface is NULL.
1545
1546 **/
1547 typedef
1548 EFI_STATUS
1549 (EFIAPI *EFI_LOCATE_PROTOCOL)(
1550 IN EFI_GUID *Protocol,
1551 IN VOID *Registration, OPTIONAL
1552 OUT VOID **Interface
1553 );
1554
1555 ///
1556 /// EFI Capsule Block Descriptor
1557 ///
1558 typedef struct {
1559 ///
1560 /// Length in bytes of the data pointed to by DataBlock/ContinuationPointer.
1561 ///
1562 UINT64 Length;
1563 union {
1564 ///
1565 /// Physical address of the data block. This member of the union is
1566 /// used if Length is not equal to zero.
1567 ///
1568 EFI_PHYSICAL_ADDRESS DataBlock;
1569 ///
1570 /// Physical address of another block of
1571 /// EFI_CAPSULE_BLOCK_DESCRIPTOR structures. This
1572 /// member of the union is used if Length is equal to zero. If
1573 /// ContinuationPointer is zero this entry represents the end of the list.
1574 ///
1575 EFI_PHYSICAL_ADDRESS ContinuationPointer;
1576 } Union;
1577 } EFI_CAPSULE_BLOCK_DESCRIPTOR;
1578
1579 ///
1580 /// EFI Capsule Header.
1581 ///
1582 typedef struct {
1583 ///
1584 /// A GUID that defines the contents of a capsule.
1585 ///
1586 EFI_GUID CapsuleGuid;
1587 ///
1588 /// The size of the capsule header. This may be larger than the size of
1589 /// the EFI_CAPSULE_HEADER since CapsuleGuid may imply
1590 /// extended header entries
1591 ///
1592 UINT32 HeaderSize;
1593 ///
1594 /// Bit-mapped list describing the capsule attributes. The Flag values
1595 /// of 0x0000 - 0xFFFF are defined by CapsuleGuid. Flag values
1596 /// of 0x10000 - 0xFFFFFFFF are defined by this specification
1597 ///
1598 UINT32 Flags;
1599 ///
1600 /// Size in bytes of the capsule.
1601 ///
1602 UINT32 CapsuleImageSize;
1603 } EFI_CAPSULE_HEADER;
1604
1605 ///
1606 /// The EFI System Table entry must point to an array of capsules
1607 /// that contain the same CapsuleGuid value. The array must be
1608 /// prefixed by a UINT32 that represents the size of the array of capsules.
1609 ///
1610 typedef struct {
1611 ///
1612 /// the size of the array of capsules.
1613 ///
1614 UINT32 CapsuleArrayNumber;
1615 ///
1616 /// Point to an array of capsules that contain the same CapsuleGuid value.
1617 ///
1618 VOID* CapsulePtr[1];
1619 } EFI_CAPSULE_TABLE;
1620
1621 #define CAPSULE_FLAGS_PERSIST_ACROSS_RESET 0x00010000
1622 #define CAPSULE_FLAGS_POPULATE_SYSTEM_TABLE 0x00020000
1623 #define CAPSULE_FLAGS_INITIATE_RESET 0x00040000
1624
1625 /**
1626 Passes capsules to the firmware with both virtual and physical mapping. Depending on the intended
1627 consumption, the firmware may process the capsule immediately. If the payload should persist
1628 across a system reset, the reset value returned from EFI_QueryCapsuleCapabilities must
1629 be passed into ResetSystem() and will cause the capsule to be processed by the firmware as
1630 part of the reset process.
1631
1632 @param[in] CapsuleHeaderArray Virtual pointer to an array of virtual pointers to the capsules
1633 being passed into update capsule.
1634 @param[in] CapsuleCount Number of pointers to EFI_CAPSULE_HEADER in
1635 CaspuleHeaderArray.
1636 @param[in] ScatterGatherList Physical pointer to a set of
1637 EFI_CAPSULE_BLOCK_DESCRIPTOR that describes the
1638 location in physical memory of a set of capsules.
1639
1640 @retval EFI_SUCCESS Valid capsule was passed. If
1641 CAPSULE_FLAGS_PERSIT_ACROSS_RESET is not set, the
1642 capsule has been successfully processed by the firmware.
1643 @retval EFI_INVALID_PARAMETER CapsuleSize is NULL, or an incompatible set of flags were
1644 set in the capsule header.
1645 @retval EFI_INVALID_PARAMETER CapsuleCount is 0.
1646 @retval EFI_DEVICE_ERROR The capsule update was started, but failed due to a device error.
1647 @retval EFI_UNSUPPORTED The capsule type is not supported on this platform.
1648 @retval EFI_OUT_OF_RESOURCES When ExitBootServices() has been previously called this error indicates the capsule
1649 is compatible with this platform but is not capable of being submitted or processed
1650 in runtime. The caller may resubmit the capsule prior to ExitBootServices().
1651 @retval EFI_OUT_OF_RESOURCES When ExitBootServices() has not been previously called then this error indicates
1652 the capsule is compatible with this platform but there are insufficient resources to process.
1653
1654 **/
1655 typedef
1656 EFI_STATUS
1657 (EFIAPI *EFI_UPDATE_CAPSULE)(
1658 IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,
1659 IN UINTN CapsuleCount,
1660 IN EFI_PHYSICAL_ADDRESS ScatterGatherList OPTIONAL
1661 );
1662
1663 /**
1664 Returns if the capsule can be supported via UpdateCapsule().
1665
1666 @param[in] CapsuleHeaderArray Virtual pointer to an array of virtual pointers to the capsules
1667 being passed into update capsule.
1668 @param[in] CapsuleCount Number of pointers to EFI_CAPSULE_HEADER in
1669 CaspuleHeaderArray.
1670 @param[out] MaxiumCapsuleSize On output the maximum size that UpdateCapsule() can
1671 support as an argument to UpdateCapsule() via
1672 CapsuleHeaderArray and ScatterGatherList.
1673 @param[out] ResetType Returns the type of reset required for the capsule update.
1674
1675 @retval EFI_SUCCESS Valid answer returned.
1676 @retval EFI_UNSUPPORTED The capsule type is not supported on this platform, and
1677 MaximumCapsuleSize and ResetType are undefined.
1678 @retval EFI_INVALID_PARAMETER MaximumCapsuleSize is NULL.
1679 @retval EFI_OUT_OF_RESOURCES When ExitBootServices() has been previously called this error indicates the capsule
1680 is compatible with this platform but is not capable of being submitted or processed
1681 in runtime. The caller may resubmit the capsule prior to ExitBootServices().
1682 @retval EFI_OUT_OF_RESOURCES When ExitBootServices() has not been previously called then this error indicates
1683 the capsule is compatible with this platform but there are insufficient resources to process.
1684
1685 **/
1686 typedef
1687 EFI_STATUS
1688 (EFIAPI *EFI_QUERY_CAPSULE_CAPABILITIES)(
1689 IN EFI_CAPSULE_HEADER **CapsuleHeaderArray,
1690 IN UINTN CapsuleCount,
1691 OUT UINT64 *MaximumCapsuleSize,
1692 OUT EFI_RESET_TYPE *ResetType
1693 );
1694
1695 /**
1696 Returns information about the EFI variables.
1697
1698 @param[in] Attributes Attributes bitmask to specify the type of variables on
1699 which to return information.
1700 @param[out] MaximumVariableStorageSize On output the maximum size of the storage space
1701 available for the EFI variables associated with the
1702 attributes specified.
1703 @param[out] RemainingVariableStorageSize Returns the remaining size of the storage space
1704 available for the EFI variables associated with the
1705 attributes specified.
1706 @param[out] MaximumVariableSize Returns the maximum size of the individual EFI
1707 variables associated with the attributes specified.
1708
1709 @retval EFI_SUCCESS Valid answer returned.
1710 @retval EFI_INVALID_PARAMETER An invalid combination of attribute bits was supplied
1711 @retval EFI_UNSUPPORTED The attribute is not supported on this platform, and the
1712 MaximumVariableStorageSize,
1713 RemainingVariableStorageSize, MaximumVariableSize
1714 are undefined.
1715
1716 **/
1717 typedef
1718 EFI_STATUS
1719 (EFIAPI *EFI_QUERY_VARIABLE_INFO)(
1720 IN UINT32 Attributes,
1721 OUT UINT64 *MaximumVariableStorageSize,
1722 OUT UINT64 *RemainingVariableStorageSize,
1723 OUT UINT64 *MaximumVariableSize
1724 );
1725
1726 //
1727 // Firmware should stop at a firmware user interface on next boot
1728 //
1729 #define EFI_OS_INDICATIONS_BOOT_TO_FW_UI 0x0000000000000001
1730 #define EFI_OS_INDICATIONS_TIMESTAMP_REVOCATION 0x0000000000000002
1731 #define EFI_OS_INDICATIONS_FILE_CAPSULE_DELIVERY_SUPPORTED 0x0000000000000004
1732 #define EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED 0x0000000000000008
1733 #define EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED 0x0000000000000010
1734
1735 //
1736 // EFI Runtime Services Table
1737 //
1738 #define EFI_SYSTEM_TABLE_SIGNATURE SIGNATURE_64 ('I','B','I',' ','S','Y','S','T')
1739 #define EFI_2_50_SYSTEM_TABLE_REVISION ((2 << 16) | (50))
1740 #define EFI_2_40_SYSTEM_TABLE_REVISION ((2 << 16) | (40))
1741 #define EFI_2_31_SYSTEM_TABLE_REVISION ((2 << 16) | (31))
1742 #define EFI_2_30_SYSTEM_TABLE_REVISION ((2 << 16) | (30))
1743 #define EFI_2_20_SYSTEM_TABLE_REVISION ((2 << 16) | (20))
1744 #define EFI_2_10_SYSTEM_TABLE_REVISION ((2 << 16) | (10))
1745 #define EFI_2_00_SYSTEM_TABLE_REVISION ((2 << 16) | (00))
1746 #define EFI_1_10_SYSTEM_TABLE_REVISION ((1 << 16) | (10))
1747 #define EFI_1_02_SYSTEM_TABLE_REVISION ((1 << 16) | (02))
1748 #define EFI_SYSTEM_TABLE_REVISION EFI_2_50_SYSTEM_TABLE_REVISION
1749 #define EFI_SPECIFICATION_VERSION EFI_SYSTEM_TABLE_REVISION
1750
1751 #define EFI_RUNTIME_SERVICES_SIGNATURE SIGNATURE_64 ('R','U','N','T','S','E','R','V')
1752 #define EFI_RUNTIME_SERVICES_REVISION EFI_SPECIFICATION_VERSION
1753
1754 ///
1755 /// EFI Runtime Services Table.
1756 ///
1757 typedef struct {
1758 ///
1759 /// The table header for the EFI Runtime Services Table.
1760 ///
1761 EFI_TABLE_HEADER Hdr;
1762
1763 //
1764 // Time Services
1765 //
1766 EFI_GET_TIME GetTime;
1767 EFI_SET_TIME SetTime;
1768 EFI_GET_WAKEUP_TIME GetWakeupTime;
1769 EFI_SET_WAKEUP_TIME SetWakeupTime;
1770
1771 //
1772 // Virtual Memory Services
1773 //
1774 EFI_SET_VIRTUAL_ADDRESS_MAP SetVirtualAddressMap;
1775 EFI_CONVERT_POINTER ConvertPointer;
1776
1777 //
1778 // Variable Services
1779 //
1780 EFI_GET_VARIABLE GetVariable;
1781 EFI_GET_NEXT_VARIABLE_NAME GetNextVariableName;
1782 EFI_SET_VARIABLE SetVariable;
1783
1784 //
1785 // Miscellaneous Services
1786 //
1787 EFI_GET_NEXT_HIGH_MONO_COUNT GetNextHighMonotonicCount;
1788 EFI_RESET_SYSTEM ResetSystem;
1789
1790 //
1791 // UEFI 2.0 Capsule Services
1792 //
1793 EFI_UPDATE_CAPSULE UpdateCapsule;
1794 EFI_QUERY_CAPSULE_CAPABILITIES QueryCapsuleCapabilities;
1795
1796 //
1797 // Miscellaneous UEFI 2.0 Service
1798 //
1799 EFI_QUERY_VARIABLE_INFO QueryVariableInfo;
1800 } EFI_RUNTIME_SERVICES;
1801
1802
1803 #define EFI_BOOT_SERVICES_SIGNATURE SIGNATURE_64 ('B','O','O','T','S','E','R','V')
1804 #define EFI_BOOT_SERVICES_REVISION EFI_SPECIFICATION_VERSION
1805
1806 ///
1807 /// EFI Boot Services Table.
1808 ///
1809 typedef struct {
1810 ///
1811 /// The table header for the EFI Boot Services Table.
1812 ///
1813 EFI_TABLE_HEADER Hdr;
1814
1815 //
1816 // Task Priority Services
1817 //
1818 EFI_RAISE_TPL RaiseTPL;
1819 EFI_RESTORE_TPL RestoreTPL;
1820
1821 //
1822 // Memory Services
1823 //
1824 EFI_ALLOCATE_PAGES AllocatePages;
1825 EFI_FREE_PAGES FreePages;
1826 EFI_GET_MEMORY_MAP GetMemoryMap;
1827 EFI_ALLOCATE_POOL AllocatePool;
1828 EFI_FREE_POOL FreePool;
1829
1830 //
1831 // Event & Timer Services
1832 //
1833 EFI_CREATE_EVENT CreateEvent;
1834 EFI_SET_TIMER SetTimer;
1835 EFI_WAIT_FOR_EVENT WaitForEvent;
1836 EFI_SIGNAL_EVENT SignalEvent;
1837 EFI_CLOSE_EVENT CloseEvent;
1838 EFI_CHECK_EVENT CheckEvent;
1839
1840 //
1841 // Protocol Handler Services
1842 //
1843 EFI_INSTALL_PROTOCOL_INTERFACE InstallProtocolInterface;
1844 EFI_REINSTALL_PROTOCOL_INTERFACE ReinstallProtocolInterface;
1845 EFI_UNINSTALL_PROTOCOL_INTERFACE UninstallProtocolInterface;
1846 EFI_HANDLE_PROTOCOL HandleProtocol;
1847 VOID *Reserved;
1848 EFI_REGISTER_PROTOCOL_NOTIFY RegisterProtocolNotify;
1849 EFI_LOCATE_HANDLE LocateHandle;
1850 EFI_LOCATE_DEVICE_PATH LocateDevicePath;
1851 EFI_INSTALL_CONFIGURATION_TABLE InstallConfigurationTable;
1852
1853 //
1854 // Image Services
1855 //
1856 EFI_IMAGE_LOAD LoadImage;
1857 EFI_IMAGE_START StartImage;
1858 EFI_EXIT Exit;
1859 EFI_IMAGE_UNLOAD UnloadImage;
1860 EFI_EXIT_BOOT_SERVICES ExitBootServices;
1861
1862 //
1863 // Miscellaneous Services
1864 //
1865 EFI_GET_NEXT_MONOTONIC_COUNT GetNextMonotonicCount;
1866 EFI_STALL Stall;
1867 EFI_SET_WATCHDOG_TIMER SetWatchdogTimer;
1868
1869 //
1870 // DriverSupport Services
1871 //
1872 EFI_CONNECT_CONTROLLER ConnectController;
1873 EFI_DISCONNECT_CONTROLLER DisconnectController;
1874
1875 //
1876 // Open and Close Protocol Services
1877 //
1878 EFI_OPEN_PROTOCOL OpenProtocol;
1879 EFI_CLOSE_PROTOCOL CloseProtocol;
1880 EFI_OPEN_PROTOCOL_INFORMATION OpenProtocolInformation;
1881
1882 //
1883 // Library Services
1884 //
1885 EFI_PROTOCOLS_PER_HANDLE ProtocolsPerHandle;
1886 EFI_LOCATE_HANDLE_BUFFER LocateHandleBuffer;
1887 EFI_LOCATE_PROTOCOL LocateProtocol;
1888 EFI_INSTALL_MULTIPLE_PROTOCOL_INTERFACES InstallMultipleProtocolInterfaces;
1889 EFI_UNINSTALL_MULTIPLE_PROTOCOL_INTERFACES UninstallMultipleProtocolInterfaces;
1890
1891 //
1892 // 32-bit CRC Services
1893 //
1894 EFI_CALCULATE_CRC32 CalculateCrc32;
1895
1896 //
1897 // Miscellaneous Services
1898 //
1899 EFI_COPY_MEM CopyMem;
1900 EFI_SET_MEM SetMem;
1901 EFI_CREATE_EVENT_EX CreateEventEx;
1902 } EFI_BOOT_SERVICES;
1903
1904 ///
1905 /// Contains a set of GUID/pointer pairs comprised of the ConfigurationTable field in the
1906 /// EFI System Table.
1907 ///
1908 typedef struct {
1909 ///
1910 /// The 128-bit GUID value that uniquely identifies the system configuration table.
1911 ///
1912 EFI_GUID VendorGuid;
1913 ///
1914 /// A pointer to the table associated with VendorGuid.
1915 ///
1916 VOID *VendorTable;
1917 } EFI_CONFIGURATION_TABLE;
1918
1919 ///
1920 /// EFI System Table
1921 ///
1922 typedef struct {
1923 ///
1924 /// The table header for the EFI System Table.
1925 ///
1926 EFI_TABLE_HEADER Hdr;
1927 ///
1928 /// A pointer to a null terminated string that identifies the vendor
1929 /// that produces the system firmware for the platform.
1930 ///
1931 CHAR16 *FirmwareVendor;
1932 ///
1933 /// A firmware vendor specific value that identifies the revision
1934 /// of the system firmware for the platform.
1935 ///
1936 UINT32 FirmwareRevision;
1937 ///
1938 /// The handle for the active console input device. This handle must support
1939 /// EFI_SIMPLE_TEXT_INPUT_PROTOCOL and EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.
1940 ///
1941 EFI_HANDLE ConsoleInHandle;
1942 ///
1943 /// A pointer to the EFI_SIMPLE_TEXT_INPUT_PROTOCOL interface that is
1944 /// associated with ConsoleInHandle.
1945 ///
1946 EFI_SIMPLE_TEXT_INPUT_PROTOCOL *ConIn;
1947 ///
1948 /// The handle for the active console output device.
1949 ///
1950 EFI_HANDLE ConsoleOutHandle;
1951 ///
1952 /// A pointer to the EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL interface
1953 /// that is associated with ConsoleOutHandle.
1954 ///
1955 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *ConOut;
1956 ///
1957 /// The handle for the active standard error console device.
1958 /// This handle must support the EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.
1959 ///
1960 EFI_HANDLE StandardErrorHandle;
1961 ///
1962 /// A pointer to the EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL interface
1963 /// that is associated with StandardErrorHandle.
1964 ///
1965 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *StdErr;
1966 ///
1967 /// A pointer to the EFI Runtime Services Table.
1968 ///
1969 EFI_RUNTIME_SERVICES *RuntimeServices;
1970 ///
1971 /// A pointer to the EFI Boot Services Table.
1972 ///
1973 EFI_BOOT_SERVICES *BootServices;
1974 ///
1975 /// The number of system configuration tables in the buffer ConfigurationTable.
1976 ///
1977 UINTN NumberOfTableEntries;
1978 ///
1979 /// A pointer to the system configuration tables.
1980 /// The number of entries in the table is NumberOfTableEntries.
1981 ///
1982 EFI_CONFIGURATION_TABLE *ConfigurationTable;
1983 } EFI_SYSTEM_TABLE;
1984
1985 /**
1986 This is the declaration of an EFI image entry point. This entry point is
1987 the same for UEFI Applications, UEFI OS Loaders, and UEFI Drivers including
1988 both device drivers and bus drivers.
1989
1990 @param[in] ImageHandle The firmware allocated handle for the UEFI image.
1991 @param[in] SystemTable A pointer to the EFI System Table.
1992
1993 @retval EFI_SUCCESS The operation completed successfully.
1994 @retval Others An unexpected error occurred.
1995 **/
1996 typedef
1997 EFI_STATUS
1998 (EFIAPI *EFI_IMAGE_ENTRY_POINT)(
1999 IN EFI_HANDLE ImageHandle,
2000 IN EFI_SYSTEM_TABLE *SystemTable
2001 );
2002
2003 //
2004 // EFI Load Option. This data structure describes format of UEFI boot option variables.
2005 //
2006 // NOTE: EFI Load Option is a byte packed buffer of variable length fields.
2007 // The first two fields have fixed length. They are declared as members of the
2008 // EFI_LOAD_OPTION structure. All the other fields are variable length fields.
2009 // They are listed in the comment block below for reference purposes.
2010 //
2011 #pragma pack(1)
2012 typedef struct _EFI_LOAD_OPTION {
2013 ///
2014 /// The attributes for this load option entry. All unused bits must be zero
2015 /// and are reserved by the UEFI specification for future growth.
2016 ///
2017 UINT32 Attributes;
2018 ///
2019 /// Length in bytes of the FilePathList. OptionalData starts at offset
2020 /// sizeof(UINT32) + sizeof(UINT16) + StrSize(Description) + FilePathListLength
2021 /// of the EFI_LOAD_OPTION descriptor.
2022 ///
2023 UINT16 FilePathListLength;
2024 ///
2025 /// The user readable description for the load option.
2026 /// This field ends with a Null character.
2027 ///
2028 // CHAR16 Description[];
2029 ///
2030 /// A packed array of UEFI device paths. The first element of the array is a
2031 /// device path that describes the device and location of the Image for this
2032 /// load option. The FilePathList[0] is specific to the device type. Other
2033 /// device paths may optionally exist in the FilePathList, but their usage is
2034 /// OSV specific. Each element in the array is variable length, and ends at
2035 /// the device path end structure. Because the size of Description is
2036 /// arbitrary, this data structure is not guaranteed to be aligned on a
2037 /// natural boundary. This data structure may have to be copied to an aligned
2038 /// natural boundary before it is used.
2039 ///
2040 // EFI_DEVICE_PATH_PROTOCOL FilePathList[];
2041 ///
2042 /// The remaining bytes in the load option descriptor are a binary data buffer
2043 /// that is passed to the loaded image. If the field is zero bytes long, a
2044 /// NULL pointer is passed to the loaded image. The number of bytes in
2045 /// OptionalData can be computed by subtracting the starting offset of
2046 /// OptionalData from total size in bytes of the EFI_LOAD_OPTION.
2047 ///
2048 // UINT8 OptionalData[];
2049 } EFI_LOAD_OPTION;
2050 #pragma pack()
2051
2052 //
2053 // EFI Load Options Attributes
2054 //
2055 #define LOAD_OPTION_ACTIVE 0x00000001
2056 #define LOAD_OPTION_FORCE_RECONNECT 0x00000002
2057 #define LOAD_OPTION_HIDDEN 0x00000008
2058 #define LOAD_OPTION_CATEGORY 0x00001F00
2059
2060 #define LOAD_OPTION_CATEGORY_BOOT 0x00000000
2061 #define LOAD_OPTION_CATEGORY_APP 0x00000100
2062
2063 #define EFI_BOOT_OPTION_SUPPORT_KEY 0x00000001
2064 #define EFI_BOOT_OPTION_SUPPORT_APP 0x00000002
2065 #define EFI_BOOT_OPTION_SUPPORT_COUNT 0x00000300
2066
2067 ///
2068 /// EFI Boot Key Data
2069 ///
2070 typedef union {
2071 struct {
2072 ///
2073 /// Indicates the revision of the EFI_KEY_OPTION structure. This revision level should be 0.
2074 ///
2075 UINT32 Revision : 8;
2076 ///
2077 /// Either the left or right Shift keys must be pressed (1) or must not be pressed (0).
2078 ///
2079 UINT32 ShiftPressed : 1;
2080 ///
2081 /// Either the left or right Control keys must be pressed (1) or must not be pressed (0).
2082 ///
2083 UINT32 ControlPressed : 1;
2084 ///
2085 /// Either the left or right Alt keys must be pressed (1) or must not be pressed (0).
2086 ///
2087 UINT32 AltPressed : 1;
2088 ///
2089 /// Either the left or right Logo keys must be pressed (1) or must not be pressed (0).
2090 ///
2091 UINT32 LogoPressed : 1;
2092 ///
2093 /// The Menu key must be pressed (1) or must not be pressed (0).
2094 ///
2095 UINT32 MenuPressed : 1;
2096 ///
2097 /// The SysReq key must be pressed (1) or must not be pressed (0).
2098 ///
2099 UINT32 SysReqPressed : 1;
2100 UINT32 Reserved : 16;
2101 ///
2102 /// Specifies the actual number of entries in EFI_KEY_OPTION.Keys, from 0-3. If
2103 /// zero, then only the shift state is considered. If more than one, then the boot option will
2104 /// only be launched if all of the specified keys are pressed with the same shift state.
2105 ///
2106 UINT32 InputKeyCount : 2;
2107 } Options;
2108 UINT32 PackedValue;
2109 } EFI_BOOT_KEY_DATA;
2110
2111 ///
2112 /// EFI Key Option.
2113 ///
2114 #pragma pack(1)
2115 typedef struct {
2116 ///
2117 /// Specifies options about how the key will be processed.
2118 ///
2119 EFI_BOOT_KEY_DATA KeyData;
2120 ///
2121 /// The CRC-32 which should match the CRC-32 of the entire EFI_LOAD_OPTION to
2122 /// which BootOption refers. If the CRC-32s do not match this value, then this key
2123 /// option is ignored.
2124 ///
2125 UINT32 BootOptionCrc;
2126 ///
2127 /// The Boot#### option which will be invoked if this key is pressed and the boot option
2128 /// is active (LOAD_OPTION_ACTIVE is set).
2129 ///
2130 UINT16 BootOption;
2131 ///
2132 /// The key codes to compare against those returned by the
2133 /// EFI_SIMPLE_TEXT_INPUT and EFI_SIMPLE_TEXT_INPUT_EX protocols.
2134 /// The number of key codes (0-3) is specified by the EFI_KEY_CODE_COUNT field in KeyOptions.
2135 ///
2136 //EFI_INPUT_KEY Keys[];
2137 } EFI_KEY_OPTION;
2138 #pragma pack()
2139
2140 //
2141 // EFI File location to boot from on removable media devices
2142 //
2143 #define EFI_REMOVABLE_MEDIA_FILE_NAME_IA32 L"\\EFI\\BOOT\\BOOTIA32.EFI"
2144 #define EFI_REMOVABLE_MEDIA_FILE_NAME_IA64 L"\\EFI\\BOOT\\BOOTIA64.EFI"
2145 #define EFI_REMOVABLE_MEDIA_FILE_NAME_X64 L"\\EFI\\BOOT\\BOOTX64.EFI"
2146 #define EFI_REMOVABLE_MEDIA_FILE_NAME_ARM L"\\EFI\\BOOT\\BOOTARM.EFI"
2147 #define EFI_REMOVABLE_MEDIA_FILE_NAME_AARCH64 L"\\EFI\\BOOT\\BOOTAA64.EFI"
2148
2149 #if defined (MDE_CPU_IA32)
2150 #define EFI_REMOVABLE_MEDIA_FILE_NAME EFI_REMOVABLE_MEDIA_FILE_NAME_IA32
2151 #elif defined (MDE_CPU_IPF)
2152 #define EFI_REMOVABLE_MEDIA_FILE_NAME EFI_REMOVABLE_MEDIA_FILE_NAME_IA64
2153 #elif defined (MDE_CPU_X64)
2154 #define EFI_REMOVABLE_MEDIA_FILE_NAME EFI_REMOVABLE_MEDIA_FILE_NAME_X64
2155 #elif defined (MDE_CPU_EBC)
2156 #elif defined (MDE_CPU_ARM)
2157 #define EFI_REMOVABLE_MEDIA_FILE_NAME EFI_REMOVABLE_MEDIA_FILE_NAME_ARM
2158 #elif defined (MDE_CPU_AARCH64)
2159 #define EFI_REMOVABLE_MEDIA_FILE_NAME EFI_REMOVABLE_MEDIA_FILE_NAME_AARCH64
2160 #else
2161 #error Unknown Processor Type
2162 #endif
2163
2164 #include <Uefi/UefiPxe.h>
2165 #include <Uefi/UefiGpt.h>
2166 #include <Uefi/UefiInternalFormRepresentation.h>
2167
2168 #endif