imsttfb.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:53k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  drivers/video/imsttfb.c -- frame buffer device for IMS TwinTurbo
  3.  *
  4.  *  This file is derived from the powermac console "imstt" driver:
  5.  *  Copyright (C) 1997 Sigurdur Asgeirsson
  6.  *  With additional hacking by Jeffrey Kuskin (jsk@mojave.stanford.edu)
  7.  *  Modified by Danilo Beuche 1998
  8.  *  Some register values added by Damien Doligez, INRIA Rocquencourt
  9.  *  Various cleanups by Paul Mundt (lethal@chaoticdreams.org)
  10.  *
  11.  *  This file was written by Ryan Nielsen (ran@krazynet.com)
  12.  *  Most of the frame buffer device stuff was copied from atyfb.c
  13.  *
  14.  *  This file is subject to the terms and conditions of the GNU General Public
  15.  *  License. See the file COPYING in the main directory of this archive for
  16.  *  more details.
  17.  */
  18. #include <linux/config.h>
  19. #include <linux/module.h>
  20. #include <linux/kernel.h>
  21. #include <linux/errno.h>
  22. #include <linux/string.h>
  23. #include <linux/mm.h>
  24. #include <linux/tty.h>
  25. #include <linux/slab.h>
  26. #include <linux/vmalloc.h>
  27. #include <linux/delay.h>
  28. #include <linux/interrupt.h>
  29. #include <linux/fb.h>
  30. #include <linux/console.h>
  31. #include <linux/selection.h>
  32. #include <linux/init.h>
  33. #include <linux/pci.h>
  34. #include <asm/io.h>
  35. #include <asm/uaccess.h>
  36. #if defined(CONFIG_PPC)
  37. #include <linux/nvram.h>
  38. #include <asm/prom.h>
  39. #include <asm/pci-bridge.h>
  40. #include <video/macmodes.h>
  41. #endif
  42. #include <video/fbcon.h>
  43. #include <video/fbcon-cfb8.h>
  44. #include <video/fbcon-cfb16.h>
  45. #include <video/fbcon-cfb24.h>
  46. #include <video/fbcon-cfb32.h>
  47. #ifndef __powerpc__
  48. #define eieio() /* Enforce In-order Execution of I/O */
  49. #endif
  50. /* TwinTurbo (Cosmo) registers */
  51. enum {
  52. S1SA =  0, /* 0x00 */
  53. S2SA =  1, /* 0x04 */
  54. SP =  2, /* 0x08 */
  55. DSA =  3, /* 0x0C */
  56. CNT =  4, /* 0x10 */
  57. DP_OCTL =  5, /* 0x14 */
  58. CLR =  6, /* 0x18 */
  59. BI =  8, /* 0x20 */
  60. MBC =  9, /* 0x24 */
  61. BLTCTL = 10, /* 0x28 */
  62. /* Scan Timing Generator Registers */
  63. HES = 12, /* 0x30 */
  64. HEB = 13, /* 0x34 */
  65. HSB = 14, /* 0x38 */
  66. HT = 15, /* 0x3C */
  67. VES = 16, /* 0x40 */
  68. VEB = 17, /* 0x44 */
  69. VSB = 18, /* 0x48 */
  70. VT = 19, /* 0x4C */
  71. HCIV = 20, /* 0x50 */
  72. VCIV = 21, /* 0x54 */
  73. TCDR = 22, /* 0x58 */
  74. VIL = 23, /* 0x5C */
  75. STGCTL = 24, /* 0x60 */
  76. /* Screen Refresh Generator Registers */
  77. SSR = 25, /* 0x64 */
  78. HRIR = 26, /* 0x68 */
  79. SPR = 27, /* 0x6C */
  80. CMR = 28, /* 0x70 */
  81. SRGCTL = 29, /* 0x74 */
  82. /* RAM Refresh Generator Registers */
  83. RRCIV = 30, /* 0x78 */
  84. RRSC = 31, /* 0x7C */
  85. RRCR = 34, /* 0x88 */
  86. /* System Registers */
  87. GIOE = 32, /* 0x80 */
  88. GIO = 33, /* 0x84 */
  89. SCR = 35, /* 0x8C */
  90. SSTATUS = 36, /* 0x90 */
  91. PRC = 37, /* 0x94 */
  92. #if 0
  93. /* PCI Registers */
  94. DVID = 0x00000000L,
  95. SC = 0x00000004L,
  96. CCR = 0x00000008L,
  97. OG = 0x0000000CL,
  98. BARM = 0x00000010L,
  99. BARER = 0x00000030L,
  100. #endif
  101. };
  102. /* IBM 624 RAMDAC Direct Registers */
  103. enum {
  104. PADDRW = 0x00,
  105. PDATA = 0x04,
  106. PPMASK = 0x08,
  107. PADDRR = 0x0c,
  108. PIDXLO = 0x10,
  109. PIDXHI = 0x14,
  110. PIDXDATA= 0x18,
  111. PIDXCTL = 0x1c
  112. };
  113. /* IBM 624 RAMDAC Indirect Registers */
  114. enum {
  115. CLKCTL = 0x02, /* (0x01) Miscellaneous Clock Control */
  116. SYNCCTL = 0x03, /* (0x00) Sync Control */
  117. HSYNCPOS = 0x04, /* (0x00) Horizontal Sync Position */
  118. PWRMNGMT = 0x05, /* (0x00) Power Management */
  119. DACOP = 0x06, /* (0x02) DAC Operation */
  120. PALETCTL = 0x07, /* (0x00) Palette Control */
  121. SYSCLKCTL = 0x08, /* (0x01) System Clock Control */
  122. PIXFMT = 0x0a, /* () Pixel Format  [bpp >> 3 + 2] */
  123. BPP8 = 0x0b, /* () 8 Bits/Pixel Control */
  124. BPP16 = 0x0c, /* () 16 Bits/Pixel Control  [bit 1=1 for 565] */
  125. BPP24 = 0x0d, /* () 24 Bits/Pixel Control */
  126. BPP32 = 0x0e, /* () 32 Bits/Pixel Control */
  127. PIXCTL1 = 0x10, /* (0x05) Pixel PLL Control 1 */
  128. PIXCTL2 = 0x11, /* (0x00) Pixel PLL Control 2 */
  129. SYSCLKN = 0x15, /* () System Clock N (System PLL Reference Divider) */
  130. SYSCLKM = 0x16, /* () System Clock M (System PLL VCO Divider) */
  131. SYSCLKP = 0x17, /* () System Clock P */
  132. SYSCLKC = 0x18, /* () System Clock C */
  133. /*
  134.  * Dot clock rate is 20MHz * (m + 1) / ((n + 1) * (p ? 2 * p : 1)
  135.  * c is charge pump bias which depends on the VCO frequency  
  136.  */
  137. PIXM0 = 0x20, /* () Pixel M 0 */
  138. PIXN0 = 0x21, /* () Pixel N 0 */
  139. PIXP0 = 0x22, /* () Pixel P 0 */
  140. PIXC0 = 0x23, /* () Pixel C 0 */
  141. CURSCTL = 0x30, /* (0x00) Cursor Control */
  142. CURSXLO = 0x31, /* () Cursor X position, low 8 bits */
  143. CURSXHI = 0x32, /* () Cursor X position, high 8 bits */
  144. CURSYLO = 0x33, /* () Cursor Y position, low 8 bits */
  145. CURSYHI = 0x34, /* () Cursor Y position, high 8 bits */
  146. CURSHOTX = 0x35, /* () Cursor Hot Spot X */
  147. CURSHOTY = 0x36, /* () Cursor Hot Spot Y */
  148. CURSACCTL = 0x37, /* () Advanced Cursor Control Enable */
  149. CURSACATTR = 0x38, /* () Advanced Cursor Attribute */
  150. CURS1R = 0x40, /* () Cursor 1 Red */
  151. CURS1G = 0x41, /* () Cursor 1 Green */
  152. CURS1B = 0x42, /* () Cursor 1 Blue */
  153. CURS2R = 0x43, /* () Cursor 2 Red */
  154. CURS2G = 0x44, /* () Cursor 2 Green */
  155. CURS2B = 0x45, /* () Cursor 2 Blue */
  156. CURS3R = 0x46, /* () Cursor 3 Red */
  157. CURS3G = 0x47, /* () Cursor 3 Green */
  158. CURS3B = 0x48, /* () Cursor 3 Blue */
  159. BORDR = 0x60, /* () Border Color Red */
  160. BORDG = 0x61, /* () Border Color Green */
  161. BORDB = 0x62, /* () Border Color Blue */
  162. MISCTL1 = 0x70, /* (0x00) Miscellaneous Control 1 */
  163. MISCTL2 = 0x71, /* (0x00) Miscellaneous Control 2 */
  164. MISCTL3 = 0x72, /* (0x00) Miscellaneous Control 3 */
  165. KEYCTL = 0x78 /* (0x00) Key Control/DB Operation */
  166. };
  167. /* TI TVP 3030 RAMDAC Direct Registers */
  168. enum {
  169. TVPADDRW = 0x00, /* 0  Palette/Cursor RAM Write Address/Index */
  170. TVPPDATA = 0x04, /* 1  Palette Data RAM Data */
  171. TVPPMASK = 0x08, /* 2  Pixel Read-Mask */
  172. TVPPADRR = 0x0c, /* 3  Palette/Cursor RAM Read Address */
  173. TVPCADRW = 0x10, /* 4  Cursor/Overscan Color Write Address */
  174. TVPCDATA = 0x14, /* 5  Cursor/Overscan Color Data */
  175. /* 6  reserved */
  176. TVPCADRR = 0x1c, /* 7  Cursor/Overscan Color Read Address */
  177. /* 8  reserved */
  178. TVPDCCTL = 0x24, /* 9  Direct Cursor Control */
  179. TVPIDATA = 0x28, /* 10 Index Data */
  180. TVPCRDAT = 0x2c, /* 11 Cursor RAM Data */
  181. TVPCXPOL = 0x30, /* 12 Cursor-Position X LSB */
  182. TVPCXPOH = 0x34, /* 13 Cursor-Position X MSB */
  183. TVPCYPOL = 0x38, /* 14 Cursor-Position Y LSB */
  184. TVPCYPOH = 0x3c, /* 15 Cursor-Position Y MSB */
  185. };
  186. /* TI TVP 3030 RAMDAC Indirect Registers */
  187. enum {
  188. TVPIRREV = 0x01, /* Silicon Revision [RO] */
  189. TVPIRICC = 0x06, /* Indirect Cursor Control  (0x00) */
  190. TVPIRBRC = 0x07, /* Byte Router Control  (0xe4) */
  191. TVPIRLAC = 0x0f, /* Latch Control  (0x06) */
  192. TVPIRTCC = 0x18, /* True Color Control   (0x80) */
  193. TVPIRMXC = 0x19, /* Multiplex Control (0x98) */
  194. TVPIRCLS = 0x1a, /* Clock Selection (0x07) */
  195. TVPIRPPG = 0x1c, /* Palette Page (0x00) */
  196. TVPIRGEC = 0x1d, /* General Control  (0x00) */
  197. TVPIRMIC = 0x1e, /* Miscellaneous Control (0x00) */
  198. TVPIRPLA = 0x2c, /* PLL Address */
  199. TVPIRPPD = 0x2d, /* Pixel Clock PLL Data */
  200. TVPIRMPD = 0x2e, /* Memory Clock PLL Data */
  201. TVPIRLPD = 0x2f, /* Loop Clock PLL Data */
  202. TVPIRCKL = 0x30, /* Color-Key Overlay Low */
  203. TVPIRCKH = 0x31, /* Color-Key Overlay High */
  204. TVPIRCRL = 0x32, /* Color-Key Red Low */
  205. TVPIRCRH = 0x33, /* Color-Key Red High */
  206. TVPIRCGL = 0x34, /* Color-Key Green Low */
  207. TVPIRCGH = 0x35, /* Color-Key Green High */
  208. TVPIRCBL = 0x36, /* Color-Key Blue Low */
  209. TVPIRCBH = 0x37, /* Color-Key Blue High */
  210. TVPIRCKC = 0x38, /* Color-Key Control  (0x00) */
  211. TVPIRMLC = 0x39, /* MCLK/Loop Clock Control (0x18) */
  212. TVPIRSEN = 0x3a, /* Sense Test (0x00) */
  213. TVPIRTMD = 0x3b, /* Test Mode Data */
  214. TVPIRRML = 0x3c, /* CRC Remainder LSB [RO] */
  215. TVPIRRMM = 0x3d, /* CRC Remainder MSB [RO] */
  216. TVPIRRMS = 0x3e, /* CRC  Bit Select [WO] */
  217. TVPIRDID = 0x3f, /* Device ID [RO]  (0x30) */
  218. TVPIRRES = 0xff /* Software Reset [WO] */
  219. };
  220. struct initvalues {
  221. __u8 addr, value;
  222. };
  223. static struct initvalues ibm_initregs[] __initdata = {
  224. { CLKCTL, 0x21 },
  225. { SYNCCTL, 0x00 },
  226. { HSYNCPOS, 0x00 },
  227. { PWRMNGMT, 0x00 },
  228. { DACOP, 0x02 },
  229. { PALETCTL, 0x00 },
  230. { SYSCLKCTL, 0x01 },
  231. /*
  232.  * Note that colors in X are correct only if all video data is
  233.  * passed through the palette in the DAC.  That is, "indirect
  234.  * color" must be configured.  This is the case for the IBM DAC
  235.  * used in the 2MB and 4MB cards, at least.
  236.  */
  237. { BPP8, 0x00 },
  238. { BPP16, 0x01 },
  239. { BPP24, 0x00 },
  240. { BPP32, 0x00 },
  241. { PIXCTL1, 0x05 },
  242. { PIXCTL2, 0x00 },
  243. { SYSCLKN, 0x08 },
  244. { SYSCLKM, 0x4f },
  245. { SYSCLKP, 0x00 },
  246. { SYSCLKC, 0x00 },
  247. { CURSCTL, 0x00 },
  248. { CURSACCTL, 0x01 },
  249. { CURSACATTR, 0xa8 },
  250. { CURS1R, 0xff },
  251. { CURS1G, 0xff },
  252. { CURS1B, 0xff },
  253. { CURS2R, 0xff },
  254. { CURS2G, 0xff },
  255. { CURS2B, 0xff },
  256. { CURS3R, 0xff },
  257. { CURS3G, 0xff },
  258. { CURS3B, 0xff },
  259. { BORDR, 0xff },
  260. { BORDG, 0xff },
  261. { BORDB, 0xff },
  262. { MISCTL1, 0x01 },
  263. { MISCTL2, 0x45 },
  264. { MISCTL3, 0x00 },
  265. { KEYCTL, 0x00 }
  266. };
  267. static struct initvalues tvp_initregs[] __initdata = {
  268. { TVPIRICC, 0x00 },
  269. { TVPIRBRC, 0xe4 },
  270. { TVPIRLAC, 0x06 },
  271. { TVPIRTCC, 0x80 },
  272. { TVPIRMXC, 0x4d },
  273. { TVPIRCLS, 0x05 },
  274. { TVPIRPPG, 0x00 },
  275. { TVPIRGEC, 0x00 },
  276. { TVPIRMIC, 0x08 },
  277. { TVPIRCKL, 0xff },
  278. { TVPIRCKH, 0xff },
  279. { TVPIRCRL, 0xff },
  280. { TVPIRCRH, 0xff },
  281. { TVPIRCGL, 0xff },
  282. { TVPIRCGH, 0xff },
  283. { TVPIRCBL, 0xff },
  284. { TVPIRCBH, 0xff },
  285. { TVPIRCKC, 0x00 },
  286. { TVPIRPLA, 0x00 },
  287. { TVPIRPPD, 0xc0 },
  288. { TVPIRPPD, 0xd5 },
  289. { TVPIRPPD, 0xea },
  290. { TVPIRPLA, 0x00 },
  291. { TVPIRMPD, 0xb9 },
  292. { TVPIRMPD, 0x3a },
  293. { TVPIRMPD, 0xb1 },
  294. { TVPIRPLA, 0x00 },
  295. { TVPIRLPD, 0xc1 },
  296. { TVPIRLPD, 0x3d },
  297. { TVPIRLPD, 0xf3 },
  298. };
  299. struct imstt_regvals {
  300. __u32 pitch;
  301. __u16 hes, heb, hsb, ht, ves, veb, vsb, vt, vil;
  302. __u8 pclk_m, pclk_n, pclk_p;
  303. /* Values of the tvp which change depending on colormode x resolution */
  304. __u8 mlc[3]; /* Memory Loop Config 0x39 */
  305. __u8 lckl_p[3]; /* P value of LCKL PLL */
  306. };
  307. struct imstt_cursor {
  308. struct timer_list timer;
  309. int enable;
  310. int on;
  311. int vbl_cnt;
  312. int blink_rate;
  313. __u16 x, y, width, height;
  314. };
  315. struct fb_info_imstt {
  316. struct fb_info info;
  317. struct fb_fix_screeninfo fix;
  318. struct display disp;
  319. struct display_switch dispsw;
  320. union {
  321. #ifdef FBCON_HAS_CFB16
  322. __u16 cfb16[16];
  323. #endif
  324. #ifdef FBCON_HAS_CFB24
  325. __u32 cfb24[16];
  326. #endif
  327. #ifdef FBCON_HAS_CFB32
  328. __u32 cfb32[16];
  329. #endif
  330. } fbcon_cmap;
  331. struct {
  332. __u8 red, green, blue;
  333. } palette[256];
  334. struct imstt_regvals init;
  335. struct imstt_cursor cursor;
  336. unsigned long frame_buffer_phys;
  337. unsigned long board_size;
  338. __u8 *frame_buffer;
  339. unsigned long dc_regs_phys;
  340. __u32 *dc_regs;
  341. unsigned long cmap_regs_phys;
  342. __u8 *cmap_regs;
  343. __u32 total_vram;
  344. __u32 ramdac;
  345. };
  346. enum {
  347. IBM = 0,
  348. TVP = 1
  349. };
  350. #define INIT_BPP 8
  351. #define INIT_XRES 640
  352. #define INIT_YRES 480
  353. #define CURSOR_BLINK_RATE 20
  354. #define CURSOR_DRAW_DELAY 2
  355. static int currcon = 0;
  356. static int inverse = 0;
  357. static char fontname[40] __initdata = { 0 };
  358. static char curblink __initdata = 1;
  359. static char noaccel __initdata = 0;
  360. #if defined(CONFIG_PPC)
  361. static signed char init_vmode __initdata = VMODE_NVRAM;
  362. static signed char init_cmode __initdata = CMODE_NVRAM;
  363. #endif
  364. static struct imstt_regvals tvp_reg_init_2 = {
  365. 512,
  366. 0x0002, 0x0006, 0x0026, 0x0028, 0x0003, 0x0016, 0x0196, 0x0197, 0x0196,
  367. 0xec, 0x2a, 0xf3,
  368. { 0x3c, 0x3b, 0x39 }, { 0xf3, 0xf3, 0xf3 }
  369. };
  370. static struct imstt_regvals tvp_reg_init_6 = {
  371. 640,
  372. 0x0004, 0x0009, 0x0031, 0x0036, 0x0003, 0x002a, 0x020a, 0x020d, 0x020a,
  373. 0xef, 0x2e, 0xb2,
  374. { 0x39, 0x39, 0x38 }, { 0xf3, 0xf3, 0xf3 }
  375. };
  376. static struct imstt_regvals tvp_reg_init_12 = {
  377. 800,
  378. 0x0005, 0x000e, 0x0040, 0x0042, 0x0003, 0x018, 0x270, 0x271, 0x270,
  379. 0xf6, 0x2e, 0xf2,
  380. { 0x3a, 0x39, 0x38 }, { 0xf3, 0xf3, 0xf3 }
  381. };
  382. static struct imstt_regvals tvp_reg_init_13 = {
  383. 832,
  384. 0x0004, 0x0011, 0x0045, 0x0048, 0x0003, 0x002a, 0x029a, 0x029b, 0x0000,
  385. 0xfe, 0x3e, 0xf1,
  386. { 0x39, 0x38, 0x38 }, { 0xf3, 0xf3, 0xf2 }
  387. };
  388. static struct imstt_regvals tvp_reg_init_17 = {
  389. 1024,
  390. 0x0006, 0x0210, 0x0250, 0x0053, 0x1003, 0x0021, 0x0321, 0x0324, 0x0000,
  391. 0xfc, 0x3a, 0xf1,
  392. { 0x39, 0x38, 0x38 }, { 0xf3, 0xf3, 0xf2 }
  393. };
  394. static struct imstt_regvals tvp_reg_init_18 = {
  395. 1152,
  396.    0x0009, 0x0011, 0x059, 0x5b, 0x0003, 0x0031, 0x0397, 0x039a, 0x0000, 
  397. 0xfd, 0x3a, 0xf1,
  398. { 0x39, 0x38, 0x38 }, { 0xf3, 0xf3, 0xf2 }
  399. };
  400. static struct imstt_regvals tvp_reg_init_19 = {
  401. 1280,
  402. 0x0009, 0x0016, 0x0066, 0x0069, 0x0003, 0x0027, 0x03e7, 0x03e8, 0x03e7,
  403. 0xf7, 0x36, 0xf0,
  404. { 0x38, 0x38, 0x38 }, { 0xf3, 0xf2, 0xf1 }
  405. };
  406. static struct imstt_regvals tvp_reg_init_20 = {
  407. 1280,
  408. 0x0009, 0x0018, 0x0068, 0x006a, 0x0003, 0x0029, 0x0429, 0x042a, 0x0000,
  409. 0xf0, 0x2d, 0xf0,
  410. { 0x38, 0x38, 0x38 }, { 0xf3, 0xf2, 0xf1 }
  411. };
  412. /*
  413.  * PCI driver prototypes
  414.  */
  415. static int imsttfb_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
  416. static void imsttfb_remove(struct pci_dev *pdev);
  417. static __u32
  418. getclkMHz (struct fb_info_imstt *p)
  419. {
  420. __u32 clk_m, clk_n, clk_p;
  421. clk_m = p->init.pclk_m;
  422. clk_n = p->init.pclk_n;
  423. clk_p = p->init.pclk_p;
  424. return 20 * (clk_m + 1) / ((clk_n + 1) * (clk_p ? 2 * clk_p : 1));
  425. }
  426. static void
  427. setclkMHz (struct fb_info_imstt *p, __u32 MHz)
  428. {
  429. __u32 clk_m, clk_n, clk_p, x, stage, spilled;
  430. clk_m = clk_n = clk_p = 0;
  431. stage = spilled = 0;
  432. for (;;) {
  433. switch (stage) {
  434. case 0:
  435. clk_m++;
  436. break;
  437. case 1:
  438. clk_n++;
  439. break;
  440. }
  441. x = 20 * (clk_m + 1) / ((clk_n + 1) * (clk_p ? 2 * clk_p : 1));
  442. if (x == MHz)
  443. break;
  444. if (x > MHz) {
  445. spilled = 1;
  446. stage = 1;
  447. } else if (spilled && x < MHz) {
  448. stage = 0;
  449. }
  450. }
  451. p->init.pclk_m = clk_m;
  452. p->init.pclk_n = clk_n;
  453. p->init.pclk_p = clk_p;
  454. }
  455. static struct imstt_regvals *
  456. compute_imstt_regvals_ibm (struct fb_info_imstt *p, int xres, int yres)
  457. {
  458. struct imstt_regvals *init = &p->init;
  459. __u32 MHz, hes, heb, veb, htp, vtp;
  460. switch (xres) {
  461. case 640:
  462. hes = 0x0008; heb = 0x0012; veb = 0x002a; htp = 10; vtp = 2;
  463. MHz = 30 /* .25 */ ;
  464. break;
  465. case 832:
  466. hes = 0x0005; heb = 0x0020; veb = 0x0028; htp = 8; vtp = 3;
  467. MHz = 57 /* .27_ */ ;
  468. break;
  469. case 1024:
  470. hes = 0x000a; heb = 0x001c; veb = 0x0020; htp = 8; vtp = 3;
  471. MHz = 80;
  472. break;
  473. case 1152:
  474. hes = 0x0012; heb = 0x0022; veb = 0x0031; htp = 4; vtp = 3;
  475. MHz = 101 /* .6_ */ ;
  476. break;
  477. case 1280:
  478. hes = 0x0012; heb = 0x002f; veb = 0x0029; htp = 4; vtp = 1;
  479. MHz = yres == 960 ? 126 : 135;
  480. break;
  481. case 1600:
  482. hes = 0x0018; heb = 0x0040; veb = 0x002a; htp = 4; vtp = 3;
  483. MHz = 200;
  484. break;
  485. default:
  486. return 0;
  487. }
  488. setclkMHz(p, MHz);
  489. init->hes = hes;
  490. init->heb = heb;
  491. init->hsb = init->heb + (xres >> 3);
  492. init->ht = init->hsb + htp;
  493. init->ves = 0x0003;
  494. init->veb = veb;
  495. init->vsb = init->veb + yres;
  496. init->vt = init->vsb + vtp;
  497. init->vil = init->vsb;
  498. init->pitch = xres;
  499. return init;
  500. }
  501. static struct imstt_regvals *
  502. compute_imstt_regvals_tvp (struct fb_info_imstt *p, int xres, int yres)
  503. {
  504. struct imstt_regvals *init;
  505. switch (xres) {
  506. case 512:
  507. init = &tvp_reg_init_2;
  508. break;
  509. case 640:
  510. init = &tvp_reg_init_6;
  511. break;
  512. case 800:
  513. init = &tvp_reg_init_12;
  514. break;
  515. case 832:
  516. init = &tvp_reg_init_13;
  517. break;
  518. case 1024:
  519. init = &tvp_reg_init_17;
  520. break;
  521. case 1152:
  522. init = &tvp_reg_init_18;
  523. break;
  524. case 1280:
  525. init = yres == 960 ? &tvp_reg_init_19 : &tvp_reg_init_20;
  526. break;
  527. default:
  528. return 0;
  529. }
  530. p->init = *init;
  531. return init;
  532. }
  533. static struct imstt_regvals *
  534. compute_imstt_regvals (struct fb_info_imstt *p, u_int xres, u_int yres)
  535. {
  536. if (p->ramdac == IBM)
  537. return compute_imstt_regvals_ibm(p, xres, yres);
  538. else
  539. return compute_imstt_regvals_tvp(p, xres, yres);
  540. }
  541. static void
  542. set_imstt_regvals_ibm (struct fb_info_imstt *p, u_int bpp)
  543. {
  544. struct imstt_regvals *init = &p->init;
  545. __u8 pformat = (bpp >> 3) + 2;
  546. p->cmap_regs[PIDXHI] = 0; eieio();
  547. p->cmap_regs[PIDXLO] = PIXM0; eieio();
  548. p->cmap_regs[PIDXDATA] = init->pclk_m; eieio();
  549. p->cmap_regs[PIDXLO] = PIXN0; eieio();
  550. p->cmap_regs[PIDXDATA] = init->pclk_n; eieio();
  551. p->cmap_regs[PIDXLO] = PIXP0; eieio();
  552. p->cmap_regs[PIDXDATA] = init->pclk_p; eieio();
  553. p->cmap_regs[PIDXLO] = PIXC0; eieio();
  554. p->cmap_regs[PIDXDATA] = 0x02; eieio();
  555. p->cmap_regs[PIDXLO] = PIXFMT; eieio();
  556. p->cmap_regs[PIDXDATA] = pformat; eieio();
  557. }
  558. static void
  559. set_imstt_regvals_tvp (struct fb_info_imstt *p, u_int bpp)
  560. {
  561. struct imstt_regvals *init = &p->init;
  562. __u8 tcc, mxc, lckl_n, mic;
  563. __u8 mlc, lckl_p;
  564. switch (bpp) {
  565. case 8:
  566. tcc = 0x80;
  567. mxc = 0x4d;
  568. lckl_n = 0xc1;
  569. mlc = init->mlc[0];
  570. lckl_p = init->lckl_p[0];
  571. break;
  572. case 16:
  573. tcc = 0x44;
  574. mxc = 0x55;
  575. lckl_n = 0xe1;
  576. mlc = init->mlc[1];
  577. lckl_p = init->lckl_p[1];
  578. break;
  579. case 24:
  580. tcc = 0x5e;
  581. mxc = 0x5d;
  582. lckl_n = 0xf1;
  583. mlc = init->mlc[2];
  584. lckl_p = init->lckl_p[2];
  585. break;
  586. case 32:
  587. tcc = 0x46;
  588. mxc = 0x5d;
  589. lckl_n = 0xf1;
  590. mlc = init->mlc[2];
  591. lckl_p = init->lckl_p[2];
  592. break;
  593. }
  594. mic = 0x08;
  595. p->cmap_regs[TVPADDRW] = TVPIRPLA; eieio();
  596. p->cmap_regs[TVPIDATA] = 0x00; eieio();
  597. p->cmap_regs[TVPADDRW] = TVPIRPPD; eieio();
  598. p->cmap_regs[TVPIDATA] = init->pclk_m; eieio();
  599. p->cmap_regs[TVPADDRW] = TVPIRPPD; eieio();
  600. p->cmap_regs[TVPIDATA] = init->pclk_n; eieio();
  601. p->cmap_regs[TVPADDRW] = TVPIRPPD; eieio();
  602. p->cmap_regs[TVPIDATA] = init->pclk_p; eieio();
  603. p->cmap_regs[TVPADDRW] = TVPIRTCC; eieio();
  604. p->cmap_regs[TVPIDATA] = tcc; eieio();
  605. p->cmap_regs[TVPADDRW] = TVPIRMXC; eieio();
  606. p->cmap_regs[TVPIDATA] = mxc; eieio();
  607. p->cmap_regs[TVPADDRW] = TVPIRMIC; eieio();
  608. p->cmap_regs[TVPIDATA] = mic; eieio();
  609. p->cmap_regs[TVPADDRW] = TVPIRPLA; eieio();
  610. p->cmap_regs[TVPIDATA] = 0x00; eieio();
  611. p->cmap_regs[TVPADDRW] = TVPIRLPD; eieio();
  612. p->cmap_regs[TVPIDATA] = lckl_n; eieio();
  613. p->cmap_regs[TVPADDRW] = TVPIRPLA; eieio();
  614. p->cmap_regs[TVPIDATA] = 0x15; eieio();
  615. p->cmap_regs[TVPADDRW] = TVPIRMLC; eieio();
  616. p->cmap_regs[TVPIDATA] = mlc; eieio();
  617. p->cmap_regs[TVPADDRW] = TVPIRPLA; eieio();
  618. p->cmap_regs[TVPIDATA] = 0x2a; eieio();
  619. p->cmap_regs[TVPADDRW] = TVPIRLPD; eieio();
  620. p->cmap_regs[TVPIDATA] = lckl_p; eieio();
  621. }
  622. static void
  623. set_imstt_regvals (struct fb_info_imstt *p, u_int bpp)
  624. {
  625. struct imstt_regvals *init = &p->init;
  626. __u32 ctl, pitch, byteswap, scr;
  627. if (p->ramdac == IBM)
  628. set_imstt_regvals_ibm(p, bpp);
  629. else
  630. set_imstt_regvals_tvp(p, bpp);
  631.   /*
  632.    * From what I (jsk) can gather poking around with MacsBug,
  633.    * bits 8 and 9 in the SCR register control endianness
  634.    * correction (byte swapping).  These bits must be set according
  635.    * to the color depth as follows:
  636.    *     Color depth    Bit 9   Bit 8
  637.    *     ==========     =====   =====
  638.    *        8bpp          0       0
  639.    *       16bpp          0       1
  640.    *       32bpp          1       1
  641.    */
  642. switch (bpp) {
  643. case 8:
  644. ctl = 0x17b1;
  645. pitch = init->pitch >> 2;
  646. byteswap = 0x000;
  647. break;
  648. case 16:
  649. ctl = 0x17b3;
  650. pitch = init->pitch >> 1;
  651. byteswap = 0x100;
  652. break;
  653. case 24:
  654. ctl = 0x17b9;
  655. pitch = init->pitch - (p->init.pitch >> 2);
  656. byteswap = 0x200;
  657. break;
  658. case 32:
  659. ctl = 0x17b5;
  660. pitch = init->pitch;
  661. byteswap = 0x300;
  662. break;
  663. }
  664. if (p->ramdac == TVP)
  665. ctl -= 0x30;
  666. out_le32(&p->dc_regs[HES], init->hes);
  667. out_le32(&p->dc_regs[HEB], init->heb);
  668. out_le32(&p->dc_regs[HSB], init->hsb);
  669. out_le32(&p->dc_regs[HT], init->ht);
  670. out_le32(&p->dc_regs[VES], init->ves);
  671. out_le32(&p->dc_regs[VEB], init->veb);
  672. out_le32(&p->dc_regs[VSB], init->vsb);
  673. out_le32(&p->dc_regs[VT], init->vt);
  674. out_le32(&p->dc_regs[VIL], init->vil);
  675. out_le32(&p->dc_regs[HCIV], 1);
  676. out_le32(&p->dc_regs[VCIV], 1);
  677. out_le32(&p->dc_regs[TCDR], 4);
  678. out_le32(&p->dc_regs[RRCIV], 1);
  679. out_le32(&p->dc_regs[RRSC], 0x980);
  680. out_le32(&p->dc_regs[RRCR], 0x11);
  681. if (p->ramdac == IBM) {
  682. out_le32(&p->dc_regs[HRIR], 0x0100);
  683. out_le32(&p->dc_regs[CMR], 0x00ff);
  684. out_le32(&p->dc_regs[SRGCTL], 0x0073);
  685. } else {
  686. out_le32(&p->dc_regs[HRIR], 0x0200);
  687. out_le32(&p->dc_regs[CMR], 0x01ff);
  688. out_le32(&p->dc_regs[SRGCTL], 0x0003);
  689. }
  690. switch (p->total_vram) {
  691. case 0x200000:
  692. scr = 0x059d | byteswap;
  693. break;
  694. /* case 0x400000:
  695.    case 0x800000: */
  696. default:
  697. pitch >>= 1;
  698. scr = 0x150dd | byteswap;
  699. break;
  700. }
  701. out_le32(&p->dc_regs[SCR], scr);
  702. out_le32(&p->dc_regs[SPR], pitch);
  703. out_le32(&p->dc_regs[STGCTL], ctl);
  704. }
  705. static inline void
  706. set_offset (struct display *disp, struct fb_info_imstt *p)
  707. {
  708. __u32 off = disp->var.yoffset * (disp->line_length >> 3)
  709.     + ((disp->var.xoffset * (disp->var.bits_per_pixel >> 3)) >> 3);
  710. out_le32(&p->dc_regs[SSR], off);
  711. }
  712. static inline void
  713. set_555 (struct fb_info_imstt *p)
  714. {
  715. if (p->ramdac == IBM) {
  716. p->cmap_regs[PIDXHI] = 0; eieio();
  717. p->cmap_regs[PIDXLO] = BPP16; eieio();
  718. p->cmap_regs[PIDXDATA] = 0x01; eieio();
  719. } else {
  720. p->cmap_regs[TVPADDRW] = TVPIRTCC; eieio();
  721. p->cmap_regs[TVPIDATA] = 0x44; eieio();
  722. }
  723. }
  724. static inline void
  725. set_565 (struct fb_info_imstt *p)
  726. {
  727. if (p->ramdac == IBM) {
  728. p->cmap_regs[PIDXHI] = 0; eieio();
  729. p->cmap_regs[PIDXLO] = BPP16; eieio();
  730. p->cmap_regs[PIDXDATA] = 0x03; eieio();
  731. } else {
  732. p->cmap_regs[TVPADDRW] = TVPIRTCC; eieio();
  733. p->cmap_regs[TVPIDATA] = 0x45; eieio();
  734. }
  735. }
  736. static void
  737. imstt_set_cursor (struct fb_info_imstt *p, int on)
  738. {
  739. struct imstt_cursor *c = &p->cursor;
  740. if (p->ramdac == IBM) {
  741. p->cmap_regs[PIDXHI] = 0; eieio();
  742. if (!on) {
  743. p->cmap_regs[PIDXLO] = CURSCTL; eieio();
  744. p->cmap_regs[PIDXDATA] = 0x00; eieio();
  745. } else {
  746. p->cmap_regs[PIDXLO] = CURSXHI; eieio();
  747. p->cmap_regs[PIDXDATA] = c->x >> 8; eieio();
  748. p->cmap_regs[PIDXLO] = CURSXLO; eieio();
  749. p->cmap_regs[PIDXDATA] = c->x & 0xff; eieio();
  750. p->cmap_regs[PIDXLO] = CURSYHI; eieio();
  751. p->cmap_regs[PIDXDATA] = c->y >> 8; eieio();
  752. p->cmap_regs[PIDXLO] = CURSYLO; eieio();
  753. p->cmap_regs[PIDXDATA] = c->y & 0xff; eieio();
  754. p->cmap_regs[PIDXLO] = CURSCTL; eieio();
  755. p->cmap_regs[PIDXDATA] = 0x02; eieio();
  756. }
  757. } else {
  758. if (!on) {
  759. p->cmap_regs[TVPADDRW] = TVPIRICC; eieio();
  760. p->cmap_regs[TVPIDATA] = 0x00; eieio();
  761. } else {
  762. __u16 x = c->x + 0x40, y = c->y + 0x40;
  763. p->cmap_regs[TVPCXPOH] = x >> 8; eieio();
  764. p->cmap_regs[TVPCXPOL] = x & 0xff; eieio();
  765. p->cmap_regs[TVPCYPOH] = y >> 8; eieio();
  766. p->cmap_regs[TVPCYPOL] = y & 0xff; eieio();
  767. p->cmap_regs[TVPADDRW] = TVPIRICC; eieio();
  768. p->cmap_regs[TVPIDATA] = 0x02; eieio();
  769. }
  770. }
  771. }
  772. static void
  773. imsttfbcon_cursor (struct display *disp, int mode, int x, int y)
  774. {
  775. struct fb_info_imstt *p = (struct fb_info_imstt *)disp->fb_info;
  776. struct imstt_cursor *c = &p->cursor;
  777. x *= fontwidth(disp);
  778. y *= fontheight(disp);
  779. if (c->x == x && c->y == y && (mode == CM_ERASE) == !c->enable)
  780. return;
  781. c->enable = 0;
  782. if (c->on)
  783. imstt_set_cursor(p, 0);
  784. c->x = x - disp->var.xoffset;
  785. c->y = y - disp->var.yoffset;
  786. switch (mode) {
  787. case CM_ERASE:
  788. c->on = 0;
  789. break;
  790. case CM_DRAW:
  791. case CM_MOVE:
  792. if (c->on)
  793. imstt_set_cursor(p, c->on);
  794. else
  795. c->vbl_cnt = CURSOR_DRAW_DELAY;
  796. c->enable = 1;
  797. break;
  798. }
  799. }
  800. static int
  801. imsttfbcon_set_font (struct display *disp, int width, int height)
  802. {
  803. struct fb_info_imstt *p = (struct fb_info_imstt *)disp->fb_info;
  804. struct imstt_cursor *c = &p->cursor;
  805. u_int x, y;
  806. __u8 fgc;
  807. if (width > 32 || height > 32)
  808. return -EINVAL;
  809. c->height = height;
  810. c->width = width;
  811. fgc = ~attr_bgcol_ec(disp, disp->conp);
  812. if (p->ramdac == IBM) {
  813. p->cmap_regs[PIDXHI] = 1; eieio();
  814. for (x = 0; x < 0x100; x++) {
  815. p->cmap_regs[PIDXLO] = x; eieio();
  816. p->cmap_regs[PIDXDATA] = 0x00; eieio();
  817. }
  818. p->cmap_regs[PIDXHI] = 1; eieio();
  819. for (y = 0; y < height; y++)
  820. for (x = 0; x < width >> 2; x++) {
  821. p->cmap_regs[PIDXLO] = x + y * 8; eieio();
  822. p->cmap_regs[PIDXDATA] = 0xff; eieio();
  823. }
  824. p->cmap_regs[PIDXHI] = 0; eieio();
  825. p->cmap_regs[PIDXLO] = CURS1R; eieio();
  826. p->cmap_regs[PIDXDATA] = fgc; eieio();
  827. p->cmap_regs[PIDXLO] = CURS1G; eieio();
  828. p->cmap_regs[PIDXDATA] = fgc; eieio();
  829. p->cmap_regs[PIDXLO] = CURS1B; eieio();
  830. p->cmap_regs[PIDXDATA] = fgc; eieio();
  831. p->cmap_regs[PIDXLO] = CURS2R; eieio();
  832. p->cmap_regs[PIDXDATA] = fgc; eieio();
  833. p->cmap_regs[PIDXLO] = CURS2G; eieio();
  834. p->cmap_regs[PIDXDATA] = fgc; eieio();
  835. p->cmap_regs[PIDXLO] = CURS2B; eieio();
  836. p->cmap_regs[PIDXDATA] = fgc; eieio();
  837. p->cmap_regs[PIDXLO] = CURS3R; eieio();
  838. p->cmap_regs[PIDXDATA] = fgc; eieio();
  839. p->cmap_regs[PIDXLO] = CURS3G; eieio();
  840. p->cmap_regs[PIDXDATA] = fgc; eieio();
  841. p->cmap_regs[PIDXLO] = CURS3B; eieio();
  842. p->cmap_regs[PIDXDATA] = fgc; eieio();
  843. } else {
  844. p->cmap_regs[TVPADDRW] = TVPIRICC; eieio();
  845. p->cmap_regs[TVPIDATA] &= 0x03; eieio();
  846. p->cmap_regs[TVPADDRW] = 0; eieio();
  847. for (x = 0; x < 0x200; x++) {
  848. p->cmap_regs[TVPCRDAT] = 0x00; eieio();
  849. }
  850. for (x = 0; x < 0x200; x++) {
  851. p->cmap_regs[TVPCRDAT] = 0xff; eieio();
  852. }
  853. p->cmap_regs[TVPADDRW] = TVPIRICC; eieio();
  854. p->cmap_regs[TVPIDATA] &= 0x03; eieio();
  855. for (y = 0; y < height; y++)
  856. for (x = 0; x < width >> 3; x++) {
  857. p->cmap_regs[TVPADDRW] = x + y * 8; eieio();
  858. p->cmap_regs[TVPCRDAT] = 0xff; eieio();
  859. }
  860. p->cmap_regs[TVPADDRW] = TVPIRICC; eieio();
  861. p->cmap_regs[TVPIDATA] |= 0x08; eieio();
  862. for (y = 0; y < height; y++)
  863. for (x = 0; x < width >> 3; x++) {
  864. p->cmap_regs[TVPADDRW] = x + y * 8; eieio();
  865. p->cmap_regs[TVPCRDAT] = 0xff; eieio();
  866. }
  867. p->cmap_regs[TVPCADRW] = 0x00; eieio();
  868. for (x = 0; x < 12; x++) {
  869. p->cmap_regs[TVPCDATA] = fgc; eieio();
  870. }
  871. }
  872. return 1;
  873. }
  874. static void
  875. imstt_cursor_timer_handler (unsigned long dev_addr)
  876. {
  877. struct fb_info_imstt *p = (struct fb_info_imstt *)dev_addr;
  878. struct imstt_cursor *c = &p->cursor;
  879. if (!c->enable)
  880. goto out;
  881. if (c->vbl_cnt && --c->vbl_cnt == 0) {
  882. c->on ^= 1;
  883. imstt_set_cursor(p, c->on);
  884. c->vbl_cnt = c->blink_rate;
  885. }
  886. out:
  887. c->timer.expires = jiffies + (HZ / 50);
  888. add_timer(&c->timer);
  889. }
  890. static void __init 
  891. imstt_cursor_init (struct fb_info_imstt *p)
  892. {
  893. struct imstt_cursor *c = &p->cursor;
  894. imsttfbcon_set_font(&p->disp, fontwidth(&p->disp), fontheight(&p->disp));
  895. c->enable = 1;
  896. c->on = 1;
  897. c->x = c->y = 0;
  898. c->blink_rate = 0;
  899. c->vbl_cnt = CURSOR_DRAW_DELAY;
  900. if (curblink) {
  901. c->blink_rate = CURSOR_BLINK_RATE;
  902. init_timer(&c->timer);
  903. c->timer.expires = jiffies + (HZ / 50);
  904. c->timer.data = (unsigned long)p;
  905. c->timer.function = imstt_cursor_timer_handler;
  906. add_timer(&c->timer);
  907. }
  908. }
  909. static void
  910. imsttfbcon_bmove (struct display *disp, int sy, int sx, int dy, int dx, int height, int width)
  911. {
  912. struct fb_info_imstt *p = (struct fb_info_imstt *)disp->fb_info;
  913. __u32 Bpp, line_pitch,
  914. fb_offset_old, fb_offset_new,
  915. sp, dp_octl, cnt, bltctl;
  916. Bpp = disp->var.bits_per_pixel >> 3,
  917. sy *= fontheight(disp);
  918. sx *= fontwidth(disp);
  919. sx *= Bpp;
  920. dy *= fontheight(disp);
  921. dx *= fontwidth(disp);
  922. dx *= Bpp;
  923. height *= fontheight(disp);
  924. height--;
  925. width *= fontwidth(disp);
  926. width *= Bpp;
  927. width--;
  928. line_pitch = disp->line_length;
  929. bltctl = 0x05;
  930. sp = line_pitch << 16;
  931. cnt = height << 16;
  932. if (sy < dy) {
  933. sy += height;
  934. dy += height;
  935. sp |= -(line_pitch) & 0xffff;
  936. dp_octl = -(line_pitch) & 0xffff;
  937. } else {
  938. sp |= line_pitch;
  939. dp_octl = line_pitch;
  940. }
  941. if (sx < dx) {
  942. sx += width;
  943. dx += width;
  944. bltctl |= 0x80;
  945. cnt |= -(width) & 0xffff;
  946. } else {
  947. cnt |= width;
  948. }
  949. fb_offset_old = sy * line_pitch + sx;
  950. fb_offset_new = dy * line_pitch + dx;
  951. while(in_le32(&p->dc_regs[SSTATUS]) & 0x80);
  952. out_le32(&p->dc_regs[S1SA], fb_offset_old);
  953. out_le32(&p->dc_regs[SP], sp);
  954. out_le32(&p->dc_regs[DSA], fb_offset_new);
  955. out_le32(&p->dc_regs[CNT], cnt);
  956. out_le32(&p->dc_regs[DP_OCTL], dp_octl);
  957. out_le32(&p->dc_regs[BLTCTL], bltctl);
  958. while(in_le32(&p->dc_regs[SSTATUS]) & 0x80);
  959. while(in_le32(&p->dc_regs[SSTATUS]) & 0x40);
  960. }
  961. static void
  962. imsttfbcon_clear (struct vc_data *conp, struct display *disp,
  963.   int sy, int sx, int height, int width)
  964. {
  965. struct fb_info_imstt *p = (struct fb_info_imstt *)disp->fb_info;
  966. __u32 Bpp, line_pitch, bgc;
  967. bgc = attr_bgcol_ec(disp, conp);
  968. bgc |= (bgc << 8);
  969. bgc |= (bgc << 16);
  970. Bpp = disp->var.bits_per_pixel >> 3,
  971. line_pitch = disp->line_length;
  972. sy *= fontheight(disp);
  973. sy *= line_pitch;
  974. sx *= fontwidth(disp);
  975. sx *= Bpp;
  976. height *= fontheight(disp);
  977. height--;
  978. width *= fontwidth(disp);
  979. width *= Bpp;
  980. width--;
  981. while(in_le32(&p->dc_regs[SSTATUS]) & 0x80);
  982. out_le32(&p->dc_regs[DSA], sy + sx);
  983. out_le32(&p->dc_regs[CNT], (height << 16) | width);
  984. out_le32(&p->dc_regs[DP_OCTL], line_pitch);
  985. out_le32(&p->dc_regs[BI], 0xffffffff);
  986. out_le32(&p->dc_regs[MBC], 0xffffffff);
  987. out_le32(&p->dc_regs[CLR], bgc);
  988. out_le32(&p->dc_regs[BLTCTL], 0x840); /* 0x200000 */
  989. while(in_le32(&p->dc_regs[SSTATUS]) & 0x80);
  990. while(in_le32(&p->dc_regs[SSTATUS]) & 0x40);
  991. }
  992. static void
  993. imsttfbcon_revc (struct display *disp, int sx, int sy)
  994. {
  995. struct fb_info_imstt *p = (struct fb_info_imstt *)disp->fb_info;
  996. __u32 Bpp, line_pitch, height, width;
  997. Bpp = disp->var.bits_per_pixel >> 3,
  998. line_pitch = disp->line_length;
  999. height = fontheight(disp);
  1000. width = fontwidth(disp) * Bpp;
  1001. sy *= height;
  1002. sy *= line_pitch;
  1003. sx *= width;
  1004. height--;
  1005. width--;
  1006. while(in_le32(&p->dc_regs[SSTATUS]) & 0x80);
  1007. out_le32(&p->dc_regs[DSA], sy + sx);
  1008. out_le32(&p->dc_regs[S1SA], sy + sx);
  1009. out_le32(&p->dc_regs[CNT], (height << 16) | width);
  1010. out_le32(&p->dc_regs[DP_OCTL], line_pitch);
  1011. out_le32(&p->dc_regs[SP], line_pitch);
  1012. out_le32(&p->dc_regs[BLTCTL], 0x40005);
  1013. while(in_le32(&p->dc_regs[SSTATUS]) & 0x80);
  1014. while(in_le32(&p->dc_regs[SSTATUS]) & 0x40);
  1015. }
  1016. #ifdef FBCON_HAS_CFB8
  1017. static struct display_switch fbcon_imstt8 = {
  1018. setup: fbcon_cfb8_setup,
  1019. bmove: imsttfbcon_bmove,
  1020. clear: imsttfbcon_clear,
  1021. putc: fbcon_cfb8_putc,
  1022. putcs: fbcon_cfb8_putcs,
  1023. revc: imsttfbcon_revc,
  1024. cursor: imsttfbcon_cursor,
  1025. set_font: imsttfbcon_set_font,
  1026. clear_margins: fbcon_cfb8_clear_margins,
  1027. fontwidthmask: FONTWIDTH(4)|FONTWIDTH(8)|FONTWIDTH(12)|FONTWIDTH(16)
  1028. };
  1029. #endif
  1030. #ifdef FBCON_HAS_CFB16
  1031. static struct display_switch fbcon_imstt16 = {
  1032. setup: fbcon_cfb16_setup,
  1033. bmove: imsttfbcon_bmove,
  1034. clear: imsttfbcon_clear,
  1035. putc: fbcon_cfb16_putc,
  1036. putcs: fbcon_cfb16_putcs,
  1037. revc: imsttfbcon_revc,
  1038. cursor: imsttfbcon_cursor,
  1039. set_font: imsttfbcon_set_font,
  1040. clear_margins: fbcon_cfb16_clear_margins,
  1041. fontwidthmask: FONTWIDTH(4)|FONTWIDTH(8)|FONTWIDTH(12)|FONTWIDTH(16)
  1042. };
  1043. #endif
  1044. #ifdef FBCON_HAS_CFB24
  1045. static struct display_switch fbcon_imstt24 = {
  1046. setup: fbcon_cfb24_setup,
  1047. bmove: imsttfbcon_bmove,
  1048. clear: imsttfbcon_clear,
  1049. putc: fbcon_cfb24_putc,
  1050. putcs: fbcon_cfb24_putcs,
  1051. revc: imsttfbcon_revc,
  1052. cursor: imsttfbcon_cursor,
  1053. set_font: imsttfbcon_set_font,
  1054. clear_margins: fbcon_cfb24_clear_margins,
  1055. fontwidthmask: FONTWIDTH(4)|FONTWIDTH(8)|FONTWIDTH(12)|FONTWIDTH(16)
  1056. };
  1057. #endif
  1058. #ifdef FBCON_HAS_CFB32
  1059. static struct display_switch fbcon_imstt32 = {
  1060. setup: fbcon_cfb32_setup,
  1061. bmove: imsttfbcon_bmove,
  1062. clear: imsttfbcon_clear,
  1063. putc: fbcon_cfb32_putc,
  1064. putcs: fbcon_cfb32_putcs,
  1065. revc: imsttfbcon_revc,
  1066. cursor: imsttfbcon_cursor,
  1067. set_font: imsttfbcon_set_font,
  1068. clear_margins: fbcon_cfb32_clear_margins,
  1069. fontwidthmask: FONTWIDTH(4)|FONTWIDTH(8)|FONTWIDTH(12)|FONTWIDTH(16)
  1070. };
  1071. #endif
  1072. #ifdef CONFIG_FB_COMPAT_XPMAC
  1073. #include <asm/vc_ioctl.h>
  1074. extern struct vc_mode display_info;
  1075. extern struct fb_info *console_fb_info;
  1076. static void
  1077. set_display_info (struct display *disp)
  1078. {
  1079. display_info.width = disp->var.xres;
  1080. display_info.height = disp->var.yres;
  1081. display_info.depth = disp->var.bits_per_pixel;
  1082. display_info.pitch = disp->line_length;
  1083. switch (disp->var.xres) {
  1084. case 512:
  1085. display_info.mode = 2;
  1086. break;
  1087. case 640:
  1088. display_info.mode = 6;
  1089. break;
  1090. case 800:
  1091. display_info.mode = 12;
  1092. break;
  1093. case 832:
  1094. display_info.mode = 13;
  1095. break;
  1096. case 1024:
  1097. display_info.mode = 17;
  1098. break;
  1099. case 1152:
  1100. display_info.mode = 18;
  1101. break;
  1102. case 1280:
  1103. display_info.mode = disp->var.yres == 960 ? 19 : 20;
  1104. break;
  1105. default:
  1106. display_info.mode = 0;
  1107. }
  1108. }
  1109. #endif
  1110. static int
  1111. imsttfb_getcolreg (u_int regno, u_int *red, u_int *green,
  1112.    u_int *blue, u_int *transp, struct fb_info *info)
  1113. {
  1114. struct fb_info_imstt *p = (struct fb_info_imstt *)info;
  1115. if (regno > 255)
  1116. return 1;
  1117. *red = (p->palette[regno].red << 8) | p->palette[regno].red;
  1118. *green = (p->palette[regno].green << 8) | p->palette[regno].green;
  1119. *blue = (p->palette[regno].blue << 8) | p->palette[regno].blue;
  1120. *transp = 0;
  1121. return 0;
  1122. }
  1123. static int
  1124. imsttfb_setcolreg (u_int regno, u_int red, u_int green, u_int blue,
  1125.    u_int transp, struct fb_info *info)
  1126. {
  1127. struct fb_info_imstt *p = (struct fb_info_imstt *)info;
  1128. u_int bpp = fb_display[currcon].var.bits_per_pixel;
  1129. if (regno > 255)
  1130. return 1;
  1131. red >>= 8;
  1132. green >>= 8;
  1133. blue >>= 8;
  1134. p->palette[regno].red = red;
  1135. p->palette[regno].green = green;
  1136. p->palette[regno].blue = blue;
  1137. /* PADDRW/PDATA are the same as TVPPADDRW/TVPPDATA */
  1138. if (0 && bpp == 16) /* screws up X */
  1139. p->cmap_regs[PADDRW] = regno << 3;
  1140. else
  1141. p->cmap_regs[PADDRW] = regno;
  1142. eieio();
  1143. p->cmap_regs[PDATA] = red; eieio();
  1144. p->cmap_regs[PDATA] = green; eieio();
  1145. p->cmap_regs[PDATA] = blue; eieio();
  1146. if (regno < 16)
  1147. switch (bpp) {
  1148. #ifdef FBCON_HAS_CFB16
  1149. case 16:
  1150. p->fbcon_cmap.cfb16[regno] = (regno << (fb_display[currcon].var.green.length == 5 ? 10 : 11)) | (regno << 5) | regno;
  1151. break;
  1152. #endif
  1153. #ifdef FBCON_HAS_CFB24
  1154. case 24:
  1155. p->fbcon_cmap.cfb24[regno] = (regno << 16) | (regno << 8) | regno;
  1156. break;
  1157. #endif
  1158. #ifdef FBCON_HAS_CFB32
  1159. case 32: {
  1160. int i = (regno << 8) | regno;
  1161. p->fbcon_cmap.cfb32[regno] = (i << 16) | i;
  1162. break;
  1163. }
  1164. #endif
  1165. }
  1166. return 0;
  1167. }
  1168. static void
  1169. do_install_cmap (int con, struct fb_info *info)
  1170. {
  1171. if (fb_display[con].cmap.len)
  1172. fb_set_cmap(&fb_display[con].cmap, 1, imsttfb_setcolreg, info);
  1173. else {
  1174. u_int size = fb_display[con].var.bits_per_pixel == 16 ? 32 : 256;
  1175. fb_set_cmap(fb_default_cmap(size), 1, imsttfb_setcolreg, info);
  1176. }
  1177. }
  1178. static int
  1179. imsttfb_get_fix (struct fb_fix_screeninfo *fix, int con, struct fb_info *info)
  1180. {
  1181. struct fb_info_imstt *p = (struct fb_info_imstt *)info;
  1182. struct fb_var_screeninfo *var = &fb_display[con].var;
  1183. *fix = p->fix;
  1184. fix->visual = var->bits_per_pixel == 8 ? FB_VISUAL_PSEUDOCOLOR
  1185.        : FB_VISUAL_DIRECTCOLOR;
  1186. fix->line_length = var->xres * (var->bits_per_pixel >> 3);
  1187. return 0;
  1188. }
  1189. static int
  1190. imsttfb_get_var (struct fb_var_screeninfo *var, int con, struct fb_info *info)
  1191. {
  1192. *var = fb_display[con].var;
  1193. return 0;
  1194. }
  1195. static void
  1196. set_dispsw (struct display *disp, struct fb_info_imstt *p)
  1197. {
  1198. u_int accel = disp->var.accel_flags & FB_ACCELF_TEXT;
  1199. if (disp->conp && disp->conp->vc_sw && disp->conp->vc_sw->con_cursor)
  1200. disp->conp->vc_sw->con_cursor(disp->conp, CM_ERASE);
  1201. p->dispsw = fbcon_dummy;
  1202. disp->dispsw = &p->dispsw;
  1203. disp->dispsw_data = 0;
  1204. switch (disp->var.bits_per_pixel) {
  1205. case 8:
  1206. disp->var.red.offset = 0;
  1207. disp->var.red.length = 8;
  1208. disp->var.green.offset = 0;
  1209. disp->var.green.length = 8;
  1210. disp->var.blue.offset = 0;
  1211. disp->var.blue.length = 8;
  1212. disp->var.transp.offset = 0;
  1213. disp->var.transp.length = 0;
  1214. #ifdef FBCON_HAS_CFB8
  1215. p->dispsw = accel ? fbcon_imstt8 : fbcon_cfb8;
  1216. #endif
  1217. break;
  1218. case 16: /* RGB 555 or 565 */
  1219. if (disp->var.green.length != 6)
  1220. disp->var.red.offset = 10;
  1221. disp->var.red.length = 5;
  1222. disp->var.green.offset = 5;
  1223. if (disp->var.green.length != 6)
  1224. disp->var.green.length = 5;
  1225. disp->var.blue.offset = 0;
  1226. disp->var.blue.length = 5;
  1227. disp->var.transp.offset = 0;
  1228. disp->var.transp.length = 0;
  1229. #ifdef FBCON_HAS_CFB16
  1230. p->dispsw = accel ? fbcon_imstt16 : fbcon_cfb16;
  1231. disp->dispsw_data = p->fbcon_cmap.cfb16;
  1232. #endif
  1233. break;
  1234. case 24: /* RGB 888 */
  1235. disp->var.red.offset = 16;
  1236. disp->var.red.length = 8;
  1237. disp->var.green.offset = 8;
  1238. disp->var.green.length = 8;
  1239. disp->var.blue.offset = 0;
  1240. disp->var.blue.length = 8;
  1241. disp->var.transp.offset = 0;
  1242. disp->var.transp.length = 0;
  1243. #ifdef FBCON_HAS_CFB24
  1244. p->dispsw = accel ? fbcon_imstt24 : fbcon_cfb24;
  1245. disp->dispsw_data = p->fbcon_cmap.cfb24;
  1246. #endif
  1247. break;
  1248. case 32: /* RGBA 8888 */
  1249. disp->var.red.offset = 16;
  1250. disp->var.red.length = 8;
  1251. disp->var.green.offset = 8;
  1252. disp->var.green.length = 8;
  1253. disp->var.blue.offset = 0;
  1254. disp->var.blue.length = 8;
  1255. disp->var.transp.offset = 24;
  1256. disp->var.transp.length = 8;
  1257. #ifdef FBCON_HAS_CFB32
  1258. p->dispsw = accel ? fbcon_imstt32 : fbcon_cfb32;
  1259. disp->dispsw_data = p->fbcon_cmap.cfb32;
  1260. #endif
  1261. break;
  1262. }
  1263. if (accel && p->ramdac != IBM) {
  1264. p->dispsw.cursor = 0;
  1265. p->dispsw.set_font = 0;
  1266. }
  1267. #ifdef CONFIG_FB_COMPAT_XPMAC
  1268. set_display_info(disp);
  1269. #endif
  1270. }
  1271. static void
  1272. set_disp (struct display *disp, struct fb_info_imstt *p)
  1273. {
  1274. u_int accel = disp->var.accel_flags & FB_ACCELF_TEXT;
  1275. disp->fb_info = &p->info;
  1276. set_dispsw(disp, p);
  1277. disp->visual = disp->var.bits_per_pixel == 8 ? FB_VISUAL_PSEUDOCOLOR
  1278.        : FB_VISUAL_DIRECTCOLOR;
  1279. disp->screen_base = (__u8 *)p->frame_buffer;
  1280. disp->visual = p->fix.visual;
  1281. disp->type = p->fix.type;
  1282. disp->type_aux = p->fix.type_aux;
  1283. disp->line_length = disp->var.xres * (disp->var.bits_per_pixel >> 3);
  1284. disp->can_soft_blank = 1;
  1285. disp->inverse = inverse;
  1286. disp->ypanstep = 1;
  1287. disp->ywrapstep = 0;
  1288. if (accel) {
  1289. disp->scrollmode = SCROLL_YNOMOVE;
  1290. if (disp->var.yres == disp->var.yres_virtual) {
  1291. __u32 vram = (p->total_vram - (PAGE_SIZE << 2));
  1292. disp->var.yres_virtual = ((vram << 3) / disp->var.bits_per_pixel) / disp->var.xres_virtual;
  1293. if (disp->var.yres_virtual < disp->var.yres)
  1294. disp->var.yres_virtual = disp->var.yres;
  1295. }
  1296. } else {
  1297. disp->scrollmode = SCROLL_YREDRAW;
  1298. }
  1299. disp->var.activate = 0;
  1300. disp->var.red.msb_right = 0;
  1301. disp->var.green.msb_right = 0;
  1302. disp->var.blue.msb_right = 0;
  1303. disp->var.transp.msb_right = 0;
  1304. disp->var.height = -1;
  1305. disp->var.width = -1;
  1306. disp->var.vmode = FB_VMODE_NONINTERLACED;
  1307. disp->var.left_margin = disp->var.right_margin = 16;
  1308. disp->var.upper_margin = disp->var.lower_margin = 16;
  1309. disp->var.hsync_len = disp->var.vsync_len = 8;
  1310. }
  1311. static int
  1312. imsttfb_set_var (struct fb_var_screeninfo *var, int con, struct fb_info *info)
  1313. {
  1314. struct fb_info_imstt *p = (struct fb_info_imstt *)info;
  1315. struct display *disp;
  1316. u_int oldbpp, oldxres, oldyres, oldgreenlen, oldaccel;
  1317. disp = &fb_display[con];
  1318. if ((var->bits_per_pixel != 8 && var->bits_per_pixel != 16
  1319.     && var->bits_per_pixel != 24 && var->bits_per_pixel != 32)
  1320.     || var->xres_virtual < var->xres || var->yres_virtual < var->yres
  1321.     || var->nonstd
  1322.     || (var->vmode & FB_VMODE_MASK) != FB_VMODE_NONINTERLACED)
  1323. return -EINVAL;
  1324. if ((var->xres * var->yres) * (var->bits_per_pixel >> 3) > p->total_vram
  1325.     || (var->xres_virtual * var->yres_virtual) * (var->bits_per_pixel >> 3) > p->total_vram)
  1326. return -EINVAL;
  1327. if (!((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW))
  1328. return 0;
  1329. if (!compute_imstt_regvals(p, var->xres, var->yres))
  1330. return -EINVAL;
  1331. oldbpp = disp->var.bits_per_pixel;
  1332. oldxres = disp->var.xres;
  1333. oldyres = disp->var.yres;
  1334. oldgreenlen = disp->var.green.length;
  1335. oldaccel = disp->var.accel_flags;
  1336. disp->var.bits_per_pixel = var->bits_per_pixel;
  1337. disp->var.xres = var->xres;
  1338. disp->var.yres = var->yres;
  1339. disp->var.xres_virtual = var->xres_virtual;
  1340. disp->var.yres_virtual = var->yres_virtual;
  1341. disp->var.green.length = var->green.length;
  1342. disp->var.accel_flags = var->accel_flags;
  1343. set_disp(disp, p);
  1344. if (info->changevar)
  1345. (*info->changevar)(con);
  1346. if (con == currcon) {
  1347. if (oldgreenlen != disp->var.green.length) {
  1348. if (disp->var.green.length == 6)
  1349. set_565(p);
  1350. else
  1351. set_555(p);
  1352. }
  1353. if (oldxres != disp->var.xres || oldyres != disp->var.yres || oldbpp != disp->var.bits_per_pixel)
  1354. set_imstt_regvals(p, disp->var.bits_per_pixel);
  1355. }
  1356. disp->var.pixclock = 1000000 / getclkMHz(p);
  1357. if (oldbpp != disp->var.bits_per_pixel) {
  1358. int err = fb_alloc_cmap(&disp->cmap, 0, 0);
  1359. if (err)
  1360. return err;
  1361. do_install_cmap(con, info);
  1362. }
  1363. *var = disp->var;
  1364. return 0;
  1365. }
  1366. static int
  1367. imsttfb_pan_display (struct fb_var_screeninfo *var, int con, struct fb_info *info)
  1368. {
  1369. struct fb_info_imstt *p = (struct fb_info_imstt *)info;
  1370. struct display *disp = &fb_display[con];
  1371. if (var->xoffset + disp->var.xres > disp->var.xres_virtual
  1372.     || var->yoffset + disp->var.yres > disp->var.yres_virtual)
  1373. return -EINVAL;
  1374. disp->var.xoffset = var->xoffset;
  1375. disp->var.yoffset = var->yoffset;
  1376. if (con == currcon)
  1377. set_offset(disp, p);
  1378. return 0;
  1379. }
  1380. static int
  1381. imsttfb_get_cmap (struct fb_cmap *cmap, int kspc, int con, struct fb_info *info)
  1382. {
  1383. if (con == currcon) /* current console? */
  1384. return fb_get_cmap(cmap, kspc, imsttfb_getcolreg, info);
  1385. else if (fb_display[con].cmap.len) /* non default colormap? */
  1386. fb_copy_cmap(&fb_display[con].cmap, cmap, kspc ? 0 : 2);
  1387. else {
  1388. u_int size = fb_display[con].var.bits_per_pixel == 16 ? 32 : 256;
  1389. fb_copy_cmap(fb_default_cmap(size), cmap, kspc ? 0 : 2);
  1390. }
  1391. return 0;
  1392. }
  1393. static int
  1394. imsttfb_set_cmap (struct fb_cmap *cmap, int kspc, int con, struct fb_info *info)
  1395. {
  1396. int err;
  1397. if (!fb_display[con].cmap.len) { /* no colormap allocated? */
  1398. int size = fb_display[con].var.bits_per_pixel == 16 ? 32 : 256;
  1399. if ((err = fb_alloc_cmap(&fb_display[con].cmap, size, 0)))
  1400. return err;
  1401. }
  1402. if (con == currcon) /* current console? */
  1403. return fb_set_cmap(cmap, kspc, imsttfb_setcolreg, info);
  1404. else
  1405. fb_copy_cmap(cmap, &fb_display[con].cmap, kspc ? 0 : 1);
  1406. return 0;
  1407. }
  1408. #define FBIMSTT_SETREG 0x545401
  1409. #define FBIMSTT_GETREG 0x545402
  1410. #define FBIMSTT_SETCMAPREG 0x545403
  1411. #define FBIMSTT_GETCMAPREG 0x545404
  1412. #define FBIMSTT_SETIDXREG 0x545405
  1413. #define FBIMSTT_GETIDXREG 0x545406
  1414. static int
  1415. imsttfb_ioctl (struct inode *inode, struct file *file, u_int cmd,
  1416.        u_long arg, int con, struct fb_info *info)
  1417. {
  1418. struct fb_info_imstt *p = (struct fb_info_imstt *)info;
  1419. __u8 idx[2];
  1420. __u32 reg[2];
  1421. switch (cmd) {
  1422. case FBIMSTT_SETREG:
  1423. if (copy_from_user(reg, (void *)arg, 8) || reg[0] > (0x1000 - sizeof(reg[0])) / sizeof(reg[0]))
  1424. return -EFAULT;
  1425. out_le32(&p->dc_regs[reg[0]], reg[1]);
  1426. return 0;
  1427. case FBIMSTT_GETREG:
  1428. if (copy_from_user(reg, (void *)arg, 4) || reg[0] > (0x1000 - sizeof(reg[0])) / sizeof(reg[0]))
  1429. return -EFAULT;
  1430. reg[1] = in_le32(&p->dc_regs[reg[0]]);
  1431. if (copy_to_user((void *)(arg + 4), &reg[1], 4))
  1432. return -EFAULT;
  1433. return 0;
  1434. case FBIMSTT_SETCMAPREG:
  1435. if (copy_from_user(reg, (void *)arg, 8) || reg[0] > (0x1000 - sizeof(reg[0])) / sizeof(reg[0]))
  1436. return -EFAULT;
  1437. out_le32(&((u_int *)p->cmap_regs)[reg[0]], reg[1]);
  1438. return 0;
  1439. case FBIMSTT_GETCMAPREG:
  1440. if (copy_from_user(reg, (void *)arg, 4) || reg[0] > (0x1000 - sizeof(reg[0])) / sizeof(reg[0]))
  1441. return -EFAULT;
  1442. reg[1] = in_le32(&((u_int *)p->cmap_regs)[reg[0]]);
  1443. if (copy_to_user((void *)(arg + 4), &reg[1], 4))
  1444. return -EFAULT;
  1445. return 0;
  1446. case FBIMSTT_SETIDXREG:
  1447. if (copy_from_user(idx, (void *)arg, 2))
  1448. return -EFAULT;
  1449. p->cmap_regs[PIDXHI] = 0; eieio();
  1450. p->cmap_regs[PIDXLO] = idx[0]; eieio();
  1451. p->cmap_regs[PIDXDATA] = idx[1]; eieio();
  1452. return 0;
  1453. case FBIMSTT_GETIDXREG:
  1454. if (copy_from_user(idx, (void *)arg, 1))
  1455. return -EFAULT;
  1456. p->cmap_regs[PIDXHI] = 0; eieio();
  1457. p->cmap_regs[PIDXLO] = idx[0]; eieio();
  1458. idx[1] = p->cmap_regs[PIDXDATA];
  1459. if (copy_to_user((void *)(arg + 1), &idx[1], 1))
  1460. return -EFAULT;
  1461. return 0;
  1462. default:
  1463. return -ENOIOCTLCMD;
  1464. }
  1465. }
  1466. static struct pci_device_id imsttfb_pci_tbl[] __devinitdata = {
  1467. { PCI_VENDOR_ID_IMS, PCI_DEVICE_ID_IMS_TT128,
  1468.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, IBM },
  1469. { PCI_VENDOR_ID_IMS, PCI_DEVICE_ID_IMS_TT3D,
  1470.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, TVP },
  1471. { 0, }
  1472. };
  1473. MODULE_DEVICE_TABLE(pci, imsttfb_pci_tbl);
  1474. static struct pci_driver imsttfb_pci_driver = {
  1475. name: "imsttfb",
  1476. id_table: imsttfb_pci_tbl,
  1477. probe: imsttfb_probe,
  1478. remove: __devexit_p(imsttfb_remove),
  1479. };
  1480. static struct fb_ops imsttfb_ops = {
  1481. owner: THIS_MODULE,
  1482. fb_get_fix: imsttfb_get_fix,
  1483. fb_get_var: imsttfb_get_var,
  1484. fb_set_var: imsttfb_set_var,
  1485. fb_get_cmap: imsttfb_get_cmap,
  1486. fb_set_cmap: imsttfb_set_cmap,
  1487. fb_pan_display: imsttfb_pan_display,
  1488. fb_ioctl: imsttfb_ioctl,
  1489. };
  1490. static int
  1491. imsttfbcon_switch (int con, struct fb_info *info)
  1492. {
  1493. struct fb_info_imstt *p = (struct fb_info_imstt *)info;
  1494. struct display *old = &fb_display[currcon], *new = &fb_display[con];
  1495. if (old->cmap.len)
  1496. fb_get_cmap(&old->cmap, 1, imsttfb_getcolreg, info);
  1497. if (old->conp && old->conp->vc_sw && old->conp->vc_sw->con_cursor)
  1498. old->conp->vc_sw->con_cursor(old->conp, CM_ERASE);
  1499. currcon = con;
  1500. if (old->var.xres != new->var.xres
  1501.     || old->var.yres != new->var.yres
  1502.     || old->var.bits_per_pixel != new->var.bits_per_pixel
  1503.     || old->var.green.length != new->var.green.length
  1504.     || old->var.accel_flags != new->var.accel_flags) {
  1505. set_dispsw(new, p);
  1506. if (!compute_imstt_regvals(p, new->var.xres, new->var.yres))
  1507. return -1;
  1508. if (new->var.bits_per_pixel == 16) {
  1509. if (new->var.green.length == 6)
  1510. set_565(p);
  1511. else
  1512. set_555(p);
  1513. }
  1514. set_imstt_regvals(p, new->var.bits_per_pixel);
  1515. }
  1516. set_offset(new, p);
  1517. imsttfbcon_set_font(new, fontwidth(new), fontheight(new));
  1518. do_install_cmap(con, info);
  1519. return 0;
  1520. }
  1521. static int
  1522. imsttfbcon_updatevar (int con, struct fb_info *info)
  1523. {
  1524. struct fb_info_imstt *p = (struct fb_info_imstt *)info;
  1525. struct display *disp = &fb_display[con];
  1526. if (con != currcon)
  1527. goto out;
  1528. if (p->ramdac == IBM)
  1529. imsttfbcon_cursor(disp, CM_ERASE, p->cursor.x, p->cursor.y);
  1530. set_offset(disp, p);
  1531. out:
  1532. return 0;
  1533. }
  1534. static void
  1535. imsttfbcon_blank (int blank, struct fb_info *info)
  1536. {
  1537. struct fb_info_imstt *p = (struct fb_info_imstt *)info;
  1538. __u32 ctrl;
  1539. ctrl = in_le32(&p->dc_regs[STGCTL]);
  1540. if (blank > 0) {
  1541. switch (blank - 1) {
  1542. case VESA_NO_BLANKING:
  1543. case VESA_POWERDOWN:
  1544. ctrl &= ~0x00000380;
  1545. if (p->ramdac == IBM) {
  1546. p->cmap_regs[PIDXHI] = 0; eieio();
  1547. p->cmap_regs[PIDXLO] = MISCTL2; eieio();
  1548. p->cmap_regs[PIDXDATA] = 0x55; eieio();
  1549. p->cmap_regs[PIDXLO] = MISCTL1; eieio();
  1550. p->cmap_regs[PIDXDATA] = 0x11; eieio();
  1551. p->cmap_regs[PIDXLO] = SYNCCTL; eieio();
  1552. p->cmap_regs[PIDXDATA] = 0x0f; eieio();
  1553. p->cmap_regs[PIDXLO] = PWRMNGMT;eieio();
  1554. p->cmap_regs[PIDXDATA] = 0x1f; eieio();
  1555. p->cmap_regs[PIDXLO] = CLKCTL; eieio();
  1556. p->cmap_regs[PIDXDATA] = 0xc0;
  1557. }
  1558. break;
  1559. case VESA_VSYNC_SUSPEND:
  1560. ctrl &= ~0x00000020;
  1561. break;
  1562. case VESA_HSYNC_SUSPEND:
  1563. ctrl &= ~0x00000010;
  1564. break;
  1565. }
  1566. } else {
  1567. if (p->ramdac == IBM) {
  1568. ctrl |= 0x000017b0;
  1569. p->cmap_regs[PIDXHI] = 0; eieio();
  1570. p->cmap_regs[PIDXLO] = CLKCTL; eieio();
  1571. p->cmap_regs[PIDXDATA] = 0x01; eieio();
  1572. p->cmap_regs[PIDXLO] = PWRMNGMT;eieio();
  1573. p->cmap_regs[PIDXDATA] = 0x00; eieio();
  1574. p->cmap_regs[PIDXLO] = SYNCCTL; eieio();
  1575. p->cmap_regs[PIDXDATA] = 0x00; eieio();
  1576. p->cmap_regs[PIDXLO] = MISCTL1; eieio();
  1577. p->cmap_regs[PIDXDATA] = 0x01; eieio();
  1578. p->cmap_regs[PIDXLO] = MISCTL2; eieio();
  1579. p->cmap_regs[PIDXDATA] = 0x45; eieio();
  1580. } else
  1581. ctrl |= 0x00001780;
  1582. }
  1583. out_le32(&p->dc_regs[STGCTL], ctrl);
  1584. }
  1585. static void __init 
  1586. init_imstt(struct fb_info_imstt *p)
  1587. {
  1588. __u32 i, tmp;
  1589. __u32 *ip, *end;
  1590. tmp = in_le32(&p->dc_regs[PRC]);
  1591. if (p->ramdac == IBM)
  1592. p->total_vram = (tmp & 0x0004) ? 0x400000 : 0x200000;
  1593. else
  1594. p->total_vram = 0x800000;
  1595. ip = (__u32 *)p->frame_buffer;
  1596. end = (__u32 *)(p->frame_buffer + p->total_vram);
  1597. while (ip < end)
  1598. *ip++ = 0;
  1599. /* initialize the card */
  1600. tmp = in_le32(&p->dc_regs[STGCTL]);
  1601. out_le32(&p->dc_regs[STGCTL], tmp & ~0x1);
  1602. out_le32(&p->dc_regs[SSR], 0);
  1603. /* set default values for DAC registers */ 
  1604. if (p->ramdac == IBM) {
  1605. p->cmap_regs[PPMASK] = 0xff; eieio();
  1606. p->cmap_regs[PIDXHI] = 0; eieio();
  1607. for (i = 0; i < sizeof(ibm_initregs) / sizeof(*ibm_initregs); i++) {
  1608. p->cmap_regs[PIDXLO] = ibm_initregs[i].addr; eieio();
  1609. p->cmap_regs[PIDXDATA] = ibm_initregs[i].value; eieio();
  1610. }
  1611. } else {
  1612. for (i = 0; i < sizeof(tvp_initregs) / sizeof(*tvp_initregs); i++) {
  1613. p->cmap_regs[TVPADDRW] = tvp_initregs[i].addr; eieio();
  1614. p->cmap_regs[TVPIDATA] = tvp_initregs[i].value; eieio();
  1615. }
  1616. }
  1617. #ifdef CONFIG_ALL_PPC
  1618. {
  1619. int vmode = init_vmode, cmode = init_cmode;
  1620. #ifdef CONFIG_NVRAM
  1621. /* Attempt to read vmode/cmode from NVRAM */
  1622. if (vmode == VMODE_NVRAM)
  1623. vmode = nvram_read_byte(NV_VMODE);
  1624. if (cmode == CMODE_NVRAM)
  1625. cmode = nvram_read_byte(NV_CMODE);
  1626. #endif
  1627. /* If we didn't get something from NVRAM, pick a
  1628.  * sane default.
  1629.  */
  1630. if (vmode <= 0 || vmode > VMODE_MAX)
  1631. vmode = VMODE_640_480_67;
  1632. if (cmode < CMODE_8 || cmode > CMODE_32)
  1633. cmode = CMODE_8;
  1634. if (mac_vmode_to_var(vmode, cmode, &p->disp.var)) {
  1635. p->disp.var.xres = p->disp.var.xres_virtual = INIT_XRES;
  1636. p->disp.var.yres = p->disp.var.yres_virtual = INIT_YRES;
  1637. p->disp.var.bits_per_pixel = INIT_BPP;
  1638. }
  1639. }
  1640. #else
  1641. p->disp.var.xres = p->disp.var.xres_virtual = INIT_XRES;
  1642. p->disp.var.yres = p->disp.var.yres_virtual = INIT_YRES;
  1643. p->disp.var.bits_per_pixel = INIT_BPP;
  1644. #endif
  1645. if ((p->disp.var.xres * p->disp.var.yres) * (p->disp.var.bits_per_pixel >> 3) > p->total_vram
  1646.     || !(compute_imstt_regvals(p, p->disp.var.xres, p->disp.var.yres))) {
  1647. printk("imsttfb: %ux%ux%u not supportedn", p->disp.var.xres, p->disp.var.yres, p->disp.var.bits_per_pixel);
  1648. kfree(p);
  1649. return;
  1650. }
  1651. sprintf(p->fix.id, "IMS TT (%s)", p->ramdac == IBM ? "IBM" : "TVP");
  1652. p->fix.smem_start = p->frame_buffer_phys;
  1653. p->fix.smem_len = p->total_vram;
  1654. p->fix.mmio_start = p->dc_regs_phys;
  1655. p->fix.mmio_len = 0x1000;
  1656. p->fix.accel = FB_ACCEL_IMS_TWINTURBO;
  1657. p->fix.type = FB_TYPE_PACKED_PIXELS;
  1658. p->fix.visual = p->disp.var.bits_per_pixel == 8 ? FB_VISUAL_PSEUDOCOLOR
  1659. : FB_VISUAL_DIRECTCOLOR;
  1660. p->fix.line_length = p->disp.var.xres * (p->disp.var.bits_per_pixel >> 3);
  1661. p->fix.xpanstep = 8;
  1662. p->fix.ypanstep = 1;
  1663. p->fix.ywrapstep = 0;
  1664. p->disp.var.accel_flags = noaccel ? 0 : FB_ACCELF_TEXT;
  1665. set_disp(&p->disp, p);
  1666. if (!noaccel && p->ramdac == IBM)
  1667. imstt_cursor_init(p);
  1668. if (p->disp.var.green.length == 6)
  1669. set_565(p);
  1670. else
  1671. set_555(p);
  1672. set_imstt_regvals(p, p->disp.var.bits_per_pixel);
  1673. p->disp.var.pixclock = 1000000 / getclkMHz(p);
  1674. strcpy(p->info.modename, p->fix.id);
  1675. strcpy(p->info.fontname, fontname);
  1676. p->info.node = -1;
  1677. p->info.fbops = &imsttfb_ops;
  1678. p->info.disp = &p->disp;
  1679. p->info.changevar = 0;
  1680. p->info.switch_con = &imsttfbcon_switch;
  1681. p->info.updatevar = &imsttfbcon_updatevar;
  1682. p->info.blank = &imsttfbcon_blank;
  1683. p->info.flags = FBINFO_FLAG_DEFAULT;
  1684. for (i = 0; i < 16; i++) {
  1685. u_int j = color_table[i];
  1686. p->palette[i].red = default_red[j];
  1687. p->palette[i].green = default_grn[j];
  1688. p->palette[i].blue = default_blu[j];
  1689. }
  1690. if (register_framebuffer(&p->info) < 0) {
  1691. kfree(p);
  1692. return;
  1693. }
  1694. i = GET_FB_IDX(p->info.node);
  1695. tmp = (in_le32(&p->dc_regs[SSTATUS]) & 0x0f00) >> 8;
  1696. printk("fb%u: %s frame buffer; %uMB vram; chip version %un",
  1697. i, p->fix.id, p->total_vram >> 20, tmp);
  1698. #ifdef CONFIG_FB_COMPAT_XPMAC
  1699. strncpy(display_info.name, "IMS,tt128mb", sizeof(display_info.name));
  1700. display_info.fb_address = p->frame_buffer_phys;
  1701. display_info.cmap_adr_address = p->cmap_regs_phys + PADDRW;
  1702. display_info.cmap_data_address = p->cmap_regs_phys + PDATA;
  1703. display_info.disp_reg_address = p->dc_regs_phys;
  1704. if (!console_fb_info)
  1705. console_fb_info = &p->info;
  1706. #endif /* CONFIG_FB_COMPAT_XPMAC */
  1707. }
  1708. static int __devinit
  1709. imsttfb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
  1710. {
  1711. struct fb_info_imstt *p;
  1712. unsigned long addr, size;
  1713. addr = pci_resource_start (pdev, 0);
  1714. size = pci_resource_len (pdev, 0);
  1715. p = kmalloc(sizeof(struct fb_info_imstt), GFP_KERNEL);
  1716. if (!p) {
  1717. printk(KERN_ERR "imsttfb: Can't allocate memoryn");
  1718. return -ENOMEM;
  1719. }
  1720. memset(p, 0, sizeof(struct fb_info_imstt));
  1721. if (!request_mem_region(addr, size, "imsttfb")) {
  1722. printk(KERN_ERR "imsttfb: Can't reserve memory regionn");
  1723. kfree(p);
  1724. return -ENODEV;
  1725. }
  1726. switch (pdev->device) {
  1727. case PCI_DEVICE_ID_IMS_TT128: /* IMS,tt128mbA */
  1728. p->ramdac = IBM;
  1729. break;
  1730. case PCI_DEVICE_ID_IMS_TT3D:  /* IMS,tt3d */
  1731. p->ramdac = TVP;
  1732. break;
  1733. default:
  1734. printk(KERN_INFO "imsttfb: Device 0x%lx unknown, "
  1735.  "contact maintainer.n", pdev->device);
  1736. return -ENODEV;
  1737. }
  1738. p->frame_buffer_phys = addr;
  1739. p->board_size = size;
  1740. p->frame_buffer = (__u8 *)ioremap(addr, p->ramdac == IBM ? 0x400000 : 0x800000);
  1741. p->dc_regs_phys = addr + 0x800000;
  1742. p->dc_regs = (__u32 *)ioremap(addr + 0x800000, 0x1000);
  1743. p->cmap_regs_phys = addr + 0x840000;
  1744. p->cmap_regs = (__u8 *)ioremap(addr + 0x840000, 0x1000);
  1745. init_imstt(p);
  1746. pci_set_drvdata(pdev, p);
  1747. return 0;
  1748. }
  1749. static void __devexit
  1750. imsttfb_remove(struct pci_dev *pdev)
  1751. {
  1752. struct fb_info_imstt *p = pci_get_drvdata(pdev);
  1753. unregister_framebuffer(&p->info);
  1754. iounmap(p->cmap_regs);
  1755. iounmap(p->dc_regs);
  1756. iounmap(p->frame_buffer);
  1757. release_mem_region(p->frame_buffer_phys, p->board_size);
  1758. kfree(p);
  1759. }
  1760. #ifndef MODULE
  1761. int __init 
  1762. imsttfb_setup(char *options)
  1763. {
  1764. char *this_opt;
  1765. if (!options || !*options)
  1766. return 0;
  1767. while ((this_opt = strsep(&options, ",")) != NULL) {
  1768. if (!strncmp(this_opt, "font:", 5)) {
  1769. char *p;
  1770. int i;
  1771. p = this_opt + 5;
  1772. for (i = 0; i < sizeof(fontname) - 1; i++)
  1773. if (!*p || *p == ' ' || *p == ',')
  1774. break;
  1775. memcpy(fontname, this_opt + 5, i);
  1776. fontname[i] = 0;
  1777. } else if (!strncmp(this_opt, "noblink", 7)) {
  1778. curblink = 0;
  1779. } else if (!strncmp(this_opt, "noaccel", 7)) {
  1780. noaccel = 1;
  1781. } else if (!strncmp(this_opt, "inverse", 7)) {
  1782. inverse = 1;
  1783. fb_invert_cmaps();
  1784. }
  1785. #if defined(CONFIG_PPC)
  1786. else if (!strncmp(this_opt, "vmode:", 6)) {
  1787. int vmode = simple_strtoul(this_opt+6, NULL, 0);
  1788. if (vmode > 0 && vmode <= VMODE_MAX)
  1789. init_vmode = vmode;
  1790. } else if (!strncmp(this_opt, "cmode:", 6)) {
  1791. int cmode = simple_strtoul(this_opt+6, NULL, 0);
  1792. switch (cmode) {
  1793. case CMODE_8:
  1794. case 8:
  1795. init_cmode = CMODE_8;
  1796. break;
  1797. case CMODE_16:
  1798. case 15:
  1799. case 16:
  1800. init_cmode = CMODE_16;
  1801. break;
  1802. case CMODE_32:
  1803. case 24:
  1804. case 32:
  1805. init_cmode = CMODE_32;
  1806. break;
  1807. }
  1808. }
  1809. #endif
  1810. }
  1811. return 0;
  1812. }
  1813. #endif /* MODULE */
  1814. int __init imsttfb_init(void)
  1815. {
  1816. return pci_module_init(&imsttfb_pci_driver);
  1817. }
  1818.  
  1819. static void __exit imsttfb_exit(void)
  1820. {
  1821. pci_unregister_driver(&imsttfb_pci_driver);
  1822. }
  1823. #ifdef MODULE
  1824. MODULE_LICENSE("GPL");
  1825. module_init(imsttfb_init);
  1826. #endif
  1827. module_exit(imsttfb_exit);