]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Library/UefiLib.h
MdePkg: fix comment typo in DebugLib.h
[mirror_edk2.git] / MdePkg / Include / Library / UefiLib.h
CommitLineData
fb3df220 1/** @file\r
50a64e5b 2 Provides library functions for common UEFI operations. Only available to DXE\r
3 and UEFI module types.\r
4\r
e500088c 5 The UEFI Library provides functions and macros that simplify the development of \r
6 UEFI Drivers and UEFI Applications. These functions and macros help manage EFI \r
7 events, build simple locks utilizing EFI Task Priority Levels (TPLs), install \r
8 EFI Driver Model related protocols, manage Unicode string tables for UEFI Drivers, \r
9 and print messages on the console output and standard error devices.\r
fb3df220 10\r
5ee9264a 11 Note that a reserved macro named MDEPKG_NDEBUG is introduced for the intention\r
12 of size reduction when compiler optimization is disabled. If MDEPKG_NDEBUG is\r
13 defined, then debug and assert related macros wrapped by it are the NULL implementations.\r
14\r
bf4a3dbd 15Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>\r
af2dc6a7 16This program and the accompanying materials are licensed and made available under \r
17the terms and conditions of the BSD License that accompanies this distribution. \r
18The full text of the license may be found at\r
19http://opensource.org/licenses/bsd-license.php.\r
fb3df220 20\r
50a64e5b 21THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
22WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
fb3df220 23\r
24**/\r
25\r
26#ifndef __UEFI_LIB_H__\r
27#define __UEFI_LIB_H__\r
28\r
c7d265a9 29#include <Protocol/DriverBinding.h>\r
30#include <Protocol/DriverConfiguration.h>\r
31#include <Protocol/ComponentName.h>\r
32#include <Protocol/ComponentName2.h>\r
33#include <Protocol/DriverDiagnostics.h>\r
34#include <Protocol/DriverDiagnostics2.h>\r
b3154720 35#include <Protocol/GraphicsOutput.h>\r
c7d265a9 36\r
52ca0d98 37#include <Library/BaseLib.h>\r
38\r
fc30687f 39///\r
40/// Unicode String Table\r
41///\r
fb3df220 42typedef struct {\r
43 CHAR8 *Language;\r
44 CHAR16 *UnicodeString;\r
45} EFI_UNICODE_STRING_TABLE;\r
46\r
fc30687f 47///\r
48/// EFI Lock Status\r
49///\r
fb3df220 50typedef enum {\r
51 EfiLockUninitialized = 0,\r
52 EfiLockReleased = 1,\r
53 EfiLockAcquired = 2\r
54} EFI_LOCK_STATE;\r
55\r
fc30687f 56///\r
57/// EFI Lock \r
58///\r
fb3df220 59typedef struct {\r
60 EFI_TPL Tpl;\r
61 EFI_TPL OwnerTpl;\r
62 EFI_LOCK_STATE Lock;\r
63} EFI_LOCK;\r
64\r
52ca0d98 65/**\r
66 Macro that returns the number of 100 ns units for a specified number of microseconds.\r
af2dc6a7 67 This is useful for managing EFI timer events.\r
52ca0d98 68\r
af2dc6a7 69 @param Microseconds The number of microseconds.\r
52ca0d98 70\r
71 @return The number of 100 ns units equivalent to the number of microseconds specified\r
72 by Microseconds.\r
73\r
74**/\r
75#define EFI_TIMER_PERIOD_MICROSECONDS(Microseconds) MultU64x32((UINT64)(Microseconds), 10)\r
76\r
52ca0d98 77/**\r
28d3e14f 78 Macro that returns the number of 100 ns units for a specified number of milliseconds.\r
af2dc6a7 79 This is useful for managing EFI timer events.\r
52ca0d98 80\r
af2dc6a7 81 @param Milliseconds The number of milliseconds.\r
52ca0d98 82\r
83 @return The number of 100 ns units equivalent to the number of milliseconds specified\r
84 by Milliseconds.\r
85\r
86**/\r
87#define EFI_TIMER_PERIOD_MILLISECONDS(Milliseconds) MultU64x32((UINT64)(Milliseconds), 10000)\r
88\r
52ca0d98 89/**\r
28d3e14f 90 Macro that returns the number of 100 ns units for a specified number of seconds.\r
af2dc6a7 91 This is useful for managing EFI timer events.\r
52ca0d98 92\r
af2dc6a7 93 @param Seconds The number of seconds.\r
52ca0d98 94\r
95 @return The number of 100 ns units equivalent to the number of seconds specified\r
96 by Seconds.\r
97\r
98**/\r
99#define EFI_TIMER_PERIOD_SECONDS(Seconds) MultU64x32((UINT64)(Seconds), 10000000)\r
100\r
9bfdfa52 101/**\r
102 Macro that returns the a pointer to the next EFI_MEMORY_DESCRIPTOR in an array \r
103 returned from GetMemoryMap(). \r
104\r
daa6553a 105 @param MemoryDescriptor A pointer to an EFI_MEMORY_DESCRIPTOR.\r
9bfdfa52 106\r
107 @param Size The size, in bytes, of the current EFI_MEMORY_DESCRIPTOR.\r
108\r
109 @return A pointer to the next EFI_MEMORY_DESCRIPTOR.\r
110\r
111**/\r
112#define NEXT_MEMORY_DESCRIPTOR(MemoryDescriptor, Size) \\r
113 ((EFI_MEMORY_DESCRIPTOR *)((UINT8 *)(MemoryDescriptor) + (Size)))\r
52ca0d98 114\r
fb3df220 115/**\r
1d37ab9f 116 Retrieves a pointer to the system configuration table from the EFI System Table\r
117 based on a specified GUID.\r
118 \r
119 This function searches the list of configuration tables stored in the EFI System Table\r
1a2f870c 120 for a table with a GUID that matches TableGuid. If a match is found, then a pointer to\r
121 the configuration table is returned in Table, and EFI_SUCCESS is returned. If a matching GUID\r
1d37ab9f 122 is not found, then EFI_NOT_FOUND is returned.\r
123 If TableGuid is NULL, then ASSERT().\r
124 If Table is NULL, then ASSERT().\r
fb3df220 125\r
af2dc6a7 126 @param TableGuid The pointer to table's GUID type..\r
127 @param Table The pointer to the table associated with TableGuid in the EFI System Table.\r
fb3df220 128\r
129 @retval EFI_SUCCESS A configuration table matching TableGuid was found.\r
130 @retval EFI_NOT_FOUND A configuration table matching TableGuid could not be found.\r
131\r
132**/\r
133EFI_STATUS\r
134EFIAPI\r
135EfiGetSystemConfigurationTable ( \r
136 IN EFI_GUID *TableGuid,\r
137 OUT VOID **Table\r
138 );\r
139\r
140/**\r
1d37ab9f 141 Creates and returns a notification event and registers that event with all the protocol\r
142 instances specified by ProtocolGuid.\r
143\r
144 This function causes the notification function to be executed for every protocol of type\r
f0a8eeb2 145 ProtocolGuid instance that exists in the system when this function is invoked. If there are\r
146 no instances of ProtocolGuid in the handle database at the time this function is invoked,\r
147 then the notification function is still executed one time. In addition, every time a protocol\r
148 of type ProtocolGuid instance is installed or reinstalled, the notification function is also\r
149 executed. This function returns the notification event that was created. \r
1d37ab9f 150 If ProtocolGuid is NULL, then ASSERT().\r
151 If NotifyTpl is not a legal TPL value, then ASSERT().\r
152 If NotifyFunction is NULL, then ASSERT().\r
153 If Registration is NULL, then ASSERT().\r
fb3df220 154\r
f0a8eeb2 155\r
fb3df220 156 @param ProtocolGuid Supplies GUID of the protocol upon whose installation the event is fired.\r
157 @param NotifyTpl Supplies the task priority level of the event notifications.\r
158 @param NotifyFunction Supplies the function to notify when the event is signaled.\r
159 @param NotifyContext The context parameter to pass to NotifyFunction.\r
160 @param Registration A pointer to a memory location to receive the registration value.\r
1d37ab9f 161 This value is passed to LocateHandle() to obtain new handles that\r
162 have been added that support the ProtocolGuid-specified protocol. \r
fb3df220 163\r
1d37ab9f 164 @return The notification event that was created.\r
fb3df220 165\r
166**/\r
167EFI_EVENT\r
168EFIAPI\r
169EfiCreateProtocolNotifyEvent(\r
170 IN EFI_GUID *ProtocolGuid,\r
171 IN EFI_TPL NotifyTpl,\r
172 IN EFI_EVENT_NOTIFY NotifyFunction,\r
173 IN VOID *NotifyContext, OPTIONAL\r
174 OUT VOID **Registration\r
175 );\r
176\r
177/**\r
1d37ab9f 178 Creates a named event that can be signaled with EfiNamedEventSignal().\r
179\r
fb3df220 180 This function creates an event using NotifyTpl, NoifyFunction, and NotifyContext.\r
1d37ab9f 181 This event is signaled with EfiNamedEventSignal(). This provides the ability for one or more\r
182 listeners on the same event named by the GUID specified by Name. \r
183 If Name is NULL, then ASSERT().\r
184 If NotifyTpl is not a legal TPL value, then ASSERT().\r
185 If NotifyFunction is NULL, then ASSERT().\r
fb3df220 186\r
187 @param Name Supplies GUID name of the event.\r
188 @param NotifyTpl Supplies the task priority level of the event notifications.\r
189 @param NotifyFunction Supplies the function to notify when the event is signaled.\r
190 @param NotifyContext The context parameter to pass to NotifyFunction. \r
191 @param Registration A pointer to a memory location to receive the registration value.\r
192\r
193 @retval EFI_SUCCESS A named event was created.\r
af2dc6a7 194 @retval EFI_OUT_OF_RESOURCES There are not enough resources to create the named event.\r
fb3df220 195\r
196**/\r
197EFI_STATUS\r
198EFIAPI\r
199EfiNamedEventListen (\r
200 IN CONST EFI_GUID *Name,\r
201 IN EFI_TPL NotifyTpl,\r
202 IN EFI_EVENT_NOTIFY NotifyFunction,\r
203 IN CONST VOID *NotifyContext, OPTIONAL\r
204 OUT VOID *Registration OPTIONAL\r
205 );\r
206\r
207/**\r
1d37ab9f 208 Signals a named event created with EfiNamedEventListen().\r
209\r
210 This function signals the named event specified by Name. The named event must have been\r
211 created with EfiNamedEventListen().\r
212 If Name is NULL, then ASSERT().\r
fb3df220 213\r
af2dc6a7 214 @param Name Supplies the GUID name of the event.\r
fb3df220 215\r
216 @retval EFI_SUCCESS A named event was signaled.\r
af2dc6a7 217 @retval EFI_OUT_OF_RESOURCES There are not enough resources to signal the named event.\r
fb3df220 218\r
219**/\r
220EFI_STATUS\r
221EFIAPI\r
222EfiNamedEventSignal (\r
223 IN CONST EFI_GUID *Name\r
224 );\r
225\r
226/** \r
227 Returns the current TPL.\r
228\r
229 This function returns the current TPL. There is no EFI service to directly \r
230 retrieve the current TPL. Instead, the RaiseTPL() function is used to raise \r
231 the TPL to TPL_HIGH_LEVEL. This will return the current TPL. The TPL level \r
232 can then immediately be restored back to the current TPL level with a call \r
233 to RestoreTPL().\r
234\r
01aef47b 235 @return The current TPL.\r
fb3df220 236\r
237**/\r
238EFI_TPL\r
239EFIAPI\r
240EfiGetCurrentTpl (\r
241 VOID\r
242 );\r
243\r
244/**\r
1d37ab9f 245 Initializes a basic mutual exclusion lock.\r
246\r
fb3df220 247 This function initializes a basic mutual exclusion lock to the released state \r
248 and returns the lock. Each lock provides mutual exclusion access at its task \r
249 priority level. Since there is no preemption or multiprocessor support in EFI,\r
250 acquiring the lock only consists of raising to the locks TPL.\r
1d37ab9f 251 If Lock is NULL, then ASSERT().\r
252 If Priority is not a valid TPL value, then ASSERT().\r
fb3df220 253\r
254 @param Lock A pointer to the lock data structure to initialize.\r
af2dc6a7 255 @param Priority The EFI TPL associated with the lock.\r
fb3df220 256\r
257 @return The lock.\r
258\r
259**/\r
260EFI_LOCK *\r
261EFIAPI\r
262EfiInitializeLock (\r
263 IN OUT EFI_LOCK *Lock,\r
264 IN EFI_TPL Priority\r
265 );\r
266\r
267/**\r
cf8ae2f6 268 Initializes a basic mutual exclusion lock.\r
269\r
fb3df220 270 This macro initializes the contents of a basic mutual exclusion lock to the \r
271 released state. Each lock provides mutual exclusion access at its task \r
272 priority level. Since there is no preemption or multiprocessor support in EFI,\r
273 acquiring the lock only consists of raising to the locks TPL.\r
274\r
fb3df220 275 @param Priority The task priority level of the lock.\r
276\r
277 @return The lock.\r
278\r
279**/\r
280#define EFI_INITIALIZE_LOCK_VARIABLE(Priority) \\r
50615d1f 281 {Priority, TPL_APPLICATION, EfiLockReleased }\r
fb3df220 282\r
283\r
284/**\r
fb3df220 285 Macro that calls DebugAssert() if an EFI_LOCK structure is not in the locked state.\r
286\r
5ee9264a 287 If MDEPKG_NDEBUG is not defined and the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED \r
288 bit of PcdDebugProperyMask is set, then this macro evaluates the EFI_LOCK \r
289 structure specified by Lock. If Lock is not in the locked state, then\r
290 DebugAssert() is called passing in the source filename, source line number, \r
291 and Lock.\r
292\r
fb3df220 293 If Lock is NULL, then ASSERT().\r
294\r
295 @param LockParameter A pointer to the lock to acquire.\r
296\r
297**/\r
5ee9264a 298#if !defined(MDEPKG_NDEBUG) \r
299 #define ASSERT_LOCKED(LockParameter) \\r
300 do { \\r
301 if (DebugAssertEnabled ()) { \\r
302 ASSERT (LockParameter != NULL); \\r
303 if ((LockParameter)->Lock != EfiLockAcquired) { \\r
304 _ASSERT (LockParameter not locked); \\r
305 } \\r
306 } \\r
307 } while (FALSE)\r
308#else\r
309 #define ASSERT_LOCKED(LockParameter)\r
310#endif\r
fb3df220 311\r
312\r
313/**\r
1d37ab9f 314 Acquires ownership of a lock.\r
315\r
fb3df220 316 This function raises the system's current task priority level to the task \r
317 priority level of the mutual exclusion lock. Then, it places the lock in the \r
318 acquired state.\r
1d37ab9f 319 If Lock is NULL, then ASSERT().\r
320 If Lock is not initialized, then ASSERT().\r
321 If Lock is already in the acquired state, then ASSERT().\r
fb3df220 322\r
01aef47b 323 @param Lock A pointer to the lock to acquire.\r
fb3df220 324\r
325**/\r
326VOID\r
327EFIAPI\r
328EfiAcquireLock (\r
329 IN EFI_LOCK *Lock\r
330 );\r
331\r
332/**\r
cf8ae2f6 333 Acquires ownership of a lock.\r
1d37ab9f 334\r
cf8ae2f6 335 This function raises the system's current task priority level to the task priority\r
336 level of the mutual exclusion lock. Then, it attempts to place the lock in the acquired state.\r
337 If the lock is already in the acquired state, then EFI_ACCESS_DENIED is returned.\r
338 Otherwise, EFI_SUCCESS is returned.\r
1d37ab9f 339 If Lock is NULL, then ASSERT().\r
340 If Lock is not initialized, then ASSERT().\r
fb3df220 341\r
342 @param Lock A pointer to the lock to acquire.\r
343\r
344 @retval EFI_SUCCESS The lock was acquired.\r
345 @retval EFI_ACCESS_DENIED The lock could not be acquired because it is already owned.\r
346\r
347**/\r
348EFI_STATUS\r
349EFIAPI\r
350EfiAcquireLockOrFail (\r
351 IN EFI_LOCK *Lock\r
352 );\r
353\r
354/**\r
1d37ab9f 355 Releases ownership of a lock.\r
356\r
fb3df220 357 This function transitions a mutual exclusion lock from the acquired state to \r
358 the released state, and restores the system's task priority level to its \r
359 previous level.\r
1d37ab9f 360 If Lock is NULL, then ASSERT().\r
361 If Lock is not initialized, then ASSERT().\r
362 If Lock is already in the released state, then ASSERT().\r
fb3df220 363\r
364 @param Lock A pointer to the lock to release.\r
365\r
366**/\r
367VOID\r
368EFIAPI\r
369EfiReleaseLock (\r
370 IN EFI_LOCK *Lock\r
371 );\r
372\r
0c9d7395 373/**\r
374 Tests whether a controller handle is being managed by a specific driver.\r
375\r
fb3df220 376 This function tests whether the driver specified by DriverBindingHandle is\r
377 currently managing the controller specified by ControllerHandle. This test\r
378 is performed by evaluating if the the protocol specified by ProtocolGuid is\r
379 present on ControllerHandle and is was opened by DriverBindingHandle with an\r
380 attribute of EFI_OPEN_PROTOCOL_BY_DRIVER. \r
381 If ProtocolGuid is NULL, then ASSERT().\r
0c9d7395 382\r
383 @param ControllerHandle A handle for a controller to test.\r
384 @param DriverBindingHandle Specifies the driver binding handle for the\r
385 driver.\r
386 @param ProtocolGuid Specifies the protocol that the driver specified\r
387 by DriverBindingHandle opens in its Start()\r
388 function.\r
389\r
390 @retval EFI_SUCCESS ControllerHandle is managed by the driver\r
28d3e14f 391 specified by DriverBindingHandle.\r
0c9d7395 392 @retval EFI_UNSUPPORTED ControllerHandle is not managed by the driver\r
28d3e14f 393 specified by DriverBindingHandle.\r
0c9d7395 394\r
fb3df220 395**/\r
396EFI_STATUS\r
397EFIAPI\r
398EfiTestManagedDevice (\r
399 IN CONST EFI_HANDLE ControllerHandle,\r
400 IN CONST EFI_HANDLE DriverBindingHandle,\r
401 IN CONST EFI_GUID *ProtocolGuid\r
402 );\r
403\r
0c9d7395 404/**\r
405 Tests whether a child handle is a child device of the controller.\r
406\r
fb3df220 407 This function tests whether ChildHandle is one of the children of\r
408 ControllerHandle. This test is performed by checking to see if the protocol\r
409 specified by ProtocolGuid is present on ControllerHandle and opened by\r
410 ChildHandle with an attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER.\r
411 If ProtocolGuid is NULL, then ASSERT().\r
0c9d7395 412\r
413 @param ControllerHandle A handle for a (parent) controller to test. \r
414 @param ChildHandle A child handle to test.\r
01aef47b 415 @param ProtocolGuid Supplies the protocol that the child controller\r
0c9d7395 416 opens on its parent controller. \r
417\r
418 @retval EFI_SUCCESS ChildHandle is a child of the ControllerHandle.\r
419 @retval EFI_UNSUPPORTED ChildHandle is not a child of the\r
420 ControllerHandle.\r
421\r
fb3df220 422**/\r
423EFI_STATUS\r
424EFIAPI\r
425EfiTestChildHandle (\r
426 IN CONST EFI_HANDLE ControllerHandle,\r
427 IN CONST EFI_HANDLE ChildHandle,\r
428 IN CONST EFI_GUID *ProtocolGuid\r
429 );\r
430\r
431/**\r
1d37ab9f 432 This function looks up a Unicode string in UnicodeStringTable.\r
433\r
cf8ae2f6 434 If Language is a member of SupportedLanguages and a Unicode string is found in\r
1d37ab9f 435 UnicodeStringTable that matches the language code specified by Language, then it\r
436 is returned in UnicodeString.\r
fb3df220 437\r
438 @param Language A pointer to the ISO 639-2 language code for the \r
439 Unicode string to look up and return.\r
440 @param SupportedLanguages A pointer to the set of ISO 639-2 language codes \r
441 that the Unicode string table supports. Language \r
442 must be a member of this set.\r
443 @param UnicodeStringTable A pointer to the table of Unicode strings.\r
444 @param UnicodeString A pointer to the Unicode string from UnicodeStringTable\r
445 that matches the language specified by Language.\r
446\r
447 @retval EFI_SUCCESS The Unicode string that matches the language \r
448 specified by Language was found\r
28d3e14f 449 in the table of Unicode strings UnicodeStringTable, \r
fb3df220 450 and it was returned in UnicodeString.\r
451 @retval EFI_INVALID_PARAMETER Language is NULL.\r
452 @retval EFI_INVALID_PARAMETER UnicodeString is NULL.\r
453 @retval EFI_UNSUPPORTED SupportedLanguages is NULL.\r
454 @retval EFI_UNSUPPORTED UnicodeStringTable is NULL.\r
455 @retval EFI_UNSUPPORTED The language specified by Language is not a \r
456 member of SupportedLanguages.\r
457 @retval EFI_UNSUPPORTED The language specified by Language is not \r
458 supported by UnicodeStringTable.\r
459\r
460**/\r
461EFI_STATUS\r
462EFIAPI\r
463LookupUnicodeString (\r
464 IN CONST CHAR8 *Language,\r
465 IN CONST CHAR8 *SupportedLanguages,\r
466 IN CONST EFI_UNICODE_STRING_TABLE *UnicodeStringTable,\r
467 OUT CHAR16 **UnicodeString\r
468 );\r
469\r
a73480f6 470/**\r
471 This function looks up a Unicode string in UnicodeStringTable.\r
1d37ab9f 472\r
cf8ae2f6 473 If Language is a member of SupportedLanguages and a Unicode string is found in\r
474 UnicodeStringTable that matches the language code specified by Language, then\r
475 it is returned in UnicodeString.\r
476\r
477 @param Language A pointer to an ASCII string containing the ISO 639-2 or the\r
478 RFC 4646 language code for the Unicode string to look up and\r
479 return. If Iso639Language is TRUE, then this ASCII string is\r
480 not assumed to be Null-terminated, and only the first three\r
28d3e14f 481 characters are used. If Iso639Language is FALSE, then this ASCII\r
cf8ae2f6 482 string must be Null-terminated. \r
483 @param SupportedLanguages A pointer to a Null-terminated ASCII string that contains a\r
484 set of ISO 639-2 or RFC 4646 language codes that the Unicode\r
485 string table supports. Language must be a member of this set.\r
486 If Iso639Language is TRUE, then this string contains one or more\r
487 ISO 639-2 language codes with no separator characters. If Iso639Language\r
488 is FALSE, then is string contains one or more RFC 4646 language\r
489 codes separated by ';'.\r
490 @param UnicodeStringTable A pointer to the table of Unicode strings. Type EFI_UNICODE_STRING_TABLE\r
491 is defined in "Related Definitions".\r
492 @param UnicodeString A pointer to the Null-terminated Unicode string from UnicodeStringTable\r
493 that matches the language specified by Language.\r
494 @param Iso639Language Specifies the supported language code format. If it is TRUE, then\r
495 Language and SupportedLanguages follow ISO 639-2 language code format.\r
af2dc6a7 496 Otherwise, they follow the RFC 4646 language code format.\r
cf8ae2f6 497\r
498\r
499 @retval EFI_SUCCESS The Unicode string that matches the language specified by Language\r
500 was found in the table of Unicode strings UnicodeStringTable, and\r
501 it was returned in UnicodeString.\r
1d37ab9f 502 @retval EFI_INVALID_PARAMETER Language is NULL. \r
503 @retval EFI_INVALID_PARAMETER UnicodeString is NULL. \r
504 @retval EFI_UNSUPPORTED SupportedLanguages is NULL. \r
505 @retval EFI_UNSUPPORTED UnicodeStringTable is NULL. \r
cf8ae2f6 506 @retval EFI_UNSUPPORTED The language specified by Language is not a member of SupportedLanguages. \r
507 @retval EFI_UNSUPPORTED The language specified by Language is not supported by UnicodeStringTable.\r
a73480f6 508\r
509**/\r
510EFI_STATUS\r
511EFIAPI\r
512LookupUnicodeString2 (\r
513 IN CONST CHAR8 *Language,\r
514 IN CONST CHAR8 *SupportedLanguages,\r
515 IN CONST EFI_UNICODE_STRING_TABLE *UnicodeStringTable,\r
516 OUT CHAR16 **UnicodeString,\r
517 IN BOOLEAN Iso639Language\r
ed66e1bc 518 );\r
a73480f6 519\r
fb3df220 520/**\r
521 This function adds a Unicode string to UnicodeStringTable.\r
1d37ab9f 522\r
fb3df220 523 If Language is a member of SupportedLanguages then UnicodeString is added to \r
524 UnicodeStringTable. New buffers are allocated for both Language and \r
525 UnicodeString. The contents of Language and UnicodeString are copied into \r
526 these new buffers. These buffers are automatically freed when \r
527 FreeUnicodeStringTable() is called.\r
528\r
529 @param Language A pointer to the ISO 639-2 language code for the Unicode \r
530 string to add.\r
531 @param SupportedLanguages A pointer to the set of ISO 639-2 language codes\r
532 that the Unicode string table supports.\r
533 Language must be a member of this set.\r
534 @param UnicodeStringTable A pointer to the table of Unicode strings.\r
535 @param UnicodeString A pointer to the Unicode string to add.\r
536\r
537 @retval EFI_SUCCESS The Unicode string that matches the language \r
538 specified by Language was found in the table of \r
539 Unicode strings UnicodeStringTable, and it was \r
540 returned in UnicodeString.\r
541 @retval EFI_INVALID_PARAMETER Language is NULL.\r
542 @retval EFI_INVALID_PARAMETER UnicodeString is NULL.\r
543 @retval EFI_INVALID_PARAMETER UnicodeString is an empty string.\r
544 @retval EFI_UNSUPPORTED SupportedLanguages is NULL.\r
545 @retval EFI_ALREADY_STARTED A Unicode string with language Language is \r
546 already present in UnicodeStringTable.\r
547 @retval EFI_OUT_OF_RESOURCES There is not enough memory to add another \r
548 Unicode string to UnicodeStringTable.\r
549 @retval EFI_UNSUPPORTED The language specified by Language is not a \r
550 member of SupportedLanguages.\r
551\r
552**/\r
553EFI_STATUS\r
554EFIAPI\r
555AddUnicodeString (\r
556 IN CONST CHAR8 *Language,\r
557 IN CONST CHAR8 *SupportedLanguages,\r
558 IN EFI_UNICODE_STRING_TABLE **UnicodeStringTable,\r
559 IN CONST CHAR16 *UnicodeString\r
560 );\r
561\r
a73480f6 562/**\r
cf8ae2f6 563 This function adds the Null-terminated Unicode string specified by UnicodeString\r
564 to UnicodeStringTable.\r
565\r
566 If Language is a member of SupportedLanguages then UnicodeString is added to\r
567 UnicodeStringTable. New buffers are allocated for both Language and UnicodeString.\r
568 The contents of Language and UnicodeString are copied into these new buffers.\r
569 These buffers are automatically freed when EfiLibFreeUnicodeStringTable() is called.\r
570\r
571 @param Language A pointer to an ASCII string containing the ISO 639-2 or\r
572 the RFC 4646 language code for the Unicode string to add.\r
573 If Iso639Language is TRUE, then this ASCII string is not\r
574 assumed to be Null-terminated, and only the first three\r
575 chacters are used. If Iso639Language is FALSE, then this\r
576 ASCII string must be Null-terminated.\r
577 @param SupportedLanguages A pointer to a Null-terminated ASCII string that contains\r
578 a set of ISO 639-2 or RFC 4646 language codes that the Unicode\r
579 string table supports. Language must be a member of this set.\r
580 If Iso639Language is TRUE, then this string contains one or more\r
581 ISO 639-2 language codes with no separator characters.\r
582 If Iso639Language is FALSE, then is string contains one or more\r
583 RFC 4646 language codes separated by ';'.\r
584 @param UnicodeStringTable A pointer to the table of Unicode strings. Type EFI_UNICODE_STRING_TABLE\r
585 is defined in "Related Definitions".\r
586 @param UnicodeString A pointer to the Unicode string to add. \r
587 @param Iso639Language Specifies the supported language code format. If it is TRUE,\r
588 then Language and SupportedLanguages follow ISO 639-2 language code format.\r
589 Otherwise, they follow RFC 4646 language code format.\r
590\r
591 @retval EFI_SUCCESS The Unicode string that matches the language specified by\r
592 Language was found in the table of Unicode strings UnicodeStringTable,\r
593 and it was returned in UnicodeString. \r
594 @retval EFI_INVALID_PARAMETER Language is NULL. \r
595 @retval EFI_INVALID_PARAMETER UnicodeString is NULL. \r
596 @retval EFI_INVALID_PARAMETER UnicodeString is an empty string. \r
597 @retval EFI_UNSUPPORTED SupportedLanguages is NULL. \r
598 @retval EFI_ALREADY_STARTED A Unicode string with language Language is already present in\r
599 UnicodeStringTable. \r
600 @retval EFI_OUT_OF_RESOURCES There is not enough memory to add another Unicode string UnicodeStringTable. \r
601 @retval EFI_UNSUPPORTED The language specified by Language is not a member of SupportedLanguages.\r
a73480f6 602\r
603**/\r
604EFI_STATUS\r
605EFIAPI\r
606AddUnicodeString2 (\r
607 IN CONST CHAR8 *Language,\r
608 IN CONST CHAR8 *SupportedLanguages,\r
609 IN EFI_UNICODE_STRING_TABLE **UnicodeStringTable,\r
610 IN CONST CHAR16 *UnicodeString,\r
611 IN BOOLEAN Iso639Language\r
ed66e1bc 612 );\r
a73480f6 613\r
fb3df220 614/**\r
615 This function frees the table of Unicode strings in UnicodeStringTable.\r
1d37ab9f 616\r
fb3df220 617 If UnicodeStringTable is NULL, then EFI_SUCCESS is returned.\r
618 Otherwise, each language code, and each Unicode string in the Unicode string \r
619 table are freed, and EFI_SUCCESS is returned.\r
620\r
621 @param UnicodeStringTable A pointer to the table of Unicode strings.\r
622\r
623 @retval EFI_SUCCESS The Unicode string table was freed.\r
624\r
625**/\r
626EFI_STATUS\r
627EFIAPI\r
628FreeUnicodeStringTable (\r
629 IN EFI_UNICODE_STRING_TABLE *UnicodeStringTable\r
630 );\r
631\r
bf4a3dbd 632#ifndef DISABLE_NEW_DEPRECATED_INTERFACES\r
6d28c497 633\r
634/**\r
bf4a3dbd
ED
635 [ATTENTION] This function will be deprecated for security reason.\r
636\r
6d28c497 637 Returns a pointer to an allocated buffer that contains the contents of a \r
638 variable retrieved through the UEFI Runtime Service GetVariable(). The \r
639 returned buffer is allocated using AllocatePool(). The caller is responsible\r
640 for freeing this buffer with FreePool().\r
641\r
642 If Name is NULL, then ASSERT().\r
643 If Guid is NULL, then ASSERT().\r
644\r
af2dc6a7 645 @param[in] Name The pointer to a Null-terminated Unicode string.\r
646 @param[in] Guid The pointer to an EFI_GUID structure.\r
6d28c497 647\r
648 @retval NULL The variable could not be retrieved.\r
649 @retval NULL There are not enough resources available for the variable contents.\r
650 @retval Other A pointer to allocated buffer containing the variable contents.\r
651\r
652**/\r
653VOID *\r
654EFIAPI\r
655GetVariable (\r
656 IN CONST CHAR16 *Name,\r
657 IN CONST EFI_GUID *Guid\r
658 );\r
659\r
660/**\r
bf4a3dbd
ED
661 [ATTENTION] This function will be deprecated for security reason.\r
662\r
6d28c497 663 Returns a pointer to an allocated buffer that contains the contents of a \r
664 variable retrieved through the UEFI Runtime Service GetVariable(). This \r
665 function always uses the EFI_GLOBAL_VARIABLE GUID to retrieve variables.\r
666 The returned buffer is allocated using AllocatePool(). The caller is \r
667 responsible for freeing this buffer with FreePool().\r
668\r
669 If Name is NULL, then ASSERT().\r
670\r
af2dc6a7 671 @param[in] Name The pointer to a Null-terminated Unicode string.\r
6d28c497 672\r
673 @retval NULL The variable could not be retrieved.\r
674 @retval NULL There are not enough resources available for the variable contents.\r
675 @retval Other A pointer to allocated buffer containing the variable contents.\r
676\r
677**/\r
678VOID *\r
679EFIAPI\r
680GetEfiGlobalVariable (\r
681 IN CONST CHAR16 *Name\r
682 );\r
bf4a3dbd
ED
683#endif\r
684\r
685\r
686/**\r
687 Returns the status whether get the variable success. The function retrieves \r
688 variable through the UEFI Runtime Service GetVariable(). The \r
689 returned buffer is allocated using AllocatePool(). The caller is responsible\r
690 for freeing this buffer with FreePool().\r
691\r
692 If Name is NULL, then ASSERT().\r
693 If Guid is NULL, then ASSERT().\r
694 If Value is NULL, then ASSERT().\r
695\r
696 @param[in] Name The pointer to a Null-terminated Unicode string.\r
697 @param[in] Guid The pointer to an EFI_GUID structure\r
698 @param[out] Value The buffer point saved the variable info.\r
699 @param[out] Size The buffer size of the variable.\r
700\r
701 @return EFI_OUT_OF_RESOURCES Allocate buffer failed.\r
702 @return EFI_SUCCESS Find the specified variable.\r
703 @return Others Errors Return errors from call to gRT->GetVariable.\r
704\r
705**/\r
706EFI_STATUS\r
707EFIAPI\r
708GetVariable2 (\r
709 IN CONST CHAR16 *Name,\r
710 IN CONST EFI_GUID *Guid,\r
711 OUT VOID **Value,\r
712 OUT UINTN *Size OPTIONAL\r
713 );\r
714\r
715/**\r
716 Returns a pointer to an allocated buffer that contains the contents of a \r
717 variable retrieved through the UEFI Runtime Service GetVariable(). This \r
718 function always uses the EFI_GLOBAL_VARIABLE GUID to retrieve variables.\r
719 The returned buffer is allocated using AllocatePool(). The caller is \r
720 responsible for freeing this buffer with FreePool().\r
721\r
722 If Name is NULL, then ASSERT().\r
723 If Value is NULL, then ASSERT().\r
6d28c497 724\r
bf4a3dbd
ED
725 @param[in] Name The pointer to a Null-terminated Unicode string.\r
726 @param[out] Value The buffer point saved the variable info.\r
727 @param[out] Size The buffer size of the variable.\r
728\r
729 @return EFI_OUT_OF_RESOURCES Allocate buffer failed.\r
730 @return EFI_SUCCESS Find the specified variable.\r
731 @return Others Errors Return errors from call to gRT->GetVariable.\r
732\r
733**/\r
734EFI_STATUS\r
735EFIAPI\r
736GetEfiGlobalVariable2 (\r
737 IN CONST CHAR16 *Name,\r
738 OUT VOID **Value,\r
739 OUT UINTN *Size OPTIONAL\r
740 );\r
6d28c497 741\r
742/**\r
743 Returns a pointer to an allocated buffer that contains the best matching language \r
744 from a set of supported languages. \r
745 \r
746 This function supports both ISO 639-2 and RFC 4646 language codes, but language \r
747 code types may not be mixed in a single call to this function. The language \r
748 code returned is allocated using AllocatePool(). The caller is responsible for \r
749 freeing the allocated buffer using FreePool(). This function supports a variable\r
750 argument list that allows the caller to pass in a prioritized list of language \r
751 codes to test against all the language codes in SupportedLanguages. \r
752\r
753 If SupportedLanguages is NULL, then ASSERT().\r
754\r
755 @param[in] SupportedLanguages A pointer to a Null-terminated ASCII string that\r
756 contains a set of language codes in the format \r
757 specified by Iso639Language.\r
758 @param[in] Iso639Language If TRUE, then all language codes are assumed to be\r
759 in ISO 639-2 format. If FALSE, then all language\r
760 codes are assumed to be in RFC 4646 language format\r
761 @param[in] ... A variable argument list that contains pointers to \r
762 Null-terminated ASCII strings that contain one or more\r
763 language codes in the format specified by Iso639Language.\r
764 The first language code from each of these language\r
765 code lists is used to determine if it is an exact or\r
766 close match to any of the language codes in \r
767 SupportedLanguages. Close matches only apply to RFC 4646\r
768 language codes, and the matching algorithm from RFC 4647\r
769 is used to determine if a close match is present. If \r
770 an exact or close match is found, then the matching\r
771 language code from SupportedLanguages is returned. If\r
772 no matches are found, then the next variable argument\r
773 parameter is evaluated. The variable argument list \r
774 is terminated by a NULL.\r
775\r
776 @retval NULL The best matching language could not be found in SupportedLanguages.\r
777 @retval NULL There are not enough resources available to return the best matching \r
778 language.\r
779 @retval Other A pointer to a Null-terminated ASCII string that is the best matching \r
780 language in SupportedLanguages.\r
781\r
782**/\r
783CHAR8 *\r
784EFIAPI\r
785GetBestLanguage (\r
786 IN CONST CHAR8 *SupportedLanguages, \r
787 IN BOOLEAN Iso639Language,\r
788 ...\r
789 );\r
790\r
db2ef756
LG
791/**\r
792 Draws a dialog box to the console output device specified by \r
793 ConOut defined in the EFI_SYSTEM_TABLE and waits for a keystroke\r
794 from the console input device specified by ConIn defined in the \r
795 EFI_SYSTEM_TABLE.\r
796\r
797 If there are no strings in the variable argument list, then ASSERT().\r
798 If all the strings in the variable argument list are empty, then ASSERT().\r
799\r
800 @param[in] Attribute Specifies the foreground and background color of the popup.\r
801 @param[out] Key A pointer to the EFI_KEY value of the key that was \r
802 pressed. This is an optional parameter that may be NULL.\r
803 If it is NULL then no wait for a keypress will be performed.\r
804 @param[in] ... The variable argument list that contains pointers to Null-\r
805 terminated Unicode strings to display in the dialog box. \r
806 The variable argument list is terminated by a NULL.\r
807\r
808**/\r
809VOID\r
810EFIAPI\r
811CreatePopUp (\r
812 IN UINTN Attribute, \r
813 OUT EFI_INPUT_KEY *Key, OPTIONAL\r
814 ...\r
815 );\r
6d28c497 816\r
fb3df220 817/**\r
cf8ae2f6 818 Retrieves the width of a Unicode character.\r
819\r
820 This function computes and returns the width of the Unicode character specified\r
821 by UnicodeChar.\r
fb3df220 822\r
823 @param UnicodeChar A Unicode character.\r
824\r
825 @retval 0 The width if UnicodeChar could not be determined.\r
826 @retval 1 UnicodeChar is a narrow glyph.\r
827 @retval 2 UnicodeChar is a wide glyph.\r
828\r
829**/\r
830UINTN\r
831EFIAPI\r
832GetGlyphWidth (\r
833 IN CHAR16 UnicodeChar\r
834 );\r
835\r
836/**\r
1d37ab9f 837 Computes the display length of a Null-terminated Unicode String.\r
838\r
cf8ae2f6 839 This function computes and returns the display length of the Null-terminated Unicode\r
840 string specified by String. If String is NULL then 0 is returned. If any of the widths\r
841 of the Unicode characters in String can not be determined, then 0 is returned. The display\r
842 width of String can be computed by summing the display widths of each Unicode character\r
843 in String. Unicode characters that are narrow glyphs have a width of 1, and Unicode\r
844 characters that are width glyphs have a width of 2. \r
845 If String is not aligned on a 16-bit boundary, then ASSERT().\r
fb3df220 846\r
847 @param String A pointer to a Null-terminated Unicode string.\r
848\r
849 @return The display length of the Null-terminated Unicode string specified by String.\r
850 \r
851**/\r
852UINTN\r
853EFIAPI\r
854UnicodeStringDisplayLength (\r
855 IN CONST CHAR16 *String\r
856 );\r
857\r
858//\r
859// Functions that abstract early Framework contamination of UEFI.\r
860//\r
861/**\r
1d37ab9f 862 Create, Signal, and Close the Ready to Boot event using EfiSignalEventReadyToBoot().\r
fb3df220 863 \r
1d37ab9f 864 This function abstracts the signaling of the Ready to Boot Event. The Framework moved\r
cf8ae2f6 865 from a proprietary to UEFI 2.0 based mechanism. This library abstracts the caller\r
866 from how this event is created to prevent to code form having to change with the\r
867 version of the specification supported.\r
fb3df220 868\r
869**/\r
870VOID\r
871EFIAPI\r
872EfiSignalEventReadyToBoot (\r
873 VOID\r
874 );\r
875\r
876/**\r
1d37ab9f 877 Create, Signal, and Close the Ready to Boot event using EfiSignalEventLegacyBoot().\r
878\r
879 This function abstracts the signaling of the Legacy Boot Event. The Framework moved from\r
880 a proprietary to UEFI 2.0 based mechanism. This library abstracts the caller from how\r
881 this event is created to prevent to code form having to change with the version of the\r
882 specification supported.\r
fb3df220 883\r
884**/\r
885VOID\r
886EFIAPI\r
887EfiSignalEventLegacyBoot (\r
888 VOID\r
889 );\r
890\r
891/**\r
cf8ae2f6 892 Creates an EFI event in the Legacy Boot Event Group.\r
893\r
894 Prior to UEFI 2.0 this was done via a non blessed UEFI extensions and this library\r
895 abstracts the implementation mechanism of this event from the caller. This function\r
896 abstracts the creation of the Legacy Boot Event. The Framework moved from a proprietary\r
897 to UEFI 2.0 based mechanism. This library abstracts the caller from how this event\r
898 is created to prevent to code form having to change with the version of the\r
899 specification supported.\r
7f1eba7b 900 If LegacyBootEvent is NULL, then ASSERT().\r
fb3df220 901\r
902 @param LegacyBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).\r
903\r
af2dc6a7 904 @retval EFI_SUCCESS The event was created.\r
905 @retval Other The event was not created.\r
fb3df220 906\r
907**/\r
908EFI_STATUS\r
909EFIAPI\r
910EfiCreateEventLegacyBoot (\r
911 OUT EFI_EVENT *LegacyBootEvent\r
912 );\r
913\r
914/**\r
915 Create an EFI event in the Legacy Boot Event Group and allows\r
916 the caller to specify a notification function. \r
917 \r
918 This function abstracts the creation of the Legacy Boot Event.\r
919 The Framework moved from a proprietary to UEFI 2.0 based mechanism.\r
920 This library abstracts the caller from how this event is created to prevent\r
921 to code form having to change with the version of the specification supported.\r
922 If LegacyBootEvent is NULL, then ASSERT().\r
923\r
924 @param NotifyTpl The task priority level of the event.\r
925 @param NotifyFunction The notification function to call when the event is signaled.\r
926 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.\r
927 @param LegacyBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).\r
928\r
af2dc6a7 929 @retval EFI_SUCCESS The event was created.\r
930 @retval Other The event was not created.\r
fb3df220 931\r
932**/\r
933EFI_STATUS\r
934EFIAPI\r
935EfiCreateEventLegacyBootEx (\r
936 IN EFI_TPL NotifyTpl,\r
937 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL\r
938 IN VOID *NotifyContext, OPTIONAL\r
939 OUT EFI_EVENT *LegacyBootEvent\r
940 );\r
941\r
942/**\r
cf8ae2f6 943 Create an EFI event in the Ready To Boot Event Group.\r
944\r
945 Prior to UEFI 2.0 this was done via a non-standard UEFI extension, and this library\r
946 abstracts the implementation mechanism of this event from the caller. \r
7f1eba7b 947 This function abstracts the creation of the Ready to Boot Event. The Framework \r
948 moved from a proprietary to UEFI 2.0-based mechanism. This library abstracts \r
949 the caller from how this event is created to prevent the code form having to \r
950 change with the version of the specification supported.\r
951 If ReadyToBootEvent is NULL, then ASSERT().\r
fb3df220 952\r
01aef47b 953 @param ReadyToBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).\r
fb3df220 954\r
af2dc6a7 955 @retval EFI_SUCCESS The event was created.\r
956 @retval Other The event was not created.\r
fb3df220 957\r
958**/\r
959EFI_STATUS\r
960EFIAPI\r
961EfiCreateEventReadyToBoot (\r
962 OUT EFI_EVENT *ReadyToBootEvent\r
963 );\r
964\r
965/**\r
966 Create an EFI event in the Ready To Boot Event Group and allows\r
967 the caller to specify a notification function. \r
968 \r
969 This function abstracts the creation of the Ready to Boot Event.\r
970 The Framework moved from a proprietary to UEFI 2.0 based mechanism.\r
971 This library abstracts the caller from how this event is created to prevent\r
972 to code form having to change with the version of the specification supported.\r
973 If ReadyToBootEvent is NULL, then ASSERT().\r
974\r
975 @param NotifyTpl The task priority level of the event.\r
976 @param NotifyFunction The notification function to call when the event is signaled.\r
977 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.\r
01aef47b 978 @param ReadyToBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).\r
fb3df220 979\r
af2dc6a7 980 @retval EFI_SUCCESS The event was created.\r
981 @retval Other The event was not created.\r
fb3df220 982\r
983**/\r
984EFI_STATUS\r
985EFIAPI\r
986EfiCreateEventReadyToBootEx (\r
987 IN EFI_TPL NotifyTpl,\r
988 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL\r
989 IN VOID *NotifyContext, OPTIONAL\r
990 OUT EFI_EVENT *ReadyToBootEvent\r
991 );\r
992\r
993/**\r
994 Initialize a Firmware Volume (FV) Media Device Path node.\r
995 \r
7f1eba7b 996 The Framework FwVol Device Path changed to conform to the UEFI 2.0 specification. \r
1d37ab9f 997 This library function abstracts initializing a device path node. \r
7f1eba7b 998 Initialize the MEDIA_FW_VOL_FILEPATH_DEVICE_PATH data structure. This device \r
999 path changed in the DXE CIS version 0.92 in a non back ward compatible way to \r
1000 not conflict with the UEFI 2.0 specification. This function abstracts the \r
1001 differences from the caller.\r
7f1eba7b 1002 If FvDevicePathNode is NULL, then ASSERT().\r
1003 If NameGuid is NULL, then ASSERT().\r
1004 \r
af2dc6a7 1005 @param FvDevicePathNode The pointer to a FV device path node to initialize\r
fb3df220 1006 @param NameGuid FV file name to use in FvDevicePathNode\r
1007\r
1008**/\r
1009VOID\r
1010EFIAPI\r
1011EfiInitializeFwVolDevicepathNode (\r
1012 IN OUT MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvDevicePathNode,\r
1013 IN CONST EFI_GUID *NameGuid\r
1014 );\r
1015\r
1016/**\r
1017 Check to see if the Firmware Volume (FV) Media Device Path is valid \r
1018 \r
7f1eba7b 1019 The Framework FwVol Device Path changed to conform to the UEFI 2.0 specification. \r
1020 This library function abstracts validating a device path node.\r
7f1eba7b 1021 Check the MEDIA_FW_VOL_FILEPATH_DEVICE_PATH data structure to see if it's valid. \r
1022 If it is valid, then return the GUID file name from the device path node. Otherwise, \r
1a2f870c 1023 return NULL. This device path changed in the DXE CIS version 0.92 in a non backward \r
7f1eba7b 1024 compatible way to not conflict with the UEFI 2.0 specification. This function abstracts \r
1025 the differences from the caller.\r
1026 If FvDevicePathNode is NULL, then ASSERT().\r
fb3df220 1027\r
af2dc6a7 1028 @param FvDevicePathNode The pointer to FV device path to check.\r
fb3df220 1029\r
1030 @retval NULL FvDevicePathNode is not valid.\r
1031 @retval Other FvDevicePathNode is valid and pointer to NameGuid was returned.\r
1032\r
1033**/\r
1034EFI_GUID *\r
1035EFIAPI\r
1036EfiGetNameGuidFromFwVolDevicePathNode (\r
1037 IN CONST MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvDevicePathNode\r
1038 );\r
1039\r
1040/** \r
1041 Prints a formatted Unicode string to the console output device specified by \r
1042 ConOut defined in the EFI_SYSTEM_TABLE.\r
1043\r
1044 This function prints a formatted Unicode string to the console output device \r
1045 specified by ConOut in EFI_SYSTEM_TABLE and returns the number of Unicode \r
1046 characters that printed to ConOut. If the length of the formatted Unicode \r
1047 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first \r
1048 PcdUefiLibMaxPrintBufferSize characters are sent to ConOut.\r
1d37ab9f 1049 If Format is NULL, then ASSERT().\r
1050 If Format is not aligned on a 16-bit boundary, then ASSERT().\r
cda8ba5e 1051 If gST->ConOut is NULL, then ASSERT().\r
fb3df220 1052\r
af2dc6a7 1053 @param Format A null-terminated Unicode format string.\r
1054 @param ... The variable argument list whose contents are accessed based \r
285010e7 1055 on the format string specified by Format.\r
9199040c 1056 \r
1057 @return Number of Unicode characters printed to ConOut.\r
fb3df220 1058\r
1059**/\r
1060UINTN\r
1061EFIAPI\r
1062Print (\r
1063 IN CONST CHAR16 *Format,\r
1064 ...\r
1065 );\r
1066\r
1067/** \r
1068 Prints a formatted Unicode string to the console output device specified by \r
1069 StdErr defined in the EFI_SYSTEM_TABLE.\r
1070\r
1071 This function prints a formatted Unicode string to the console output device \r
1072 specified by StdErr in EFI_SYSTEM_TABLE and returns the number of Unicode \r
1073 characters that printed to StdErr. If the length of the formatted Unicode \r
1074 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first \r
1075 PcdUefiLibMaxPrintBufferSize characters are sent to StdErr.\r
1d37ab9f 1076 If Format is NULL, then ASSERT().\r
1077 If Format is not aligned on a 16-bit boundary, then ASSERT().\r
cda8ba5e 1078 If gST->StdErr is NULL, then ASSERT().\r
fb3df220 1079\r
af2dc6a7 1080 @param Format A null-terminated Unicode format string.\r
1081 @param ... The variable argument list whose contents are accessed based \r
285010e7 1082 on the format string specified by Format.\r
9199040c 1083 \r
1084 @return Number of Unicode characters printed to StdErr.\r
fb3df220 1085\r
1086**/\r
1087UINTN\r
1088EFIAPI\r
1089ErrorPrint (\r
1090 IN CONST CHAR16 *Format,\r
1091 ...\r
1092 );\r
1093\r
1094/** \r
1095 Prints a formatted ASCII string to the console output device specified by \r
1096 ConOut defined in the EFI_SYSTEM_TABLE.\r
1097\r
1098 This function prints a formatted ASCII string to the console output device \r
1099 specified by ConOut in EFI_SYSTEM_TABLE and returns the number of ASCII \r
1100 characters that printed to ConOut. If the length of the formatted ASCII \r
1101 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first \r
1102 PcdUefiLibMaxPrintBufferSize characters are sent to ConOut.\r
1d37ab9f 1103 If Format is NULL, then ASSERT().\r
cda8ba5e 1104 If gST->ConOut is NULL, then ASSERT().\r
fb3df220 1105\r
af2dc6a7 1106 @param Format A null-terminated ASCII format string.\r
1107 @param ... The variable argument list whose contents are accessed based \r
285010e7 1108 on the format string specified by Format.\r
9199040c 1109 \r
1110 @return Number of ASCII characters printed to ConOut.\r
fb3df220 1111\r
1112**/\r
1113UINTN\r
1114EFIAPI\r
1115AsciiPrint (\r
1116 IN CONST CHAR8 *Format,\r
1117 ...\r
1118 );\r
1119\r
1120/** \r
1121 Prints a formatted ASCII string to the console output device specified by \r
1122 StdErr defined in the EFI_SYSTEM_TABLE.\r
1123\r
1124 This function prints a formatted ASCII string to the console output device \r
1125 specified by StdErr in EFI_SYSTEM_TABLE and returns the number of ASCII \r
1126 characters that printed to StdErr. If the length of the formatted ASCII \r
1127 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first \r
1128 PcdUefiLibMaxPrintBufferSize characters are sent to StdErr.\r
1d37ab9f 1129 If Format is NULL, then ASSERT().\r
cda8ba5e 1130 If gST->StdErr is NULL, then ASSERT().\r
fb3df220 1131\r
af2dc6a7 1132 @param Format A null-terminated ASCII format string.\r
1133 @param ... The variable argument list whose contents are accessed based \r
285010e7 1134 on the format string specified by Format.\r
9199040c 1135 \r
1136 @return Number of ASCII characters printed to ConErr.\r
fb3df220 1137\r
1138**/\r
1139UINTN\r
1140EFIAPI\r
1141AsciiErrorPrint (\r
1142 IN CONST CHAR8 *Format,\r
1143 ...\r
1144 );\r
1145\r
51969ecb 1146\r
b3154720 1147/**\r
1148 Prints a formatted Unicode string to a graphics console device specified by \r
1149 ConsoleOutputHandle defined in the EFI_SYSTEM_TABLE at the given (X,Y) coordinates.\r
1150\r
1151 This function prints a formatted Unicode string to the graphics console device \r
1152 specified by ConsoleOutputHandle in EFI_SYSTEM_TABLE and returns the number of \r
b9c8d8bd 1153 Unicode characters displayed, not including partial characters that may be clipped \r
1154 by the right edge of the display. If the length of the formatted Unicode string is\r
1155 greater than PcdUefiLibMaxPrintBufferSize, then at most the first \r
1a2f870c 1156 PcdUefiLibMaxPrintBufferSize characters are printed. The EFI_HII_FONT_PROTOCOL\r
1157 is used to convert the string to a bitmap using the glyphs registered with the \r
1158 HII database. No wrapping is performed, so any portions of the string the fall\r
1159 outside the active display region will not be displayed.\r
b3154720 1160\r
1161 If a graphics console device is not associated with the ConsoleOutputHandle \r
1162 defined in the EFI_SYSTEM_TABLE then no string is printed, and 0 is returned.\r
1163 If the EFI_HII_FONT_PROTOCOL is not present in the handle database, then no \r
1164 string is printed, and 0 is returned.\r
1165 If Format is NULL, then ASSERT().\r
1166 If Format is not aligned on a 16-bit boundary, then ASSERT().\r
cda8ba5e 1167 If gST->ConsoleOutputHandle is NULL, then ASSERT().\r
b3154720 1168\r
51969ecb 1169 @param PointX X coordinate to print the string.\r
1170 @param PointY Y coordinate to print the string.\r
28d3e14f 1171 @param ForeGround The foreground color of the string being printed. This is\r
b3154720 1172 an optional parameter that may be NULL. If it is NULL,\r
1173 then the foreground color of the current ConOut device\r
1174 in the EFI_SYSTEM_TABLE is used.\r
1175 @param BackGround The background color of the string being printed. This is\r
1176 an optional parameter that may be NULL. If it is NULL, \r
1177 then the background color of the current ConOut device\r
1178 in the EFI_SYSTEM_TABLE is used.\r
af2dc6a7 1179 @param Format A null-terminated Unicode format string. See Print Library \r
b3154720 1180 for the supported format string syntax.\r
1181 @param ... Variable argument list whose contents are accessed based on \r
1182 the format string specified by Format. \r
1183\r
1184 @return The number of Unicode characters printed.\r
1185\r
1186**/\r
1187UINTN\r
1188EFIAPI\r
1189PrintXY (\r
51969ecb 1190 IN UINTN PointX,\r
1191 IN UINTN PointY,\r
b3154720 1192 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL\r
1193 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL\r
1194 IN CONST CHAR16 *Format,\r
1195 ...\r
1196 );\r
1197\r
1198/**\r
1199 Prints a formatted ASCII string to a graphics console device specified by \r
1200 ConsoleOutputHandle defined in the EFI_SYSTEM_TABLE at the given (X,Y) coordinates.\r
1201\r
1202 This function prints a formatted ASCII string to the graphics console device \r
1203 specified by ConsoleOutputHandle in EFI_SYSTEM_TABLE and returns the number of \r
b9c8d8bd 1204 ASCII characters displayed, not including partial characters that may be clipped \r
1205 by the right edge of the display. If the length of the formatted ASCII string is\r
1206 greater than PcdUefiLibMaxPrintBufferSize, then at most the first \r
1a2f870c 1207 PcdUefiLibMaxPrintBufferSize characters are printed. The EFI_HII_FONT_PROTOCOL\r
1208 is used to convert the string to a bitmap using the glyphs registered with the \r
1209 HII database. No wrapping is performed, so any portions of the string the fall\r
1210 outside the active display region will not be displayed.\r
b3154720 1211\r
1212 If a graphics console device is not associated with the ConsoleOutputHandle \r
1213 defined in the EFI_SYSTEM_TABLE then no string is printed, and 0 is returned.\r
1214 If the EFI_HII_FONT_PROTOCOL is not present in the handle database, then no \r
1215 string is printed, and 0 is returned.\r
1216 If Format is NULL, then ASSERT().\r
cda8ba5e 1217 If gST->ConsoleOutputHandle is NULL, then ASSERT().\r
b3154720 1218\r
51969ecb 1219 @param PointX X coordinate to print the string.\r
1220 @param PointY Y coordinate to print the string.\r
28d3e14f 1221 @param ForeGround The foreground color of the string being printed. This is\r
b3154720 1222 an optional parameter that may be NULL. If it is NULL,\r
1223 then the foreground color of the current ConOut device\r
1224 in the EFI_SYSTEM_TABLE is used.\r
1225 @param BackGround The background color of the string being printed. This is\r
1226 an optional parameter that may be NULL. If it is NULL, \r
1227 then the background color of the current ConOut device\r
1228 in the EFI_SYSTEM_TABLE is used.\r
af2dc6a7 1229 @param Format A null-terminated ASCII format string. See Print Library \r
b3154720 1230 for the supported format string syntax.\r
af2dc6a7 1231 @param ... The variable argument list whose contents are accessed based on \r
b3154720 1232 the format string specified by Format. \r
1233\r
1234 @return The number of ASCII characters printed.\r
1235\r
1236**/\r
1237UINTN\r
1238EFIAPI\r
1239AsciiPrintXY (\r
51969ecb 1240 IN UINTN PointX,\r
1241 IN UINTN PointY,\r
b3154720 1242 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL\r
1243 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL\r
1244 IN CONST CHAR8 *Format,\r
1245 ...\r
1246 );\r
1247\r
c7d265a9 1248/**\r
cf8ae2f6 1249 Installs and completes the initialization of a Driver Binding Protocol instance.\r
1250 \r
1251 Installs the Driver Binding Protocol specified by DriverBinding onto the handle\r
1252 specified by DriverBindingHandle. If DriverBindingHandle is NULL, then DriverBinding\r
1253 is installed onto a newly created handle. DriverBindingHandle is typically the same\r
1254 as the driver's ImageHandle, but it can be different if the driver produces multiple\r
1255 Driver Binding Protocols. \r
1256 If DriverBinding is NULL, then ASSERT(). \r
1257 If DriverBinding can not be installed onto a handle, then ASSERT().\r
1258\r
1259 @param ImageHandle The image handle of the driver.\r
1260 @param SystemTable The EFI System Table that was passed to the driver's entry point.\r
1261 @param DriverBinding A Driver Binding Protocol instance that this driver is producing.\r
1262 @param DriverBindingHandle The handle that DriverBinding is to be installed onto. If this\r
1263 parameter is NULL, then a new handle is created.\r
1264\r
af2dc6a7 1265 @retval EFI_SUCCESS The protocol installation completed successfully.\r
cf8ae2f6 1266 @retval EFI_OUT_OF_RESOURCES There was not enough system resources to install the protocol.\r
1267 @retval Others Status from gBS->InstallMultipleProtocolInterfaces().\r
c7d265a9 1268\r
1269**/\r
1270EFI_STATUS\r
1271EFIAPI\r
1272EfiLibInstallDriverBinding (\r
1273 IN CONST EFI_HANDLE ImageHandle,\r
1274 IN CONST EFI_SYSTEM_TABLE *SystemTable,\r
1275 IN EFI_DRIVER_BINDING_PROTOCOL *DriverBinding,\r
1276 IN EFI_HANDLE DriverBindingHandle\r
1277 );\r
1278\r
c7d265a9 1279\r
f662c194 1280/**\r
cf8ae2f6 1281 Installs and completes the initialization of a Driver Binding Protocol instance and\r
1282 optionally installs the Component Name, Driver Configuration and Driver Diagnostics Protocols.\r
1283\r
1284 Initializes a driver by installing the Driver Binding Protocol together with the\r
1285 optional Component Name, optional Driver Configure and optional Driver Diagnostic\r
1286 Protocols onto the driver's DriverBindingHandle. If DriverBindingHandle is NULL,\r
1a2f870c 1287 then the protocols are installed onto a newly created handle. DriverBindingHandle\r
cf8ae2f6 1288 is typically the same as the driver's ImageHandle, but it can be different if the\r
1289 driver produces multiple Driver Binding Protocols. \r
1290 If DriverBinding is NULL, then ASSERT(). \r
1291 If the installation fails, then ASSERT().\r
1292 \r
1293 @param ImageHandle The image handle of the driver.\r
1294 @param SystemTable The EFI System Table that was passed to the driver's entry point.\r
1295 @param DriverBinding A Driver Binding Protocol instance that this driver is producing.\r
1296 @param DriverBindingHandle The handle that DriverBinding is to be installed onto. If this\r
1297 parameter is NULL, then a new handle is created.\r
1298 @param ComponentName A Component Name Protocol instance that this driver is producing.\r
1299 @param DriverConfiguration A Driver Configuration Protocol instance that this driver is producing.\r
1300 @param DriverDiagnostics A Driver Diagnostics Protocol instance that this driver is producing.\r
1301\r
af2dc6a7 1302 @retval EFI_SUCCESS The protocol installation completed successfully.\r
1303 @retval EFI_OUT_OF_RESOURCES There was not enough memory in the pool to install all the protocols.\r
c7d265a9 1304\r
1305**/\r
1306EFI_STATUS\r
1307EFIAPI\r
1308EfiLibInstallAllDriverProtocols (\r
1309 IN CONST EFI_HANDLE ImageHandle,\r
1310 IN CONST EFI_SYSTEM_TABLE *SystemTable,\r
1311 IN EFI_DRIVER_BINDING_PROTOCOL *DriverBinding,\r
1312 IN EFI_HANDLE DriverBindingHandle,\r
1313 IN CONST EFI_COMPONENT_NAME_PROTOCOL *ComponentName, OPTIONAL\r
1314 IN CONST EFI_DRIVER_CONFIGURATION_PROTOCOL *DriverConfiguration, OPTIONAL\r
1315 IN CONST EFI_DRIVER_DIAGNOSTICS_PROTOCOL *DriverDiagnostics OPTIONAL\r
1316 );\r
1317\r
1318\r
f662c194 1319\r
c7d265a9 1320/**\r
cf8ae2f6 1321 Installs Driver Binding Protocol with optional Component Name and Component Name 2 Protocols.\r
1322\r
1323 Initializes a driver by installing the Driver Binding Protocol together with the\r
1324 optional Component Name and optional Component Name 2 protocols onto the driver's\r
1325 DriverBindingHandle. If DriverBindingHandle is NULL, then the protocols are installed\r
1326 onto a newly created handle. DriverBindingHandle is typically the same as the driver's\r
1327 ImageHandle, but it can be different if the driver produces multiple Driver Binding Protocols. \r
1328 If DriverBinding is NULL, then ASSERT(). \r
1329 If the installation fails, then ASSERT().\r
1330\r
1331 @param ImageHandle The image handle of the driver.\r
1332 @param SystemTable The EFI System Table that was passed to the driver's entry point.\r
1333 @param DriverBinding A Driver Binding Protocol instance that this driver is producing.\r
1334 @param DriverBindingHandle The handle that DriverBinding is to be installed onto. If this\r
1335 parameter is NULL, then a new handle is created.\r
1336 @param ComponentName A Component Name Protocol instance that this driver is producing.\r
1337 @param ComponentName2 A Component Name 2 Protocol instance that this driver is producing.\r
1338\r
af2dc6a7 1339 @retval EFI_SUCCESS The protocol installation completed successfully.\r
cf8ae2f6 1340 @retval EFI_OUT_OF_RESOURCES There was not enough memory in pool to install all the protocols.\r
f662c194 1341\r
1342**/\r
1343EFI_STATUS\r
1344EFIAPI\r
1345EfiLibInstallDriverBindingComponentName2 (\r
1346 IN CONST EFI_HANDLE ImageHandle,\r
1347 IN CONST EFI_SYSTEM_TABLE *SystemTable,\r
1348 IN EFI_DRIVER_BINDING_PROTOCOL *DriverBinding,\r
1349 IN EFI_HANDLE DriverBindingHandle,\r
1350 IN CONST EFI_COMPONENT_NAME_PROTOCOL *ComponentName, OPTIONAL\r
1351 IN CONST EFI_COMPONENT_NAME2_PROTOCOL *ComponentName2 OPTIONAL\r
1352 );\r
1353\r
1354\r
1355/**\r
cf8ae2f6 1356 Installs Driver Binding Protocol with optional Component Name, Component Name 2, Driver\r
1357 Configuration, Driver Configuration 2, Driver Diagnostics, and Driver Diagnostics 2 Protocols.\r
1358\r
1359 Initializes a driver by installing the Driver Binding Protocol together with the optional\r
63ba999c 1360 Component Name, optional Component Name 2, optional Driver Configuration, optional Driver Configuration 2,\r
1361 optional Driver Diagnostic, and optional Driver Diagnostic 2 Protocols onto the driver's DriverBindingHandle.\r
1362 DriverBindingHandle is typically the same as the driver's ImageHandle, but it can be different if the driver\r
1363 produces multiple Driver Binding Protocols. \r
cf8ae2f6 1364 If DriverBinding is NULL, then ASSERT(). \r
63ba999c 1365 If the installation fails, then ASSERT().\r
1366\r
cf8ae2f6 1367\r
1368 @param ImageHandle The image handle of the driver.\r
1369 @param SystemTable The EFI System Table that was passed to the driver's entry point.\r
1370 @param DriverBinding A Driver Binding Protocol instance that this driver is producing.\r
28d3e14f 1371 @param DriverBindingHandle The handle that DriverBinding is to be installed onto. If this\r
cf8ae2f6 1372 parameter is NULL, then a new handle is created.\r
1373 @param ComponentName A Component Name Protocol instance that this driver is producing.\r
1374 @param ComponentName2 A Component Name 2 Protocol instance that this driver is producing.\r
1375 @param DriverConfiguration A Driver Configuration Protocol instance that this driver is producing.\r
1376 @param DriverConfiguration2 A Driver Configuration Protocol 2 instance that this driver is producing.\r
1377 @param DriverDiagnostics A Driver Diagnostics Protocol instance that this driver is producing.\r
1378 @param DriverDiagnostics2 A Driver Diagnostics Protocol 2 instance that this driver is producing.\r
1379\r
af2dc6a7 1380 @retval EFI_SUCCESS The protocol installation completed successfully.\r
cf8ae2f6 1381 @retval EFI_OUT_OF_RESOURCES There was not enough memory in pool to install all the protocols.\r
c7d265a9 1382\r
1383**/\r
1384EFI_STATUS\r
1385EFIAPI\r
1386EfiLibInstallAllDriverProtocols2 (\r
1387 IN CONST EFI_HANDLE ImageHandle,\r
1388 IN CONST EFI_SYSTEM_TABLE *SystemTable,\r
1389 IN EFI_DRIVER_BINDING_PROTOCOL *DriverBinding,\r
1390 IN EFI_HANDLE DriverBindingHandle,\r
def220c4 1391 IN CONST EFI_COMPONENT_NAME_PROTOCOL *ComponentName, OPTIONAL\r
1392 IN CONST EFI_COMPONENT_NAME2_PROTOCOL *ComponentName2, OPTIONAL\r
1393 IN CONST EFI_DRIVER_CONFIGURATION_PROTOCOL *DriverConfiguration, OPTIONAL\r
8408411a 1394 IN CONST EFI_DRIVER_CONFIGURATION2_PROTOCOL *DriverConfiguration2, OPTIONAL\r
def220c4 1395 IN CONST EFI_DRIVER_DIAGNOSTICS_PROTOCOL *DriverDiagnostics, OPTIONAL\r
1396 IN CONST EFI_DRIVER_DIAGNOSTICS2_PROTOCOL *DriverDiagnostics2 OPTIONAL\r
c7d265a9 1397 );\r
1398\r
f405c067 1399/** \r
1400 Appends a formatted Unicode string to a Null-terminated Unicode string\r
1401 \r
1402 This function appends a formatted Unicode string to the Null-terminated \r
1403 Unicode string specified by String. String is optional and may be NULL.\r
1404 Storage for the formatted Unicode string returned is allocated using \r
1405 AllocatePool(). The pointer to the appended string is returned. The caller\r
1406 is responsible for freeing the returned string.\r
1407 \r
1408 If String is not NULL and not aligned on a 16-bit boundary, then ASSERT().\r
1409 If FormatString is NULL, then ASSERT().\r
1410 If FormatString is not aligned on a 16-bit boundary, then ASSERT().\r
1411 \r
1412 @param[in] String A Null-terminated Unicode string.\r
1413 @param[in] FormatString A Null-terminated Unicode format string.\r
1414 @param[in] Marker VA_LIST marker for the variable argument list.\r
1415\r
1416 @retval NULL There was not enough available memory.\r
1417 @return Null-terminated Unicode string is that is the formatted \r
1418 string appended to String.\r
1419**/\r
1420CHAR16*\r
1421EFIAPI\r
1422CatVSPrint (\r
1423 IN CHAR16 *String, OPTIONAL\r
1424 IN CONST CHAR16 *FormatString,\r
1425 IN VA_LIST Marker\r
1426 );\r
1427\r
1428/** \r
1429 Appends a formatted Unicode string to a Null-terminated Unicode string\r
1430 \r
1431 This function appends a formatted Unicode string to the Null-terminated \r
1432 Unicode string specified by String. String is optional and may be NULL.\r
1433 Storage for the formatted Unicode string returned is allocated using \r
1434 AllocatePool(). The pointer to the appended string is returned. The caller\r
1435 is responsible for freeing the returned string.\r
1436 \r
1437 If String is not NULL and not aligned on a 16-bit boundary, then ASSERT().\r
1438 If FormatString is NULL, then ASSERT().\r
1439 If FormatString is not aligned on a 16-bit boundary, then ASSERT().\r
1440 \r
1441 @param[in] String A Null-terminated Unicode string.\r
1442 @param[in] FormatString A Null-terminated Unicode format string.\r
1443 @param[in] ... The variable argument list whose contents are \r
1444 accessed based on the format string specified by \r
1445 FormatString.\r
1446\r
1447 @retval NULL There was not enough available memory.\r
1448 @return Null-terminated Unicode string is that is the formatted \r
1449 string appended to String.\r
1450**/\r
1451CHAR16 *\r
1452EFIAPI\r
1453CatSPrint (\r
1454 IN CHAR16 *String, OPTIONAL\r
1455 IN CONST CHAR16 *FormatString,\r
1456 ...\r
1457 );\r
1458\r
fb3df220 1459#endif\r