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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: cgthreefb.c,v 1.11 2001/09/19 00:04:33 davem Exp $
  2.  * cgthreefb.c: CGthree 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) 1997 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 <video/fbcon-cfb8.h>
  25. /* Control Register Constants */
  26. #define CG3_CR_ENABLE_INTS      0x80
  27. #define CG3_CR_ENABLE_VIDEO     0x40
  28. #define CG3_CR_ENABLE_TIMING    0x20
  29. #define CG3_CR_ENABLE_CURCMP    0x10
  30. #define CG3_CR_XTAL_MASK        0x0c
  31. #define CG3_CR_DIVISOR_MASK     0x03
  32. /* Status Register Constants */
  33. #define CG3_SR_PENDING_INT      0x80
  34. #define CG3_SR_RES_MASK         0x70
  35. #define CG3_SR_1152_900_76_A    0x40
  36. #define CG3_SR_1152_900_76_B    0x60
  37. #define CG3_SR_ID_MASK          0x0f
  38. #define CG3_SR_ID_COLOR         0x01
  39. #define CG3_SR_ID_MONO          0x02
  40. #define CG3_SR_ID_MONO_ECL      0x03
  41. MODULE_LICENSE("GPL");
  42. enum cg3_type {
  43. CG3_AT_66HZ = 0,
  44. CG3_AT_76HZ,
  45. CG3_RDI
  46. };
  47. struct cg3_regs {
  48. struct bt_regs cmap;
  49. volatile u8 control;
  50. volatile u8 status;
  51. volatile u8 cursor_start;
  52. volatile u8 cursor_end;
  53. volatile u8 h_blank_start;
  54. volatile u8 h_blank_end;
  55. volatile u8 h_sync_start;
  56. volatile u8 h_sync_end;
  57. volatile u8 comp_sync_end;
  58. volatile u8 v_blank_start_high;
  59. volatile u8 v_blank_start_low;
  60. volatile u8 v_blank_end;
  61. volatile u8 v_sync_start;
  62. volatile u8 v_sync_end;
  63. volatile u8 xfer_holdoff_start;
  64. volatile u8 xfer_holdoff_end;
  65. };
  66. /* Offset of interesting structures in the OBIO space */
  67. #define CG3_REGS_OFFSET      0x400000UL
  68. #define CG3_RAM_OFFSET      0x800000UL
  69. static struct sbus_mmap_map cg3_mmap_map[] = {
  70. { CG3_MMAP_OFFSET, CG3_RAM_OFFSET, SBUS_MMAP_FBSIZE(1) },
  71. { 0, 0, 0     }
  72. };
  73. /* The cg3 palette is loaded with 4 color values at each time  */
  74. /* so you end up with: (rgb)(r), (gb)(rg), (b)(rgb), and so on */
  75. #define D4M3(x) ((((x)>>2)<<1) + ((x)>>2))      /* (x/4)*3 */
  76. #define D4M4(x) ((x)&~0x3)                      /* (x/4)*4 */
  77. static void cg3_loadcmap (struct fb_info_sbusfb *fb, struct display *p, int index, int count)
  78. {
  79. struct bt_regs *bt = &fb->s.cg3.regs->cmap;
  80. unsigned long flags;
  81. u32 *i;
  82. volatile u8 *regp;
  83. int steps;
  84.         
  85. spin_lock_irqsave(&fb->lock, flags);
  86. i = (((u32 *)fb->color_map) + D4M3(index));
  87. steps = D4M3(index+count-1) - D4M3(index)+3;
  88.                         
  89. regp = (volatile u8 *)&bt->addr;
  90. sbus_writeb(D4M4(index), regp);
  91. while (steps--) {
  92. u32 val = *i++;
  93. sbus_writel(val, &bt->color_map);
  94. }
  95. spin_unlock_irqrestore(&fb->lock, flags);
  96. }
  97. static void cg3_blank (struct fb_info_sbusfb *fb)
  98. {
  99. unsigned long flags;
  100. u8 tmp;
  101. spin_lock_irqsave(&fb->lock, flags);
  102. tmp = sbus_readb(&fb->s.cg3.regs->control);
  103. tmp &= ~CG3_CR_ENABLE_VIDEO;
  104. sbus_writeb(tmp, &fb->s.cg3.regs->control);
  105. spin_unlock_irqrestore(&fb->lock, flags);
  106. }
  107. static void cg3_unblank (struct fb_info_sbusfb *fb)
  108. {
  109. unsigned long flags;
  110. u8 tmp;
  111. spin_lock_irqsave(&fb->lock, flags);
  112. tmp = sbus_readb(&fb->s.cg3.regs->control);
  113. tmp |= CG3_CR_ENABLE_VIDEO;
  114. sbus_writeb(tmp, &fb->s.cg3.regs->control);
  115. spin_unlock_irqrestore(&fb->lock, flags);
  116. }
  117. static void cg3_margins (struct fb_info_sbusfb *fb, struct display *p,
  118.  int x_margin, int y_margin)
  119. {
  120. p->screen_base += (y_margin - fb->y_margin) *
  121. p->line_length + (x_margin - fb->x_margin);
  122. }
  123. static u8 cg3regvals_66hz[] __initdata = { /* 1152 x 900, 66 Hz */
  124. 0x14, 0xbb, 0x15, 0x2b, 0x16, 0x04, 0x17, 0x14,
  125. 0x18, 0xae, 0x19, 0x03, 0x1a, 0xa8, 0x1b, 0x24,
  126. 0x1c, 0x01, 0x1d, 0x05, 0x1e, 0xff, 0x1f, 0x01,
  127. 0x10, 0x20, 0
  128. };
  129. static u8 cg3regvals_76hz[] __initdata = { /* 1152 x 900, 76 Hz */
  130. 0x14, 0xb7, 0x15, 0x27, 0x16, 0x03, 0x17, 0x0f,
  131. 0x18, 0xae, 0x19, 0x03, 0x1a, 0xae, 0x1b, 0x2a,
  132. 0x1c, 0x01, 0x1d, 0x09, 0x1e, 0xff, 0x1f, 0x01,
  133. 0x10, 0x24, 0
  134. };
  135. static u8 cg3regvals_rdi[] __initdata = { /* 640 x 480, cgRDI */
  136. 0x14, 0x70, 0x15, 0x20, 0x16, 0x08, 0x17, 0x10,
  137. 0x18, 0x06, 0x19, 0x02, 0x1a, 0x31, 0x1b, 0x51,
  138. 0x1c, 0x06, 0x1d, 0x0c, 0x1e, 0xff, 0x1f, 0x01,
  139. 0x10, 0x22, 0
  140. };
  141. static u8 *cg3_regvals[] __initdata = {
  142. cg3regvals_66hz, cg3regvals_76hz, cg3regvals_rdi
  143. };
  144. static u_char cg3_dacvals[] __initdata = {
  145. 4, 0xff, 5, 0x00, 6, 0x70, 7, 0x00, 0
  146. };
  147. static char idstring[60] __initdata = { 0 };
  148. char __init *cgthreefb_init(struct fb_info_sbusfb *fb)
  149. {
  150. struct fb_fix_screeninfo *fix = &fb->fix;
  151. struct display *disp = &fb->disp;
  152. struct fbtype *type = &fb->type;
  153. struct sbus_dev *sdev = fb->sbdp;
  154. unsigned long phys = sdev->reg_addrs[0].phys_addr;
  155. int cgRDI = strstr(fb->sbdp->prom_name, "cgRDI") != NULL;
  156. #ifndef FBCON_HAS_CFB8
  157. return NULL;
  158. #endif
  159. if (!fb->s.cg3.regs) {
  160. fb->s.cg3.regs = (struct cg3_regs *)
  161. sbus_ioremap(&sdev->resource[0], CG3_REGS_OFFSET,
  162.      sizeof(struct cg3_regs), "cg3 regs");
  163. if (cgRDI) {
  164. char buffer[40];
  165. char *p;
  166. int ww, hh;
  167. *buffer = 0;
  168. prom_getstring (fb->prom_node, "params", buffer, sizeof(buffer));
  169. if (*buffer) {
  170. ww = simple_strtoul (buffer, &p, 10);
  171. if (ww && *p == 'x') {
  172. hh = simple_strtoul (p + 1, &p, 10);
  173. if (hh && *p == '-') {
  174. if (type->fb_width != ww || type->fb_height != hh) {
  175. type->fb_width = ww;
  176. type->fb_height = hh;
  177. return SBUSFBINIT_SIZECHANGE;
  178. }
  179. }
  180. }
  181. }
  182. }
  183. }
  184. strcpy(fb->info.modename, "CGthree");
  185. strcpy(fix->id, "CGthree");
  186. fix->line_length = fb->var.xres_virtual;
  187. fix->accel = FB_ACCEL_SUN_CGTHREE;
  188. disp->scrollmode = SCROLL_YREDRAW;
  189. if (!disp->screen_base) {
  190. disp->screen_base = (char *)
  191. sbus_ioremap(&sdev->resource[0], CG3_RAM_OFFSET,
  192.      type->fb_size, "cg3 ram");
  193. }
  194. disp->screen_base += fix->line_length * fb->y_margin + fb->x_margin;
  195. fb->dispsw = fbcon_cfb8;
  196. fb->margins = cg3_margins;
  197. fb->loadcmap = cg3_loadcmap;
  198. fb->blank = cg3_blank;
  199. fb->unblank = cg3_unblank;
  200. fb->physbase = phys;
  201. fb->mmap_map = cg3_mmap_map;
  202. #ifdef __sparc_v9__
  203. sprintf(idstring, "%s at %016lx", cgRDI ? "cgRDI" : "cgthree", phys);
  204. #else
  205. sprintf(idstring, "%s at %x.%08lx", cgRDI ? "cgRDI" : "cgthree", fb->iospace, phys);
  206. #endif
  207. if (!prom_getbool(fb->prom_node, "width")) {
  208. /* Ugh, broken PROM didn't initialize us.
  209.  * Let's deal with this ourselves.
  210.  */
  211. enum cg3_type type;
  212. u8 *p;
  213. if (cgRDI)
  214. type = CG3_RDI;
  215. else {
  216. u8 status = sbus_readb(&fb->s.cg3.regs->status), mon;
  217. if ((status & CG3_SR_ID_MASK) == CG3_SR_ID_COLOR) {
  218. mon = status & CG3_SR_RES_MASK;
  219. if (mon == CG3_SR_1152_900_76_A ||
  220.     mon == CG3_SR_1152_900_76_B)
  221. type = CG3_AT_76HZ;
  222. else
  223. type = CG3_AT_66HZ;
  224. } else {
  225. prom_printf("cgthree: can't handle SR %02xn",
  226.     status);
  227. prom_halt();
  228. return NULL; /* fool gcc. */
  229. }
  230. }
  231. for (p = cg3_regvals[type]; *p; p += 2) {
  232. u8 *regp = &((u8 *)fb->s.cg3.regs)[p[0]];
  233. sbus_writeb(p[1], regp);
  234. }
  235. for (p = cg3_dacvals; *p; p += 2) {
  236. volatile u8 *regp;
  237. regp = (volatile u8 *)&fb->s.cg3.regs->cmap.addr;
  238. sbus_writeb(p[0], regp);
  239. regp = (volatile u8 *)&fb->s.cg3.regs->cmap.control;
  240. sbus_writeb(p[1], regp);
  241. }
  242. }
  243. return idstring;
  244. }