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