]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManager.h
MdeModulePkg/BootMaintManagerUiLib: Declare EFIAPI for ChooseFile handler
[mirror_edk2.git] / MdeModulePkg / Library / BootMaintenanceManagerUiLib / BootMaintenanceManager.h
1 /** @file
2 Header file for boot maintenance module.
3
4 Copyright (c) 2004 - 2016, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _BOOT_MAINT_H_
16 #define _BOOT_MAINT_H_
17
18 #include "FormGuid.h"
19
20 #include <Guid/TtyTerm.h>
21 #include <Guid/MdeModuleHii.h>
22 #include <Guid/FileSystemVolumeLabelInfo.h>
23 #include <Guid/GlobalVariable.h>
24 #include <Guid/HiiBootMaintenanceFormset.h>
25
26 #include <Protocol/LoadFile.h>
27 #include <Protocol/HiiConfigAccess.h>
28 #include <Protocol/SimpleFileSystem.h>
29 #include <Protocol/SerialIo.h>
30 #include <Protocol/DevicePathToText.h>
31
32 #include <Library/PrintLib.h>
33 #include <Library/DebugLib.h>
34 #include <Library/BaseMemoryLib.h>
35 #include <Library/UefiBootServicesTableLib.h>
36 #include <Library/UefiLib.h>
37 #include <Library/MemoryAllocationLib.h>
38 #include <Library/UefiRuntimeServicesTableLib.h>
39 #include <Library/DevicePathLib.h>
40 #include <Library/HiiLib.h>
41 #include <Library/UefiHiiServicesLib.h>
42 #include <Library/UefiBootManagerLib.h>
43 #include <Library/FileExplorerLib.h>
44
45 #pragma pack(1)
46
47 ///
48 /// HII specific Vendor Device Path definition.
49 ///
50 typedef struct {
51 VENDOR_DEVICE_PATH VendorDevicePath;
52 EFI_DEVICE_PATH_PROTOCOL End;
53 } HII_VENDOR_DEVICE_PATH;
54 #pragma pack()
55
56 //
57 // Constants which are variable names used to access variables
58 //
59
60 #define VAR_CON_OUT_MODE L"ConOutMode"
61
62 //
63 // Variable created with this flag will be "Efi:...."
64 //
65 #define VAR_FLAG EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE
66
67 extern EFI_GUID mBootMaintGuid;
68 extern CHAR16 mBootMaintStorageName[];
69 //
70 // These are the VFR compiler generated data representing our VFR data.
71 //
72 extern UINT8 BootMaintenanceManagerBin[];
73
74 //
75 // Below are the number of options in Baudrate, Databits,
76 // Parity and Stopbits selection for serial ports.
77 //
78 #define BM_COM_ATTR_BUADRATE 19
79 #define BM_COM_ATTR_DATABITS 4
80 #define BM_COM_ATTR_PARITY 5
81 #define BM_COM_ATTR_STOPBITS 3
82
83 //
84 // Callback function helper
85 //
86 #define BMM_CALLBACK_DATA_SIGNATURE SIGNATURE_32 ('C', 'b', 'c', 'k')
87 #define BMM_CALLBACK_DATA_FROM_THIS(a) CR (a, BMM_CALLBACK_DATA, BmmConfigAccess, BMM_CALLBACK_DATA_SIGNATURE)
88
89 //
90 // Enumeration type definition
91 //
92 typedef UINT8 BBS_TYPE;
93
94 typedef enum _TYPE_OF_TERMINAL {
95 TerminalTypePcAnsi = 0,
96 TerminalTypeVt100,
97 TerminalTypeVt100Plus,
98 TerminalTypeVtUtf8,
99 TerminalTypeTtyTerm
100 } TYPE_OF_TERMINAL;
101
102 //
103 // All of the signatures that will be used in list structure
104 //
105 #define BM_MENU_OPTION_SIGNATURE SIGNATURE_32 ('m', 'e', 'n', 'u')
106 #define BM_LOAD_OPTION_SIGNATURE SIGNATURE_32 ('l', 'o', 'a', 'd')
107 #define BM_CONSOLE_OPTION_SIGNATURE SIGNATURE_32 ('c', 'n', 's', 'l')
108 #define BM_FILE_OPTION_SIGNATURE SIGNATURE_32 ('f', 'i', 'l', 'e')
109 #define BM_HANDLE_OPTION_SIGNATURE SIGNATURE_32 ('h', 'n', 'd', 'l')
110 #define BM_TERMINAL_OPTION_SIGNATURE SIGNATURE_32 ('t', 'r', 'm', 'l')
111 #define BM_MENU_ENTRY_SIGNATURE SIGNATURE_32 ('e', 'n', 't', 'r')
112
113 #define BM_LOAD_CONTEXT_SELECT 0x0
114 #define BM_CONSOLE_CONTEXT_SELECT 0x1
115 #define BM_FILE_CONTEXT_SELECT 0x2
116 #define BM_HANDLE_CONTEXT_SELECT 0x3
117 #define BM_TERMINAL_CONTEXT_SELECT 0x5
118
119 #define BM_CONSOLE_IN_CONTEXT_SELECT 0x6
120 #define BM_CONSOLE_OUT_CONTEXT_SELECT 0x7
121 #define BM_CONSOLE_ERR_CONTEXT_SELECT 0x8
122
123 //
124 // Buffer size for update data
125 //
126 #define UPDATE_DATA_SIZE 0x100000
127
128 //
129 // Namespace of callback keys used in display and file system navigation
130 //
131 #define MAX_BBS_OFFSET 0xE000
132 #define NET_OPTION_OFFSET 0xD800
133 #define BEV_OPTION_OFFSET 0xD000
134 #define FD_OPTION_OFFSET 0xC000
135 #define HD_OPTION_OFFSET 0xB000
136 #define CD_OPTION_OFFSET 0xA000
137 #define FILE_OPTION_OFFSET 0x8000
138 #define FILE_OPTION_MASK 0x7FFF
139 #define HANDLE_OPTION_OFFSET 0x7000
140 #define CONSOLE_OPTION_OFFSET 0x6000
141 #define TERMINAL_OPTION_OFFSET 0x5000
142 #define CONFIG_OPTION_OFFSET 0x1200
143 #define KEY_VALUE_OFFSET 0x1100
144 #define FORM_ID_OFFSET 0x1000
145
146 //
147 // VarOffset that will be used to create question
148 // all these values are computed from the structure
149 // defined below
150 //
151 #define VAR_OFFSET(Field) ((UINT16) ((UINTN) &(((BMM_FAKE_NV_DATA *) 0)->Field)))
152
153 //
154 // Question Id of Zero is invalid, so add an offset to it
155 //
156 #define QUESTION_ID(Field) (VAR_OFFSET (Field) + CONFIG_OPTION_OFFSET)
157
158 #define BOOT_TIME_OUT_VAR_OFFSET VAR_OFFSET (BootTimeOut)
159 #define BOOT_NEXT_VAR_OFFSET VAR_OFFSET (BootNext)
160 #define COM1_BAUD_RATE_VAR_OFFSET VAR_OFFSET (COM1BaudRate)
161 #define COM1_DATA_RATE_VAR_OFFSET VAR_OFFSET (COM1DataRate)
162 #define COM1_STOP_BITS_VAR_OFFSET VAR_OFFSET (COM1StopBits)
163 #define COM1_PARITY_VAR_OFFSET VAR_OFFSET (COM1Parity)
164 #define COM1_TERMINAL_VAR_OFFSET VAR_OFFSET (COM2TerminalType)
165 #define COM2_BAUD_RATE_VAR_OFFSET VAR_OFFSET (COM2BaudRate)
166 #define COM2_DATA_RATE_VAR_OFFSET VAR_OFFSET (COM2DataRate)
167 #define COM2_STOP_BITS_VAR_OFFSET VAR_OFFSET (COM2StopBits)
168 #define COM2_PARITY_VAR_OFFSET VAR_OFFSET (COM2Parity)
169 #define COM2_TERMINAL_VAR_OFFSET VAR_OFFSET (COM2TerminalType)
170 #define DRV_ADD_HANDLE_DESC_VAR_OFFSET VAR_OFFSET (DriverAddHandleDesc)
171 #define DRV_ADD_ACTIVE_VAR_OFFSET VAR_OFFSET (DriverAddActive)
172 #define DRV_ADD_RECON_VAR_OFFSET VAR_OFFSET (DriverAddForceReconnect)
173 #define CON_IN_COM1_VAR_OFFSET VAR_OFFSET (ConsoleInputCOM1)
174 #define CON_IN_COM2_VAR_OFFSET VAR_OFFSET (ConsoleInputCOM2)
175 #define CON_OUT_COM1_VAR_OFFSET VAR_OFFSET (ConsoleOutputCOM1)
176 #define CON_OUT_COM2_VAR_OFFSET VAR_OFFSET (ConsoleOutputCOM2)
177 #define CON_ERR_COM1_VAR_OFFSET VAR_OFFSET (ConsoleErrorCOM1)
178 #define CON_ERR_COM2_VAR_OFFSET VAR_OFFSET (ConsoleErrorCOM2)
179 #define CON_MODE_VAR_OFFSET VAR_OFFSET (ConsoleOutMode)
180 #define CON_DEVICE_VAR_OFFSET VAR_OFFSET (ConsoleCheck)
181 #define CON_IN_DEVICE_VAR_OFFSET VAR_OFFSET (ConsoleInCheck)
182 #define CON_OUT_DEVICE_VAR_OFFSET VAR_OFFSET (ConsoleOutCheck)
183 #define CON_ERR_DEVICE_VAR_OFFSET VAR_OFFSET (ConsoleErrCheck)
184 #define BOOT_OPTION_ORDER_VAR_OFFSET VAR_OFFSET (BootOptionOrder)
185 #define DRIVER_OPTION_ORDER_VAR_OFFSET VAR_OFFSET (DriverOptionOrder)
186 #define BOOT_OPTION_DEL_VAR_OFFSET VAR_OFFSET (BootOptionDel)
187 #define DRIVER_OPTION_DEL_VAR_OFFSET VAR_OFFSET (DriverOptionDel)
188 #define DRIVER_ADD_OPTION_VAR_OFFSET VAR_OFFSET (DriverAddHandleOptionalData)
189 #define COM_BAUD_RATE_VAR_OFFSET VAR_OFFSET (COMBaudRate)
190 #define COM_DATA_RATE_VAR_OFFSET VAR_OFFSET (COMDataRate)
191 #define COM_STOP_BITS_VAR_OFFSET VAR_OFFSET (COMStopBits)
192 #define COM_PARITY_VAR_OFFSET VAR_OFFSET (COMParity)
193 #define COM_TERMINAL_VAR_OFFSET VAR_OFFSET (COMTerminalType)
194 #define COM_FLOWCONTROL_VAR_OFFSET VAR_OFFSET (COMFlowControl)
195
196 #define BOOT_TIME_OUT_QUESTION_ID QUESTION_ID (BootTimeOut)
197 #define BOOT_NEXT_QUESTION_ID QUESTION_ID (BootNext)
198 #define COM1_BAUD_RATE_QUESTION_ID QUESTION_ID (COM1BaudRate)
199 #define COM1_DATA_RATE_QUESTION_ID QUESTION_ID (COM1DataRate)
200 #define COM1_STOP_BITS_QUESTION_ID QUESTION_ID (COM1StopBits)
201 #define COM1_PARITY_QUESTION_ID QUESTION_ID (COM1Parity)
202 #define COM1_TERMINAL_QUESTION_ID QUESTION_ID (COM2TerminalType)
203 #define COM2_BAUD_RATE_QUESTION_ID QUESTION_ID (COM2BaudRate)
204 #define COM2_DATA_RATE_QUESTION_ID QUESTION_ID (COM2DataRate)
205 #define COM2_STOP_BITS_QUESTION_ID QUESTION_ID (COM2StopBits)
206 #define COM2_PARITY_QUESTION_ID QUESTION_ID (COM2Parity)
207 #define COM2_TERMINAL_QUESTION_ID QUESTION_ID (COM2TerminalType)
208 #define DRV_ADD_HANDLE_DESC_QUESTION_ID QUESTION_ID (DriverAddHandleDesc)
209 #define DRV_ADD_ACTIVE_QUESTION_ID QUESTION_ID (DriverAddActive)
210 #define DRV_ADD_RECON_QUESTION_ID QUESTION_ID (DriverAddForceReconnect)
211 #define CON_IN_COM1_QUESTION_ID QUESTION_ID (ConsoleInputCOM1)
212 #define CON_IN_COM2_QUESTION_ID QUESTION_ID (ConsoleInputCOM2)
213 #define CON_OUT_COM1_QUESTION_ID QUESTION_ID (ConsoleOutputCOM1)
214 #define CON_OUT_COM2_QUESTION_ID QUESTION_ID (ConsoleOutputCOM2)
215 #define CON_ERR_COM1_QUESTION_ID QUESTION_ID (ConsoleErrorCOM1)
216 #define CON_ERR_COM2_QUESTION_ID QUESTION_ID (ConsoleErrorCOM2)
217 #define CON_MODE_QUESTION_ID QUESTION_ID (ConsoleOutMode)
218 #define CON_DEVICE_QUESTION_ID QUESTION_ID (ConsoleCheck)
219 #define CON_IN_DEVICE_QUESTION_ID QUESTION_ID (ConsoleInCheck)
220 #define CON_OUT_DEVICE_QUESTION_ID QUESTION_ID (ConsoleOutCheck)
221 #define CON_ERR_DEVICE_QUESTION_ID QUESTION_ID (ConsoleErrCheck)
222 #define BOOT_OPTION_ORDER_QUESTION_ID QUESTION_ID (BootOptionOrder)
223 #define DRIVER_OPTION_ORDER_QUESTION_ID QUESTION_ID (DriverOptionOrder)
224 #define BOOT_OPTION_DEL_QUESTION_ID QUESTION_ID (BootOptionDel)
225 #define DRIVER_OPTION_DEL_QUESTION_ID QUESTION_ID (DriverOptionDel)
226 #define DRIVER_ADD_OPTION_QUESTION_ID QUESTION_ID (DriverAddHandleOptionalData)
227 #define COM_BAUD_RATE_QUESTION_ID QUESTION_ID (COMBaudRate)
228 #define COM_DATA_RATE_QUESTION_ID QUESTION_ID (COMDataRate)
229 #define COM_STOP_BITS_QUESTION_ID QUESTION_ID (COMStopBits)
230 #define COM_PARITY_QUESTION_ID QUESTION_ID (COMParity)
231 #define COM_TERMINAL_QUESTION_ID QUESTION_ID (COMTerminalType)
232 #define COM_FLOWCONTROL_QUESTION_ID QUESTION_ID (COMFlowControl)
233
234 #define STRING_DEPOSITORY_NUMBER 8
235
236 #define NONE_BOOTNEXT_VALUE (0xFFFF + 1)
237
238 ///
239 /// Serial Ports attributes, first one is the value for
240 /// return from callback function, stringtoken is used to
241 /// display the value properly
242 ///
243 typedef struct {
244 UINTN Value;
245 UINT16 StringToken;
246 } COM_ATTR;
247
248 typedef struct {
249 UINT64 BaudRate;
250 UINT8 DataBits;
251 UINT8 Parity;
252 UINT8 StopBits;
253
254 UINT8 BaudRateIndex;
255 UINT8 DataBitsIndex;
256 UINT8 ParityIndex;
257 UINT8 StopBitsIndex;
258
259 UINT8 FlowControl;
260
261 UINT8 IsConIn;
262 UINT8 IsConOut;
263 UINT8 IsStdErr;
264 UINT8 TerminalType;
265
266 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
267 } BM_TERMINAL_CONTEXT;
268
269 typedef struct {
270 BOOLEAN IsBootNext;
271 BOOLEAN Deleted;
272
273 BOOLEAN IsLegacy;
274
275 UINT32 Attributes;
276 UINT16 FilePathListLength;
277 UINT16 *Description;
278 EFI_DEVICE_PATH_PROTOCOL *FilePathList;
279 UINT8 *OptionalData;
280 } BM_LOAD_CONTEXT;
281
282 typedef struct {
283
284 BOOLEAN IsActive;
285
286 BOOLEAN IsTerminal;
287
288 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
289 } BM_CONSOLE_CONTEXT;
290
291 typedef struct {
292 UINTN Column;
293 UINTN Row;
294 } CONSOLE_OUT_MODE;
295
296 typedef struct {
297 EFI_HANDLE Handle;
298 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
299 EFI_FILE_HANDLE FHandle;
300 UINT16 *FileName;
301 EFI_FILE_SYSTEM_VOLUME_LABEL *Info;
302
303 BOOLEAN IsRoot;
304 BOOLEAN IsDir;
305 BOOLEAN IsRemovableMedia;
306 BOOLEAN IsLoadFile;
307 BOOLEAN IsBootLegacy;
308 } BM_FILE_CONTEXT;
309
310 typedef struct {
311 EFI_HANDLE Handle;
312 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
313 } BM_HANDLE_CONTEXT;
314
315 typedef struct {
316 UINTN Signature;
317 LIST_ENTRY Head;
318 UINTN MenuNumber;
319 } BM_MENU_OPTION;
320
321 typedef struct {
322 UINTN Signature;
323 LIST_ENTRY Link;
324 UINTN OptionNumber;
325 UINT16 *DisplayString;
326 UINT16 *HelpString;
327 EFI_STRING_ID DisplayStringToken;
328 EFI_STRING_ID HelpStringToken;
329 UINTN ContextSelection;
330 VOID *VariableContext;
331 } BM_MENU_ENTRY;
332
333 typedef struct {
334
335 UINTN Signature;
336
337 EFI_HII_HANDLE BmmHiiHandle;
338 EFI_HANDLE BmmDriverHandle;
339 ///
340 /// Boot Maintenance Manager Produced protocols
341 ///
342 EFI_HII_CONFIG_ACCESS_PROTOCOL BmmConfigAccess;
343 EFI_FORM_BROWSER2_PROTOCOL *FormBrowser2;
344
345 BM_MENU_ENTRY *MenuEntry;
346 BM_HANDLE_CONTEXT *HandleContext;
347 BM_FILE_CONTEXT *FileContext;
348 BM_LOAD_CONTEXT *LoadContext;
349 BM_TERMINAL_CONTEXT *TerminalContext;
350 UINTN CurrentTerminal;
351 BBS_TYPE BbsType;
352
353 //
354 // BMM main formset callback data.
355 //
356
357 EFI_FORM_ID BmmCurrentPageId;
358 EFI_FORM_ID BmmPreviousPageId;
359 BOOLEAN BmmAskSaveOrNot;
360 BMM_FAKE_NV_DATA BmmFakeNvData;
361 BMM_FAKE_NV_DATA BmmOldFakeNVData;
362
363 } BMM_CALLBACK_DATA;
364
365 /**
366
367 Find drivers that will be added as Driver#### variables from handles
368 in current system environment
369 All valid handles in the system except those consume SimpleFs, LoadFile
370 are stored in DriverMenu for future use.
371
372 @retval EFI_SUCCESS The function complets successfully.
373 @return Other value if failed to build the DriverMenu.
374
375 **/
376 EFI_STATUS
377 BOpt_FindDrivers (
378 VOID
379 );
380
381 /**
382
383 Build the BootOptionMenu according to BootOrder Variable.
384 This Routine will access the Boot#### to get EFI_LOAD_OPTION.
385
386 @param CallbackData The BMM context data.
387
388 @return The number of the Var Boot####.
389
390 **/
391 EFI_STATUS
392 BOpt_GetBootOptions (
393 IN BMM_CALLBACK_DATA *CallbackData
394 );
395
396 /**
397
398 Build up all DriverOptionMenu
399
400 @param CallbackData The BMM context data.
401
402 @return EFI_SUCESS The functin completes successfully.
403 @retval EFI_OUT_OF_RESOURCES Not enough memory to compete the operation.
404
405
406 **/
407 EFI_STATUS
408 BOpt_GetDriverOptions (
409 IN BMM_CALLBACK_DATA *CallbackData
410 );
411
412 /**
413 Free resources allocated in Allocate Rountine.
414
415 @param FreeMenu Menu to be freed
416
417 **/
418 VOID
419 BOpt_FreeMenu (
420 BM_MENU_OPTION *FreeMenu
421 );
422
423 /**
424
425 Get the Option Number that has not been allocated for use.
426
427 @param Type The type of Option.
428
429 @return The available Option Number.
430
431 **/
432 UINT16
433 BOpt_GetOptionNumber (
434 CHAR16 *Type
435 );
436
437 /**
438
439 Get the Option Number for Boot#### that does not used.
440
441 @return The available Option Number.
442
443 **/
444 UINT16
445 BOpt_GetBootOptionNumber (
446 VOID
447 );
448
449 /**
450
451 Get the Option Number for Driver#### that does not used.
452
453 @return The unused Option Number.
454
455 **/
456 UINT16
457 BOpt_GetDriverOptionNumber (
458 VOID
459 );
460
461 /**
462 Create a menu entry give a Menu type.
463
464 @param MenuType The Menu type to be created.
465
466
467 @retval NULL If failed to create the menu.
468 @return The menu.
469
470 **/
471 BM_MENU_ENTRY *
472 BOpt_CreateMenuEntry (
473 UINTN MenuType
474 );
475
476 /**
477 Free up all resource allocated for a BM_MENU_ENTRY.
478
479 @param MenuEntry A pointer to BM_MENU_ENTRY.
480
481 **/
482 VOID
483 BOpt_DestroyMenuEntry (
484 BM_MENU_ENTRY *MenuEntry
485 );
486
487 /**
488 Get the Menu Entry from the list in Menu Entry List.
489
490 If MenuNumber is great or equal to the number of Menu
491 Entry in the list, then ASSERT.
492
493 @param MenuOption The Menu Entry List to read the menu entry.
494 @param MenuNumber The index of Menu Entry.
495
496 @return The Menu Entry.
497
498 **/
499 BM_MENU_ENTRY *
500 BOpt_GetMenuEntry (
501 BM_MENU_OPTION *MenuOption,
502 UINTN MenuNumber
503 );
504
505 /**
506 Get option number according to Boot#### and BootOrder variable.
507 The value is saved as #### + 1.
508
509 @param CallbackData The BMM context data.
510 **/
511 VOID
512 GetBootOrder (
513 IN BMM_CALLBACK_DATA *CallbackData
514 );
515
516 /**
517 Get driver option order from globalc DriverOptionMenu.
518
519 @param CallbackData The BMM context data.
520
521 **/
522 VOID
523 GetDriverOrder (
524 IN BMM_CALLBACK_DATA *CallbackData
525 );
526
527 //
528 // Locate all serial io devices for console
529 //
530 /**
531 Build a list containing all serial devices.
532
533 @retval EFI_SUCCESS The function complete successfully.
534 @retval EFI_UNSUPPORTED No serial ports present.
535
536 **/
537 EFI_STATUS
538 LocateSerialIo (
539 VOID
540 );
541
542 //
543 // Initializing Console menu
544 //
545 /**
546 Build up ConsoleOutMenu, ConsoleInpMenu and ConsoleErrMenu
547
548 @retval EFI_SUCCESS The function always complete successfully.
549
550 **/
551 EFI_STATUS
552 GetAllConsoles(
553 VOID
554 );
555
556 //
557 // Get current mode information
558 //
559 /**
560 Get mode number according to column and row
561
562 @param CallbackData The BMM context data.
563 **/
564 VOID
565 GetConsoleOutMode (
566 IN BMM_CALLBACK_DATA *CallbackData
567 );
568
569 //
570 // Cleaning up console menu
571 //
572 /**
573 Free ConsoleOutMenu, ConsoleInpMenu and ConsoleErrMenu
574
575 @retval EFI_SUCCESS The function always complete successfully.
576 **/
577 EFI_STATUS
578 FreeAllConsoles (
579 VOID
580 );
581
582 /**
583 Update the device path that describing a terminal device
584 based on the new BaudRate, Data Bits, parity and Stop Bits
585 set.
586
587 @param DevicePath The devicepath protocol instance wanted to be updated.
588
589 **/
590 VOID
591 ChangeVariableDevicePath (
592 IN OUT EFI_DEVICE_PATH_PROTOCOL *DevicePath
593 );
594
595 /**
596 Update the multi-instance device path of Terminal Device based on
597 the global TerminalMenu. If ChangeTernimal is TRUE, the terminal
598 device path in the Terminal Device in TerminalMenu is also updated.
599
600 @param DevicePath The multi-instance device path.
601 @param ChangeTerminal TRUE, then device path in the Terminal Device
602 in TerminalMenu is also updated; FALSE, no update.
603
604 @return EFI_SUCCESS The function completes successfully.
605
606 **/
607 EFI_STATUS
608 ChangeTerminalDevicePath (
609 IN OUT EFI_DEVICE_PATH_PROTOCOL *DevicePath,
610 IN BOOLEAN ChangeTerminal
611 );
612
613 //
614 // Variable operation by menu selection
615 //
616 /**
617 This function create a currently loaded Boot Option from
618 the BMM. It then appends this Boot Option to the end of
619 the "BootOrder" list. It also append this Boot Opotion to the end
620 of BootOptionMenu.
621
622 @param CallbackData The BMM context data.
623
624 @retval EFI_OUT_OF_RESOURCES If not enought memory to complete the operation.
625 @retval EFI_SUCCESS If function completes successfully.
626
627 **/
628 EFI_STATUS
629 Var_UpdateBootOption (
630 IN BMM_CALLBACK_DATA *CallbackData
631 );
632
633 /**
634 Delete Boot Option that represent a Deleted state in BootOptionMenu.
635 After deleting this boot option, call Var_ChangeBootOrder to
636 make sure BootOrder is in valid state.
637
638 @retval EFI_SUCCESS If all boot load option EFI Variables corresponding to
639 BM_LOAD_CONTEXT marked for deletion is deleted
640 @return Others If failed to update the "BootOrder" variable after deletion.
641
642 **/
643 EFI_STATUS
644 Var_DelBootOption (
645 VOID
646 );
647
648 /**
649 After any operation on Boot####, there will be a discrepancy in BootOrder.
650 Since some are missing but in BootOrder, while some are present but are
651 not reflected by BootOrder. Then a function rebuild BootOrder from
652 scratch by content from BootOptionMenu is needed.
653
654 @retval EFI_SUCCESS The boot order is updated successfully.
655 @return other than EFI_SUCCESS if failed to change the "BootOrder" EFI Variable.
656
657 **/
658 EFI_STATUS
659 Var_ChangeBootOrder (
660 VOID
661 );
662
663 /**
664 This function create a currently loaded Drive Option from
665 the BMM. It then appends this Driver Option to the end of
666 the "DriverOrder" list. It append this Driver Opotion to the end
667 of DriverOptionMenu.
668
669 @param CallbackData The BMM context data.
670 @param HiiHandle The HII handle associated with the BMM formset.
671 @param DescriptionData The description of this driver option.
672 @param OptionalData The optional load option.
673 @param ForceReconnect If to force reconnect.
674
675 @retval EFI_OUT_OF_RESOURCES If not enought memory to complete the operation.
676 @retval EFI_SUCCESS If function completes successfully.
677
678 **/
679 EFI_STATUS
680 Var_UpdateDriverOption (
681 IN BMM_CALLBACK_DATA *CallbackData,
682 IN EFI_HII_HANDLE HiiHandle,
683 IN UINT16 *DescriptionData,
684 IN UINT16 *OptionalData,
685 IN UINT8 ForceReconnect
686 );
687
688 /**
689 Delete Load Option that represent a Deleted state in BootOptionMenu.
690 After deleting this Driver option, call Var_ChangeDriverOrder to
691 make sure DriverOrder is in valid state.
692
693 @retval EFI_SUCCESS Load Option is successfully updated.
694 @return Other value than EFI_SUCCESS if failed to update "Driver Order" EFI
695 Variable.
696
697 **/
698 EFI_STATUS
699 Var_DelDriverOption (
700 VOID
701 );
702
703 /**
704 After any operation on Driver####, there will be a discrepancy in
705 DriverOrder. Since some are missing but in DriverOrder, while some
706 are present but are not reflected by DriverOrder. Then a function
707 rebuild DriverOrder from scratch by content from DriverOptionMenu is
708 needed.
709
710 @retval EFI_SUCCESS The driver order is updated successfully.
711 @return other than EFI_SUCCESS if failed to set the "DriverOrder" EFI Variable.
712
713 **/
714 EFI_STATUS
715 Var_ChangeDriverOrder (
716 VOID
717 );
718
719 /**
720 This function delete and build multi-instance device path ConIn
721 console device.
722
723 @retval EFI_SUCCESS The function complete successfully.
724 @return The EFI variable can not be saved. See gRT->SetVariable for detail return information.
725 **/
726 EFI_STATUS
727 Var_UpdateConsoleInpOption (
728 VOID
729 );
730
731 /**
732 This function delete and build multi-instance device path ConOut console device.
733
734 @retval EFI_SUCCESS The function complete successfully.
735 @return The EFI variable can not be saved. See gRT->SetVariable for detail return information.
736 **/
737 EFI_STATUS
738 Var_UpdateConsoleOutOption (
739 VOID
740 );
741
742 /**
743 This function delete and build multi-instance device path ErrOut console device.
744
745 @retval EFI_SUCCESS The function complete successfully.
746 @return The EFI variable can not be saved. See gRT->SetVariable for detail return information.
747 **/
748 EFI_STATUS
749 Var_UpdateErrorOutOption (
750 VOID
751 );
752
753 /**
754 This function delete and build Out of Band console device.
755
756 @param MenuIndex Menu index which user select in the terminal menu list.
757
758 @retval EFI_SUCCESS The function complete successfully.
759 @return The EFI variable can not be saved. See gRT->SetVariable for detail return information.
760 **/
761 EFI_STATUS
762 Var_UpdateOutOfBandOption (
763 IN UINT16 MenuIndex
764 );
765
766 /**
767 This function update the "BootNext" EFI Variable. If there is no "BootNex" specified in BMM,
768 this EFI Variable is deleted.
769 It also update the BMM context data specified the "BootNext" value.
770
771 @param CallbackData The BMM context data.
772
773 @retval EFI_SUCCESS The function complete successfully.
774 @return The EFI variable can not be saved. See gRT->SetVariable for detail return information.
775
776 **/
777 EFI_STATUS
778 Var_UpdateBootNext (
779 IN BMM_CALLBACK_DATA *CallbackData
780 );
781
782 /**
783 This function update the "BootOrder" EFI Variable based on BMM Formset's NV map. It then refresh
784 BootOptionMenu with the new "BootOrder" list.
785
786 @param CallbackData The BMM context data.
787
788 @retval EFI_SUCCESS The function complete successfully.
789 @retval EFI_OUT_OF_RESOURCES Not enough memory to complete the function.
790 @return not The EFI variable can not be saved. See gRT->SetVariable for detail return information.
791
792 **/
793 EFI_STATUS
794 Var_UpdateBootOrder (
795 IN BMM_CALLBACK_DATA *CallbackData
796 );
797
798 /**
799 This function update the "DriverOrder" EFI Variable based on
800 BMM Formset's NV map. It then refresh DriverOptionMenu
801 with the new "DriverOrder" list.
802
803 @param CallbackData The BMM context data.
804
805 @retval EFI_SUCCESS The function complete successfully.
806 @retval EFI_OUT_OF_RESOURCES Not enough memory to complete the function.
807 @return The EFI variable can not be saved. See gRT->SetVariable for detail return information.
808
809 **/
810 EFI_STATUS
811 Var_UpdateDriverOrder (
812 IN BMM_CALLBACK_DATA *CallbackData
813 );
814
815 /**
816 Update the Text Mode of Console.
817
818 @param CallbackData The context data for BMM.
819
820 @retval EFI_SUCCSS If the Text Mode of Console is updated.
821 @return Other value if the Text Mode of Console is not updated.
822
823 **/
824 EFI_STATUS
825 Var_UpdateConMode (
826 IN BMM_CALLBACK_DATA *CallbackData
827 );
828
829 //
830 // Following are page create and refresh functions
831 //
832 /**
833 Create the global UpdateData structure.
834
835 **/
836 VOID
837 CreateUpdateData (
838 VOID
839 );
840
841 /**
842 Refresh the global UpdateData structure.
843
844 **/
845 VOID
846 RefreshUpdateData (
847 VOID
848 );
849
850 /**
851 Clean up the dynamic opcode at label and form specified by
852 both LabelId.
853
854 @param LabelId It is both the Form ID and Label ID for
855 opcode deletion.
856 @param CallbackData The BMM context data.
857
858 **/
859 VOID
860 CleanUpPage (
861 IN UINT16 LabelId,
862 IN BMM_CALLBACK_DATA *CallbackData
863 );
864
865 /**
866 Create a lit of boot option from global BootOptionMenu. It
867 allow user to delete the boot option.
868
869 @param CallbackData The BMM context data.
870
871 **/
872 VOID
873 UpdateBootDelPage (
874 IN BMM_CALLBACK_DATA *CallbackData
875 );
876
877 /**
878 Create a lit of driver option from global DriverMenu.
879
880 @param CallbackData The BMM context data.
881 **/
882 VOID
883 UpdateDrvAddHandlePage (
884 IN BMM_CALLBACK_DATA *CallbackData
885 );
886
887 /**
888 Create a lit of driver option from global DriverOptionMenu. It
889 allow user to delete the driver option.
890
891 @param CallbackData The BMM context data.
892 **/
893 VOID
894 UpdateDrvDelPage (
895 IN BMM_CALLBACK_DATA *CallbackData
896 );
897
898 /**
899 Prepare the page to allow user to add description for a Driver Option.
900
901 @param CallbackData The BMM context data.
902 **/
903 VOID
904 UpdateDriverAddHandleDescPage (
905 IN BMM_CALLBACK_DATA *CallbackData
906 );
907
908 /**
909 Dispatch the correct update page function to call based on the UpdatePageId.
910
911 @param UpdatePageId The form ID.
912 @param CallbackData The BMM context data.
913 **/
914 VOID
915 UpdatePageBody (
916 IN UINT16 UpdatePageId,
917 IN BMM_CALLBACK_DATA *CallbackData
918 );
919
920 /**
921 Create the dynamic page to allow user to set the "BootNext" vaule.
922
923 @param CallbackData The BMM context data.
924 **/
925 VOID
926 UpdateBootNextPage (
927 IN BMM_CALLBACK_DATA *CallbackData
928 );
929
930 /**
931 Create the dynamic page to allow user to set the "TimeOut" vaule.
932
933 @param CallbackData The BMM context data.
934 **/
935 VOID
936 UpdateTimeOutPage (
937 IN BMM_CALLBACK_DATA *CallbackData
938 );
939
940 /**
941 Create the dynamic page which allows user to set the property such as Baud Rate, Data Bits,
942 Parity, Stop Bits, Terminal Type.
943
944 @param CallbackData The BMM context data.
945 **/
946 VOID
947 UpdateTerminalPage (
948 IN BMM_CALLBACK_DATA *CallbackData
949 );
950
951 /**
952 Refresh the text mode page
953
954 @param CallbackData The BMM context data.
955 **/
956 VOID
957 UpdateConModePage (
958 IN BMM_CALLBACK_DATA *CallbackData
959 );
960
961 /**
962 Create a list of Goto Opcode for all terminal devices logged
963 by TerminaMenu. This list will be inserted to form FORM_CON_COM_SETUP_ID.
964
965 @param CallbackData The BMM context data.
966 **/
967 VOID
968 UpdateConCOMPage (
969 IN BMM_CALLBACK_DATA *CallbackData
970 );
971
972 /**
973 Update add boot/driver option page.
974
975 @param CallbackData The BMM context data.
976 @param FormId The form ID to be updated.
977 @param DevicePath Device path.
978
979 **/
980 VOID
981 UpdateOptionPage(
982 IN BMM_CALLBACK_DATA *CallbackData,
983 IN EFI_FORM_ID FormId,
984 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
985 );
986
987 /**
988 Function deletes the variable specified by VarName and VarGuid.
989
990
991 @param VarName A Null-terminated Unicode string that is
992 the name of the vendor's variable.
993
994 @param VarGuid A unique identifier for the vendor.
995
996 @retval EFI_SUCCESS The variable was found and removed
997 @retval EFI_UNSUPPORTED The variable store was inaccessible
998 @retval EFI_OUT_OF_RESOURCES The temporary buffer was not available
999 @retval EFI_NOT_FOUND The variable was not found
1000
1001 **/
1002 EFI_STATUS
1003 EfiLibDeleteVariable (
1004 IN CHAR16 *VarName,
1005 IN EFI_GUID *VarGuid
1006 );
1007
1008 /**
1009 Function is used to determine the number of device path instances
1010 that exist in a device path.
1011
1012
1013 @param DevicePath A pointer to a device path data structure.
1014
1015 @return This function counts and returns the number of device path instances
1016 in DevicePath.
1017
1018 **/
1019 UINTN
1020 EfiDevicePathInstanceCount (
1021 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
1022 );
1023
1024 /**
1025 Get a string from the Data Hub record based on
1026 a device path.
1027
1028 @param DevPath The device Path.
1029
1030 @return A string located from the Data Hub records based on
1031 the device path.
1032 @retval NULL If failed to get the String from Data Hub.
1033
1034 **/
1035 UINT16 *
1036 EfiLibStrFromDatahub (
1037 IN EFI_DEVICE_PATH_PROTOCOL *DevPath
1038 );
1039
1040 /**
1041 Get the index number (#### in Boot####) for the boot option pointed to a BBS legacy device type
1042 specified by DeviceType.
1043
1044 @param DeviceType The legacy device type. It can be floppy, network, harddisk, cdrom,
1045 etc.
1046 @param OptionIndex Returns the index number (#### in Boot####).
1047 @param OptionSize Return the size of the Boot### variable.
1048
1049 **/
1050 VOID *
1051 GetLegacyBootOptionVar (
1052 IN UINTN DeviceType,
1053 OUT UINTN *OptionIndex,
1054 OUT UINTN *OptionSize
1055 );
1056
1057 /**
1058 Discard all changes done to the BMM pages such as Boot Order change,
1059 Driver order change.
1060
1061 @param Private The BMM context data.
1062 @param CurrentFakeNVMap The current Fack NV Map.
1063
1064 **/
1065 VOID
1066 DiscardChangeHandler (
1067 IN BMM_CALLBACK_DATA *Private,
1068 IN BMM_FAKE_NV_DATA *CurrentFakeNVMap
1069 );
1070
1071 /**
1072 Dispatch the display to the next page based on NewPageId.
1073
1074 @param Private The BMM context data.
1075 @param NewPageId The original page ID.
1076
1077 **/
1078 VOID
1079 UpdatePageId (
1080 BMM_CALLBACK_DATA *Private,
1081 UINT16 NewPageId
1082 );
1083
1084 /**
1085 Remove the installed BootMaint and FileExplorer HiiPackages.
1086
1087 **/
1088 VOID
1089 FreeBMPackage(
1090 VOID
1091 );
1092
1093 /**
1094 Install BootMaint and FileExplorer HiiPackages.
1095
1096 **/
1097 VOID
1098 InitBootMaintenance(
1099 VOID
1100 );
1101
1102 /**
1103
1104 Initialize console input device check box to ConsoleInCheck[MAX_MENU_NUMBER]
1105 in BMM_FAKE_NV_DATA structure.
1106
1107 @param CallbackData The BMM context data.
1108
1109 **/
1110 VOID
1111 GetConsoleInCheck (
1112 IN BMM_CALLBACK_DATA *CallbackData
1113 );
1114
1115 /**
1116
1117 Initialize console output device check box to ConsoleOutCheck[MAX_MENU_NUMBER]
1118 in BMM_FAKE_NV_DATA structure.
1119
1120 @param CallbackData The BMM context data.
1121
1122 **/
1123 VOID
1124 GetConsoleOutCheck (
1125 IN BMM_CALLBACK_DATA *CallbackData
1126 );
1127
1128 /**
1129
1130 Initialize standard error output device check box to ConsoleErrCheck[MAX_MENU_NUMBER]
1131 in BMM_FAKE_NV_DATA structure.
1132
1133 @param CallbackData The BMM context data.
1134
1135 **/
1136 VOID
1137 GetConsoleErrCheck (
1138 IN BMM_CALLBACK_DATA *CallbackData
1139 );
1140
1141 /**
1142
1143 Initialize terminal attributes (baudrate, data rate, stop bits, parity and terminal type)
1144 to BMM_FAKE_NV_DATA structure.
1145
1146 @param CallbackData The BMM context data.
1147
1148 **/
1149 VOID
1150 GetTerminalAttribute (
1151 IN BMM_CALLBACK_DATA *CallbackData
1152 );
1153
1154 /**
1155 This function will change video resolution and text mode
1156 according to defined setup mode or defined boot mode
1157
1158 @param IsSetupMode Indicate mode is changed to setup mode or boot mode.
1159
1160 @retval EFI_SUCCESS Mode is changed successfully.
1161 @retval Others Mode failed to be changed.
1162
1163 **/
1164 EFI_STATUS
1165 EFIAPI
1166 BmmBdsSetConsoleMode (
1167 BOOLEAN IsSetupMode
1168 );
1169
1170
1171 /**
1172 This function converts an input device structure to a Unicode string.
1173
1174 @param DevPath A pointer to the device path structure.
1175
1176 @return A new allocated Unicode string that represents the device path.
1177
1178 **/
1179 CHAR16 *
1180 UiDevicePathToStr (
1181 IN EFI_DEVICE_PATH_PROTOCOL *DevPath
1182 );
1183
1184 /**
1185 Extract filename from device path. The returned buffer is allocated using AllocateCopyPool.
1186 The caller is responsible for freeing the allocated buffer using FreePool().
1187
1188 @param DevicePath Device path.
1189
1190 @return A new allocated string that represents the file name.
1191
1192 **/
1193 CHAR16 *
1194 ExtractFileNameFromDevicePath (
1195 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
1196 );
1197
1198 /**
1199 This function allows a caller to extract the current configuration for one
1200 or more named elements from the target driver.
1201
1202 @param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
1203 @param Request A null-terminated Unicode string in <ConfigRequest> format.
1204 @param Progress On return, points to a character in the Request string.
1205 Points to the string's null terminator if request was successful.
1206 Points to the most recent '&' before the first failing name/value
1207 pair (or the beginning of the string if the failure is in the
1208 first name/value pair) if the request was not successful.
1209 @param Results A null-terminated Unicode string in <ConfigAltResp> format which
1210 has all values filled in for the names in the Request string.
1211 String to be allocated by the called function.
1212
1213 @retval EFI_SUCCESS The Results is filled with the requested values.
1214 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the results.
1215 @retval EFI_INVALID_PARAMETER Request is NULL, illegal syntax, or unknown name.
1216 @retval EFI_NOT_FOUND Routing data doesn't match any storage in this driver.
1217
1218 **/
1219 EFI_STATUS
1220 EFIAPI
1221 BootMaintExtractConfig (
1222 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
1223 IN CONST EFI_STRING Request,
1224 OUT EFI_STRING *Progress,
1225 OUT EFI_STRING *Results
1226 );
1227
1228 /**
1229 This function applies changes in a driver's configuration.
1230 Input is a Configuration, which has the routing data for this
1231 driver followed by name / value configuration pairs. The driver
1232 must apply those pairs to its configurable storage. If the
1233 driver's configuration is stored in a linear block of data
1234 and the driver's name / value pairs are in <BlockConfig>
1235 format, it may use the ConfigToBlock helper function (above) to
1236 simplify the job. Currently not implemented.
1237
1238 @param[in] This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
1239 @param[in] Configuration A null-terminated Unicode string in
1240 <ConfigString> format.
1241 @param[out] Progress A pointer to a string filled in with the
1242 offset of the most recent '&' before the
1243 first failing name / value pair (or the
1244 beginn ing of the string if the failure
1245 is in the first name / value pair) or
1246 the terminating NULL if all was
1247 successful.
1248
1249 @retval EFI_SUCCESS The results have been distributed or are
1250 awaiting distribution.
1251 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the
1252 parts of the results that must be
1253 stored awaiting possible future
1254 protocols.
1255 @retval EFI_INVALID_PARAMETERS Passing in a NULL for the
1256 Results parameter would result
1257 in this type of error.
1258 @retval EFI_NOT_FOUND Target for the specified routing data
1259 was not found.
1260 **/
1261 EFI_STATUS
1262 EFIAPI
1263 BootMaintRouteConfig (
1264 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
1265 IN CONST EFI_STRING Configuration,
1266 OUT EFI_STRING *Progress
1267 );
1268
1269 /**
1270 This function processes the results of changes in configuration.
1271
1272
1273 @param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
1274 @param Action Specifies the type of action taken by the browser.
1275 @param QuestionId A unique value which is sent to the original exporting driver
1276 so that it can identify the type of data to expect.
1277 @param Type The type of value for the question.
1278 @param Value A pointer to the data being sent to the original exporting driver.
1279 @param ActionRequest On return, points to the action requested by the callback function.
1280
1281 @retval EFI_SUCCESS The callback successfully handled the action.
1282 @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the variable and its data.
1283 @retval EFI_DEVICE_ERROR The variable could not be saved.
1284 @retval EFI_UNSUPPORTED The specified Action is not supported by the callback.
1285 @retval EFI_INVALID_PARAMETER The parameter of Value or ActionRequest is invalid.
1286 **/
1287 EFI_STATUS
1288 EFIAPI
1289 BootMaintCallback (
1290 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
1291 IN EFI_BROWSER_ACTION Action,
1292 IN EFI_QUESTION_ID QuestionId,
1293 IN UINT8 Type,
1294 IN EFI_IFR_TYPE_VALUE *Value,
1295 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest
1296 );
1297
1298 /**
1299 Create boot option base on the input file path info.
1300
1301 @param FilePath Point to the file path.
1302
1303 @retval TRUE Exit caller function.
1304 @retval FALSE Not exit caller function.
1305
1306 **/
1307 BOOLEAN
1308 EFIAPI
1309 CreateBootOptionFromFile (
1310 IN EFI_DEVICE_PATH_PROTOCOL *FilePath
1311 );
1312
1313 /**
1314 Create driver option base on the input file path info.
1315
1316 @param FilePath Point to the file path.
1317
1318 @retval TRUE Exit caller function.
1319 @retval FALSE Not exit caller function.
1320 **/
1321 BOOLEAN
1322 EFIAPI
1323 CreateDriverOptionFromFile (
1324 IN EFI_DEVICE_PATH_PROTOCOL *FilePath
1325 );
1326
1327 /**
1328 Boot the file specified by the input file path info.
1329
1330 @param FilePath Point to the file path.
1331
1332 @retval TRUE Exit caller function.
1333 @retval FALSE Not exit caller function.
1334
1335 **/
1336 BOOLEAN
1337 EFIAPI
1338 BootFromFile (
1339 IN EFI_DEVICE_PATH_PROTOCOL *FilePath
1340 );
1341
1342 //
1343 // Global variable in this program (defined in data.c)
1344 //
1345 extern BM_MENU_OPTION BootOptionMenu;
1346 extern BM_MENU_OPTION DriverOptionMenu;
1347 extern BM_MENU_OPTION ConsoleInpMenu;
1348 extern BM_MENU_OPTION ConsoleOutMenu;
1349 extern BM_MENU_OPTION ConsoleErrMenu;
1350 extern BM_MENU_OPTION DriverMenu;
1351 extern BM_MENU_OPTION TerminalMenu;
1352 extern UINT16 TerminalType[5];
1353 extern COM_ATTR BaudRateList[19];
1354 extern COM_ATTR DataBitsList[4];
1355 extern COM_ATTR ParityList[5];
1356 extern COM_ATTR StopBitsList[3];
1357 extern EFI_GUID TerminalTypeGuid[5];
1358 extern EFI_DEVICE_PATH_PROTOCOL EndDevicePath[];
1359 extern UINT16 mFlowControlType[2];
1360 extern UINT32 mFlowControlValue[2];
1361
1362 //
1363 // Shared IFR form update data
1364 //
1365 extern VOID *mStartOpCodeHandle;
1366 extern VOID *mEndOpCodeHandle;
1367 extern EFI_IFR_GUID_LABEL *mStartLabel;
1368 extern EFI_IFR_GUID_LABEL *mEndLabel;
1369 extern BMM_CALLBACK_DATA gBootMaintenancePrivate;
1370 extern BMM_CALLBACK_DATA *mBmmCallbackInfo;
1371
1372 #endif