mirror of https://github.com/acidanthera/audk.git
74 lines
2.1 KiB
C
74 lines
2.1 KiB
C
/*++
|
|
|
|
Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved
|
|
|
|
|
|
This program and the accompanying materials are licensed and made available under
|
|
|
|
the terms and conditions of the BSD License that 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.
|
|
|
|
|
|
|
|
|
|
--*/
|
|
|
|
/** @file
|
|
**/
|
|
|
|
#ifndef _PLATFORM_GOP_POLICY_PROTOCOL_H_
|
|
#define _PLATFORM_GOP_POLICY_PROTOCOL_H_
|
|
|
|
#define EFI_PLATFORM_GOP_POLICY_PROTOCOL_GUID \
|
|
{ 0xec2e931b, 0x3281, 0x48a5, 0x81, 0x7, 0xdf, 0x8a, 0x8b, 0xed, 0x3c, 0x5d }
|
|
|
|
#define EFI_BMP_IMAGE_GUID \
|
|
{ 0x878AC2CC, 0x5343, 0x46F2, 0xB5, 0x63, 0x51, 0xF8, 0x9D, 0xAF, 0x56, 0xBA }
|
|
|
|
#define PLATFORM_GOP_POLICY_PROTOCOL_REVISION_01 0x01
|
|
#define PLATFORM_GOP_POLICY_PROTOCOL_REVISION_02 x0222
|
|
|
|
#pragma pack(1)
|
|
|
|
typedef enum {
|
|
LidClosed,
|
|
LidOpen,
|
|
LidStatusMax
|
|
} LID_STATUS;
|
|
|
|
typedef enum {
|
|
Docked,
|
|
UnDocked,
|
|
DockStatusMax
|
|
} DOCK_STATUS;
|
|
|
|
typedef
|
|
EFI_STATUS
|
|
(EFIAPI *GET_PLATFORM_LID_STATUS) (
|
|
OUT LID_STATUS *CurrentLidStatus
|
|
);
|
|
|
|
typedef
|
|
EFI_STATUS
|
|
(EFIAPI *GET_VBT_DATA) (
|
|
OUT EFI_PHYSICAL_ADDRESS *VbtAddress,
|
|
OUT UINT32 *VbtSize
|
|
);
|
|
|
|
#pragma pack()
|
|
|
|
typedef struct _PLATFORM_GOP_POLICY_PROTOCOL {
|
|
UINT32 Revision;
|
|
GET_PLATFORM_LID_STATUS GetPlatformLidStatus;
|
|
GET_VBT_DATA GetVbtData;
|
|
} PLATFORM_GOP_POLICY_PROTOCOL;
|
|
|
|
//
|
|
// Extern the GUID for protocol users.
|
|
//
|
|
extern EFI_GUID gPlatformGOPPolicyGuid;
|
|
|
|
extern EFI_GUID gBmpImageGuid;
|
|
|
|
#endif
|