]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h
Fix the issue that consplitter should not touch ConIn variable & do ConIn connection
[mirror_edk2.git] / IntelFrameworkModulePkg / Include / Library / GenericBdsLib.h
CommitLineData
ddac74d1 1/** @file\r
49fd8a35 2 Generic BDS library defines general interfaces for a BDS driver, including:\r
3 1) BDS boot policy interface.\r
4 2) BDS boot device connect interface.\r
920d2c23 5 3) BDS Misc interfaces for mainting boot variable, ouput string.\r
ddac74d1 6\r
18cf3950 7Copyright (c) 2004 - 2012, Intel Corporation. All rights reserved.<BR>\r
49fd8a35 8This program and the accompanying materials are licensed and made available under \r
9the terms and conditions of the BSD License that accompanies this distribution. \r
10The full text of the license may be found at\r
11http://opensource.org/licenses/bsd-license.php. \r
12 \r
13THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
ddac74d1 14WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15\r
16**/\r
17\r
18#ifndef _GENERIC_BDS_LIB_H_\r
19#define _GENERIC_BDS_LIB_H_\r
20\r
337661bb 21#include <Protocol/UserManager.h>\r
ddac74d1 22\r
e83c9064 23///\r
49fd8a35 24/// Constants which are variable names used to access variables.\r
e83c9064 25///\r
ddac74d1 26#define VAR_LEGACY_DEV_ORDER L"LegacyDevOrder"\r
27\r
e83c9064 28///\r
49fd8a35 29/// Data structures and defines.\r
e83c9064 30///\r
ddac74d1 31#define FRONT_PAGE_QUESTION_ID 0x0000\r
32#define FRONT_PAGE_DATA_WIDTH 0x01\r
33\r
e83c9064
LG
34///\r
35/// ConnectType\r
36///\r
ddac74d1 37#define CONSOLE_OUT 0x00000001\r
38#define STD_ERROR 0x00000002\r
39#define CONSOLE_IN 0x00000004\r
40#define CONSOLE_ALL (CONSOLE_OUT | CONSOLE_IN | STD_ERROR)\r
41\r
e83c9064
LG
42///\r
43/// Load Option Attributes\r
44///\r
ddac74d1 45#define LOAD_OPTION_ACTIVE 0x00000001\r
46#define LOAD_OPTION_FORCE_RECONNECT 0x00000002\r
47\r
48#define LOAD_OPTION_HIDDEN 0x00000008\r
49#define LOAD_OPTION_CATEGORY 0x00001F00\r
50\r
51#define LOAD_OPTION_CATEGORY_BOOT 0x00000000\r
52#define LOAD_OPTION_CATEGORY_APP 0x00000100\r
53\r
54#define EFI_BOOT_OPTION_SUPPORT_KEY 0x00000001\r
55#define EFI_BOOT_OPTION_SUPPORT_APP 0x00000002\r
56\r
57#define IS_LOAD_OPTION_TYPE(_c, _Mask) (BOOLEAN) (((_c) & (_Mask)) != 0)\r
58\r
e83c9064 59///\r
49fd8a35 60/// Define the maximum characters that will be accepted.\r
e83c9064 61///\r
ddac74d1 62#define MAX_CHAR 480\r
63#define MAX_CHAR_SIZE (MAX_CHAR * 2)\r
64\r
e83c9064 65///\r
49fd8a35 66/// Define maximum characters for boot option variable "BootXXXX".\r
e83c9064 67///\r
ddac74d1 68#define BOOT_OPTION_MAX_CHAR 10\r
69\r
70//\r
e83c9064 71// This data structure is the part of BDS_CONNECT_ENTRY\r
ddac74d1 72//\r
73#define BDS_LOAD_OPTION_SIGNATURE SIGNATURE_32 ('B', 'd', 'C', 'O')\r
74\r
75typedef struct {\r
76\r
77 UINTN Signature;\r
78 LIST_ENTRY Link;\r
79\r
80 EFI_DEVICE_PATH_PROTOCOL *DevicePath;\r
81\r
82 CHAR16 *OptionName;\r
83 UINTN OptionNumber;\r
84 UINT16 BootCurrent;\r
85 UINT32 Attribute;\r
86 CHAR16 *Description;\r
87 VOID *LoadOptions;\r
88 UINT32 LoadOptionsSize;\r
89 CHAR16 *StatusString;\r
90\r
91} BDS_COMMON_OPTION;\r
92\r
93typedef struct {\r
94 EFI_DEVICE_PATH_PROTOCOL *DevicePath;\r
95 UINTN ConnectType;\r
96} BDS_CONSOLE_CONNECT_ENTRY;\r
97\r
ddac74d1 98//\r
99// Bds boot related lib functions\r
100//\r
101/**\r
102 Boot from the UEFI spec defined "BootNext" variable.\r
103\r
104**/\r
105VOID\r
106EFIAPI\r
107BdsLibBootNext (\r
108 VOID\r
109 );\r
110\r
111/**\r
d0bd68b2 112 Process the boot option according to the UEFI specification. The legacy boot option device path includes BBS_DEVICE_PATH.\r
ddac74d1 113\r
49fd8a35 114 @param Option The boot option to be processed.\r
3d8bd97c 115 @param DevicePath The device path describing where to load the\r
ddac74d1 116 boot image or the legcy BBS device path to boot\r
49fd8a35 117 the legacy OS.\r
ddac74d1 118 @param ExitDataSize The size of exit data.\r
119 @param ExitData Data returned when Boot image failed.\r
120\r
3d8bd97c 121 @retval EFI_SUCCESS Boot from the input boot option succeeded.\r
49fd8a35 122 @retval EFI_NOT_FOUND The Device Path is not found in the system.\r
ddac74d1 123\r
124**/\r
125EFI_STATUS\r
126EFIAPI\r
127BdsLibBootViaBootOption (\r
128 IN BDS_COMMON_OPTION * Option,\r
129 IN EFI_DEVICE_PATH_PROTOCOL * DevicePath,\r
130 OUT UINTN *ExitDataSize,\r
131 OUT CHAR16 **ExitData OPTIONAL\r
132 );\r
133\r
134\r
135/**\r
3d8bd97c 136 This function will enumerate all possible boot devices in the system, and\r
137 automatically create boot options for Network, Shell, Removable BlockIo, \r
138 and Non-BlockIo Simplefile devices. \r
139 \r
140 BDS separates EFI boot options into six types:\r
8d3b5aff 141 1. Network - The boot option points to the SimpleNetworkProtocol device. \r
3d8bd97c 142 Bds will try to automatically create this type of boot option during enumeration.\r
8d3b5aff 143 2. Shell - The boot option points to internal flash shell. \r
3d8bd97c 144 Bds will try to automatically create this type of boot option during enumeration.\r
145 3. Removable BlockIo - The boot option points to a removable media\r
146 device, such as a USB flash drive or DVD drive.\r
147 These devices should contain a *removable* blockIo\r
8d3b5aff 148 protocol in their device handle.\r
149 Bds will try to automatically create this type boot option \r
150 when enumerate.\r
3d8bd97c 151 4. Fixed BlockIo - The boot option points to a Fixed blockIo device, \r
152 such as a hard disk.\r
153 These devices should contain a *fixed* blockIo\r
8d3b5aff 154 protocol in their device handle.\r
3d8bd97c 155 BDS will skip fixed blockIo devices, and not\r
8d3b5aff 156 automatically create boot option for them. But BDS \r
3d8bd97c 157 will help to delete those fixed blockIo boot options, \r
158 whose description rules conflict with other auto-created\r
8d3b5aff 159 boot options.\r
160 5. Non-BlockIo Simplefile - The boot option points to a device whose handle \r
161 has SimpleFileSystem Protocol, but has no blockio\r
162 protocol. These devices do not offer blockIo\r
163 protocol, but BDS still can get the \r
164 \EFI\BOOT\boot{machinename}.EFI by SimpleFileSystem\r
165 Protocol.\r
166 6. File - The boot option points to a file. These boot options are usually \r
3d8bd97c 167 created by the user, either manually or with an OS loader. BDS will not delete or modify\r
8d3b5aff 168 these boot options. \r
169 \r
3d8bd97c 170 This function will enumerate all possible boot devices in the system, and\r
8d3b5aff 171 automatically create boot options for Network, Shell, Removable BlockIo, \r
172 and Non-BlockIo Simplefile devices.\r
3d8bd97c 173 It will excute once every boot.\r
8d3b5aff 174 \r
3d8bd97c 175 @param BdsBootOptionList The header of the linked list that indexed all\r
49fd8a35 176 current boot options.\r
ddac74d1 177\r
49fd8a35 178 @retval EFI_SUCCESS Finished all the boot device enumerations and \r
179 created the boot option based on the boot device.\r
ddac74d1 180\r
49fd8a35 181 @retval EFI_OUT_OF_RESOURCES Failed to enumerate the boot device and create \r
182 the boot option list.\r
ddac74d1 183**/\r
184EFI_STATUS\r
185EFIAPI\r
186BdsLibEnumerateAllBootOption (\r
187 IN OUT LIST_ENTRY *BdsBootOptionList\r
188 );\r
189\r
190/**\r
49fd8a35 191 Build the boot option with the handle parsed in.\r
ddac74d1 192\r
49fd8a35 193 @param Handle The handle representing the device path for which \r
194 to create a boot option.\r
195 @param BdsBootOptionList The header of the link list that indexed all\r
196 current boot options.\r
ddac74d1 197 @param String The description of the boot option.\r
198\r
199**/\r
200VOID\r
201EFIAPI\r
202BdsLibBuildOptionFromHandle (\r
203 IN EFI_HANDLE Handle,\r
204 IN LIST_ENTRY *BdsBootOptionList,\r
205 IN CHAR16 *String\r
206 );\r
207\r
208\r
209/**\r
210 Build the on flash shell boot option with the handle parsed in.\r
211\r
212 @param Handle The handle which present the device path to create\r
49fd8a35 213 the on flash shell boot option.\r
214 @param BdsBootOptionList The header of the link list that indexed all\r
215 current boot options.\r
ddac74d1 216\r
217**/\r
218VOID\r
219EFIAPI\r
220BdsLibBuildOptionFromShell (\r
221 IN EFI_HANDLE Handle,\r
222 IN OUT LIST_ENTRY *BdsBootOptionList\r
223 );\r
224\r
225//\r
226// Bds misc lib functions\r
227//\r
ddac74d1 228/**\r
49fd8a35 229 Get boot mode by looking up the configuration table and parsing the HOB list.\r
ddac74d1 230\r
49fd8a35 231 @param BootMode The boot mode from PEI handoff HOB.\r
ddac74d1 232\r
49fd8a35 233 @retval EFI_SUCCESS Successfully got boot mode.\r
ddac74d1 234\r
235**/\r
236EFI_STATUS\r
237EFIAPI\r
238BdsLibGetBootMode (\r
239 OUT EFI_BOOT_MODE *BootMode\r
240 );\r
241\r
242\r
243/**\r
3d8bd97c 244 The function will go through the driver option link list, and then load and start\r
245 every driver to which the driver option device path points.\r
ddac74d1 246\r
49fd8a35 247 @param BdsDriverLists The header of the current driver option link list.\r
ddac74d1 248\r
249**/\r
250VOID\r
251EFIAPI\r
252BdsLibLoadDrivers (\r
253 IN LIST_ENTRY *BdsDriverLists\r
254 );\r
255\r
256\r
257/**\r
d0bd68b2 258 This function processes BootOrder or DriverOrder variables, by calling\r
259\r
ddac74d1 260 BdsLibVariableToOption () for each UINT16 in the variables.\r
261\r
49fd8a35 262 @param BdsCommonOptionList The header of the option list base on the variable\r
263 VariableName.\r
264 @param VariableName An EFI Variable name indicate the BootOrder or\r
265 DriverOrder.\r
24cdd14e 266\r
49fd8a35 267 @retval EFI_SUCCESS Successfully created the boot option or driver option\r
268 list.\r
269 @retval EFI_OUT_OF_RESOURCES Failed to get the boot option or the driver option list.\r
24cdd14e 270**/\r
ddac74d1 271EFI_STATUS\r
272EFIAPI\r
273BdsLibBuildOptionFromVar (\r
274 IN LIST_ENTRY *BdsCommonOptionList,\r
275 IN CHAR16 *VariableName\r
276 );\r
277\r
278/**\r
3d8bd97c 279 This function reads the EFI variable (VendorGuid/Name) and returns a dynamically allocated\r
49fd8a35 280 buffer and the size of the buffer. If it fails, return NULL.\r
ddac74d1 281\r
49fd8a35 282 @param Name The string part of the EFI variable name.\r
283 @param VendorGuid The GUID part of the EFI variable name.\r
284 @param VariableSize Returns the size of the EFI variable that was read.\r
ddac74d1 285\r
49fd8a35 286 @return Dynamically allocated memory that contains a copy \r
287 of the EFI variable. The caller is responsible for \r
288 freeing the buffer.\r
289 @retval NULL The variable was not read.\r
ddac74d1 290\r
291**/\r
292VOID *\r
293EFIAPI\r
294BdsLibGetVariableAndSize (\r
295 IN CHAR16 *Name,\r
296 IN EFI_GUID *VendorGuid,\r
297 OUT UINTN *VariableSize\r
298 );\r
299\r
300\r
301/**\r
302 This function prints a series of strings.\r
303\r
49fd8a35 304 @param ConOut A pointer to EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.\r
305 @param ... A variable argument list containing a series of\r
ddac74d1 306 strings, the last string must be NULL.\r
307\r
49fd8a35 308 @retval EFI_SUCCESS Successfully printed out the string using ConOut.\r
ddac74d1 309 @retval EFI_STATUS Return the status of the ConOut->OutputString ().\r
310\r
311**/\r
312EFI_STATUS\r
313EFIAPI\r
314BdsLibOutputStrings (\r
315 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *ConOut,\r
316 ...\r
317 );\r
318\r
319/**\r
3d8bd97c 320 Build the boot#### or driver#### option from the VariableName. The\r
ddac74d1 321 build boot#### or driver#### will also be linked to BdsCommonOptionList.\r
322\r
323 @param BdsCommonOptionList The header of the boot#### or driver#### option\r
49fd8a35 324 link list.\r
3d8bd97c 325 @param VariableName EFI Variable name, indicates if it is boot#### or\r
49fd8a35 326 driver####.\r
ddac74d1 327\r
49fd8a35 328 @retval BDS_COMMON_OPTION The option that was created.\r
329 @retval NULL Failed to get the new option.\r
ddac74d1 330\r
331**/\r
332BDS_COMMON_OPTION *\r
333EFIAPI\r
334BdsLibVariableToOption (\r
335 IN OUT LIST_ENTRY *BdsCommonOptionList,\r
336 IN CHAR16 *VariableName\r
337 );\r
338\r
339/**\r
3d8bd97c 340 This function registers the new boot#### or driver#### option based on\r
ddac74d1 341 the VariableName. The new registered boot#### or driver#### will be linked\r
342 to BdsOptionList and also update to the VariableName. After the boot#### or\r
343 driver#### updated, the BootOrder or DriverOrder will also be updated.\r
344\r
49fd8a35 345 @param BdsOptionList The header of the boot#### or driver#### link list.\r
346 @param DevicePath The device path that the boot#### or driver####\r
347 option present.\r
348 @param String The description of the boot#### or driver####.\r
349 @param VariableName Indicate if the boot#### or driver#### option.\r
ddac74d1 350\r
49fd8a35 351 @retval EFI_SUCCESS The boot#### or driver#### have been successfully\r
352 registered.\r
ddac74d1 353 @retval EFI_STATUS Return the status of gRT->SetVariable ().\r
354\r
355**/\r
356EFI_STATUS\r
357EFIAPI\r
358BdsLibRegisterNewOption (\r
359 IN LIST_ENTRY *BdsOptionList,\r
360 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,\r
361 IN CHAR16 *String,\r
362 IN CHAR16 *VariableName\r
363 );\r
364\r
365//\r
3d8bd97c 366// Bds connect and disconnect driver lib funcions\r
ddac74d1 367//\r
368/**\r
3d8bd97c 369 This function connects all system drivers with the corresponding controllers. \r
ddac74d1 370\r
371**/\r
372VOID\r
373EFIAPI\r
374BdsLibConnectAllDriversToAllControllers (\r
375 VOID\r
376 );\r
377\r
378/**\r
3d8bd97c 379 This function connects all system drivers to controllers.\r
ddac74d1 380\r
381**/\r
382VOID\r
383EFIAPI\r
384BdsLibConnectAll (\r
385 VOID\r
386 );\r
387\r
388/**\r
bc79c731 389 This function will create all handles associate with every device\r
390 path node. If the handle associate with one device path node can not\r
391 be created successfully, then still give chance to do the dispatch,\r
392 which load the missing drivers if possible.\r
ddac74d1 393\r
3d8bd97c 394 @param DevicePathToConnect The device path to be connected. Can be\r
49fd8a35 395 a multi-instance device path.\r
ddac74d1 396\r
3d8bd97c 397 @retval EFI_SUCCESS All handles associates with every device path node\r
49fd8a35 398 were created.\r
399 @retval EFI_OUT_OF_RESOURCES Not enough resources to create new handles.\r
400 @retval EFI_NOT_FOUND At least one handle could not be created.\r
ddac74d1 401\r
402**/\r
403EFI_STATUS\r
404EFIAPI\r
405BdsLibConnectDevicePath (\r
406 IN EFI_DEVICE_PATH_PROTOCOL *DevicePathToConnect\r
407 );\r
408\r
409/**\r
49fd8a35 410 This function will connect all current system handles recursively. \r
411 gBS->ConnectController() service is invoked for each handle exist in system handler buffer. \r
412 If the handle is bus type handler, all childrens also will be connected recursively by gBS->ConnectController().\r
413 \r
414 @retval EFI_SUCCESS All handles and child handles have been\r
415 connected. \r
416 @retval EFI_STATUS Return the status of gBS->LocateHandleBuffer().\r
ddac74d1 417**/\r
418EFI_STATUS\r
419EFIAPI\r
420BdsLibConnectAllEfi (\r
421 VOID\r
422 );\r
423\r
ddac74d1 424/**\r
49fd8a35 425 This function will disconnect all current system handles. \r
426 gBS->DisconnectController() is invoked for each handle exists in system handle buffer. \r
427 If handle is a bus type handle, all childrens also are disconnected recursively by gBS->DisconnectController().\r
428 \r
429 @retval EFI_SUCCESS All handles have been disconnected.\r
0977c9b2 430 @retval EFI_STATUS Error status returned by of gBS->LocateHandleBuffer().\r
ddac74d1 431\r
432**/\r
433EFI_STATUS\r
434EFIAPI\r
435BdsLibDisconnectAllEfi (\r
436 VOID\r
437 );\r
438\r
439//\r
440// Bds console related lib functions\r
441//\r
442/**\r
3d8bd97c 443 This function will search every simpletxt device in the current system,\r
d0bd68b2 444 and make every simpletxt device a potential console device.\r
ddac74d1 445\r
446**/\r
447VOID\r
448EFIAPI\r
449BdsLibConnectAllConsoles (\r
450 VOID\r
451 );\r
452\r
453\r
454/**\r
3d8bd97c 455 This function will connect console device based on the console\r
ddac74d1 456 device variable ConIn, ConOut and ErrOut.\r
457\r
3d8bd97c 458 @retval EFI_SUCCESS At least one of the ConIn and ConOut devices have\r
459 been connected.\r
ddac74d1 460 @retval EFI_STATUS Return the status of BdsLibConnectConsoleVariable ().\r
461\r
462**/\r
463EFI_STATUS\r
464EFIAPI\r
465BdsLibConnectAllDefaultConsoles (\r
466 VOID\r
467 );\r
468\r
18cf3950 469\r
470/**\r
471 This function will connect console device except ConIn base on the console\r
472 device variable ConOut and ErrOut.\r
473\r
474 @retval EFI_SUCCESS At least one of the ConOut device have\r
475 been connected success.\r
476 @retval EFI_STATUS Return the status of BdsLibConnectConsoleVariable ().\r
477\r
478**/\r
479EFI_STATUS\r
480EFIAPI\r
481BdsLibConnectAllDefaultConsolesWithOutConIn (\r
482 VOID\r
483 );\r
484\r
485\r
ddac74d1 486/**\r
3d8bd97c 487 This function updates the console variable based on ConVarName. It can\r
ddac74d1 488 add or remove one specific console device path from the variable\r
489\r
49fd8a35 490 @param ConVarName The console-related variable name: ConIn, ConOut,\r
ddac74d1 491 ErrOut.\r
3d8bd97c 492 @param CustomizedConDevicePath The console device path to be added to\r
49fd8a35 493 the console variable ConVarName. Cannot be multi-instance.\r
3d8bd97c 494 @param ExclusiveDevicePath The console device path to be removed\r
49fd8a35 495 from the console variable ConVarName. Cannot be multi-instance.\r
3d8bd97c 496\r
497 @retval EFI_UNSUPPORTED The added device path is the same as a removed one.\r
498 @retval EFI_SUCCESS Successfully added or removed the device path from the\r
ddac74d1 499 console variable.\r
500\r
501**/\r
502EFI_STATUS\r
503EFIAPI\r
504BdsLibUpdateConsoleVariable (\r
505 IN CHAR16 *ConVarName,\r
506 IN EFI_DEVICE_PATH_PROTOCOL *CustomizedConDevicePath,\r
507 IN EFI_DEVICE_PATH_PROTOCOL *ExclusiveDevicePath\r
508 );\r
509\r
510/**\r
bc79c731 511 Connect the console device base on the variable ConVarName, if\r
512 device path of the ConVarName is multi-instance device path and\r
513 anyone of the instances is connected success, then this function\r
ddac74d1 514 will return success.\r
bc79c731 515 If the handle associate with one device path node can not\r
516 be created successfully, then still give chance to do the dispatch,\r
517 which load the missing drivers if possible.\r
ddac74d1 518\r
bc79c731 519 @param ConVarName Console related variable name, ConIn, ConOut,\r
ddac74d1 520 ErrOut.\r
521\r
bc79c731 522 @retval EFI_NOT_FOUND There is not any console devices connected\r
523 success\r
524 @retval EFI_SUCCESS Success connect any one instance of the console\r
525 device path base on the variable ConVarName.\r
ddac74d1 526\r
527**/\r
528EFI_STATUS\r
529EFIAPI\r
530BdsLibConnectConsoleVariable (\r
531 IN CHAR16 *ConVarName\r
532 );\r
533\r
bc79c731 534/**\r
535 Connect the console device base on the variable ConVarName, if\r
536 device path of the ConVarName is multi-instance device path and\r
537 anyone of the instances is connected success, then this function\r
538 will return success. \r
539 Dispatch service is not called when the handle associate with one \r
540 device path node can not be created successfully. Here no driver \r
541 dependency is assumed exist, so need not to call this service.\r
542\r
543 @param ConVarName Console related variable name, ConIn, ConOut,\r
544 ErrOut.\r
545\r
546 @retval EFI_NOT_FOUND There is not any console devices connected\r
547 success\r
548 @retval EFI_SUCCESS Success connect any one instance of the console\r
549 device path base on the variable ConVarName.\r
550\r
551**/\r
552EFI_STATUS\r
553EFIAPI\r
554BdsLibConnectConsoleVariableWithOutDispatch (\r
555 IN CHAR16 *ConVarName\r
556 );\r
557\r
ddac74d1 558//\r
559// Bds device path related lib functions\r
560//\r
561/**\r
49fd8a35 562 Delete the instance in Multi that overlaps with Single. \r
ddac74d1 563\r
564 @param Multi A pointer to a multi-instance device path data\r
565 structure.\r
566 @param Single A pointer to a single-instance device path data\r
567 structure.\r
568\r
3d8bd97c 569 @return This function removes the device path instances in Multi that overlap\r
49fd8a35 570 Single, and returns the resulting device path. If there is no\r
ddac74d1 571 remaining device path as a result, this function will return NULL.\r
572\r
573**/\r
574EFI_DEVICE_PATH_PROTOCOL *\r
575EFIAPI\r
576BdsLibDelPartMatchInstance (\r
577 IN EFI_DEVICE_PATH_PROTOCOL *Multi,\r
578 IN EFI_DEVICE_PATH_PROTOCOL *Single\r
579 );\r
580\r
581/**\r
49fd8a35 582 This function compares a device path data structure to that of all the nodes of a\r
ddac74d1 583 second device path instance.\r
584\r
585 @param Multi A pointer to a multi-instance device path data\r
586 structure.\r
587 @param Single A pointer to a single-instance device path data\r
588 structure.\r
589\r
49fd8a35 590 @retval TRUE If the Single device path is contained within a \r
591 Multi device path.\r
592 @retval FALSE The Single device path is not contained within a \r
593 Multi device path.\r
ddac74d1 594\r
595**/\r
596BOOLEAN\r
597EFIAPI\r
598BdsLibMatchDevicePaths (\r
599 IN EFI_DEVICE_PATH_PROTOCOL *Multi,\r
600 IN EFI_DEVICE_PATH_PROTOCOL *Single\r
601 );\r
602\r
603/**\r
604 This function converts an input device structure to a Unicode string.\r
605\r
606 @param DevPath A pointer to the device path structure.\r
607\r
49fd8a35 608 @return A newly allocated Unicode string that represents the device path.\r
ddac74d1 609\r
610**/\r
611CHAR16 *\r
612EFIAPI\r
613DevicePathToStr (\r
614 IN EFI_DEVICE_PATH_PROTOCOL *DevPath\r
615 );\r
616\r
ddac74d1 617//\r
618// Internal definitions\r
619//\r
620typedef struct {\r
b4b6c8de
LG
621 CHAR16 *Str;\r
622 UINTN Len;\r
623 UINTN Maxlen;\r
ddac74d1 624} POOL_PRINT;\r
625\r
8e8ae2da 626typedef\r
627VOID\r
628(*DEV_PATH_FUNCTION) (\r
629 IN OUT POOL_PRINT *Str,\r
630 IN VOID *DevPath\r
631 );\r
632\r
ddac74d1 633typedef struct {\r
8e8ae2da 634 UINT8 Type;\r
635 UINT8 SubType;\r
636 DEV_PATH_FUNCTION Function;\r
ddac74d1 637} DEVICE_PATH_STRING_TABLE;\r
638\r
ddac74d1 639typedef struct {\r
640 EFI_DEVICE_PATH_PROTOCOL Header;\r
641 EFI_GUID Guid;\r
642 UINT8 VendorDefinedData[1];\r
643} VENDOR_DEVICE_PATH_WITH_DATA;\r
644\r
ddac74d1 645typedef struct {\r
646 EFI_DEVICE_PATH_PROTOCOL Header;\r
647 UINT16 NetworkProtocol;\r
648 UINT16 LoginOption;\r
649 UINT64 Lun;\r
650 UINT16 TargetPortalGroupTag;\r
201e4066 651 CHAR16 TargetName[1];\r
ddac74d1 652} ISCSI_DEVICE_PATH_WITH_NAME;\r
653\r
ddac74d1 654//\r
655// BBS support macros and functions\r
656//\r
657\r
658#if defined(MDE_CPU_IA32) || defined(MDE_CPU_X64)\r
659#define REFRESH_LEGACY_BOOT_OPTIONS \\r
660 BdsDeleteAllInvalidLegacyBootOptions ();\\r
661 BdsAddNonExistingLegacyBootOptions (); \\r
662 BdsUpdateLegacyDevOrder ()\r
663#else\r
664#define REFRESH_LEGACY_BOOT_OPTIONS\r
665#endif\r
666\r
667/**\r
668 Delete all the invalid legacy boot options.\r
669\r
49fd8a35 670 @retval EFI_SUCCESS All invalid legacy boot options are deleted.\r
671 @retval EFI_OUT_OF_RESOURCES Failed to allocate necessary memory.\r
672 @retval EFI_NOT_FOUND Failed to retrieve variable of boot order.\r
ddac74d1 673\r
674**/\r
675EFI_STATUS\r
676EFIAPI\r
677BdsDeleteAllInvalidLegacyBootOptions (\r
678 VOID\r
679 );\r
680\r
681/**\r
ddac74d1 682 Add the legacy boot options from BBS table if they do not exist.\r
683\r
49fd8a35 684 @retval EFI_SUCCESS The boot options were added successfully, \r
e83c9064
LG
685 or they are already in boot options.\r
686 @retval EFI_NOT_FOUND No legacy boot options is found.\r
687 @retval EFI_OUT_OF_RESOURCE No enough memory.\r
688 @return Other value LegacyBoot options are not added.\r
ddac74d1 689**/\r
690EFI_STATUS\r
691EFIAPI\r
692BdsAddNonExistingLegacyBootOptions (\r
693 VOID\r
694 );\r
695\r
696/**\r
ddac74d1 697 Add the legacy boot devices from BBS table into \r
698 the legacy device boot order.\r
699\r
49fd8a35 700 @retval EFI_SUCCESS The boot devices were added successfully.\r
e83c9064 701 @retval EFI_NOT_FOUND The legacy boot devices are not found.\r
49fd8a35 702 @retval EFI_OUT_OF_RESOURCES Memory or storage is not enough.\r
703 @retval EFI_DEVICE_ERROR Failed to add the legacy device boot order into EFI variable\r
704 because of a hardware error.\r
ddac74d1 705**/\r
706EFI_STATUS\r
707EFIAPI\r
708BdsUpdateLegacyDevOrder (\r
709 VOID\r
710 );\r
711\r
712/**\r
d0bd68b2 713 Refresh the boot priority for BBS entries based on boot option entry and boot order.\r
ddac74d1 714\r
49fd8a35 715 @param Entry The boot option is to be checked for a refreshed BBS table.\r
ddac74d1 716 \r
49fd8a35 717 @retval EFI_SUCCESS The boot priority for BBS entries refreshed successfully.\r
e83c9064
LG
718 @retval EFI_NOT_FOUND BBS entries can't be found.\r
719 @retval EFI_OUT_OF_RESOURCES Failed to get the legacy device boot order.\r
ddac74d1 720**/\r
721EFI_STATUS\r
722EFIAPI\r
723BdsRefreshBbsTableForBoot (\r
724 IN BDS_COMMON_OPTION *Entry\r
725 );\r
726\r
727/**\r
d0bd68b2 728 Delete the Boot Option from EFI Variable. The Boot Order Arrray\r
e83c9064 729 is also updated.\r
ddac74d1 730\r
49fd8a35 731 @param OptionNumber The number of Boot options wanting to be deleted.\r
e83c9064
LG
732 @param BootOrder The Boot Order array.\r
733 @param BootOrderSize The size of the Boot Order Array.\r
ddac74d1 734\r
49fd8a35 735 @retval EFI_SUCCESS The Boot Option Variable was found and removed.\r
736 @retval EFI_UNSUPPORTED The Boot Option Variable store was inaccessible.\r
737 @retval EFI_NOT_FOUND The Boot Option Variable was not found.\r
ddac74d1 738**/\r
739EFI_STATUS\r
740EFIAPI\r
741BdsDeleteBootOption (\r
742 IN UINTN OptionNumber,\r
743 IN OUT UINT16 *BootOrder,\r
744 IN OUT UINTN *BootOrderSize\r
745 );\r
746\r
747//\r
3d8bd97c 748//The interface functions related to the Setup Browser Reset Reminder feature\r
ddac74d1 749//\r
750/**\r
751 Enable the setup browser reset reminder feature.\r
49fd8a35 752 This routine is used in a platform tip. If the platform policy needs the feature, use the routine to enable it.\r
ddac74d1 753\r
754**/\r
755VOID\r
756EFIAPI\r
757EnableResetReminderFeature (\r
758 VOID\r
759 );\r
760\r
761/**\r
762 Disable the setup browser reset reminder feature.\r
49fd8a35 763 This routine is used in a platform tip. If the platform policy does not want the feature, use the routine to disable it.\r
ddac74d1 764\r
765**/\r
766VOID\r
767EFIAPI\r
768DisableResetReminderFeature (\r
769 VOID\r
770 );\r
771\r
772/**\r
3d8bd97c 773 Record the info that a reset is required.\r
774 A module boolean variable is used to record whether a reset is required.\r
ddac74d1 775\r
776**/\r
777VOID\r
778EFIAPI\r
779EnableResetRequired (\r
780 VOID\r
781 );\r
782\r
783\r
784/**\r
3d8bd97c 785 Record the info that no reset is required.\r
786 A module boolean variable is used to record whether a reset is required.\r
ddac74d1 787\r
788**/\r
789VOID\r
790EFIAPI\r
791DisableResetRequired (\r
792 VOID\r
793 );\r
794\r
795/**\r
3d8bd97c 796 Check whether platform policy enables the reset reminder feature. The default is enabled.\r
ddac74d1 797\r
798**/\r
799BOOLEAN\r
800EFIAPI\r
801IsResetReminderFeatureEnable (\r
802 VOID\r
803 );\r
804\r
805/**\r
3d8bd97c 806 Check if the user changed any option setting that needs a system reset to be effective.\r
ddac74d1 807\r
808**/\r
809BOOLEAN\r
810EFIAPI\r
811IsResetRequired (\r
812 VOID\r
813 );\r
814\r
815/**\r
816 Check whether a reset is needed, and finish the reset reminder feature.\r
3d8bd97c 817 If a reset is needed, pop up a menu to notice user, and finish the feature\r
ddac74d1 818 according to the user selection.\r
819\r
820**/\r
821VOID\r
822EFIAPI\r
823SetupResetReminder (\r
824 VOID\r
825 );\r
826\r
3384a9bc 827\r
e83c9064 828///\r
49fd8a35 829/// Define the boot type with which to classify the boot option type.\r
830/// Different boot option types could have different boot behaviors.\r
831/// Use their device path node (Type + SubType) as the type value.\r
832/// The boot type here can be added according to requirements.\r
e83c9064
LG
833///\r
834\r
835///\r
49fd8a35 836/// ACPI boot type. For ACPI devices, using sub-types to distinguish devices is not allowed, so hardcode their values.\r
e83c9064 837///\r
ddac74d1 838#define BDS_EFI_ACPI_FLOPPY_BOOT 0x0201\r
e83c9064
LG
839///\r
840/// Message boot type\r
49fd8a35 841/// If a device path of boot option only points to a message node, the boot option is a message boot type.\r
e83c9064 842///\r
ddac74d1 843#define BDS_EFI_MESSAGE_ATAPI_BOOT 0x0301 // Type 03; Sub-Type 01\r
844#define BDS_EFI_MESSAGE_SCSI_BOOT 0x0302 // Type 03; Sub-Type 02\r
845#define BDS_EFI_MESSAGE_USB_DEVICE_BOOT 0x0305 // Type 03; Sub-Type 05\r
429cac9c 846#define BDS_EFI_MESSAGE_SATA_BOOT 0x0312 // Type 03; Sub-Type 18\r
847#define BDS_EFI_MESSAGE_MAC_BOOT 0x030b // Type 03; Sub-Type 11\r
ddac74d1 848#define BDS_EFI_MESSAGE_MISC_BOOT 0x03FF\r
429cac9c 849\r
e83c9064
LG
850///\r
851/// Media boot type\r
49fd8a35 852/// If a device path of boot option contains a media node, the boot option is media boot type.\r
e83c9064 853///\r
ddac74d1 854#define BDS_EFI_MEDIA_HD_BOOT 0x0401 // Type 04; Sub-Type 01\r
855#define BDS_EFI_MEDIA_CDROM_BOOT 0x0402 // Type 04; Sub-Type 02\r
e83c9064
LG
856///\r
857/// BBS boot type\r
49fd8a35 858/// If a device path of boot option contains a BBS node, the boot option is BBS boot type.\r
e83c9064 859///\r
ddac74d1 860#define BDS_LEGACY_BBS_BOOT 0x0501 // Type 05; Sub-Type 01\r
861\r
862#define BDS_EFI_UNSUPPORT 0xFFFF\r
863\r
ddac74d1 864/**\r
49fd8a35 865 Check whether an instance in BlockIoDevicePath has the same partition node as the HardDriveDevicePath device path.\r
ddac74d1 866\r
49fd8a35 867 @param BlockIoDevicePath Multi device path instances to check.\r
3d8bd97c 868 @param HardDriveDevicePath A device path starting with a hard drive media\r
ddac74d1 869 device path.\r
870\r
871 @retval TRUE There is a matched device path instance.\r
872 @retval FALSE There is no matched device path instance.\r
873\r
874**/\r
875BOOLEAN\r
876EFIAPI\r
877MatchPartitionDevicePathNode (\r
878 IN EFI_DEVICE_PATH_PROTOCOL *BlockIoDevicePath,\r
879 IN HARDDRIVE_DEVICE_PATH *HardDriveDevicePath\r
880 );\r
881\r
882\r
883/**\r
884 Expand a device path that starts with a hard drive media device path node to be a\r
d0bd68b2 885 full device path that includes the full hardware path to the device. This function enables the device to boot. \r
886 To avoid requiring a connect on every boot, the front match is saved in a variable (the part point\r
887 to the partition node. E.g. ACPI() /PCI()/ATA()/Partition() ).\r
888 All successful history device paths\r
889 that point to the front part of the partition node will be saved.\r
ddac74d1 890\r
891 @param HardDriveDevicePath EFI Device Path to boot, if it starts with a hard\r
892 drive media device path.\r
49fd8a35 893 @return A Pointer to the full device path, or NULL if a valid Hard Drive devic path\r
ddac74d1 894 cannot be found.\r
895\r
896**/\r
897EFI_DEVICE_PATH_PROTOCOL *\r
898EFIAPI\r
899BdsExpandPartitionPartialDevicePathToFull (\r
900 IN HARDDRIVE_DEVICE_PATH *HardDriveDevicePath\r
901 );\r
902 \r
903/**\r
904 Return the bootable media handle.\r
3d8bd97c 905 First, check whether the device is connected.\r
906 Second, check whether the device path points to a device that supports SimpleFileSystemProtocol.\r
ddac74d1 907 Third, detect the the default boot file in the Media, and return the removable Media handle.\r
908\r
49fd8a35 909 @param DevicePath The Device Path to a bootable device.\r
ddac74d1 910\r
e83c9064 911 @return The bootable media handle. If the media on the DevicePath is not bootable, NULL will return.\r
ddac74d1 912\r
913**/\r
914EFI_HANDLE\r
915EFIAPI\r
916BdsLibGetBootableHandle (\r
917 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath\r
918 );\r
919 \r
920\r
921/**\r
3d8bd97c 922 Checks whether the Device path in a boot option points to a valid bootable device, and if the device\r
923 is ready to boot now.\r
ddac74d1 924\r
49fd8a35 925 @param DevPath The Device path in a boot option.\r
926 @param CheckMedia If true, check whether the device is ready to boot now.\r
ddac74d1 927\r
49fd8a35 928 @retval TRUE The Device path is valid.\r
929 @retval FALSE The Device path is invalid.\r
ddac74d1 930\r
931**/\r
932BOOLEAN\r
933EFIAPI\r
934BdsLibIsValidEFIBootOptDevicePath (\r
935 IN EFI_DEVICE_PATH_PROTOCOL *DevPath,\r
936 IN BOOLEAN CheckMedia\r
937 );\r
3384a9bc 938\r
939/**\r
3d8bd97c 940 Checks whether the Device path in a boot option points to a valid bootable device, and if the device\r
941 is ready to boot now.\r
942 If Description is not NULL and the device path points to a fixed BlockIo\r
943 device, this function checks whether the description conflicts with other auto-created\r
3384a9bc 944 boot options.\r
945\r
49fd8a35 946 @param DevPath The Device path in a boot option.\r
947 @param CheckMedia If true, checks if the device is ready to boot now.\r
948 @param Description The description of a boot option.\r
3384a9bc 949\r
49fd8a35 950 @retval TRUE The Device path is valid.\r
951 @retval FALSE The Device path is invalid.\r
3384a9bc 952\r
953**/\r
954BOOLEAN\r
955EFIAPI\r
956BdsLibIsValidEFIBootOptDevicePathExt (\r
957 IN EFI_DEVICE_PATH_PROTOCOL *DevPath,\r
958 IN BOOLEAN CheckMedia,\r
959 IN CHAR16 *Description\r
960 );\r
961\r
ddac74d1 962/**\r
963 For a bootable Device path, return its boot type.\r
964\r
49fd8a35 965 @param DevicePath The bootable device Path to check.\r
ddac74d1 966\r
38dc2202 967 @retval BDS_EFI_MEDIA_HD_BOOT The given device path contains MEDIA_DEVICE_PATH type device path node,\r
968 whose subtype is MEDIA_HARDDRIVE_DP. \r
969 @retval BDS_EFI_MEDIA_CDROM_BOOT If given device path contains MEDIA_DEVICE_PATH type device path node, \r
970 whose subtype is MEDIA_CDROM_DP. \r
971 @retval BDS_EFI_ACPI_FLOPPY_BOOT A given device path contains ACPI_DEVICE_PATH type device path node, \r
972 whose HID is floppy device. \r
973 @retval BDS_EFI_MESSAGE_ATAPI_BOOT A given device path contains MESSAGING_DEVICE_PATH type device path node, \r
974 and its last device path node's subtype is MSG_ATAPI_DP. \r
975 @retval BDS_EFI_MESSAGE_SCSI_BOOT A given device path contains MESSAGING_DEVICE_PATH type device path node,\r
976 and its last device path node's subtype is MSG_SCSI_DP. \r
977 @retval BDS_EFI_MESSAGE_USB_DEVICE_BOOT A given device path contains MESSAGING_DEVICE_PATH type device path node, \r
978 and its last device path node's subtype is MSG_USB_DP.\r
979 @retval BDS_EFI_MESSAGE_MISC_BOOT The device path does not contain any media device path node, and \r
980 its last device path node points to a message device path node. \r
981 @retval BDS_LEGACY_BBS_BOOT A given device path contains BBS_DEVICE_PATH type device path node. \r
982 @retval BDS_EFI_UNSUPPORT An EFI Removable BlockIO device path does not point to a media and message device. \r
983\r
984 **/\r
ddac74d1 985UINT32\r
986EFIAPI\r
987BdsGetBootTypeFromDevicePath (\r
988 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath\r
989 );\r
990\r
991\r
992/**\r
3d8bd97c 993 This routine registers a function to adjust the different types of memory page numbers\r
994 just before booting, and saves the updated info into the variable for the next boot to use.\r
ddac74d1 995\r
996**/\r
997VOID\r
998EFIAPI\r
999BdsLibSaveMemoryTypeInformation (\r
1000 VOID\r
1001 );\r
1002 \r
337661bb 1003/**\r
1004 Identify a user and, if authenticated, returns the current user profile handle.\r
1005\r
49fd8a35 1006 @param[out] User Points to the user profile handle.\r
337661bb 1007 \r
49fd8a35 1008 @retval EFI_SUCCESS The user is successfully identified, or user identification\r
337661bb 1009 is not supported.\r
49fd8a35 1010 @retval EFI_ACCESS_DENIED The user was not successfully identified.\r
337661bb 1011\r
1012**/\r
1013EFI_STATUS\r
1014EFIAPI\r
1015BdsLibUserIdentify (\r
1016 OUT EFI_USER_PROFILE_HANDLE *User\r
1017 ); \r
ddac74d1 1018\r
1019/**\r
3d8bd97c 1020 This function checks if a Fv file device path is valid, according to a file GUID. If it is invalid,\r
1021 it tries to return the valid device path.\r
ddac74d1 1022 FV address maybe changes for memory layout adjust from time to time, use this funciton\r
1023 could promise the Fv file device path is right.\r
1024\r
49fd8a35 1025 @param DevicePath On input, the Fv file device path to check. On\r
ddac74d1 1026 output, the updated valid Fv file device path\r
49fd8a35 1027 @param FileGuid the Fv file GUID.\r
ddac74d1 1028\r
49fd8a35 1029 @retval EFI_INVALID_PARAMETER The input DevicePath or FileGuid is invalid.\r
1030 @retval EFI_UNSUPPORTED The input DevicePath does not contain an Fv file\r
1031 GUID at all.\r
1032 @retval EFI_ALREADY_STARTED The input DevicePath has pointed to the Fv file and is\r
1033 valid.\r
1034 @retval EFI_SUCCESS Successfully updated the invalid DevicePath\r
1035 and returned the updated device path in DevicePath.\r
ddac74d1 1036\r
1037**/\r
1038EFI_STATUS\r
1039EFIAPI\r
1040BdsLibUpdateFvFileDevicePath (\r
1041 IN OUT EFI_DEVICE_PATH_PROTOCOL ** DevicePath,\r
1042 IN EFI_GUID *FileGuid\r
1043 );\r
1044\r
1045\r
1046/**\r
3d8bd97c 1047 Connect the specific USB device that matches the RemainingDevicePath,\r
49fd8a35 1048 and whose bus is determined by Host Controller (Uhci or Ehci).\r
ddac74d1 1049\r
1050 @param HostControllerPI Uhci (0x00) or Ehci (0x20) or Both uhci and ehci\r
49fd8a35 1051 (0xFF).\r
1052 @param RemainingDevicePath A short-form device path that starts with the first\r
ddac74d1 1053 element being a USB WWID or a USB Class device\r
49fd8a35 1054 path.\r
ddac74d1 1055\r
1056 @retval EFI_SUCCESS The specific Usb device is connected successfully.\r
1057 @retval EFI_INVALID_PARAMETER Invalid HostControllerPi (not 0x00, 0x20 or 0xFF) \r
1058 or RemainingDevicePath is not the USB class device path.\r
1059 @retval EFI_NOT_FOUND The device specified by device path is not found.\r
1060\r
1061**/\r
1062EFI_STATUS\r
1063EFIAPI\r
1064BdsLibConnectUsbDevByShortFormDP(\r
1065 IN UINT8 HostControllerPI,\r
1066 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath\r
1067 );\r
1068 \r
1069\r
1070//\r
1071// The implementation of this function is provided by Platform code.\r
1072//\r
1073/**\r
3d8bd97c 1074 Convert Vendor device path to a device name.\r
ddac74d1 1075\r
49fd8a35 1076 @param Str The buffer storing device name.\r
1077 @param DevPath The pointer to vendor device path.\r
ddac74d1 1078\r
1079**/\r
1080VOID\r
ddac74d1 1081DevPathVendor (\r
1082 IN OUT POOL_PRINT *Str,\r
1083 IN VOID *DevPath\r
1084 );\r
1085\r
1086/**\r
49fd8a35 1087 Concatenates a formatted unicode string to an allocated pool.\r
ddac74d1 1088 The caller must free the resulting buffer.\r
1089\r
1090 @param Str Tracks the allocated pool, size in use, and amount of pool allocated.\r
49fd8a35 1091 @param Fmt The format string.\r
ddac74d1 1092 @param ... The data will be printed.\r
1093\r
1094 @return Allocated buffer with the formatted string printed in it.\r
1095 The caller must free the allocated buffer.\r
1096 The buffer allocation is not packed.\r
1097\r
1098**/\r
1099CHAR16 *\r
1100EFIAPI\r
1101CatPrint (\r
1102 IN OUT POOL_PRINT *Str,\r
b4b6c8de 1103 IN CHAR16 *Fmt,\r
ddac74d1 1104 ...\r
1105 );\r
1106\r
1107/**\r
24cdd14e
LG
1108 Use SystemTable ConOut to stop video based Simple Text Out consoles from going\r
1109 to the video device. Put up LogoFile on every video device that is a console.\r
ddac74d1 1110\r
49fd8a35 1111 @param[in] LogoFile The file name of logo to display on the center of the screen.\r
ddac74d1 1112\r
1113 @retval EFI_SUCCESS ConsoleControl has been flipped to graphics and logo displayed.\r
49fd8a35 1114 @retval EFI_UNSUPPORTED Logo not found.\r
ddac74d1 1115\r
1116**/\r
1117EFI_STATUS\r
1118EFIAPI\r
1119EnableQuietBoot (\r
1120 IN EFI_GUID *LogoFile\r
1121 );\r
1122\r
1123\r
1124/**\r
24cdd14e 1125 Use SystemTable ConOut to turn on video based Simple Text Out consoles. The \r
49fd8a35 1126 Simple Text Out screens will now be synced up with all non-video output devices.\r
ddac74d1 1127\r
1128 @retval EFI_SUCCESS UGA devices are back in text mode and synced up.\r
1129\r
1130**/\r
1131EFI_STATUS\r
1132EFIAPI\r
1133DisableQuietBoot (\r
1134 VOID\r
1135 );\r
1136\r
ddac74d1 1137#endif\r
1138\r