cg6.c 20 KB

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