196 lines
5.6 KiB
C
196 lines
5.6 KiB
C
/** @file
|
|
This file initialises and Installs GopPolicy Protocol.
|
|
|
|
@copyright
|
|
INTEL CONFIDENTIAL
|
|
Copyright 2018 - 2021 Intel Corporation.
|
|
|
|
The source code contained or described herein and all documents related to the
|
|
source code ("Material") are owned by Intel Corporation or its suppliers or
|
|
licensors. Title to the Material remains with Intel Corporation or its suppliers
|
|
and licensors. The Material may contain trade secrets and proprietary and
|
|
confidential information of Intel Corporation and its suppliers and licensors,
|
|
and is protected by worldwide copyright and trade secret laws and treaty
|
|
provisions. No part of the Material may be used, copied, reproduced, modified,
|
|
published, uploaded, posted, transmitted, distributed, or disclosed in any way
|
|
without Intel's prior express written permission.
|
|
|
|
No license under any patent, copyright, trade secret or other intellectual
|
|
property right is granted to or conferred upon you by disclosure or delivery
|
|
of the Materials, either expressly, by implication, inducement, estoppel or
|
|
otherwise. Any license under such intellectual property rights must be
|
|
express and approved by Intel in writing.
|
|
|
|
Unless otherwise agreed by Intel in writing, you may not remove or alter
|
|
this notice or any other notice embedded in Materials by Intel or
|
|
Intel's suppliers or licensors in any way.
|
|
|
|
This file contains a 'Sample Driver' and is licensed as such under the terms
|
|
of your license agreement with Intel or your vendor. This file may be modified
|
|
by the user, subject to the additional terms of the license agreement.
|
|
|
|
@par Specification Reference:
|
|
**/
|
|
|
|
#include <PiDxe.h>
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
#include <Library/BaseMemoryLib.h>
|
|
#include <Library/MemoryAllocationLib.h>
|
|
#include <Protocol/FirmwareVolume2.h>
|
|
#include <Protocol/GopPolicy.h>
|
|
|
|
GLOBAL_REMOVE_IF_UNREFERENCED GOP_POLICY_PROTOCOL mGOPPolicy;
|
|
GLOBAL_REMOVE_IF_UNREFERENCED UINT32 mVbtSize = 0;
|
|
GLOBAL_REMOVE_IF_UNREFERENCED EFI_PHYSICAL_ADDRESS mVbtAddress = 0;
|
|
|
|
/**
|
|
@param[out] CurrentLidStatus
|
|
|
|
@retval EFI_SUCCESS
|
|
@retval EFI_UNSUPPORTED
|
|
**/
|
|
EFI_STATUS
|
|
EFIAPI
|
|
GetPlatformLidStatus (
|
|
OUT LID_STATUS *CurrentLidStatus
|
|
)
|
|
{
|
|
return EFI_UNSUPPORTED;
|
|
}
|
|
|
|
/**
|
|
@param[out] CurrentDockStatus
|
|
|
|
@retval EFI_SUCCESS
|
|
@retval EFI_UNSUPPORTED
|
|
**/
|
|
EFI_STATUS
|
|
EFIAPI
|
|
GetPlatformDockStatus (
|
|
OUT DOCK_STATUS *CurrentDockStatus
|
|
)
|
|
{
|
|
return EFI_UNSUPPORTED;
|
|
}
|
|
|
|
/**
|
|
@param[out] VbtAddress
|
|
@param[out] VbtSize
|
|
|
|
@retval EFI_SUCCESS
|
|
@retval EFI_NOT_FOUND
|
|
**/
|
|
EFI_STATUS
|
|
EFIAPI
|
|
GetVbtData (
|
|
OUT EFI_PHYSICAL_ADDRESS *VbtAddress,
|
|
OUT UINT32 *VbtSize
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
UINTN FvProtocolCount;
|
|
EFI_HANDLE *FvHandles;
|
|
EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
|
|
UINTN Index;
|
|
UINT32 AuthenticationStatus;
|
|
UINT8 *Buffer;
|
|
UINTN VbtBufferSize;
|
|
|
|
|
|
Status = EFI_NOT_FOUND;
|
|
if ( mVbtAddress == 0) {
|
|
Fv = NULL;
|
|
|
|
Buffer = 0;
|
|
FvHandles = NULL;
|
|
Status = gBS->LocateHandleBuffer (
|
|
ByProtocol,
|
|
&gEfiFirmwareVolume2ProtocolGuid,
|
|
NULL,
|
|
&FvProtocolCount,
|
|
&FvHandles
|
|
);
|
|
if (!EFI_ERROR (Status)) {
|
|
for (Index = 0; Index < FvProtocolCount; Index++) {
|
|
Status = gBS->HandleProtocol (
|
|
FvHandles[Index],
|
|
&gEfiFirmwareVolume2ProtocolGuid,
|
|
(VOID **) &Fv
|
|
);
|
|
VbtBufferSize = 0;
|
|
Status = Fv->ReadSection (
|
|
Fv,
|
|
PcdGetPtr (PcdGraphicsVbtGuid),
|
|
EFI_SECTION_RAW,
|
|
0,
|
|
(VOID **) &Buffer,
|
|
&VbtBufferSize,
|
|
&AuthenticationStatus
|
|
);
|
|
if (!EFI_ERROR (Status)) {
|
|
*VbtAddress = (EFI_PHYSICAL_ADDRESS)Buffer;
|
|
*VbtSize = (UINT32)VbtBufferSize;
|
|
mVbtAddress = *VbtAddress;
|
|
mVbtSize = *VbtSize;
|
|
Status = EFI_SUCCESS;
|
|
break;
|
|
}
|
|
}
|
|
} else {
|
|
Status = EFI_NOT_FOUND;
|
|
}
|
|
|
|
if (FvHandles != NULL) {
|
|
FreePool (FvHandles);
|
|
FvHandles = NULL;
|
|
}
|
|
} else {
|
|
*VbtAddress = mVbtAddress;
|
|
*VbtSize = mVbtSize;
|
|
Status = EFI_SUCCESS;
|
|
}
|
|
|
|
return Status;
|
|
}
|
|
|
|
/**
|
|
Initialize GOP DXE Policy
|
|
|
|
@param[in] ImageHandle Image handle of this driver.
|
|
|
|
@retval EFI_SUCCESS Initialization complete.
|
|
@retval EFI_UNSUPPORTED The chipset is unsupported by this driver.
|
|
@retval EFI_OUT_OF_RESOURCES Do not have enough resources to initialize the driver.
|
|
@retval EFI_DEVICE_ERROR Device error, driver exits abnormally.
|
|
**/
|
|
EFI_STATUS
|
|
EFIAPI
|
|
GopPolicyInitDxe (
|
|
IN EFI_HANDLE ImageHandle
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
|
|
//
|
|
// Initialize the EFI Driver Library
|
|
//
|
|
SetMem (&mGOPPolicy, sizeof (GOP_POLICY_PROTOCOL), 0);
|
|
|
|
mGOPPolicy.Revision = GOP_POLICY_PROTOCOL_REVISION_03;
|
|
mGOPPolicy.GetPlatformLidStatus = GetPlatformLidStatus;
|
|
mGOPPolicy.GetVbtData = GetVbtData;
|
|
mGOPPolicy.GetPlatformDockStatus = GetPlatformDockStatus;
|
|
|
|
//
|
|
// Install protocol to allow access to this Policy.
|
|
//
|
|
Status = gBS->InstallMultipleProtocolInterfaces (
|
|
&ImageHandle,
|
|
&gGopPolicyProtocolGuid,
|
|
&mGOPPolicy,
|
|
NULL
|
|
);
|
|
|
|
return Status;
|
|
}
|