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