lcd.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Copyright 1998-2008 VIA Technologies, Inc. All Rights Reserved.
  3. * Copyright 2001-2008 S3 Graphics, Inc. All Rights Reserved.
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public
  6. * License as published by the Free Software Foundation;
  7. * either version 2, or (at your option) any later version.
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTIES OR REPRESENTATIONS; without even
  10. * the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. * A PARTICULAR PURPOSE.See the GNU General Public License
  12. * for more details.
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc.,
  16. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. #ifndef __LCD_H__
  19. #define __LCD_H__
  20. /*Definition TMDS Device ID register*/
  21. #define VT1631_DEVICE_ID_REG 0x02
  22. #define VT1631_DEVICE_ID 0x92
  23. #define VT3271_DEVICE_ID_REG 0x02
  24. #define VT3271_DEVICE_ID 0x71
  25. #define GET_LCD_SIZE_BY_SYSTEM_BIOS 0x01
  26. #define GET_LCD_SIZE_BY_VGA_BIOS 0x02
  27. #define GET_LCD_SZIE_BY_HW_STRAPPING 0x03
  28. #define GET_LCD_SIZE_BY_USER_SETTING 0x04
  29. /* Definition DVI Panel ID*/
  30. /* Resolution: 640x480, Channel: single, Dithering: Enable */
  31. #define LCD_PANEL_ID0_640X480 0x00
  32. /* Resolution: 800x600, Channel: single, Dithering: Enable */
  33. #define LCD_PANEL_ID1_800X600 0x01
  34. /* Resolution: 1024x768, Channel: single, Dithering: Enable */
  35. #define LCD_PANEL_ID2_1024X768 0x02
  36. /* Resolution: 1280x768, Channel: single, Dithering: Enable */
  37. #define LCD_PANEL_ID3_1280X768 0x03
  38. /* Resolution: 1280x1024, Channel: dual, Dithering: Enable */
  39. #define LCD_PANEL_ID4_1280X1024 0x04
  40. /* Resolution: 1400x1050, Channel: dual, Dithering: Enable */
  41. #define LCD_PANEL_ID5_1400X1050 0x05
  42. /* Resolution: 1600x1200, Channel: dual, Dithering: Enable */
  43. #define LCD_PANEL_ID6_1600X1200 0x06
  44. /* Resolution: 1366x768, Channel: single, Dithering: Disable */
  45. #define LCD_PANEL_ID7_1366X768 0x07
  46. /* Resolution: 1024x600, Channel: single, Dithering: Enable*/
  47. #define LCD_PANEL_ID8_1024X600 0x08
  48. /* Resolution: 1280x800, Channel: single, Dithering: Enable*/
  49. #define LCD_PANEL_ID9_1280X800 0x09
  50. /* Resolution: 800x480, Channel: single, Dithering: Enable*/
  51. #define LCD_PANEL_IDA_800X480 0x0A
  52. /* Resolution: 1360x768, Channel: single, Dithering: Disable*/
  53. #define LCD_PANEL_IDB_1360X768 0x0B
  54. /* Resolution: 480x640, Channel: single, Dithering: Enable */
  55. #define LCD_PANEL_IDC_480X640 0x0C
  56. /* Resolution: 1200x900, Channel: single, Dithering: Disable */
  57. #define LCD_PANEL_IDD_1200X900 0x0D
  58. extern int viafb_LCD2_ON;
  59. extern int viafb_LCD_ON;
  60. extern int viafb_DVI_ON;
  61. void viafb_disable_lvds_vt1636(struct lvds_setting_information
  62. *plvds_setting_info,
  63. struct lvds_chip_information *plvds_chip_info);
  64. void viafb_enable_lvds_vt1636(struct lvds_setting_information
  65. *plvds_setting_info,
  66. struct lvds_chip_information *plvds_chip_info);
  67. void viafb_lcd_disable(void);
  68. void viafb_lcd_enable(void);
  69. void viafb_init_lcd_size(void);
  70. void viafb_init_lvds_output_interface(struct lvds_chip_information
  71. *plvds_chip_info,
  72. struct lvds_setting_information
  73. *plvds_setting_info);
  74. void viafb_lcd_set_mode(struct crt_mode_table *mode_crt_table,
  75. struct lvds_setting_information *plvds_setting_info,
  76. struct lvds_chip_information *plvds_chip_info);
  77. int viafb_lvds_trasmitter_identify(void);
  78. void viafb_init_lvds_output_interface(struct lvds_chip_information
  79. *plvds_chip_info,
  80. struct lvds_setting_information
  81. *plvds_setting_info);
  82. bool viafb_lcd_get_mobile_state(bool *mobile);
  83. void viafb_load_crtc_timing(struct display_timing device_timing,
  84. int set_iga);
  85. #endif /* __LCD_H__ */