45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
/** @file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2020, Insyde Software Corp. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#ifndef _PLATFORM_GOP_VBT_H_
|
|
#define _PLATFORM_GOP_VBT_H_
|
|
|
|
//
|
|
// The following definition are project-specific,
|
|
// The different GOP Vbt may has different definition.
|
|
//
|
|
//======================Start==============================//
|
|
|
|
//
|
|
// the Selected Display Port offset of Vbt table.
|
|
//
|
|
#define VBT_EFP1_OFFSET 0x1A9
|
|
#define VBT_EFP2_OFFSET 0x1CA
|
|
#define VBT_EFP3_OFFSET 0x1EB
|
|
//
|
|
// The Display Port Type of Vbt Table.
|
|
//
|
|
typedef enum {
|
|
VbtNoneDevice = 0,
|
|
VbtHDMIB,
|
|
VbtHDMIC,
|
|
VbtHDMID,
|
|
VbtDPB = 7,
|
|
VbtDPC,
|
|
VbtDPD
|
|
} VBT_EFP_DISPLAY_TYPE;
|
|
|
|
//======================End==============================//
|
|
|
|
#endif
|