sis_main.h 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955
  1. /*
  2. * SiS 300/305/540/630(S)/730(S)
  3. * SiS 315(H/PRO)/55x/(M)65x/(M)661(F/M)X/740/741(GX)/330/(M)760
  4. * frame buffer driver for Linux kernels >=2.4.14 and >=2.6.3
  5. *
  6. * Copyright (C) 2001-2004 Thomas Winischhofer, Vienna, Austria.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the named License,
  11. * or any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
  21. */
  22. #ifndef _SISFB_MAIN
  23. #define _SISFB_MAIN
  24. #include <linux/spinlock.h>
  25. #include "vstruct.h"
  26. #include "sis.h"
  27. #define MODE_INDEX_NONE 0 /* index for mode=none */
  28. /* Fbcon stuff */
  29. static struct fb_var_screeninfo my_default_var = {
  30. .xres = 0,
  31. .yres = 0,
  32. .xres_virtual = 0,
  33. .yres_virtual = 0,
  34. .xoffset = 0,
  35. .yoffset = 0,
  36. .bits_per_pixel = 0,
  37. .grayscale = 0,
  38. .red = {0, 8, 0},
  39. .green = {0, 8, 0},
  40. .blue = {0, 8, 0},
  41. .transp = {0, 0, 0},
  42. .nonstd = 0,
  43. .activate = FB_ACTIVATE_NOW,
  44. .height = -1,
  45. .width = -1,
  46. .accel_flags = 0,
  47. .pixclock = 0,
  48. .left_margin = 0,
  49. .right_margin = 0,
  50. .upper_margin = 0,
  51. .lower_margin = 0,
  52. .hsync_len = 0,
  53. .vsync_len = 0,
  54. .sync = 0,
  55. .vmode = FB_VMODE_NONINTERLACED,
  56. };
  57. /* Boot-time parameters */
  58. static int sisfb_off = 0;
  59. static int sisfb_parm_mem = 0;
  60. static int sisfb_accel = -1;
  61. static int sisfb_ypan = -1;
  62. static int sisfb_max = -1;
  63. static int sisfb_userom = 1;
  64. static int sisfb_useoem = -1;
  65. #ifdef MODULE
  66. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
  67. static int sisfb_mode_idx = -1;
  68. #else
  69. static int sisfb_mode_idx = MODE_INDEX_NONE; /* Don't use a mode by default if we are a module */
  70. #endif
  71. #else
  72. static int sisfb_mode_idx = -1; /* Use a default mode if we are inside the kernel */
  73. #endif
  74. static int sisfb_parm_rate = -1;
  75. static int sisfb_crt1off = 0;
  76. static int sisfb_forcecrt1 = -1;
  77. static int sisfb_crt2type = -1; /* CRT2 type (for overriding autodetection) */
  78. static int sisfb_crt2flags = 0;
  79. static int sisfb_pdc = 0xff;
  80. static int sisfb_pdca = 0xff;
  81. static int sisfb_scalelcd = -1;
  82. static int sisfb_specialtiming = CUT_NONE;
  83. static int sisfb_lvdshl = -1;
  84. static int sisfb_dstn = 0;
  85. static int sisfb_fstn = 0;
  86. static int sisfb_tvplug = -1; /* Tv plug type (for overriding autodetection) */
  87. static int sisfb_tvstd = -1;
  88. static int sisfb_tvxposoffset = 0;
  89. static int sisfb_tvyposoffset = 0;
  90. static int sisfb_filter = -1;
  91. static int sisfb_nocrt2rate = 0;
  92. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
  93. static int sisfb_inverse = 0;
  94. static char sisfb_fontname[40];
  95. #endif
  96. #if !defined(__i386__) && !defined(__x86_64__)
  97. static int sisfb_resetcard = 0;
  98. static int sisfb_videoram = 0;
  99. #endif
  100. /* List of supported chips */
  101. static struct sisfb_chip_info {
  102. int chip;
  103. int vgaengine;
  104. int mni;
  105. int hwcursor_size;
  106. int CRT2_write_enable;
  107. const char *chip_name;
  108. } sisfb_chip_info[] __devinitdata = {
  109. { SIS_300, SIS_300_VGA, 0, HW_CURSOR_AREA_SIZE_300 * 2, SIS_CRT2_WENABLE_300, "SiS 300/305" },
  110. { SIS_540, SIS_300_VGA, 0, HW_CURSOR_AREA_SIZE_300 * 2, SIS_CRT2_WENABLE_300, "SiS 540" },
  111. { SIS_630, SIS_300_VGA, 0, HW_CURSOR_AREA_SIZE_300 * 2, SIS_CRT2_WENABLE_300, "SiS 630" },
  112. { SIS_315H, SIS_315_VGA, 1, HW_CURSOR_AREA_SIZE_315 * 4, SIS_CRT2_WENABLE_315, "SiS 315H" },
  113. { SIS_315, SIS_315_VGA, 1, HW_CURSOR_AREA_SIZE_315 * 4, SIS_CRT2_WENABLE_315, "SiS 315" },
  114. { SIS_315PRO, SIS_315_VGA, 1, HW_CURSOR_AREA_SIZE_315 * 4, SIS_CRT2_WENABLE_315, "SiS 315PRO" },
  115. { SIS_550, SIS_315_VGA, 1, HW_CURSOR_AREA_SIZE_315 * 4, SIS_CRT2_WENABLE_315, "SiS 55x" },
  116. { SIS_650, SIS_315_VGA, 1, HW_CURSOR_AREA_SIZE_315 * 4, SIS_CRT2_WENABLE_315, "SiS 650" },
  117. { SIS_330, SIS_315_VGA, 1, HW_CURSOR_AREA_SIZE_315 * 4, SIS_CRT2_WENABLE_315, "SiS 330" },
  118. { SIS_660, SIS_315_VGA, 1, HW_CURSOR_AREA_SIZE_315 * 4, SIS_CRT2_WENABLE_315, "SiS 660" },
  119. };
  120. static struct pci_device_id __devinitdata sisfb_pci_table[] = {
  121. #ifdef CONFIG_FB_SIS_300
  122. { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
  123. { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_540_VGA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
  124. { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_630_VGA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2},
  125. #endif
  126. #ifdef CONFIG_FB_SIS_315
  127. { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_315H, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3},
  128. { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_315, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4},
  129. { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_315PRO, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 5},
  130. { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_550_VGA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 6},
  131. { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_650_VGA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 7},
  132. { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_330, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 8},
  133. { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_660_VGA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 9},
  134. #endif
  135. { 0 }
  136. };
  137. MODULE_DEVICE_TABLE(pci, sisfb_pci_table);
  138. static struct sis_video_info *card_list = NULL;
  139. /* TODO: This is not handled card-wise because the DRM
  140. does not refer to a unique fb when calling sis_alloc
  141. or sis_free. Therefore, this is handled globally for
  142. now (hoping that nobody is crazy enough to run two
  143. SiS cards at the same time).
  144. */
  145. static SIS_HEAP sisfb_heap;
  146. #define MD_SIS300 1
  147. #define MD_SIS315 2
  148. /* Mode table */
  149. static const struct _sisbios_mode {
  150. char name[15];
  151. u8 mode_no[2];
  152. u16 vesa_mode_no_1; /* "SiS defined" VESA mode number */
  153. u16 vesa_mode_no_2; /* Real VESA mode numbers */
  154. u16 xres;
  155. u16 yres;
  156. u16 bpp;
  157. u16 rate_idx;
  158. u16 cols;
  159. u16 rows;
  160. u8 chipset;
  161. } sisbios_mode[] = {
  162. /*0*/ {"none", {0xff,0xff}, 0x0000, 0x0000, 0, 0, 0, 0, 0, 0, MD_SIS300|MD_SIS315},
  163. {"320x200x8", {0x59,0x59}, 0x0138, 0x0000, 320, 200, 8, 1, 40, 12, MD_SIS300|MD_SIS315},
  164. {"320x200x16", {0x41,0x41}, 0x010e, 0x0000, 320, 200, 16, 1, 40, 12, MD_SIS300|MD_SIS315},
  165. {"320x200x24", {0x4f,0x4f}, 0x0000, 0x0000, 320, 200, 32, 1, 40, 12, MD_SIS300|MD_SIS315}, /* That's for people who mix up color- and fb depth */
  166. {"320x200x32", {0x4f,0x4f}, 0x0000, 0x0000, 320, 200, 32, 1, 40, 12, MD_SIS300|MD_SIS315},
  167. {"320x240x8", {0x50,0x50}, 0x0132, 0x0000, 320, 240, 8, 1, 40, 15, MD_SIS300|MD_SIS315},
  168. {"320x240x16", {0x56,0x56}, 0x0135, 0x0000, 320, 240, 16, 1, 40, 15, MD_SIS300|MD_SIS315},
  169. {"320x240x24", {0x53,0x53}, 0x0000, 0x0000, 320, 240, 32, 1, 40, 15, MD_SIS300|MD_SIS315},
  170. {"320x240x32", {0x53,0x53}, 0x0000, 0x0000, 320, 240, 32, 1, 40, 15, MD_SIS300|MD_SIS315},
  171. {"320x240x8", {0x5a,0x5a}, 0x0132, 0x0000, 320, 480, 8, 1, 40, 30, MD_SIS315}, /* FSTN */
  172. /*10*/ {"320x240x16", {0x5b,0x5b}, 0x0135, 0x0000, 320, 480, 16, 1, 40, 30, MD_SIS315}, /* FSTN */
  173. {"400x300x8", {0x51,0x51}, 0x0133, 0x0000, 400, 300, 8, 1, 50, 18, MD_SIS300|MD_SIS315},
  174. {"400x300x16", {0x57,0x57}, 0x0136, 0x0000, 400, 300, 16, 1, 50, 18, MD_SIS300|MD_SIS315},
  175. {"400x300x24", {0x54,0x54}, 0x0000, 0x0000, 400, 300, 32, 1, 50, 18, MD_SIS300|MD_SIS315},
  176. {"400x300x32", {0x54,0x54}, 0x0000, 0x0000, 400, 300, 32, 1, 50, 18, MD_SIS300|MD_SIS315},
  177. {"512x384x8", {0x52,0x52}, 0x0000, 0x0000, 512, 384, 8, 1, 64, 24, MD_SIS300|MD_SIS315},
  178. {"512x384x16", {0x58,0x58}, 0x0000, 0x0000, 512, 384, 16, 1, 64, 24, MD_SIS300|MD_SIS315},
  179. {"512x384x24", {0x5c,0x5c}, 0x0000, 0x0000, 512, 384, 32, 1, 64, 24, MD_SIS300|MD_SIS315},
  180. {"512x384x32", {0x5c,0x5c}, 0x0000, 0x0000, 512, 384, 32, 1, 64, 24, MD_SIS300|MD_SIS315},
  181. {"640x400x8", {0x2f,0x2f}, 0x0000, 0x0000, 640, 400, 8, 1, 80, 25, MD_SIS300|MD_SIS315},
  182. /*20*/ {"640x400x16", {0x5d,0x5d}, 0x0000, 0x0000, 640, 400, 16, 1, 80, 25, MD_SIS300|MD_SIS315},
  183. {"640x400x24", {0x5e,0x5e}, 0x0000, 0x0000, 640, 400, 32, 1, 80, 25, MD_SIS300|MD_SIS315},
  184. {"640x400x32", {0x5e,0x5e}, 0x0000, 0x0000, 640, 400, 32, 1, 80, 25, MD_SIS300|MD_SIS315},
  185. {"640x480x8", {0x2e,0x2e}, 0x0101, 0x0101, 640, 480, 8, 1, 80, 30, MD_SIS300|MD_SIS315},
  186. {"640x480x16", {0x44,0x44}, 0x0111, 0x0111, 640, 480, 16, 1, 80, 30, MD_SIS300|MD_SIS315},
  187. {"640x480x24", {0x62,0x62}, 0x013a, 0x0112, 640, 480, 32, 1, 80, 30, MD_SIS300|MD_SIS315},
  188. {"640x480x32", {0x62,0x62}, 0x013a, 0x0112, 640, 480, 32, 1, 80, 30, MD_SIS300|MD_SIS315},
  189. {"720x480x8", {0x31,0x31}, 0x0000, 0x0000, 720, 480, 8, 1, 90, 30, MD_SIS300|MD_SIS315},
  190. {"720x480x16", {0x33,0x33}, 0x0000, 0x0000, 720, 480, 16, 1, 90, 30, MD_SIS300|MD_SIS315},
  191. {"720x480x24", {0x35,0x35}, 0x0000, 0x0000, 720, 480, 32, 1, 90, 30, MD_SIS300|MD_SIS315},
  192. /*30*/ {"720x480x32", {0x35,0x35}, 0x0000, 0x0000, 720, 480, 32, 1, 90, 30, MD_SIS300|MD_SIS315},
  193. {"720x576x8", {0x32,0x32}, 0x0000, 0x0000, 720, 576, 8, 1, 90, 36, MD_SIS300|MD_SIS315},
  194. {"720x576x16", {0x34,0x34}, 0x0000, 0x0000, 720, 576, 16, 1, 90, 36, MD_SIS300|MD_SIS315},
  195. {"720x576x24", {0x36,0x36}, 0x0000, 0x0000, 720, 576, 32, 1, 90, 36, MD_SIS300|MD_SIS315},
  196. {"720x576x32", {0x36,0x36}, 0x0000, 0x0000, 720, 576, 32, 1, 90, 36, MD_SIS300|MD_SIS315},
  197. {"768x576x8", {0x5f,0x5f}, 0x0000, 0x0000, 768, 576, 8, 1, 96, 36, MD_SIS300|MD_SIS315},
  198. {"768x576x16", {0x60,0x60}, 0x0000, 0x0000, 768, 576, 16, 1, 96, 36, MD_SIS300|MD_SIS315},
  199. {"768x576x24", {0x61,0x61}, 0x0000, 0x0000, 768, 576, 32, 1, 96, 36, MD_SIS300|MD_SIS315},
  200. {"768x576x32", {0x61,0x61}, 0x0000, 0x0000, 768, 576, 32, 1, 96, 36, MD_SIS300|MD_SIS315},
  201. {"800x480x8", {0x70,0x70}, 0x0000, 0x0000, 800, 480, 8, 1, 100, 30, MD_SIS300|MD_SIS315},
  202. /*40*/ {"800x480x16", {0x7a,0x7a}, 0x0000, 0x0000, 800, 480, 16, 1, 100, 30, MD_SIS300|MD_SIS315},
  203. {"800x480x24", {0x76,0x76}, 0x0000, 0x0000, 800, 480, 32, 1, 100, 30, MD_SIS300|MD_SIS315},
  204. {"800x480x32", {0x76,0x76}, 0x0000, 0x0000, 800, 480, 32, 1, 100, 30, MD_SIS300|MD_SIS315},
  205. #define DEFAULT_MODE 43 /* index for 800x600x8 */
  206. #define DEFAULT_LCDMODE 43 /* index for 800x600x8 */
  207. #define DEFAULT_TVMODE 43 /* index for 800x600x8 */
  208. {"800x600x8", {0x30,0x30}, 0x0103, 0x0103, 800, 600, 8, 2, 100, 37, MD_SIS300|MD_SIS315},
  209. {"800x600x16", {0x47,0x47}, 0x0114, 0x0114, 800, 600, 16, 2, 100, 37, MD_SIS300|MD_SIS315},
  210. {"800x600x24", {0x63,0x63}, 0x013b, 0x0115, 800, 600, 32, 2, 100, 37, MD_SIS300|MD_SIS315},
  211. {"800x600x32", {0x63,0x63}, 0x013b, 0x0115, 800, 600, 32, 2, 100, 37, MD_SIS300|MD_SIS315},
  212. {"848x480x8", {0x39,0x39}, 0x0000, 0x0000, 848, 480, 8, 2, 106, 30, MD_SIS300|MD_SIS315},
  213. {"848x480x16", {0x3b,0x3b}, 0x0000, 0x0000, 848, 480, 16, 2, 106, 30, MD_SIS300|MD_SIS315},
  214. {"848x480x24", {0x3e,0x3e}, 0x0000, 0x0000, 848, 480, 32, 2, 106, 30, MD_SIS300|MD_SIS315},
  215. /*50*/ {"848x480x32", {0x3e,0x3e}, 0x0000, 0x0000, 848, 480, 32, 2, 106, 30, MD_SIS300|MD_SIS315},
  216. {"856x480x8", {0x3f,0x3f}, 0x0000, 0x0000, 856, 480, 8, 2, 107, 30, MD_SIS300|MD_SIS315},
  217. {"856x480x16", {0x42,0x42}, 0x0000, 0x0000, 856, 480, 16, 2, 107, 30, MD_SIS300|MD_SIS315},
  218. {"856x480x24", {0x45,0x45}, 0x0000, 0x0000, 856, 480, 32, 2, 107, 30, MD_SIS300|MD_SIS315},
  219. {"856x480x32", {0x45,0x45}, 0x0000, 0x0000, 856, 480, 32, 2, 107, 30, MD_SIS300|MD_SIS315},
  220. {"960x540x8", {0x1d,0x1d}, 0x0000, 0x0000, 960, 540, 8, 1, 120, 33, MD_SIS315},
  221. {"960x540x16", {0x1e,0x1e}, 0x0000, 0x0000, 960, 540, 16, 1, 120, 33, MD_SIS315},
  222. {"960x540x24", {0x1f,0x1f}, 0x0000, 0x0000, 960, 540, 32, 1, 120, 33, MD_SIS315},
  223. {"960x540x32", {0x1f,0x1f}, 0x0000, 0x0000, 960, 540, 32, 1, 120, 33, MD_SIS315},
  224. {"960x600x8", {0x20,0x20}, 0x0000, 0x0000, 960, 600, 8, 1, 120, 37, MD_SIS315},
  225. /*60*/ {"960x600x16", {0x21,0x21}, 0x0000, 0x0000, 960, 600, 16, 1, 120, 37, MD_SIS315},
  226. {"960x600x24", {0x22,0x22}, 0x0000, 0x0000, 960, 600, 32, 1, 120, 37, MD_SIS315},
  227. {"960x600x32", {0x22,0x22}, 0x0000, 0x0000, 960, 600, 32, 1, 120, 37, MD_SIS315},
  228. {"1024x576x8", {0x71,0x71}, 0x0000, 0x0000, 1024, 576, 8, 1, 128, 36, MD_SIS300|MD_SIS315},
  229. {"1024x576x16", {0x74,0x74}, 0x0000, 0x0000, 1024, 576, 16, 1, 128, 36, MD_SIS300|MD_SIS315},
  230. {"1024x576x24", {0x77,0x77}, 0x0000, 0x0000, 1024, 576, 32, 1, 128, 36, MD_SIS300|MD_SIS315},
  231. {"1024x576x32", {0x77,0x77}, 0x0000, 0x0000, 1024, 576, 32, 1, 128, 36, MD_SIS300|MD_SIS315},
  232. {"1024x600x8", {0x20,0x20}, 0x0000, 0x0000, 1024, 600, 8, 1, 128, 37, MD_SIS300 },
  233. {"1024x600x16", {0x21,0x21}, 0x0000, 0x0000, 1024, 600, 16, 1, 128, 37, MD_SIS300 },
  234. {"1024x600x24", {0x22,0x22}, 0x0000, 0x0000, 1024, 600, 32, 1, 128, 37, MD_SIS300 },
  235. /*70*/ {"1024x600x32", {0x22,0x22}, 0x0000, 0x0000, 1024, 600, 32, 1, 128, 37, MD_SIS300 },
  236. {"1024x768x8", {0x38,0x38}, 0x0105, 0x0105, 1024, 768, 8, 2, 128, 48, MD_SIS300|MD_SIS315},
  237. {"1024x768x16", {0x4a,0x4a}, 0x0117, 0x0117, 1024, 768, 16, 2, 128, 48, MD_SIS300|MD_SIS315},
  238. {"1024x768x24", {0x64,0x64}, 0x013c, 0x0118, 1024, 768, 32, 2, 128, 48, MD_SIS300|MD_SIS315},
  239. {"1024x768x32", {0x64,0x64}, 0x013c, 0x0118, 1024, 768, 32, 2, 128, 48, MD_SIS300|MD_SIS315},
  240. {"1152x768x8", {0x23,0x23}, 0x0000, 0x0000, 1152, 768, 8, 1, 144, 48, MD_SIS300 },
  241. {"1152x768x16", {0x24,0x24}, 0x0000, 0x0000, 1152, 768, 16, 1, 144, 48, MD_SIS300 },
  242. {"1152x768x24", {0x25,0x25}, 0x0000, 0x0000, 1152, 768, 32, 1, 144, 48, MD_SIS300 },
  243. {"1152x768x32", {0x25,0x25}, 0x0000, 0x0000, 1152, 768, 32, 1, 144, 48, MD_SIS300 },
  244. {"1152x864x8", {0x29,0x29}, 0x0000, 0x0000, 1152, 864, 8, 1, 144, 54, MD_SIS300|MD_SIS315},
  245. /*80*/ {"1152x864x16", {0x2a,0x2a}, 0x0000, 0x0000, 1152, 864, 16, 1, 144, 54, MD_SIS300|MD_SIS315},
  246. {"1152x864x24", {0x2b,0x2b}, 0x0000, 0x0000, 1152, 864, 32, 1, 144, 54, MD_SIS300|MD_SIS315},
  247. {"1152x864x32", {0x2b,0x2b}, 0x0000, 0x0000, 1152, 864, 32, 1, 144, 54, MD_SIS300|MD_SIS315},
  248. {"1280x720x8", {0x79,0x79}, 0x0000, 0x0000, 1280, 720, 8, 1, 160, 45, MD_SIS300|MD_SIS315},
  249. {"1280x720x16", {0x75,0x75}, 0x0000, 0x0000, 1280, 720, 16, 1, 160, 45, MD_SIS300|MD_SIS315},
  250. {"1280x720x24", {0x78,0x78}, 0x0000, 0x0000, 1280, 720, 32, 1, 160, 45, MD_SIS300|MD_SIS315},
  251. {"1280x720x32", {0x78,0x78}, 0x0000, 0x0000, 1280, 720, 32, 1, 160, 45, MD_SIS300|MD_SIS315},
  252. {"1280x768x8", {0x55,0x23}, 0x0000, 0x0000, 1280, 768, 8, 1, 160, 48, MD_SIS300|MD_SIS315},
  253. {"1280x768x16", {0x5a,0x24}, 0x0000, 0x0000, 1280, 768, 16, 1, 160, 48, MD_SIS300|MD_SIS315},
  254. {"1280x768x24", {0x5b,0x25}, 0x0000, 0x0000, 1280, 768, 32, 1, 160, 48, MD_SIS300|MD_SIS315},
  255. /*90*/ {"1280x768x32", {0x5b,0x25}, 0x0000, 0x0000, 1280, 768, 32, 1, 160, 48, MD_SIS300|MD_SIS315},
  256. {"1280x800x8", {0x14,0x14}, 0x0000, 0x0000, 1280, 800, 8, 1, 160, 50, MD_SIS315},
  257. {"1280x800x16", {0x15,0x15}, 0x0000, 0x0000, 1280, 800, 16, 1, 160, 50, MD_SIS315},
  258. {"1280x800x24", {0x16,0x16}, 0x0000, 0x0000, 1280, 800, 32, 1, 160, 50, MD_SIS315},
  259. {"1280x800x32", {0x16,0x16}, 0x0000, 0x0000, 1280, 800, 32, 1, 160, 50, MD_SIS315},
  260. {"1280x960x8", {0x7c,0x7c}, 0x0000, 0x0000, 1280, 960, 8, 1, 160, 60, MD_SIS300|MD_SIS315},
  261. {"1280x960x16", {0x7d,0x7d}, 0x0000, 0x0000, 1280, 960, 16, 1, 160, 60, MD_SIS300|MD_SIS315},
  262. {"1280x960x24", {0x7e,0x7e}, 0x0000, 0x0000, 1280, 960, 32, 1, 160, 60, MD_SIS300|MD_SIS315},
  263. {"1280x960x32", {0x7e,0x7e}, 0x0000, 0x0000, 1280, 960, 32, 1, 160, 60, MD_SIS300|MD_SIS315},
  264. {"1280x1024x8", {0x3a,0x3a}, 0x0107, 0x0107, 1280, 1024, 8, 2, 160, 64, MD_SIS300|MD_SIS315},
  265. /*100*/ {"1280x1024x16", {0x4d,0x4d}, 0x011a, 0x011a, 1280, 1024, 16, 2, 160, 64, MD_SIS300|MD_SIS315},
  266. {"1280x1024x24", {0x65,0x65}, 0x013d, 0x011b, 1280, 1024, 32, 2, 160, 64, MD_SIS300|MD_SIS315},
  267. {"1280x1024x32", {0x65,0x65}, 0x013d, 0x011b, 1280, 1024, 32, 2, 160, 64, MD_SIS300|MD_SIS315},
  268. {"1360x768x8", {0x48,0x48}, 0x0000, 0x0000, 1360, 768, 8, 1, 170, 48, MD_SIS300|MD_SIS315},
  269. {"1360x768x16", {0x4b,0x4b}, 0x0000, 0x0000, 1360, 768, 16, 1, 170, 48, MD_SIS300|MD_SIS315},
  270. {"1360x768x24", {0x4e,0x4e}, 0x0000, 0x0000, 1360, 768, 32, 1, 170, 48, MD_SIS300|MD_SIS315},
  271. {"1360x768x32", {0x4e,0x4e}, 0x0000, 0x0000, 1360, 768, 32, 1, 170, 48, MD_SIS300|MD_SIS315},
  272. {"1360x1024x8", {0x67,0x67}, 0x0000, 0x0000, 1360, 1024, 8, 1, 170, 64, MD_SIS300 },
  273. {"1360x1024x16", {0x6f,0x6f}, 0x0000, 0x0000, 1360, 1024, 16, 1, 170, 64, MD_SIS300 },
  274. {"1360x1024x24", {0x72,0x72}, 0x0000, 0x0000, 1360, 1024, 32, 1, 170, 64, MD_SIS300 },
  275. /*110*/ {"1360x1024x32", {0x72,0x72}, 0x0000, 0x0000, 1360, 1024, 32, 1, 170, 64, MD_SIS300 },
  276. {"1400x1050x8", {0x26,0x26}, 0x0000, 0x0000, 1400, 1050, 8, 1, 175, 65, MD_SIS315},
  277. {"1400x1050x16", {0x27,0x27}, 0x0000, 0x0000, 1400, 1050, 16, 1, 175, 65, MD_SIS315},
  278. {"1400x1050x24", {0x28,0x28}, 0x0000, 0x0000, 1400, 1050, 32, 1, 175, 65, MD_SIS315},
  279. {"1400x1050x32", {0x28,0x28}, 0x0000, 0x0000, 1400, 1050, 32, 1, 175, 65, MD_SIS315},
  280. {"1600x1200x8", {0x3c,0x3c}, 0x0130, 0x011c, 1600, 1200, 8, 1, 200, 75, MD_SIS300|MD_SIS315},
  281. {"1600x1200x16", {0x3d,0x3d}, 0x0131, 0x011e, 1600, 1200, 16, 1, 200, 75, MD_SIS300|MD_SIS315},
  282. {"1600x1200x24", {0x66,0x66}, 0x013e, 0x011f, 1600, 1200, 32, 1, 200, 75, MD_SIS300|MD_SIS315},
  283. {"1600x1200x32", {0x66,0x66}, 0x013e, 0x011f, 1600, 1200, 32, 1, 200, 75, MD_SIS300|MD_SIS315},
  284. {"1680x1050x8", {0x17,0x17}, 0x0000, 0x0000, 1680, 1050, 8, 1, 210, 65, MD_SIS315},
  285. /*120*/ {"1680x1050x16", {0x18,0x18}, 0x0000, 0x0000, 1680, 1050, 16, 1, 210, 65, MD_SIS315},
  286. {"1680x1050x24", {0x19,0x19}, 0x0000, 0x0000, 1680, 1050, 32, 1, 210, 65, MD_SIS315},
  287. {"1680x1050x32", {0x19,0x19}, 0x0000, 0x0000, 1680, 1050, 32, 1, 210, 65, MD_SIS315},
  288. {"1920x1080x8", {0x2c,0x2c}, 0x0000, 0x0000, 1920, 1080, 8, 1, 240, 67, MD_SIS315},
  289. {"1920x1080x16", {0x2d,0x2d}, 0x0000, 0x0000, 1920, 1080, 16, 1, 240, 67, MD_SIS315},
  290. {"1920x1080x24", {0x73,0x73}, 0x0000, 0x0000, 1920, 1080, 32, 1, 240, 67, MD_SIS315},
  291. {"1920x1080x32", {0x73,0x73}, 0x0000, 0x0000, 1920, 1080, 32, 1, 240, 67, MD_SIS315},
  292. {"1920x1440x8", {0x68,0x68}, 0x013f, 0x0000, 1920, 1440, 8, 1, 240, 75, MD_SIS300|MD_SIS315},
  293. {"1920x1440x16", {0x69,0x69}, 0x0140, 0x0000, 1920, 1440, 16, 1, 240, 75, MD_SIS300|MD_SIS315},
  294. {"1920x1440x24", {0x6b,0x6b}, 0x0141, 0x0000, 1920, 1440, 32, 1, 240, 75, MD_SIS300|MD_SIS315},
  295. /*130*/ {"1920x1440x32", {0x6b,0x6b}, 0x0141, 0x0000, 1920, 1440, 32, 1, 240, 75, MD_SIS300|MD_SIS315},
  296. {"2048x1536x8", {0x6c,0x6c}, 0x0000, 0x0000, 2048, 1536, 8, 1, 256, 96, MD_SIS315},
  297. {"2048x1536x16", {0x6d,0x6d}, 0x0000, 0x0000, 2048, 1536, 16, 1, 256, 96, MD_SIS315},
  298. {"2048x1536x24", {0x6e,0x6e}, 0x0000, 0x0000, 2048, 1536, 32, 1, 256, 96, MD_SIS315},
  299. {"2048x1536x32", {0x6e,0x6e}, 0x0000, 0x0000, 2048, 1536, 32, 1, 256, 96, MD_SIS315},
  300. {"\0", {0x00,0x00}, 0, 0, 0, 0, 0, 0, 0}
  301. };
  302. #define SIS_LCD_NUMBER 17
  303. static const struct _sis_lcd_data {
  304. u32 lcdtype;
  305. u16 xres;
  306. u16 yres;
  307. u8 default_mode_idx;
  308. } sis_lcd_data[] = {
  309. { LCD_640x480, 640, 480, 23 },
  310. { LCD_800x600, 800, 600, 43 },
  311. { LCD_1024x600, 1024, 600, 67 },
  312. { LCD_1024x768, 1024, 768, 71 },
  313. { LCD_1152x768, 1152, 768, 75 },
  314. { LCD_1152x864, 1152, 864, 79 },
  315. { LCD_1280x720, 1280, 720, 83 },
  316. { LCD_1280x768, 1280, 768, 87 },
  317. { LCD_1280x800, 1280, 800, 91 },
  318. { LCD_1280x960, 1280, 960, 95 },
  319. { LCD_1280x1024, 1280, 1024, 99 },
  320. { LCD_1400x1050, 1400, 1050, 111 },
  321. { LCD_1680x1050, 1680, 1050, 119 },
  322. { LCD_1600x1200, 1600, 1200, 115 },
  323. { LCD_640x480_2, 640, 480, 23 },
  324. { LCD_640x480_3, 640, 480, 23 },
  325. { LCD_320x480, 320, 480, 9 },
  326. };
  327. /* CR36 evaluation */
  328. static const USHORT sis300paneltype[] =
  329. { LCD_UNKNOWN, LCD_800x600, LCD_1024x768, LCD_1280x1024,
  330. LCD_1280x960, LCD_640x480, LCD_1024x600, LCD_1152x768,
  331. LCD_UNKNOWN, LCD_UNKNOWN, LCD_UNKNOWN, LCD_UNKNOWN,
  332. LCD_UNKNOWN, LCD_UNKNOWN, LCD_UNKNOWN, LCD_UNKNOWN };
  333. static const USHORT sis310paneltype[] =
  334. { LCD_UNKNOWN, LCD_800x600, LCD_1024x768, LCD_1280x1024,
  335. LCD_640x480, LCD_1024x600, LCD_1152x864, LCD_1280x960,
  336. LCD_1152x768, LCD_1400x1050, LCD_1280x768, LCD_1600x1200,
  337. LCD_640x480_2, LCD_640x480_3, LCD_UNKNOWN, LCD_UNKNOWN };
  338. static const USHORT sis661paneltype[] =
  339. { LCD_UNKNOWN, LCD_800x600, LCD_1024x768, LCD_1280x1024,
  340. LCD_640x480, LCD_1024x600, LCD_1152x864, LCD_1280x960,
  341. LCD_1152x768, LCD_1400x1050, LCD_1280x768, LCD_1600x1200,
  342. LCD_1280x800, LCD_1680x1050, LCD_1280x720, LCD_UNKNOWN };
  343. #define FL_550_DSTN 0x01
  344. #define FL_550_FSTN 0x02
  345. #define FL_300 0x04
  346. #define FL_315 0x08
  347. static struct _sis_crt2type {
  348. char name[32];
  349. u32 type_no;
  350. u32 tvplug_no;
  351. u16 flags;
  352. } sis_crt2type[] __initdata = {
  353. {"NONE", 0, -1, FL_300|FL_315},
  354. {"LCD", CRT2_LCD, -1, FL_300|FL_315},
  355. {"TV", CRT2_TV, -1, FL_300|FL_315},
  356. {"VGA", CRT2_VGA, -1, FL_300|FL_315},
  357. {"SVIDEO", CRT2_TV, TV_SVIDEO, FL_300|FL_315},
  358. {"COMPOSITE", CRT2_TV, TV_AVIDEO, FL_300|FL_315},
  359. {"CVBS", CRT2_TV, TV_AVIDEO, FL_300|FL_315},
  360. {"SVIDEO+COMPOSITE", CRT2_TV, TV_AVIDEO|TV_SVIDEO, FL_300|FL_315},
  361. {"COMPOSITE+SVIDEO", CRT2_TV, TV_AVIDEO|TV_SVIDEO, FL_300|FL_315},
  362. {"SVIDEO+CVBS", CRT2_TV, TV_AVIDEO|TV_SVIDEO, FL_300|FL_315},
  363. {"CVBS+SVIDEO", CRT2_TV, TV_AVIDEO|TV_SVIDEO, FL_300|FL_315},
  364. {"SCART", CRT2_TV, TV_SCART, FL_300|FL_315},
  365. {"HIVISION", CRT2_TV, TV_HIVISION, FL_315},
  366. {"YPBPR480I", CRT2_TV, TV_YPBPR|TV_YPBPR525I, FL_315},
  367. {"YPBPR480P", CRT2_TV, TV_YPBPR|TV_YPBPR525P, FL_315},
  368. {"YPBPR720P", CRT2_TV, TV_YPBPR|TV_YPBPR750P, FL_315},
  369. {"YPBPR1080I", CRT2_TV, TV_YPBPR|TV_YPBPR1080I, FL_315},
  370. {"DSTN", CRT2_LCD, -1, FL_315|FL_550_DSTN},
  371. {"FSTN", CRT2_LCD, -1, FL_315|FL_550_FSTN},
  372. {"\0", -1, -1, 0}
  373. };
  374. /* TV standard */
  375. static struct _sis_tvtype {
  376. char name[6];
  377. u32 type_no;
  378. } sis_tvtype[] __initdata = {
  379. {"PAL", TV_PAL},
  380. {"NTSC", TV_NTSC},
  381. {"PALM", TV_PAL|TV_PALM},
  382. {"PALN", TV_PAL|TV_PALN},
  383. {"NTSCJ", TV_NTSC|TV_NTSCJ},
  384. {"\0", -1}
  385. };
  386. static const struct _sis_vrate {
  387. u16 idx;
  388. u16 xres;
  389. u16 yres;
  390. u16 refresh;
  391. BOOLEAN SiS730valid32bpp;
  392. } sisfb_vrate[] = {
  393. {1, 320, 200, 70, TRUE},
  394. {1, 320, 240, 60, TRUE},
  395. {1, 320, 480, 60, TRUE},
  396. {1, 400, 300, 60, TRUE},
  397. {1, 512, 384, 60, TRUE},
  398. {1, 640, 400, 72, TRUE},
  399. {1, 640, 480, 60, TRUE}, {2, 640, 480, 72, TRUE}, {3, 640, 480, 75, TRUE},
  400. {4, 640, 480, 85, TRUE}, {5, 640, 480, 100, TRUE}, {6, 640, 480, 120, TRUE},
  401. {7, 640, 480, 160, TRUE}, {8, 640, 480, 200, TRUE},
  402. {1, 720, 480, 60, TRUE},
  403. {1, 720, 576, 58, TRUE},
  404. {1, 768, 576, 58, TRUE},
  405. {1, 800, 480, 60, TRUE}, {2, 800, 480, 75, TRUE}, {3, 800, 480, 85, TRUE},
  406. {1, 800, 600, 56, TRUE}, {2, 800, 600, 60, TRUE}, {3, 800, 600, 72, TRUE},
  407. {4, 800, 600, 75, TRUE}, {5, 800, 600, 85, TRUE}, {6, 800, 600, 105, TRUE},
  408. {7, 800, 600, 120, TRUE}, {8, 800, 600, 160, TRUE},
  409. {1, 848, 480, 39, TRUE}, {2, 848, 480, 60, TRUE},
  410. {1, 856, 480, 39, TRUE}, {2, 856, 480, 60, TRUE},
  411. {1, 960, 540, 60, TRUE},
  412. {1, 960, 600, 60, TRUE},
  413. {1, 1024, 576, 60, TRUE}, {2, 1024, 576, 75, TRUE}, {3, 1024, 576, 85, TRUE},
  414. {1, 1024, 600, 60, TRUE},
  415. {1, 1024, 768, 43, TRUE}, {2, 1024, 768, 60, TRUE}, {3, 1024, 768, 70, FALSE},
  416. {4, 1024, 768, 75, FALSE}, {5, 1024, 768, 85, TRUE}, {6, 1024, 768, 100, TRUE},
  417. {7, 1024, 768, 120, TRUE},
  418. {1, 1152, 768, 60, TRUE},
  419. {1, 1152, 864, 60, TRUE}, {1, 1152, 864, 75, TRUE}, {2, 1152, 864, 84, TRUE},
  420. {1, 1280, 720, 60, TRUE}, {2, 1280, 720, 75, TRUE}, {3, 1280, 720, 85, TRUE},
  421. {1, 1280, 768, 60, TRUE},
  422. {1, 1280, 800, 60, TRUE},
  423. {1, 1280, 960, 60, TRUE}, {2, 1280, 960, 85, TRUE},
  424. {1, 1280, 1024, 43, TRUE}, {2, 1280, 1024, 60, TRUE}, {3, 1280, 1024, 75, TRUE},
  425. {4, 1280, 1024, 85, TRUE},
  426. {1, 1360, 768, 60, TRUE},
  427. {1, 1360, 1024, 59, TRUE},
  428. {1, 1400, 1050, 60, TRUE}, {2, 1400, 1050, 75, TRUE},
  429. {1, 1600, 1200, 60, TRUE}, {2, 1600, 1200, 65, TRUE}, {3, 1600, 1200, 70, TRUE},
  430. {4, 1600, 1200, 75, TRUE}, {5, 1600, 1200, 85, TRUE}, {6, 1600, 1200, 100, TRUE},
  431. {7, 1600, 1200, 120, TRUE},
  432. {1, 1680, 1050, 60, TRUE},
  433. {1, 1920, 1080, 30, TRUE},
  434. {1, 1920, 1440, 60, TRUE}, {2, 1920, 1440, 65, TRUE}, {3, 1920, 1440, 70, TRUE},
  435. {4, 1920, 1440, 75, TRUE}, {5, 1920, 1440, 85, TRUE}, {6, 1920, 1440, 100, TRUE},
  436. {1, 2048, 1536, 60, TRUE}, {2, 2048, 1536, 65, TRUE}, {3, 2048, 1536, 70, TRUE},
  437. {4, 2048, 1536, 75, TRUE}, {5, 2048, 1536, 85, TRUE},
  438. {0, 0, 0, 0, FALSE}
  439. };
  440. static const struct _sisfbddcsmodes {
  441. u32 mask;
  442. u16 h;
  443. u16 v;
  444. u32 d;
  445. } sisfb_ddcsmodes[] = {
  446. { 0x10000, 67, 75, 108000},
  447. { 0x08000, 48, 72, 50000},
  448. { 0x04000, 46, 75, 49500},
  449. { 0x01000, 35, 43, 44900},
  450. { 0x00800, 48, 60, 65000},
  451. { 0x00400, 56, 70, 75000},
  452. { 0x00200, 60, 75, 78800},
  453. { 0x00100, 80, 75, 135000},
  454. { 0x00020, 31, 60, 25200},
  455. { 0x00008, 38, 72, 31500},
  456. { 0x00004, 37, 75, 31500},
  457. { 0x00002, 35, 56, 36000},
  458. { 0x00001, 38, 60, 40000}
  459. };
  460. static const struct _sisfbddcfmodes {
  461. u16 x;
  462. u16 y;
  463. u16 v;
  464. u16 h;
  465. u32 d;
  466. } sisfb_ddcfmodes[] = {
  467. { 1280, 1024, 85, 92, 157500},
  468. { 1600, 1200, 60, 75, 162000},
  469. { 1600, 1200, 65, 82, 175500},
  470. { 1600, 1200, 70, 88, 189000},
  471. { 1600, 1200, 75, 94, 202500},
  472. { 1600, 1200, 85, 107,229500},
  473. { 1920, 1440, 60, 90, 234000},
  474. { 1920, 1440, 75, 113,297000}
  475. };
  476. #ifdef CONFIG_FB_SIS_300
  477. static struct _chswtable {
  478. u16 subsysVendor;
  479. u16 subsysCard;
  480. char *vendorName;
  481. char *cardName;
  482. } mychswtable[] __devinitdata = {
  483. { 0x1631, 0x1002, "Mitachi", "0x1002" },
  484. { 0x1071, 0x7521, "Mitac" , "7521P" },
  485. { 0, 0, "" , "" }
  486. };
  487. #endif
  488. static struct _customttable {
  489. u16 chipID;
  490. char *biosversion;
  491. char *biosdate;
  492. u32 bioschksum;
  493. u16 biosFootprintAddr[5];
  494. u8 biosFootprintData[5];
  495. u16 pcisubsysvendor;
  496. u16 pcisubsyscard;
  497. char *vendorName;
  498. char *cardName;
  499. u32 SpecialID;
  500. char *optionName;
  501. } mycustomttable[] __devinitdata = {
  502. { SIS_630, "2.00.07", "09/27/2002-13:38:25",
  503. 0x3240A8,
  504. { 0x220, 0x227, 0x228, 0x229, 0x0ee },
  505. { 0x01, 0xe3, 0x9a, 0x6a, 0xef },
  506. 0x1039, 0x6300,
  507. "Barco", "iQ R200L/300/400", CUT_BARCO1366, "BARCO_1366"
  508. },
  509. { SIS_630, "2.00.07", "09/27/2002-13:38:25",
  510. 0x323FBD,
  511. { 0x220, 0x227, 0x228, 0x229, 0x0ee },
  512. { 0x00, 0x5a, 0x64, 0x41, 0xef },
  513. 0x1039, 0x6300,
  514. "Barco", "iQ G200L/300/400/500", CUT_BARCO1024, "BARCO_1024"
  515. },
  516. { SIS_650, "", "",
  517. 0,
  518. { 0, 0, 0, 0, 0 },
  519. { 0, 0, 0, 0, 0 },
  520. 0x0e11, 0x083c,
  521. "Inventec (Compaq)", "3017cl/3045US", CUT_COMPAQ12802, "COMPAQ_1280"
  522. },
  523. { SIS_650, "", "",
  524. 0,
  525. { 0x00c, 0, 0, 0, 0 },
  526. { 'e' , 0, 0, 0, 0 },
  527. 0x1558, 0x0287,
  528. "Clevo", "L285/L287 (Version 1)", CUT_CLEVO1024, "CLEVO_L28X_1"
  529. },
  530. { SIS_650, "", "",
  531. 0,
  532. { 0x00c, 0, 0, 0, 0 },
  533. { 'y' , 0, 0, 0, 0 },
  534. 0x1558, 0x0287,
  535. "Clevo", "L285/L287 (Version 2)", CUT_CLEVO10242, "CLEVO_L28X_2"
  536. },
  537. { SIS_650, "", "",
  538. 0,
  539. { 0, 0, 0, 0, 0 },
  540. { 0, 0, 0, 0, 0 },
  541. 0x1558, 0x0400, /* possibly 401 and 402 as well; not panelsize specific (?) */
  542. "Clevo", "D400S/D410S/D400H/D410H", CUT_CLEVO1400, "CLEVO_D4X0"
  543. },
  544. { SIS_650, "", "",
  545. 0, /* Shift LCD in LCD-via-CRT1 mode */
  546. { 0, 0, 0, 0, 0 },
  547. { 0, 0, 0, 0, 0 },
  548. 0x1558, 0x2263,
  549. "Clevo", "D22ES/D27ES", CUT_UNIWILL1024, "CLEVO_D2X0ES"
  550. },
  551. { SIS_650, "", "",
  552. 0, /* Shift LCD in LCD-via-CRT1 mode */
  553. { 0, 0, 0, 0, 0 },
  554. { 0, 0, 0, 0, 0 },
  555. 0x1734, 0x101f,
  556. "Uniwill", "N243S9", CUT_UNIWILL1024, "UNIWILL_N243S9"
  557. },
  558. { SIS_650, "", "",
  559. 0, /* Shift LCD in LCD-via-CRT1 mode */
  560. { 0, 0, 0, 0, 0 },
  561. { 0, 0, 0, 0, 0 },
  562. 0x1584, 0x5103,
  563. "Uniwill", "N35BS1", CUT_UNIWILL10242, "UNIWILL_N35BS1"
  564. },
  565. { SIS_650, "1.09.2c", "", /* Other versions, too? */
  566. 0, /* Shift LCD in LCD-via-CRT1 mode */
  567. { 0, 0, 0, 0, 0 },
  568. { 0, 0, 0, 0, 0 },
  569. 0x1019, 0x0f05,
  570. "ECS", "A928", CUT_UNIWILL1024, "ECS_A928"
  571. },
  572. { SIS_740, "1.11.27a", "",
  573. 0,
  574. { 0, 0, 0, 0, 0 },
  575. { 0, 0, 0, 0, 0 },
  576. 0x1043, 0x1612,
  577. "Asus", "L3000D/L3500D", CUT_ASUSL3000D, "ASUS_L3X00"
  578. },
  579. { SIS_650, "1.10.9k", "",
  580. 0,
  581. { 0, 0, 0, 0, 0 },
  582. { 0, 0, 0, 0, 0 },
  583. 0x1025, 0x0028,
  584. "Acer", "Aspire 1700", CUT_ACER1280, "ACER_ASPIRE1700"
  585. },
  586. { SIS_650, "1.10.7w", "",
  587. 0,
  588. { 0, 0, 0, 0, 0 },
  589. { 0, 0, 0, 0, 0 },
  590. 0x14c0, 0x0012,
  591. "Compal", "??? (V1)", CUT_COMPAL1400_1, "COMPAL_1400_1"
  592. },
  593. { SIS_650, "1.10.7x", "",
  594. 0,
  595. { 0, 0, 0, 0, 0 },
  596. { 0, 0, 0, 0, 0 },
  597. 0x14c0, 0x0012,
  598. "Compal", "??? (V2)", CUT_COMPAL1400_2, "COMPAL_1400_2"
  599. },
  600. { SIS_650, "1.10.8o", "",
  601. 0, /* For EMI (unknown) */
  602. { 0, 0, 0, 0, 0 },
  603. { 0, 0, 0, 0, 0 },
  604. 0x1043, 0x1612,
  605. "Asus", "A2H (V1)", CUT_ASUSA2H_1, "ASUS_A2H_1"
  606. },
  607. { SIS_650, "1.10.8q", "",
  608. 0, /* For EMI */
  609. { 0, 0, 0, 0, 0 },
  610. { 0, 0, 0, 0, 0 },
  611. 0x1043, 0x1612,
  612. "Asus", "A2H (V2)", CUT_ASUSA2H_2, "ASUS_A2H_2"
  613. },
  614. { 4321, "", "", /* never autodetected */
  615. 0,
  616. { 0, 0, 0, 0, 0 },
  617. { 0, 0, 0, 0, 0 },
  618. 0, 0,
  619. "Generic", "LVDS/Parallel 848x480", CUT_PANEL848, "PANEL848x480"
  620. },
  621. { 0, "", "",
  622. 0,
  623. { 0, 0, 0, 0 },
  624. { 0, 0, 0, 0 },
  625. 0, 0,
  626. "", "", CUT_NONE, ""
  627. }
  628. };
  629. static const struct _sis_TV_filter {
  630. u8 filter[9][4];
  631. } sis_TV_filter[] = {
  632. { {{0x00,0x00,0x00,0x40}, /* NTSCFilter_0 */
  633. {0x00,0xE0,0x10,0x60},
  634. {0x00,0xEE,0x10,0x44},
  635. {0x00,0xF4,0x10,0x38},
  636. {0xF8,0xF4,0x18,0x38},
  637. {0xFC,0xFB,0x14,0x2A},
  638. {0x00,0x00,0x10,0x20},
  639. {0x00,0x04,0x10,0x18},
  640. {0xFF,0xFF,0xFF,0xFF} }},
  641. { {{0x00,0x00,0x00,0x40}, /* NTSCFilter_1 */
  642. {0x00,0xE0,0x10,0x60},
  643. {0x00,0xEE,0x10,0x44},
  644. {0x00,0xF4,0x10,0x38},
  645. {0xF8,0xF4,0x18,0x38},
  646. {0xFC,0xFB,0x14,0x2A},
  647. {0x00,0x00,0x10,0x20},
  648. {0x00,0x04,0x10,0x18},
  649. {0xFF,0xFF,0xFF,0xFF} }},
  650. { {{0x00,0x00,0x00,0x40}, /* NTSCFilter_2 */
  651. {0xF5,0xEE,0x1B,0x44},
  652. {0xF8,0xF4,0x18,0x38},
  653. {0xEB,0x04,0x25,0x18},
  654. {0xF1,0x05,0x1F,0x16},
  655. {0xF6,0x06,0x1A,0x14},
  656. {0xFA,0x06,0x16,0x14},
  657. {0x00,0x04,0x10,0x18},
  658. {0xFF,0xFF,0xFF,0xFF} }},
  659. { {{0x00,0x00,0x00,0x40}, /* NTSCFilter_3 */
  660. {0xF1,0x04,0x1F,0x18},
  661. {0xEE,0x0D,0x22,0x06},
  662. {0xF7,0x06,0x19,0x14},
  663. {0xF4,0x0B,0x1C,0x0A},
  664. {0xFA,0x07,0x16,0x12},
  665. {0xF9,0x0A,0x17,0x0C},
  666. {0x00,0x07,0x10,0x12},
  667. {0xFF,0xFF,0xFF,0xFF} }},
  668. { {{0x00,0x00,0x00,0x40}, /* NTSCFilter_4 - 320 */
  669. {0x00,0xE0,0x10,0x60},
  670. {0x00,0xEE,0x10,0x44},
  671. {0x00,0xF4,0x10,0x38},
  672. {0xF8,0xF4,0x18,0x38},
  673. {0xFC,0xFB,0x14,0x2A},
  674. {0x00,0x00,0x10,0x20},
  675. {0x00,0x04,0x10,0x18},
  676. {0xFF,0xFF,0xFF,0xFF} }},
  677. { {{0x00,0x00,0x00,0x40}, /* NTSCFilter_5 - 640 */
  678. {0xF5,0xEE,0x1B,0x44},
  679. {0xF8,0xF4,0x18,0x38},
  680. {0xEB,0x04,0x25,0x18},
  681. {0xF1,0x05,0x1F,0x16},
  682. {0xF6,0x06,0x1A,0x14},
  683. {0xFA,0x06,0x16,0x14},
  684. {0x00,0x04,0x10,0x18},
  685. {0xFF,0xFF,0xFF,0xFF} }},
  686. { {{0x00,0x00,0x00,0x40}, /* NTSCFilter_6 - 720 */
  687. {0xEB,0x04,0x25,0x18},
  688. {0xE7,0x0E,0x29,0x04},
  689. {0xEE,0x0C,0x22,0x08},
  690. {0xF6,0x0B,0x1A,0x0A},
  691. {0xF9,0x0A,0x17,0x0C},
  692. {0xFC,0x0A,0x14,0x0C},
  693. {0x00,0x08,0x10,0x10},
  694. {0xFF,0xFF,0xFF,0xFF} }},
  695. { {{0x00,0x00,0x00,0x40}, /* NTSCFilter_7 - 800 */
  696. {0xEC,0x02,0x24,0x1C},
  697. {0xF2,0x04,0x1E,0x18},
  698. {0xEB,0x15,0x25,0xF6},
  699. {0xF4,0x10,0x1C,0x00},
  700. {0xF8,0x0F,0x18,0x02},
  701. {0x00,0x04,0x10,0x18},
  702. {0x01,0x06,0x0F,0x14},
  703. {0xFF,0xFF,0xFF,0xFF} }},
  704. { {{0x00,0x00,0x00,0x40}, /* PALFilter_0 */
  705. {0x00,0xE0,0x10,0x60},
  706. {0x00,0xEE,0x10,0x44},
  707. {0x00,0xF4,0x10,0x38},
  708. {0xF8,0xF4,0x18,0x38},
  709. {0xFC,0xFB,0x14,0x2A},
  710. {0x00,0x00,0x10,0x20},
  711. {0x00,0x04,0x10,0x18},
  712. {0xFF,0xFF,0xFF,0xFF} }},
  713. { {{0x00,0x00,0x00,0x40}, /* PALFilter_1 */
  714. {0x00,0xE0,0x10,0x60},
  715. {0x00,0xEE,0x10,0x44},
  716. {0x00,0xF4,0x10,0x38},
  717. {0xF8,0xF4,0x18,0x38},
  718. {0xFC,0xFB,0x14,0x2A},
  719. {0x00,0x00,0x10,0x20},
  720. {0x00,0x04,0x10,0x18},
  721. {0xFF,0xFF,0xFF,0xFF} }},
  722. { {{0x00,0x00,0x00,0x40}, /* PALFilter_2 */
  723. {0xF5,0xEE,0x1B,0x44},
  724. {0xF8,0xF4,0x18,0x38},
  725. {0xF1,0xF7,0x01,0x32},
  726. {0xF5,0xFB,0x1B,0x2A},
  727. {0xF9,0xFF,0x17,0x22},
  728. {0xFB,0x01,0x15,0x1E},
  729. {0x00,0x04,0x10,0x18},
  730. {0xFF,0xFF,0xFF,0xFF} }},
  731. { {{0x00,0x00,0x00,0x40}, /* PALFilter_3 */
  732. {0xF5,0xFB,0x1B,0x2A},
  733. {0xEE,0xFE,0x22,0x24},
  734. {0xF3,0x00,0x1D,0x20},
  735. {0xF9,0x03,0x17,0x1A},
  736. {0xFB,0x02,0x14,0x1E},
  737. {0xFB,0x04,0x15,0x18},
  738. {0x00,0x06,0x10,0x14},
  739. {0xFF,0xFF,0xFF,0xFF} }},
  740. { {{0x00,0x00,0x00,0x40}, /* PALFilter_4 - 320 */
  741. {0x00,0xE0,0x10,0x60},
  742. {0x00,0xEE,0x10,0x44},
  743. {0x00,0xF4,0x10,0x38},
  744. {0xF8,0xF4,0x18,0x38},
  745. {0xFC,0xFB,0x14,0x2A},
  746. {0x00,0x00,0x10,0x20},
  747. {0x00,0x04,0x10,0x18},
  748. {0xFF,0xFF,0xFF,0xFF} }},
  749. { {{0x00,0x00,0x00,0x40}, /* PALFilter_5 - 640 */
  750. {0xF5,0xEE,0x1B,0x44},
  751. {0xF8,0xF4,0x18,0x38},
  752. {0xF1,0xF7,0x1F,0x32},
  753. {0xF5,0xFB,0x1B,0x2A},
  754. {0xF9,0xFF,0x17,0x22},
  755. {0xFB,0x01,0x15,0x1E},
  756. {0x00,0x04,0x10,0x18},
  757. {0xFF,0xFF,0xFF,0xFF} }},
  758. { {{0x00,0x00,0x00,0x40}, /* PALFilter_6 - 720 */
  759. {0xF5,0xEE,0x1B,0x2A},
  760. {0xEE,0xFE,0x22,0x24},
  761. {0xF3,0x00,0x1D,0x20},
  762. {0xF9,0x03,0x17,0x1A},
  763. {0xFB,0x02,0x14,0x1E},
  764. {0xFB,0x04,0x15,0x18},
  765. {0x00,0x06,0x10,0x14},
  766. {0xFF,0xFF,0xFF,0xFF} }},
  767. { {{0x00,0x00,0x00,0x40}, /* PALFilter_7 - 800 */
  768. {0xF5,0xEE,0x1B,0x44},
  769. {0xF8,0xF4,0x18,0x38},
  770. {0xFC,0xFB,0x14,0x2A},
  771. {0xEB,0x05,0x25,0x16},
  772. {0xF1,0x05,0x1F,0x16},
  773. {0xFA,0x07,0x16,0x12},
  774. {0x00,0x07,0x10,0x12},
  775. {0xFF,0xFF,0xFF,0xFF} }}
  776. };
  777. /* ---------------------- Prototypes ------------------------- */
  778. /* Interface used by the world */
  779. #ifndef MODULE
  780. SISINITSTATIC int sisfb_setup(char *options);
  781. #endif
  782. /* Interface to the low level console driver */
  783. SISINITSTATIC int sisfb_init(void);
  784. /* fbdev routines */
  785. static int sisfb_get_fix(struct fb_fix_screeninfo *fix, int con,
  786. struct fb_info *info);
  787. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
  788. static int sisfb_get_fix(struct fb_fix_screeninfo *fix,
  789. int con,
  790. struct fb_info *info);
  791. static int sisfb_get_var(struct fb_var_screeninfo *var,
  792. int con,
  793. struct fb_info *info);
  794. static int sisfb_set_var(struct fb_var_screeninfo *var,
  795. int con,
  796. struct fb_info *info);
  797. static void sisfb_crtc_to_var(struct sis_video_info *ivideo,
  798. struct fb_var_screeninfo *var);
  799. static int sisfb_get_cmap(struct fb_cmap *cmap,
  800. int kspc,
  801. int con,
  802. struct fb_info *info);
  803. static int sisfb_set_cmap(struct fb_cmap *cmap,
  804. int kspc,
  805. int con,
  806. struct fb_info *info);
  807. static int sisfb_update_var(int con,
  808. struct fb_info *info);
  809. static int sisfb_switch(int con,
  810. struct fb_info *info);
  811. static void sisfb_blank(int blank,
  812. struct fb_info *info);
  813. static void sisfb_set_disp(int con,
  814. struct fb_var_screeninfo *var,
  815. struct fb_info *info);
  816. static int sis_getcolreg(unsigned regno, unsigned *red, unsigned *green,
  817. unsigned *blue, unsigned *transp,
  818. struct fb_info *fb_info);
  819. static void sisfb_do_install_cmap(int con,
  820. struct fb_info *info);
  821. static int sisfb_ioctl(struct inode *inode, struct file *file,
  822. unsigned int cmd, unsigned long arg, int con,
  823. struct fb_info *info);
  824. #endif
  825. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
  826. static int sisfb_ioctl(struct inode *inode, struct file *file,
  827. unsigned int cmd, unsigned long arg,
  828. struct fb_info *info);
  829. static int sisfb_set_par(struct fb_info *info);
  830. static int sisfb_blank(int blank,
  831. struct fb_info *info);
  832. extern void fbcon_sis_fillrect(struct fb_info *info,
  833. const struct fb_fillrect *rect);
  834. extern void fbcon_sis_copyarea(struct fb_info *info,
  835. const struct fb_copyarea *area);
  836. extern int fbcon_sis_sync(struct fb_info *info);
  837. #endif
  838. /* Internal 2D accelerator functions */
  839. extern int sisfb_initaccel(struct sis_video_info *ivideo);
  840. extern void sisfb_syncaccel(struct sis_video_info *ivideo);
  841. /* Internal general routines */
  842. static void sisfb_search_mode(char *name, BOOLEAN quiet);
  843. static int sisfb_validate_mode(struct sis_video_info *ivideo, int modeindex, u32 vbflags);
  844. static u8 sisfb_search_refresh_rate(struct sis_video_info *ivideo, unsigned int rate,
  845. int index);
  846. static int sisfb_setcolreg(unsigned regno, unsigned red, unsigned green,
  847. unsigned blue, unsigned transp,
  848. struct fb_info *fb_info);
  849. static int sisfb_do_set_var(struct fb_var_screeninfo *var, int isactive,
  850. struct fb_info *info);
  851. static void sisfb_pre_setmode(struct sis_video_info *ivideo);
  852. static void sisfb_post_setmode(struct sis_video_info *ivideo);
  853. static BOOLEAN sisfb_CheckVBRetrace(struct sis_video_info *ivideo);
  854. static BOOLEAN sisfbcheckvretracecrt2(struct sis_video_info *ivideo);
  855. static BOOLEAN sisfbcheckvretracecrt1(struct sis_video_info *ivideo);
  856. static BOOLEAN sisfb_bridgeisslave(struct sis_video_info *ivideo);
  857. static void sisfb_detect_VB_connect(struct sis_video_info *ivideo);
  858. static void sisfb_get_VB_type(struct sis_video_info *ivideo);
  859. static void sisfb_set_TVxposoffset(struct sis_video_info *ivideo, int val);
  860. static void sisfb_set_TVyposoffset(struct sis_video_info *ivideo, int val);
  861. /* SiS-specific exported functions */
  862. void sis_malloc(struct sis_memreq *req);
  863. void sis_free(u32 base);
  864. /* Internal heap routines */
  865. static int sisfb_heap_init(struct sis_video_info *ivideo);
  866. static SIS_OH *sisfb_poh_new_node(void);
  867. static SIS_OH *sisfb_poh_allocate(u32 size);
  868. static void sisfb_delete_node(SIS_OH *poh);
  869. static void sisfb_insert_node(SIS_OH *pohList, SIS_OH *poh);
  870. static SIS_OH *sisfb_poh_free(u32 base);
  871. static void sisfb_free_node(SIS_OH *poh);
  872. /* Sensing routines */
  873. static void SiS_Sense30x(struct sis_video_info *ivideo);
  874. static void SiS_SenseCh(struct sis_video_info *ivideo);
  875. /* Routines from init.c/init301.c */
  876. extern USHORT SiS_GetModeID_LCD(int VGAEngine, ULONG VBFlags, int HDisplay, int VDisplay, int Depth,
  877. BOOLEAN FSTN, USHORT CustomT, int LCDwith, int LCDheight);
  878. extern USHORT SiS_GetModeID_TV(int VGAEngine, ULONG VBFlags, int HDisplay, int VDisplay, int Depth);
  879. extern USHORT SiS_GetModeID_VGA2(int VGAEngine, ULONG VBFlags, int HDisplay, int VDisplay, int Depth);
  880. extern void SiSRegInit(SiS_Private *SiS_Pr, SISIOADDRESS BaseAddr);
  881. extern BOOLEAN SiSSetMode(SiS_Private *SiS_Pr, PSIS_HW_INFO HwDeviceInfo, USHORT ModeNo);
  882. extern void SiS_SetEnableDstn(SiS_Private *SiS_Pr, int enable);
  883. extern void SiS_SetEnableFstn(SiS_Private *SiS_Pr, int enable);
  884. extern BOOLEAN SiSDetermineROMLayout661(SiS_Private *SiS_Pr, PSIS_HW_INFO HwInfo);
  885. extern BOOLEAN sisfb_gettotalfrommode(SiS_Private *SiS_Pr, PSIS_HW_INFO HwDeviceExtension,
  886. unsigned char modeno, int *htotal, int *vtotal, unsigned char rateindex);
  887. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
  888. extern int sisfb_mode_rate_to_dclock(SiS_Private *SiS_Pr,
  889. PSIS_HW_INFO HwDeviceExtension,
  890. unsigned char modeno, unsigned char rateindex);
  891. extern int sisfb_mode_rate_to_ddata(SiS_Private *SiS_Pr, PSIS_HW_INFO HwDeviceExtension,
  892. unsigned char modeno, unsigned char rateindex,
  893. struct fb_var_screeninfo *var);
  894. #endif
  895. /* Chrontel TV, DDC and DPMS functions */
  896. extern USHORT SiS_GetCH700x(SiS_Private *SiS_Pr, USHORT tempbx);
  897. extern void SiS_SetCH700x(SiS_Private *SiS_Pr, USHORT tempbx);
  898. extern USHORT SiS_GetCH701x(SiS_Private *SiS_Pr, USHORT tempbx);
  899. extern void SiS_SetCH701x(SiS_Private *SiS_Pr, USHORT tempbx);
  900. extern void SiS_SetCH70xxANDOR(SiS_Private *SiS_Pr, USHORT tempax,USHORT tempbh);
  901. extern void SiS_DDC2Delay(SiS_Private *SiS_Pr, USHORT delaytime);
  902. extern void SiS_SetChrontelGPIO(SiS_Private *SiS_Pr, USHORT myvbinfo);
  903. extern USHORT SiS_HandleDDC(SiS_Private *SiS_Pr, ULONG VBFlags, int VGAEngine,
  904. USHORT adaptnum, USHORT DDCdatatype, unsigned char *buffer);
  905. extern USHORT SiS_ReadDDC1Bit(SiS_Private *SiS_Pr);
  906. extern void SiS_Chrontel701xBLOn(SiS_Private *SiS_Pr, PSIS_HW_INFO HwDeviceInfo);
  907. extern void SiS_Chrontel701xBLOff(SiS_Private *SiS_Pr);
  908. extern void SiS_SiS30xBLOn(SiS_Private *SiS_Pr, PSIS_HW_INFO HwDeviceInfo);
  909. extern void SiS_SiS30xBLOff(SiS_Private *SiS_Pr, PSIS_HW_INFO HwDeviceInfo);
  910. #endif