tcxfb.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: tcxfb.c,v 1.13 2001/09/19 00:04:33 davem Exp $
  2.  * tcxfb.c: TCX 24/8bit frame buffer driver
  3.  *
  4.  * Copyright (C) 1996,1998 Jakub Jelinek (jj@ultra.linux.cz)
  5.  * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx)
  6.  * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
  7.  */
  8. #include <linux/module.h>
  9. #include <linux/sched.h>
  10. #include <linux/kernel.h>
  11. #include <linux/errno.h>
  12. #include <linux/string.h>
  13. #include <linux/mm.h>
  14. #include <linux/tty.h>
  15. #include <linux/slab.h>
  16. #include <linux/vmalloc.h>
  17. #include <linux/delay.h>
  18. #include <linux/interrupt.h>
  19. #include <linux/fb.h>
  20. #include <linux/init.h>
  21. #include <linux/selection.h>
  22. #include <video/sbusfb.h>
  23. #include <asm/io.h>
  24. #include <asm/sbus.h>
  25. #include <video/fbcon-cfb8.h>
  26. /* THC definitions */
  27. #define TCX_THC_MISC_REV_SHIFT       16
  28. #define TCX_THC_MISC_REV_MASK        15
  29. #define TCX_THC_MISC_VSYNC_DIS       (1 << 25)
  30. #define TCX_THC_MISC_HSYNC_DIS       (1 << 24)
  31. #define TCX_THC_MISC_RESET           (1 << 12)
  32. #define TCX_THC_MISC_VIDEO           (1 << 10)
  33. #define TCX_THC_MISC_SYNC            (1 << 9)
  34. #define TCX_THC_MISC_VSYNC           (1 << 8)
  35. #define TCX_THC_MISC_SYNC_ENAB       (1 << 7)
  36. #define TCX_THC_MISC_CURS_RES        (1 << 6)
  37. #define TCX_THC_MISC_INT_ENAB        (1 << 5)
  38. #define TCX_THC_MISC_INT             (1 << 4)
  39. #define TCX_THC_MISC_INIT            0x9f
  40. #define TCX_THC_REV_REV_SHIFT        20
  41. #define TCX_THC_REV_REV_MASK         15
  42. #define TCX_THC_REV_MINREV_SHIFT     28
  43. #define TCX_THC_REV_MINREV_MASK      15
  44. /* The contents are unknown */
  45. struct tcx_tec {
  46. volatile u32 tec_matrix;
  47. volatile u32 tec_clip;
  48. volatile u32 tec_vdc;
  49. };
  50. struct tcx_thc {
  51. volatile u32 thc_rev;
  52.         u32 thc_pad0[511];
  53. volatile u32 thc_hs; /* hsync timing */
  54. volatile u32 thc_hsdvs;
  55. volatile u32 thc_hd;
  56. volatile u32 thc_vs; /* vsync timing */
  57. volatile u32 thc_vd;
  58. volatile u32 thc_refresh;
  59. volatile u32 thc_misc;
  60. u32 thc_pad1[56];
  61. volatile u32 thc_cursxy; /* cursor x,y position (16 bits each) */
  62. volatile u32 thc_cursmask[32]; /* cursor mask bits */
  63. volatile u32 thc_cursbits[32]; /* what to show where mask enabled */
  64. };
  65. static struct sbus_mmap_map tcx_mmap_map[] = {
  66. { TCX_RAM8BIT, 0, SBUS_MMAP_FBSIZE(1) },
  67. { TCX_RAM24BIT, 0, SBUS_MMAP_FBSIZE(4) },
  68. { TCX_UNK3, 0, SBUS_MMAP_FBSIZE(8) },
  69. { TCX_UNK4, 0, SBUS_MMAP_FBSIZE(8) },
  70. { TCX_CONTROLPLANE, 0, SBUS_MMAP_FBSIZE(4) },
  71. { TCX_UNK6, 0, SBUS_MMAP_FBSIZE(8) },
  72. { TCX_UNK7, 0, SBUS_MMAP_FBSIZE(8) },
  73. { TCX_TEC, 0, PAGE_SIZE     },
  74. { TCX_BTREGS, 0, PAGE_SIZE     },
  75. { TCX_THC, 0, PAGE_SIZE     },
  76. { TCX_DHC, 0, PAGE_SIZE     },
  77. { TCX_ALT, 0, PAGE_SIZE     },
  78. { TCX_UNK2, 0, 0x20000     },
  79. { 0, 0, 0     }
  80. };
  81. static void __tcx_set_control_plane (struct fb_info_sbusfb *fb)
  82. {
  83. u32 *p, *pend;
  84.         
  85. p = fb->s.tcx.cplane;
  86. if (p == NULL)
  87. return;
  88. for (pend = p + fb->type.fb_size; p < pend; p++) {
  89. u32 tmp = sbus_readl(p);
  90. tmp &= 0xffffff;
  91. sbus_writel(tmp, p);
  92. }
  93. }
  94.                                                 
  95. static void tcx_switch_from_graph (struct fb_info_sbusfb *fb)
  96. {
  97. unsigned long flags;
  98. spin_lock_irqsave(&fb->lock, flags);
  99. /* Reset control plane to 8bit mode if necessary */
  100. if (fb->open && fb->mmaped)
  101. __tcx_set_control_plane (fb);
  102. spin_unlock_irqrestore(&fb->lock, flags);
  103. }
  104. static void tcx_loadcmap (struct fb_info_sbusfb *fb, struct display *p, int index, int count)
  105. {
  106. struct bt_regs *bt = fb->s.tcx.bt;
  107. unsigned long flags;
  108. int i;
  109.                 
  110. spin_lock_irqsave(&fb->lock, flags);
  111. sbus_writel(index << 24, &bt->addr);
  112. for (i = index; count--; i++){
  113. sbus_writel(fb->color_map CM(i,0) << 24, &bt->color_map);
  114. sbus_writel(fb->color_map CM(i,1) << 24, &bt->color_map);
  115. sbus_writel(fb->color_map CM(i,2) << 24, &bt->color_map);
  116. }
  117. sbus_writel(0, &bt->addr);
  118. spin_unlock_irqrestore(&fb->lock, flags);
  119. }
  120. static void tcx_restore_palette (struct fb_info_sbusfb *fb)
  121. {
  122. struct bt_regs *bt = fb->s.tcx.bt;
  123. unsigned long flags;
  124.                 
  125. spin_lock_irqsave(&fb->lock, flags);
  126. sbus_writel(0, &bt->addr);
  127. sbus_writel(0xffffffff, &bt->color_map);
  128. sbus_writel(0xffffffff, &bt->color_map);
  129. sbus_writel(0xffffffff, &bt->color_map);
  130. spin_unlock_irqrestore(&fb->lock, flags);
  131. }
  132. static void tcx_setcursormap (struct fb_info_sbusfb *fb, u8 *red, u8 *green, u8 *blue)
  133. {
  134.         struct bt_regs *bt = fb->s.tcx.bt;
  135. unsigned long flags;
  136. spin_lock_irqsave(&fb->lock, flags);
  137. /* Note the 2 << 24 is different from cg6's 1 << 24 */
  138. sbus_writel(2 << 24, &bt->addr);
  139. sbus_writel(red[0] << 24, &bt->cursor);
  140. sbus_writel(green[0] << 24, &bt->cursor);
  141. sbus_writel(blue[0] << 24, &bt->cursor);
  142. sbus_writel(3 << 24, &bt->addr);
  143. sbus_writel(red[1] << 24, &bt->cursor);
  144. sbus_writel(green[1] << 24, &bt->cursor);
  145. sbus_writel(blue[1] << 24, &bt->cursor);
  146. sbus_writel(0, &bt->addr);
  147. spin_unlock_irqrestore(&fb->lock, flags);
  148. }
  149. /* Set cursor shape */
  150. static void tcx_setcurshape (struct fb_info_sbusfb *fb)
  151. {
  152. struct tcx_thc *thc = fb->s.tcx.thc;
  153. unsigned long flags;
  154. int i;
  155. spin_lock_irqsave(&fb->lock, flags);
  156. for (i = 0; i < 32; i++){
  157. sbus_writel(fb->cursor.bits[0][i], &thc->thc_cursmask[i]);
  158. sbus_writel(fb->cursor.bits[1][i], &thc->thc_cursbits[i]);
  159. }
  160. spin_unlock_irqrestore(&fb->lock, flags);
  161. }
  162. /* Load cursor information */
  163. static void tcx_setcursor (struct fb_info_sbusfb *fb)
  164. {
  165. struct cg_cursor *c = &fb->cursor;
  166. unsigned long flags;
  167. unsigned int v;
  168. spin_lock_irqsave(&fb->lock, flags);
  169. if (c->enable)
  170. v = ((c->cpos.fbx - c->chot.fbx) << 16)
  171.     |((c->cpos.fby - c->chot.fby) & 0xffff);
  172. else
  173. /* Magic constant to turn off the cursor */
  174. v = ((65536-32) << 16) | (65536-32);
  175. sbus_writel(v, &fb->s.tcx.thc->thc_cursxy);
  176. spin_unlock_irqrestore(&fb->lock, flags);
  177. }
  178. static void tcx_blank (struct fb_info_sbusfb *fb)
  179. {
  180. unsigned long flags;
  181. u32 tmp;
  182. spin_lock_irqsave(&fb->lock, flags);
  183. tmp = sbus_readl(&fb->s.tcx.thc->thc_misc);
  184. tmp &= ~TCX_THC_MISC_VIDEO;
  185. /* This should put us in power-save */
  186. tmp |= TCX_THC_MISC_VSYNC_DIS;
  187.         tmp |= TCX_THC_MISC_HSYNC_DIS;
  188. sbus_writel(tmp, &fb->s.tcx.thc->thc_misc);
  189. spin_unlock_irqrestore(&fb->lock, flags);
  190. }
  191. static void tcx_unblank (struct fb_info_sbusfb *fb)
  192. {
  193. unsigned long flags;
  194. u32 tmp;
  195. spin_lock_irqsave(&fb->lock, flags);
  196. tmp = sbus_readl(&fb->s.tcx.thc->thc_misc);
  197. tmp &= ~TCX_THC_MISC_VSYNC_DIS;
  198. tmp &= ~TCX_THC_MISC_HSYNC_DIS;
  199. tmp |= TCX_THC_MISC_VIDEO;
  200. sbus_writel(tmp, &fb->s.tcx.thc->thc_misc);
  201. spin_unlock_irqrestore(&fb->lock, flags);
  202. }
  203. static void tcx_reset (struct fb_info_sbusfb *fb)
  204. {
  205. unsigned long flags;
  206. u32 tmp;
  207. spin_lock_irqsave(&fb->lock, flags);
  208. if (fb->open && fb->mmaped)
  209. __tcx_set_control_plane(fb);
  210. /* Turn off stuff in the Transform Engine. */
  211. sbus_writel(0, &fb->s.tcx.tec->tec_matrix);
  212. sbus_writel(0, &fb->s.tcx.tec->tec_clip);
  213. sbus_writel(0, &fb->s.tcx.tec->tec_vdc);
  214. /* Enable cursor in Brooktree DAC. */
  215. sbus_writel(0x06 << 24, &fb->s.tcx.bt->addr);
  216. tmp = sbus_readl(&fb->s.tcx.bt->control);
  217. tmp |= 0x03 << 24;
  218. sbus_writel(tmp, &fb->s.tcx.bt->control);
  219. spin_unlock_irqrestore(&fb->lock, flags);
  220. }
  221. static void tcx_margins (struct fb_info_sbusfb *fb, struct display *p, int x_margin, int y_margin)
  222. {
  223. p->screen_base += (y_margin - fb->y_margin) * p->line_length + (x_margin - fb->x_margin);
  224. }
  225. static char idstring[60] __initdata = { 0 };
  226. char __init *tcxfb_init(struct fb_info_sbusfb *fb)
  227. {
  228. struct fb_fix_screeninfo *fix = &fb->fix;
  229. struct display *disp = &fb->disp;
  230. struct fbtype *type = &fb->type;
  231. struct sbus_dev *sdev = fb->sbdp;
  232. unsigned long phys = sdev->reg_addrs[0].phys_addr;
  233. int lowdepth, i, j;
  234. #ifndef FBCON_HAS_CFB8
  235. return NULL;
  236. #endif
  237. lowdepth = prom_getbool (fb->prom_node, "tcx-8-bit");
  238. if (lowdepth) {
  239. strcpy(fb->info.modename, "TCX8");
  240. strcpy(fix->id, "TCX8");
  241. } else {
  242. strcpy(fb->info.modename, "TCX24");
  243. strcpy(fix->id, "TCX24");
  244. }
  245. fix->line_length = fb->var.xres_virtual;
  246. fix->accel = FB_ACCEL_SUN_TCX;
  247. disp->scrollmode = SCROLL_YREDRAW;
  248. if (!disp->screen_base) {
  249. disp->screen_base = (char *)
  250. sbus_ioremap(&sdev->resource[0], 0,
  251.      type->fb_size, "tcx ram");
  252. }
  253. disp->screen_base += fix->line_length * fb->y_margin + fb->x_margin;
  254. fb->s.tcx.tec = (struct tcx_tec *)
  255. sbus_ioremap(&sdev->resource[7], 0,
  256.      sizeof(struct tcx_tec), "tcx tec");
  257. fb->s.tcx.thc = (struct tcx_thc *)
  258. sbus_ioremap(&sdev->resource[9], 0,
  259.      sizeof(struct tcx_thc), "tcx thc");
  260. fb->s.tcx.bt = (struct bt_regs *)
  261. sbus_ioremap(&sdev->resource[8], 0, 
  262.      sizeof(struct bt_regs), "tcx dac");
  263. if (!lowdepth) {
  264. fb->s.tcx.cplane = (u32 *)
  265. sbus_ioremap(&sdev->resource[4], 0, 
  266.      type->fb_size * sizeof(u32), "tcx cplane");
  267. type->fb_depth = 24;
  268. fb->switch_from_graph = tcx_switch_from_graph;
  269. } else {
  270. /* As there can be one tcx in a machine only, we can write directly into
  271.    tcx_mmap_map */
  272. tcx_mmap_map[1].size = SBUS_MMAP_EMPTY;
  273. tcx_mmap_map[4].size = SBUS_MMAP_EMPTY;
  274. tcx_mmap_map[5].size = SBUS_MMAP_EMPTY;
  275. tcx_mmap_map[6].size = SBUS_MMAP_EMPTY;
  276. }
  277. fb->dispsw = fbcon_cfb8;
  278. fb->margins = tcx_margins;
  279. fb->loadcmap = tcx_loadcmap;
  280. if (prom_getbool (fb->prom_node, "hw-cursor")) {
  281. fb->setcursor = tcx_setcursor;
  282. fb->setcursormap = tcx_setcursormap;
  283. fb->setcurshape = tcx_setcurshape;
  284. }
  285. fb->restore_palette = tcx_restore_palette;
  286. fb->blank = tcx_blank;
  287. fb->unblank = tcx_unblank;
  288. fb->reset = tcx_reset;
  289. fb->physbase = 0;
  290. for (i = 0; i < 13; i++) {
  291. /* tcx_mmap_map has to be sorted by voff, while
  292.    order of phys registers from PROM differs a little
  293.    bit. Here is the correction */
  294. switch (i) {
  295. case 10: j = 12; break;
  296. case 11:
  297. case 12: j = i - 1; break;
  298. default: j = i; break;
  299. }
  300. tcx_mmap_map[i].poff = fb->sbdp->reg_addrs[j].phys_addr;
  301. }
  302. fb->mmap_map = tcx_mmap_map;
  303. /* Initialize Brooktree DAC */
  304. sbus_writel(0x04 << 24, &fb->s.tcx.bt->addr);         /* color planes */
  305. sbus_writel(0xff << 24, &fb->s.tcx.bt->control);
  306. sbus_writel(0x05 << 24, &fb->s.tcx.bt->addr);
  307. sbus_writel(0x00 << 24, &fb->s.tcx.bt->control);
  308. sbus_writel(0x06 << 24, &fb->s.tcx.bt->addr);         /* overlay plane */
  309. sbus_writel(0x73 << 24, &fb->s.tcx.bt->control);
  310. sbus_writel(0x07 << 24, &fb->s.tcx.bt->addr);
  311. sbus_writel(0x00 << 24, &fb->s.tcx.bt->control);
  312. sprintf(idstring, "tcx at %x.%08lx Rev %d.%d %s",
  313. fb->iospace, phys,
  314. ((sbus_readl(&fb->s.tcx.thc->thc_rev) >> TCX_THC_REV_REV_SHIFT) &
  315.  TCX_THC_REV_REV_MASK),
  316. ((sbus_readl(&fb->s.tcx.thc->thc_rev) >> TCX_THC_REV_MINREV_SHIFT) &
  317.  TCX_THC_REV_MINREV_MASK),
  318. lowdepth ? "8-bit only" : "24-bit depth");
  319.     
  320. tcx_reset(fb);
  321. return idstring;
  322. }
  323. MODULE_LICENSE("GPL");