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