cg3.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. /* cg3.c: CGTHREE frame buffer driver
  2. *
  3. * Copyright (C) 2003, 2006 David S. Miller (davem@davemloft.net)
  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 <linux/of_device.h>
  20. #include <asm/io.h>
  21. #include <asm/fbio.h>
  22. #include "sbuslib.h"
  23. /*
  24. * Local functions.
  25. */
  26. static int cg3_setcolreg(unsigned, unsigned, unsigned, unsigned,
  27. unsigned, struct fb_info *);
  28. static int cg3_blank(int, struct fb_info *);
  29. static int cg3_mmap(struct fb_info *, struct vm_area_struct *);
  30. static int cg3_ioctl(struct fb_info *, unsigned int, unsigned long);
  31. /*
  32. * Frame buffer operations
  33. */
  34. static struct fb_ops cg3_ops = {
  35. .owner = THIS_MODULE,
  36. .fb_setcolreg = cg3_setcolreg,
  37. .fb_blank = cg3_blank,
  38. .fb_fillrect = cfb_fillrect,
  39. .fb_copyarea = cfb_copyarea,
  40. .fb_imageblit = cfb_imageblit,
  41. .fb_mmap = cg3_mmap,
  42. .fb_ioctl = cg3_ioctl,
  43. #ifdef CONFIG_COMPAT
  44. .fb_compat_ioctl = sbusfb_compat_ioctl,
  45. #endif
  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. u32 addr;
  70. u32 color_map;
  71. u32 control;
  72. u32 cursor;
  73. };
  74. struct cg3_regs {
  75. struct bt_regs cmap;
  76. u8 control;
  77. u8 status;
  78. u8 cursor_start;
  79. u8 cursor_end;
  80. u8 h_blank_start;
  81. u8 h_blank_end;
  82. u8 h_sync_start;
  83. u8 h_sync_end;
  84. u8 comp_sync_end;
  85. u8 v_blank_start_high;
  86. u8 v_blank_start_low;
  87. u8 v_blank_end;
  88. u8 v_sync_start;
  89. u8 v_sync_end;
  90. u8 xfer_holdoff_start;
  91. 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 which_io;
  105. unsigned long fbsize;
  106. };
  107. /**
  108. * cg3_setcolreg - Optional function. Sets a color register.
  109. * @regno: boolean, 0 copy local, 1 get_user() function
  110. * @red: frame buffer colormap structure
  111. * @green: The green value which can be up to 16 bits wide
  112. * @blue: The blue value which can be up to 16 bits wide.
  113. * @transp: If supported the alpha value which can be up to 16 bits wide.
  114. * @info: frame buffer info structure
  115. *
  116. * The cg3 palette is loaded with 4 color values at each time
  117. * so you end up with: (rgb)(r), (gb)(rg), (b)(rgb), and so on.
  118. * We keep a sw copy of the hw cmap to assist us in this esoteric
  119. * loading procedure.
  120. */
  121. static int cg3_setcolreg(unsigned regno,
  122. unsigned red, unsigned green, unsigned blue,
  123. unsigned transp, struct fb_info *info)
  124. {
  125. struct cg3_par *par = (struct cg3_par *) info->par;
  126. struct bt_regs __iomem *bt = &par->regs->cmap;
  127. unsigned long flags;
  128. u32 *p32;
  129. u8 *p8;
  130. int count;
  131. if (regno >= 256)
  132. return 1;
  133. red >>= 8;
  134. green >>= 8;
  135. blue >>= 8;
  136. spin_lock_irqsave(&par->lock, flags);
  137. p8 = (u8 *)par->sw_cmap + (regno * 3);
  138. p8[0] = red;
  139. p8[1] = green;
  140. p8[2] = blue;
  141. #define D4M3(x) ((((x)>>2)<<1) + ((x)>>2)) /* (x/4)*3 */
  142. #define D4M4(x) ((x)&~0x3) /* (x/4)*4 */
  143. count = 3;
  144. p32 = &par->sw_cmap[D4M3(regno)];
  145. sbus_writel(D4M4(regno), &bt->addr);
  146. while (count--)
  147. sbus_writel(*p32++, &bt->color_map);
  148. #undef D4M3
  149. #undef D4M4
  150. spin_unlock_irqrestore(&par->lock, flags);
  151. return 0;
  152. }
  153. /**
  154. * cg3_blank - Optional function. Blanks the display.
  155. * @blank_mode: the blank mode we want.
  156. * @info: frame buffer structure that represents a single frame buffer
  157. */
  158. static int cg3_blank(int blank, struct fb_info *info)
  159. {
  160. struct cg3_par *par = (struct cg3_par *) info->par;
  161. struct cg3_regs __iomem *regs = par->regs;
  162. unsigned long flags;
  163. u8 val;
  164. spin_lock_irqsave(&par->lock, flags);
  165. switch (blank) {
  166. case FB_BLANK_UNBLANK: /* Unblanking */
  167. val = sbus_readb(&regs->control);
  168. val |= CG3_CR_ENABLE_VIDEO;
  169. sbus_writeb(val, &regs->control);
  170. par->flags &= ~CG3_FLAG_BLANKED;
  171. break;
  172. case FB_BLANK_NORMAL: /* Normal blanking */
  173. case FB_BLANK_VSYNC_SUSPEND: /* VESA blank (vsync off) */
  174. case FB_BLANK_HSYNC_SUSPEND: /* VESA blank (hsync off) */
  175. case FB_BLANK_POWERDOWN: /* Poweroff */
  176. val = sbus_readb(&regs->control);
  177. val &= ~CG3_CR_ENABLE_VIDEO;
  178. sbus_writeb(val, &regs->control);
  179. par->flags |= CG3_FLAG_BLANKED;
  180. break;
  181. }
  182. spin_unlock_irqrestore(&par->lock, flags);
  183. return 0;
  184. }
  185. static struct sbus_mmap_map cg3_mmap_map[] = {
  186. {
  187. .voff = CG3_MMAP_OFFSET,
  188. .poff = CG3_RAM_OFFSET,
  189. .size = SBUS_MMAP_FBSIZE(1)
  190. },
  191. { .size = 0 }
  192. };
  193. static int cg3_mmap(struct fb_info *info, struct vm_area_struct *vma)
  194. {
  195. struct cg3_par *par = (struct cg3_par *)info->par;
  196. return sbusfb_mmap_helper(cg3_mmap_map,
  197. par->physbase, par->fbsize,
  198. par->which_io,
  199. vma);
  200. }
  201. static int cg3_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg)
  202. {
  203. struct cg3_par *par = (struct cg3_par *) info->par;
  204. return sbusfb_ioctl_helper(cmd, arg, info,
  205. FBTYPE_SUN3COLOR, 8, par->fbsize);
  206. }
  207. /*
  208. * Initialisation
  209. */
  210. static void __devinit cg3_init_fix(struct fb_info *info, int linebytes,
  211. struct device_node *dp)
  212. {
  213. strlcpy(info->fix.id, dp->name, sizeof(info->fix.id));
  214. info->fix.type = FB_TYPE_PACKED_PIXELS;
  215. info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
  216. info->fix.line_length = linebytes;
  217. info->fix.accel = FB_ACCEL_SUN_CGTHREE;
  218. }
  219. static void __devinit cg3_rdi_maybe_fixup_var(struct fb_var_screeninfo *var,
  220. struct device_node *dp)
  221. {
  222. const char *params;
  223. char *p;
  224. int ww, hh;
  225. params = of_get_property(dp, "params", NULL);
  226. if (params) {
  227. ww = simple_strtoul(params, &p, 10);
  228. if (ww && *p == 'x') {
  229. hh = simple_strtoul(p + 1, &p, 10);
  230. if (hh && *p == '-') {
  231. if (var->xres != ww ||
  232. var->yres != hh) {
  233. var->xres = var->xres_virtual = ww;
  234. var->yres = var->yres_virtual = hh;
  235. }
  236. }
  237. }
  238. }
  239. }
  240. static u8 cg3regvals_66hz[] __devinitdata = { /* 1152 x 900, 66 Hz */
  241. 0x14, 0xbb, 0x15, 0x2b, 0x16, 0x04, 0x17, 0x14,
  242. 0x18, 0xae, 0x19, 0x03, 0x1a, 0xa8, 0x1b, 0x24,
  243. 0x1c, 0x01, 0x1d, 0x05, 0x1e, 0xff, 0x1f, 0x01,
  244. 0x10, 0x20, 0
  245. };
  246. static u8 cg3regvals_76hz[] __devinitdata = { /* 1152 x 900, 76 Hz */
  247. 0x14, 0xb7, 0x15, 0x27, 0x16, 0x03, 0x17, 0x0f,
  248. 0x18, 0xae, 0x19, 0x03, 0x1a, 0xae, 0x1b, 0x2a,
  249. 0x1c, 0x01, 0x1d, 0x09, 0x1e, 0xff, 0x1f, 0x01,
  250. 0x10, 0x24, 0
  251. };
  252. static u8 cg3regvals_rdi[] __devinitdata = { /* 640 x 480, cgRDI */
  253. 0x14, 0x70, 0x15, 0x20, 0x16, 0x08, 0x17, 0x10,
  254. 0x18, 0x06, 0x19, 0x02, 0x1a, 0x31, 0x1b, 0x51,
  255. 0x1c, 0x06, 0x1d, 0x0c, 0x1e, 0xff, 0x1f, 0x01,
  256. 0x10, 0x22, 0
  257. };
  258. static u8 *cg3_regvals[] __devinitdata = {
  259. cg3regvals_66hz, cg3regvals_76hz, cg3regvals_rdi
  260. };
  261. static u_char cg3_dacvals[] __devinitdata = {
  262. 4, 0xff, 5, 0x00, 6, 0x70, 7, 0x00, 0
  263. };
  264. static int __devinit cg3_do_default_mode(struct cg3_par *par)
  265. {
  266. enum cg3_type type;
  267. u8 *p;
  268. if (par->flags & CG3_FLAG_RDI)
  269. type = CG3_RDI;
  270. else {
  271. u8 status = sbus_readb(&par->regs->status), mon;
  272. if ((status & CG3_SR_ID_MASK) == CG3_SR_ID_COLOR) {
  273. mon = status & CG3_SR_RES_MASK;
  274. if (mon == CG3_SR_1152_900_76_A ||
  275. mon == CG3_SR_1152_900_76_B)
  276. type = CG3_AT_76HZ;
  277. else
  278. type = CG3_AT_66HZ;
  279. } else {
  280. printk(KERN_ERR "cgthree: can't handle SR %02x\n",
  281. status);
  282. return -EINVAL;
  283. }
  284. }
  285. for (p = cg3_regvals[type]; *p; p += 2) {
  286. u8 __iomem *regp = &((u8 __iomem *)par->regs)[p[0]];
  287. sbus_writeb(p[1], regp);
  288. }
  289. for (p = cg3_dacvals; *p; p += 2) {
  290. u8 __iomem *regp;
  291. regp = (u8 __iomem *)&par->regs->cmap.addr;
  292. sbus_writeb(p[0], regp);
  293. regp = (u8 __iomem *)&par->regs->cmap.control;
  294. sbus_writeb(p[1], regp);
  295. }
  296. return 0;
  297. }
  298. static int __devinit cg3_probe(struct of_device *op,
  299. const struct of_device_id *match)
  300. {
  301. struct device_node *dp = op->node;
  302. struct fb_info *info;
  303. struct cg3_par *par;
  304. int linebytes, err;
  305. info = framebuffer_alloc(sizeof(struct cg3_par), &op->dev);
  306. err = -ENOMEM;
  307. if (!info)
  308. goto out_err;
  309. par = info->par;
  310. spin_lock_init(&par->lock);
  311. par->physbase = op->resource[0].start;
  312. par->which_io = op->resource[0].flags & IORESOURCE_BITS;
  313. sbusfb_fill_var(&info->var, dp, 8);
  314. info->var.red.length = 8;
  315. info->var.green.length = 8;
  316. info->var.blue.length = 8;
  317. if (!strcmp(dp->name, "cgRDI"))
  318. par->flags |= CG3_FLAG_RDI;
  319. if (par->flags & CG3_FLAG_RDI)
  320. cg3_rdi_maybe_fixup_var(&info->var, dp);
  321. linebytes = of_getintprop_default(dp, "linebytes",
  322. info->var.xres);
  323. par->fbsize = PAGE_ALIGN(linebytes * info->var.yres);
  324. par->regs = of_ioremap(&op->resource[0], CG3_REGS_OFFSET,
  325. sizeof(struct cg3_regs), "cg3 regs");
  326. if (!par->regs)
  327. goto out_release_fb;
  328. info->flags = FBINFO_DEFAULT;
  329. info->fbops = &cg3_ops;
  330. info->screen_base = of_ioremap(&op->resource[0], CG3_RAM_OFFSET,
  331. par->fbsize, "cg3 ram");
  332. if (!info->screen_base)
  333. goto out_unmap_regs;
  334. cg3_blank(FB_BLANK_UNBLANK, info);
  335. if (!of_find_property(dp, "width", NULL)) {
  336. err = cg3_do_default_mode(par);
  337. if (err)
  338. goto out_unmap_screen;
  339. }
  340. if (fb_alloc_cmap(&info->cmap, 256, 0))
  341. goto out_unmap_screen;
  342. fb_set_cmap(&info->cmap, info);
  343. cg3_init_fix(info, linebytes, dp);
  344. err = register_framebuffer(info);
  345. if (err < 0)
  346. goto out_dealloc_cmap;
  347. dev_set_drvdata(&op->dev, info);
  348. printk(KERN_INFO "%s: cg3 at %lx:%lx\n",
  349. dp->full_name, par->which_io, par->physbase);
  350. return 0;
  351. out_dealloc_cmap:
  352. fb_dealloc_cmap(&info->cmap);
  353. out_unmap_screen:
  354. of_iounmap(&op->resource[0], info->screen_base, par->fbsize);
  355. out_unmap_regs:
  356. of_iounmap(&op->resource[0], par->regs, sizeof(struct cg3_regs));
  357. out_release_fb:
  358. framebuffer_release(info);
  359. out_err:
  360. return err;
  361. }
  362. static int __devexit cg3_remove(struct of_device *op)
  363. {
  364. struct fb_info *info = dev_get_drvdata(&op->dev);
  365. struct cg3_par *par = info->par;
  366. unregister_framebuffer(info);
  367. fb_dealloc_cmap(&info->cmap);
  368. of_iounmap(&op->resource[0], par->regs, sizeof(struct cg3_regs));
  369. of_iounmap(&op->resource[0], info->screen_base, par->fbsize);
  370. framebuffer_release(info);
  371. dev_set_drvdata(&op->dev, NULL);
  372. return 0;
  373. }
  374. static struct of_device_id cg3_match[] = {
  375. {
  376. .name = "cgthree",
  377. },
  378. {
  379. .name = "cgRDI",
  380. },
  381. {},
  382. };
  383. MODULE_DEVICE_TABLE(of, cg3_match);
  384. static struct of_platform_driver cg3_driver = {
  385. .name = "cg3",
  386. .match_table = cg3_match,
  387. .probe = cg3_probe,
  388. .remove = __devexit_p(cg3_remove),
  389. };
  390. static int __init cg3_init(void)
  391. {
  392. if (fb_get_options("cg3fb", NULL))
  393. return -ENODEV;
  394. return of_register_driver(&cg3_driver, &of_bus_type);
  395. }
  396. static void __exit cg3_exit(void)
  397. {
  398. of_unregister_driver(&cg3_driver);
  399. }
  400. module_init(cg3_init);
  401. module_exit(cg3_exit);
  402. MODULE_DESCRIPTION("framebuffer driver for CGthree chipsets");
  403. MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
  404. MODULE_VERSION("2.0");
  405. MODULE_LICENSE("GPL");