2 Provides library functions for common UEFI operations. Only available to DXE
5 The UEFI Library provides functions and macros that simplify the development of
6 UEFI Drivers and UEFI Applications. These functions and macros help manage EFI
7 events, build simple locks utilizing EFI Task Priority Levels (TPLs), install
8 EFI Driver Model related protocols, manage Unicode string tables for UEFI Drivers,
9 and print messages on the console output and standard error devices.
11 Copyright (c) 2006 - 2008, Intel Corporation
12 All rights reserved. This program and the accompanying materials
13 are licensed and made available under the terms and conditions of the BSD License
14 which accompanies this distribution. The full text of the license may be found at
15 http://opensource.org/licenses/bsd-license.php
17 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
18 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
22 #ifndef __UEFI_LIB_H__
23 #define __UEFI_LIB_H__
25 #include <Protocol/DriverBinding.h>
26 #include <Protocol/DriverConfiguration.h>
27 #include <Protocol/ComponentName.h>
28 #include <Protocol/ComponentName2.h>
29 #include <Protocol/DriverDiagnostics.h>
30 #include <Protocol/DriverDiagnostics2.h>
31 #include <Protocol/GraphicsOutput.h>
33 #include <Library/BaseLib.h>
36 /// Unicode String Table
40 CHAR16
*UnicodeString
;
41 } EFI_UNICODE_STRING_TABLE
;
47 EfiLockUninitialized
= 0,
63 Macro that returns the number of 100 ns units for a specified number of microseconds.
64 Useful for managing EFI timer events.
66 @param Microseconds Number of microseonds.
68 @return The number of 100 ns units equivalent to the number of microseconds specified
72 #define EFI_TIMER_PERIOD_MICROSECONDS(Microseconds) MultU64x32((UINT64)(Microseconds), 10)
76 Macro that returns the number of 100 ns units for a specified number of milliseoconds.
77 Useful for managing EFI timer events.
79 @param Milliseconds Number of milliseconds.
81 @return The number of 100 ns units equivalent to the number of milliseconds specified
85 #define EFI_TIMER_PERIOD_MILLISECONDS(Milliseconds) MultU64x32((UINT64)(Milliseconds), 10000)
89 Macro that returns the number of 100 ns units for a specified number of seoconds.
90 Useful for managing EFI timer events.
92 @param Seconds Number of seconds.
94 @return The number of 100 ns units equivalent to the number of seconds specified
98 #define EFI_TIMER_PERIOD_SECONDS(Seconds) MultU64x32((UINT64)(Seconds), 10000000)
102 This function searches the list of configuration tables stored in the EFI System
103 Table for a table with a GUID that matches TableGuid. If a match is found,
104 then a pointer to the configuration table is returned in Table, and EFI_SUCCESS
105 is returned. If a matching GUID is not found, then EFI_NOT_FOUND is returned.
107 @param TableGuid Pointer to table's GUID type..
108 @param Table Pointer to the table associated with TableGuid in the EFI System Table.
110 @retval EFI_SUCCESS A configuration table matching TableGuid was found.
111 @retval EFI_NOT_FOUND A configuration table matching TableGuid could not be found.
116 EfiGetSystemConfigurationTable (
117 IN EFI_GUID
*TableGuid
,
122 This function causes the notification function to be executed for every protocol
123 of type ProtocolGuid instance that exists in the system when this function is
124 invoked. In addition, every time a protocol of type ProtocolGuid instance is
125 installed or reinstalled, the notification function is also executed.
127 @param ProtocolGuid Supplies GUID of the protocol upon whose installation the event is fired.
128 @param NotifyTpl Supplies the task priority level of the event notifications.
129 @param NotifyFunction Supplies the function to notify when the event is signaled.
130 @param NotifyContext The context parameter to pass to NotifyFunction.
131 @param Registration A pointer to a memory location to receive the registration value.
133 @return The notification event that was created.
138 EfiCreateProtocolNotifyEvent(
139 IN EFI_GUID
*ProtocolGuid
,
140 IN EFI_TPL NotifyTpl
,
141 IN EFI_EVENT_NOTIFY NotifyFunction
,
142 IN VOID
*NotifyContext
, OPTIONAL
143 OUT VOID
**Registration
147 This function creates an event using NotifyTpl, NoifyFunction, and NotifyContext.
148 This event is signaled with EfiNamedEventSignal(). This provide the ability for
149 one or more listeners on the same event named by the GUID specified by Name.
151 @param Name Supplies GUID name of the event.
152 @param NotifyTpl Supplies the task priority level of the event notifications.
153 @param NotifyFunction Supplies the function to notify when the event is signaled.
154 @param NotifyContext The context parameter to pass to NotifyFunction.
155 @param Registration A pointer to a memory location to receive the registration value.
157 @retval EFI_SUCCESS A named event was created.
158 @retval EFI_OUT_OF_RESOURCES There are not enough resource to create the named event.
163 EfiNamedEventListen (
164 IN CONST EFI_GUID
*Name
,
165 IN EFI_TPL NotifyTpl
,
166 IN EFI_EVENT_NOTIFY NotifyFunction
,
167 IN CONST VOID
*NotifyContext
, OPTIONAL
168 OUT VOID
*Registration OPTIONAL
172 This function signals the named event specified by Name. The named event must
173 have been created with EfiNamedEventListen().
175 @param Name Supplies GUID name of the event.
177 @retval EFI_SUCCESS A named event was signaled.
178 @retval EFI_OUT_OF_RESOURCES There are not enough resource to signal the named event.
183 EfiNamedEventSignal (
184 IN CONST EFI_GUID
*Name
188 Returns the current TPL.
190 This function returns the current TPL. There is no EFI service to directly
191 retrieve the current TPL. Instead, the RaiseTPL() function is used to raise
192 the TPL to TPL_HIGH_LEVEL. This will return the current TPL. The TPL level
193 can then immediately be restored back to the current TPL level with a call
196 @return The current TPL.
206 This function initializes a basic mutual exclusion lock to the released state
207 and returns the lock. Each lock provides mutual exclusion access at its task
208 priority level. Since there is no preemption or multiprocessor support in EFI,
209 acquiring the lock only consists of raising to the locks TPL.
211 @param Lock A pointer to the lock data structure to initialize.
212 @param Priority EFI TPL associated with the lock.
220 IN OUT EFI_LOCK
*Lock
,
225 This macro initializes the contents of a basic mutual exclusion lock to the
226 released state. Each lock provides mutual exclusion access at its task
227 priority level. Since there is no preemption or multiprocessor support in EFI,
228 acquiring the lock only consists of raising to the locks TPL.
230 @param Priority The task priority level of the lock.
235 #define EFI_INITIALIZE_LOCK_VARIABLE(Priority) \
236 {Priority, TPL_APPLICATION, EfiLockReleased }
241 Macro that calls DebugAssert() if an EFI_LOCK structure is not in the locked state.
243 If the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set,
244 then this macro evaluates the EFI_LOCK structure specified by Lock. If Lock
245 is not in the locked state, then DebugAssert() is called passing in the source
246 filename, source line number, and Lock.
248 If Lock is NULL, then ASSERT().
250 @param LockParameter A pointer to the lock to acquire.
253 #define ASSERT_LOCKED(LockParameter) \
255 if (DebugAssertEnabled ()) { \
256 ASSERT (LockParameter != NULL); \
257 if ((LockParameter)->Lock != EfiLockAcquired) { \
258 _ASSERT (LockParameter not locked); \
265 This function raises the system's current task priority level to the task
266 priority level of the mutual exclusion lock. Then, it places the lock in the
269 @param Lock A pointer to the lock to acquire.
279 This function raises the system's current task priority level to the task
280 priority level of the mutual exclusion lock. Then, it attempts to place the
281 lock in the acquired state.
283 @param Lock A pointer to the lock to acquire.
285 @retval EFI_SUCCESS The lock was acquired.
286 @retval EFI_ACCESS_DENIED The lock could not be acquired because it is already owned.
291 EfiAcquireLockOrFail (
296 This function transitions a mutual exclusion lock from the acquired state to
297 the released state, and restores the system's task priority level to its
300 @param Lock A pointer to the lock to release.
310 Tests whether a controller handle is being managed by a specific driver.
312 This function tests whether the driver specified by DriverBindingHandle is
313 currently managing the controller specified by ControllerHandle. This test
314 is performed by evaluating if the the protocol specified by ProtocolGuid is
315 present on ControllerHandle and is was opened by DriverBindingHandle with an
316 attribute of EFI_OPEN_PROTOCOL_BY_DRIVER.
317 If ProtocolGuid is NULL, then ASSERT().
319 @param ControllerHandle A handle for a controller to test.
320 @param DriverBindingHandle Specifies the driver binding handle for the
322 @param ProtocolGuid Specifies the protocol that the driver specified
323 by DriverBindingHandle opens in its Start()
326 @retval EFI_SUCCESS ControllerHandle is managed by the driver
327 specifed by DriverBindingHandle.
328 @retval EFI_UNSUPPORTED ControllerHandle is not managed by the driver
329 specifed by DriverBindingHandle.
334 EfiTestManagedDevice (
335 IN CONST EFI_HANDLE ControllerHandle
,
336 IN CONST EFI_HANDLE DriverBindingHandle
,
337 IN CONST EFI_GUID
*ProtocolGuid
341 Tests whether a child handle is a child device of the controller.
343 This function tests whether ChildHandle is one of the children of
344 ControllerHandle. This test is performed by checking to see if the protocol
345 specified by ProtocolGuid is present on ControllerHandle and opened by
346 ChildHandle with an attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.
347 If ProtocolGuid is NULL, then ASSERT().
349 @param ControllerHandle A handle for a (parent) controller to test.
350 @param ChildHandle A child handle to test.
351 @param ProtocolGuid Supplies the protocol that the child controller
352 opens on its parent controller.
354 @retval EFI_SUCCESS ChildHandle is a child of the ControllerHandle.
355 @retval EFI_UNSUPPORTED ChildHandle is not a child of the
362 IN CONST EFI_HANDLE ControllerHandle
,
363 IN CONST EFI_HANDLE ChildHandle
,
364 IN CONST EFI_GUID
*ProtocolGuid
368 This function looks up a Unicode string in UnicodeStringTable. If Language is
369 a member of SupportedLanguages and a Unicode string is found in UnicodeStringTable
370 that matches the language code specified by Language, then it is returned in
373 @param Language A pointer to the ISO 639-2 language code for the
374 Unicode string to look up and return.
375 @param SupportedLanguages A pointer to the set of ISO 639-2 language codes
376 that the Unicode string table supports. Language
377 must be a member of this set.
378 @param UnicodeStringTable A pointer to the table of Unicode strings.
379 @param UnicodeString A pointer to the Unicode string from UnicodeStringTable
380 that matches the language specified by Language.
382 @retval EFI_SUCCESS The Unicode string that matches the language
383 specified by Language was found
384 in the table of Unicoide strings UnicodeStringTable,
385 and it was returned in UnicodeString.
386 @retval EFI_INVALID_PARAMETER Language is NULL.
387 @retval EFI_INVALID_PARAMETER UnicodeString is NULL.
388 @retval EFI_UNSUPPORTED SupportedLanguages is NULL.
389 @retval EFI_UNSUPPORTED UnicodeStringTable is NULL.
390 @retval EFI_UNSUPPORTED The language specified by Language is not a
391 member of SupportedLanguages.
392 @retval EFI_UNSUPPORTED The language specified by Language is not
393 supported by UnicodeStringTable.
398 LookupUnicodeString (
399 IN CONST CHAR8
*Language
,
400 IN CONST CHAR8
*SupportedLanguages
,
401 IN CONST EFI_UNICODE_STRING_TABLE
*UnicodeStringTable
,
402 OUT CHAR16
**UnicodeString
406 This function looks up a Unicode string in UnicodeStringTable.
407 If Language is a member of SupportedLanguages and a Unicode
408 string is found in UnicodeStringTable that matches the
409 language code specified by Language, then it is returned in
412 @param Language A pointer to the ISO 639-2 or
413 RFC 3066 language code for the
414 Unicode string to look up and
417 @param SupportedLanguages A pointer to the set of ISO
418 639-2 or RFC 3066 language
419 codes that the Unicode string
420 table supports. Language must
421 be a member of this set.
423 @param UnicodeStringTable A pointer to the table of
426 @param UnicodeString A pointer to the Unicode
427 string from UnicodeStringTable
428 that matches the language
429 specified by Language.
431 @param Iso639Language Specify the language code
432 format supported. If true,
433 then the format follow ISO
434 639-2. If false, then it
437 @retval EFI_SUCCESS The Unicode string that
438 matches the language specified
439 by Language was found in the
440 table of Unicoide strings
441 UnicodeStringTable, and it was
442 returned in UnicodeString.
444 @retval EFI_INVALID_PARAMETER Language is NULL.
446 @retval EFI_INVALID_PARAMETER UnicodeString is NULL.
448 @retval EFI_UNSUPPORTED SupportedLanguages is NULL.
450 @retval EFI_UNSUPPORTED UnicodeStringTable is NULL.
452 @retval EFI_UNSUPPORTED The language specified by
453 Language is not a member
454 ofSupportedLanguages.
456 @retval EFI_UNSUPPORTED The language specified by
457 Language is not supported by
463 LookupUnicodeString2 (
464 IN CONST CHAR8
*Language
,
465 IN CONST CHAR8
*SupportedLanguages
,
466 IN CONST EFI_UNICODE_STRING_TABLE
*UnicodeStringTable
,
467 OUT CHAR16
**UnicodeString
,
468 IN BOOLEAN Iso639Language
472 This function adds a Unicode string to UnicodeStringTable.
473 If Language is a member of SupportedLanguages then UnicodeString is added to
474 UnicodeStringTable. New buffers are allocated for both Language and
475 UnicodeString. The contents of Language and UnicodeString are copied into
476 these new buffers. These buffers are automatically freed when
477 FreeUnicodeStringTable() is called.
479 @param Language A pointer to the ISO 639-2 language code for the Unicode
481 @param SupportedLanguages A pointer to the set of ISO 639-2 language codes
482 that the Unicode string table supports.
483 Language must be a member of this set.
484 @param UnicodeStringTable A pointer to the table of Unicode strings.
485 @param UnicodeString A pointer to the Unicode string to add.
487 @retval EFI_SUCCESS The Unicode string that matches the language
488 specified by Language was found in the table of
489 Unicode strings UnicodeStringTable, and it was
490 returned in UnicodeString.
491 @retval EFI_INVALID_PARAMETER Language is NULL.
492 @retval EFI_INVALID_PARAMETER UnicodeString is NULL.
493 @retval EFI_INVALID_PARAMETER UnicodeString is an empty string.
494 @retval EFI_UNSUPPORTED SupportedLanguages is NULL.
495 @retval EFI_ALREADY_STARTED A Unicode string with language Language is
496 already present in UnicodeStringTable.
497 @retval EFI_OUT_OF_RESOURCES There is not enough memory to add another
498 Unicode string to UnicodeStringTable.
499 @retval EFI_UNSUPPORTED The language specified by Language is not a
500 member of SupportedLanguages.
506 IN CONST CHAR8
*Language
,
507 IN CONST CHAR8
*SupportedLanguages
,
508 IN EFI_UNICODE_STRING_TABLE
**UnicodeStringTable
,
509 IN CONST CHAR16
*UnicodeString
514 This function adds a Unicode string to UnicodeStringTable.
515 If Language is a member of SupportedLanguages then
516 UnicodeString is added to UnicodeStringTable. New buffers are
517 allocated for both Language and UnicodeString. The contents
518 of Language and UnicodeString are copied into these new
519 buffers. These buffers are automatically freed when
520 FreeUnicodeStringTable() is called.
522 @param Language A pointer to the ISO 639-2 or
523 RFC 3066 language code for the
524 Unicode string to add.
526 @param SupportedLanguages A pointer to the set of ISO
527 639-2 or RFC 3066 language
528 codes that the Unicode string
529 table supports. Language must
530 be a member of this set.
532 @param UnicodeStringTable A pointer to the table of
535 @param UnicodeString A pointer to the Unicode
538 @param Iso639Language Specify the language code
539 format supported. If true,
540 then the format follow ISO
541 639-2. If false, then it
544 @retval EFI_SUCCESS The Unicode string that
545 matches the language specified
546 by Language was found in the
547 table of Unicode strings
548 UnicodeStringTable, and it was
549 returned in UnicodeString.
551 @retval EFI_INVALID_PARAMETER Language is NULL.
553 @retval EFI_INVALID_PARAMETER UnicodeString is NULL.
555 @retval EFI_INVALID_PARAMETER UnicodeString is an empty string.
557 @retval EFI_UNSUPPORTED SupportedLanguages is NULL.
559 @retval EFI_ALREADY_STARTED A Unicode string with language
560 Language is already present in
563 @retval EFI_OUT_OF_RESOURCES There is not enough memory to
564 add another Unicode string to
567 @retval EFI_UNSUPPORTED The language specified by
568 Language is not a member of
575 IN CONST CHAR8
*Language
,
576 IN CONST CHAR8
*SupportedLanguages
,
577 IN EFI_UNICODE_STRING_TABLE
**UnicodeStringTable
,
578 IN CONST CHAR16
*UnicodeString
,
579 IN BOOLEAN Iso639Language
583 This function frees the table of Unicode strings in UnicodeStringTable.
584 If UnicodeStringTable is NULL, then EFI_SUCCESS is returned.
585 Otherwise, each language code, and each Unicode string in the Unicode string
586 table are freed, and EFI_SUCCESS is returned.
588 @param UnicodeStringTable A pointer to the table of Unicode strings.
590 @retval EFI_SUCCESS The Unicode string table was freed.
595 FreeUnicodeStringTable (
596 IN EFI_UNICODE_STRING_TABLE
*UnicodeStringTable
600 This function computes and returns the width of the Unicode character
601 specified by UnicodeChar.
603 @param UnicodeChar A Unicode character.
605 @retval 0 The width if UnicodeChar could not be determined.
606 @retval 1 UnicodeChar is a narrow glyph.
607 @retval 2 UnicodeChar is a wide glyph.
613 IN CHAR16 UnicodeChar
617 This function computes and returns the display length of
618 the Null-terminated Unicode string specified by String.
619 If String is NULL, then 0 is returned.
620 If any of the widths of the Unicode characters in String
621 can not be determined, then 0 is returned.
623 @param String A pointer to a Null-terminated Unicode string.
625 @return The display length of the Null-terminated Unicode string specified by String.
630 UnicodeStringDisplayLength (
631 IN CONST CHAR16
*String
635 // Functions that abstract early Framework contamination of UEFI.
638 Signal a Ready to Boot Event.
640 Create a Ready to Boot Event. Signal it and close it. This causes other
641 events of the same event group to be signaled in other modules.
646 EfiSignalEventReadyToBoot (
651 Signal a Legacy Boot Event.
653 Create a legacy Boot Event. Signal it and close it. This causes other
654 events of the same event group to be signaled in other modules.
659 EfiSignalEventLegacyBoot (
664 Creates an EFI event in the Legacy Boot Event Group. Prior to UEFI 2.0 this
665 was done via a non blessed UEFI extensions and this library abstracts the
666 implementation mechanism of this event from the caller.
668 This function abstracts the creation of the Legacy Boot Event. The Framework
669 moved from a proprietary to UEFI 2.0 based mechanism. This library abstracts
670 the caller from how this event is created to prevent to code form having to
671 change with the version of the specification supported.
672 If LegacyBootEvent is NULL, then ASSERT().
674 @param LegacyBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
676 @retval EFI_SUCCESS Event was created.
677 @retval Other Event was not created.
682 EfiCreateEventLegacyBoot (
683 OUT EFI_EVENT
*LegacyBootEvent
687 Create an EFI event in the Legacy Boot Event Group and allows
688 the caller to specify a notification function.
690 This function abstracts the creation of the Legacy Boot Event.
691 The Framework moved from a proprietary to UEFI 2.0 based mechanism.
692 This library abstracts the caller from how this event is created to prevent
693 to code form having to change with the version of the specification supported.
694 If LegacyBootEvent is NULL, then ASSERT().
696 @param NotifyTpl The task priority level of the event.
697 @param NotifyFunction The notification function to call when the event is signaled.
698 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.
699 @param LegacyBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
701 @retval EFI_SUCCESS Event was created.
702 @retval Other Event was not created.
707 EfiCreateEventLegacyBootEx (
708 IN EFI_TPL NotifyTpl
,
709 IN EFI_EVENT_NOTIFY NotifyFunction
, OPTIONAL
710 IN VOID
*NotifyContext
, OPTIONAL
711 OUT EFI_EVENT
*LegacyBootEvent
715 Create an EFI event in the Ready To Boot Event Group. Prior to UEFI 2.0 this
716 was done via a non-standard UEFI extension, and this library abstracts the
717 implementation mechanism of this event from the caller.
719 This function abstracts the creation of the Ready to Boot Event. The Framework
720 moved from a proprietary to UEFI 2.0-based mechanism. This library abstracts
721 the caller from how this event is created to prevent the code form having to
722 change with the version of the specification supported.
723 If ReadyToBootEvent is NULL, then ASSERT().
725 @param ReadyToBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
727 @retval EFI_SUCCESS Event was created.
728 @retval Other Event was not created.
733 EfiCreateEventReadyToBoot (
734 OUT EFI_EVENT
*ReadyToBootEvent
738 Create an EFI event in the Ready To Boot Event Group and allows
739 the caller to specify a notification function.
741 This function abstracts the creation of the Ready to Boot Event.
742 The Framework moved from a proprietary to UEFI 2.0 based mechanism.
743 This library abstracts the caller from how this event is created to prevent
744 to code form having to change with the version of the specification supported.
745 If ReadyToBootEvent is NULL, then ASSERT().
747 @param NotifyTpl The task priority level of the event.
748 @param NotifyFunction The notification function to call when the event is signaled.
749 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.
750 @param ReadyToBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
752 @retval EFI_SUCCESS Event was created.
753 @retval Other Event was not created.
758 EfiCreateEventReadyToBootEx (
759 IN EFI_TPL NotifyTpl
,
760 IN EFI_EVENT_NOTIFY NotifyFunction
, OPTIONAL
761 IN VOID
*NotifyContext
, OPTIONAL
762 OUT EFI_EVENT
*ReadyToBootEvent
766 Initialize a Firmware Volume (FV) Media Device Path node.
768 The Framework FwVol Device Path changed to conform to the UEFI 2.0 specification.
769 This library function abstracts initializing a device path node.
771 Initialize the MEDIA_FW_VOL_FILEPATH_DEVICE_PATH data structure. This device
772 path changed in the DXE CIS version 0.92 in a non back ward compatible way to
773 not conflict with the UEFI 2.0 specification. This function abstracts the
774 differences from the caller.
776 If FvDevicePathNode is NULL, then ASSERT().
777 If NameGuid is NULL, then ASSERT().
779 @param FvDevicePathNode Pointer to a FV device path node to initialize
780 @param NameGuid FV file name to use in FvDevicePathNode
785 EfiInitializeFwVolDevicepathNode (
786 IN OUT MEDIA_FW_VOL_FILEPATH_DEVICE_PATH
*FvDevicePathNode
,
787 IN CONST EFI_GUID
*NameGuid
791 Check to see if the Firmware Volume (FV) Media Device Path is valid
793 The Framework FwVol Device Path changed to conform to the UEFI 2.0 specification.
794 This library function abstracts validating a device path node.
796 Check the MEDIA_FW_VOL_FILEPATH_DEVICE_PATH data structure to see if it's valid.
797 If it is valid, then return the GUID file name from the device path node. Otherwise,
798 return NULL. This device path changed in the DXE CIS version 0.92 in a non back ward
799 compatible way to not conflict with the UEFI 2.0 specification. This function abstracts
800 the differences from the caller.
801 If FvDevicePathNode is NULL, then ASSERT().
803 @param FvDevicePathNode Pointer to FV device path to check.
805 @retval NULL FvDevicePathNode is not valid.
806 @retval Other FvDevicePathNode is valid and pointer to NameGuid was returned.
811 EfiGetNameGuidFromFwVolDevicePathNode (
812 IN CONST MEDIA_FW_VOL_FILEPATH_DEVICE_PATH
*FvDevicePathNode
816 Prints a formatted Unicode string to the console output device specified by
817 ConOut defined in the EFI_SYSTEM_TABLE.
819 This function prints a formatted Unicode string to the console output device
820 specified by ConOut in EFI_SYSTEM_TABLE and returns the number of Unicode
821 characters that printed to ConOut. If the length of the formatted Unicode
822 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first
823 PcdUefiLibMaxPrintBufferSize characters are sent to ConOut.
825 @param Format Null-terminated Unicode format string.
826 @param ... Variable argument list whose contents are accessed based
827 on the format string specified by Format.
828 If Format is NULL, then ASSERT().
829 If Format is not aligned on a 16-bit boundary, then ASSERT().
831 @return Number of Unicode characters printed to ConOut.
837 IN CONST CHAR16
*Format
,
842 Prints a formatted Unicode string to the console output device specified by
843 StdErr defined in the EFI_SYSTEM_TABLE.
845 This function prints a formatted Unicode string to the console output device
846 specified by StdErr in EFI_SYSTEM_TABLE and returns the number of Unicode
847 characters that printed to StdErr. If the length of the formatted Unicode
848 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first
849 PcdUefiLibMaxPrintBufferSize characters are sent to StdErr.
851 @param Format Null-terminated Unicode format string.
852 @param ... Variable argument list whose contents are accessed based
853 on the format string specified by Format.
854 If Format is NULL, then ASSERT().
855 If Format is not aligned on a 16-bit boundary, then ASSERT().
857 @return Number of Unicode characters printed to StdErr.
863 IN CONST CHAR16
*Format
,
868 Prints a formatted ASCII string to the console output device specified by
869 ConOut defined in the EFI_SYSTEM_TABLE.
871 This function prints a formatted ASCII string to the console output device
872 specified by ConOut in EFI_SYSTEM_TABLE and returns the number of ASCII
873 characters that printed to ConOut. If the length of the formatted ASCII
874 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first
875 PcdUefiLibMaxPrintBufferSize characters are sent to ConOut.
877 @param Format Null-terminated ASCII format string.
878 @param ... Variable argument list whose contents are accessed based
879 on the format string specified by Format.
880 If Format is NULL, then ASSERT().
881 If Format is not aligned on a 16-bit boundary, then ASSERT().
883 @return Number of ASCII characters printed to ConOut.
889 IN CONST CHAR8
*Format
,
894 Prints a formatted ASCII string to the console output device specified by
895 StdErr defined in the EFI_SYSTEM_TABLE.
897 This function prints a formatted ASCII string to the console output device
898 specified by StdErr in EFI_SYSTEM_TABLE and returns the number of ASCII
899 characters that printed to StdErr. If the length of the formatted ASCII
900 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first
901 PcdUefiLibMaxPrintBufferSize characters are sent to StdErr.
903 @param Format Null-terminated ASCII format string.
904 @param ... Variable argument list whose contents are accessed based
905 on the format string specified by Format.
906 If Format is NULL, then ASSERT().
907 If Format is not aligned on a 16-bit boundary, then ASSERT().
909 @return Number of ASCII characters printed to ConErr.
915 IN CONST CHAR8
*Format
,
920 Prints a formatted Unicode string to a graphics console device specified by
921 ConsoleOutputHandle defined in the EFI_SYSTEM_TABLE at the given (X,Y) coordinates.
923 This function prints a formatted Unicode string to the graphics console device
924 specified by ConsoleOutputHandle in EFI_SYSTEM_TABLE and returns the number of
925 Unicode characters printed. If the length of the formatted Unicode string is
926 greater than PcdUefiLibMaxPrintBufferSize, then only the first
927 PcdUefiLibMaxPrintBufferSize characters are printed. The EFI_HII_FONT_PROTOCOL
928 is used to convert the string to a bitmap using the glyphs registered with the
929 HII database. No wrapping is performed, so any portions of the string the fall
930 outside the active display region will not be displayed.
932 If a graphics console device is not associated with the ConsoleOutputHandle
933 defined in the EFI_SYSTEM_TABLE then no string is printed, and 0 is returned.
934 If the EFI_HII_FONT_PROTOCOL is not present in the handle database, then no
935 string is printed, and 0 is returned.
936 If Format is NULL, then ASSERT().
937 If Format is not aligned on a 16-bit boundary, then ASSERT().
939 @param X X coordinate to print the string.
940 @param Y Y coordinate to print the string.
941 @param ForeGround The forground color of the string being printed. This is
942 an optional parameter that may be NULL. If it is NULL,
943 then the foreground color of the current ConOut device
944 in the EFI_SYSTEM_TABLE is used.
945 @param BackGround The background color of the string being printed. This is
946 an optional parameter that may be NULL. If it is NULL,
947 then the background color of the current ConOut device
948 in the EFI_SYSTEM_TABLE is used.
949 @param Format Null-terminated Unicode format string. See Print Library
950 for the supported format string syntax.
951 @param ... Variable argument list whose contents are accessed based on
952 the format string specified by Format.
954 @return The number of Unicode characters printed.
962 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL
*ForeGround
, OPTIONAL
963 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL
*BackGround
, OPTIONAL
964 IN CONST CHAR16
*Format
,
969 Prints a formatted ASCII string to a graphics console device specified by
970 ConsoleOutputHandle defined in the EFI_SYSTEM_TABLE at the given (X,Y) coordinates.
972 This function prints a formatted ASCII string to the graphics console device
973 specified by ConsoleOutputHandle in EFI_SYSTEM_TABLE and returns the number of
974 ASCII characters printed. If the length of the formatted ASCII string is
975 greater than PcdUefiLibMaxPrintBufferSize, then only the first
976 PcdUefiLibMaxPrintBufferSize characters are printed. The EFI_HII_FONT_PROTOCOL
977 is used to convert the string to a bitmap using the glyphs registered with the
978 HII database. No wrapping is performed, so any portions of the string the fall
979 outside the active display region will not be displayed.
981 If a graphics console device is not associated with the ConsoleOutputHandle
982 defined in the EFI_SYSTEM_TABLE then no string is printed, and 0 is returned.
983 If the EFI_HII_FONT_PROTOCOL is not present in the handle database, then no
984 string is printed, and 0 is returned.
985 If Format is NULL, then ASSERT().
986 If Format is not aligned on a 16-bit boundary, then ASSERT().
988 @param X X coordinate to print the string.
989 @param Y Y coordinate to print the string.
990 @param ForeGround The forground color of the string being printed. This is
991 an optional parameter that may be NULL. If it is NULL,
992 then the foreground color of the current ConOut device
993 in the EFI_SYSTEM_TABLE is used.
994 @param BackGround The background color of the string being printed. This is
995 an optional parameter that may be NULL. If it is NULL,
996 then the background color of the current ConOut device
997 in the EFI_SYSTEM_TABLE is used.
998 @param Format Null-terminated ASCII format string. See Print Library
999 for the supported format string syntax.
1000 @param ... Variable argument list whose contents are accessed based on
1001 the format string specified by Format.
1003 @return The number of ASCII characters printed.
1011 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL
*ForeGround
, OPTIONAL
1012 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL
*BackGround
, OPTIONAL
1013 IN CONST CHAR8
*Format
,
1018 Initializes a driver by installing the Driver Binding Protocol onto the driver's
1019 DriverBindingHandle. This is typically the same as the driver's ImageHandle, but
1020 it can be different if the driver produces multiple DriverBinding Protocols.
1021 If the Driver Binding Protocol interface is NULL, then ASSERT ().
1022 If the installation fails, then ASSERT ().
1024 @param ImageHandle The image handle of the driver.
1025 @param SystemTable The EFI System Table that was passed to the driver's entry point.
1026 @param DriverBinding A Driver Binding Protocol instance that this driver is producing.
1027 @param DriverBindingHandle The handle that DriverBinding is to be installed onto. If this
1028 parameter is NULL, then a new handle is created.
1030 @retval EFI_SUCCESS The protocol installation is completed successfully.
1031 @retval Others Status from gBS->InstallMultipleProtocolInterfaces().
1036 EfiLibInstallDriverBinding (
1037 IN CONST EFI_HANDLE ImageHandle
,
1038 IN CONST EFI_SYSTEM_TABLE
*SystemTable
,
1039 IN EFI_DRIVER_BINDING_PROTOCOL
*DriverBinding
,
1040 IN EFI_HANDLE DriverBindingHandle
1045 Initializes a driver by installing the Driver Binding Protocol together with the optional Component Name,
1046 Driver Configure and Driver Diagnostic Protocols onto the driver's DriverBindingHandle. This is
1047 typically the same as the driver's ImageHandle, but it can be different if the driver produces multiple
1048 DriverBinding Protocols.
1049 If the Driver Binding Protocol interface is NULL, then ASSERT ().
1050 If the installation fails, then ASSERT ().
1052 @param ImageHandle The image handle of the driver.
1053 @param SystemTable The EFI System Table that was passed to the driver's entry point.
1054 @param DriverBinding A Driver Binding Protocol instance that this driver is producing.
1055 @param DriverBindingHandle The handle that DriverBinding is to be installed onto. If this
1056 parameter is NULL, then a new handle is created.
1057 @param ComponentName A Component Name Protocol instance that this driver is producing.
1058 @param DriverConfiguration A Driver Configuration Protocol instance that this driver is producing.
1059 @param DriverDiagnostics A Driver Diagnostics Protocol instance that this driver is producing.
1061 @retval EFI_SUCCESS The protocol installation is completed successfully.
1062 @retval Others Status from gBS->InstallMultipleProtocolInterfaces().
1067 EfiLibInstallAllDriverProtocols (
1068 IN CONST EFI_HANDLE ImageHandle
,
1069 IN CONST EFI_SYSTEM_TABLE
*SystemTable
,
1070 IN EFI_DRIVER_BINDING_PROTOCOL
*DriverBinding
,
1071 IN EFI_HANDLE DriverBindingHandle
,
1072 IN CONST EFI_COMPONENT_NAME_PROTOCOL
*ComponentName
, OPTIONAL
1073 IN CONST EFI_DRIVER_CONFIGURATION_PROTOCOL
*DriverConfiguration
, OPTIONAL
1074 IN CONST EFI_DRIVER_DIAGNOSTICS_PROTOCOL
*DriverDiagnostics OPTIONAL
1080 Initializes a driver by installing the Driver Binding Protocol together with the optional Component Name,
1081 Component Name 2 onto the driver's DriverBindingHandle. This is typically the same as the driver's
1082 ImageHandle, but it can be different if the driver produces multiple DriverBinding Protocols.
1083 If the Driver Binding Protocol interface is NULL, then ASSERT ().
1084 If the installation fails, then ASSERT ().
1086 @param ImageHandle The image handle of the driver.
1087 @param SystemTable The EFI System Table that was passed to the driver's entry point.
1088 @param DriverBinding A Driver Binding Protocol instance that this driver is producing.
1089 @param DriverBindingHandle The handle that DriverBinding is to be installed onto. If this
1090 parameter is NULL, then a new handle is created.
1091 @param ComponentName A Component Name Protocol instance that this driver is producing.
1092 @param ComponentName2 A Component Name 2 Protocol instance that this driver is producing.
1094 @retval EFI_SUCCESS The protocol installation is completed successfully.
1095 @retval Others Status from gBS->InstallMultipleProtocolInterfaces().
1100 EfiLibInstallDriverBindingComponentName2 (
1101 IN CONST EFI_HANDLE ImageHandle
,
1102 IN CONST EFI_SYSTEM_TABLE
*SystemTable
,
1103 IN EFI_DRIVER_BINDING_PROTOCOL
*DriverBinding
,
1104 IN EFI_HANDLE DriverBindingHandle
,
1105 IN CONST EFI_COMPONENT_NAME_PROTOCOL
*ComponentName
, OPTIONAL
1106 IN CONST EFI_COMPONENT_NAME2_PROTOCOL
*ComponentName2 OPTIONAL
1111 Intialize a driver by installing the Driver Binding Protocol together with the optional Component Name,
1112 Component Name 2, Driver Configure, Driver Diagnostic and Driver Diagnostic 2 Protocols onto the driver's
1113 DriverBindingHandle. This is typically the same as the driver's ImageHandle, but it can be different if
1114 the driver produces multiple DriverBinding Protocols.
1115 If the Drvier Binding Protocol interface is NULL, then ASSERT ().
1116 If the installation fails, then ASSERT ().
1118 @param ImageHandle The image handle of the driver.
1119 @param SystemTable The EFI System Table that was passed to the driver's entry point.
1120 @param DriverBinding A Driver Binding Protocol instance that this driver is producing.
1121 @param DriverBindingHandle The handle that DriverBinding is to be installe onto. If this
1122 parameter is NULL, then a new handle is created.
1123 @param ComponentName A Component Name Protocol instance that this driver is producing.
1124 @param ComponentName2 A Component Name 2 Protocol instance that this driver is producing.
1125 @param DriverConfiguration A Driver Configuration Protocol instance that this driver is producing.
1126 @param DriverConfiguration2 A Driver Configuration Protocol 2 instance that this driver is producing.
1127 @param DriverDiagnostics A Driver Diagnostics Protocol instance that this driver is producing.
1128 @param DriverDiagnostics2 A Driver Diagnostics Protocol 2 instance that this driver is producing.
1130 @retval EFI_SUCCESS The protocol installation is completed successfully.
1131 @retval Others Status from gBS->InstallMultipleProtocolInterfaces().
1136 EfiLibInstallAllDriverProtocols2 (
1137 IN CONST EFI_HANDLE ImageHandle
,
1138 IN CONST EFI_SYSTEM_TABLE
*SystemTable
,
1139 IN EFI_DRIVER_BINDING_PROTOCOL
*DriverBinding
,
1140 IN EFI_HANDLE DriverBindingHandle
,
1141 IN CONST EFI_COMPONENT_NAME_PROTOCOL
*ComponentName
, OPTIONAL
1142 IN CONST EFI_COMPONENT_NAME2_PROTOCOL
*ComponentName2
, OPTIONAL
1143 IN CONST EFI_DRIVER_CONFIGURATION_PROTOCOL
*DriverConfiguration
, OPTIONAL
1144 IN CONST EFI_DRIVER_CONFIGURATION_PROTOCOL
*DriverConfiguration2
, OPTIONAL
1145 IN CONST EFI_DRIVER_DIAGNOSTICS_PROTOCOL
*DriverDiagnostics
, OPTIONAL
1146 IN CONST EFI_DRIVER_DIAGNOSTICS2_PROTOCOL
*DriverDiagnostics2 OPTIONAL
1150 Determine what is the current language setting. The space reserved for Lang
1151 must be at least RFC_3066_ENTRY_SIZE bytes;
1153 If Lang is NULL, then ASSERT.
1155 @param Lang Pointer of system language. Lang will always be filled with
1156 a valid RFC 3066 language string. If "PlatformLang" is not
1157 set in the system, the default language specifed by PcdUefiVariableDefaultPlatformLang
1160 @return EFI_SUCCESS If the EFI Variable with "PlatformLang" is set and return in Lang.
1161 @return EFI_NOT_FOUND If the EFI Variable with "PlatformLang" is not set, but a valid default language is return in Lang.
1166 GetCurrentLanguage (