sisusb_init.h 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830
  1. /* $XFree86$ */
  2. /* $XdotOrg$ */
  3. /*
  4. * Data and prototypes for init.c
  5. *
  6. * Copyright (C) 2001-2005 by Thomas Winischhofer, Vienna, Austria
  7. *
  8. * If distributed as part of the Linux kernel, the following license terms
  9. * apply:
  10. *
  11. * * This program is free software; you can redistribute it and/or modify
  12. * * it under the terms of the GNU General Public License as published by
  13. * * the Free Software Foundation; either version 2 of the named License,
  14. * * or any later version.
  15. * *
  16. * * This program is distributed in the hope that it will be useful,
  17. * * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * * GNU General Public License for more details.
  20. * *
  21. * * You should have received a copy of the GNU General Public License
  22. * * along with this program; if not, write to the Free Software
  23. * * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
  24. *
  25. * Otherwise, the following license terms apply:
  26. *
  27. * * Redistribution and use in source and binary forms, with or without
  28. * * modification, are permitted provided that the following conditions
  29. * * are met:
  30. * * 1) Redistributions of source code must retain the above copyright
  31. * * notice, this list of conditions and the following disclaimer.
  32. * * 2) Redistributions in binary form must reproduce the above copyright
  33. * * notice, this list of conditions and the following disclaimer in the
  34. * * documentation and/or other materials provided with the distribution.
  35. * * 3) The name of the author may not be used to endorse or promote products
  36. * * derived from this software without specific prior written permission.
  37. * *
  38. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  39. * * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  40. * * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  41. * * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  42. * * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  43. * * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  44. * * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  45. * * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  46. * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  47. * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  48. *
  49. * Author: Thomas Winischhofer <thomas@winischhofer.net>
  50. *
  51. */
  52. #ifndef _SISUSB_INIT_H_
  53. #define _SISUSB_INIT_H_
  54. /* SiS_ModeType */
  55. #define ModeText 0x00
  56. #define ModeCGA 0x01
  57. #define ModeEGA 0x02
  58. #define ModeVGA 0x03
  59. #define Mode15Bpp 0x04
  60. #define Mode16Bpp 0x05
  61. #define Mode24Bpp 0x06
  62. #define Mode32Bpp 0x07
  63. #define ModeTypeMask 0x07
  64. #define IsTextMode 0x07
  65. #define DACInfoFlag 0x0018
  66. #define MemoryInfoFlag 0x01E0
  67. #define MemorySizeShift 5
  68. /* modeflag */
  69. #define Charx8Dot 0x0200
  70. #define LineCompareOff 0x0400
  71. #define CRT2Mode 0x0800
  72. #define HalfDCLK 0x1000
  73. #define NoSupportSimuTV 0x2000
  74. #define NoSupportLCDScale 0x4000 /* SiS bridge: No scaling possible (no matter what panel) */
  75. #define DoubleScanMode 0x8000
  76. /* Infoflag */
  77. #define SupportTV 0x0008
  78. #define SupportTV1024 0x0800
  79. #define SupportCHTV 0x0800
  80. #define Support64048060Hz 0x0800 /* Special for 640x480 LCD */
  81. #define SupportHiVision 0x0010
  82. #define SupportYPbPr750p 0x1000
  83. #define SupportLCD 0x0020
  84. #define SupportRAMDAC2 0x0040 /* All (<= 100Mhz) */
  85. #define SupportRAMDAC2_135 0x0100 /* All except DH (<= 135Mhz) */
  86. #define SupportRAMDAC2_162 0x0200 /* B, C (<= 162Mhz) */
  87. #define SupportRAMDAC2_202 0x0400 /* C (<= 202Mhz) */
  88. #define InterlaceMode 0x0080
  89. #define SyncPP 0x0000
  90. #define SyncPN 0x4000
  91. #define SyncNP 0x8000
  92. #define SyncNN 0xc000
  93. /* SetFlag */
  94. #define ProgrammingCRT2 0x0001
  95. #define LowModeTests 0x0002
  96. #define LCDVESATiming 0x0008
  97. #define EnableLVDSDDA 0x0010
  98. #define SetDispDevSwitchFlag 0x0020
  99. #define CheckWinDos 0x0040
  100. #define SetDOSMode 0x0080
  101. /* Index in ModeResInfo table */
  102. #define SIS_RI_320x200 0
  103. #define SIS_RI_320x240 1
  104. #define SIS_RI_320x400 2
  105. #define SIS_RI_400x300 3
  106. #define SIS_RI_512x384 4
  107. #define SIS_RI_640x400 5
  108. #define SIS_RI_640x480 6
  109. #define SIS_RI_800x600 7
  110. #define SIS_RI_1024x768 8
  111. #define SIS_RI_1280x1024 9
  112. #define SIS_RI_1600x1200 10
  113. #define SIS_RI_1920x1440 11
  114. #define SIS_RI_2048x1536 12
  115. #define SIS_RI_720x480 13
  116. #define SIS_RI_720x576 14
  117. #define SIS_RI_1280x960 15
  118. #define SIS_RI_800x480 16
  119. #define SIS_RI_1024x576 17
  120. #define SIS_RI_1280x720 18
  121. #define SIS_RI_856x480 19
  122. #define SIS_RI_1280x768 20
  123. #define SIS_RI_1400x1050 21
  124. #define SIS_RI_1152x864 22 /* Up to here SiS conforming */
  125. #define SIS_RI_848x480 23
  126. #define SIS_RI_1360x768 24
  127. #define SIS_RI_1024x600 25
  128. #define SIS_RI_1152x768 26
  129. #define SIS_RI_768x576 27
  130. #define SIS_RI_1360x1024 28
  131. #define SIS_RI_1680x1050 29
  132. #define SIS_RI_1280x800 30
  133. #define SIS_RI_1920x1080 31
  134. #define SIS_RI_960x540 32
  135. #define SIS_RI_960x600 33
  136. #define SIS_VIDEO_CAPTURE 0x00 - 0x30
  137. #define SIS_VIDEO_PLAYBACK 0x02 - 0x30
  138. #define SIS_CRT2_PORT_04 0x04 - 0x30
  139. /* Mode numbers */
  140. static const unsigned short ModeIndex_320x200[] = {0x59, 0x41, 0x00, 0x4f};
  141. static const unsigned short ModeIndex_320x240[] = {0x50, 0x56, 0x00, 0x53};
  142. static const unsigned short ModeIndex_400x300[] = {0x51, 0x57, 0x00, 0x54};
  143. static const unsigned short ModeIndex_512x384[] = {0x52, 0x58, 0x00, 0x5c};
  144. static const unsigned short ModeIndex_640x400[] = {0x2f, 0x5d, 0x00, 0x5e};
  145. static const unsigned short ModeIndex_640x480[] = {0x2e, 0x44, 0x00, 0x62};
  146. static const unsigned short ModeIndex_720x480[] = {0x31, 0x33, 0x00, 0x35};
  147. static const unsigned short ModeIndex_720x576[] = {0x32, 0x34, 0x00, 0x36};
  148. static const unsigned short ModeIndex_768x576[] = {0x5f, 0x60, 0x00, 0x61};
  149. static const unsigned short ModeIndex_800x480[] = {0x70, 0x7a, 0x00, 0x76};
  150. static const unsigned short ModeIndex_800x600[] = {0x30, 0x47, 0x00, 0x63};
  151. static const unsigned short ModeIndex_848x480[] = {0x39, 0x3b, 0x00, 0x3e};
  152. static const unsigned short ModeIndex_856x480[] = {0x3f, 0x42, 0x00, 0x45};
  153. static const unsigned short ModeIndex_960x540[] = {0x1d, 0x1e, 0x00, 0x1f};
  154. static const unsigned short ModeIndex_960x600[] = {0x20, 0x21, 0x00, 0x22};
  155. static const unsigned short ModeIndex_1024x768[] = {0x38, 0x4a, 0x00, 0x64};
  156. static const unsigned short ModeIndex_1024x576[] = {0x71, 0x74, 0x00, 0x77};
  157. static const unsigned short ModeIndex_1152x864[] = {0x29, 0x2a, 0x00, 0x2b};
  158. static const unsigned short ModeIndex_1280x720[] = {0x79, 0x75, 0x00, 0x78};
  159. static const unsigned short ModeIndex_1280x768[] = {0x23, 0x24, 0x00, 0x25};
  160. static const unsigned short ModeIndex_1280x1024[] = {0x3a, 0x4d, 0x00, 0x65};
  161. static const unsigned char SiS_MDA_DAC[] =
  162. {
  163. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  164. 0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  165. 0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  166. 0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
  167. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  168. 0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  169. 0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  170. 0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F
  171. };
  172. static const unsigned char SiS_CGA_DAC[] =
  173. {
  174. 0x00,0x10,0x04,0x14,0x01,0x11,0x09,0x15,
  175. 0x00,0x10,0x04,0x14,0x01,0x11,0x09,0x15,
  176. 0x2A,0x3A,0x2E,0x3E,0x2B,0x3B,0x2F,0x3F,
  177. 0x2A,0x3A,0x2E,0x3E,0x2B,0x3B,0x2F,0x3F,
  178. 0x00,0x10,0x04,0x14,0x01,0x11,0x09,0x15,
  179. 0x00,0x10,0x04,0x14,0x01,0x11,0x09,0x15,
  180. 0x2A,0x3A,0x2E,0x3E,0x2B,0x3B,0x2F,0x3F,
  181. 0x2A,0x3A,0x2E,0x3E,0x2B,0x3B,0x2F,0x3F
  182. };
  183. static const unsigned char SiS_EGA_DAC[] =
  184. {
  185. 0x00,0x10,0x04,0x14,0x01,0x11,0x05,0x15,
  186. 0x20,0x30,0x24,0x34,0x21,0x31,0x25,0x35,
  187. 0x08,0x18,0x0C,0x1C,0x09,0x19,0x0D,0x1D,
  188. 0x28,0x38,0x2C,0x3C,0x29,0x39,0x2D,0x3D,
  189. 0x02,0x12,0x06,0x16,0x03,0x13,0x07,0x17,
  190. 0x22,0x32,0x26,0x36,0x23,0x33,0x27,0x37,
  191. 0x0A,0x1A,0x0E,0x1E,0x0B,0x1B,0x0F,0x1F,
  192. 0x2A,0x3A,0x2E,0x3E,0x2B,0x3B,0x2F,0x3F
  193. };
  194. static const unsigned char SiS_VGA_DAC[] =
  195. {
  196. 0x00,0x10,0x04,0x14,0x01,0x11,0x09,0x15,
  197. 0x2A,0x3A,0x2E,0x3E,0x2B,0x3B,0x2F,0x3F,
  198. 0x00,0x05,0x08,0x0B,0x0E,0x11,0x14,0x18,
  199. 0x1C,0x20,0x24,0x28,0x2D,0x32,0x38,0x3F,
  200. 0x00,0x10,0x1F,0x2F,0x3F,0x1F,0x27,0x2F,
  201. 0x37,0x3F,0x2D,0x31,0x36,0x3A,0x3F,0x00,
  202. 0x07,0x0E,0x15,0x1C,0x0E,0x11,0x15,0x18,
  203. 0x1C,0x14,0x16,0x18,0x1A,0x1C,0x00,0x04,
  204. 0x08,0x0C,0x10,0x08,0x0A,0x0C,0x0E,0x10,
  205. 0x0B,0x0C,0x0D,0x0F,0x10
  206. };
  207. static const struct SiS_St SiSUSB_SModeIDTable[] =
  208. {
  209. {0x03,0x0010,0x18,0x02,0x02,0x00,0x01,0x03,0x40},
  210. {0xff,0x0000,0x00,0x00,0x00,0x00,0x00,0x00,0x00}
  211. };
  212. static const struct SiS_StResInfo_S SiSUSB_StResInfo[] =
  213. {
  214. { 640,400},
  215. { 640,350},
  216. { 720,400},
  217. { 720,350},
  218. { 640,480}
  219. };
  220. static const struct SiS_ModeResInfo SiSUSB_ModeResInfo[] =
  221. {
  222. { 320, 200, 8, 8}, /* 0x00 */
  223. { 320, 240, 8, 8}, /* 0x01 */
  224. { 320, 400, 8, 8}, /* 0x02 */
  225. { 400, 300, 8, 8}, /* 0x03 */
  226. { 512, 384, 8, 8}, /* 0x04 */
  227. { 640, 400, 8,16}, /* 0x05 */
  228. { 640, 480, 8,16}, /* 0x06 */
  229. { 800, 600, 8,16}, /* 0x07 */
  230. { 1024, 768, 8,16}, /* 0x08 */
  231. { 1280,1024, 8,16}, /* 0x09 */
  232. { 1600,1200, 8,16}, /* 0x0a */
  233. { 1920,1440, 8,16}, /* 0x0b */
  234. { 2048,1536, 8,16}, /* 0x0c */
  235. { 720, 480, 8,16}, /* 0x0d */
  236. { 720, 576, 8,16}, /* 0x0e */
  237. { 1280, 960, 8,16}, /* 0x0f */
  238. { 800, 480, 8,16}, /* 0x10 */
  239. { 1024, 576, 8,16}, /* 0x11 */
  240. { 1280, 720, 8,16}, /* 0x12 */
  241. { 856, 480, 8,16}, /* 0x13 */
  242. { 1280, 768, 8,16}, /* 0x14 */
  243. { 1400,1050, 8,16}, /* 0x15 */
  244. { 1152, 864, 8,16}, /* 0x16 */
  245. { 848, 480, 8,16}, /* 0x17 */
  246. { 1360, 768, 8,16}, /* 0x18 */
  247. { 1024, 600, 8,16}, /* 0x19 */
  248. { 1152, 768, 8,16}, /* 0x1a */
  249. { 768, 576, 8,16}, /* 0x1b */
  250. { 1360,1024, 8,16}, /* 0x1c */
  251. { 1680,1050, 8,16}, /* 0x1d */
  252. { 1280, 800, 8,16}, /* 0x1e */
  253. { 1920,1080, 8,16}, /* 0x1f */
  254. { 960, 540, 8,16}, /* 0x20 */
  255. { 960, 600, 8,16} /* 0x21 */
  256. };
  257. static const struct SiS_StandTable SiSUSB_StandTable[] =
  258. {
  259. /* MD_3_400 - mode 0x03 - 400 */
  260. {
  261. 0x50,0x18,0x10,0x1000,
  262. { 0x00,0x03,0x00,0x02 },
  263. 0x67,
  264. { 0x5f,0x4f,0x50,0x82,0x55,0x81,0xbf,0x1f,
  265. 0x00,0x4f,0x0d,0x0e,0x00,0x00,0x00,0x00,
  266. 0x9c,0x8e,0x8f,0x28,0x1f,0x96,0xb9,0xa3,
  267. 0xff },
  268. { 0x00,0x01,0x02,0x03,0x04,0x05,0x14,0x07,
  269. 0x38,0x39,0x3a,0x3b,0x3c,0x3d,0x3e,0x3f,
  270. 0x0c,0x00,0x0f,0x08 },
  271. { 0x00,0x00,0x00,0x00,0x00,0x10,0x0e,0x00, 0xff }
  272. },
  273. /* Generic for VGA and higher */
  274. {
  275. 0x00,0x00,0x00,0x0000,
  276. { 0x01,0x0f,0x00,0x0e },
  277. 0x23,
  278. { 0x5f,0x4f,0x50,0x82,0x54,0x80,0x0b,0x3e,
  279. 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,
  280. 0xea,0x8c,0xdf,0x28,0x40,0xe7,0x04,0xa3,
  281. 0xff },
  282. { 0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,
  283. 0x08,0x09,0x0a,0x0b,0x0c,0x0d,0x0e,0x0f,
  284. 0x01,0x00,0x00,0x00 },
  285. { 0x00,0x00,0x00,0x00,0x00,0x40,0x05,0x0f, 0xff }
  286. }
  287. };
  288. static const struct SiS_Ext SiSUSB_EModeIDTable[] =
  289. {
  290. {0x2e,0x0a1b,0x0101,SIS_RI_640x480, 0x00,0x00,0x05,0x05,0x08, 2}, /* 640x480x8 */
  291. {0x2f,0x0a1b,0x0100,SIS_RI_640x400, 0x00,0x00,0x05,0x05,0x10, 0}, /* 640x400x8 */
  292. {0x30,0x2a1b,0x0103,SIS_RI_800x600, 0x00,0x00,0x07,0x06,0x00, 3}, /* 800x600x8 */
  293. {0x31,0x4a1b,0x0000,SIS_RI_720x480, 0x00,0x00,0x06,0x06,0x11,-1}, /* 720x480x8 */
  294. {0x32,0x4a1b,0x0000,SIS_RI_720x576, 0x00,0x00,0x06,0x06,0x12,-1}, /* 720x576x8 */
  295. {0x33,0x4a1d,0x0000,SIS_RI_720x480, 0x00,0x00,0x06,0x06,0x11,-1}, /* 720x480x16 */
  296. {0x34,0x6a1d,0x0000,SIS_RI_720x576, 0x00,0x00,0x06,0x06,0x12,-1}, /* 720x576x16 */
  297. {0x35,0x4a1f,0x0000,SIS_RI_720x480, 0x00,0x00,0x06,0x06,0x11,-1}, /* 720x480x32 */
  298. {0x36,0x6a1f,0x0000,SIS_RI_720x576, 0x00,0x00,0x06,0x06,0x12,-1}, /* 720x576x32 */
  299. {0x38,0x0a1b,0x0105,SIS_RI_1024x768, 0x00,0x00,0x08,0x07,0x13, 4}, /* 1024x768x8 */
  300. {0x3a,0x0e3b,0x0107,SIS_RI_1280x1024,0x00,0x00,0x00,0x00,0x2f, 8}, /* 1280x1024x8 */
  301. {0x41,0x9a1d,0x010e,SIS_RI_320x200, 0x00,0x00,0x04,0x04,0x1a, 0}, /* 320x200x16 */
  302. {0x44,0x0a1d,0x0111,SIS_RI_640x480, 0x00,0x00,0x05,0x05,0x08, 2}, /* 640x480x16 */
  303. {0x47,0x2a1d,0x0114,SIS_RI_800x600, 0x00,0x00,0x07,0x06,0x00, 3}, /* 800x600x16 */
  304. {0x4a,0x0a3d,0x0117,SIS_RI_1024x768, 0x00,0x00,0x08,0x07,0x13, 4}, /* 1024x768x16 */
  305. {0x4d,0x0e7d,0x011a,SIS_RI_1280x1024,0x00,0x00,0x00,0x00,0x2f, 8}, /* 1280x1024x16 */
  306. {0x50,0x9a1b,0x0132,SIS_RI_320x240, 0x00,0x00,0x04,0x04,0x1b, 2}, /* 320x240x8 */
  307. {0x51,0xba1b,0x0133,SIS_RI_400x300, 0x00,0x00,0x07,0x07,0x1c, 3}, /* 400x300x8 */
  308. {0x52,0xba1b,0x0134,SIS_RI_512x384, 0x00,0x00,0x00,0x00,0x1d, 4}, /* 512x384x8 */
  309. {0x56,0x9a1d,0x0135,SIS_RI_320x240, 0x00,0x00,0x04,0x04,0x1b, 2}, /* 320x240x16 */
  310. {0x57,0xba1d,0x0136,SIS_RI_400x300, 0x00,0x00,0x07,0x07,0x1c, 3}, /* 400x300x16 */
  311. {0x58,0xba1d,0x0137,SIS_RI_512x384, 0x00,0x00,0x00,0x00,0x1d, 4}, /* 512x384x16 */
  312. {0x59,0x9a1b,0x0138,SIS_RI_320x200, 0x00,0x00,0x04,0x04,0x1a, 0}, /* 320x200x8 */
  313. {0x5c,0xba1f,0x0000,SIS_RI_512x384, 0x00,0x00,0x00,0x00,0x1d, 4}, /* 512x384x32 */
  314. {0x5d,0x0a1d,0x0139,SIS_RI_640x400, 0x00,0x00,0x05,0x07,0x10, 0}, /* 640x400x16 */
  315. {0x5e,0x0a1f,0x0000,SIS_RI_640x400, 0x00,0x00,0x05,0x07,0x10, 0}, /* 640x400x32 */
  316. {0x62,0x0a3f,0x013a,SIS_RI_640x480, 0x00,0x00,0x05,0x05,0x08, 2}, /* 640x480x32 */
  317. {0x63,0x2a3f,0x013b,SIS_RI_800x600, 0x00,0x00,0x07,0x06,0x00, 3}, /* 800x600x32 */
  318. {0x64,0x0a7f,0x013c,SIS_RI_1024x768, 0x00,0x00,0x08,0x07,0x13, 4}, /* 1024x768x32 */
  319. {0x65,0x0eff,0x013d,SIS_RI_1280x1024,0x00,0x00,0x00,0x00,0x2f, 8}, /* 1280x1024x32 */
  320. {0x70,0x6a1b,0x0000,SIS_RI_800x480, 0x00,0x00,0x07,0x07,0x1e,-1}, /* 800x480x8 */
  321. {0x71,0x4a1b,0x0000,SIS_RI_1024x576, 0x00,0x00,0x00,0x00,0x21,-1}, /* 1024x576x8 */
  322. {0x74,0x4a1d,0x0000,SIS_RI_1024x576, 0x00,0x00,0x00,0x00,0x21,-1}, /* 1024x576x16 */
  323. {0x75,0x0a3d,0x0000,SIS_RI_1280x720, 0x00,0x00,0x00,0x00,0x24, 5}, /* 1280x720x16 */
  324. {0x76,0x6a1f,0x0000,SIS_RI_800x480, 0x00,0x00,0x07,0x07,0x1e,-1}, /* 800x480x32 */
  325. {0x77,0x4a1f,0x0000,SIS_RI_1024x576, 0x00,0x00,0x00,0x00,0x21,-1}, /* 1024x576x32 */
  326. {0x78,0x0a3f,0x0000,SIS_RI_1280x720, 0x00,0x00,0x00,0x00,0x24, 5}, /* 1280x720x32 */
  327. {0x79,0x0a3b,0x0000,SIS_RI_1280x720, 0x00,0x00,0x00,0x00,0x24, 5}, /* 1280x720x8 */
  328. {0x7a,0x6a1d,0x0000,SIS_RI_800x480, 0x00,0x00,0x07,0x07,0x1e,-1}, /* 800x480x16 */
  329. {0x23,0x0e3b,0x0000,SIS_RI_1280x768, 0x00,0x00,0x00,0x00,0x27, 6}, /* 1280x768x8 */
  330. {0x24,0x0e7d,0x0000,SIS_RI_1280x768, 0x00,0x00,0x00,0x00,0x27, 6}, /* 1280x768x16 */
  331. {0x25,0x0eff,0x0000,SIS_RI_1280x768, 0x00,0x00,0x00,0x00,0x27, 6}, /* 1280x768x32 */
  332. {0x39,0x6a1b,0x0000,SIS_RI_848x480, 0x00,0x00,0x00,0x00,0x28,-1}, /* 848x480 */
  333. {0x3b,0x6a3d,0x0000,SIS_RI_848x480, 0x00,0x00,0x00,0x00,0x28,-1},
  334. {0x3e,0x6a7f,0x0000,SIS_RI_848x480, 0x00,0x00,0x00,0x00,0x28,-1},
  335. {0x3f,0x6a1b,0x0000,SIS_RI_856x480, 0x00,0x00,0x00,0x00,0x2a,-1}, /* 856x480 */
  336. {0x42,0x6a3d,0x0000,SIS_RI_856x480, 0x00,0x00,0x00,0x00,0x2a,-1},
  337. {0x45,0x6a7f,0x0000,SIS_RI_856x480, 0x00,0x00,0x00,0x00,0x2a,-1},
  338. {0x4f,0x9a1f,0x0000,SIS_RI_320x200, 0x00,0x00,0x04,0x04,0x1a, 0}, /* 320x200x32 */
  339. {0x53,0x9a1f,0x0000,SIS_RI_320x240, 0x00,0x00,0x04,0x04,0x1b, 2}, /* 320x240x32 */
  340. {0x54,0xba1f,0x0000,SIS_RI_400x300, 0x00,0x00,0x07,0x07,0x1c, 3}, /* 400x300x32 */
  341. {0x5f,0x6a1b,0x0000,SIS_RI_768x576, 0x00,0x00,0x06,0x06,0x2c,-1}, /* 768x576 */
  342. {0x60,0x6a1d,0x0000,SIS_RI_768x576, 0x00,0x00,0x06,0x06,0x2c,-1},
  343. {0x61,0x6a3f,0x0000,SIS_RI_768x576, 0x00,0x00,0x06,0x06,0x2c,-1},
  344. {0x1d,0x6a1b,0x0000,SIS_RI_960x540, 0x00,0x00,0x00,0x00,0x2d,-1}, /* 960x540 */
  345. {0x1e,0x6a3d,0x0000,SIS_RI_960x540, 0x00,0x00,0x00,0x00,0x2d,-1},
  346. {0x1f,0x6a7f,0x0000,SIS_RI_960x540, 0x00,0x00,0x00,0x00,0x2d,-1},
  347. {0x20,0x6a1b,0x0000,SIS_RI_960x600, 0x00,0x00,0x00,0x00,0x2e,-1}, /* 960x600 */
  348. {0x21,0x6a3d,0x0000,SIS_RI_960x600, 0x00,0x00,0x00,0x00,0x2e,-1},
  349. {0x22,0x6a7f,0x0000,SIS_RI_960x600, 0x00,0x00,0x00,0x00,0x2e,-1},
  350. {0x29,0x4e1b,0x0000,SIS_RI_1152x864, 0x00,0x00,0x00,0x00,0x33,-1}, /* 1152x864 */
  351. {0x2a,0x4e3d,0x0000,SIS_RI_1152x864, 0x00,0x00,0x00,0x00,0x33,-1},
  352. {0x2b,0x4e7f,0x0000,SIS_RI_1152x864, 0x00,0x00,0x00,0x00,0x33,-1},
  353. {0xff,0x0000,0x0000,0, 0x00,0x00,0x00,0x00,0x00,-1}
  354. };
  355. static const struct SiS_Ext2 SiSUSB_RefIndex[] =
  356. {
  357. {0x085f,0x0d,0x03,0x05,0x05,0x30, 800, 600, 0x40, 0x00, 0x00}, /* 0x0 */
  358. {0x0067,0x0e,0x04,0x05,0x05,0x30, 800, 600, 0x40, 0x00, 0x00}, /* 0x1 */
  359. {0x0067,0x0f,0x08,0x48,0x05,0x30, 800, 600, 0x40, 0x00, 0x00}, /* 0x2 */
  360. {0x0067,0x10,0x07,0x8b,0x05,0x30, 800, 600, 0x40, 0x00, 0x00}, /* 0x3 */
  361. {0x0047,0x11,0x0a,0x00,0x05,0x30, 800, 600, 0x40, 0x00, 0x00}, /* 0x4 */
  362. {0x0047,0x12,0x0d,0x00,0x05,0x30, 800, 600, 0x40, 0x00, 0x00}, /* 0x5 */
  363. {0x0047,0x13,0x13,0x00,0x05,0x30, 800, 600, 0x20, 0x00, 0x00}, /* 0x6 */
  364. {0x0107,0x14,0x1c,0x00,0x05,0x30, 800, 600, 0x20, 0x00, 0x00}, /* 0x7 */
  365. {0xc85f,0x05,0x00,0x04,0x04,0x2e, 640, 480, 0x40, 0x00, 0x00}, /* 0x8 */
  366. {0xc067,0x06,0x02,0x04,0x04,0x2e, 640, 480, 0x40, 0x00, 0x00}, /* 0x9 */
  367. {0xc067,0x07,0x02,0x47,0x04,0x2e, 640, 480, 0x40, 0x00, 0x00}, /* 0xa */
  368. {0xc067,0x08,0x03,0x8a,0x04,0x2e, 640, 480, 0x40, 0x00, 0x00}, /* 0xb */
  369. {0xc047,0x09,0x05,0x00,0x04,0x2e, 640, 480, 0x40, 0x00, 0x00}, /* 0xc */
  370. {0xc047,0x0a,0x09,0x00,0x04,0x2e, 640, 480, 0x40, 0x00, 0x00}, /* 0xd */
  371. {0xc047,0x0b,0x0e,0x00,0x04,0x2e, 640, 480, 0x40, 0x00, 0x00}, /* 0xe */
  372. {0xc047,0x0c,0x15,0x00,0x04,0x2e, 640, 480, 0x40, 0x00, 0x00}, /* 0xf */
  373. {0x487f,0x04,0x00,0x00,0x00,0x2f, 640, 400, 0x30, 0x55, 0x6e}, /* 0x10 */
  374. {0xc06f,0x3c,0x01,0x06,0x13,0x31, 720, 480, 0x30, 0x00, 0x00}, /* 0x11 */
  375. {0x006f,0x3d,0x6f,0x06,0x14,0x32, 720, 576, 0x30, 0x00, 0x00}, /* 0x12 (6f was 03) */
  376. {0x0087,0x15,0x06,0x00,0x06,0x38,1024, 768, 0x30, 0x00, 0x00}, /* 0x13 */
  377. {0xc877,0x16,0x0b,0x06,0x06,0x38,1024, 768, 0x20, 0x00, 0x00}, /* 0x14 */
  378. {0xc067,0x17,0x0f,0x49,0x06,0x38,1024, 768, 0x20, 0x00, 0x00}, /* 0x15 */
  379. {0x0067,0x18,0x11,0x00,0x06,0x38,1024, 768, 0x20, 0x00, 0x00}, /* 0x16 */
  380. {0x0047,0x19,0x16,0x8c,0x06,0x38,1024, 768, 0x20, 0x00, 0x00}, /* 0x17 */
  381. {0x0107,0x1a,0x1b,0x00,0x06,0x38,1024, 768, 0x10, 0x00, 0x00}, /* 0x18 */
  382. {0x0107,0x1b,0x1f,0x00,0x06,0x38,1024, 768, 0x10, 0x00, 0x00}, /* 0x19 */
  383. {0x407f,0x00,0x00,0x00,0x00,0x41, 320, 200, 0x30, 0x56, 0x4e}, /* 0x1a */
  384. {0xc07f,0x01,0x00,0x04,0x04,0x50, 320, 240, 0x30, 0x00, 0x00}, /* 0x1b */
  385. {0x007f,0x02,0x04,0x05,0x05,0x51, 400, 300, 0x30, 0x00, 0x00}, /* 0x1c */
  386. {0xc077,0x03,0x0b,0x06,0x06,0x52, 512, 384, 0x30, 0x00, 0x00}, /* 0x1d */
  387. {0x0077,0x32,0x40,0x08,0x18,0x70, 800, 480, 0x30, 0x00, 0x00}, /* 0x1e */
  388. {0x0047,0x33,0x07,0x08,0x18,0x70, 800, 480, 0x30, 0x00, 0x00}, /* 0x1f */
  389. {0x0047,0x34,0x0a,0x08,0x18,0x70, 800, 480, 0x30, 0x00, 0x00}, /* 0x20 */
  390. {0x0077,0x35,0x0b,0x09,0x19,0x71,1024, 576, 0x30, 0x00, 0x00}, /* 0x21 */
  391. {0x0047,0x36,0x11,0x09,0x19,0x71,1024, 576, 0x30, 0x00, 0x00}, /* 0x22 */
  392. {0x0047,0x37,0x16,0x09,0x19,0x71,1024, 576, 0x30, 0x00, 0x00}, /* 0x23 */
  393. {0x1137,0x38,0x19,0x0a,0x0c,0x75,1280, 720, 0x30, 0x00, 0x00}, /* 0x24 */
  394. {0x1107,0x39,0x1e,0x0a,0x0c,0x75,1280, 720, 0x30, 0x00, 0x00}, /* 0x25 */
  395. {0x1307,0x3a,0x20,0x0a,0x0c,0x75,1280, 720, 0x30, 0x00, 0x00}, /* 0x26 */
  396. {0x0077,0x42,0x5b,0x08,0x11,0x23,1280, 768, 0x30, 0x00, 0x00}, /* 0x27 */
  397. {0x0087,0x45,0x57,0x00,0x16,0x39, 848, 480, 0x30, 0x00, 0x00}, /* 0x28 38Hzi */
  398. {0xc067,0x46,0x55,0x0b,0x16,0x39, 848, 480, 0x30, 0x00, 0x00}, /* 0x29 848x480-60Hz */
  399. {0x0087,0x47,0x57,0x00,0x17,0x3f, 856, 480, 0x30, 0x00, 0x00}, /* 0x2a 856x480-38Hzi */
  400. {0xc067,0x48,0x57,0x00,0x17,0x3f, 856, 480, 0x30, 0x00, 0x00}, /* 0x2b 856x480-60Hz */
  401. {0x006f,0x4d,0x71,0x06,0x15,0x5f, 768, 576, 0x30, 0x00, 0x00}, /* 0x2c 768x576-56Hz */
  402. {0x0067,0x52,0x6a,0x00,0x1c,0x1d, 960, 540, 0x30, 0x00, 0x00}, /* 0x2d 960x540 60Hz */
  403. {0x0077,0x53,0x6b,0x0b,0x1d,0x20, 960, 600, 0x30, 0x00, 0x00}, /* 0x2e 960x600 60Hz */
  404. {0x0087,0x1c,0x11,0x00,0x07,0x3a,1280,1024, 0x30, 0x00, 0x00}, /* 0x2f */
  405. {0x0137,0x1d,0x19,0x07,0x07,0x3a,1280,1024, 0x00, 0x00, 0x00}, /* 0x30 */
  406. {0x0107,0x1e,0x1e,0x00,0x07,0x3a,1280,1024, 0x00, 0x00, 0x00}, /* 0x31 */
  407. {0x0207,0x1f,0x20,0x00,0x07,0x3a,1280,1024, 0x00, 0x00, 0x00}, /* 0x32 */
  408. {0x0127,0x54,0x6d,0x00,0x1a,0x29,1152, 864, 0x30, 0x00, 0x00}, /* 0x33 1152x864-60Hz */
  409. {0x0127,0x44,0x19,0x00,0x1a,0x29,1152, 864, 0x30, 0x00, 0x00}, /* 0x34 1152x864-75Hz */
  410. {0x0127,0x4a,0x1e,0x00,0x1a,0x29,1152, 864, 0x30, 0x00, 0x00}, /* 0x35 1152x864-85Hz */
  411. {0xffff,0x00,0x00,0x00,0x00,0x00, 0, 0, 0, 0x00, 0x00}
  412. };
  413. static const struct SiS_CRT1Table SiSUSB_CRT1Table[] =
  414. {
  415. {{0x2d,0x27,0x28,0x90,0x2c,0x80,0xbf,0x1f,
  416. 0x9c,0x8e,0x8f,0x96,0xb9,0x30,0x00,0x00,
  417. 0x00}}, /* 0x0 */
  418. {{0x2d,0x27,0x28,0x90,0x2c,0x80,0x0b,0x3e,
  419. 0xe9,0x8b,0xdf,0xe7,0x04,0x00,0x00,0x00,
  420. 0x00}}, /* 0x1 */
  421. {{0x3d,0x31,0x31,0x81,0x37,0x1f,0x72,0xf0,
  422. 0x58,0x8c,0x57,0x57,0x73,0x20,0x00,0x05,
  423. 0x01}}, /* 0x2 */
  424. {{0x4f,0x3f,0x3f,0x93,0x45,0x0d,0x24,0xf5,
  425. 0x02,0x88,0xff,0xff,0x25,0x10,0x00,0x01,
  426. 0x01}}, /* 0x3 */
  427. {{0x5f,0x4f,0x50,0x82,0x55,0x81,0xbf,0x1f,
  428. 0x9c,0x8e,0x8f,0x96,0xb9,0x30,0x00,0x05,
  429. 0x00}}, /* 0x4 */
  430. {{0x5f,0x4f,0x4f,0x83,0x55,0x81,0x0b,0x3e,
  431. 0xe9,0x8b,0xdf,0xe8,0x0c,0x00,0x00,0x05,
  432. 0x00}}, /* 0x5 */
  433. {{0x63,0x4f,0x4f,0x87,0x56,0x9b,0x06,0x3e,
  434. 0xe8,0x8a,0xdf,0xe7,0x07,0x00,0x00,0x01,
  435. 0x00}}, /* 0x6 */
  436. {{0x64,0x4f,0x4f,0x88,0x55,0x9d,0xf2,0x1f,
  437. 0xe0,0x83,0xdf,0xdf,0xf3,0x10,0x00,0x01,
  438. 0x00}}, /* 0x7 */
  439. {{0x63,0x4f,0x4f,0x87,0x5a,0x81,0xfb,0x1f,
  440. 0xe0,0x83,0xdf,0xdf,0xfc,0x10,0x00,0x05,
  441. 0x00}}, /* 0x8 */
  442. {{0x65,0x4f,0x4f,0x89,0x58,0x80,0xfb,0x1f,
  443. 0xe0,0x83,0xdf,0xdf,0xfc,0x10,0x00,0x05,
  444. 0x61}}, /* 0x9 */
  445. {{0x65,0x4f,0x4f,0x89,0x58,0x80,0x01,0x3e,
  446. 0xe0,0x83,0xdf,0xdf,0x02,0x00,0x00,0x05,
  447. 0x61}}, /* 0xa */
  448. {{0x67,0x4f,0x4f,0x8b,0x58,0x81,0x0d,0x3e,
  449. 0xe0,0x83,0xdf,0xdf,0x0e,0x00,0x00,0x05,
  450. 0x61}}, /* 0xb */
  451. {{0x65,0x4f,0x4f,0x89,0x57,0x9f,0xfb,0x1f,
  452. 0xe6,0x8a,0xdf,0xdf,0xfc,0x10,0x00,0x01,
  453. 0x00}}, /* 0xc */
  454. {{0x7b,0x63,0x63,0x9f,0x6a,0x93,0x6f,0xf0,
  455. 0x58,0x8a,0x57,0x57,0x70,0x20,0x00,0x05,
  456. 0x01}}, /* 0xd */
  457. {{0x7f,0x63,0x63,0x83,0x6c,0x1c,0x72,0xf0,
  458. 0x58,0x8c,0x57,0x57,0x73,0x20,0x00,0x06,
  459. 0x01}}, /* 0xe */
  460. {{0x7d,0x63,0x63,0x81,0x6e,0x1d,0x98,0xf0,
  461. 0x7c,0x82,0x57,0x57,0x99,0x00,0x00,0x06,
  462. 0x01}}, /* 0xf */
  463. {{0x7f,0x63,0x63,0x83,0x69,0x13,0x6f,0xf0,
  464. 0x58,0x8b,0x57,0x57,0x70,0x20,0x00,0x06,
  465. 0x01}}, /* 0x10 */
  466. {{0x7e,0x63,0x63,0x82,0x6b,0x13,0x75,0xf0,
  467. 0x58,0x8b,0x57,0x57,0x76,0x20,0x00,0x06,
  468. 0x01}}, /* 0x11 */
  469. {{0x81,0x63,0x63,0x85,0x6d,0x18,0x7a,0xf0,
  470. 0x58,0x8b,0x57,0x57,0x7b,0x20,0x00,0x06,
  471. 0x61}}, /* 0x12 */
  472. {{0x83,0x63,0x63,0x87,0x6e,0x19,0x81,0xf0,
  473. 0x58,0x8b,0x57,0x57,0x82,0x20,0x00,0x06,
  474. 0x61}}, /* 0x13 */
  475. {{0x85,0x63,0x63,0x89,0x6f,0x1a,0x91,0xf0,
  476. 0x58,0x8b,0x57,0x57,0x92,0x20,0x00,0x06,
  477. 0x61}}, /* 0x14 */
  478. {{0x99,0x7f,0x7f,0x9d,0x84,0x1a,0x96,0x1f,
  479. 0x7f,0x83,0x7f,0x7f,0x97,0x10,0x00,0x02,
  480. 0x00}}, /* 0x15 */
  481. {{0xa3,0x7f,0x7f,0x87,0x86,0x97,0x24,0xf5,
  482. 0x02,0x88,0xff,0xff,0x25,0x10,0x00,0x02,
  483. 0x01}}, /* 0x16 */
  484. {{0xa1,0x7f,0x7f,0x85,0x86,0x97,0x24,0xf5,
  485. 0x02,0x88,0xff,0xff,0x25,0x10,0x00,0x02,
  486. 0x01}}, /* 0x17 */
  487. {{0x9f,0x7f,0x7f,0x83,0x85,0x91,0x1e,0xf5,
  488. 0x00,0x83,0xff,0xff,0x1f,0x10,0x00,0x02,
  489. 0x01}}, /* 0x18 */
  490. {{0xa7,0x7f,0x7f,0x8b,0x89,0x95,0x26,0xf5,
  491. 0x00,0x83,0xff,0xff,0x27,0x10,0x00,0x02,
  492. 0x01}}, /* 0x19 */
  493. {{0xa9,0x7f,0x7f,0x8d,0x8c,0x9a,0x2c,0xf5,
  494. 0x00,0x83,0xff,0xff,0x2d,0x14,0x00,0x02,
  495. 0x62}}, /* 0x1a */
  496. {{0xab,0x7f,0x7f,0x8f,0x8d,0x9b,0x35,0xf5,
  497. 0x00,0x83,0xff,0xff,0x36,0x14,0x00,0x02,
  498. 0x62}}, /* 0x1b */
  499. {{0xcf,0x9f,0x9f,0x93,0xb2,0x01,0x14,0xba,
  500. 0x00,0x83,0xff,0xff,0x15,0x00,0x00,0x03,
  501. 0x00}}, /* 0x1c */
  502. {{0xce,0x9f,0x9f,0x92,0xa9,0x17,0x28,0x5a,
  503. 0x00,0x83,0xff,0xff,0x29,0x09,0x00,0x07,
  504. 0x01}}, /* 0x1d */
  505. {{0xce,0x9f,0x9f,0x92,0xa5,0x17,0x28,0x5a,
  506. 0x00,0x83,0xff,0xff,0x29,0x09,0x00,0x07,
  507. 0x01}}, /* 0x1e */
  508. {{0xd3,0x9f,0x9f,0x97,0xab,0x1f,0x2e,0x5a,
  509. 0x00,0x83,0xff,0xff,0x2f,0x09,0x00,0x07,
  510. 0x01}}, /* 0x1f */
  511. {{0x09,0xc7,0xc7,0x8d,0xd3,0x0b,0xe0,0x10,
  512. 0xb0,0x83,0xaf,0xaf,0xe1,0x2f,0x01,0x04,
  513. 0x00}}, /* 0x20 */
  514. {{0x09,0xc7,0xc7,0x8d,0xd3,0x0b,0xe0,0x10,
  515. 0xb0,0x83,0xaf,0xaf,0xe1,0x2f,0x01,0x04,
  516. 0x00}}, /* 0x21 */
  517. {{0x09,0xc7,0xc7,0x8d,0xd3,0x0b,0xe0,0x10,
  518. 0xb0,0x83,0xaf,0xaf,0xe1,0x2f,0x01,0x04,
  519. 0x00}}, /* 0x22 */
  520. {{0x09,0xc7,0xc7,0x8d,0xd3,0x0b,0xe0,0x10,
  521. 0xb0,0x83,0xaf,0xaf,0xe1,0x2f,0x01,0x04,
  522. 0x00}}, /* 0x23 */
  523. {{0x09,0xc7,0xc7,0x8d,0xd3,0x0b,0xe0,0x10,
  524. 0xb0,0x83,0xaf,0xaf,0xe1,0x2f,0x01,0x04,
  525. 0x00}}, /* 0x24 */
  526. {{0x09,0xc7,0xc7,0x8d,0xd3,0x0b,0xe0,0x10,
  527. 0xb0,0x83,0xaf,0xaf,0xe1,0x2f,0x01,0x04,
  528. 0x00}}, /* 0x25 */
  529. {{0x09,0xc7,0xc7,0x8d,0xd3,0x0b,0xe0,0x10,
  530. 0xb0,0x83,0xaf,0xaf,0xe1,0x2f,0x01,0x04,
  531. 0x00}}, /* 0x26 */
  532. {{0x40,0xef,0xef,0x84,0x03,0x1d,0xda,0x1f,
  533. 0xa0,0x83,0x9f,0x9f,0xdb,0x1f,0x41,0x01,
  534. 0x00}}, /* 0x27 */
  535. {{0x43,0xef,0xef,0x87,0x06,0x00,0xd4,0x1f,
  536. 0xa0,0x83,0x9f,0x9f,0xd5,0x1f,0x41,0x05,
  537. 0x63}}, /* 0x28 */
  538. {{0x45,0xef,0xef,0x89,0x07,0x01,0xd9,0x1f,
  539. 0xa0,0x83,0x9f,0x9f,0xda,0x1f,0x41,0x05,
  540. 0x63}}, /* 0x29 */
  541. {{0x40,0xef,0xef,0x84,0x03,0x1d,0xda,0x1f,
  542. 0xa0,0x83,0x9f,0x9f,0xdb,0x1f,0x41,0x01,
  543. 0x00}}, /* 0x2a */
  544. {{0x40,0xef,0xef,0x84,0x03,0x1d,0xda,0x1f,
  545. 0xa0,0x83,0x9f,0x9f,0xdb,0x1f,0x41,0x01,
  546. 0x00}}, /* 0x2b */
  547. {{0x40,0xef,0xef,0x84,0x03,0x1d,0xda,0x1f,
  548. 0xa0,0x83,0x9f,0x9f,0xdb,0x1f,0x41,0x01,
  549. 0x00}}, /* 0x2c */
  550. {{0x59,0xff,0xff,0x9d,0x17,0x13,0x33,0xba,
  551. 0x00,0x83,0xff,0xff,0x34,0x0f,0x41,0x05,
  552. 0x44}}, /* 0x2d */
  553. {{0x5b,0xff,0xff,0x9f,0x18,0x14,0x38,0xba,
  554. 0x00,0x83,0xff,0xff,0x39,0x0f,0x41,0x05,
  555. 0x44}}, /* 0x2e */
  556. {{0x5b,0xff,0xff,0x9f,0x18,0x14,0x3d,0xba,
  557. 0x00,0x83,0xff,0xff,0x3e,0x0f,0x41,0x05,
  558. 0x44}}, /* 0x2f */
  559. {{0x5d,0xff,0xff,0x81,0x19,0x95,0x41,0xba,
  560. 0x00,0x84,0xff,0xff,0x42,0x0f,0x41,0x05,
  561. 0x44}}, /* 0x30 */
  562. {{0x55,0xff,0xff,0x99,0x0d,0x0c,0x3e,0xba,
  563. 0x00,0x84,0xff,0xff,0x3f,0x0f,0x41,0x05,
  564. 0x00}}, /* 0x31 */
  565. {{0x7f,0x63,0x63,0x83,0x6c,0x1c,0x72,0xba,
  566. 0x27,0x8b,0xdf,0xdf,0x73,0x00,0x00,0x06,
  567. 0x01}}, /* 0x32 */
  568. {{0x7f,0x63,0x63,0x83,0x69,0x13,0x6f,0xba,
  569. 0x26,0x89,0xdf,0xdf,0x6f,0x00,0x00,0x06,
  570. 0x01}}, /* 0x33 */
  571. {{0x7f,0x63,0x63,0x82,0x6b,0x13,0x75,0xba,
  572. 0x29,0x8c,0xdf,0xdf,0x75,0x00,0x00,0x06,
  573. 0x01}}, /* 0x34 */
  574. {{0xa3,0x7f,0x7f,0x87,0x86,0x97,0x24,0xf1,
  575. 0xaf,0x85,0x3f,0x3f,0x25,0x30,0x00,0x02,
  576. 0x01}}, /* 0x35 */
  577. {{0x9f,0x7f,0x7f,0x83,0x85,0x91,0x1e,0xf1,
  578. 0xad,0x81,0x3f,0x3f,0x1f,0x30,0x00,0x02,
  579. 0x01}}, /* 0x36 */
  580. {{0xa7,0x7f,0x7f,0x88,0x89,0x95,0x26,0xf1,
  581. 0xb1,0x85,0x3f,0x3f,0x27,0x30,0x00,0x02,
  582. 0x01}}, /* 0x37 */
  583. {{0xce,0x9f,0x9f,0x92,0xa9,0x17,0x28,0xc4,
  584. 0x7a,0x8e,0xcf,0xcf,0x29,0x21,0x00,0x07,
  585. 0x01}}, /* 0x38 */
  586. {{0xce,0x9f,0x9f,0x92,0xa5,0x17,0x28,0xd4,
  587. 0x7a,0x8e,0xcf,0xcf,0x29,0x21,0x00,0x07,
  588. 0x01}}, /* 0x39 */
  589. {{0xd3,0x9f,0x9f,0x97,0xab,0x1f,0x2e,0xd4,
  590. 0x7d,0x81,0xcf,0xcf,0x2f,0x21,0x00,0x07,
  591. 0x01}}, /* 0x3a */
  592. {{0xdc,0x9f,0x9f,0x80,0xaf,0x9d,0xe6,0xff,
  593. 0xc0,0x83,0xbf,0xbf,0xe7,0x10,0x00,0x07,
  594. 0x01}}, /* 0x3b */
  595. {{0x6b,0x59,0x59,0x8f,0x5e,0x8c,0x0b,0x3e,
  596. 0xe9,0x8b,0xdf,0xe7,0x04,0x00,0x00,0x05,
  597. 0x00}}, /* 0x3c */
  598. {{0x6d,0x59,0x59,0x91,0x60,0x89,0x53,0xf0,
  599. 0x41,0x84,0x3f,0x3f,0x54,0x00,0x00,0x05,
  600. 0x41}}, /* 0x3d */
  601. {{0x86,0x6a,0x6a,0x8a,0x74,0x06,0x8c,0x15,
  602. 0x4f,0x83,0xef,0xef,0x8d,0x30,0x00,0x02,
  603. 0x00}}, /* 0x3e */
  604. {{0x81,0x6a,0x6a,0x85,0x70,0x00,0x0f,0x3e,
  605. 0xeb,0x8e,0xdf,0xdf,0x10,0x00,0x00,0x02,
  606. 0x00}}, /* 0x3f */
  607. {{0xa3,0x7f,0x7f,0x87,0x86,0x97,0x1e,0xf1,
  608. 0xae,0x85,0x57,0x57,0x1f,0x30,0x00,0x02,
  609. 0x01}}, /* 0x40 */
  610. {{0xa3,0x7f,0x7f,0x87,0x86,0x97,0x24,0xf5,
  611. 0x02,0x88,0xff,0xff,0x25,0x10,0x00,0x02,
  612. 0x01}}, /* 0x41 */
  613. {{0xce,0x9f,0x9f,0x92,0xa9,0x17,0x20,0xf5,
  614. 0x03,0x88,0xff,0xff,0x21,0x10,0x00,0x07,
  615. 0x01}}, /* 0x42 */
  616. {{0xe6,0xae,0xae,0x8a,0xbd,0x90,0x3d,0x10,
  617. 0x1a,0x8d,0x19,0x19,0x3e,0x2f,0x00,0x03,
  618. 0x00}}, /* 0x43 */
  619. {{0xc3,0x8f,0x8f,0x87,0x9b,0x0b,0x82,0xef,
  620. 0x60,0x83,0x5f,0x5f,0x83,0x10,0x00,0x07,
  621. 0x01}}, /* 0x44 */
  622. {{0x86,0x69,0x69,0x8A,0x74,0x06,0x8C,0x15,
  623. 0x4F,0x83,0xEF,0xEF,0x8D,0x30,0x00,0x02,
  624. 0x00}}, /* 0x45 */
  625. {{0x83,0x69,0x69,0x87,0x6f,0x1d,0x03,0x3E,
  626. 0xE5,0x8d,0xDF,0xe4,0x04,0x00,0x00,0x06,
  627. 0x00}}, /* 0x46 */
  628. {{0x86,0x6A,0x6A,0x8A,0x74,0x06,0x8C,0x15,
  629. 0x4F,0x83,0xEF,0xEF,0x8D,0x30,0x00,0x02,
  630. 0x00}}, /* 0x47 */
  631. {{0x81,0x6A,0x6A,0x85,0x70,0x00,0x0F,0x3E,
  632. 0xEB,0x8E,0xDF,0xDF,0x10,0x00,0x00,0x02,
  633. 0x00}}, /* 0x48 */
  634. {{0xdd,0xa9,0xa9,0x81,0xb4,0x97,0x26,0xfd,
  635. 0x01,0x8d,0xff,0x00,0x27,0x10,0x00,0x03,
  636. 0x01}}, /* 0x49 */
  637. {{0xd9,0x8f,0x8f,0x9d,0xba,0x0a,0x8a,0xff,
  638. 0x60,0x8b,0x5f,0x5f,0x8b,0x10,0x00,0x03,
  639. 0x01}}, /* 0x4a */
  640. {{0xea,0xae,0xae,0x8e,0xba,0x82,0x40,0x10,
  641. 0x1b,0x87,0x19,0x1a,0x41,0x0f,0x00,0x03,
  642. 0x00}}, /* 0x4b */
  643. {{0xd3,0x9f,0x9f,0x97,0xab,0x1f,0xf1,0xff,
  644. 0xc0,0x83,0xbf,0xbf,0xf2,0x10,0x00,0x07,
  645. 0x01}}, /* 0x4c */
  646. {{0x75,0x5f,0x5f,0x99,0x66,0x90,0x53,0xf0,
  647. 0x41,0x84,0x3f,0x3f,0x54,0x00,0x00,0x05,
  648. 0x41}},
  649. {{0x2d,0x27,0x28,0x90,0x2c,0x80,0x0b,0x3e,
  650. 0xe9,0x8b,0xdf,0xe7,0x04,0x00,0x00,0x00,
  651. 0x00}}, /* 0x4e */
  652. {{0xcd,0x9f,0x9f,0x91,0xab,0x1c,0x3a,0xff,
  653. 0x20,0x83,0x1f,0x1f,0x3b,0x10,0x00,0x07,
  654. 0x21}}, /* 0x4f */
  655. {{0x15,0xd1,0xd1,0x99,0xe2,0x19,0x3d,0x10,
  656. 0x1a,0x8d,0x19,0x19,0x3e,0x2f,0x01,0x0c,
  657. 0x20}}, /* 0x50 */
  658. {{0x0e,0xef,0xef,0x92,0xfe,0x03,0x30,0xf0,
  659. 0x1e,0x83,0x1b,0x1c,0x31,0x00,0x01,0x00,
  660. 0x61}}, /* 0x51 */
  661. {{0x85,0x77,0x77,0x89,0x7d,0x01,0x31,0xf0,
  662. 0x1e,0x84,0x1b,0x1c,0x32,0x00,0x00,0x02,
  663. 0x41}}, /* 0x52 */
  664. {{0x87,0x77,0x77,0x8b,0x81,0x0b,0x68,0xf0,
  665. 0x5a,0x80,0x57,0x57,0x69,0x00,0x00,0x02,
  666. 0x01}}, /* 0x53 */
  667. {{0xcd,0x8f,0x8f,0x91,0x9b,0x1b,0x7a,0xff,
  668. 0x64,0x8c,0x5f,0x62,0x7b,0x10,0x00,0x07,
  669. 0x41}} /* 0x54 */
  670. };
  671. static struct SiS_VCLKData SiSUSB_VCLKData[] =
  672. {
  673. { 0x1b,0xe1, 25}, /* 0x00 */
  674. { 0x4e,0xe4, 28}, /* 0x01 */
  675. { 0x57,0xe4, 31}, /* 0x02 */
  676. { 0xc3,0xc8, 36}, /* 0x03 */
  677. { 0x42,0xe2, 40}, /* 0x04 */
  678. { 0xfe,0xcd, 43}, /* 0x05 */
  679. { 0x5d,0xc4, 44}, /* 0x06 */
  680. { 0x52,0xe2, 49}, /* 0x07 */
  681. { 0x53,0xe2, 50}, /* 0x08 */
  682. { 0x74,0x67, 52}, /* 0x09 */
  683. { 0x6d,0x66, 56}, /* 0x0a */
  684. { 0x5a,0x64, 65}, /* 0x0b */
  685. { 0x46,0x44, 67}, /* 0x0c */
  686. { 0xb1,0x46, 68}, /* 0x0d */
  687. { 0xd3,0x4a, 72}, /* 0x0e */
  688. { 0x29,0x61, 75}, /* 0x0f */
  689. { 0x6e,0x46, 76}, /* 0x10 */
  690. { 0x2b,0x61, 78}, /* 0x11 */
  691. { 0x31,0x42, 79}, /* 0x12 */
  692. { 0xab,0x44, 83}, /* 0x13 */
  693. { 0x46,0x25, 84}, /* 0x14 */
  694. { 0x78,0x29, 86}, /* 0x15 */
  695. { 0x62,0x44, 94}, /* 0x16 */
  696. { 0x2b,0x41,104}, /* 0x17 */
  697. { 0x3a,0x23,105}, /* 0x18 */
  698. { 0x70,0x44,108}, /* 0x19 */
  699. { 0x3c,0x23,109}, /* 0x1a */
  700. { 0x5e,0x43,113}, /* 0x1b */
  701. { 0xbc,0x44,116}, /* 0x1c */
  702. { 0xe0,0x46,132}, /* 0x1d */
  703. { 0x54,0x42,135}, /* 0x1e */
  704. { 0xea,0x2a,139}, /* 0x1f */
  705. { 0x41,0x22,157}, /* 0x20 */
  706. { 0x70,0x24,162}, /* 0x21 */
  707. { 0x30,0x21,175}, /* 0x22 */
  708. { 0x4e,0x22,189}, /* 0x23 */
  709. { 0xde,0x26,194}, /* 0x24 */
  710. { 0x62,0x06,202}, /* 0x25 */
  711. { 0x3f,0x03,229}, /* 0x26 */
  712. { 0xb8,0x06,234}, /* 0x27 */
  713. { 0x34,0x02,253}, /* 0x28 */
  714. { 0x58,0x04,255}, /* 0x29 */
  715. { 0x24,0x01,265}, /* 0x2a */
  716. { 0x9b,0x02,267}, /* 0x2b */
  717. { 0x70,0x05,270}, /* 0x2c */
  718. { 0x25,0x01,272}, /* 0x2d */
  719. { 0x9c,0x02,277}, /* 0x2e */
  720. { 0x27,0x01,286}, /* 0x2f */
  721. { 0x3c,0x02,291}, /* 0x30 */
  722. { 0xef,0x0a,292}, /* 0x31 */
  723. { 0xf6,0x0a,310}, /* 0x32 */
  724. { 0x95,0x01,315}, /* 0x33 */
  725. { 0xf0,0x09,324}, /* 0x34 */
  726. { 0xfe,0x0a,331}, /* 0x35 */
  727. { 0xf3,0x09,332}, /* 0x36 */
  728. { 0xea,0x08,340}, /* 0x37 */
  729. { 0xe8,0x07,376}, /* 0x38 */
  730. { 0xde,0x06,389}, /* 0x39 */
  731. { 0x52,0x2a, 54}, /* 0x3a 301 TV */
  732. { 0x52,0x6a, 27}, /* 0x3b 301 TV */
  733. { 0x62,0x24, 70}, /* 0x3c 301 TV */
  734. { 0x62,0x64, 70}, /* 0x3d 301 TV */
  735. { 0xa8,0x4c, 30}, /* 0x3e 301 TV */
  736. { 0x20,0x26, 33}, /* 0x3f 301 TV */
  737. { 0x31,0xc2, 39}, /* 0x40 */
  738. { 0x60,0x36, 30}, /* 0x41 Chrontel */
  739. { 0x40,0x4a, 28}, /* 0x42 Chrontel */
  740. { 0x9f,0x46, 44}, /* 0x43 Chrontel */
  741. { 0x97,0x2c, 26}, /* 0x44 */
  742. { 0x44,0xe4, 25}, /* 0x45 Chrontel */
  743. { 0x7e,0x32, 47}, /* 0x46 Chrontel */
  744. { 0x8a,0x24, 31}, /* 0x47 Chrontel */
  745. { 0x97,0x2c, 26}, /* 0x48 Chrontel */
  746. { 0xce,0x3c, 39}, /* 0x49 */
  747. { 0x52,0x4a, 36}, /* 0x4a Chrontel */
  748. { 0x34,0x61, 95}, /* 0x4b */
  749. { 0x78,0x27,108}, /* 0x4c - was 102 */
  750. { 0x66,0x43,123}, /* 0x4d Modes 0x26-0x28 (1400x1050) */
  751. { 0x41,0x4e, 21}, /* 0x4e */
  752. { 0xa1,0x4a, 29}, /* 0x4f Chrontel */
  753. { 0x19,0x42, 42}, /* 0x50 */
  754. { 0x54,0x46, 58}, /* 0x51 Chrontel */
  755. { 0x25,0x42, 61}, /* 0x52 */
  756. { 0x44,0x44, 66}, /* 0x53 Chrontel */
  757. { 0x3a,0x62, 70}, /* 0x54 Chrontel */
  758. { 0x62,0xc6, 34}, /* 0x55 848x480-60 */
  759. { 0x6a,0xc6, 37}, /* 0x56 848x480-75 - TEMP */
  760. { 0xbf,0xc8, 35}, /* 0x57 856x480-38i,60 */
  761. { 0x30,0x23, 88}, /* 0x58 1360x768-62 (is 60Hz!) */
  762. { 0x52,0x07,149}, /* 0x59 1280x960-85 */
  763. { 0x56,0x07,156}, /* 0x5a 1400x1050-75 */
  764. { 0x70,0x29, 81}, /* 0x5b 1280x768 LCD */
  765. { 0x45,0x25, 83}, /* 0x5c 1280x800 */
  766. { 0x70,0x0a,147}, /* 0x5d 1680x1050 */
  767. { 0x70,0x24,162}, /* 0x5e 1600x1200 */
  768. { 0x5a,0x64, 65}, /* 0x5f 1280x720 - temp */
  769. { 0x63,0x46, 68}, /* 0x60 1280x768_2 */
  770. { 0x31,0x42, 79}, /* 0x61 1280x768_3 - temp */
  771. { 0, 0, 0}, /* 0x62 - custom (will be filled out at run-time) */
  772. { 0x5a,0x64, 65}, /* 0x63 1280x720 (LCD LVDS) */
  773. { 0x70,0x28, 90}, /* 0x64 1152x864@60 */
  774. { 0x41,0xc4, 32}, /* 0x65 848x480@60 */
  775. { 0x5c,0xc6, 32}, /* 0x66 856x480@60 */
  776. { 0x76,0xe7, 27}, /* 0x67 720x480@60 */
  777. { 0x5f,0xc6, 33}, /* 0x68 720/768x576@60 */
  778. { 0x52,0x27, 75}, /* 0x69 1920x1080i 60Hz interlaced */
  779. { 0x7c,0x6b, 38}, /* 0x6a 960x540@60 */
  780. { 0xe3,0x56, 41}, /* 0x6b 960x600@60 */
  781. { 0x45,0x25, 83}, /* 0x6c 1280x800 */
  782. { 0x70,0x28, 90}, /* 0x6d 1152x864@60 */
  783. { 0x15,0xe1, 20}, /* 0x6e 640x400@60 (fake, not actually used) */
  784. { 0x5f,0xc6, 33}, /* 0x6f 720x576@60 */
  785. { 0x37,0x5a, 10}, /* 0x70 320x200@60 (fake, not actually used) */
  786. { 0x2b,0xc2, 35} /* 0x71 768@576@60 */
  787. };
  788. void SiSUSBRegInit(struct SiS_Private *SiS_Pr, unsigned long BaseAddr);
  789. unsigned short SiSUSB_GetModeID(int HDisplay, int VDisplay, int Depth);
  790. int SiSUSBSetMode(struct SiS_Private *SiS_Pr, unsigned short ModeNo);
  791. int SiSUSBSetVESAMode(struct SiS_Private *SiS_Pr, unsigned short VModeNo);
  792. extern int sisusb_setreg(struct sisusb_usb_data *sisusb, int port, u8 data);
  793. extern int sisusb_getreg(struct sisusb_usb_data *sisusb, int port, u8 *data);
  794. extern int sisusb_setidxreg(struct sisusb_usb_data *sisusb, int port,
  795. u8 index, u8 data);
  796. extern int sisusb_getidxreg(struct sisusb_usb_data *sisusb, int port,
  797. u8 index, u8 *data);
  798. extern int sisusb_setidxregandor(struct sisusb_usb_data *sisusb, int port,
  799. u8 idx, u8 myand, u8 myor);
  800. extern int sisusb_setidxregor(struct sisusb_usb_data *sisusb, int port,
  801. u8 index, u8 myor);
  802. extern int sisusb_setidxregand(struct sisusb_usb_data *sisusb, int port,
  803. u8 idx, u8 myand);
  804. #endif