]> git.proxmox.com Git - mirror_edk2.git/blob - EdkUnixPkg/Library/EdkGenericBdsLib/BdsMisc.c
Unix version of EFI emulator
[mirror_edk2.git] / EdkUnixPkg / Library / EdkGenericBdsLib / BdsMisc.c
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 BdsMisc.c
15
16 Abstract:
17
18 Misc BDS library function
19
20 --*/
21
22 #define MAX_STRING_LEN 200
23 static BOOLEAN mFeaturerSwitch = TRUE;
24 static BOOLEAN mResetRequired = FALSE;
25 extern UINT16 gPlatformBootTimeOutDefault;
26
27 UINT16
28 BdsLibGetTimeout (
29 VOID
30 )
31 /*++
32
33 Routine Description:
34
35 Return the default value for system Timeout variable.
36
37 Arguments:
38
39 None
40
41 Returns:
42
43 Timeout value.
44
45 --*/
46 {
47 UINT16 Timeout;
48 UINTN Size;
49 EFI_STATUS Status;
50
51 //
52 // Return Timeout variable or 0xffff if no valid
53 // Timeout variable exists.
54 //
55 Size = sizeof (UINT16);
56 Status = gRT->GetVariable (L"Timeout", &gEfiGlobalVariableGuid, NULL, &Size, &Timeout);
57 if (!EFI_ERROR (Status)) {
58 return Timeout;
59 }
60 //
61 // To make the current EFI Automatic-Test activity possible, just add
62 // following code to make AutoBoot enabled when this variable is not
63 // present.
64 // This code should be removed later.
65 //
66 Timeout = gPlatformBootTimeOutDefault;
67
68 //
69 // Notes: Platform should set default variable if non exists on all error cases!!!
70 //
71 Status = gRT->SetVariable (
72 L"Timeout",
73 &gEfiGlobalVariableGuid,
74 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
75 sizeof (UINT16),
76 &Timeout
77 );
78 return Timeout;
79 }
80
81 VOID
82 BdsLibLoadDrivers (
83 IN LIST_ENTRY *BdsDriverLists
84 )
85 /*++
86
87 Routine Description:
88
89 The function will go through the driver optoin link list, load and start
90 every driver the driver optoin device path point to.
91
92 Arguments:
93
94 BdsDriverLists - The header of the current driver option link list
95
96 Returns:
97
98 None
99
100 --*/
101 {
102 EFI_STATUS Status;
103 LIST_ENTRY *Link;
104 BDS_COMMON_OPTION *Option;
105 EFI_HANDLE ImageHandle;
106 EFI_LOADED_IMAGE_PROTOCOL *ImageInfo;
107 UINTN ExitDataSize;
108 CHAR16 *ExitData;
109 BOOLEAN ReconnectAll;
110
111 ReconnectAll = FALSE;
112
113 //
114 // Process the driver option
115 //
116 for (Link = BdsDriverLists->ForwardLink; Link != BdsDriverLists; Link = Link->ForwardLink) {
117 Option = CR (Link, BDS_COMMON_OPTION, Link, BDS_LOAD_OPTION_SIGNATURE);
118 //
119 // If a load option is not marked as LOAD_OPTION_ACTIVE,
120 // the boot manager will not automatically load the option.
121 //
122 if (!IS_LOAD_OPTION_TYPE (Option->Attribute, LOAD_OPTION_ACTIVE)) {
123 continue;
124 }
125 //
126 // If a driver load option is marked as LOAD_OPTION_FORCE_RECONNECT,
127 // then all of the EFI drivers in the system will be disconnected and
128 // reconnected after the last driver load option is processed.
129 //
130 if (IS_LOAD_OPTION_TYPE (Option->Attribute, LOAD_OPTION_FORCE_RECONNECT)) {
131 ReconnectAll = TRUE;
132 }
133 //
134 // Make sure the driver path is connected.
135 //
136 BdsLibConnectDevicePath (Option->DevicePath);
137
138 //
139 // Load and start the image that Driver#### describes
140 //
141 Status = gBS->LoadImage (
142 FALSE,
143 mBdsImageHandle,
144 Option->DevicePath,
145 NULL,
146 0,
147 &ImageHandle
148 );
149
150 if (!EFI_ERROR (Status)) {
151 gBS->HandleProtocol (ImageHandle, &gEfiLoadedImageProtocolGuid,
152 (VOID **)&ImageInfo);
153
154 //
155 // Verify whether this image is a driver, if not,
156 // exit it and continue to parse next load option
157 //
158 if (ImageInfo->ImageCodeType != EfiBootServicesCode && ImageInfo->ImageCodeType != EfiRuntimeServicesCode) {
159 gBS->Exit (ImageHandle, EFI_INVALID_PARAMETER, 0, NULL);
160 continue;
161 }
162
163 if (Option->LoadOptionsSize != 0) {
164 ImageInfo->LoadOptionsSize = Option->LoadOptionsSize;
165 ImageInfo->LoadOptions = Option->LoadOptions;
166 }
167 //
168 // Before calling the image, enable the Watchdog Timer for
169 // the 5 Minute period
170 //
171 gBS->SetWatchdogTimer (5 * 60, 0x0000, 0x00, NULL);
172
173 Status = gBS->StartImage (ImageHandle, &ExitDataSize, &ExitData);
174 DEBUG ((EFI_D_INFO | EFI_D_LOAD, "Driver Return Status = %r\n", Status));
175
176 //
177 // Clear the Watchdog Timer after the image returns
178 //
179 gBS->SetWatchdogTimer (0x0000, 0x0000, 0x0000, NULL);
180 }
181 }
182 //
183 // Process the LOAD_OPTION_FORCE_RECONNECT driver option
184 //
185 if (ReconnectAll) {
186 BdsLibDisconnectAllEfi ();
187 BdsLibConnectAll ();
188 }
189
190 }
191
192 EFI_STATUS
193 BdsLibRegisterNewOption (
194 IN LIST_ENTRY *BdsOptionList,
195 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
196 IN CHAR16 *String,
197 IN CHAR16 *VariableName
198 )
199 /*++
200
201 Routine Description:
202
203 This function will register the new boot#### or driver#### option base on
204 the VariableName. The new registered boot#### or driver#### will be linked
205 to BdsOptionList and also update to the VariableName. After the boot#### or
206 driver#### updated, the BootOrder or DriverOrder will also be updated.
207
208 Arguments:
209
210 BdsOptionList - The header of the boot#### or driver#### link list
211
212 DevicePath - The device path which the boot####
213 or driver#### option present
214
215 String - The description of the boot#### or driver####
216
217 VariableName - Indicate if the boot#### or driver#### option
218
219 Returns:
220
221 EFI_SUCCESS - The boot#### or driver#### have been success registered
222
223 EFI_STATUS - Return the status of gRT->SetVariable ().
224
225 --*/
226 {
227 EFI_STATUS Status;
228 UINTN Index;
229 UINT16 MaxOptionNumber;
230 UINT16 RegisterOptionNumber;
231 UINT16 *TempOptionPtr;
232 UINTN TempOptionSize;
233 UINT16 *OptionOrderPtr;
234 VOID *OptionPtr;
235 UINTN OptionSize;
236 UINT8 *TempPtr;
237 EFI_DEVICE_PATH_PROTOCOL *OptionDevicePath;
238 CHAR16 *Description;
239 CHAR16 OptionName[10];
240 BOOLEAN UpdateBootDevicePath;
241
242 OptionPtr = NULL;
243 OptionSize = 0;
244 TempPtr = NULL;
245 OptionDevicePath = NULL;
246 Description = NULL;
247 MaxOptionNumber = 0;
248 OptionOrderPtr = NULL;
249 UpdateBootDevicePath = FALSE;
250 ZeroMem (OptionName, sizeof (OptionName));
251
252 TempOptionSize = 0;
253 TempOptionPtr = BdsLibGetVariableAndSize (
254 VariableName,
255 &gEfiGlobalVariableGuid,
256 &TempOptionSize
257 );
258 //
259 // Compare with current option variable
260 //
261 for (Index = 0; Index < TempOptionSize / sizeof (UINT16); Index++) {
262 //
263 // Got the max option#### number
264 //
265 if (MaxOptionNumber < TempOptionPtr[Index]) {
266 MaxOptionNumber = TempOptionPtr[Index];
267 }
268
269 if (*VariableName == 'B') {
270 UnicodeSPrint (OptionName, sizeof (OptionName), L"Boot%04x", TempOptionPtr[Index]);
271 } else {
272 UnicodeSPrint (OptionName, sizeof (OptionName), L"Driver%04x", TempOptionPtr[Index]);
273 }
274
275 OptionPtr = BdsLibGetVariableAndSize (
276 OptionName,
277 &gEfiGlobalVariableGuid,
278 &OptionSize
279 );
280 TempPtr = OptionPtr;
281 TempPtr += sizeof (UINT32) + sizeof (UINT16);
282 Description = (CHAR16 *) TempPtr;
283 TempPtr += StrSize ((CHAR16 *) TempPtr);
284 OptionDevicePath = (EFI_DEVICE_PATH_PROTOCOL *) TempPtr;
285
286 //
287 // Notes: the description may will change base on the GetStringToken
288 //
289 if (CompareMem (Description, String, StrSize (Description)) == 0) {
290 if (CompareMem (OptionDevicePath, DevicePath, GetDevicePathSize (OptionDevicePath)) == 0) {
291 //
292 // Got the option, so just return
293 //
294 gBS->FreePool (OptionPtr);
295 gBS->FreePool (TempOptionPtr);
296 return EFI_SUCCESS;
297 } else {
298 //
299 // Boot device path changed, need update.
300 //
301 UpdateBootDevicePath = TRUE;
302 break;
303 }
304 }
305
306 gBS->FreePool (OptionPtr);
307 }
308
309 OptionSize = sizeof (UINT32) + sizeof (UINT16) + StrSize (String) + GetDevicePathSize (DevicePath);
310 OptionPtr = AllocateZeroPool (OptionSize);
311 TempPtr = OptionPtr;
312 *(UINT32 *) TempPtr = LOAD_OPTION_ACTIVE;
313 TempPtr += sizeof (UINT32);
314 *(UINT16 *) TempPtr = (UINT16) GetDevicePathSize (DevicePath);
315 TempPtr += sizeof (UINT16);
316 CopyMem (TempPtr, String, StrSize (String));
317 TempPtr += StrSize (String);
318 CopyMem (TempPtr, DevicePath, GetDevicePathSize (DevicePath));
319
320 if (UpdateBootDevicePath) {
321 //
322 // The number in option#### to be updated
323 //
324 RegisterOptionNumber = TempOptionPtr[Index];
325 } else {
326 //
327 // The new option#### number
328 //
329 RegisterOptionNumber = MaxOptionNumber + 1;
330 }
331
332 if (*VariableName == 'B') {
333 UnicodeSPrint (OptionName, sizeof (OptionName), L"Boot%04x", RegisterOptionNumber);
334 } else {
335 UnicodeSPrint (OptionName, sizeof (OptionName), L"Driver%04x", RegisterOptionNumber);
336 }
337
338 Status = gRT->SetVariable (
339 OptionName,
340 &gEfiGlobalVariableGuid,
341 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
342 OptionSize,
343 OptionPtr
344 );
345 if (EFI_ERROR (Status) || UpdateBootDevicePath) {
346 gBS->FreePool (OptionPtr);
347 gBS->FreePool (TempOptionPtr);
348 return Status;
349 }
350
351 gBS->FreePool (OptionPtr);
352
353 //
354 // Update the option order variable
355 //
356 OptionOrderPtr = AllocateZeroPool ((Index + 1) * sizeof (UINT16));
357 CopyMem (OptionOrderPtr, TempOptionPtr, Index * sizeof (UINT16));
358 OptionOrderPtr[Index] = RegisterOptionNumber;
359 Status = gRT->SetVariable (
360 VariableName,
361 &gEfiGlobalVariableGuid,
362 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,
363 (Index + 1) * sizeof (UINT16),
364 OptionOrderPtr
365 );
366 if (EFI_ERROR (Status)) {
367 gBS->FreePool (TempOptionPtr);
368 gBS->FreePool (OptionOrderPtr);
369 return Status;
370 }
371
372 gBS->FreePool (TempOptionPtr);
373 gBS->FreePool (OptionOrderPtr);
374
375 return EFI_SUCCESS;
376 }
377
378 BDS_COMMON_OPTION *
379 BdsLibVariableToOption (
380 IN OUT LIST_ENTRY *BdsCommonOptionList,
381 IN CHAR16 *VariableName
382 )
383 /*++
384
385 Routine Description:
386
387 Build the boot#### or driver#### option from the VariableName, the
388 build boot#### or driver#### will also be linked to BdsCommonOptionList
389
390 Arguments:
391
392 BdsCommonOptionList - The header of the boot#### or driver#### option link list
393
394 VariableName - EFI Variable name indicate if it is boot#### or driver####
395
396 Returns:
397
398 BDS_COMMON_OPTION - Get the option just been created
399
400 NULL - Failed to get the new option
401
402 --*/
403 {
404 UINT32 Attribute;
405 UINT16 FilePathSize;
406 UINT8 *Variable;
407 UINT8 *TempPtr;
408 UINTN VariableSize;
409 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
410 BDS_COMMON_OPTION *Option;
411 VOID *LoadOptions;
412 UINT32 LoadOptionsSize;
413 CHAR16 *Description;
414
415 //
416 // Read the variable. We will never free this data.
417 //
418 Variable = BdsLibGetVariableAndSize (
419 VariableName,
420 &gEfiGlobalVariableGuid,
421 &VariableSize
422 );
423 if (Variable == NULL) {
424 return NULL;
425 }
426 //
427 // Notes: careful defined the variable of Boot#### or
428 // Driver####, consider use some macro to abstract the code
429 //
430 //
431 // Get the option attribute
432 //
433 TempPtr = Variable;
434 Attribute = *(UINT32 *) Variable;
435 TempPtr += sizeof (UINT32);
436
437 //
438 // Get the option's device path size
439 //
440 FilePathSize = *(UINT16 *) TempPtr;
441 TempPtr += sizeof (UINT16);
442
443 //
444 // Get the option's description string
445 //
446 Description = (CHAR16 *) TempPtr;
447
448 //
449 // Get the option's description string size
450 //
451 TempPtr += StrSize ((CHAR16 *) TempPtr);
452
453 //
454 // Get the option's device path
455 //
456 DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) TempPtr;
457 TempPtr += FilePathSize;
458
459 LoadOptions = TempPtr;
460 LoadOptionsSize = (UINT32) (VariableSize - (UINTN) (TempPtr - Variable));
461
462 //
463 // The Console variables may have multiple device paths, so make
464 // an Entry for each one.
465 //
466 Option = AllocateZeroPool (sizeof (BDS_COMMON_OPTION));
467 if (Option == NULL) {
468 return NULL;
469 }
470
471 Option->Signature = BDS_LOAD_OPTION_SIGNATURE;
472 Option->DevicePath = AllocateZeroPool (GetDevicePathSize (DevicePath));
473 CopyMem (Option->DevicePath, DevicePath, GetDevicePathSize (DevicePath));
474 Option->Attribute = Attribute;
475 Option->Description = AllocateZeroPool (StrSize (Description));
476 CopyMem (Option->Description, Description, StrSize (Description));
477 Option->LoadOptions = AllocateZeroPool (LoadOptionsSize);
478 CopyMem (Option->LoadOptions, LoadOptions, LoadOptionsSize);
479 Option->LoadOptionsSize = LoadOptionsSize;
480
481 //
482 // Insert active entry to BdsDeviceList
483 //
484 if ((Option->Attribute & LOAD_OPTION_ACTIVE) == LOAD_OPTION_ACTIVE) {
485 InsertTailList (BdsCommonOptionList, &Option->Link);
486 gBS->FreePool (Variable);
487 return Option;
488 }
489
490 gBS->FreePool (Variable);
491 gBS->FreePool (Option);
492 return NULL;
493
494 }
495
496 EFI_STATUS
497 BdsLibBuildOptionFromVar (
498 IN LIST_ENTRY *BdsCommonOptionList,
499 IN CHAR16 *VariableName
500 )
501 /*++
502
503 Routine Description:
504
505 Process BootOrder, or DriverOrder variables, by calling
506 BdsLibVariableToOption () for each UINT16 in the variables.
507
508 Arguments:
509
510 BdsCommonOptionList - The header of the option list base on variable
511 VariableName
512
513 VariableName - EFI Variable name indicate the BootOrder or DriverOrder
514
515 Returns:
516
517 EFI_SUCCESS - Success create the boot option or driver option list
518
519 EFI_OUT_OF_RESOURCES - Failed to get the boot option or driver option list
520
521 --*/
522 {
523 UINT16 *OptionOrder;
524 UINTN OptionOrderSize;
525 UINTN Index;
526 BDS_COMMON_OPTION *Option;
527 CHAR16 OptionName[20];
528
529 //
530 // Zero Buffer in order to get all BOOT#### variables
531 //
532 ZeroMem (OptionName, sizeof (OptionName));
533
534 //
535 // Read the BootOrder, or DriverOrder variable.
536 //
537 OptionOrder = BdsLibGetVariableAndSize (
538 VariableName,
539 &gEfiGlobalVariableGuid,
540 &OptionOrderSize
541 );
542 if (OptionOrder == NULL) {
543 return EFI_OUT_OF_RESOURCES;
544 }
545
546 for (Index = 0; Index < OptionOrderSize / sizeof (UINT16); Index++) {
547 if (*VariableName == 'B') {
548 UnicodeSPrint (OptionName, sizeof (OptionName), L"Boot%04x", OptionOrder[Index]);
549 } else {
550 UnicodeSPrint (OptionName, sizeof (OptionName), L"Driver%04x", OptionOrder[Index]);
551 }
552 Option = BdsLibVariableToOption (BdsCommonOptionList, OptionName);
553 Option->BootCurrent = OptionOrder[Index];
554
555 }
556
557 gBS->FreePool (OptionOrder);
558
559 return EFI_SUCCESS;
560 }
561
562 EFI_STATUS
563 BdsLibGetBootMode (
564 OUT EFI_BOOT_MODE *BootMode
565 )
566 /*++
567
568 Routine Description:
569
570 Get boot mode by looking up configuration table and parsing HOB list
571
572 Arguments:
573
574 BootMode - Boot mode from PEI handoff HOB.
575
576 Returns:
577
578 EFI_SUCCESS - Successfully get boot mode
579
580 EFI_NOT_FOUND - Can not find the current system boot mode
581
582 --*/
583 {
584 EFI_HOB_HANDOFF_INFO_TABLE *HobList;
585
586 HobList = GetHobList ();
587 ASSERT (HobList->Header.HobType == EFI_HOB_TYPE_HANDOFF);
588 *BootMode = HobList->BootMode;
589
590 return EFI_SUCCESS;
591 }
592
593 VOID *
594 BdsLibGetVariableAndSize (
595 IN CHAR16 *Name,
596 IN EFI_GUID *VendorGuid,
597 OUT UINTN *VariableSize
598 )
599 /*++
600
601 Routine Description:
602
603 Read the EFI variable (VendorGuid/Name) and return a dynamically allocated
604 buffer, and the size of the buffer. If failure return NULL.
605
606 Arguments:
607
608 Name - String part of EFI variable name
609
610 VendorGuid - GUID part of EFI variable name
611
612 VariableSize - Returns the size of the EFI variable that was read
613
614 Returns:
615
616 Dynamically allocated memory that contains a copy of the EFI variable.
617 Caller is responsible freeing the buffer.
618
619 NULL - Variable was not read
620
621 --*/
622 {
623 EFI_STATUS Status;
624 UINTN BufferSize;
625 VOID *Buffer;
626
627 Buffer = NULL;
628
629 //
630 // Pass in a zero size buffer to find the required buffer size.
631 //
632 BufferSize = 0;
633 Status = gRT->GetVariable (Name, VendorGuid, NULL, &BufferSize, Buffer);
634 if (Status == EFI_BUFFER_TOO_SMALL) {
635 //
636 // Allocate the buffer to return
637 //
638 Buffer = AllocateZeroPool (BufferSize);
639 if (Buffer == NULL) {
640 return NULL;
641 }
642 //
643 // Read variable into the allocated buffer.
644 //
645 Status = gRT->GetVariable (Name, VendorGuid, NULL, &BufferSize, Buffer);
646 if (EFI_ERROR (Status)) {
647 BufferSize = 0;
648 }
649 }
650
651 *VariableSize = BufferSize;
652 return Buffer;
653 }
654
655 BOOLEAN
656 BdsLibMatchDevicePaths (
657 IN EFI_DEVICE_PATH_PROTOCOL *Multi,
658 IN EFI_DEVICE_PATH_PROTOCOL *Single
659 )
660 /*++
661
662 Routine Description:
663
664 Function compares a device path data structure to that of all the nodes of a
665 second device path instance.
666
667 Arguments:
668
669 Multi - A pointer to a multi-instance device path data structure.
670
671 Single - A pointer to a single-instance device path data structure.
672
673 Returns:
674
675 TRUE - If the Single is contained within Multi
676
677 FALSE - The Single is not match within Multi
678
679
680 --*/
681 {
682 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
683 EFI_DEVICE_PATH_PROTOCOL *DevicePathInst;
684 UINTN Size;
685
686 if (!Multi || !Single) {
687 return FALSE;
688 }
689
690 DevicePath = Multi;
691 DevicePathInst = GetNextDevicePathInstance (&DevicePath, &Size);
692
693 //
694 // Search for the match of 'Single' in 'Multi'
695 //
696 while (DevicePathInst != NULL) {
697 //
698 // If the single device path is found in multiple device paths,
699 // return success
700 //
701 if (CompareMem (Single, DevicePathInst, Size) == 0) {
702 gBS->FreePool (DevicePathInst);
703 return TRUE;
704 }
705
706 gBS->FreePool (DevicePathInst);
707 DevicePathInst = GetNextDevicePathInstance (&DevicePath, &Size);
708 }
709
710 return FALSE;
711 }
712
713 EFI_STATUS
714 BdsLibOutputStrings (
715 IN EFI_SIMPLE_TEXT_OUT_PROTOCOL *ConOut,
716 ...
717 )
718 /*++
719
720 Routine Description:
721
722 This function prints a series of strings.
723
724 Arguments:
725
726 ConOut - Pointer to EFI_SIMPLE_TEXT_OUT_PROTOCOL
727
728 ... - A variable argument list containing series of strings,
729 the last string must be NULL.
730
731 Returns:
732
733 EFI_SUCCESS - Success print out the string using ConOut.
734
735 EFI_STATUS - Return the status of the ConOut->OutputString ().
736
737 --*/
738 {
739 VA_LIST args;
740 EFI_STATUS Status;
741 CHAR16 *String;
742
743 Status = EFI_SUCCESS;
744 VA_START (args, ConOut);
745
746 while (!EFI_ERROR (Status)) {
747 //
748 // If String is NULL, then it's the end of the list
749 //
750 String = VA_ARG (args, CHAR16 *);
751 if (!String) {
752 break;
753 }
754
755 Status = ConOut->OutputString (ConOut, String);
756
757 if (EFI_ERROR (Status)) {
758 break;
759 }
760 }
761
762 return Status;
763 }
764
765 //
766 // Following are BDS Lib functions which contain all the code about setup browser reset reminder feature.
767 // Setup Browser reset reminder feature is that an reset reminder will be given before user leaves the setup browser if
768 // user change any option setting which needs a reset to be effective, and the reset will be applied according to the user selection.
769 //
770
771 VOID
772 EnableResetReminderFeature (
773 VOID
774 )
775 /*++
776
777 Routine Description:
778
779 Enable the setup browser reset reminder feature.
780 This routine is used in platform tip. If the platform policy need the feature, use the routine to enable it.
781
782 Arguments:
783
784 VOID
785
786 Returns:
787
788 VOID
789
790 --*/
791 {
792 mFeaturerSwitch = TRUE;
793 }
794
795 VOID
796 DisableResetReminderFeature (
797 VOID
798 )
799 /*++
800
801 Routine Description:
802
803 Disable the setup browser reset reminder feature.
804 This routine is used in platform tip. If the platform policy do not want the feature, use the routine to disable it.
805
806 Arguments:
807
808 VOID
809
810 Returns:
811
812 VOID
813
814 --*/
815 {
816 mFeaturerSwitch = FALSE;
817 }
818
819 VOID
820 EnableResetRequired (
821 VOID
822 )
823 /*++
824
825 Routine Description:
826
827 Record the info that a reset is required.
828 A module boolean variable is used to record whether a reset is required.
829
830 Arguments:
831
832 VOID
833
834 Returns:
835
836 VOID
837
838 --*/
839 {
840 mResetRequired = TRUE;
841 }
842
843 VOID
844 DisableResetRequired (
845 VOID
846 )
847 /*++
848
849 Routine Description:
850
851 Record the info that no reset is required.
852 A module boolean variable is used to record whether a reset is required.
853
854 Arguments:
855
856 VOID
857
858 Returns:
859
860 VOID
861
862 --*/
863 {
864 mResetRequired = FALSE;
865 }
866
867 BOOLEAN
868 IsResetReminderFeatureEnable (
869 VOID
870 )
871 /*++
872
873 Routine Description:
874
875 Check whether platform policy enable the reset reminder feature. The default is enabled.
876
877 Arguments:
878
879 VOID
880
881 Returns:
882
883 VOID
884
885 --*/
886 {
887 return mFeaturerSwitch;
888 }
889
890 BOOLEAN
891 IsResetRequired (
892 VOID
893 )
894 /*++
895
896 Routine Description:
897
898 Check if user changed any option setting which needs a system reset to be effective.
899
900 Arguments:
901
902 VOID
903
904 Returns:
905
906 VOID
907
908 --*/
909 {
910 return mResetRequired;
911 }
912
913 VOID
914 SetupResetReminder (
915 VOID
916 )
917 /*++
918
919 Routine Description:
920
921 Check whether a reset is needed, and finish the reset reminder feature.
922 If a reset is needed, Popup a menu to notice user, and finish the feature
923 according to the user selection.
924
925 Arguments:
926
927 VOID
928
929 Returns:
930
931 VOID
932
933 --*/
934 {
935 EFI_STATUS Status;
936 EFI_FORM_BROWSER_PROTOCOL *Browser;
937 EFI_INPUT_KEY Key;
938 CHAR16 *StringBuffer1;
939 CHAR16 *StringBuffer2;
940
941
942 //
943 //check any reset required change is applied? if yes, reset system
944 //
945 if (IsResetReminderFeatureEnable ()) {
946 if (IsResetRequired ()) {
947
948 Status = gBS->LocateProtocol (
949 &gEfiFormBrowserProtocolGuid,
950 NULL,
951 (VOID **)&Browser
952 );
953
954 StringBuffer1 = AllocateZeroPool (MAX_STRING_LEN * sizeof (CHAR16));
955 ASSERT (StringBuffer1 != NULL);
956 StringBuffer2 = AllocateZeroPool (MAX_STRING_LEN * sizeof (CHAR16));
957 ASSERT (StringBuffer2 != NULL);
958 StrCpy (StringBuffer1, L"Configuration changed. Reset to apply it Now ? ");
959 StrCpy (StringBuffer2, L"Enter (YES) / Esc (NO)");
960 //
961 // Popup a menu to notice user
962 //
963 do {
964 Browser->CreatePopUp (2, TRUE, 0, NULL, &Key, StringBuffer1, StringBuffer2);
965 } while ((Key.ScanCode != SCAN_ESC) && (Key.UnicodeChar != CHAR_CARRIAGE_RETURN));
966
967 gBS->FreePool (StringBuffer1);
968 gBS->FreePool (StringBuffer2);
969 //
970 // If the user hits the YES Response key, reset
971 //
972 if ((Key.UnicodeChar == CHAR_CARRIAGE_RETURN)) {
973 gRT->ResetSystem (EfiResetCold, EFI_SUCCESS, 0, NULL);
974 }
975 gST->ConOut->ClearScreen (gST->ConOut);
976 }
977 }
978 }