cg6.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888
  1. /* cg6.c: CGSIX (GX, GXplus, TGX) 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) 1996 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 cg6_setcolreg(unsigned, unsigned, unsigned, unsigned,
  27. unsigned, struct fb_info *);
  28. static int cg6_blank(int, struct fb_info *);
  29. static void cg6_imageblit(struct fb_info *, const struct fb_image *);
  30. static void cg6_fillrect(struct fb_info *, const struct fb_fillrect *);
  31. static void cg6_copyarea(struct fb_info *info, const struct fb_copyarea *area);
  32. static int cg6_sync(struct fb_info *);
  33. static int cg6_mmap(struct fb_info *, struct vm_area_struct *);
  34. static int cg6_ioctl(struct fb_info *, unsigned int, unsigned long);
  35. static int cg6_pan_display(struct fb_var_screeninfo *, struct fb_info *);
  36. /*
  37. * Frame buffer operations
  38. */
  39. static struct fb_ops cg6_ops = {
  40. .owner = THIS_MODULE,
  41. .fb_setcolreg = cg6_setcolreg,
  42. .fb_blank = cg6_blank,
  43. .fb_pan_display = cg6_pan_display,
  44. .fb_fillrect = cg6_fillrect,
  45. .fb_copyarea = cg6_copyarea,
  46. .fb_imageblit = cg6_imageblit,
  47. .fb_sync = cg6_sync,
  48. .fb_mmap = cg6_mmap,
  49. .fb_ioctl = cg6_ioctl,
  50. #ifdef CONFIG_COMPAT
  51. .fb_compat_ioctl = sbusfb_compat_ioctl,
  52. #endif
  53. };
  54. /* Offset of interesting structures in the OBIO space */
  55. /*
  56. * Brooktree is the video dac and is funny to program on the cg6.
  57. * (it's even funnier on the cg3)
  58. * The FBC could be the frame buffer control
  59. * The FHC could is the frame buffer hardware control.
  60. */
  61. #define CG6_ROM_OFFSET 0x0UL
  62. #define CG6_BROOKTREE_OFFSET 0x200000UL
  63. #define CG6_DHC_OFFSET 0x240000UL
  64. #define CG6_ALT_OFFSET 0x280000UL
  65. #define CG6_FHC_OFFSET 0x300000UL
  66. #define CG6_THC_OFFSET 0x301000UL
  67. #define CG6_FBC_OFFSET 0x700000UL
  68. #define CG6_TEC_OFFSET 0x701000UL
  69. #define CG6_RAM_OFFSET 0x800000UL
  70. /* FHC definitions */
  71. #define CG6_FHC_FBID_SHIFT 24
  72. #define CG6_FHC_FBID_MASK 255
  73. #define CG6_FHC_REV_SHIFT 20
  74. #define CG6_FHC_REV_MASK 15
  75. #define CG6_FHC_FROP_DISABLE (1 << 19)
  76. #define CG6_FHC_ROW_DISABLE (1 << 18)
  77. #define CG6_FHC_SRC_DISABLE (1 << 17)
  78. #define CG6_FHC_DST_DISABLE (1 << 16)
  79. #define CG6_FHC_RESET (1 << 15)
  80. #define CG6_FHC_LITTLE_ENDIAN (1 << 13)
  81. #define CG6_FHC_RES_MASK (3 << 11)
  82. #define CG6_FHC_1024 (0 << 11)
  83. #define CG6_FHC_1152 (1 << 11)
  84. #define CG6_FHC_1280 (2 << 11)
  85. #define CG6_FHC_1600 (3 << 11)
  86. #define CG6_FHC_CPU_MASK (3 << 9)
  87. #define CG6_FHC_CPU_SPARC (0 << 9)
  88. #define CG6_FHC_CPU_68020 (1 << 9)
  89. #define CG6_FHC_CPU_386 (2 << 9)
  90. #define CG6_FHC_TEST (1 << 8)
  91. #define CG6_FHC_TEST_X_SHIFT 4
  92. #define CG6_FHC_TEST_X_MASK 15
  93. #define CG6_FHC_TEST_Y_SHIFT 0
  94. #define CG6_FHC_TEST_Y_MASK 15
  95. /* FBC mode definitions */
  96. #define CG6_FBC_BLIT_IGNORE 0x00000000
  97. #define CG6_FBC_BLIT_NOSRC 0x00100000
  98. #define CG6_FBC_BLIT_SRC 0x00200000
  99. #define CG6_FBC_BLIT_ILLEGAL 0x00300000
  100. #define CG6_FBC_BLIT_MASK 0x00300000
  101. #define CG6_FBC_VBLANK 0x00080000
  102. #define CG6_FBC_MODE_IGNORE 0x00000000
  103. #define CG6_FBC_MODE_COLOR8 0x00020000
  104. #define CG6_FBC_MODE_COLOR1 0x00040000
  105. #define CG6_FBC_MODE_HRMONO 0x00060000
  106. #define CG6_FBC_MODE_MASK 0x00060000
  107. #define CG6_FBC_DRAW_IGNORE 0x00000000
  108. #define CG6_FBC_DRAW_RENDER 0x00008000
  109. #define CG6_FBC_DRAW_PICK 0x00010000
  110. #define CG6_FBC_DRAW_ILLEGAL 0x00018000
  111. #define CG6_FBC_DRAW_MASK 0x00018000
  112. #define CG6_FBC_BWRITE0_IGNORE 0x00000000
  113. #define CG6_FBC_BWRITE0_ENABLE 0x00002000
  114. #define CG6_FBC_BWRITE0_DISABLE 0x00004000
  115. #define CG6_FBC_BWRITE0_ILLEGAL 0x00006000
  116. #define CG6_FBC_BWRITE0_MASK 0x00006000
  117. #define CG6_FBC_BWRITE1_IGNORE 0x00000000
  118. #define CG6_FBC_BWRITE1_ENABLE 0x00000800
  119. #define CG6_FBC_BWRITE1_DISABLE 0x00001000
  120. #define CG6_FBC_BWRITE1_ILLEGAL 0x00001800
  121. #define CG6_FBC_BWRITE1_MASK 0x00001800
  122. #define CG6_FBC_BREAD_IGNORE 0x00000000
  123. #define CG6_FBC_BREAD_0 0x00000200
  124. #define CG6_FBC_BREAD_1 0x00000400
  125. #define CG6_FBC_BREAD_ILLEGAL 0x00000600
  126. #define CG6_FBC_BREAD_MASK 0x00000600
  127. #define CG6_FBC_BDISP_IGNORE 0x00000000
  128. #define CG6_FBC_BDISP_0 0x00000080
  129. #define CG6_FBC_BDISP_1 0x00000100
  130. #define CG6_FBC_BDISP_ILLEGAL 0x00000180
  131. #define CG6_FBC_BDISP_MASK 0x00000180
  132. #define CG6_FBC_INDEX_MOD 0x00000040
  133. #define CG6_FBC_INDEX_MASK 0x00000030
  134. /* THC definitions */
  135. #define CG6_THC_MISC_REV_SHIFT 16
  136. #define CG6_THC_MISC_REV_MASK 15
  137. #define CG6_THC_MISC_RESET (1 << 12)
  138. #define CG6_THC_MISC_VIDEO (1 << 10)
  139. #define CG6_THC_MISC_SYNC (1 << 9)
  140. #define CG6_THC_MISC_VSYNC (1 << 8)
  141. #define CG6_THC_MISC_SYNC_ENAB (1 << 7)
  142. #define CG6_THC_MISC_CURS_RES (1 << 6)
  143. #define CG6_THC_MISC_INT_ENAB (1 << 5)
  144. #define CG6_THC_MISC_INT (1 << 4)
  145. #define CG6_THC_MISC_INIT 0x9f
  146. #define CG6_THC_CURSOFF ((65536-32) | ((65536-32) << 16))
  147. /* The contents are unknown */
  148. struct cg6_tec {
  149. int tec_matrix;
  150. int tec_clip;
  151. int tec_vdc;
  152. };
  153. struct cg6_thc {
  154. u32 thc_pad0[512];
  155. u32 thc_hs; /* hsync timing */
  156. u32 thc_hsdvs;
  157. u32 thc_hd;
  158. u32 thc_vs; /* vsync timing */
  159. u32 thc_vd;
  160. u32 thc_refresh;
  161. u32 thc_misc;
  162. u32 thc_pad1[56];
  163. u32 thc_cursxy; /* cursor x,y position (16 bits each) */
  164. u32 thc_cursmask[32]; /* cursor mask bits */
  165. u32 thc_cursbits[32]; /* what to show where mask enabled */
  166. };
  167. struct cg6_fbc {
  168. u32 xxx0[1];
  169. u32 mode;
  170. u32 clip;
  171. u32 xxx1[1];
  172. u32 s;
  173. u32 draw;
  174. u32 blit;
  175. u32 font;
  176. u32 xxx2[24];
  177. u32 x0, y0, z0, color0;
  178. u32 x1, y1, z1, color1;
  179. u32 x2, y2, z2, color2;
  180. u32 x3, y3, z3, color3;
  181. u32 offx, offy;
  182. u32 xxx3[2];
  183. u32 incx, incy;
  184. u32 xxx4[2];
  185. u32 clipminx, clipminy;
  186. u32 xxx5[2];
  187. u32 clipmaxx, clipmaxy;
  188. u32 xxx6[2];
  189. u32 fg;
  190. u32 bg;
  191. u32 alu;
  192. u32 pm;
  193. u32 pixelm;
  194. u32 xxx7[2];
  195. u32 patalign;
  196. u32 pattern[8];
  197. u32 xxx8[432];
  198. u32 apointx, apointy, apointz;
  199. u32 xxx9[1];
  200. u32 rpointx, rpointy, rpointz;
  201. u32 xxx10[5];
  202. u32 pointr, pointg, pointb, pointa;
  203. u32 alinex, aliney, alinez;
  204. u32 xxx11[1];
  205. u32 rlinex, rliney, rlinez;
  206. u32 xxx12[5];
  207. u32 liner, lineg, lineb, linea;
  208. u32 atrix, atriy, atriz;
  209. u32 xxx13[1];
  210. u32 rtrix, rtriy, rtriz;
  211. u32 xxx14[5];
  212. u32 trir, trig, trib, tria;
  213. u32 aquadx, aquady, aquadz;
  214. u32 xxx15[1];
  215. u32 rquadx, rquady, rquadz;
  216. u32 xxx16[5];
  217. u32 quadr, quadg, quadb, quada;
  218. u32 arectx, arecty, arectz;
  219. u32 xxx17[1];
  220. u32 rrectx, rrecty, rrectz;
  221. u32 xxx18[5];
  222. u32 rectr, rectg, rectb, recta;
  223. };
  224. struct bt_regs {
  225. u32 addr;
  226. u32 color_map;
  227. u32 control;
  228. u32 cursor;
  229. };
  230. struct cg6_par {
  231. spinlock_t lock;
  232. struct bt_regs __iomem *bt;
  233. struct cg6_fbc __iomem *fbc;
  234. struct cg6_thc __iomem *thc;
  235. struct cg6_tec __iomem *tec;
  236. u32 __iomem *fhc;
  237. u32 flags;
  238. #define CG6_FLAG_BLANKED 0x00000001
  239. unsigned long physbase;
  240. unsigned long which_io;
  241. unsigned long fbsize;
  242. };
  243. static int cg6_sync(struct fb_info *info)
  244. {
  245. struct cg6_par *par = (struct cg6_par *)info->par;
  246. struct cg6_fbc __iomem *fbc = par->fbc;
  247. int limit = 10000;
  248. do {
  249. if (!(sbus_readl(&fbc->s) & 0x10000000))
  250. break;
  251. udelay(10);
  252. } while (--limit > 0);
  253. return 0;
  254. }
  255. static void cg6_switch_from_graph(struct cg6_par *par)
  256. {
  257. struct cg6_thc __iomem *thc = par->thc;
  258. unsigned long flags;
  259. spin_lock_irqsave(&par->lock, flags);
  260. /* Hide the cursor. */
  261. sbus_writel(CG6_THC_CURSOFF, &thc->thc_cursxy);
  262. spin_unlock_irqrestore(&par->lock, flags);
  263. }
  264. static int cg6_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
  265. {
  266. struct cg6_par *par = (struct cg6_par *)info->par;
  267. /* We just use this to catch switches out of
  268. * graphics mode.
  269. */
  270. cg6_switch_from_graph(par);
  271. if (var->xoffset || var->yoffset || var->vmode)
  272. return -EINVAL;
  273. return 0;
  274. }
  275. /**
  276. * cg6_fillrect - Draws a rectangle on the screen.
  277. *
  278. * @info: frame buffer structure that represents a single frame buffer
  279. * @rect: structure defining the rectagle and operation.
  280. */
  281. static void cg6_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
  282. {
  283. struct cg6_par *par = (struct cg6_par *)info->par;
  284. struct cg6_fbc __iomem *fbc = par->fbc;
  285. unsigned long flags;
  286. s32 val;
  287. /* CG6 doesn't handle ROP_XOR */
  288. spin_lock_irqsave(&par->lock, flags);
  289. cg6_sync(info);
  290. sbus_writel(rect->color, &fbc->fg);
  291. sbus_writel(~(u32)0, &fbc->pixelm);
  292. sbus_writel(0xea80ff00, &fbc->alu);
  293. sbus_writel(0, &fbc->s);
  294. sbus_writel(0, &fbc->clip);
  295. sbus_writel(~(u32)0, &fbc->pm);
  296. sbus_writel(rect->dy, &fbc->arecty);
  297. sbus_writel(rect->dx, &fbc->arectx);
  298. sbus_writel(rect->dy + rect->height, &fbc->arecty);
  299. sbus_writel(rect->dx + rect->width, &fbc->arectx);
  300. do {
  301. val = sbus_readl(&fbc->draw);
  302. } while (val < 0 && (val & 0x20000000));
  303. spin_unlock_irqrestore(&par->lock, flags);
  304. }
  305. /**
  306. * cg6_copyarea - Copies one area of the screen to another area.
  307. *
  308. * @info: frame buffer structure that represents a single frame buffer
  309. * @area: Structure providing the data to copy the framebuffer contents
  310. * from one region to another.
  311. *
  312. * This drawing operation copies a rectangular area from one area of the
  313. * screen to another area.
  314. */
  315. static void cg6_copyarea(struct fb_info *info, const struct fb_copyarea *area)
  316. {
  317. struct cg6_par *par = (struct cg6_par *)info->par;
  318. struct cg6_fbc __iomem *fbc = par->fbc;
  319. unsigned long flags;
  320. int i;
  321. spin_lock_irqsave(&par->lock, flags);
  322. cg6_sync(info);
  323. sbus_writel(0xff, &fbc->fg);
  324. sbus_writel(0x00, &fbc->bg);
  325. sbus_writel(~0, &fbc->pixelm);
  326. sbus_writel(0xe880cccc, &fbc->alu);
  327. sbus_writel(0, &fbc->s);
  328. sbus_writel(0, &fbc->clip);
  329. sbus_writel(area->sy, &fbc->y0);
  330. sbus_writel(area->sx, &fbc->x0);
  331. sbus_writel(area->sy + area->height - 1, &fbc->y1);
  332. sbus_writel(area->sx + area->width - 1, &fbc->x1);
  333. sbus_writel(area->dy, &fbc->y2);
  334. sbus_writel(area->dx, &fbc->x2);
  335. sbus_writel(area->dy + area->height - 1, &fbc->y3);
  336. sbus_writel(area->dx + area->width - 1, &fbc->x3);
  337. do {
  338. i = sbus_readl(&fbc->blit);
  339. } while (i < 0 && (i & 0x20000000));
  340. spin_unlock_irqrestore(&par->lock, flags);
  341. }
  342. /**
  343. * cg6_imageblit - Copies a image from system memory to the screen.
  344. *
  345. * @info: frame buffer structure that represents a single frame buffer
  346. * @image: structure defining the image.
  347. */
  348. static void cg6_imageblit(struct fb_info *info, const struct fb_image *image)
  349. {
  350. struct cg6_par *par = (struct cg6_par *)info->par;
  351. struct cg6_fbc __iomem *fbc = par->fbc;
  352. const u8 *data = image->data;
  353. unsigned long flags;
  354. u32 x, y;
  355. int i, width;
  356. if (image->depth > 1) {
  357. cfb_imageblit(info, image);
  358. return;
  359. }
  360. spin_lock_irqsave(&par->lock, flags);
  361. cg6_sync(info);
  362. sbus_writel(image->fg_color, &fbc->fg);
  363. sbus_writel(image->bg_color, &fbc->bg);
  364. sbus_writel(0x140000, &fbc->mode);
  365. sbus_writel(0xe880fc30, &fbc->alu);
  366. sbus_writel(~(u32)0, &fbc->pixelm);
  367. sbus_writel(0, &fbc->s);
  368. sbus_writel(0, &fbc->clip);
  369. sbus_writel(0xff, &fbc->pm);
  370. sbus_writel(32, &fbc->incx);
  371. sbus_writel(0, &fbc->incy);
  372. x = image->dx;
  373. y = image->dy;
  374. for (i = 0; i < image->height; i++) {
  375. width = image->width;
  376. while (width >= 32) {
  377. u32 val;
  378. sbus_writel(y, &fbc->y0);
  379. sbus_writel(x, &fbc->x0);
  380. sbus_writel(x + 32 - 1, &fbc->x1);
  381. val = ((u32)data[0] << 24) |
  382. ((u32)data[1] << 16) |
  383. ((u32)data[2] << 8) |
  384. ((u32)data[3] << 0);
  385. sbus_writel(val, &fbc->font);
  386. data += 4;
  387. x += 32;
  388. width -= 32;
  389. }
  390. if (width) {
  391. u32 val;
  392. sbus_writel(y, &fbc->y0);
  393. sbus_writel(x, &fbc->x0);
  394. sbus_writel(x + width - 1, &fbc->x1);
  395. if (width <= 8) {
  396. val = (u32) data[0] << 24;
  397. data += 1;
  398. } else if (width <= 16) {
  399. val = ((u32) data[0] << 24) |
  400. ((u32) data[1] << 16);
  401. data += 2;
  402. } else {
  403. val = ((u32) data[0] << 24) |
  404. ((u32) data[1] << 16) |
  405. ((u32) data[2] << 8);
  406. data += 3;
  407. }
  408. sbus_writel(val, &fbc->font);
  409. }
  410. y += 1;
  411. x = image->dx;
  412. }
  413. spin_unlock_irqrestore(&par->lock, flags);
  414. }
  415. /**
  416. * cg6_setcolreg - Sets a color register.
  417. *
  418. * @regno: boolean, 0 copy local, 1 get_user() function
  419. * @red: frame buffer colormap structure
  420. * @green: The green value which can be up to 16 bits wide
  421. * @blue: The blue value which can be up to 16 bits wide.
  422. * @transp: If supported the alpha value which can be up to 16 bits wide.
  423. * @info: frame buffer info structure
  424. */
  425. static int cg6_setcolreg(unsigned regno,
  426. unsigned red, unsigned green, unsigned blue,
  427. unsigned transp, struct fb_info *info)
  428. {
  429. struct cg6_par *par = (struct cg6_par *)info->par;
  430. struct bt_regs __iomem *bt = par->bt;
  431. unsigned long flags;
  432. if (regno >= 256)
  433. return 1;
  434. red >>= 8;
  435. green >>= 8;
  436. blue >>= 8;
  437. spin_lock_irqsave(&par->lock, flags);
  438. sbus_writel((u32)regno << 24, &bt->addr);
  439. sbus_writel((u32)red << 24, &bt->color_map);
  440. sbus_writel((u32)green << 24, &bt->color_map);
  441. sbus_writel((u32)blue << 24, &bt->color_map);
  442. spin_unlock_irqrestore(&par->lock, flags);
  443. return 0;
  444. }
  445. /**
  446. * cg6_blank - Blanks the display.
  447. *
  448. * @blank_mode: the blank mode we want.
  449. * @info: frame buffer structure that represents a single frame buffer
  450. */
  451. static int cg6_blank(int blank, struct fb_info *info)
  452. {
  453. struct cg6_par *par = (struct cg6_par *)info->par;
  454. struct cg6_thc __iomem *thc = par->thc;
  455. unsigned long flags;
  456. u32 val;
  457. spin_lock_irqsave(&par->lock, flags);
  458. val = sbus_readl(&thc->thc_misc);
  459. switch (blank) {
  460. case FB_BLANK_UNBLANK: /* Unblanking */
  461. val |= CG6_THC_MISC_VIDEO;
  462. par->flags &= ~CG6_FLAG_BLANKED;
  463. break;
  464. case FB_BLANK_NORMAL: /* Normal blanking */
  465. case FB_BLANK_VSYNC_SUSPEND: /* VESA blank (vsync off) */
  466. case FB_BLANK_HSYNC_SUSPEND: /* VESA blank (hsync off) */
  467. case FB_BLANK_POWERDOWN: /* Poweroff */
  468. val &= ~CG6_THC_MISC_VIDEO;
  469. par->flags |= CG6_FLAG_BLANKED;
  470. break;
  471. }
  472. sbus_writel(val, &thc->thc_misc);
  473. spin_unlock_irqrestore(&par->lock, flags);
  474. return 0;
  475. }
  476. static struct sbus_mmap_map cg6_mmap_map[] = {
  477. {
  478. .voff = CG6_FBC,
  479. .poff = CG6_FBC_OFFSET,
  480. .size = PAGE_SIZE
  481. },
  482. {
  483. .voff = CG6_TEC,
  484. .poff = CG6_TEC_OFFSET,
  485. .size = PAGE_SIZE
  486. },
  487. {
  488. .voff = CG6_BTREGS,
  489. .poff = CG6_BROOKTREE_OFFSET,
  490. .size = PAGE_SIZE
  491. },
  492. {
  493. .voff = CG6_FHC,
  494. .poff = CG6_FHC_OFFSET,
  495. .size = PAGE_SIZE
  496. },
  497. {
  498. .voff = CG6_THC,
  499. .poff = CG6_THC_OFFSET,
  500. .size = PAGE_SIZE
  501. },
  502. {
  503. .voff = CG6_ROM,
  504. .poff = CG6_ROM_OFFSET,
  505. .size = 0x10000
  506. },
  507. {
  508. .voff = CG6_RAM,
  509. .poff = CG6_RAM_OFFSET,
  510. .size = SBUS_MMAP_FBSIZE(1)
  511. },
  512. {
  513. .voff = CG6_DHC,
  514. .poff = CG6_DHC_OFFSET,
  515. .size = 0x40000
  516. },
  517. { .size = 0 }
  518. };
  519. static int cg6_mmap(struct fb_info *info, struct vm_area_struct *vma)
  520. {
  521. struct cg6_par *par = (struct cg6_par *)info->par;
  522. return sbusfb_mmap_helper(cg6_mmap_map,
  523. par->physbase, par->fbsize,
  524. par->which_io, vma);
  525. }
  526. static int cg6_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg)
  527. {
  528. struct cg6_par *par = (struct cg6_par *)info->par;
  529. return sbusfb_ioctl_helper(cmd, arg, info,
  530. FBTYPE_SUNFAST_COLOR, 8, par->fbsize);
  531. }
  532. /*
  533. * Initialisation
  534. */
  535. static void __devinit cg6_init_fix(struct fb_info *info, int linebytes)
  536. {
  537. struct cg6_par *par = (struct cg6_par *)info->par;
  538. const char *cg6_cpu_name, *cg6_card_name;
  539. u32 conf;
  540. conf = sbus_readl(par->fhc);
  541. switch (conf & CG6_FHC_CPU_MASK) {
  542. case CG6_FHC_CPU_SPARC:
  543. cg6_cpu_name = "sparc";
  544. break;
  545. case CG6_FHC_CPU_68020:
  546. cg6_cpu_name = "68020";
  547. break;
  548. default:
  549. cg6_cpu_name = "i386";
  550. break;
  551. };
  552. if (((conf >> CG6_FHC_REV_SHIFT) & CG6_FHC_REV_MASK) >= 11) {
  553. if (par->fbsize <= 0x100000)
  554. cg6_card_name = "TGX";
  555. else
  556. cg6_card_name = "TGX+";
  557. } else {
  558. if (par->fbsize <= 0x100000)
  559. cg6_card_name = "GX";
  560. else
  561. cg6_card_name = "GX+";
  562. }
  563. sprintf(info->fix.id, "%s %s", cg6_card_name, cg6_cpu_name);
  564. info->fix.id[sizeof(info->fix.id) - 1] = 0;
  565. info->fix.type = FB_TYPE_PACKED_PIXELS;
  566. info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
  567. info->fix.line_length = linebytes;
  568. info->fix.accel = FB_ACCEL_SUN_CGSIX;
  569. }
  570. /* Initialize Brooktree DAC */
  571. static void __devinit cg6_bt_init(struct cg6_par *par)
  572. {
  573. struct bt_regs __iomem *bt = par->bt;
  574. sbus_writel(0x04 << 24, &bt->addr); /* color planes */
  575. sbus_writel(0xff << 24, &bt->control);
  576. sbus_writel(0x05 << 24, &bt->addr);
  577. sbus_writel(0x00 << 24, &bt->control);
  578. sbus_writel(0x06 << 24, &bt->addr); /* overlay plane */
  579. sbus_writel(0x73 << 24, &bt->control);
  580. sbus_writel(0x07 << 24, &bt->addr);
  581. sbus_writel(0x00 << 24, &bt->control);
  582. }
  583. static void __devinit cg6_chip_init(struct fb_info *info)
  584. {
  585. struct cg6_par *par = (struct cg6_par *)info->par;
  586. struct cg6_tec __iomem *tec = par->tec;
  587. struct cg6_fbc __iomem *fbc = par->fbc;
  588. struct cg6_thc __iomem *thc = par->thc;
  589. u32 rev, conf, mode;
  590. int i;
  591. /* Hide the cursor. */
  592. sbus_writel(CG6_THC_CURSOFF, &thc->thc_cursxy);
  593. /* Turn off stuff in the Transform Engine. */
  594. sbus_writel(0, &tec->tec_matrix);
  595. sbus_writel(0, &tec->tec_clip);
  596. sbus_writel(0, &tec->tec_vdc);
  597. /* Take care of bugs in old revisions. */
  598. rev = (sbus_readl(par->fhc) >> CG6_FHC_REV_SHIFT) & CG6_FHC_REV_MASK;
  599. if (rev < 5) {
  600. conf = (sbus_readl(par->fhc) & CG6_FHC_RES_MASK) |
  601. CG6_FHC_CPU_68020 | CG6_FHC_TEST |
  602. (11 << CG6_FHC_TEST_X_SHIFT) |
  603. (11 << CG6_FHC_TEST_Y_SHIFT);
  604. if (rev < 2)
  605. conf |= CG6_FHC_DST_DISABLE;
  606. sbus_writel(conf, par->fhc);
  607. }
  608. /* Set things in the FBC. Bad things appear to happen if we do
  609. * back to back store/loads on the mode register, so copy it
  610. * out instead. */
  611. mode = sbus_readl(&fbc->mode);
  612. do {
  613. i = sbus_readl(&fbc->s);
  614. } while (i & 0x10000000);
  615. mode &= ~(CG6_FBC_BLIT_MASK | CG6_FBC_MODE_MASK |
  616. CG6_FBC_DRAW_MASK | CG6_FBC_BWRITE0_MASK |
  617. CG6_FBC_BWRITE1_MASK | CG6_FBC_BREAD_MASK |
  618. CG6_FBC_BDISP_MASK);
  619. mode |= (CG6_FBC_BLIT_SRC | CG6_FBC_MODE_COLOR8 |
  620. CG6_FBC_DRAW_RENDER | CG6_FBC_BWRITE0_ENABLE |
  621. CG6_FBC_BWRITE1_DISABLE | CG6_FBC_BREAD_0 |
  622. CG6_FBC_BDISP_0);
  623. sbus_writel(mode, &fbc->mode);
  624. sbus_writel(0, &fbc->clip);
  625. sbus_writel(0, &fbc->offx);
  626. sbus_writel(0, &fbc->offy);
  627. sbus_writel(0, &fbc->clipminx);
  628. sbus_writel(0, &fbc->clipminy);
  629. sbus_writel(info->var.xres - 1, &fbc->clipmaxx);
  630. sbus_writel(info->var.yres - 1, &fbc->clipmaxy);
  631. }
  632. static void cg6_unmap_regs(struct of_device *op, struct fb_info *info,
  633. struct cg6_par *par)
  634. {
  635. if (par->fbc)
  636. of_iounmap(&op->resource[0], par->fbc, 4096);
  637. if (par->tec)
  638. of_iounmap(&op->resource[0], par->tec, sizeof(struct cg6_tec));
  639. if (par->thc)
  640. of_iounmap(&op->resource[0], par->thc, sizeof(struct cg6_thc));
  641. if (par->bt)
  642. of_iounmap(&op->resource[0], par->bt, sizeof(struct bt_regs));
  643. if (par->fhc)
  644. of_iounmap(&op->resource[0], par->fhc, sizeof(u32));
  645. if (info->screen_base)
  646. of_iounmap(&op->resource[0], info->screen_base, par->fbsize);
  647. }
  648. static int __devinit cg6_probe(struct of_device *op,
  649. const struct of_device_id *match)
  650. {
  651. struct device_node *dp = op->node;
  652. struct fb_info *info;
  653. struct cg6_par *par;
  654. int linebytes, err;
  655. int dblbuf;
  656. info = framebuffer_alloc(sizeof(struct cg6_par), &op->dev);
  657. err = -ENOMEM;
  658. if (!info)
  659. goto out_err;
  660. par = info->par;
  661. spin_lock_init(&par->lock);
  662. par->physbase = op->resource[0].start;
  663. par->which_io = op->resource[0].flags & IORESOURCE_BITS;
  664. sbusfb_fill_var(&info->var, dp, 8);
  665. info->var.red.length = 8;
  666. info->var.green.length = 8;
  667. info->var.blue.length = 8;
  668. linebytes = of_getintprop_default(dp, "linebytes",
  669. info->var.xres);
  670. par->fbsize = PAGE_ALIGN(linebytes * info->var.yres);
  671. dblbuf = of_getintprop_default(dp, "dblbuf", 0);
  672. if (dblbuf)
  673. par->fbsize *= 4;
  674. par->fbc = of_ioremap(&op->resource[0], CG6_FBC_OFFSET,
  675. 4096, "cgsix fbc");
  676. par->tec = of_ioremap(&op->resource[0], CG6_TEC_OFFSET,
  677. sizeof(struct cg6_tec), "cgsix tec");
  678. par->thc = of_ioremap(&op->resource[0], CG6_THC_OFFSET,
  679. sizeof(struct cg6_thc), "cgsix thc");
  680. par->bt = of_ioremap(&op->resource[0], CG6_BROOKTREE_OFFSET,
  681. sizeof(struct bt_regs), "cgsix dac");
  682. par->fhc = of_ioremap(&op->resource[0], CG6_FHC_OFFSET,
  683. sizeof(u32), "cgsix fhc");
  684. info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_IMAGEBLIT |
  685. FBINFO_HWACCEL_COPYAREA | FBINFO_HWACCEL_FILLRECT |
  686. FBINFO_READS_FAST;
  687. info->fbops = &cg6_ops;
  688. info->screen_base = of_ioremap(&op->resource[0], CG6_RAM_OFFSET,
  689. par->fbsize, "cgsix ram");
  690. if (!par->fbc || !par->tec || !par->thc ||
  691. !par->bt || !par->fhc || !info->screen_base)
  692. goto out_unmap_regs;
  693. info->var.accel_flags = FB_ACCELF_TEXT;
  694. cg6_bt_init(par);
  695. cg6_chip_init(info);
  696. cg6_blank(FB_BLANK_UNBLANK, info);
  697. if (fb_alloc_cmap(&info->cmap, 256, 0))
  698. goto out_unmap_regs;
  699. fb_set_cmap(&info->cmap, info);
  700. cg6_init_fix(info, linebytes);
  701. err = register_framebuffer(info);
  702. if (err < 0)
  703. goto out_dealloc_cmap;
  704. dev_set_drvdata(&op->dev, info);
  705. printk(KERN_INFO "%s: CGsix [%s] at %lx:%lx\n",
  706. dp->full_name, info->fix.id,
  707. par->which_io, par->physbase);
  708. return 0;
  709. out_dealloc_cmap:
  710. fb_dealloc_cmap(&info->cmap);
  711. out_unmap_regs:
  712. cg6_unmap_regs(op, info, par);
  713. out_err:
  714. return err;
  715. }
  716. static int __devexit cg6_remove(struct of_device *op)
  717. {
  718. struct fb_info *info = dev_get_drvdata(&op->dev);
  719. struct cg6_par *par = info->par;
  720. unregister_framebuffer(info);
  721. fb_dealloc_cmap(&info->cmap);
  722. cg6_unmap_regs(op, info, par);
  723. framebuffer_release(info);
  724. dev_set_drvdata(&op->dev, NULL);
  725. return 0;
  726. }
  727. static const struct of_device_id cg6_match[] = {
  728. {
  729. .name = "cgsix",
  730. },
  731. {
  732. .name = "cgthree+",
  733. },
  734. {},
  735. };
  736. MODULE_DEVICE_TABLE(of, cg6_match);
  737. static struct of_platform_driver cg6_driver = {
  738. .name = "cg6",
  739. .match_table = cg6_match,
  740. .probe = cg6_probe,
  741. .remove = __devexit_p(cg6_remove),
  742. };
  743. static int __init cg6_init(void)
  744. {
  745. if (fb_get_options("cg6fb", NULL))
  746. return -ENODEV;
  747. return of_register_driver(&cg6_driver, &of_bus_type);
  748. }
  749. static void __exit cg6_exit(void)
  750. {
  751. of_unregister_driver(&cg6_driver);
  752. }
  753. module_init(cg6_init);
  754. module_exit(cg6_exit);
  755. MODULE_DESCRIPTION("framebuffer driver for CGsix chipsets");
  756. MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
  757. MODULE_VERSION("2.0");
  758. MODULE_LICENSE("GPL");