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