cg6.c 22 KB

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