cg3.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. /* cg3.c: CGTHREE frame buffer driver
  2. *
  3. * Copyright (C) 2003 David S. Miller (davem@redhat.com)
  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. * Driver layout based loosely on tgafb.c, see that file for credits.
  9. */
  10. #include <linux/module.h>
  11. #include <linux/kernel.h>
  12. #include <linux/errno.h>
  13. #include <linux/string.h>
  14. #include <linux/slab.h>
  15. #include <linux/delay.h>
  16. #include <linux/init.h>
  17. #include <linux/fb.h>
  18. #include <linux/mm.h>
  19. #include <asm/io.h>
  20. #include <asm/sbus.h>
  21. #include <asm/oplib.h>
  22. #include <asm/fbio.h>
  23. #include "sbuslib.h"
  24. /*
  25. * Local functions.
  26. */
  27. static int cg3_setcolreg(unsigned, unsigned, unsigned, unsigned,
  28. unsigned, struct fb_info *);
  29. static int cg3_blank(int, struct fb_info *);
  30. static int cg3_mmap(struct fb_info *, struct file *, struct vm_area_struct *);
  31. static int cg3_ioctl(struct inode *, struct file *, unsigned int,
  32. unsigned long, struct fb_info *);
  33. /*
  34. * Frame buffer operations
  35. */
  36. static struct fb_ops cg3_ops = {
  37. .owner = THIS_MODULE,
  38. .fb_setcolreg = cg3_setcolreg,
  39. .fb_blank = cg3_blank,
  40. .fb_fillrect = cfb_fillrect,
  41. .fb_copyarea = cfb_copyarea,
  42. .fb_imageblit = cfb_imageblit,
  43. .fb_mmap = cg3_mmap,
  44. .fb_ioctl = cg3_ioctl,
  45. .fb_cursor = soft_cursor,
  46. };
  47. /* Control Register Constants */
  48. #define CG3_CR_ENABLE_INTS 0x80
  49. #define CG3_CR_ENABLE_VIDEO 0x40
  50. #define CG3_CR_ENABLE_TIMING 0x20
  51. #define CG3_CR_ENABLE_CURCMP 0x10
  52. #define CG3_CR_XTAL_MASK 0x0c
  53. #define CG3_CR_DIVISOR_MASK 0x03
  54. /* Status Register Constants */
  55. #define CG3_SR_PENDING_INT 0x80
  56. #define CG3_SR_RES_MASK 0x70
  57. #define CG3_SR_1152_900_76_A 0x40
  58. #define CG3_SR_1152_900_76_B 0x60
  59. #define CG3_SR_ID_MASK 0x0f
  60. #define CG3_SR_ID_COLOR 0x01
  61. #define CG3_SR_ID_MONO 0x02
  62. #define CG3_SR_ID_MONO_ECL 0x03
  63. enum cg3_type {
  64. CG3_AT_66HZ = 0,
  65. CG3_AT_76HZ,
  66. CG3_RDI
  67. };
  68. struct bt_regs {
  69. volatile u32 addr;
  70. volatile u32 color_map;
  71. volatile u32 control;
  72. volatile u32 cursor;
  73. };
  74. struct cg3_regs {
  75. struct bt_regs cmap;
  76. volatile u8 control;
  77. volatile u8 status;
  78. volatile u8 cursor_start;
  79. volatile u8 cursor_end;
  80. volatile u8 h_blank_start;
  81. volatile u8 h_blank_end;
  82. volatile u8 h_sync_start;
  83. volatile u8 h_sync_end;
  84. volatile u8 comp_sync_end;
  85. volatile u8 v_blank_start_high;
  86. volatile u8 v_blank_start_low;
  87. volatile u8 v_blank_end;
  88. volatile u8 v_sync_start;
  89. volatile u8 v_sync_end;
  90. volatile u8 xfer_holdoff_start;
  91. volatile u8 xfer_holdoff_end;
  92. };
  93. /* Offset of interesting structures in the OBIO space */
  94. #define CG3_REGS_OFFSET 0x400000UL
  95. #define CG3_RAM_OFFSET 0x800000UL
  96. struct cg3_par {
  97. spinlock_t lock;
  98. struct cg3_regs __iomem *regs;
  99. u32 sw_cmap[((256 * 3) + 3) / 4];
  100. u32 flags;
  101. #define CG3_FLAG_BLANKED 0x00000001
  102. #define CG3_FLAG_RDI 0x00000002
  103. unsigned long physbase;
  104. unsigned long fbsize;
  105. struct sbus_dev *sdev;
  106. struct list_head list;
  107. };
  108. /**
  109. * cg3_setcolreg - Optional function. Sets a color register.
  110. * @regno: boolean, 0 copy local, 1 get_user() function
  111. * @red: frame buffer colormap structure
  112. * @green: The green value which can be up to 16 bits wide
  113. * @blue: The blue value which can be up to 16 bits wide.
  114. * @transp: If supported the alpha value which can be up to 16 bits wide.
  115. * @info: frame buffer info structure
  116. *
  117. * The cg3 palette is loaded with 4 color values at each time
  118. * so you end up with: (rgb)(r), (gb)(rg), (b)(rgb), and so on.
  119. * We keep a sw copy of the hw cmap to assist us in this esoteric
  120. * loading procedure.
  121. */
  122. static int cg3_setcolreg(unsigned regno,
  123. unsigned red, unsigned green, unsigned blue,
  124. unsigned transp, struct fb_info *info)
  125. {
  126. struct cg3_par *par = (struct cg3_par *) info->par;
  127. struct bt_regs __iomem *bt = &par->regs->cmap;
  128. unsigned long flags;
  129. u32 *p32;
  130. u8 *p8;
  131. int count;
  132. if (regno >= 256)
  133. return 1;
  134. red >>= 8;
  135. green >>= 8;
  136. blue >>= 8;
  137. spin_lock_irqsave(&par->lock, flags);
  138. p8 = (u8 *)par->sw_cmap + (regno * 3);
  139. p8[0] = red;
  140. p8[1] = green;
  141. p8[2] = blue;
  142. #define D4M3(x) ((((x)>>2)<<1) + ((x)>>2)) /* (x/4)*3 */
  143. #define D4M4(x) ((x)&~0x3) /* (x/4)*4 */
  144. count = 3;
  145. p32 = &par->sw_cmap[D4M3(regno)];
  146. sbus_writel(D4M4(regno), &bt->addr);
  147. while (count--)
  148. sbus_writel(*p32++, &bt->color_map);
  149. #undef D4M3
  150. #undef D4M4
  151. spin_unlock_irqrestore(&par->lock, flags);
  152. return 0;
  153. }
  154. /**
  155. * cg3_blank - Optional function. Blanks the display.
  156. * @blank_mode: the blank mode we want.
  157. * @info: frame buffer structure that represents a single frame buffer
  158. */
  159. static int
  160. cg3_blank(int blank, struct fb_info *info)
  161. {
  162. struct cg3_par *par = (struct cg3_par *) info->par;
  163. struct cg3_regs __iomem *regs = par->regs;
  164. unsigned long flags;
  165. u8 val;
  166. spin_lock_irqsave(&par->lock, flags);
  167. switch (blank) {
  168. case FB_BLANK_UNBLANK: /* Unblanking */
  169. val = sbus_readb(&regs->control);
  170. val |= CG3_CR_ENABLE_VIDEO;
  171. sbus_writeb(val, &regs->control);
  172. par->flags &= ~CG3_FLAG_BLANKED;
  173. break;
  174. case FB_BLANK_NORMAL: /* Normal blanking */
  175. case FB_BLANK_VSYNC_SUSPEND: /* VESA blank (vsync off) */
  176. case FB_BLANK_HSYNC_SUSPEND: /* VESA blank (hsync off) */
  177. case FB_BLANK_POWERDOWN: /* Poweroff */
  178. val = sbus_readb(&regs->control);
  179. val &= ~CG3_CR_ENABLE_VIDEO;
  180. sbus_writeb(val, &regs->control);
  181. par->flags |= CG3_FLAG_BLANKED;
  182. break;
  183. }
  184. spin_unlock_irqrestore(&par->lock, flags);
  185. return 0;
  186. }
  187. static struct sbus_mmap_map cg3_mmap_map[] = {
  188. {
  189. .voff = CG3_MMAP_OFFSET,
  190. .poff = CG3_RAM_OFFSET,
  191. .size = SBUS_MMAP_FBSIZE(1)
  192. },
  193. { .size = 0 }
  194. };
  195. static int cg3_mmap(struct fb_info *info, struct file *file, struct vm_area_struct *vma)
  196. {
  197. struct cg3_par *par = (struct cg3_par *)info->par;
  198. return sbusfb_mmap_helper(cg3_mmap_map,
  199. par->physbase, par->fbsize,
  200. par->sdev->reg_addrs[0].which_io,
  201. vma);
  202. }
  203. static int cg3_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  204. unsigned long arg, struct fb_info *info)
  205. {
  206. struct cg3_par *par = (struct cg3_par *) info->par;
  207. return sbusfb_ioctl_helper(cmd, arg, info,
  208. FBTYPE_SUN3COLOR, 8, par->fbsize);
  209. }
  210. /*
  211. * Initialisation
  212. */
  213. static void
  214. cg3_init_fix(struct fb_info *info, int linebytes)
  215. {
  216. struct cg3_par *par = (struct cg3_par *)info->par;
  217. strlcpy(info->fix.id, par->sdev->prom_name, sizeof(info->fix.id));
  218. info->fix.type = FB_TYPE_PACKED_PIXELS;
  219. info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
  220. info->fix.line_length = linebytes;
  221. info->fix.accel = FB_ACCEL_SUN_CGTHREE;
  222. }
  223. static void cg3_rdi_maybe_fixup_var(struct fb_var_screeninfo *var,
  224. struct sbus_dev *sdev)
  225. {
  226. char buffer[40];
  227. char *p;
  228. int ww, hh;
  229. *buffer = 0;
  230. prom_getstring(sdev->prom_node, "params", buffer, sizeof(buffer));
  231. if (*buffer) {
  232. ww = simple_strtoul(buffer, &p, 10);
  233. if (ww && *p == 'x') {
  234. hh = simple_strtoul(p + 1, &p, 10);
  235. if (hh && *p == '-') {
  236. if (var->xres != ww ||
  237. var->yres != hh) {
  238. var->xres = var->xres_virtual = ww;
  239. var->yres = var->yres_virtual = hh;
  240. }
  241. }
  242. }
  243. }
  244. }
  245. static u8 cg3regvals_66hz[] __initdata = { /* 1152 x 900, 66 Hz */
  246. 0x14, 0xbb, 0x15, 0x2b, 0x16, 0x04, 0x17, 0x14,
  247. 0x18, 0xae, 0x19, 0x03, 0x1a, 0xa8, 0x1b, 0x24,
  248. 0x1c, 0x01, 0x1d, 0x05, 0x1e, 0xff, 0x1f, 0x01,
  249. 0x10, 0x20, 0
  250. };
  251. static u8 cg3regvals_76hz[] __initdata = { /* 1152 x 900, 76 Hz */
  252. 0x14, 0xb7, 0x15, 0x27, 0x16, 0x03, 0x17, 0x0f,
  253. 0x18, 0xae, 0x19, 0x03, 0x1a, 0xae, 0x1b, 0x2a,
  254. 0x1c, 0x01, 0x1d, 0x09, 0x1e, 0xff, 0x1f, 0x01,
  255. 0x10, 0x24, 0
  256. };
  257. static u8 cg3regvals_rdi[] __initdata = { /* 640 x 480, cgRDI */
  258. 0x14, 0x70, 0x15, 0x20, 0x16, 0x08, 0x17, 0x10,
  259. 0x18, 0x06, 0x19, 0x02, 0x1a, 0x31, 0x1b, 0x51,
  260. 0x1c, 0x06, 0x1d, 0x0c, 0x1e, 0xff, 0x1f, 0x01,
  261. 0x10, 0x22, 0
  262. };
  263. static u8 *cg3_regvals[] __initdata = {
  264. cg3regvals_66hz, cg3regvals_76hz, cg3regvals_rdi
  265. };
  266. static u_char cg3_dacvals[] __initdata = {
  267. 4, 0xff, 5, 0x00, 6, 0x70, 7, 0x00, 0
  268. };
  269. static void cg3_do_default_mode(struct cg3_par *par)
  270. {
  271. enum cg3_type type;
  272. u8 *p;
  273. if (par->flags & CG3_FLAG_RDI)
  274. type = CG3_RDI;
  275. else {
  276. u8 status = sbus_readb(&par->regs->status), mon;
  277. if ((status & CG3_SR_ID_MASK) == CG3_SR_ID_COLOR) {
  278. mon = status & CG3_SR_RES_MASK;
  279. if (mon == CG3_SR_1152_900_76_A ||
  280. mon == CG3_SR_1152_900_76_B)
  281. type = CG3_AT_76HZ;
  282. else
  283. type = CG3_AT_66HZ;
  284. } else {
  285. prom_printf("cgthree: can't handle SR %02x\n",
  286. status);
  287. prom_halt();
  288. return;
  289. }
  290. }
  291. for (p = cg3_regvals[type]; *p; p += 2) {
  292. u8 __iomem *regp = &((u8 __iomem *)par->regs)[p[0]];
  293. sbus_writeb(p[1], regp);
  294. }
  295. for (p = cg3_dacvals; *p; p += 2) {
  296. volatile u8 __iomem *regp;
  297. regp = (volatile u8 __iomem *)&par->regs->cmap.addr;
  298. sbus_writeb(p[0], regp);
  299. regp = (volatile u8 __iomem *)&par->regs->cmap.control;
  300. sbus_writeb(p[1], regp);
  301. }
  302. }
  303. struct all_info {
  304. struct fb_info info;
  305. struct cg3_par par;
  306. struct list_head list;
  307. };
  308. static LIST_HEAD(cg3_list);
  309. static void cg3_init_one(struct sbus_dev *sdev)
  310. {
  311. struct all_info *all;
  312. int linebytes;
  313. all = kmalloc(sizeof(*all), GFP_KERNEL);
  314. if (!all) {
  315. printk(KERN_ERR "cg3: Cannot allocate memory.\n");
  316. return;
  317. }
  318. memset(all, 0, sizeof(*all));
  319. INIT_LIST_HEAD(&all->list);
  320. spin_lock_init(&all->par.lock);
  321. all->par.sdev = sdev;
  322. all->par.physbase = sdev->reg_addrs[0].phys_addr;
  323. sbusfb_fill_var(&all->info.var, sdev->prom_node, 8);
  324. all->info.var.red.length = 8;
  325. all->info.var.green.length = 8;
  326. all->info.var.blue.length = 8;
  327. if (!strcmp(sdev->prom_name, "cgRDI"))
  328. all->par.flags |= CG3_FLAG_RDI;
  329. if (all->par.flags & CG3_FLAG_RDI)
  330. cg3_rdi_maybe_fixup_var(&all->info.var, sdev);
  331. linebytes = prom_getintdefault(sdev->prom_node, "linebytes",
  332. all->info.var.xres);
  333. all->par.fbsize = PAGE_ALIGN(linebytes * all->info.var.yres);
  334. all->par.regs = sbus_ioremap(&sdev->resource[0], CG3_REGS_OFFSET,
  335. sizeof(struct cg3_regs), "cg3 regs");
  336. all->info.flags = FBINFO_DEFAULT;
  337. all->info.fbops = &cg3_ops;
  338. #ifdef CONFIG_SPARC32
  339. all->info.screen_base = (char __iomem *)
  340. prom_getintdefault(sdev->prom_node, "address", 0);
  341. #endif
  342. if (!all->info.screen_base)
  343. all->info.screen_base =
  344. sbus_ioremap(&sdev->resource[0], CG3_RAM_OFFSET,
  345. all->par.fbsize, "cg3 ram");
  346. all->info.par = &all->par;
  347. cg3_blank(0, &all->info);
  348. if (!prom_getbool(sdev->prom_node, "width"))
  349. cg3_do_default_mode(&all->par);
  350. if (fb_alloc_cmap(&all->info.cmap, 256, 0)) {
  351. printk(KERN_ERR "cg3: Could not allocate color map.\n");
  352. kfree(all);
  353. return;
  354. }
  355. fb_set_cmap(&all->info.cmap, &all->info);
  356. cg3_init_fix(&all->info, linebytes);
  357. if (register_framebuffer(&all->info) < 0) {
  358. printk(KERN_ERR "cg3: Could not register framebuffer.\n");
  359. fb_dealloc_cmap(&all->info.cmap);
  360. kfree(all);
  361. return;
  362. }
  363. list_add(&all->list, &cg3_list);
  364. printk("cg3: %s at %lx:%lx\n",
  365. sdev->prom_name,
  366. (long) sdev->reg_addrs[0].which_io,
  367. (long) sdev->reg_addrs[0].phys_addr);
  368. }
  369. int __init cg3_init(void)
  370. {
  371. struct sbus_bus *sbus;
  372. struct sbus_dev *sdev;
  373. if (fb_get_options("cg3fb", NULL))
  374. return -ENODEV;
  375. for_all_sbusdev(sdev, sbus) {
  376. if (!strcmp(sdev->prom_name, "cgthree") ||
  377. !strcmp(sdev->prom_name, "cgRDI"))
  378. cg3_init_one(sdev);
  379. }
  380. return 0;
  381. }
  382. void __exit cg3_exit(void)
  383. {
  384. struct list_head *pos, *tmp;
  385. list_for_each_safe(pos, tmp, &cg3_list) {
  386. struct all_info *all = list_entry(pos, typeof(*all), list);
  387. unregister_framebuffer(&all->info);
  388. fb_dealloc_cmap(&all->info.cmap);
  389. kfree(all);
  390. }
  391. }
  392. int __init
  393. cg3_setup(char *arg)
  394. {
  395. /* No cmdline options yet... */
  396. return 0;
  397. }
  398. module_init(cg3_init);
  399. #ifdef MODULE
  400. module_exit(cg3_exit);
  401. #endif
  402. MODULE_DESCRIPTION("framebuffer driver for CGthree chipsets");
  403. MODULE_AUTHOR("David S. Miller <davem@redhat.com>");
  404. MODULE_LICENSE("GPL");