xref: /linux/drivers/video/fbdev/via/dvi.h (revision 58e16d792a6a8c6b750f637a4649967fcac853dc)
1*64b70da0SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
2f7018c21STomi Valkeinen /*
3f7018c21STomi Valkeinen  * Copyright 1998-2008 VIA Technologies, Inc. All Rights Reserved.
4f7018c21STomi Valkeinen  * Copyright 2001-2008 S3 Graphics, Inc. All Rights Reserved.
5f7018c21STomi Valkeinen 
6f7018c21STomi Valkeinen  */
7f7018c21STomi Valkeinen 
8f7018c21STomi Valkeinen #ifndef __DVI_H__
9f7018c21STomi Valkeinen #define __DVI_H__
10f7018c21STomi Valkeinen 
11f7018c21STomi Valkeinen /*Definition TMDS Device ID register*/
12f7018c21STomi Valkeinen #define     VT1632_DEVICE_ID_REG        0x02
13f7018c21STomi Valkeinen #define     VT1632_DEVICE_ID            0x92
14f7018c21STomi Valkeinen 
15f7018c21STomi Valkeinen #define     GET_DVI_SIZE_BY_SYSTEM_BIOS     0x01
16f7018c21STomi Valkeinen #define     GET_DVI_SIZE_BY_VGA_BIOS        0x02
17f7018c21STomi Valkeinen #define     GET_DVI_SZIE_BY_HW_STRAPPING    0x03
18f7018c21STomi Valkeinen 
19f7018c21STomi Valkeinen /* Definition DVI Panel ID*/
20f7018c21STomi Valkeinen /* Resolution: 640x480,   Channel: single, Dithering: Enable */
21f7018c21STomi Valkeinen #define     DVI_PANEL_ID0_640X480       0x00
22f7018c21STomi Valkeinen /* Resolution: 800x600,   Channel: single, Dithering: Enable */
23f7018c21STomi Valkeinen #define     DVI_PANEL_ID1_800x600       0x01
24f7018c21STomi Valkeinen /* Resolution: 1024x768,  Channel: single, Dithering: Enable */
25f7018c21STomi Valkeinen #define     DVI_PANEL_ID1_1024x768      0x02
26f7018c21STomi Valkeinen /* Resolution: 1280x768,  Channel: single, Dithering: Enable */
27f7018c21STomi Valkeinen #define     DVI_PANEL_ID1_1280x768      0x03
28f7018c21STomi Valkeinen /* Resolution: 1280x1024, Channel: dual,   Dithering: Enable */
29f7018c21STomi Valkeinen #define     DVI_PANEL_ID1_1280x1024     0x04
30f7018c21STomi Valkeinen /* Resolution: 1400x1050, Channel: dual,   Dithering: Enable */
31f7018c21STomi Valkeinen #define     DVI_PANEL_ID1_1400x1050     0x05
32f7018c21STomi Valkeinen /* Resolution: 1600x1200, Channel: dual,   Dithering: Enable */
33f7018c21STomi Valkeinen #define     DVI_PANEL_ID1_1600x1200     0x06
34f7018c21STomi Valkeinen 
35f7018c21STomi Valkeinen /* Define the version of EDID*/
36f7018c21STomi Valkeinen #define     EDID_VERSION_1      1
37f7018c21STomi Valkeinen #define     EDID_VERSION_2      2
38f7018c21STomi Valkeinen 
39f7018c21STomi Valkeinen #define     DEV_CONNECT_DVI     0x01
40f7018c21STomi Valkeinen #define     DEV_CONNECT_HDMI    0x02
41f7018c21STomi Valkeinen 
42f7018c21STomi Valkeinen int viafb_dvi_sense(void);
43f7018c21STomi Valkeinen void viafb_dvi_disable(void);
44f7018c21STomi Valkeinen void viafb_dvi_enable(void);
45f7018c21STomi Valkeinen bool viafb_tmds_trasmitter_identify(void);
46f7018c21STomi Valkeinen void viafb_init_dvi_size(struct tmds_chip_information *tmds_chip,
47f7018c21STomi Valkeinen 	struct tmds_setting_information *tmds_setting);
48f7018c21STomi Valkeinen void viafb_dvi_set_mode(const struct fb_var_screeninfo *var,
49f7018c21STomi Valkeinen 	u16 cxres, u16 cyres, int iga);
50f7018c21STomi Valkeinen 
51f7018c21STomi Valkeinen #endif /* __DVI_H__ */
52