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