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