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