2008-04-09 04:09:51 +02:00
|
|
|
/** @file
|
2009-04-24 09:02:52 +02:00
|
|
|
This file also installs UEFI PLATFORM_DRIVER_OVERRIDE_PROTOCOL.
|
|
|
|
|
|
|
|
The main code offers a UI interface in device manager to let user configure
|
2008-04-09 04:09:51 +02:00
|
|
|
platform override protocol to override the default algorithm for matching
|
|
|
|
drivers to controllers.
|
|
|
|
|
|
|
|
The main flow:
|
2009-04-24 09:02:52 +02:00
|
|
|
1. It dynamicly locate all controller device path.
|
|
|
|
2. It dynamicly locate all drivers which support binding protocol.
|
|
|
|
3. It export and dynamicly update two menu to let user select the
|
2008-04-09 04:09:51 +02:00
|
|
|
mapping between drivers to controllers.
|
2009-04-24 09:02:52 +02:00
|
|
|
4. It save all the mapping info in NV variables which will be consumed
|
2008-04-09 04:09:51 +02:00
|
|
|
by platform override protocol driver to publish the platform override protocol.
|
|
|
|
|
2011-05-20 04:48:59 +02:00
|
|
|
Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.<BR>
|
2010-04-24 11:33:45 +02:00
|
|
|
This program and the accompanying materials
|
2009-01-09 07:26:42 +01:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
**/
|
|
|
|
|
2009-04-24 09:02:52 +02:00
|
|
|
#include "InternalPlatDriOverrideDxe.h"
|
2008-04-09 04:09:51 +02:00
|
|
|
#include "PlatOverMngr.h"
|
|
|
|
|
2008-12-25 10:13:53 +01:00
|
|
|
#define EFI_CALLBACK_INFO_SIGNATURE SIGNATURE_32 ('C', 'l', 'b', 'k')
|
|
|
|
#define EFI_CALLBACK_INFO_FROM_THIS(a) CR (a, EFI_CALLBACK_INFO, ConfigAccess, EFI_CALLBACK_INFO_SIGNATURE)
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
UINTN Signature;
|
|
|
|
EFI_HANDLE DriverHandle;
|
|
|
|
EFI_HII_HANDLE RegisteredHandle;
|
|
|
|
PLAT_OVER_MNGR_DATA FakeNvData;
|
|
|
|
EFI_HII_CONFIG_ROUTING_PROTOCOL *HiiConfigRouting;
|
|
|
|
EFI_HII_CONFIG_ACCESS_PROTOCOL ConfigAccess;
|
2009-04-24 09:02:52 +02:00
|
|
|
EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL PlatformDriverOverride;
|
2008-12-25 10:13:53 +01:00
|
|
|
} EFI_CALLBACK_INFO;
|
|
|
|
|
2009-04-02 10:48:03 +02:00
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
///
|
|
|
|
/// HII specific Vendor Device Path definition.
|
|
|
|
///
|
|
|
|
typedef struct {
|
|
|
|
VENDOR_DEVICE_PATH VendorDevicePath;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL End;
|
|
|
|
} HII_VENDOR_DEVICE_PATH;
|
|
|
|
|
|
|
|
#pragma pack()
|
|
|
|
|
2008-12-25 10:13:53 +01:00
|
|
|
//
|
|
|
|
// uni string and Vfr Binary data.
|
|
|
|
//
|
|
|
|
extern UINT8 VfrBin[];
|
2009-04-24 09:02:52 +02:00
|
|
|
extern UINT8 PlatDriOverrideDxeStrings[];
|
2008-12-25 10:13:53 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// module global data
|
|
|
|
//
|
|
|
|
EFI_GUID mPlatformOverridesManagerGuid = PLAT_OVER_MNGR_GUID;
|
2009-04-13 08:05:15 +02:00
|
|
|
CHAR16 mVariableName[] = L"Data";
|
2008-12-25 10:13:53 +01:00
|
|
|
LIST_ENTRY mMappingDataBase = INITIALIZE_LIST_HEAD_VARIABLE (mMappingDataBase);
|
2009-04-24 09:02:52 +02:00
|
|
|
BOOLEAN mEnvironmentVariableRead = FALSE;
|
|
|
|
EFI_HANDLE mCallerImageHandle = NULL;
|
2008-12-25 10:13:53 +01:00
|
|
|
|
|
|
|
EFI_HANDLE *mDevicePathHandleBuffer;
|
|
|
|
EFI_HANDLE *mDriverImageHandleBuffer;
|
|
|
|
|
2009-02-13 04:36:02 +01:00
|
|
|
INTN mSelectedCtrIndex;
|
2008-12-25 10:13:53 +01:00
|
|
|
EFI_STRING_ID mControllerToken[MAX_CHOICE_NUM];
|
2008-10-30 07:05:06 +01:00
|
|
|
UINTN mDriverImageHandleCount;
|
|
|
|
EFI_STRING_ID mDriverImageToken[MAX_CHOICE_NUM];
|
|
|
|
EFI_STRING_ID mDriverImageFilePathToken[MAX_CHOICE_NUM];
|
|
|
|
EFI_LOADED_IMAGE_PROTOCOL *mDriverImageProtocol[MAX_CHOICE_NUM];
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *mControllerDevicePathProtocol[MAX_CHOICE_NUM];
|
|
|
|
UINTN mSelectedDriverImageNum;
|
|
|
|
UINTN mLastSavedDriverImageNum;
|
|
|
|
UINT16 mCurrentPage;
|
2009-04-13 08:05:15 +02:00
|
|
|
EFI_CALLBACK_INFO *mCallbackInfo;
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2009-04-02 10:48:03 +02:00
|
|
|
HII_VENDOR_DEVICE_PATH mHiiVendorDevicePath = {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
HARDWARE_DEVICE_PATH,
|
|
|
|
HW_VENDOR_DP,
|
|
|
|
{
|
|
|
|
(UINT8) (sizeof (VENDOR_DEVICE_PATH)),
|
|
|
|
(UINT8) ((sizeof (VENDOR_DEVICE_PATH)) >> 8)
|
|
|
|
}
|
|
|
|
},
|
2009-04-13 08:05:15 +02:00
|
|
|
EFI_CALLER_ID_GUID
|
2009-04-02 10:48:03 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
END_DEVICE_PATH_TYPE,
|
|
|
|
END_ENTIRE_DEVICE_PATH_SUBTYPE,
|
|
|
|
{
|
|
|
|
(UINT8) (END_DEVICE_PATH_LENGTH),
|
|
|
|
(UINT8) ((END_DEVICE_PATH_LENGTH) >> 8)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-02-24 16:52:09 +01:00
|
|
|
/**
|
|
|
|
Converting a given device to an unicode string.
|
|
|
|
|
|
|
|
This function will dependent on gEfiDevicePathToTextProtocolGuid, if protocol
|
|
|
|
does not installed, then return unknown device path L"?" directly.
|
|
|
|
|
|
|
|
@param DevPath Given device path instance
|
|
|
|
|
|
|
|
@return Converted string from given device path.
|
|
|
|
@retval L"?" Can not locate gEfiDevicePathToTextProtocolGuid protocol for converting.
|
|
|
|
**/
|
|
|
|
CHAR16 *
|
|
|
|
DevicePathToStr (
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *DevPath
|
2009-04-24 09:02:52 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_DEVICE_PATH_TO_TEXT_PROTOCOL *DevPathToText;
|
|
|
|
CHAR16 *ToText;
|
|
|
|
|
|
|
|
if (DevPath == NULL) {
|
|
|
|
return L"";
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = gBS->LocateProtocol (
|
|
|
|
&gEfiDevicePathToTextProtocolGuid,
|
|
|
|
NULL,
|
|
|
|
(VOID **) &DevPathToText
|
|
|
|
);
|
|
|
|
if (!EFI_ERROR (Status)) {
|
|
|
|
ToText = DevPathToText->ConvertDevicePathToText (
|
|
|
|
DevPath,
|
|
|
|
FALSE,
|
|
|
|
TRUE
|
|
|
|
);
|
|
|
|
ASSERT (ToText != NULL);
|
|
|
|
return ToText;
|
|
|
|
}
|
|
|
|
|
|
|
|
return L"?";
|
|
|
|
}
|
2009-02-24 16:52:09 +01:00
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
/**
|
2009-03-24 16:41:50 +01:00
|
|
|
Worker function to get the driver name by ComponentName or ComponentName2 protocol
|
|
|
|
according to the driver binding handle.
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2009-03-24 16:41:50 +01:00
|
|
|
@param DriverBindingHandle The Handle of DriverBinding.
|
|
|
|
@param ProtocolGuid The pointer to Component Name (2) protocol GUID.
|
|
|
|
@param VariableName The name of the RFC 4646 or ISO 639-2 language variable.
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2009-03-24 16:41:50 +01:00
|
|
|
@retval !NULL Pointer into the image name if the image name is found,
|
|
|
|
@retval NULL Pointer to NULL if the image name is not found.
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
**/
|
2009-03-24 16:41:50 +01:00
|
|
|
CHAR16 *
|
|
|
|
GetComponentNameWorker (
|
|
|
|
IN EFI_HANDLE DriverBindingHandle,
|
|
|
|
IN EFI_GUID *ProtocolGuid,
|
|
|
|
IN CONST CHAR16 *VariableName
|
2008-04-09 04:09:51 +02:00
|
|
|
)
|
|
|
|
{
|
2009-03-24 16:41:50 +01:00
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_COMPONENT_NAME_PROTOCOL *ComponentName;
|
|
|
|
CHAR16 *DriverName;
|
|
|
|
CHAR8 *Language;
|
|
|
|
CHAR8 *BestLanguage;
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2009-03-24 16:41:50 +01:00
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
DriverBindingHandle,
|
|
|
|
ProtocolGuid,
|
|
|
|
(VOID *) &ComponentName,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
2008-12-25 10:13:53 +01:00
|
|
|
return NULL;
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
2009-03-24 16:41:50 +01:00
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2009-03-24 16:41:50 +01:00
|
|
|
// Find the best matching language.
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2009-03-24 16:41:50 +01:00
|
|
|
Language = GetEfiGlobalVariable (VariableName);
|
|
|
|
BestLanguage = GetBestLanguage (
|
|
|
|
ComponentName->SupportedLanguages,
|
|
|
|
(BOOLEAN) (ProtocolGuid == &gEfiComponentNameProtocolGuid),
|
|
|
|
Language,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
DriverName = NULL;
|
|
|
|
if (BestLanguage != NULL) {
|
|
|
|
ComponentName->GetDriverName (
|
|
|
|
ComponentName,
|
|
|
|
BestLanguage,
|
|
|
|
&DriverName
|
|
|
|
);
|
|
|
|
FreePool (BestLanguage);
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
2009-03-24 16:41:50 +01:00
|
|
|
|
|
|
|
if (Language != NULL) {
|
|
|
|
FreePool (Language);
|
|
|
|
}
|
|
|
|
|
|
|
|
return DriverName;
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
|
|
|
|
2009-03-24 16:41:50 +01:00
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
/**
|
2008-12-25 10:13:53 +01:00
|
|
|
Get the driver name by ComponentName or ComponentName2 protocol
|
|
|
|
according to the driver binding handle
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
@param DriverBindingHandle The Handle of DriverBinding.
|
|
|
|
|
|
|
|
@retval !NULL Pointer into the image name if the image name is found,
|
|
|
|
@retval NULL Pointer to NULL if the image name is not found.
|
|
|
|
|
|
|
|
**/
|
|
|
|
CHAR16 *
|
|
|
|
GetComponentName (
|
|
|
|
IN EFI_HANDLE DriverBindingHandle
|
|
|
|
)
|
|
|
|
{
|
2009-03-24 16:41:50 +01:00
|
|
|
CHAR16 *DriverName;
|
2008-12-25 10:13:53 +01:00
|
|
|
|
2009-03-24 16:41:50 +01:00
|
|
|
//
|
|
|
|
// Try RFC 4646 Component Name 2 protocol first.
|
|
|
|
//
|
|
|
|
DriverName = GetComponentNameWorker (DriverBindingHandle, &gEfiComponentName2ProtocolGuid, L"PlatformLang");
|
|
|
|
if (DriverName == NULL) {
|
|
|
|
//
|
|
|
|
// If we can not get driver name from Component Name 2 protocol, we can try ISO 639-2 Component Name protocol.
|
|
|
|
//
|
|
|
|
DriverName = GetComponentNameWorker (DriverBindingHandle, &gEfiComponentNameProtocolGuid, L"Lang");
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return DriverName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-12-25 10:13:53 +01:00
|
|
|
Get the image name from EFI UI section.
|
2009-03-24 16:41:50 +01:00
|
|
|
Get FV protocol by its loaded image protocol to abstract EFI UI section.
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2008-12-25 10:13:53 +01:00
|
|
|
@param Image Pointer to the loaded image protocol
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2008-12-25 10:13:53 +01:00
|
|
|
@retval !NULL Pointer to the image name if the image name is found,
|
|
|
|
@retval NULL NULL if the image name is not found.
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
CHAR16 *
|
|
|
|
GetImageName (
|
2008-12-11 10:30:13 +01:00
|
|
|
IN EFI_LOADED_IMAGE_PROTOCOL *Image
|
2008-04-09 04:09:51 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *DevPathNode;
|
2008-11-11 16:42:40 +01:00
|
|
|
EFI_DEVICE_PATH_PROTOCOL *AlignedDevPathNode;
|
2008-04-09 04:09:51 +02:00
|
|
|
MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvFilePath;
|
|
|
|
VOID *Buffer;
|
|
|
|
UINTN BufferSize;
|
|
|
|
UINT32 AuthenticationStatus;
|
|
|
|
EFI_GUID *NameGuid;
|
2008-12-11 10:30:13 +01:00
|
|
|
EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv2;
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2008-12-11 10:30:13 +01:00
|
|
|
Fv2 = NULL;
|
2008-04-09 04:09:51 +02:00
|
|
|
Buffer = NULL;
|
|
|
|
BufferSize = 0;
|
|
|
|
|
|
|
|
if (Image->FilePath == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-11-11 16:42:40 +01:00
|
|
|
DevPathNode = Image->FilePath;
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
while (!IsDevicePathEnd (DevPathNode)) {
|
2008-11-11 16:42:40 +01:00
|
|
|
//
|
|
|
|
// Make sure device path node is aligned when accessing it's FV Name Guid field.
|
|
|
|
//
|
|
|
|
AlignedDevPathNode = AllocateCopyPool (DevicePathNodeLength(DevPathNode), DevPathNode);
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
// Find the Fv File path
|
|
|
|
//
|
2008-11-11 16:42:40 +01:00
|
|
|
NameGuid = EfiGetNameGuidFromFwVolDevicePathNode ((MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *)AlignedDevPathNode);
|
2008-04-09 04:09:51 +02:00
|
|
|
if (NameGuid != NULL) {
|
2008-11-11 16:42:40 +01:00
|
|
|
FvFilePath = (MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) AlignedDevPathNode;
|
2008-04-09 04:09:51 +02:00
|
|
|
Status = gBS->HandleProtocol (
|
|
|
|
Image->DeviceHandle,
|
|
|
|
&gEfiFirmwareVolume2ProtocolGuid,
|
2008-12-11 10:30:13 +01:00
|
|
|
(VOID **) &Fv2
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
2008-12-25 10:13:53 +01:00
|
|
|
//
|
|
|
|
// Locate Image EFI UI section to get the image name.
|
|
|
|
//
|
2008-04-09 04:09:51 +02:00
|
|
|
if (!EFI_ERROR (Status)) {
|
2008-12-11 10:30:13 +01:00
|
|
|
Status = Fv2->ReadSection (
|
|
|
|
Fv2,
|
2008-04-09 04:09:51 +02:00
|
|
|
&FvFilePath->FvFileName,
|
|
|
|
EFI_SECTION_USER_INTERFACE,
|
|
|
|
0,
|
|
|
|
&Buffer,
|
|
|
|
&BufferSize,
|
|
|
|
&AuthenticationStatus
|
|
|
|
);
|
|
|
|
if (!EFI_ERROR (Status)) {
|
2008-11-11 16:42:40 +01:00
|
|
|
FreePool (AlignedDevPathNode);
|
2008-04-09 04:09:51 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
Buffer = NULL;
|
|
|
|
}
|
|
|
|
}
|
2008-11-11 16:42:40 +01:00
|
|
|
|
|
|
|
FreePool (AlignedDevPathNode);
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
// Next device path node
|
|
|
|
//
|
|
|
|
DevPathNode = NextDevicePathNode (DevPathNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Prepare the first page to let user select the device controller which need to
|
2008-12-25 10:13:53 +01:00
|
|
|
add mapping drivers if user select 'Refresh' in first page.
|
|
|
|
During first page, user will see all currnet controller device path in system,
|
|
|
|
select any device path will go to second page to select its overrides drivers.
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
@param Private Pointer to EFI_CALLBACK_INFO.
|
|
|
|
@param KeyValue The callback key value of device controller item in first page.
|
|
|
|
@param FakeNvData Pointer to PLAT_OVER_MNGR_DATA.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Always returned.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UpdateDeviceSelectPage (
|
|
|
|
IN EFI_CALLBACK_INFO *Private,
|
|
|
|
IN UINT16 KeyValue,
|
|
|
|
IN PLAT_OVER_MNGR_DATA *FakeNvData
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINTN Index;
|
|
|
|
UINTN DevicePathHandleCount;
|
|
|
|
CHAR16 *NewString;
|
|
|
|
EFI_STRING_ID NewStringToken;
|
|
|
|
CHAR16 *ControllerName;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *ControllerDevicePath;
|
|
|
|
EFI_PCI_IO_PROTOCOL *PciIo;
|
|
|
|
EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL *BusSpecificDriverOverride;
|
|
|
|
UINTN Len;
|
2009-04-13 08:05:15 +02:00
|
|
|
VOID *StartOpCodeHandle;
|
|
|
|
VOID *EndOpCodeHandle;
|
|
|
|
EFI_IFR_GUID_LABEL *StartLabel;
|
|
|
|
EFI_IFR_GUID_LABEL *EndLabel;
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
// Set current page form ID.
|
2008-12-25 10:13:53 +01:00
|
|
|
//
|
|
|
|
mCurrentPage = FORM_ID_DEVICE;
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
// Initial the mapping database in memory
|
|
|
|
//
|
|
|
|
FreeMappingDatabase (&mMappingDataBase);
|
2009-04-13 08:05:15 +02:00
|
|
|
InitOverridesMapping (&mMappingDataBase);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Init OpCode Handle
|
|
|
|
//
|
|
|
|
StartOpCodeHandle = HiiAllocateOpCodeHandle ();
|
|
|
|
ASSERT (StartOpCodeHandle != NULL);
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2009-04-13 08:05:15 +02:00
|
|
|
EndOpCodeHandle = HiiAllocateOpCodeHandle ();
|
|
|
|
ASSERT (EndOpCodeHandle != NULL);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create Hii Extend Label OpCode as the start opcode
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
StartLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (StartOpCodeHandle, &gEfiIfrTianoGuid, NULL, sizeof (EFI_IFR_GUID_LABEL));
|
|
|
|
StartLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
|
|
|
|
StartLabel->Number = FORM_ID_DEVICE;
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
// Create Hii Extend Label OpCode as the end opcode
|
|
|
|
//
|
|
|
|
EndLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (EndOpCodeHandle, &gEfiIfrTianoGuid, NULL, sizeof (EFI_IFR_GUID_LABEL));
|
|
|
|
EndLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
|
|
|
|
EndLabel->Number = LABEL_END;
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
// Clear first page form
|
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiUpdateForm (
|
2008-04-09 04:09:51 +02:00
|
|
|
Private->RegisteredHandle,
|
|
|
|
&mPlatformOverridesManagerGuid,
|
|
|
|
FORM_ID_DEVICE,
|
2009-04-13 08:05:15 +02:00
|
|
|
StartOpCodeHandle, // Label FORM_ID_DEVICE
|
|
|
|
EndOpCodeHandle // LABEL_END
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// When user enter the page at first time, the 'first refresh' string is given to notify user to refresh all the drivers,
|
2008-12-25 10:13:53 +01:00
|
|
|
// then the 'first refresh' string will be replaced by the 'refresh' string, and the two strings content are same after the replacement
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
NewStringToken = STRING_TOKEN (STR_FIRST_REFRESH);
|
2009-04-14 12:47:19 +02:00
|
|
|
NewString = HiiGetString (Private->RegisteredHandle, STRING_TOKEN (STR_REFRESH), NULL);
|
2008-04-09 04:09:51 +02:00
|
|
|
ASSERT (NewString != NULL);
|
2009-04-14 12:47:19 +02:00
|
|
|
if (HiiSetString (Private->RegisteredHandle, NewStringToken, NewString, NULL) == 0) {
|
|
|
|
ASSERT (FALSE);
|
|
|
|
}
|
2008-12-25 10:13:53 +01:00
|
|
|
FreePool (NewString);
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
NewStringToken = STRING_TOKEN (STR_FIRST_REFRESH_HELP);
|
2009-04-14 12:47:19 +02:00
|
|
|
NewString = HiiGetString (Private->RegisteredHandle, STRING_TOKEN (STR_REFRESH_HELP), NULL);
|
2008-04-09 04:09:51 +02:00
|
|
|
ASSERT (NewString != NULL);
|
2009-04-14 12:47:19 +02:00
|
|
|
if (HiiSetString (Private->RegisteredHandle, NewStringToken, NewString, NULL) == 0) {
|
|
|
|
ASSERT (FALSE);
|
|
|
|
}
|
2008-12-25 10:13:53 +01:00
|
|
|
FreePool (NewString);
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
// created needed controller device item in first page
|
|
|
|
//
|
|
|
|
DevicePathHandleCount = 0;
|
|
|
|
Status = gBS->LocateHandleBuffer (
|
|
|
|
ByProtocol,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
NULL,
|
|
|
|
&DevicePathHandleCount,
|
|
|
|
&mDevicePathHandleBuffer
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status) || (DevicePathHandleCount == 0)) {
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Index = 0; Index < DevicePathHandleCount; Index++) {
|
|
|
|
if (FakeNvData->PciDeviceFilter == 0x01) {
|
|
|
|
//
|
|
|
|
// Only care PCI device which contain efi driver in its option rom.
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check whether it is a pci device
|
|
|
|
//
|
|
|
|
ControllerDevicePath = NULL;
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
mDevicePathHandleBuffer[Index],
|
|
|
|
&gEfiPciIoProtocolGuid,
|
|
|
|
(VOID **) &PciIo,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Check whether it contain efi driver in its option rom
|
|
|
|
//
|
|
|
|
Status = gBS->HandleProtocol(
|
|
|
|
mDevicePathHandleBuffer[Index],
|
|
|
|
&gEfiBusSpecificDriverOverrideProtocolGuid,
|
|
|
|
(VOID **) &BusSpecificDriverOverride
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status) || BusSpecificDriverOverride == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ControllerDevicePath = NULL;
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
mDevicePathHandleBuffer[Index],
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
(VOID **) &ControllerDevicePath,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
//
|
|
|
|
// Save the device path protocol interface
|
|
|
|
//
|
|
|
|
mControllerDevicePathProtocol[Index] = ControllerDevicePath;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get the driver name
|
|
|
|
//
|
|
|
|
ControllerName = DevicePathToStr (ControllerDevicePath);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Export the driver name string and create item in set options page
|
|
|
|
//
|
|
|
|
Len = StrSize (ControllerName);
|
|
|
|
NewString = AllocateZeroPool (Len + StrSize (L"--"));
|
2009-01-05 03:20:16 +01:00
|
|
|
ASSERT (NewString != NULL);
|
2008-04-09 04:09:51 +02:00
|
|
|
if (EFI_ERROR (CheckMapping (ControllerDevicePath,NULL, &mMappingDataBase, NULL, NULL))) {
|
|
|
|
StrCat (NewString, L"--");
|
|
|
|
} else {
|
|
|
|
StrCat (NewString, L"**");
|
|
|
|
}
|
|
|
|
StrCat (NewString, ControllerName);
|
|
|
|
|
2009-04-14 12:47:19 +02:00
|
|
|
NewStringToken = HiiSetString (Private->RegisteredHandle, mControllerToken[Index], NewString, NULL);
|
|
|
|
ASSERT (NewStringToken != 0);
|
2008-12-25 10:13:53 +01:00
|
|
|
FreePool (NewString);
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
// Save the device path string toke for next access use
|
|
|
|
//
|
|
|
|
mControllerToken[Index] = NewStringToken;
|
2009-04-13 08:05:15 +02:00
|
|
|
|
|
|
|
HiiCreateGotoOpCode (
|
|
|
|
StartOpCodeHandle,
|
2008-04-09 04:09:51 +02:00
|
|
|
FORM_ID_DRIVER,
|
|
|
|
NewStringToken,
|
|
|
|
STRING_TOKEN (STR_GOTO_HELP_DRIVER),
|
|
|
|
EFI_IFR_FLAG_CALLBACK,
|
2009-04-13 08:05:15 +02:00
|
|
|
(UINT16) (Index + KEY_VALUE_DEVICE_OFFSET)
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Update first page form
|
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiUpdateForm (
|
2008-04-09 04:09:51 +02:00
|
|
|
Private->RegisteredHandle,
|
|
|
|
&mPlatformOverridesManagerGuid,
|
|
|
|
FORM_ID_DEVICE,
|
2009-04-13 08:05:15 +02:00
|
|
|
StartOpCodeHandle, // Label FORM_ID_DEVICE
|
|
|
|
EndOpCodeHandle // LABEL_END
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
|
|
|
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiFreeOpCodeHandle (StartOpCodeHandle);
|
|
|
|
HiiFreeOpCodeHandle (EndOpCodeHandle);
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-12-25 10:13:53 +01:00
|
|
|
/**
|
|
|
|
Get the first Driver Binding handle which has the specific image handle.
|
|
|
|
|
|
|
|
@param ImageHandle The Image handle
|
|
|
|
|
|
|
|
@return Handle to Driver binding
|
|
|
|
@retval NULL The paramter is not valid or the driver binding handle is not found.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_HANDLE
|
|
|
|
GetDriverBindingHandleFromImageHandle (
|
|
|
|
IN EFI_HANDLE ImageHandle
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINTN Index;
|
|
|
|
UINTN DriverBindingHandleCount;
|
|
|
|
EFI_HANDLE *DriverBindingHandleBuffer;
|
|
|
|
EFI_DRIVER_BINDING_PROTOCOL *DriverBindingInterface;
|
|
|
|
EFI_HANDLE DriverBindingHandle;
|
|
|
|
|
|
|
|
DriverBindingHandle = NULL;
|
|
|
|
|
|
|
|
if (ImageHandle == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Get all drivers which support driver binding protocol
|
|
|
|
//
|
|
|
|
DriverBindingHandleCount = 0;
|
|
|
|
Status = gBS->LocateHandleBuffer (
|
|
|
|
ByProtocol,
|
|
|
|
&gEfiDriverBindingProtocolGuid,
|
|
|
|
NULL,
|
|
|
|
&DriverBindingHandleCount,
|
|
|
|
&DriverBindingHandleBuffer
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status) || (DriverBindingHandleCount == 0)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-01-09 07:26:42 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Get the first Driver Binding handle which has the specific image handle.
|
|
|
|
//
|
2008-12-25 10:13:53 +01:00
|
|
|
for (Index = 0; Index < DriverBindingHandleCount; Index++) {
|
|
|
|
DriverBindingInterface = NULL;
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
DriverBindingHandleBuffer[Index],
|
|
|
|
&gEfiDriverBindingProtocolGuid,
|
|
|
|
(VOID **) &DriverBindingInterface,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DriverBindingInterface->ImageHandle == ImageHandle) {
|
|
|
|
DriverBindingHandle = DriverBindingHandleBuffer[Index];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FreePool (DriverBindingHandleBuffer);
|
|
|
|
return DriverBindingHandle;
|
|
|
|
}
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
/**
|
|
|
|
Prepare to let user select the drivers which need mapping with the device controller
|
|
|
|
selected in first page.
|
|
|
|
|
|
|
|
@param Private Pointer to EFI_CALLBACK_INFO.
|
|
|
|
@param KeyValue The callback key value of device controller item in first page.
|
2009-01-22 16:40:06 +01:00
|
|
|
KeyValue is larger than or equal to KEY_VALUE_DEVICE_OFFSET.
|
2008-04-09 04:09:51 +02:00
|
|
|
@param FakeNvData Pointer to PLAT_OVER_MNGR_DATA.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Always returned.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UpdateBindingDriverSelectPage (
|
|
|
|
IN EFI_CALLBACK_INFO *Private,
|
|
|
|
IN UINT16 KeyValue,
|
|
|
|
IN PLAT_OVER_MNGR_DATA *FakeNvData
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINTN Index;
|
|
|
|
CHAR16 *NewString;
|
|
|
|
EFI_STRING_ID NewStringToken;
|
|
|
|
EFI_STRING_ID NewStringHelpToken;
|
|
|
|
UINTN DriverImageHandleCount;
|
|
|
|
EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
|
|
|
|
CHAR16 *DriverName;
|
|
|
|
BOOLEAN FreeDriverName;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *LoadedImageDevicePath;
|
|
|
|
EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL *BusSpecificDriverOverride;
|
|
|
|
EFI_HANDLE DriverBindingHandle;
|
2009-04-13 08:05:15 +02:00
|
|
|
VOID *StartOpCodeHandle;
|
|
|
|
VOID *EndOpCodeHandle;
|
|
|
|
EFI_IFR_GUID_LABEL *StartLabel;
|
|
|
|
EFI_IFR_GUID_LABEL *EndLabel;
|
2008-12-25 10:13:53 +01:00
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
// If user select a controller item in the first page the following code will be run.
|
|
|
|
// During second page, user will see all currnet driver bind protocol driver, the driver name and its device path will be shown
|
|
|
|
//
|
|
|
|
//First acquire the list of Loaded Image Protocols, and then when want the name of the driver, look up all the Driver Binding Protocols
|
|
|
|
// and find the first one whose ImageHandle field matches the image handle of the Loaded Image Protocol.
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
|
|
|
|
mCurrentPage = FORM_ID_DRIVER;
|
|
|
|
//
|
|
|
|
// Switch the item callback key value to its NO. in mDevicePathHandleBuffer
|
|
|
|
//
|
2008-12-25 10:13:53 +01:00
|
|
|
mSelectedCtrIndex = KeyValue - KEY_VALUE_DEVICE_OFFSET;
|
2010-05-10 04:17:31 +02:00
|
|
|
ASSERT (mSelectedCtrIndex >= 0 && mSelectedCtrIndex < MAX_CHOICE_NUM);
|
2009-02-13 04:36:02 +01:00
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
mLastSavedDriverImageNum = 0;
|
2009-04-13 08:05:15 +02:00
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
// Init OpCode Handle
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
StartOpCodeHandle = HiiAllocateOpCodeHandle ();
|
|
|
|
ASSERT (StartOpCodeHandle != NULL);
|
|
|
|
|
|
|
|
EndOpCodeHandle = HiiAllocateOpCodeHandle ();
|
|
|
|
ASSERT (EndOpCodeHandle != NULL);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create Hii Extend Label OpCode as the start opcode
|
|
|
|
//
|
|
|
|
StartLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (StartOpCodeHandle, &gEfiIfrTianoGuid, NULL, sizeof (EFI_IFR_GUID_LABEL));
|
|
|
|
StartLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
|
|
|
|
StartLabel->Number = FORM_ID_DRIVER;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create Hii Extend Label OpCode as the end opcode
|
|
|
|
//
|
|
|
|
EndLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (EndOpCodeHandle, &gEfiIfrTianoGuid, NULL, sizeof (EFI_IFR_GUID_LABEL));
|
|
|
|
EndLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
|
|
|
|
EndLabel->Number = LABEL_END;
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
// Clear second page form
|
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiUpdateForm (
|
2008-04-09 04:09:51 +02:00
|
|
|
Private->RegisteredHandle,
|
|
|
|
&mPlatformOverridesManagerGuid,
|
|
|
|
FORM_ID_DRIVER,
|
2009-04-13 08:05:15 +02:00
|
|
|
StartOpCodeHandle,
|
|
|
|
EndOpCodeHandle
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Show all driver which support loaded image protocol in second page
|
|
|
|
//
|
|
|
|
DriverImageHandleCount = 0;
|
|
|
|
Status = gBS->LocateHandleBuffer (
|
|
|
|
ByProtocol,
|
|
|
|
&gEfiLoadedImageProtocolGuid,
|
|
|
|
NULL,
|
|
|
|
&DriverImageHandleCount,
|
|
|
|
&mDriverImageHandleBuffer
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status) || (DriverImageHandleCount == 0)) {
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
mDriverImageHandleCount = DriverImageHandleCount;
|
|
|
|
for (Index = 0; Index < DriverImageHandleCount; Index++) {
|
|
|
|
//
|
|
|
|
// Step1: Get the driver image total file path for help string and the driver name.
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Find driver's Loaded Image protocol
|
|
|
|
//
|
|
|
|
LoadedImage =NULL;
|
|
|
|
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
mDriverImageHandleBuffer[Index],
|
|
|
|
&gEfiLoadedImageProtocolGuid,
|
|
|
|
(VOID **) &LoadedImage,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
FakeNvData->DriSelection[Index] = 0x00;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
mDriverImageProtocol[Index] = LoadedImage;
|
|
|
|
//
|
|
|
|
// Find its related driver binding protocol
|
|
|
|
//
|
2008-12-25 10:13:53 +01:00
|
|
|
DriverBindingHandle = GetDriverBindingHandleFromImageHandle (mDriverImageHandleBuffer[Index]);
|
|
|
|
if (DriverBindingHandle == NULL) {
|
2008-04-09 04:09:51 +02:00
|
|
|
FakeNvData->DriSelection[Index] = 0x00;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get the EFI Loaded Image Device Path Protocol
|
|
|
|
//
|
|
|
|
LoadedImageDevicePath = NULL;
|
|
|
|
Status = gBS->HandleProtocol (
|
|
|
|
mDriverImageHandleBuffer[Index],
|
|
|
|
&gEfiLoadedImageDevicePathProtocolGuid,
|
|
|
|
(VOID **) &LoadedImageDevicePath
|
|
|
|
);
|
|
|
|
if (LoadedImageDevicePath == NULL) {
|
|
|
|
FakeNvData->DriSelection[Index] = 0x00;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FakeNvData->PciDeviceFilter == 0x01) {
|
|
|
|
//
|
|
|
|
// only care the driver which is in a Pci device option rom,
|
|
|
|
// and the driver's LoadedImage->DeviceHandle must point to a pci device which has efi option rom
|
|
|
|
//
|
|
|
|
if (!EFI_ERROR (Status)) {
|
|
|
|
Status = gBS->HandleProtocol(
|
|
|
|
LoadedImage->DeviceHandle,
|
|
|
|
&gEfiBusSpecificDriverOverrideProtocolGuid,
|
|
|
|
(VOID **) &BusSpecificDriverOverride
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status) || BusSpecificDriverOverride == NULL) {
|
|
|
|
FakeNvData->DriSelection[Index] = 0x00;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
FakeNvData->DriSelection[Index] = 0x00;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// For driver name, try to get its component name, if fail, get its image name,
|
|
|
|
// if also fail, give a default name.
|
|
|
|
//
|
|
|
|
FreeDriverName = FALSE;
|
|
|
|
DriverName = GetComponentName (DriverBindingHandle);
|
|
|
|
if (DriverName == NULL) {
|
|
|
|
//
|
|
|
|
// get its image name
|
|
|
|
//
|
|
|
|
DriverName = GetImageName (LoadedImage);
|
|
|
|
}
|
|
|
|
if (DriverName == NULL) {
|
|
|
|
//
|
|
|
|
// give a default name
|
|
|
|
//
|
2009-04-14 12:47:19 +02:00
|
|
|
DriverName = HiiGetString (Private->RegisteredHandle, STRING_TOKEN (STR_DRIVER_DEFAULT_NAME), NULL);
|
2008-04-09 04:09:51 +02:00
|
|
|
ASSERT (DriverName != NULL);
|
|
|
|
FreeDriverName = TRUE; // the DriverName string need to free pool
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Step2 Export the driver name string and create check box item in second page
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// First create the driver image name
|
|
|
|
//
|
|
|
|
NewString = AllocateZeroPool (StrSize (DriverName));
|
2009-01-05 03:20:16 +01:00
|
|
|
ASSERT (NewString != NULL);
|
2008-04-09 04:09:51 +02:00
|
|
|
if (EFI_ERROR (CheckMapping (mControllerDevicePathProtocol[mSelectedCtrIndex], LoadedImageDevicePath, &mMappingDataBase, NULL, NULL))) {
|
|
|
|
FakeNvData->DriSelection[Index] = 0x00;
|
|
|
|
} else {
|
|
|
|
FakeNvData->DriSelection[Index] = 0x01;
|
|
|
|
mLastSavedDriverImageNum++;
|
|
|
|
}
|
|
|
|
StrCat (NewString, DriverName);
|
2009-04-14 12:47:19 +02:00
|
|
|
NewStringToken = HiiSetString (Private->RegisteredHandle, mDriverImageToken[Index], NewString, NULL);
|
|
|
|
ASSERT (NewStringToken != 0);
|
2008-04-09 04:09:51 +02:00
|
|
|
mDriverImageToken[Index] = NewStringToken;
|
2008-12-25 10:13:53 +01:00
|
|
|
FreePool (NewString);
|
2008-04-09 04:09:51 +02:00
|
|
|
if (FreeDriverName) {
|
2008-12-25 10:13:53 +01:00
|
|
|
FreePool (DriverName);
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Second create the driver image device path as item help string
|
|
|
|
//
|
|
|
|
DriverName = DevicePathToStr (LoadedImageDevicePath);
|
|
|
|
|
|
|
|
NewString = AllocateZeroPool (StrSize (DriverName));
|
2009-01-22 15:09:21 +01:00
|
|
|
ASSERT (NewString != NULL);
|
2008-04-09 04:09:51 +02:00
|
|
|
StrCat (NewString, DriverName);
|
2009-04-14 12:47:19 +02:00
|
|
|
NewStringHelpToken = HiiSetString (Private->RegisteredHandle, mDriverImageFilePathToken[Index], NewString, NULL);
|
|
|
|
ASSERT (NewStringHelpToken != 0);
|
2008-04-09 04:09:51 +02:00
|
|
|
mDriverImageFilePathToken[Index] = NewStringHelpToken;
|
2008-12-25 10:13:53 +01:00
|
|
|
FreePool (NewString);
|
|
|
|
FreePool (DriverName);
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiCreateCheckBoxOpCode (
|
|
|
|
StartOpCodeHandle,
|
2008-04-09 04:09:51 +02:00
|
|
|
(UINT16) (DRIVER_SELECTION_QUESTION_ID + Index),
|
|
|
|
VARSTORE_ID_PLAT_OVER_MNGR,
|
|
|
|
(UINT16) (DRIVER_SELECTION_VAR_OFFSET + Index),
|
|
|
|
NewStringToken,
|
|
|
|
NewStringHelpToken,
|
|
|
|
0,
|
|
|
|
0,
|
2009-04-13 08:05:15 +02:00
|
|
|
NULL
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Update second page form
|
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiUpdateForm (
|
2008-04-09 04:09:51 +02:00
|
|
|
Private->RegisteredHandle,
|
|
|
|
&mPlatformOverridesManagerGuid,
|
|
|
|
FORM_ID_DRIVER,
|
2009-04-13 08:05:15 +02:00
|
|
|
StartOpCodeHandle, // Label FORM_ID_DRIVER
|
|
|
|
EndOpCodeHandle // LABEL_END
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
|
|
|
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiFreeOpCodeHandle (StartOpCodeHandle);
|
|
|
|
HiiFreeOpCodeHandle (EndOpCodeHandle);
|
2008-04-09 04:09:51 +02:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Prepare to let user select the priority order of the drivers which are
|
|
|
|
selected in second page.
|
|
|
|
|
|
|
|
@param Private Pointer to EFI_CALLBACK_INFO.
|
|
|
|
@param KeyValue The callback key value of device controller item in first page.
|
|
|
|
@param FakeNvData Pointer to PLAT_OVER_MNGR_DATA.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Always returned.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
UpdatePrioritySelectPage (
|
|
|
|
IN EFI_CALLBACK_INFO *Private,
|
|
|
|
IN UINT16 KeyValue,
|
|
|
|
IN PLAT_OVER_MNGR_DATA *FakeNvData
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINTN Index;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *LoadedImageDevicePath;
|
|
|
|
UINTN SelectedDriverImageNum;
|
|
|
|
UINT32 DriverImageNO;
|
|
|
|
UINTN MinNO;
|
|
|
|
UINTN Index1;
|
|
|
|
UINTN TempNO[100];
|
2009-04-13 08:05:15 +02:00
|
|
|
UINTN OrderNO[100];
|
|
|
|
VOID *StartOpCodeHandle;
|
|
|
|
VOID *EndOpCodeHandle;
|
|
|
|
VOID *OptionsOpCodeHandle;
|
|
|
|
EFI_IFR_GUID_LABEL *StartLabel;
|
|
|
|
EFI_IFR_GUID_LABEL *EndLabel;
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Following code will be run if user select 'order ... priority' item in second page
|
|
|
|
// Prepare third page. In third page, user will order the drivers priority which are selected in second page
|
|
|
|
//
|
|
|
|
mCurrentPage = FORM_ID_ORDER;
|
|
|
|
|
2009-04-13 08:05:15 +02:00
|
|
|
//
|
|
|
|
// Init OpCode Handle
|
|
|
|
//
|
|
|
|
StartOpCodeHandle = HiiAllocateOpCodeHandle ();
|
|
|
|
ASSERT (StartOpCodeHandle != NULL);
|
|
|
|
|
|
|
|
EndOpCodeHandle = HiiAllocateOpCodeHandle ();
|
|
|
|
ASSERT (EndOpCodeHandle != NULL);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create Hii Extend Label OpCode as the start opcode
|
|
|
|
//
|
|
|
|
StartLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (StartOpCodeHandle, &gEfiIfrTianoGuid, NULL, sizeof (EFI_IFR_GUID_LABEL));
|
|
|
|
StartLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
|
|
|
|
StartLabel->Number = FORM_ID_ORDER;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create Hii Extend Label OpCode as the end opcode
|
|
|
|
//
|
|
|
|
EndLabel = (EFI_IFR_GUID_LABEL *) HiiCreateGuidOpCode (EndOpCodeHandle, &gEfiIfrTianoGuid, NULL, sizeof (EFI_IFR_GUID_LABEL));
|
|
|
|
EndLabel->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
|
|
|
|
EndLabel->Number = LABEL_END;
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
// Clear third page form
|
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiUpdateForm (
|
2008-04-09 04:09:51 +02:00
|
|
|
Private->RegisteredHandle,
|
|
|
|
&mPlatformOverridesManagerGuid,
|
|
|
|
FORM_ID_ORDER,
|
2009-04-13 08:05:15 +02:00
|
|
|
StartOpCodeHandle,
|
|
|
|
EndOpCodeHandle
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check how many drivers have been selected
|
|
|
|
//
|
|
|
|
SelectedDriverImageNum = 0;
|
|
|
|
for (Index = 0; Index < mDriverImageHandleCount; Index++) {
|
|
|
|
if (FakeNvData->DriSelection[Index] != 0) {
|
|
|
|
SelectedDriverImageNum ++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mSelectedDriverImageNum = SelectedDriverImageNum;
|
|
|
|
if (SelectedDriverImageNum == 0) {
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
2009-04-13 08:05:15 +02:00
|
|
|
|
|
|
|
OptionsOpCodeHandle = HiiAllocateOpCodeHandle ();
|
|
|
|
ASSERT (OptionsOpCodeHandle != NULL);
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
|
|
|
// Create order list for those selected drivers
|
|
|
|
//
|
|
|
|
SelectedDriverImageNum = 0;
|
|
|
|
for (Index = 0; Index < mDriverImageHandleCount; Index++) {
|
|
|
|
if (FakeNvData->DriSelection[Index] != 0) {
|
|
|
|
//
|
|
|
|
// Use the NO. in driver binding buffer as value, will use it later
|
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiCreateOneOfOptionOpCode (
|
|
|
|
OptionsOpCodeHandle,
|
|
|
|
mDriverImageToken[Index],
|
|
|
|
0,
|
|
|
|
EFI_IFR_NUMERIC_SIZE_1,
|
|
|
|
Index + 1
|
|
|
|
);
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Get the EFI Loaded Image Device Path Protocol
|
|
|
|
//
|
|
|
|
LoadedImageDevicePath = NULL;
|
|
|
|
gBS->HandleProtocol (
|
|
|
|
mDriverImageHandleBuffer[Index],
|
|
|
|
&gEfiLoadedImageDevicePathProtocolGuid,
|
|
|
|
(VOID **) &LoadedImageDevicePath
|
|
|
|
);
|
|
|
|
ASSERT (LoadedImageDevicePath != NULL);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check the driver DriverImage's order number in mapping database
|
|
|
|
//
|
|
|
|
DriverImageNO = 0;
|
|
|
|
CheckMapping (
|
|
|
|
mControllerDevicePathProtocol[mSelectedCtrIndex],
|
|
|
|
LoadedImageDevicePath,
|
|
|
|
&mMappingDataBase,
|
|
|
|
NULL,
|
|
|
|
&DriverImageNO
|
|
|
|
);
|
|
|
|
if (DriverImageNO == 0) {
|
|
|
|
DriverImageNO = (UINT32) mLastSavedDriverImageNum + 1;
|
|
|
|
mLastSavedDriverImageNum++;
|
|
|
|
}
|
|
|
|
TempNO[SelectedDriverImageNum] = DriverImageNO;
|
2009-04-13 08:05:15 +02:00
|
|
|
OrderNO[SelectedDriverImageNum] = Index + 1;
|
2008-04-09 04:09:51 +02:00
|
|
|
SelectedDriverImageNum ++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT (SelectedDriverImageNum == mSelectedDriverImageNum);
|
|
|
|
//
|
|
|
|
// NvRamMap Must be clear firstly
|
|
|
|
//
|
2008-12-25 10:13:53 +01:00
|
|
|
ZeroMem (FakeNvData->DriOrder, sizeof (FakeNvData->DriOrder));
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Order the selected drivers according to the info already in mapping database
|
|
|
|
// the less order number in mapping database the less order number in NvRamMap
|
|
|
|
//
|
|
|
|
for (Index=0; Index < SelectedDriverImageNum; Index++) {
|
|
|
|
//
|
|
|
|
// Find the minimal order number in TempNO array, its index in TempNO is same as IfrOptionList array
|
|
|
|
//
|
|
|
|
MinNO = 0;
|
|
|
|
for (Index1=0; Index1 < SelectedDriverImageNum; Index1++) {
|
|
|
|
if (TempNO[Index1] < TempNO[MinNO]) {
|
|
|
|
MinNO = Index1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// the IfrOptionList[MinNO].Value = the driver NO. in driver binding buffer
|
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
FakeNvData->DriOrder[Index] = (UINT8) OrderNO[MinNO];
|
2008-12-25 10:13:53 +01:00
|
|
|
TempNO[MinNO] = MAX_CHOICE_NUM + 1;
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
2009-04-13 08:05:15 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Create Order List OpCode
|
|
|
|
//
|
|
|
|
HiiCreateOrderedListOpCode (
|
|
|
|
StartOpCodeHandle,
|
2008-04-09 04:09:51 +02:00
|
|
|
(UINT16) DRIVER_ORDER_QUESTION_ID,
|
|
|
|
VARSTORE_ID_PLAT_OVER_MNGR,
|
|
|
|
(UINT16) DRIVER_ORDER_VAR_OFFSET,
|
|
|
|
mControllerToken[mSelectedCtrIndex],
|
|
|
|
mControllerToken[mSelectedCtrIndex],
|
|
|
|
EFI_IFR_FLAG_RESET_REQUIRED,
|
|
|
|
0,
|
|
|
|
EFI_IFR_NUMERIC_SIZE_1,
|
2008-12-25 10:30:36 +01:00
|
|
|
(UINT8) MAX_CHOICE_NUM,
|
2009-04-13 08:05:15 +02:00
|
|
|
OptionsOpCodeHandle,
|
|
|
|
NULL
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Update third page form
|
|
|
|
//
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiUpdateForm (
|
2008-04-09 04:09:51 +02:00
|
|
|
Private->RegisteredHandle,
|
|
|
|
&mPlatformOverridesManagerGuid,
|
|
|
|
FORM_ID_ORDER,
|
2009-04-13 08:05:15 +02:00
|
|
|
StartOpCodeHandle, // Label FORM_ID_ORDER
|
|
|
|
EndOpCodeHandle // LABEL_END
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
|
|
|
|
2009-04-13 08:05:15 +02:00
|
|
|
HiiFreeOpCodeHandle (StartOpCodeHandle);
|
|
|
|
HiiFreeOpCodeHandle (EndOpCodeHandle);
|
|
|
|
HiiFreeOpCodeHandle (OptionsOpCodeHandle);
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Save the save the mapping database to NV variable.
|
|
|
|
|
|
|
|
@param Private Pointer to EFI_CALLBACK_INFO.
|
|
|
|
@param KeyValue The callback key value of device controller item in first page.
|
|
|
|
@param FakeNvData Pointer to PLAT_OVER_MNGR_DATA.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Always returned.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
CommintChanges (
|
|
|
|
IN EFI_CALLBACK_INFO *Private,
|
|
|
|
IN UINT16 KeyValue,
|
|
|
|
IN PLAT_OVER_MNGR_DATA *FakeNvData
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINTN Index;
|
|
|
|
UINTN SelectedDriverImageNum;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *LoadedImageDevicePath;
|
|
|
|
//
|
|
|
|
// Following code will be run if user select 'commint changes' in third page
|
|
|
|
// user enter 'Commit Changes' to save the mapping database
|
|
|
|
//
|
|
|
|
DeleteDriverImage (mControllerDevicePathProtocol[mSelectedCtrIndex], NULL, &mMappingDataBase);
|
|
|
|
for (SelectedDriverImageNum = 0; SelectedDriverImageNum < mSelectedDriverImageNum; SelectedDriverImageNum++) {
|
|
|
|
//
|
|
|
|
// DriOrder[SelectedDriverImageNum] = the driver NO. in driver binding buffer
|
|
|
|
//
|
|
|
|
Index = FakeNvData->DriOrder[SelectedDriverImageNum] - 1;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get the EFI Loaded Image Device Path Protocol
|
|
|
|
//
|
|
|
|
LoadedImageDevicePath = NULL;
|
|
|
|
Status = gBS->HandleProtocol (
|
|
|
|
mDriverImageHandleBuffer[Index],
|
|
|
|
&gEfiLoadedImageDevicePathProtocolGuid,
|
|
|
|
(VOID **) &LoadedImageDevicePath
|
|
|
|
);
|
|
|
|
ASSERT (LoadedImageDevicePath != NULL);
|
|
|
|
|
|
|
|
InsertDriverImage (
|
|
|
|
mControllerDevicePathProtocol[mSelectedCtrIndex],
|
|
|
|
LoadedImageDevicePath,
|
|
|
|
&mMappingDataBase,
|
|
|
|
(UINT32)SelectedDriverImageNum + 1
|
|
|
|
);
|
|
|
|
}
|
|
|
|
Status = SaveOverridesMapping (&mMappingDataBase);
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
This function allows a caller to extract the current configuration for one
|
|
|
|
or more named elements from the target driver.
|
|
|
|
|
|
|
|
@param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
|
|
|
|
@param Request A null-terminated Unicode string in <ConfigRequest> format.
|
|
|
|
@param Progress On return, points to a character in the Request string.
|
|
|
|
Points to the string's null terminator if request was successful.
|
|
|
|
Points to the most recent '&' before the first failing name/value
|
|
|
|
pair (or the beginning of the string if the failure is in the
|
|
|
|
first name/value pair) if the request was not successful.
|
|
|
|
@param Results A null-terminated Unicode string in <ConfigAltResp> format which
|
|
|
|
has all values filled in for the names in the Request string.
|
|
|
|
String to be allocated by the called function.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The Results is filled with the requested values.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Not enough memory to store the results.
|
2010-05-10 04:17:31 +02:00
|
|
|
@retval EFI_INVALID_PARAMETER Request is illegal syntax, or unknown name.
|
2008-04-09 04:09:51 +02:00
|
|
|
@retval EFI_NOT_FOUND Routing data doesn't match any storage in this driver.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PlatOverMngrExtractConfig (
|
2008-12-25 10:13:53 +01:00
|
|
|
IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
|
2008-04-09 04:09:51 +02:00
|
|
|
IN CONST EFI_STRING Request,
|
|
|
|
OUT EFI_STRING *Progress,
|
|
|
|
OUT EFI_STRING *Results
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_CALLBACK_INFO *Private;
|
|
|
|
EFI_HII_CONFIG_ROUTING_PROTOCOL *HiiConfigRouting;
|
2010-03-04 07:48:52 +01:00
|
|
|
EFI_STRING ConfigRequestHdr;
|
|
|
|
EFI_STRING ConfigRequest;
|
|
|
|
BOOLEAN AllocatedRequest;
|
|
|
|
UINTN Size;
|
|
|
|
UINTN BufferSize;
|
2008-11-04 15:28:08 +01:00
|
|
|
|
2010-03-04 07:48:52 +01:00
|
|
|
if (Progress == NULL || Results == NULL) {
|
2009-05-20 14:05:45 +02:00
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
2010-03-04 07:48:52 +01:00
|
|
|
|
|
|
|
*Progress = Request;
|
|
|
|
if ((Request != NULL) && !HiiIsConfigHdrMatch (Request, &mPlatformOverridesManagerGuid, mVariableName)) {
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
ConfigRequestHdr = NULL;
|
|
|
|
ConfigRequest = NULL;
|
|
|
|
Size = 0;
|
|
|
|
AllocatedRequest = FALSE;
|
|
|
|
|
2009-05-20 14:05:45 +02:00
|
|
|
Private = EFI_CALLBACK_INFO_FROM_THIS (This);
|
2008-04-09 04:09:51 +02:00
|
|
|
HiiConfigRouting = Private->HiiConfigRouting;
|
2010-03-04 07:48:52 +01:00
|
|
|
ConfigRequest = Request;
|
|
|
|
if ((Request == NULL) || (StrStr (Request, L"OFFSET") == NULL)) {
|
|
|
|
//
|
|
|
|
// Request has no request element, construct full request string.
|
|
|
|
// Allocate and fill a buffer large enough to hold the <ConfigHdr> template
|
|
|
|
// followed by "&OFFSET=0&WIDTH=WWWWWWWWWWWWWWWW" followed by a Null-terminator
|
|
|
|
//
|
|
|
|
ConfigRequestHdr = HiiConstructConfigHdr (&mPlatformOverridesManagerGuid, mVariableName, Private->DriverHandle);
|
|
|
|
Size = (StrLen (ConfigRequestHdr) + 32 + 1) * sizeof (CHAR16);
|
|
|
|
ConfigRequest = AllocateZeroPool (Size);
|
|
|
|
ASSERT (ConfigRequest != NULL);
|
|
|
|
AllocatedRequest = TRUE;
|
|
|
|
BufferSize = sizeof (PLAT_OVER_MNGR_DATA);
|
|
|
|
UnicodeSPrint (ConfigRequest, Size, L"%s&OFFSET=0&WIDTH=%016LX", ConfigRequestHdr, (UINT64)BufferSize);
|
|
|
|
FreePool (ConfigRequestHdr);
|
|
|
|
}
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Convert buffer data to <ConfigResp> by helper function BlockToConfig()
|
|
|
|
//
|
|
|
|
Status = HiiConfigRouting->BlockToConfig (
|
|
|
|
HiiConfigRouting,
|
2010-03-04 07:48:52 +01:00
|
|
|
ConfigRequest,
|
2008-04-09 04:09:51 +02:00
|
|
|
(UINT8 *) &Private->FakeNvData,
|
|
|
|
sizeof (PLAT_OVER_MNGR_DATA),
|
|
|
|
Results,
|
|
|
|
Progress
|
|
|
|
);
|
2010-03-04 07:48:52 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Free the allocated config request string.
|
|
|
|
//
|
|
|
|
if (AllocatedRequest) {
|
|
|
|
FreePool (ConfigRequest);
|
|
|
|
ConfigRequest = NULL;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Set Progress string to the original request string.
|
|
|
|
//
|
|
|
|
if (Request == NULL) {
|
|
|
|
*Progress = NULL;
|
|
|
|
} else if (StrStr (Request, L"OFFSET") == NULL) {
|
|
|
|
*Progress = Request + StrLen (Request);
|
|
|
|
}
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
This function processes the results of changes in configuration.
|
|
|
|
|
2008-12-11 10:30:13 +01:00
|
|
|
@param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
|
|
|
|
@param Configuration A null-terminated Unicode string in <ConfigRequest> format.
|
|
|
|
@param Progress A pointer to a string filled in with the offset of the most
|
|
|
|
recent '&' before the first failing name/value pair (or the
|
|
|
|
beginning of the string if the failure is in the first
|
|
|
|
name/value pair) or the terminating NULL if all was successful.
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
@retval EFI_SUCCESS The Results is processed successfully.
|
|
|
|
@retval EFI_INVALID_PARAMETER Configuration is NULL.
|
|
|
|
@retval EFI_NOT_FOUND Routing data doesn't match any storage in this driver.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PlatOverMngrRouteConfig (
|
|
|
|
IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
|
|
|
|
IN CONST EFI_STRING Configuration,
|
|
|
|
OUT EFI_STRING *Progress
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_CALLBACK_INFO *Private;
|
|
|
|
UINT16 KeyValue;
|
|
|
|
PLAT_OVER_MNGR_DATA *FakeNvData;
|
|
|
|
|
2009-05-20 14:05:45 +02:00
|
|
|
if (Configuration == NULL || Progress == NULL) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
*Progress = Configuration;
|
|
|
|
|
|
|
|
if (!HiiIsConfigHdrMatch (Configuration, &mPlatformOverridesManagerGuid, mVariableName)) {
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
2009-05-21 07:05:59 +02:00
|
|
|
|
|
|
|
*Progress = Configuration + StrLen (Configuration);
|
2009-04-13 08:05:15 +02:00
|
|
|
Private = EFI_CALLBACK_INFO_FROM_THIS (This);
|
2009-04-27 06:55:02 +02:00
|
|
|
FakeNvData = &Private->FakeNvData;
|
2009-04-30 11:08:37 +02:00
|
|
|
if (!HiiGetBrowserData (&mPlatformOverridesManagerGuid, mVariableName, sizeof (PLAT_OVER_MNGR_DATA), (UINT8 *) FakeNvData)) {
|
2009-05-21 07:05:59 +02:00
|
|
|
//
|
|
|
|
// FakeNvData can't be got from SetupBrowser, which doesn't need to be set.
|
|
|
|
//
|
|
|
|
return EFI_SUCCESS;
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mCurrentPage == FORM_ID_DRIVER) {
|
|
|
|
KeyValue = KEY_VALUE_DRIVER_GOTO_ORDER;
|
|
|
|
UpdatePrioritySelectPage (Private, KeyValue, FakeNvData);
|
|
|
|
KeyValue = KEY_VALUE_ORDER_SAVE_AND_EXIT;
|
|
|
|
CommintChanges (Private, KeyValue, FakeNvData);
|
|
|
|
//
|
|
|
|
// Since UpdatePrioritySelectPage will change mCurrentPage,
|
|
|
|
// should ensure the mCurrentPage still indicate the second page here
|
|
|
|
//
|
|
|
|
mCurrentPage = FORM_ID_DRIVER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mCurrentPage == FORM_ID_ORDER) {
|
|
|
|
KeyValue = KEY_VALUE_ORDER_SAVE_AND_EXIT;
|
|
|
|
CommintChanges (Private, KeyValue, FakeNvData);
|
|
|
|
}
|
2009-04-13 08:05:15 +02:00
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
This is the function that is called to provide results data to the driver. This data
|
|
|
|
consists of a unique key which is used to identify what data is either being passed back
|
|
|
|
or being asked for.
|
|
|
|
|
|
|
|
@param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
|
|
|
|
@param Action A null-terminated Unicode string in <ConfigRequest> format.
|
|
|
|
@param KeyValue A unique Goto OpCode callback value which record user's selection.
|
|
|
|
0x100 <= KeyValue <0x500 : user select a controller item in the first page;
|
|
|
|
KeyValue == 0x1234 : user select 'Refresh' in first page, or user select 'Go to Previous Menu' in second page
|
|
|
|
KeyValue == 0x1235 : user select 'Pci device filter' in first page
|
|
|
|
KeyValue == 0x1500 : user select 'order ... priority' item in second page
|
|
|
|
KeyValue == 0x1800 : user select 'commint changes' in third page
|
|
|
|
KeyValue == 0x2000 : user select 'Go to Previous Menu' in third page
|
|
|
|
@param Type The type of value for the question.
|
|
|
|
@param Value A pointer to the data being sent to the original exporting driver.
|
|
|
|
@param ActionRequest On return, points to the action requested by the callback function.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Always returned.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PlatOverMngrCallback (
|
|
|
|
IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
|
|
|
|
IN EFI_BROWSER_ACTION Action,
|
|
|
|
IN EFI_QUESTION_ID KeyValue,
|
|
|
|
IN UINT8 Type,
|
|
|
|
IN EFI_IFR_TYPE_VALUE *Value,
|
|
|
|
OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_CALLBACK_INFO *Private;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_STRING_ID NewStringToken;
|
|
|
|
EFI_INPUT_KEY Key;
|
2009-04-13 08:05:15 +02:00
|
|
|
PLAT_OVER_MNGR_DATA *FakeNvData;
|
2010-06-02 04:05:47 +02:00
|
|
|
|
2011-05-20 04:48:59 +02:00
|
|
|
if (Action == EFI_BROWSER_ACTION_CHANGING) {
|
|
|
|
Private = EFI_CALLBACK_INFO_FROM_THIS (This);
|
|
|
|
FakeNvData = &Private->FakeNvData;
|
|
|
|
if (!HiiGetBrowserData (&mPlatformOverridesManagerGuid, mVariableName, sizeof (PLAT_OVER_MNGR_DATA), (UINT8 *) FakeNvData)) {
|
|
|
|
return EFI_NOT_FOUND;
|
2009-04-14 12:47:19 +02:00
|
|
|
}
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2011-05-20 04:48:59 +02:00
|
|
|
if (KeyValue == KEY_VALUE_DEVICE_REFRESH ||
|
|
|
|
KeyValue == KEY_VALUE_DEVICE_FILTER ||
|
|
|
|
KeyValue == KEY_VALUE_DRIVER_GOTO_PREVIOUS
|
|
|
|
) {
|
|
|
|
UpdateDeviceSelectPage (Private, KeyValue, FakeNvData);
|
|
|
|
//
|
|
|
|
// Update page title string
|
|
|
|
//
|
|
|
|
NewStringToken = STRING_TOKEN (STR_TITLE);
|
|
|
|
if (HiiSetString (Private->RegisteredHandle, NewStringToken, L"First, Select the controller by device path", NULL) == 0) {
|
|
|
|
ASSERT (FALSE);
|
|
|
|
}
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
2011-05-20 04:48:59 +02:00
|
|
|
|
|
|
|
if (((KeyValue >= KEY_VALUE_DEVICE_OFFSET) && (KeyValue < KEY_VALUE_DEVICE_MAX)) || (KeyValue == KEY_VALUE_ORDER_GOTO_PREVIOUS)) {
|
|
|
|
if (KeyValue == KEY_VALUE_ORDER_GOTO_PREVIOUS) {
|
|
|
|
KeyValue = (EFI_QUESTION_ID) (mSelectedCtrIndex + KEY_VALUE_DEVICE_OFFSET);
|
|
|
|
}
|
|
|
|
UpdateBindingDriverSelectPage (Private, KeyValue, FakeNvData);
|
|
|
|
//
|
|
|
|
// Update page title string
|
|
|
|
//
|
|
|
|
NewStringToken = STRING_TOKEN (STR_TITLE);
|
|
|
|
if (HiiSetString (Private->RegisteredHandle, NewStringToken, L"Second, Select drivers for the previous selected controller", NULL) == 0) {
|
|
|
|
ASSERT (FALSE);
|
|
|
|
}
|
2009-04-14 12:47:19 +02:00
|
|
|
}
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2011-05-20 04:48:59 +02:00
|
|
|
if (KeyValue == KEY_VALUE_DRIVER_GOTO_ORDER) {
|
|
|
|
UpdatePrioritySelectPage (Private, KeyValue, FakeNvData);
|
|
|
|
//
|
|
|
|
// Update page title string
|
|
|
|
//
|
|
|
|
NewStringToken = STRING_TOKEN (STR_TITLE);
|
|
|
|
if (HiiSetString (Private->RegisteredHandle, NewStringToken, L"Finally, Set the priority order for the drivers and save them", NULL) == 0) {
|
|
|
|
ASSERT (FALSE);
|
|
|
|
}
|
2009-04-14 12:47:19 +02:00
|
|
|
}
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2011-05-20 04:48:59 +02:00
|
|
|
if (KeyValue == KEY_VALUE_ORDER_SAVE_AND_EXIT) {
|
|
|
|
Status = CommintChanges (Private, KeyValue, FakeNvData);
|
|
|
|
*ActionRequest = EFI_BROWSER_ACTION_REQUEST_SUBMIT;
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
CreatePopUp (EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE, &Key, L"Single Override Info too large, Saving Error!", NULL);
|
|
|
|
return EFI_DEVICE_ERROR;
|
|
|
|
}
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
|
|
|
|
2011-05-20 04:48:59 +02:00
|
|
|
if (KeyValue == KEY_VALUE_DEVICE_CLEAR) {
|
|
|
|
//
|
|
|
|
// Deletes all environment variable(s) that contain the override mappings info
|
|
|
|
//
|
|
|
|
FreeMappingDatabase (&mMappingDataBase);
|
|
|
|
Status = SaveOverridesMapping (&mMappingDataBase);
|
|
|
|
UpdateDeviceSelectPage (Private, KeyValue, FakeNvData);
|
|
|
|
}
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2011-05-20 04:48:59 +02:00
|
|
|
// Pass changed uncommitted data back to Form Browser
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2011-05-20 04:48:59 +02:00
|
|
|
HiiSetBrowserData (&mPlatformOverridesManagerGuid, mVariableName, sizeof (PLAT_OVER_MNGR_DATA), (UINT8 *) FakeNvData, NULL);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2011-05-20 04:48:59 +02:00
|
|
|
// All other action return unsupported.
|
2008-04-09 04:09:51 +02:00
|
|
|
//
|
2011-05-20 04:48:59 +02:00
|
|
|
return EFI_UNSUPPORTED;
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
|
|
|
|
2009-04-24 09:02:52 +02:00
|
|
|
/**
|
|
|
|
Retrieves the image handle of the platform override driver for a controller in the system.
|
|
|
|
|
|
|
|
@param This A pointer to the
|
|
|
|
EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL instance.
|
|
|
|
@param ControllerHandle The device handle of the controller to check if a
|
|
|
|
driver override exists.
|
|
|
|
@param DriverImageHandle On input, a pointer to the previous driver image
|
|
|
|
handle returned by GetDriver(). On output, a
|
|
|
|
pointer to the next driver image handle. Passing
|
|
|
|
in a NULL, will return the first driver image
|
|
|
|
handle for ControllerHandle.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The driver override for ControllerHandle was
|
|
|
|
returned in DriverImageHandle.
|
|
|
|
@retval EFI_NOT_FOUND A driver override for ControllerHandle was not
|
|
|
|
found.
|
|
|
|
@retval EFI_INVALID_PARAMETER The handle specified by ControllerHandle is not a
|
|
|
|
valid handle. DriverImageHandle is not a handle
|
|
|
|
that was returned on a previous call to
|
|
|
|
GetDriver().
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
GetDriver (
|
|
|
|
IN EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ControllerHandle,
|
|
|
|
IN OUT EFI_HANDLE *DriverImageHandle
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check that ControllerHandle is a valid handle
|
|
|
|
//
|
|
|
|
if (ControllerHandle == NULL) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Read the environment variable(s) that contain the override mappings from Controller Device Path to
|
|
|
|
// a set of Driver Device Paths, and initialize in memory database of the overrides that map Controller
|
|
|
|
// Device Paths to an ordered set of Driver Device Paths and Driver Handles. This action is only performed
|
|
|
|
// once and finished in first call.
|
|
|
|
//
|
|
|
|
if (!mEnvironmentVariableRead) {
|
|
|
|
mEnvironmentVariableRead = TRUE;
|
|
|
|
|
|
|
|
Status = InitOverridesMapping (&mMappingDataBase);
|
|
|
|
if (EFI_ERROR (Status)){
|
|
|
|
DEBUG ((DEBUG_ERROR, "The status to Get Platform Driver Override Variable is %r\n", Status));
|
|
|
|
InitializeListHead (&mMappingDataBase);
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// if the environment variable does not exist, just return not found
|
|
|
|
//
|
|
|
|
if (IsListEmpty (&mMappingDataBase)) {
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GetDriverFromMapping (
|
|
|
|
ControllerHandle,
|
|
|
|
DriverImageHandle,
|
|
|
|
&mMappingDataBase,
|
|
|
|
mCallerImageHandle
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves the device path of the platform override driver for a controller in the system.
|
|
|
|
This driver doesn't support this API.
|
|
|
|
|
|
|
|
@param This A pointer to the EFI_PLATFORM_DRIVER_OVERRIDE_
|
|
|
|
PROTOCOL instance.
|
|
|
|
@param ControllerHandle The device handle of the controller to check if a driver override
|
|
|
|
exists.
|
|
|
|
@param DriverImagePath On input, a pointer to the previous driver device path returned by
|
|
|
|
GetDriverPath(). On output, a pointer to the next driver
|
|
|
|
device path. Passing in a pointer to NULL, will return the first
|
|
|
|
driver device path for ControllerHandle.
|
|
|
|
|
|
|
|
@retval EFI_UNSUPPORTED
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
GetDriverPath (
|
|
|
|
IN EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ControllerHandle,
|
|
|
|
IN OUT EFI_DEVICE_PATH_PROTOCOL **DriverImagePath
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Used to associate a driver image handle with a device path that was returned on a prior call to the
|
|
|
|
GetDriverPath() service. This driver image handle will then be available through the
|
|
|
|
GetDriver() service. This driver doesn't support this API.
|
|
|
|
|
|
|
|
@param This A pointer to the EFI_PLATFORM_DRIVER_OVERRIDE_
|
|
|
|
PROTOCOL instance.
|
|
|
|
@param ControllerHandle The device handle of the controller.
|
|
|
|
@param DriverImagePath A pointer to the driver device path that was returned in a prior
|
|
|
|
call to GetDriverPath().
|
|
|
|
@param DriverImageHandle The driver image handle that was returned by LoadImage()
|
|
|
|
when the driver specified by DriverImagePath was loaded
|
|
|
|
into memory.
|
|
|
|
|
|
|
|
@retval EFI_UNSUPPORTED
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
DriverLoaded (
|
|
|
|
IN EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ControllerHandle,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *DriverImagePath,
|
|
|
|
IN EFI_HANDLE DriverImageHandle
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2008-04-09 04:09:51 +02:00
|
|
|
/**
|
2008-12-25 10:13:53 +01:00
|
|
|
The driver Entry Point. The funciton will export a disk device class formset and
|
|
|
|
its callback function to hii database.
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2008-12-25 10:13:53 +01:00
|
|
|
@param ImageHandle The firmware allocated handle for the EFI image.
|
|
|
|
@param SystemTable A pointer to the EFI System Table.
|
2008-04-09 04:09:51 +02:00
|
|
|
|
2008-12-25 10:13:53 +01:00
|
|
|
@retval EFI_SUCCESS The entry point is executed successfully.
|
|
|
|
@retval other Some error occurs when executing this entry point.
|
2008-04-09 04:09:51 +02:00
|
|
|
|
|
|
|
**/
|
2008-12-25 10:13:53 +01:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2009-04-24 09:02:52 +02:00
|
|
|
PlatDriOverrideDxeInit (
|
2008-12-25 10:13:53 +01:00
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
2008-04-09 04:09:51 +02:00
|
|
|
)
|
|
|
|
{
|
2008-12-25 10:13:53 +01:00
|
|
|
EFI_STATUS Status;
|
2009-04-02 10:48:03 +02:00
|
|
|
EFI_FORM_BROWSER2_PROTOCOL *FormBrowser2;
|
2009-04-24 09:02:52 +02:00
|
|
|
VOID *Instance;
|
2009-01-09 07:26:42 +01:00
|
|
|
|
2008-12-25 10:13:53 +01:00
|
|
|
//
|
|
|
|
// There should only be one Form Configuration protocol
|
|
|
|
//
|
2008-04-09 04:09:51 +02:00
|
|
|
Status = gBS->LocateProtocol (
|
2008-12-25 10:13:53 +01:00
|
|
|
&gEfiFormBrowser2ProtocolGuid,
|
|
|
|
NULL,
|
|
|
|
(VOID **) &FormBrowser2
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2009-04-24 09:02:52 +02:00
|
|
|
//
|
|
|
|
// According to UEFI spec, there can be at most a single instance
|
|
|
|
// in the system of the EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL.
|
|
|
|
// So here we check the existence.
|
|
|
|
//
|
|
|
|
Status = gBS->LocateProtocol (
|
|
|
|
&gEfiPlatformDriverOverrideProtocolGuid,
|
|
|
|
NULL,
|
|
|
|
&Instance
|
|
|
|
);
|
|
|
|
//
|
|
|
|
// If there was no error, assume there is an installation and return error
|
|
|
|
//
|
|
|
|
if (!EFI_ERROR (Status)) {
|
|
|
|
return EFI_ALREADY_STARTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
mCallerImageHandle = ImageHandle;
|
2009-04-13 08:05:15 +02:00
|
|
|
mCallbackInfo = AllocateZeroPool (sizeof (EFI_CALLBACK_INFO));
|
|
|
|
if (mCallbackInfo == NULL) {
|
2008-12-25 10:13:53 +01:00
|
|
|
return EFI_BAD_BUFFER_SIZE;
|
|
|
|
}
|
|
|
|
|
2009-04-13 08:05:15 +02:00
|
|
|
mCallbackInfo->Signature = EFI_CALLBACK_INFO_SIGNATURE;
|
|
|
|
mCallbackInfo->ConfigAccess.ExtractConfig = PlatOverMngrExtractConfig;
|
|
|
|
mCallbackInfo->ConfigAccess.RouteConfig = PlatOverMngrRouteConfig;
|
|
|
|
mCallbackInfo->ConfigAccess.Callback = PlatOverMngrCallback;
|
2009-04-24 09:02:52 +02:00
|
|
|
mCallbackInfo->PlatformDriverOverride.GetDriver = GetDriver;
|
|
|
|
mCallbackInfo->PlatformDriverOverride.GetDriverPath = GetDriverPath;
|
|
|
|
mCallbackInfo->PlatformDriverOverride.DriverLoaded = DriverLoaded;
|
2008-12-25 10:13:53 +01:00
|
|
|
//
|
2009-04-02 10:48:03 +02:00
|
|
|
// Install Device Path Protocol and Config Access protocol to driver handle
|
2009-04-24 09:02:52 +02:00
|
|
|
// Install Platform Driver Override Protocol to driver handle
|
2008-12-25 10:13:53 +01:00
|
|
|
//
|
2009-04-02 10:48:03 +02:00
|
|
|
Status = gBS->InstallMultipleProtocolInterfaces (
|
2009-04-13 08:05:15 +02:00
|
|
|
&mCallbackInfo->DriverHandle,
|
2009-04-02 10:48:03 +02:00
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
&mHiiVendorDevicePath,
|
2008-12-25 10:13:53 +01:00
|
|
|
&gEfiHiiConfigAccessProtocolGuid,
|
2009-04-13 08:05:15 +02:00
|
|
|
&mCallbackInfo->ConfigAccess,
|
2009-04-24 09:02:52 +02:00
|
|
|
&gEfiPlatformDriverOverrideProtocolGuid,
|
|
|
|
&mCallbackInfo->PlatformDriverOverride,
|
2009-04-02 10:48:03 +02:00
|
|
|
NULL
|
2008-12-25 10:13:53 +01:00
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
2009-01-09 07:26:42 +01:00
|
|
|
goto Finish;
|
2008-12-25 10:13:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Publish our HII data
|
|
|
|
//
|
2009-04-14 12:47:19 +02:00
|
|
|
mCallbackInfo->RegisteredHandle = HiiAddPackages (
|
|
|
|
&mPlatformOverridesManagerGuid,
|
|
|
|
mCallbackInfo->DriverHandle,
|
|
|
|
VfrBin,
|
2009-04-24 09:02:52 +02:00
|
|
|
PlatDriOverrideDxeStrings,
|
2009-04-14 12:47:19 +02:00
|
|
|
NULL
|
|
|
|
);
|
|
|
|
if (mCallbackInfo->RegisteredHandle == NULL) {
|
|
|
|
Status = EFI_OUT_OF_RESOURCES;
|
2009-01-09 07:26:42 +01:00
|
|
|
goto Finish;
|
|
|
|
}
|
|
|
|
|
2008-12-25 10:13:53 +01:00
|
|
|
//
|
|
|
|
// Locate ConfigRouting protocol
|
|
|
|
//
|
|
|
|
Status = gBS->LocateProtocol (
|
|
|
|
&gEfiHiiConfigRoutingProtocolGuid,
|
2008-04-09 04:09:51 +02:00
|
|
|
NULL,
|
2009-04-13 08:05:15 +02:00
|
|
|
(VOID **) &mCallbackInfo->HiiConfigRouting
|
2008-04-09 04:09:51 +02:00
|
|
|
);
|
2008-12-25 10:13:53 +01:00
|
|
|
if (EFI_ERROR (Status)) {
|
2009-01-09 07:26:42 +01:00
|
|
|
goto Finish;
|
2008-12-25 10:13:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Clear all the globle variable
|
|
|
|
//
|
|
|
|
mDriverImageHandleCount = 0;
|
|
|
|
mCurrentPage = 0;
|
|
|
|
ZeroMem (mDriverImageToken, MAX_CHOICE_NUM * sizeof (EFI_STRING_ID));
|
|
|
|
ZeroMem (mDriverImageFilePathToken, MAX_CHOICE_NUM * sizeof (EFI_STRING_ID));
|
|
|
|
ZeroMem (mControllerToken, MAX_CHOICE_NUM * sizeof (EFI_STRING_ID));
|
|
|
|
ZeroMem (mDriverImageProtocol, MAX_CHOICE_NUM * sizeof (EFI_LOADED_IMAGE_PROTOCOL *));
|
2009-04-24 09:02:52 +02:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
2009-01-09 07:26:42 +01:00
|
|
|
|
|
|
|
Finish:
|
2010-05-17 10:32:05 +02:00
|
|
|
PlatDriOverrideDxeUnload (ImageHandle);
|
2009-01-09 07:26:42 +01:00
|
|
|
|
|
|
|
return Status;
|
2008-04-09 04:09:51 +02:00
|
|
|
}
|
2009-02-24 16:52:09 +01:00
|
|
|
|
|
|
|
/**
|
2009-04-24 09:02:52 +02:00
|
|
|
Unload its installed protocol.
|
|
|
|
|
|
|
|
@param[in] ImageHandle Handle that identifies the image to be unloaded.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The image has been unloaded.
|
2009-02-24 16:52:09 +01:00
|
|
|
**/
|
2009-04-24 09:02:52 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PlatDriOverrideDxeUnload (
|
|
|
|
IN EFI_HANDLE ImageHandle
|
2009-02-24 16:52:09 +01:00
|
|
|
)
|
|
|
|
{
|
2010-05-17 10:32:05 +02:00
|
|
|
ASSERT (mCallbackInfo != NULL);
|
|
|
|
|
2009-04-24 09:02:52 +02:00
|
|
|
if (mCallbackInfo->DriverHandle != NULL) {
|
|
|
|
gBS->UninstallMultipleProtocolInterfaces (
|
|
|
|
mCallbackInfo->DriverHandle,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
&mHiiVendorDevicePath,
|
|
|
|
&gEfiHiiConfigAccessProtocolGuid,
|
|
|
|
&mCallbackInfo->ConfigAccess,
|
|
|
|
&gEfiPlatformDriverOverrideProtocolGuid,
|
|
|
|
&mCallbackInfo->PlatformDriverOverride,
|
|
|
|
NULL
|
|
|
|
);
|
2009-02-24 16:52:09 +01:00
|
|
|
}
|
2009-04-24 09:02:52 +02:00
|
|
|
|
|
|
|
if (mCallbackInfo->RegisteredHandle != NULL) {
|
|
|
|
HiiRemovePackages (mCallbackInfo->RegisteredHandle);
|
2009-02-24 16:52:09 +01:00
|
|
|
}
|
|
|
|
|
2010-05-17 10:32:05 +02:00
|
|
|
FreePool (mCallbackInfo);
|
2009-04-24 09:02:52 +02:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
2009-02-24 16:52:09 +01:00
|
|
|
}
|