]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Application/PlatOverMngr/PlatOverMngr.c
Change library class PlatDriOverLib to PlatformDriOverrideLib
[mirror_edk2.git] / MdeModulePkg / Application / PlatOverMngr / PlatOverMngr.c
1 /** @file
2
3 A UI application to offer a UI interface in device manager to let user configue
4 platform override protocol to override the default algorithm for matching
5 drivers to controllers.
6
7 The main flow:
8 1. The UI application dynamicly locate all controller device path.
9 2. The UI application dynamicly locate all drivers which support binding protocol.
10 3. The UI application export and dynamicly update two menu to let user select the
11 mapping between drivers to controllers.
12 4. The UI application save all the mapping info in NV variables which will be consumed
13 by platform override protocol driver to publish the platform override protocol.
14
15 Copyright (c) 2007 - 2008, Intel Corporation
16 All rights reserved. This program and the accompanying materials
17 are licensed and made available under the terms and conditions of the BSD License
18 which accompanies this distribution. The full text of the license may be found at
19 http://opensource.org/licenses/bsd-license.php
20
21 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
22 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
23
24 **/
25
26 #include <PiDxe.h>
27
28 #include <Protocol/HiiConfigAccess.h>
29 #include <Protocol/HiiConfigRouting.h>
30 #include <Protocol/HiiDatabase.h>
31 #include <Protocol/FormBrowser2.h>
32 #include <Protocol/LoadedImage.h>
33 #include <Protocol/FirmwareVolume2.h>
34 #include <Protocol/PciIo.h>
35 #include <Protocol/BusSpecificDriverOverride.h>
36 #include <Protocol/ComponentName2.h>
37 #include <Protocol/ComponentName.h>
38 #include <Protocol/DriverBinding.h>
39 #include <Guid/GlobalVariable.h>
40
41 #include <Library/BaseLib.h>
42 #include <Library/DebugLib.h>
43 #include <Library/UefiLib.h>
44 #include <Library/UefiApplicationEntryPoint.h>
45 #include <Library/UefiBootServicesTableLib.h>
46 #include <Library/PlatformDriverOverrideLib.h>
47 #include <Library/HiiLib.h>
48 #include <Library/IfrSupportLib.h>
49 #include <Library/ExtendedHiiLib.h>
50 #include <Library/ExtendedIfrSupportLib.h>
51 #include <Library/BaseMemoryLib.h>
52 #include <Library/MemoryAllocationLib.h>
53 #include <Library/UefiRuntimeServicesTableLib.h>
54 #include <Library/DevicePathLib.h>
55 #include <Library/GenericBdsLib.h>
56 #include "PlatOverMngr.h"
57
58 #define EFI_CALLBACK_INFO_SIGNATURE SIGNATURE_32 ('C', 'l', 'b', 'k')
59 #define EFI_CALLBACK_INFO_FROM_THIS(a) CR (a, EFI_CALLBACK_INFO, ConfigAccess, EFI_CALLBACK_INFO_SIGNATURE)
60
61 typedef struct {
62 UINTN Signature;
63 EFI_HANDLE DriverHandle;
64 EFI_HII_HANDLE RegisteredHandle;
65 PLAT_OVER_MNGR_DATA FakeNvData;
66 EFI_HII_CONFIG_ROUTING_PROTOCOL *HiiConfigRouting;
67 EFI_HII_CONFIG_ACCESS_PROTOCOL ConfigAccess;
68 } EFI_CALLBACK_INFO;
69
70 //
71 // uni string and Vfr Binary data.
72 //
73 extern UINT8 VfrBin[];
74 extern UINT8 PlatOverMngrStrings[];
75
76 //
77 // module global data
78 //
79 EFI_GUID mPlatformOverridesManagerGuid = PLAT_OVER_MNGR_GUID;
80 LIST_ENTRY mMappingDataBase = INITIALIZE_LIST_HEAD_VARIABLE (mMappingDataBase);
81
82 EFI_HANDLE *mDevicePathHandleBuffer;
83 EFI_HANDLE *mDriverImageHandleBuffer;
84
85 INTN mSelectedCtrIndex;
86 EFI_STRING_ID mControllerToken[MAX_CHOICE_NUM];
87 UINTN mDriverImageHandleCount;
88 EFI_STRING_ID mDriverImageToken[MAX_CHOICE_NUM];
89 EFI_STRING_ID mDriverImageFilePathToken[MAX_CHOICE_NUM];
90 EFI_LOADED_IMAGE_PROTOCOL *mDriverImageProtocol[MAX_CHOICE_NUM];
91 EFI_DEVICE_PATH_PROTOCOL *mControllerDevicePathProtocol[MAX_CHOICE_NUM];
92 UINTN mSelectedDriverImageNum;
93 UINTN mLastSavedDriverImageNum;
94 CHAR8 mLanguage[RFC_3066_ENTRY_SIZE];
95 UINT16 mCurrentPage;
96
97 /**
98 Do string convertion for the ComponentName supported language. It do
99 the convertion just for english language code from RFC 3066 to ISO 639-2.
100 Then it will check whether the converted language is in the supported language list.
101 If not supported, NULL is returned.
102 If Language is not english, NULL is returned.
103
104 @param SupportedLanguages Pointer to ComponentName supported language string list. ISO 639-2 language
105 @param Language The language string. RFC 3066 language
106
107 @return English language string (ISO 639-2)
108 @return NULL if the conertion is not successful.
109
110 **/
111 CHAR8 *
112 ConvertComponentNameSupportLanguage (
113 IN CHAR8 *SupportedLanguages,
114 IN CHAR8 *Language
115 )
116 {
117 CHAR8 *LangCode;
118 LangCode = NULL;
119
120 //
121 // Check the input language is English
122 //
123 if (AsciiStrnCmp (Language, "en-", 3) != 0) {
124 return NULL;
125 }
126
127 //
128 // Check SupportedLanguages format
129 //
130 if (AsciiStrStr (SupportedLanguages, "en-") != NULL) {
131 //
132 // Create RFC 3066 language
133 //
134 LangCode = AllocateZeroPool(AsciiStrSize (Language));
135 AsciiStrCpy (LangCode, Language);
136 } else if (AsciiStrStr (SupportedLanguages, "en") != NULL) {
137 //
138 // Create ISO 639-2 Language
139 //
140 LangCode = AllocateZeroPool(4);
141 AsciiStrCpy (LangCode, "eng");
142 }
143
144 return LangCode;
145 }
146
147 /**
148 Get the driver name by ComponentName or ComponentName2 protocol
149 according to the driver binding handle
150
151 @param DriverBindingHandle The Handle of DriverBinding.
152
153 @retval !NULL Pointer into the image name if the image name is found,
154 @retval NULL Pointer to NULL if the image name is not found.
155
156 **/
157 CHAR16 *
158 GetComponentName (
159 IN EFI_HANDLE DriverBindingHandle
160 )
161 {
162 EFI_STATUS Status;
163 EFI_COMPONENT_NAME_PROTOCOL *ComponentName;
164 EFI_COMPONENT_NAME2_PROTOCOL *ComponentName2;
165 CHAR8 *SupportedLanguage;
166 CHAR16 *DriverName;
167
168 ComponentName = NULL;
169 ComponentName2 = NULL;
170 Status = gBS->OpenProtocol (
171 DriverBindingHandle,
172 &gEfiComponentName2ProtocolGuid,
173 (VOID **) &ComponentName2,
174 NULL,
175 NULL,
176 EFI_OPEN_PROTOCOL_GET_PROTOCOL
177 );
178 if (EFI_ERROR(Status)) {
179 Status = gBS->OpenProtocol (
180 DriverBindingHandle,
181 &gEfiComponentNameProtocolGuid,
182 (VOID **) &ComponentName,
183 NULL,
184 NULL,
185 EFI_OPEN_PROTOCOL_GET_PROTOCOL
186 );
187 }
188
189 Status = EFI_SUCCESS;
190 DriverName = NULL;
191 if (ComponentName != NULL) {
192 if (ComponentName->GetDriverName != NULL) {
193 SupportedLanguage = ConvertComponentNameSupportLanguage (ComponentName->SupportedLanguages, mLanguage);
194 if (SupportedLanguage != NULL) {
195 Status = ComponentName->GetDriverName (
196 ComponentName,
197 SupportedLanguage,
198 &DriverName
199 );
200 FreePool (SupportedLanguage);
201 }
202 }
203 } else if (ComponentName2 != NULL) {
204 if (ComponentName2->GetDriverName != NULL) {
205 Status = ComponentName2->GetDriverName (
206 ComponentName2,
207 mLanguage,
208 &DriverName
209 );
210 }
211 }
212
213 if (EFI_ERROR (Status)) {
214 return NULL;
215 }
216
217 return DriverName;
218 }
219
220 /**
221 Get the image name from EFI UI section.
222 Get FV protocol by its loaded image protoocl to abastract EFI UI section.
223
224 @param Image Pointer to the loaded image protocol
225
226 @retval !NULL Pointer to the image name if the image name is found,
227 @retval NULL NULL if the image name is not found.
228
229 **/
230 CHAR16 *
231 GetImageName (
232 IN EFI_LOADED_IMAGE_PROTOCOL *Image
233 )
234 {
235 EFI_STATUS Status;
236 EFI_DEVICE_PATH_PROTOCOL *DevPathNode;
237 EFI_DEVICE_PATH_PROTOCOL *AlignedDevPathNode;
238 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvFilePath;
239 VOID *Buffer;
240 UINTN BufferSize;
241 UINT32 AuthenticationStatus;
242 EFI_GUID *NameGuid;
243 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv2;
244
245 Fv2 = NULL;
246 Buffer = NULL;
247 BufferSize = 0;
248
249 if (Image->FilePath == NULL) {
250 return NULL;
251 }
252 DevPathNode = Image->FilePath;
253
254 while (!IsDevicePathEnd (DevPathNode)) {
255 //
256 // Make sure device path node is aligned when accessing it's FV Name Guid field.
257 //
258 AlignedDevPathNode = AllocateCopyPool (DevicePathNodeLength(DevPathNode), DevPathNode);
259
260 //
261 // Find the Fv File path
262 //
263 NameGuid = EfiGetNameGuidFromFwVolDevicePathNode ((MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *)AlignedDevPathNode);
264 if (NameGuid != NULL) {
265 FvFilePath = (MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) AlignedDevPathNode;
266 Status = gBS->HandleProtocol (
267 Image->DeviceHandle,
268 &gEfiFirmwareVolume2ProtocolGuid,
269 (VOID **) &Fv2
270 );
271 //
272 // Locate Image EFI UI section to get the image name.
273 //
274 if (!EFI_ERROR (Status)) {
275 Status = Fv2->ReadSection (
276 Fv2,
277 &FvFilePath->FvFileName,
278 EFI_SECTION_USER_INTERFACE,
279 0,
280 &Buffer,
281 &BufferSize,
282 &AuthenticationStatus
283 );
284 if (!EFI_ERROR (Status)) {
285 FreePool (AlignedDevPathNode);
286 break;
287 }
288 Buffer = NULL;
289 }
290 }
291
292 FreePool (AlignedDevPathNode);
293
294 //
295 // Next device path node
296 //
297 DevPathNode = NextDevicePathNode (DevPathNode);
298 }
299
300 return Buffer;
301 }
302
303 /**
304 Prepare the first page to let user select the device controller which need to
305 add mapping drivers if user select 'Refresh' in first page.
306 During first page, user will see all currnet controller device path in system,
307 select any device path will go to second page to select its overrides drivers.
308
309 @param Private Pointer to EFI_CALLBACK_INFO.
310 @param KeyValue The callback key value of device controller item in first page.
311 @param FakeNvData Pointer to PLAT_OVER_MNGR_DATA.
312
313 @retval EFI_SUCCESS Always returned.
314
315 **/
316 EFI_STATUS
317 UpdateDeviceSelectPage (
318 IN EFI_CALLBACK_INFO *Private,
319 IN UINT16 KeyValue,
320 IN PLAT_OVER_MNGR_DATA *FakeNvData
321 )
322 {
323 EFI_HII_UPDATE_DATA UpdateData;
324 EFI_STATUS Status;
325 UINTN LangSize;
326 UINTN Index;
327 UINTN DevicePathHandleCount;
328 CHAR16 *NewString;
329 EFI_STRING_ID NewStringToken;
330 CHAR16 *ControllerName;
331 EFI_DEVICE_PATH_PROTOCOL *ControllerDevicePath;
332 EFI_PCI_IO_PROTOCOL *PciIo;
333 EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL *BusSpecificDriverOverride;
334 UINTN Len;
335
336 //
337 // set current page form ID.
338 //
339 mCurrentPage = FORM_ID_DEVICE;
340
341 //
342 // Get Platform supported Language (RFC_3066 format)
343 //
344 LangSize = RFC_3066_ENTRY_SIZE;
345 Status = gRT->GetVariable (
346 L"PlatformLang",
347 &gEfiGlobalVariableGuid,
348 NULL,
349 &LangSize,
350 mLanguage
351 );
352 ASSERT_EFI_ERROR (Status);
353
354 //
355 // Initial the mapping database in memory
356 //
357 FreeMappingDatabase (&mMappingDataBase);
358 Status = InitOverridesMapping (&mMappingDataBase);
359
360 //
361 // Clear all the content in the first page
362 //
363 UpdateData.BufferSize = UPDATE_DATA_SIZE;
364 UpdateData.Offset = 0;
365 UpdateData.Data = AllocateZeroPool (UPDATE_DATA_SIZE);
366 ASSERT (UpdateData.Data != NULL);
367 //
368 // Clear first page form
369 //
370 IfrLibUpdateForm (
371 Private->RegisteredHandle,
372 &mPlatformOverridesManagerGuid,
373 FORM_ID_DEVICE,
374 FORM_ID_DEVICE,
375 FALSE,
376 &UpdateData
377 );
378
379 //
380 // When user enter the page at first time, the 'first refresh' string is given to notify user to refresh all the drivers,
381 // then the 'first refresh' string will be replaced by the 'refresh' string, and the two strings content are same after the replacement
382 //
383 NewStringToken = STRING_TOKEN (STR_FIRST_REFRESH);
384 HiiLibGetStringFromHandle (Private->RegisteredHandle, STRING_TOKEN (STR_REFRESH), &NewString);
385 ASSERT (NewString != NULL);
386 Status = HiiLibSetString (Private->RegisteredHandle, NewStringToken, NewString);
387 ASSERT_EFI_ERROR (Status);
388 FreePool (NewString);
389
390 NewStringToken = STRING_TOKEN (STR_FIRST_REFRESH_HELP);
391 HiiLibGetStringFromHandle (Private->RegisteredHandle, STRING_TOKEN (STR_REFRESH_HELP), &NewString);
392 ASSERT (NewString != NULL);
393 Status = HiiLibSetString (Private->RegisteredHandle, NewStringToken, NewString);
394 ASSERT_EFI_ERROR (Status);
395 FreePool (NewString);
396
397 //
398 // created needed controller device item in first page
399 //
400 DevicePathHandleCount = 0;
401 Status = gBS->LocateHandleBuffer (
402 ByProtocol,
403 &gEfiDevicePathProtocolGuid,
404 NULL,
405 &DevicePathHandleCount,
406 &mDevicePathHandleBuffer
407 );
408 if (EFI_ERROR (Status) || (DevicePathHandleCount == 0)) {
409 return EFI_SUCCESS;
410 }
411
412 for (Index = 0; Index < DevicePathHandleCount; Index++) {
413 if (FakeNvData->PciDeviceFilter == 0x01) {
414 //
415 // Only care PCI device which contain efi driver in its option rom.
416 //
417
418 //
419 // Check whether it is a pci device
420 //
421 ControllerDevicePath = NULL;
422 Status = gBS->OpenProtocol (
423 mDevicePathHandleBuffer[Index],
424 &gEfiPciIoProtocolGuid,
425 (VOID **) &PciIo,
426 NULL,
427 NULL,
428 EFI_OPEN_PROTOCOL_GET_PROTOCOL
429 );
430 if (EFI_ERROR (Status)) {
431 continue;
432 }
433 //
434 // Check whether it contain efi driver in its option rom
435 //
436 Status = gBS->HandleProtocol(
437 mDevicePathHandleBuffer[Index],
438 &gEfiBusSpecificDriverOverrideProtocolGuid,
439 (VOID **) &BusSpecificDriverOverride
440 );
441 if (EFI_ERROR (Status) || BusSpecificDriverOverride == NULL) {
442 continue;
443 }
444 }
445
446 ControllerDevicePath = NULL;
447 Status = gBS->OpenProtocol (
448 mDevicePathHandleBuffer[Index],
449 &gEfiDevicePathProtocolGuid,
450 (VOID **) &ControllerDevicePath,
451 NULL,
452 NULL,
453 EFI_OPEN_PROTOCOL_GET_PROTOCOL
454 );
455 ASSERT_EFI_ERROR (Status);
456 //
457 // Save the device path protocol interface
458 //
459 mControllerDevicePathProtocol[Index] = ControllerDevicePath;
460
461 //
462 // Get the driver name
463 //
464 ControllerName = DevicePathToStr (ControllerDevicePath);
465
466 //
467 // Export the driver name string and create item in set options page
468 //
469 Len = StrSize (ControllerName);
470 NewString = AllocateZeroPool (Len + StrSize (L"--"));
471 ASSERT (NewString != NULL);
472 if (EFI_ERROR (CheckMapping (ControllerDevicePath,NULL, &mMappingDataBase, NULL, NULL))) {
473 StrCat (NewString, L"--");
474 } else {
475 StrCat (NewString, L"**");
476 }
477 StrCat (NewString, ControllerName);
478
479 NewStringToken = mControllerToken[Index];
480 if (NewStringToken == 0) {
481 Status = HiiLibNewString (Private->RegisteredHandle, &NewStringToken, NewString);
482 } else {
483 Status = HiiLibSetString (Private->RegisteredHandle, NewStringToken, NewString);
484 }
485 ASSERT_EFI_ERROR (Status);
486 FreePool (NewString);
487 //
488 // Save the device path string toke for next access use
489 //
490 mControllerToken[Index] = NewStringToken;
491
492 CreateGotoOpCode (
493 FORM_ID_DRIVER,
494 NewStringToken,
495 STRING_TOKEN (STR_GOTO_HELP_DRIVER),
496 EFI_IFR_FLAG_CALLBACK,
497 (UINT16) (Index + KEY_VALUE_DEVICE_OFFSET),
498 &UpdateData
499 );
500 }
501
502 //
503 // Update first page form
504 //
505 IfrLibUpdateForm (
506 Private->RegisteredHandle,
507 &mPlatformOverridesManagerGuid,
508 FORM_ID_DEVICE,
509 FORM_ID_DEVICE,
510 FALSE,
511 &UpdateData
512 );
513
514 FreePool (UpdateData.Data);
515 return EFI_SUCCESS;
516 }
517
518 /**
519 Get the first Driver Binding handle which has the specific image handle.
520
521 @param ImageHandle The Image handle
522
523 @return Handle to Driver binding
524 @retval NULL The paramter is not valid or the driver binding handle is not found.
525
526 **/
527 EFI_HANDLE
528 GetDriverBindingHandleFromImageHandle (
529 IN EFI_HANDLE ImageHandle
530 )
531 {
532 EFI_STATUS Status;
533 UINTN Index;
534 UINTN DriverBindingHandleCount;
535 EFI_HANDLE *DriverBindingHandleBuffer;
536 EFI_DRIVER_BINDING_PROTOCOL *DriverBindingInterface;
537 EFI_HANDLE DriverBindingHandle;
538
539 DriverBindingHandle = NULL;
540
541 if (ImageHandle == NULL) {
542 return NULL;
543 }
544 //
545 // Get all drivers which support driver binding protocol
546 //
547 DriverBindingHandleCount = 0;
548 Status = gBS->LocateHandleBuffer (
549 ByProtocol,
550 &gEfiDriverBindingProtocolGuid,
551 NULL,
552 &DriverBindingHandleCount,
553 &DriverBindingHandleBuffer
554 );
555 if (EFI_ERROR (Status) || (DriverBindingHandleCount == 0)) {
556 return NULL;
557 }
558
559 //
560 // Get the first Driver Binding handle which has the specific image handle.
561 //
562 for (Index = 0; Index < DriverBindingHandleCount; Index++) {
563 DriverBindingInterface = NULL;
564 Status = gBS->OpenProtocol (
565 DriverBindingHandleBuffer[Index],
566 &gEfiDriverBindingProtocolGuid,
567 (VOID **) &DriverBindingInterface,
568 NULL,
569 NULL,
570 EFI_OPEN_PROTOCOL_GET_PROTOCOL
571 );
572 if (EFI_ERROR (Status)) {
573 continue;
574 }
575
576 if (DriverBindingInterface->ImageHandle == ImageHandle) {
577 DriverBindingHandle = DriverBindingHandleBuffer[Index];
578 break;
579 }
580 }
581
582 FreePool (DriverBindingHandleBuffer);
583 return DriverBindingHandle;
584 }
585
586 /**
587 Prepare to let user select the drivers which need mapping with the device controller
588 selected in first page.
589
590 @param Private Pointer to EFI_CALLBACK_INFO.
591 @param KeyValue The callback key value of device controller item in first page.
592 KeyValue is larger than or equal to KEY_VALUE_DEVICE_OFFSET.
593 @param FakeNvData Pointer to PLAT_OVER_MNGR_DATA.
594
595 @retval EFI_SUCCESS Always returned.
596
597 **/
598 EFI_STATUS
599 UpdateBindingDriverSelectPage (
600 IN EFI_CALLBACK_INFO *Private,
601 IN UINT16 KeyValue,
602 IN PLAT_OVER_MNGR_DATA *FakeNvData
603 )
604 {
605 EFI_HII_UPDATE_DATA UpdateData;
606 EFI_STATUS Status;
607 UINTN Index;
608 CHAR16 *NewString;
609 EFI_STRING_ID NewStringToken;
610 EFI_STRING_ID NewStringHelpToken;
611 UINTN DriverImageHandleCount;
612 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
613 CHAR16 *DriverName;
614 BOOLEAN FreeDriverName;
615 EFI_DEVICE_PATH_PROTOCOL *LoadedImageDevicePath;
616 EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL *BusSpecificDriverOverride;
617 EFI_HANDLE DriverBindingHandle;
618
619 //
620 // If user select a controller item in the first page the following code will be run.
621 // During second page, user will see all currnet driver bind protocol driver, the driver name and its device path will be shown
622 //
623 //First acquire the list of Loaded Image Protocols, and then when want the name of the driver, look up all the Driver Binding Protocols
624 // and find the first one whose ImageHandle field matches the image handle of the Loaded Image Protocol.
625 // then use the Component Name Protocol on the same handle as the first matching Driver Binding Protocol to look up the name of the driver.
626 //
627
628 mCurrentPage = FORM_ID_DRIVER;
629 //
630 // Switch the item callback key value to its NO. in mDevicePathHandleBuffer
631 //
632 mSelectedCtrIndex = KeyValue - KEY_VALUE_DEVICE_OFFSET;
633 ASSERT (mSelectedCtrIndex > 0 && mSelectedCtrIndex < MAX_CHOICE_NUM);
634
635 mLastSavedDriverImageNum = 0;
636 //
637 // Clear all the content in dynamic page
638 //
639 UpdateData.BufferSize = UPDATE_DATA_SIZE;
640 UpdateData.Offset = 0;
641 UpdateData.Data = AllocateZeroPool (UPDATE_DATA_SIZE);
642 ASSERT (UpdateData.Data != NULL);
643 //
644 // Clear second page form
645 //
646 IfrLibUpdateForm (
647 Private->RegisteredHandle,
648 &mPlatformOverridesManagerGuid,
649 FORM_ID_DRIVER,
650 FORM_ID_DRIVER,
651 FALSE,
652 &UpdateData
653 );
654
655 //
656 // Show all driver which support loaded image protocol in second page
657 //
658 DriverImageHandleCount = 0;
659 Status = gBS->LocateHandleBuffer (
660 ByProtocol,
661 &gEfiLoadedImageProtocolGuid,
662 NULL,
663 &DriverImageHandleCount,
664 &mDriverImageHandleBuffer
665 );
666 if (EFI_ERROR (Status) || (DriverImageHandleCount == 0)) {
667 return EFI_NOT_FOUND;
668 }
669
670 mDriverImageHandleCount = DriverImageHandleCount;
671 for (Index = 0; Index < DriverImageHandleCount; Index++) {
672 //
673 // Step1: Get the driver image total file path for help string and the driver name.
674 //
675
676 //
677 // Find driver's Loaded Image protocol
678 //
679 LoadedImage =NULL;
680
681 Status = gBS->OpenProtocol (
682 mDriverImageHandleBuffer[Index],
683 &gEfiLoadedImageProtocolGuid,
684 (VOID **) &LoadedImage,
685 NULL,
686 NULL,
687 EFI_OPEN_PROTOCOL_GET_PROTOCOL
688 );
689 if (EFI_ERROR (Status)) {
690 FakeNvData->DriSelection[Index] = 0x00;
691 continue;
692 }
693 mDriverImageProtocol[Index] = LoadedImage;
694 //
695 // Find its related driver binding protocol
696 //
697 DriverBindingHandle = GetDriverBindingHandleFromImageHandle (mDriverImageHandleBuffer[Index]);
698 if (DriverBindingHandle == NULL) {
699 FakeNvData->DriSelection[Index] = 0x00;
700 continue;
701 }
702
703 //
704 // Get the EFI Loaded Image Device Path Protocol
705 //
706 LoadedImageDevicePath = NULL;
707 Status = gBS->HandleProtocol (
708 mDriverImageHandleBuffer[Index],
709 &gEfiLoadedImageDevicePathProtocolGuid,
710 (VOID **) &LoadedImageDevicePath
711 );
712 if (LoadedImageDevicePath == NULL) {
713 FakeNvData->DriSelection[Index] = 0x00;
714 continue;
715 }
716
717 if (FakeNvData->PciDeviceFilter == 0x01) {
718 //
719 // only care the driver which is in a Pci device option rom,
720 // and the driver's LoadedImage->DeviceHandle must point to a pci device which has efi option rom
721 //
722 if (!EFI_ERROR (Status)) {
723 Status = gBS->HandleProtocol(
724 LoadedImage->DeviceHandle,
725 &gEfiBusSpecificDriverOverrideProtocolGuid,
726 (VOID **) &BusSpecificDriverOverride
727 );
728 if (EFI_ERROR (Status) || BusSpecificDriverOverride == NULL) {
729 FakeNvData->DriSelection[Index] = 0x00;
730 continue;
731 }
732 } else {
733 FakeNvData->DriSelection[Index] = 0x00;
734 continue;
735 }
736 }
737
738 //
739 // For driver name, try to get its component name, if fail, get its image name,
740 // if also fail, give a default name.
741 //
742 FreeDriverName = FALSE;
743 DriverName = GetComponentName (DriverBindingHandle);
744 if (DriverName == NULL) {
745 //
746 // get its image name
747 //
748 DriverName = GetImageName (LoadedImage);
749 }
750 if (DriverName == NULL) {
751 //
752 // give a default name
753 //
754 HiiLibGetStringFromHandle (Private->RegisteredHandle, STRING_TOKEN (STR_DRIVER_DEFAULT_NAME), &DriverName);
755 ASSERT (DriverName != NULL);
756 FreeDriverName = TRUE; // the DriverName string need to free pool
757 }
758
759
760 //
761 // Step2 Export the driver name string and create check box item in second page
762 //
763
764 //
765 // First create the driver image name
766 //
767 NewString = AllocateZeroPool (StrSize (DriverName));
768 ASSERT (NewString != NULL);
769 if (EFI_ERROR (CheckMapping (mControllerDevicePathProtocol[mSelectedCtrIndex], LoadedImageDevicePath, &mMappingDataBase, NULL, NULL))) {
770 FakeNvData->DriSelection[Index] = 0x00;
771 } else {
772 FakeNvData->DriSelection[Index] = 0x01;
773 mLastSavedDriverImageNum++;
774 }
775 StrCat (NewString, DriverName);
776 NewStringToken = mDriverImageToken[Index];
777 if (NewStringToken == 0) {
778 Status = HiiLibNewString (Private->RegisteredHandle, &NewStringToken, NewString);
779 } else {
780 Status = HiiLibSetString (Private->RegisteredHandle, NewStringToken, NewString);
781 }
782 mDriverImageToken[Index] = NewStringToken;
783 ASSERT_EFI_ERROR (Status);
784 FreePool (NewString);
785 if (FreeDriverName) {
786 FreePool (DriverName);
787 }
788
789 //
790 // Second create the driver image device path as item help string
791 //
792 DriverName = DevicePathToStr (LoadedImageDevicePath);
793
794 NewString = AllocateZeroPool (StrSize (DriverName));
795 ASSERT (NewString != NULL);
796 StrCat (NewString, DriverName);
797 NewStringHelpToken = mDriverImageFilePathToken[Index];
798 if (NewStringHelpToken == 0) {
799 Status = HiiLibNewString (Private->RegisteredHandle, &NewStringHelpToken, NewString);
800 } else {
801 Status = HiiLibSetString (Private->RegisteredHandle, NewStringHelpToken, NewString);
802 }
803 mDriverImageFilePathToken[Index] = NewStringHelpToken;
804 ASSERT_EFI_ERROR (Status);
805 FreePool (NewString);
806 FreePool (DriverName);
807
808 CreateCheckBoxOpCode (
809 (UINT16) (DRIVER_SELECTION_QUESTION_ID + Index),
810 VARSTORE_ID_PLAT_OVER_MNGR,
811 (UINT16) (DRIVER_SELECTION_VAR_OFFSET + Index),
812 NewStringToken,
813 NewStringHelpToken,
814 0,
815 0,
816 &UpdateData
817 );
818 }
819
820 //
821 // Update second page form
822 //
823 IfrLibUpdateForm (
824 Private->RegisteredHandle,
825 &mPlatformOverridesManagerGuid,
826 FORM_ID_DRIVER,
827 FORM_ID_DRIVER,
828 FALSE,
829 &UpdateData
830 );
831
832 FreePool (UpdateData.Data);
833 return EFI_SUCCESS;
834 }
835
836 /**
837 Prepare to let user select the priority order of the drivers which are
838 selected in second page.
839
840 @param Private Pointer to EFI_CALLBACK_INFO.
841 @param KeyValue The callback key value of device controller item in first page.
842 @param FakeNvData Pointer to PLAT_OVER_MNGR_DATA.
843
844 @retval EFI_SUCCESS Always returned.
845
846 **/
847 EFI_STATUS
848 UpdatePrioritySelectPage (
849 IN EFI_CALLBACK_INFO *Private,
850 IN UINT16 KeyValue,
851 IN PLAT_OVER_MNGR_DATA *FakeNvData
852 )
853 {
854 EFI_HII_UPDATE_DATA UpdateData;
855 UINTN Index;
856 EFI_DEVICE_PATH_PROTOCOL *LoadedImageDevicePath;
857 IFR_OPTION *IfrOptionList;
858 UINTN SelectedDriverImageNum;
859 UINT32 DriverImageNO;
860 UINTN MinNO;
861 UINTN Index1;
862 UINTN TempNO[100];
863
864 //
865 // Following code will be run if user select 'order ... priority' item in second page
866 // Prepare third page. In third page, user will order the drivers priority which are selected in second page
867 //
868 mCurrentPage = FORM_ID_ORDER;
869
870 UpdateData.BufferSize = UPDATE_DATA_SIZE;
871 UpdateData.Offset = 0;
872 UpdateData.Data = AllocateZeroPool (UPDATE_DATA_SIZE);
873 ASSERT (UpdateData.Data != NULL);
874 //
875 // Clear third page form
876 //
877 IfrLibUpdateForm (
878 Private->RegisteredHandle,
879 &mPlatformOverridesManagerGuid,
880 FORM_ID_ORDER,
881 FORM_ID_ORDER,
882 FALSE,
883 &UpdateData
884 );
885
886 //
887 // Check how many drivers have been selected
888 //
889 SelectedDriverImageNum = 0;
890 for (Index = 0; Index < mDriverImageHandleCount; Index++) {
891 if (FakeNvData->DriSelection[Index] != 0) {
892 SelectedDriverImageNum ++;
893 }
894 }
895
896 mSelectedDriverImageNum = SelectedDriverImageNum;
897 if (SelectedDriverImageNum == 0) {
898 return EFI_SUCCESS;
899 }
900
901 IfrOptionList = AllocateZeroPool (sizeof (IFR_OPTION) * mSelectedDriverImageNum);
902 ASSERT (IfrOptionList != NULL);
903 //
904 // Create order list for those selected drivers
905 //
906 SelectedDriverImageNum = 0;
907 for (Index = 0; Index < mDriverImageHandleCount; Index++) {
908 if (FakeNvData->DriSelection[Index] != 0) {
909 IfrOptionList[SelectedDriverImageNum].StringToken = mDriverImageToken[Index];
910 //
911 // Use the NO. in driver binding buffer as value, will use it later
912 //
913 IfrOptionList[SelectedDriverImageNum].Value.u8 = (UINT8) (Index + 1);
914 IfrOptionList[SelectedDriverImageNum].Flags = 0;
915
916 //
917 // Get the EFI Loaded Image Device Path Protocol
918 //
919 LoadedImageDevicePath = NULL;
920 gBS->HandleProtocol (
921 mDriverImageHandleBuffer[Index],
922 &gEfiLoadedImageDevicePathProtocolGuid,
923 (VOID **) &LoadedImageDevicePath
924 );
925 ASSERT (LoadedImageDevicePath != NULL);
926
927 //
928 // Check the driver DriverImage's order number in mapping database
929 //
930 DriverImageNO = 0;
931 CheckMapping (
932 mControllerDevicePathProtocol[mSelectedCtrIndex],
933 LoadedImageDevicePath,
934 &mMappingDataBase,
935 NULL,
936 &DriverImageNO
937 );
938 if (DriverImageNO == 0) {
939 DriverImageNO = (UINT32) mLastSavedDriverImageNum + 1;
940 mLastSavedDriverImageNum++;
941 }
942 TempNO[SelectedDriverImageNum] = DriverImageNO;
943 SelectedDriverImageNum ++;
944 }
945 }
946
947 ASSERT (SelectedDriverImageNum == mSelectedDriverImageNum);
948 //
949 // NvRamMap Must be clear firstly
950 //
951 ZeroMem (FakeNvData->DriOrder, sizeof (FakeNvData->DriOrder));
952
953 //
954 // Order the selected drivers according to the info already in mapping database
955 // the less order number in mapping database the less order number in NvRamMap
956 //
957 for (Index=0; Index < SelectedDriverImageNum; Index++) {
958 //
959 // Find the minimal order number in TempNO array, its index in TempNO is same as IfrOptionList array
960 //
961 MinNO = 0;
962 for (Index1=0; Index1 < SelectedDriverImageNum; Index1++) {
963 if (TempNO[Index1] < TempNO[MinNO]) {
964 MinNO = Index1;
965 }
966 }
967 //
968 // the IfrOptionList[MinNO].Value = the driver NO. in driver binding buffer
969 //
970 FakeNvData->DriOrder[Index] =IfrOptionList[MinNO].Value.u8;
971 TempNO[MinNO] = MAX_CHOICE_NUM + 1;
972 }
973
974 CreateOrderedListOpCode (
975 (UINT16) DRIVER_ORDER_QUESTION_ID,
976 VARSTORE_ID_PLAT_OVER_MNGR,
977 (UINT16) DRIVER_ORDER_VAR_OFFSET,
978 mControllerToken[mSelectedCtrIndex],
979 mControllerToken[mSelectedCtrIndex],
980 EFI_IFR_FLAG_RESET_REQUIRED,
981 0,
982 EFI_IFR_NUMERIC_SIZE_1,
983 (UINT8) MAX_CHOICE_NUM,
984 IfrOptionList,
985 SelectedDriverImageNum,
986 &UpdateData
987 );
988
989 //
990 // Update third page form
991 //
992 IfrLibUpdateForm (
993 Private->RegisteredHandle,
994 &mPlatformOverridesManagerGuid,
995 FORM_ID_ORDER,
996 FORM_ID_ORDER,
997 FALSE,
998 &UpdateData
999 );
1000
1001 FreePool (IfrOptionList);
1002 FreePool (UpdateData.Data);
1003 return EFI_SUCCESS;
1004 }
1005
1006 /**
1007 Save the save the mapping database to NV variable.
1008
1009 @param Private Pointer to EFI_CALLBACK_INFO.
1010 @param KeyValue The callback key value of device controller item in first page.
1011 @param FakeNvData Pointer to PLAT_OVER_MNGR_DATA.
1012
1013 @retval EFI_SUCCESS Always returned.
1014
1015 **/
1016 EFI_STATUS
1017 CommintChanges (
1018 IN EFI_CALLBACK_INFO *Private,
1019 IN UINT16 KeyValue,
1020 IN PLAT_OVER_MNGR_DATA *FakeNvData
1021 )
1022 {
1023 EFI_STATUS Status;
1024 UINTN Index;
1025 UINTN SelectedDriverImageNum;
1026 EFI_DEVICE_PATH_PROTOCOL *LoadedImageDevicePath;
1027 //
1028 // Following code will be run if user select 'commint changes' in third page
1029 // user enter 'Commit Changes' to save the mapping database
1030 //
1031 DeleteDriverImage (mControllerDevicePathProtocol[mSelectedCtrIndex], NULL, &mMappingDataBase);
1032 for (SelectedDriverImageNum = 0; SelectedDriverImageNum < mSelectedDriverImageNum; SelectedDriverImageNum++) {
1033 //
1034 // DriOrder[SelectedDriverImageNum] = the driver NO. in driver binding buffer
1035 //
1036 Index = FakeNvData->DriOrder[SelectedDriverImageNum] - 1;
1037
1038 //
1039 // Get the EFI Loaded Image Device Path Protocol
1040 //
1041 LoadedImageDevicePath = NULL;
1042 Status = gBS->HandleProtocol (
1043 mDriverImageHandleBuffer[Index],
1044 &gEfiLoadedImageDevicePathProtocolGuid,
1045 (VOID **) &LoadedImageDevicePath
1046 );
1047 ASSERT (LoadedImageDevicePath != NULL);
1048
1049 InsertDriverImage (
1050 mControllerDevicePathProtocol[mSelectedCtrIndex],
1051 LoadedImageDevicePath,
1052 &mMappingDataBase,
1053 (UINT32)SelectedDriverImageNum + 1
1054 );
1055 }
1056 Status = SaveOverridesMapping (&mMappingDataBase);
1057
1058 return Status;
1059 }
1060
1061 /**
1062 This function allows a caller to extract the current configuration for one
1063 or more named elements from the target driver.
1064
1065 @param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
1066 @param Request A null-terminated Unicode string in <ConfigRequest> format.
1067 @param Progress On return, points to a character in the Request string.
1068 Points to the string's null terminator if request was successful.
1069 Points to the most recent '&' before the first failing name/value
1070 pair (or the beginning of the string if the failure is in the
1071 first name/value pair) if the request was not successful.
1072 @param Results A null-terminated Unicode string in <ConfigAltResp> format which
1073 has all values filled in for the names in the Request string.
1074 String to be allocated by the called function.
1075
1076 @retval EFI_SUCCESS The Results is filled with the requested values.
1077 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the results.
1078 @retval EFI_INVALID_PARAMETER Request is NULL, illegal syntax, or unknown name.
1079 @retval EFI_NOT_FOUND Routing data doesn't match any storage in this driver.
1080
1081 **/
1082 EFI_STATUS
1083 EFIAPI
1084 PlatOverMngrExtractConfig (
1085 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
1086 IN CONST EFI_STRING Request,
1087 OUT EFI_STRING *Progress,
1088 OUT EFI_STRING *Results
1089 )
1090 {
1091 EFI_STATUS Status;
1092 EFI_CALLBACK_INFO *Private;
1093 EFI_HII_CONFIG_ROUTING_PROTOCOL *HiiConfigRouting;
1094
1095 if (Request == NULL) {
1096 return EFI_NOT_FOUND;
1097 }
1098
1099 Private = EFI_CALLBACK_INFO_FROM_THIS (This);
1100 HiiConfigRouting = Private->HiiConfigRouting;
1101
1102 //
1103 // Convert buffer data to <ConfigResp> by helper function BlockToConfig()
1104 //
1105 Status = HiiConfigRouting->BlockToConfig (
1106 HiiConfigRouting,
1107 Request,
1108 (UINT8 *) &Private->FakeNvData,
1109 sizeof (PLAT_OVER_MNGR_DATA),
1110 Results,
1111 Progress
1112 );
1113 return Status;
1114 }
1115
1116 /**
1117 This function processes the results of changes in configuration.
1118
1119 @param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
1120 @param Configuration A null-terminated Unicode string in <ConfigRequest> format.
1121 @param Progress A pointer to a string filled in with the offset of the most
1122 recent '&' before the first failing name/value pair (or the
1123 beginning of the string if the failure is in the first
1124 name/value pair) or the terminating NULL if all was successful.
1125
1126 @retval EFI_SUCCESS The Results is processed successfully.
1127 @retval EFI_INVALID_PARAMETER Configuration is NULL.
1128 @retval EFI_NOT_FOUND Routing data doesn't match any storage in this driver.
1129
1130 **/
1131 EFI_STATUS
1132 EFIAPI
1133 PlatOverMngrRouteConfig (
1134 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
1135 IN CONST EFI_STRING Configuration,
1136 OUT EFI_STRING *Progress
1137 )
1138 {
1139 EFI_CALLBACK_INFO *Private;
1140 EFI_STATUS Status;
1141 UINT16 KeyValue;
1142 UINTN BufferSize;
1143 PLAT_OVER_MNGR_DATA *FakeNvData;
1144
1145 Private = EFI_CALLBACK_INFO_FROM_THIS (This);
1146
1147 FakeNvData = &Private->FakeNvData;
1148 BufferSize = sizeof (PLAT_OVER_MNGR_DATA);
1149 Status = GetBrowserData (NULL, NULL, &BufferSize, (UINT8 *) FakeNvData);
1150 if (EFI_ERROR (Status)) {
1151 return Status;
1152 }
1153
1154 if (mCurrentPage == FORM_ID_DRIVER) {
1155 KeyValue = KEY_VALUE_DRIVER_GOTO_ORDER;
1156 UpdatePrioritySelectPage (Private, KeyValue, FakeNvData);
1157 KeyValue = KEY_VALUE_ORDER_SAVE_AND_EXIT;
1158 CommintChanges (Private, KeyValue, FakeNvData);
1159 //
1160 // Since UpdatePrioritySelectPage will change mCurrentPage,
1161 // should ensure the mCurrentPage still indicate the second page here
1162 //
1163 mCurrentPage = FORM_ID_DRIVER;
1164 }
1165
1166 if (mCurrentPage == FORM_ID_ORDER) {
1167 KeyValue = KEY_VALUE_ORDER_SAVE_AND_EXIT;
1168 CommintChanges (Private, KeyValue, FakeNvData);
1169 }
1170 return EFI_SUCCESS;
1171 }
1172
1173 /**
1174 This is the function that is called to provide results data to the driver. This data
1175 consists of a unique key which is used to identify what data is either being passed back
1176 or being asked for.
1177
1178 @param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
1179 @param Action A null-terminated Unicode string in <ConfigRequest> format.
1180 @param KeyValue A unique Goto OpCode callback value which record user's selection.
1181 0x100 <= KeyValue <0x500 : user select a controller item in the first page;
1182 KeyValue == 0x1234 : user select 'Refresh' in first page, or user select 'Go to Previous Menu' in second page
1183 KeyValue == 0x1235 : user select 'Pci device filter' in first page
1184 KeyValue == 0x1500 : user select 'order ... priority' item in second page
1185 KeyValue == 0x1800 : user select 'commint changes' in third page
1186 KeyValue == 0x2000 : user select 'Go to Previous Menu' in third page
1187 @param Type The type of value for the question.
1188 @param Value A pointer to the data being sent to the original exporting driver.
1189 @param ActionRequest On return, points to the action requested by the callback function.
1190
1191 @retval EFI_SUCCESS Always returned.
1192
1193 **/
1194 EFI_STATUS
1195 EFIAPI
1196 PlatOverMngrCallback (
1197 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
1198 IN EFI_BROWSER_ACTION Action,
1199 IN EFI_QUESTION_ID KeyValue,
1200 IN UINT8 Type,
1201 IN EFI_IFR_TYPE_VALUE *Value,
1202 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest
1203 )
1204 {
1205 EFI_CALLBACK_INFO *Private;
1206 EFI_STATUS Status;
1207 EFI_STRING_ID NewStringToken;
1208 UINTN BufferSize;
1209 PLAT_OVER_MNGR_DATA *FakeNvData;
1210 EFI_INPUT_KEY Key;
1211
1212 Private = EFI_CALLBACK_INFO_FROM_THIS (This);
1213
1214 FakeNvData = &Private->FakeNvData;
1215 BufferSize = sizeof (PLAT_OVER_MNGR_DATA);
1216 Status = GetBrowserData (NULL, NULL, &BufferSize, (UINT8 *) FakeNvData);
1217 if (EFI_ERROR (Status)) {
1218 return Status;
1219 }
1220
1221 if (KeyValue == KEY_VALUE_DEVICE_REFRESH ||
1222 KeyValue == KEY_VALUE_DEVICE_FILTER ||
1223 KeyValue == KEY_VALUE_DRIVER_GOTO_PREVIOUS
1224 ) {
1225 UpdateDeviceSelectPage (Private, KeyValue, FakeNvData);
1226 //
1227 // Update page title string
1228 //
1229 NewStringToken = STRING_TOKEN (STR_TITLE);
1230 Status = HiiLibSetString (Private->RegisteredHandle, NewStringToken, L"First, Select the controller by device path");
1231 ASSERT_EFI_ERROR (Status);
1232 }
1233
1234 if (((KeyValue >= KEY_VALUE_DEVICE_OFFSET) && (KeyValue < KEY_VALUE_DEVICE_MAX)) || (KeyValue == KEY_VALUE_ORDER_GOTO_PREVIOUS)) {
1235 if (KeyValue == KEY_VALUE_ORDER_GOTO_PREVIOUS) {
1236 KeyValue = (EFI_QUESTION_ID) (mSelectedCtrIndex + KEY_VALUE_DEVICE_OFFSET);
1237 }
1238 UpdateBindingDriverSelectPage (Private, KeyValue, FakeNvData);
1239 //
1240 // Update page title string
1241 //
1242 NewStringToken = STRING_TOKEN (STR_TITLE);
1243 Status = HiiLibSetString (Private->RegisteredHandle, NewStringToken, L"Second, Select drivers for the previous selected controller");
1244 ASSERT_EFI_ERROR (Status);
1245 }
1246
1247 if (KeyValue == KEY_VALUE_DRIVER_GOTO_ORDER) {
1248 UpdatePrioritySelectPage (Private, KeyValue, FakeNvData);
1249 //
1250 // Update page title string
1251 //
1252 NewStringToken = STRING_TOKEN (STR_TITLE);
1253 Status = HiiLibSetString (Private->RegisteredHandle, NewStringToken, L"Finally, Set the priority order for the drivers and save them");
1254 ASSERT_EFI_ERROR (Status);
1255 }
1256
1257 if (KeyValue == KEY_VALUE_ORDER_SAVE_AND_EXIT) {
1258 Status = CommintChanges (Private, KeyValue, FakeNvData);
1259 *ActionRequest = EFI_BROWSER_ACTION_REQUEST_SUBMIT;
1260 if (EFI_ERROR (Status)) {
1261 IfrLibCreatePopUp (1, &Key, L"Single Override Info too large, Saving Error!");
1262 return EFI_DEVICE_ERROR;
1263 }
1264 }
1265
1266 if (KeyValue == KEY_VALUE_DEVICE_CLEAR) {
1267 //
1268 // Deletes all environment variable(s) that contain the override mappings info
1269 //
1270 FreeMappingDatabase (&mMappingDataBase);
1271 Status = SaveOverridesMapping (&mMappingDataBase);
1272 UpdateDeviceSelectPage (Private, KeyValue, FakeNvData);
1273 }
1274 //
1275 // Pass changed uncommitted data back to Form Browser
1276 //
1277 BufferSize = sizeof (PLAT_OVER_MNGR_DATA);
1278 Status = SetBrowserData (NULL, NULL, BufferSize, (UINT8 *) FakeNvData, NULL);
1279
1280 return EFI_SUCCESS;
1281 }
1282
1283 /**
1284 The driver Entry Point. The funciton will export a disk device class formset and
1285 its callback function to hii database.
1286
1287 @param ImageHandle The firmware allocated handle for the EFI image.
1288 @param SystemTable A pointer to the EFI System Table.
1289
1290 @retval EFI_SUCCESS The entry point is executed successfully.
1291 @retval other Some error occurs when executing this entry point.
1292
1293 **/
1294 EFI_STATUS
1295 EFIAPI
1296 PlatOverMngrInit (
1297 IN EFI_HANDLE ImageHandle,
1298 IN EFI_SYSTEM_TABLE *SystemTable
1299 )
1300 {
1301 EFI_STATUS Status;
1302 EFI_HII_DATABASE_PROTOCOL *HiiDatabase;
1303 EFI_HII_PACKAGE_LIST_HEADER *PackageList;
1304 EFI_CALLBACK_INFO *CallbackInfo;
1305 EFI_HANDLE DriverHandle;
1306 EFI_FORM_BROWSER2_PROTOCOL *FormBrowser2;
1307
1308 //
1309 // There should only be one HII protocol
1310 //
1311 Status = gBS->LocateProtocol (
1312 &gEfiHiiDatabaseProtocolGuid,
1313 NULL,
1314 (VOID **) &HiiDatabase
1315 );
1316 if (EFI_ERROR (Status)) {
1317 return Status;
1318 }
1319
1320 //
1321 // There should only be one Form Configuration protocol
1322 //
1323 Status = gBS->LocateProtocol (
1324 &gEfiFormBrowser2ProtocolGuid,
1325 NULL,
1326 (VOID **) &FormBrowser2
1327 );
1328 if (EFI_ERROR (Status)) {
1329 return Status;
1330 }
1331
1332 CallbackInfo = AllocateZeroPool (sizeof (EFI_CALLBACK_INFO));
1333 if (CallbackInfo == NULL) {
1334 return EFI_BAD_BUFFER_SIZE;
1335 }
1336
1337 CallbackInfo->Signature = EFI_CALLBACK_INFO_SIGNATURE;
1338 CallbackInfo->ConfigAccess.ExtractConfig = PlatOverMngrExtractConfig;
1339 CallbackInfo->ConfigAccess.RouteConfig = PlatOverMngrRouteConfig;
1340 CallbackInfo->ConfigAccess.Callback = PlatOverMngrCallback;
1341
1342 //
1343 // Create driver handle used by HII database
1344 //
1345 Status = HiiLibCreateHiiDriverHandle (&DriverHandle);
1346 if (EFI_ERROR (Status)) {
1347 goto Finish;
1348 }
1349 CallbackInfo->DriverHandle = DriverHandle;
1350
1351 //
1352 // Install Config Access protocol to driver handle
1353 //
1354 Status = gBS->InstallProtocolInterface (
1355 &DriverHandle,
1356 &gEfiHiiConfigAccessProtocolGuid,
1357 EFI_NATIVE_INTERFACE,
1358 &CallbackInfo->ConfigAccess
1359 );
1360 if (EFI_ERROR (Status)) {
1361 goto Finish;
1362 }
1363
1364 //
1365 // Publish our HII data
1366 //
1367 PackageList = HiiLibPreparePackageList (
1368 2,
1369 &mPlatformOverridesManagerGuid,
1370 VfrBin,
1371 PlatOverMngrStrings
1372 );
1373 ASSERT (PackageList != NULL);
1374
1375 Status = HiiDatabase->NewPackageList (
1376 HiiDatabase,
1377 PackageList,
1378 DriverHandle,
1379 &CallbackInfo->RegisteredHandle
1380 );
1381 FreePool (PackageList);
1382
1383 if (EFI_ERROR (Status)) {
1384 goto Finish;
1385 }
1386
1387 //
1388 // Locate ConfigRouting protocol
1389 //
1390 Status = gBS->LocateProtocol (
1391 &gEfiHiiConfigRoutingProtocolGuid,
1392 NULL,
1393 (VOID **) &CallbackInfo->HiiConfigRouting
1394 );
1395 if (EFI_ERROR (Status)) {
1396 goto Finish;
1397 }
1398
1399 //
1400 // Clear all the globle variable
1401 //
1402 mDriverImageHandleCount = 0;
1403 mCurrentPage = 0;
1404 ZeroMem (mDriverImageToken, MAX_CHOICE_NUM * sizeof (EFI_STRING_ID));
1405 ZeroMem (mDriverImageFilePathToken, MAX_CHOICE_NUM * sizeof (EFI_STRING_ID));
1406 ZeroMem (mControllerToken, MAX_CHOICE_NUM * sizeof (EFI_STRING_ID));
1407 ZeroMem (mDriverImageProtocol, MAX_CHOICE_NUM * sizeof (EFI_LOADED_IMAGE_PROTOCOL *));
1408
1409 //
1410 // Show the page
1411 //
1412 Status = FormBrowser2->SendForm (
1413 FormBrowser2,
1414 &CallbackInfo->RegisteredHandle,
1415 1,
1416 NULL,
1417 0,
1418 NULL,
1419 NULL
1420 );
1421 if (EFI_ERROR (Status)) {
1422 goto Finish;
1423 }
1424
1425 Status = HiiDatabase->RemovePackageList (HiiDatabase, CallbackInfo->RegisteredHandle);
1426 if (EFI_ERROR (Status)) {
1427 goto Finish;
1428 }
1429
1430 return EFI_SUCCESS;
1431
1432 Finish:
1433 if (CallbackInfo->DriverHandle != NULL) {
1434 HiiLibDestroyHiiDriverHandle (CallbackInfo->DriverHandle);
1435 }
1436 if (CallbackInfo != NULL) {
1437 FreePool (CallbackInfo);
1438 }
1439
1440 return Status;
1441 }