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