2008-02-02 14:15:44 +01:00
|
|
|
/** @file
|
2008-11-27 03:34:39 +01:00
|
|
|
Library instance for ExtendedHiiLib.
|
|
|
|
|
|
|
|
This library instance implements the common HII routines which is
|
|
|
|
related to HII but reference data structures that are not defined in
|
|
|
|
UEFI specification, for example HII_VENDOR_DEVICE_PATH.
|
|
|
|
|
2008-02-02 14:15:44 +01:00
|
|
|
|
2008-04-09 07:36:17 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. <BR>
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
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
|
2008-02-02 14:15:44 +01:00
|
|
|
|
2008-04-09 07:36:17 +02:00
|
|
|
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-02-02 14:15:44 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
2008-08-30 16:09:38 +02:00
|
|
|
#include <Uefi.h>
|
2008-02-02 14:15:44 +01:00
|
|
|
#include <Protocol/DevicePath.h>
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/MemoryAllocationLib.h>
|
|
|
|
#include <Library/UefiBootServicesTableLib.h>
|
2008-11-11 16:42:40 +01:00
|
|
|
#include <Library/DevicePathLib.h>
|
2008-02-02 14:15:44 +01:00
|
|
|
#include <MdeModuleHii.h>
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Hii vendor device path template
|
|
|
|
//
|
2008-07-15 11:42:57 +02:00
|
|
|
GLOBAL_REMOVE_IF_UNREFERENCED CONST HII_VENDOR_DEVICE_PATH mHiiVendorDevicePathTemplate = {
|
2008-02-02 14:15:44 +01:00
|
|
|
{
|
|
|
|
{
|
|
|
|
{
|
|
|
|
HARDWARE_DEVICE_PATH,
|
|
|
|
HW_VENDOR_DP,
|
|
|
|
{
|
|
|
|
(UINT8) (sizeof (HII_VENDOR_DEVICE_PATH_NODE)),
|
|
|
|
(UINT8) ((sizeof (HII_VENDOR_DEVICE_PATH_NODE)) >> 8)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
EFI_IFR_TIANO_GUID
|
|
|
|
},
|
2008-07-15 11:34:35 +02:00
|
|
|
0,
|
2008-02-02 14:15:44 +01:00
|
|
|
0
|
|
|
|
},
|
|
|
|
{
|
|
|
|
END_DEVICE_PATH_TYPE,
|
|
|
|
END_ENTIRE_DEVICE_PATH_SUBTYPE,
|
|
|
|
{
|
|
|
|
END_DEVICE_PATH_LENGTH
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-07-14 07:30:21 +02:00
|
|
|
/**
|
|
|
|
The HII driver handle passed in for HiiDatabase.NewPackageList() requires
|
|
|
|
that there should be DevicePath Protocol installed on it.
|
|
|
|
This routine create a virtual Driver Handle by installing a vendor device
|
|
|
|
path on it, so as to use it to invoke HiiDatabase.NewPackageList().
|
|
|
|
The Device Path created is a Vendor Device Path specific to Intel's implemenation
|
|
|
|
and it is defined as HII_VENDOR_DEVICE_PATH_NODE.
|
|
|
|
|
2008-02-02 14:15:44 +01:00
|
|
|
|
2008-07-14 07:30:21 +02:00
|
|
|
@param DriverHandle Handle to be returned
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Handle destroy success.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Not enough memory.
|
|
|
|
|
|
|
|
**/
|
2008-02-02 14:15:44 +01:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
HiiLibCreateHiiDriverHandle (
|
|
|
|
OUT EFI_HANDLE *DriverHandle
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
HII_VENDOR_DEVICE_PATH_NODE *VendorDevicePath;
|
|
|
|
|
|
|
|
VendorDevicePath = AllocateCopyPool (sizeof (HII_VENDOR_DEVICE_PATH), &mHiiVendorDevicePathTemplate);
|
|
|
|
if (VendorDevicePath == NULL) {
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
|
2008-07-15 11:34:35 +02:00
|
|
|
//
|
|
|
|
// Use memory address as unique ID to distinguish from different device paths
|
|
|
|
//
|
|
|
|
VendorDevicePath->UniqueId = (UINT64) ((UINTN) VendorDevicePath);
|
2008-02-02 14:15:44 +01:00
|
|
|
|
|
|
|
*DriverHandle = NULL;
|
2008-07-15 11:34:35 +02:00
|
|
|
Status = gBS->InstallMultipleProtocolInterfaces (
|
2008-02-02 14:15:44 +01:00
|
|
|
DriverHandle,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
2008-07-15 11:34:35 +02:00
|
|
|
VendorDevicePath,
|
|
|
|
NULL
|
2008-02-02 14:15:44 +01:00
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-14 07:30:21 +02:00
|
|
|
/**
|
|
|
|
Destroy the Driver Handle created by CreateHiiDriverHandle().
|
|
|
|
|
|
|
|
If no Device Path protocol is installed on the DriverHandle, then ASSERT.
|
|
|
|
If this Device Path protocol is failed to be uninstalled, then ASSERT.
|
|
|
|
|
|
|
|
@param DriverHandle Handle returned by CreateHiiDriverHandle()
|
|
|
|
|
|
|
|
|
|
|
|
**/
|
2008-02-02 14:15:44 +01:00
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
HiiLibDestroyHiiDriverHandle (
|
|
|
|
IN EFI_HANDLE DriverHandle
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_DEVICE_PATH_PROTOCOL *DevicePath;
|
|
|
|
|
|
|
|
Status = gBS->HandleProtocol (
|
|
|
|
DriverHandle,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
(VOID **) &DevicePath
|
|
|
|
);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
|
|
|
Status = gBS->UninstallProtocolInterface (
|
|
|
|
DriverHandle,
|
|
|
|
&gEfiDevicePathProtocolGuid,
|
|
|
|
DevicePath
|
|
|
|
);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
|
|
|
FreePool (DevicePath);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|