cg6.c 21 KB

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