blob: 0d47c6030e3d084011d697bf7aefe34d6f02021f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* cg6.c: CGSIX (GX, GXplus, TGX) frame buffer driver
2 *
David S. Miller50312ce2006-06-29 14:35:52 -07003 * Copyright (C) 2003, 2006 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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
11#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/errno.h>
14#include <linux/string.h>
15#include <linux/slab.h>
16#include <linux/delay.h>
17#include <linux/init.h>
18#include <linux/fb.h>
19#include <linux/mm.h>
Robert Reif6cd5a862008-05-08 21:37:30 -070020#include <linux/of_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/fbio.h>
24
25#include "sbuslib.h"
26
27/*
28 * Local functions.
29 */
30
31static int cg6_setcolreg(unsigned, unsigned, unsigned, unsigned,
32 unsigned, struct fb_info *);
33static int cg6_blank(int, struct fb_info *);
34
35static void cg6_imageblit(struct fb_info *, const struct fb_image *);
36static void cg6_fillrect(struct fb_info *, const struct fb_fillrect *);
Robert Reif291d5f32008-10-10 12:12:41 -070037static void cg6_copyarea(struct fb_info *info, const struct fb_copyarea *area);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static int cg6_sync(struct fb_info *);
Christoph Hellwig216d5262006-01-14 13:21:25 -080039static int cg6_mmap(struct fb_info *, struct vm_area_struct *);
Christoph Hellwig67a66802006-01-14 13:21:25 -080040static int cg6_ioctl(struct fb_info *, unsigned int, unsigned long);
Robert Reif291d5f32008-10-10 12:12:41 -070041static int cg6_pan_display(struct fb_var_screeninfo *, struct fb_info *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
44 * Frame buffer operations
45 */
46
47static struct fb_ops cg6_ops = {
48 .owner = THIS_MODULE,
49 .fb_setcolreg = cg6_setcolreg,
50 .fb_blank = cg6_blank,
Robert Reif291d5f32008-10-10 12:12:41 -070051 .fb_pan_display = cg6_pan_display,
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 .fb_fillrect = cg6_fillrect,
Krzysztof Helta140e942007-08-05 18:05:29 -070053 .fb_copyarea = cg6_copyarea,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .fb_imageblit = cg6_imageblit,
55 .fb_sync = cg6_sync,
56 .fb_mmap = cg6_mmap,
57 .fb_ioctl = cg6_ioctl,
Christoph Hellwig9ffb83b2005-11-12 12:11:12 -080058#ifdef CONFIG_COMPAT
59 .fb_compat_ioctl = sbusfb_compat_ioctl,
60#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
63/* Offset of interesting structures in the OBIO space */
64/*
65 * Brooktree is the video dac and is funny to program on the cg6.
66 * (it's even funnier on the cg3)
67 * The FBC could be the frame buffer control
68 * The FHC could is the frame buffer hardware control.
69 */
Krzysztof Helt6993bea2007-08-05 18:04:18 -070070#define CG6_ROM_OFFSET 0x0UL
71#define CG6_BROOKTREE_OFFSET 0x200000UL
72#define CG6_DHC_OFFSET 0x240000UL
73#define CG6_ALT_OFFSET 0x280000UL
74#define CG6_FHC_OFFSET 0x300000UL
75#define CG6_THC_OFFSET 0x301000UL
76#define CG6_FBC_OFFSET 0x700000UL
77#define CG6_TEC_OFFSET 0x701000UL
78#define CG6_RAM_OFFSET 0x800000UL
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* FHC definitions */
Krzysztof Helt6993bea2007-08-05 18:04:18 -070081#define CG6_FHC_FBID_SHIFT 24
82#define CG6_FHC_FBID_MASK 255
83#define CG6_FHC_REV_SHIFT 20
84#define CG6_FHC_REV_MASK 15
85#define CG6_FHC_FROP_DISABLE (1 << 19)
86#define CG6_FHC_ROW_DISABLE (1 << 18)
87#define CG6_FHC_SRC_DISABLE (1 << 17)
88#define CG6_FHC_DST_DISABLE (1 << 16)
89#define CG6_FHC_RESET (1 << 15)
90#define CG6_FHC_LITTLE_ENDIAN (1 << 13)
91#define CG6_FHC_RES_MASK (3 << 11)
92#define CG6_FHC_1024 (0 << 11)
93#define CG6_FHC_1152 (1 << 11)
94#define CG6_FHC_1280 (2 << 11)
95#define CG6_FHC_1600 (3 << 11)
96#define CG6_FHC_CPU_MASK (3 << 9)
97#define CG6_FHC_CPU_SPARC (0 << 9)
98#define CG6_FHC_CPU_68020 (1 << 9)
99#define CG6_FHC_CPU_386 (2 << 9)
100#define CG6_FHC_TEST (1 << 8)
101#define CG6_FHC_TEST_X_SHIFT 4
102#define CG6_FHC_TEST_X_MASK 15
103#define CG6_FHC_TEST_Y_SHIFT 0
104#define CG6_FHC_TEST_Y_MASK 15
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/* FBC mode definitions */
107#define CG6_FBC_BLIT_IGNORE 0x00000000
108#define CG6_FBC_BLIT_NOSRC 0x00100000
109#define CG6_FBC_BLIT_SRC 0x00200000
110#define CG6_FBC_BLIT_ILLEGAL 0x00300000
111#define CG6_FBC_BLIT_MASK 0x00300000
112
113#define CG6_FBC_VBLANK 0x00080000
114
115#define CG6_FBC_MODE_IGNORE 0x00000000
116#define CG6_FBC_MODE_COLOR8 0x00020000
117#define CG6_FBC_MODE_COLOR1 0x00040000
118#define CG6_FBC_MODE_HRMONO 0x00060000
119#define CG6_FBC_MODE_MASK 0x00060000
120
121#define CG6_FBC_DRAW_IGNORE 0x00000000
122#define CG6_FBC_DRAW_RENDER 0x00008000
123#define CG6_FBC_DRAW_PICK 0x00010000
124#define CG6_FBC_DRAW_ILLEGAL 0x00018000
125#define CG6_FBC_DRAW_MASK 0x00018000
126
127#define CG6_FBC_BWRITE0_IGNORE 0x00000000
128#define CG6_FBC_BWRITE0_ENABLE 0x00002000
129#define CG6_FBC_BWRITE0_DISABLE 0x00004000
130#define CG6_FBC_BWRITE0_ILLEGAL 0x00006000
131#define CG6_FBC_BWRITE0_MASK 0x00006000
132
133#define CG6_FBC_BWRITE1_IGNORE 0x00000000
134#define CG6_FBC_BWRITE1_ENABLE 0x00000800
135#define CG6_FBC_BWRITE1_DISABLE 0x00001000
136#define CG6_FBC_BWRITE1_ILLEGAL 0x00001800
137#define CG6_FBC_BWRITE1_MASK 0x00001800
138
139#define CG6_FBC_BREAD_IGNORE 0x00000000
140#define CG6_FBC_BREAD_0 0x00000200
141#define CG6_FBC_BREAD_1 0x00000400
142#define CG6_FBC_BREAD_ILLEGAL 0x00000600
143#define CG6_FBC_BREAD_MASK 0x00000600
144
145#define CG6_FBC_BDISP_IGNORE 0x00000000
146#define CG6_FBC_BDISP_0 0x00000080
147#define CG6_FBC_BDISP_1 0x00000100
148#define CG6_FBC_BDISP_ILLEGAL 0x00000180
149#define CG6_FBC_BDISP_MASK 0x00000180
150
151#define CG6_FBC_INDEX_MOD 0x00000040
152#define CG6_FBC_INDEX_MASK 0x00000030
153
154/* THC definitions */
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700155#define CG6_THC_MISC_REV_SHIFT 16
156#define CG6_THC_MISC_REV_MASK 15
157#define CG6_THC_MISC_RESET (1 << 12)
158#define CG6_THC_MISC_VIDEO (1 << 10)
159#define CG6_THC_MISC_SYNC (1 << 9)
160#define CG6_THC_MISC_VSYNC (1 << 8)
161#define CG6_THC_MISC_SYNC_ENAB (1 << 7)
162#define CG6_THC_MISC_CURS_RES (1 << 6)
163#define CG6_THC_MISC_INT_ENAB (1 << 5)
164#define CG6_THC_MISC_INT (1 << 4)
165#define CG6_THC_MISC_INIT 0x9f
Robert Reif291d5f32008-10-10 12:12:41 -0700166#define CG6_THC_CURSOFF ((65536-32) | ((65536-32) << 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168/* The contents are unknown */
169struct cg6_tec {
David S. Miller50312ce2006-06-29 14:35:52 -0700170 int tec_matrix;
171 int tec_clip;
172 int tec_vdc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173};
174
175struct cg6_thc {
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700176 u32 thc_pad0[512];
177 u32 thc_hs; /* hsync timing */
178 u32 thc_hsdvs;
179 u32 thc_hd;
180 u32 thc_vs; /* vsync timing */
181 u32 thc_vd;
182 u32 thc_refresh;
183 u32 thc_misc;
184 u32 thc_pad1[56];
185 u32 thc_cursxy; /* cursor x,y position (16 bits each) */
186 u32 thc_cursmask[32]; /* cursor mask bits */
187 u32 thc_cursbits[32]; /* what to show where mask enabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
190struct cg6_fbc {
David S. Miller50312ce2006-06-29 14:35:52 -0700191 u32 xxx0[1];
192 u32 mode;
193 u32 clip;
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700194 u32 xxx1[1];
David S. Miller50312ce2006-06-29 14:35:52 -0700195 u32 s;
196 u32 draw;
197 u32 blit;
198 u32 font;
199 u32 xxx2[24];
200 u32 x0, y0, z0, color0;
201 u32 x1, y1, z1, color1;
202 u32 x2, y2, z2, color2;
203 u32 x3, y3, z3, color3;
204 u32 offx, offy;
205 u32 xxx3[2];
206 u32 incx, incy;
207 u32 xxx4[2];
208 u32 clipminx, clipminy;
209 u32 xxx5[2];
210 u32 clipmaxx, clipmaxy;
211 u32 xxx6[2];
212 u32 fg;
213 u32 bg;
214 u32 alu;
215 u32 pm;
216 u32 pixelm;
217 u32 xxx7[2];
218 u32 patalign;
219 u32 pattern[8];
220 u32 xxx8[432];
221 u32 apointx, apointy, apointz;
222 u32 xxx9[1];
223 u32 rpointx, rpointy, rpointz;
224 u32 xxx10[5];
225 u32 pointr, pointg, pointb, pointa;
226 u32 alinex, aliney, alinez;
227 u32 xxx11[1];
228 u32 rlinex, rliney, rlinez;
229 u32 xxx12[5];
230 u32 liner, lineg, lineb, linea;
231 u32 atrix, atriy, atriz;
232 u32 xxx13[1];
233 u32 rtrix, rtriy, rtriz;
234 u32 xxx14[5];
235 u32 trir, trig, trib, tria;
236 u32 aquadx, aquady, aquadz;
237 u32 xxx15[1];
238 u32 rquadx, rquady, rquadz;
239 u32 xxx16[5];
240 u32 quadr, quadg, quadb, quada;
241 u32 arectx, arecty, arectz;
242 u32 xxx17[1];
243 u32 rrectx, rrecty, rrectz;
244 u32 xxx18[5];
245 u32 rectr, rectg, rectb, recta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246};
247
248struct bt_regs {
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700249 u32 addr;
250 u32 color_map;
251 u32 control;
252 u32 cursor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253};
254
255struct cg6_par {
256 spinlock_t lock;
257 struct bt_regs __iomem *bt;
258 struct cg6_fbc __iomem *fbc;
259 struct cg6_thc __iomem *thc;
260 struct cg6_tec __iomem *tec;
David S. Miller50312ce2006-06-29 14:35:52 -0700261 u32 __iomem *fhc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 u32 flags;
264#define CG6_FLAG_BLANKED 0x00000001
265
David S. Miller50312ce2006-06-29 14:35:52 -0700266 unsigned long which_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267};
268
269static int cg6_sync(struct fb_info *info)
270{
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700271 struct cg6_par *par = (struct cg6_par *)info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 struct cg6_fbc __iomem *fbc = par->fbc;
273 int limit = 10000;
274
275 do {
276 if (!(sbus_readl(&fbc->s) & 0x10000000))
277 break;
278 udelay(10);
279 } while (--limit > 0);
280
281 return 0;
282}
283
Robert Reif291d5f32008-10-10 12:12:41 -0700284static void cg6_switch_from_graph(struct cg6_par *par)
285{
286 struct cg6_thc __iomem *thc = par->thc;
287 unsigned long flags;
288
289 spin_lock_irqsave(&par->lock, flags);
290
291 /* Hide the cursor. */
292 sbus_writel(CG6_THC_CURSOFF, &thc->thc_cursxy);
293
294 spin_unlock_irqrestore(&par->lock, flags);
295}
296
297static int cg6_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
298{
299 struct cg6_par *par = (struct cg6_par *)info->par;
300
301 /* We just use this to catch switches out of
302 * graphics mode.
303 */
304 cg6_switch_from_graph(par);
305
306 if (var->xoffset || var->yoffset || var->vmode)
307 return -EINVAL;
308 return 0;
309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311/**
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700312 * cg6_fillrect - Draws a rectangle on the screen.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 *
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700314 * @info: frame buffer structure that represents a single frame buffer
315 * @rect: structure defining the rectagle and operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 */
317static void cg6_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
318{
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700319 struct cg6_par *par = (struct cg6_par *)info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 struct cg6_fbc __iomem *fbc = par->fbc;
321 unsigned long flags;
322 s32 val;
323
Krzysztof Helta140e942007-08-05 18:05:29 -0700324 /* CG6 doesn't handle ROP_XOR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 spin_lock_irqsave(&par->lock, flags);
Krzysztof Helta140e942007-08-05 18:05:29 -0700327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 cg6_sync(info);
Krzysztof Helta140e942007-08-05 18:05:29 -0700329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 sbus_writel(rect->color, &fbc->fg);
331 sbus_writel(~(u32)0, &fbc->pixelm);
332 sbus_writel(0xea80ff00, &fbc->alu);
333 sbus_writel(0, &fbc->s);
334 sbus_writel(0, &fbc->clip);
335 sbus_writel(~(u32)0, &fbc->pm);
336 sbus_writel(rect->dy, &fbc->arecty);
337 sbus_writel(rect->dx, &fbc->arectx);
338 sbus_writel(rect->dy + rect->height, &fbc->arecty);
339 sbus_writel(rect->dx + rect->width, &fbc->arectx);
340 do {
341 val = sbus_readl(&fbc->draw);
342 } while (val < 0 && (val & 0x20000000));
343 spin_unlock_irqrestore(&par->lock, flags);
344}
345
346/**
Krzysztof Helta140e942007-08-05 18:05:29 -0700347 * cg6_copyarea - Copies one area of the screen to another area.
348 *
349 * @info: frame buffer structure that represents a single frame buffer
350 * @area: Structure providing the data to copy the framebuffer contents
351 * from one region to another.
352 *
353 * This drawing operation copies a rectangular area from one area of the
354 * screen to another area.
355 */
356static void cg6_copyarea(struct fb_info *info, const struct fb_copyarea *area)
357{
358 struct cg6_par *par = (struct cg6_par *)info->par;
359 struct cg6_fbc __iomem *fbc = par->fbc;
360 unsigned long flags;
361 int i;
362
363 spin_lock_irqsave(&par->lock, flags);
364
365 cg6_sync(info);
366
367 sbus_writel(0xff, &fbc->fg);
368 sbus_writel(0x00, &fbc->bg);
369 sbus_writel(~0, &fbc->pixelm);
370 sbus_writel(0xe880cccc, &fbc->alu);
371 sbus_writel(0, &fbc->s);
372 sbus_writel(0, &fbc->clip);
373
374 sbus_writel(area->sy, &fbc->y0);
375 sbus_writel(area->sx, &fbc->x0);
376 sbus_writel(area->sy + area->height - 1, &fbc->y1);
377 sbus_writel(area->sx + area->width - 1, &fbc->x1);
378 sbus_writel(area->dy, &fbc->y2);
379 sbus_writel(area->dx, &fbc->x2);
380 sbus_writel(area->dy + area->height - 1, &fbc->y3);
381 sbus_writel(area->dx + area->width - 1, &fbc->x3);
382 do {
383 i = sbus_readl(&fbc->blit);
384 } while (i < 0 && (i & 0x20000000));
385 spin_unlock_irqrestore(&par->lock, flags);
386}
387
388/**
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700389 * cg6_imageblit - Copies a image from system memory to the screen.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 *
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700391 * @info: frame buffer structure that represents a single frame buffer
392 * @image: structure defining the image.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 */
394static void cg6_imageblit(struct fb_info *info, const struct fb_image *image)
395{
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700396 struct cg6_par *par = (struct cg6_par *)info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 struct cg6_fbc __iomem *fbc = par->fbc;
398 const u8 *data = image->data;
399 unsigned long flags;
400 u32 x, y;
401 int i, width;
402
403 if (image->depth > 1) {
404 cfb_imageblit(info, image);
405 return;
406 }
407
408 spin_lock_irqsave(&par->lock, flags);
409
410 cg6_sync(info);
411
412 sbus_writel(image->fg_color, &fbc->fg);
413 sbus_writel(image->bg_color, &fbc->bg);
414 sbus_writel(0x140000, &fbc->mode);
415 sbus_writel(0xe880fc30, &fbc->alu);
416 sbus_writel(~(u32)0, &fbc->pixelm);
417 sbus_writel(0, &fbc->s);
418 sbus_writel(0, &fbc->clip);
419 sbus_writel(0xff, &fbc->pm);
420 sbus_writel(32, &fbc->incx);
421 sbus_writel(0, &fbc->incy);
422
423 x = image->dx;
424 y = image->dy;
425 for (i = 0; i < image->height; i++) {
426 width = image->width;
427
428 while (width >= 32) {
429 u32 val;
430
431 sbus_writel(y, &fbc->y0);
432 sbus_writel(x, &fbc->x0);
433 sbus_writel(x + 32 - 1, &fbc->x1);
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 val = ((u32)data[0] << 24) |
436 ((u32)data[1] << 16) |
437 ((u32)data[2] << 8) |
438 ((u32)data[3] << 0);
439 sbus_writel(val, &fbc->font);
440
441 data += 4;
442 x += 32;
443 width -= 32;
444 }
445 if (width) {
446 u32 val;
447
448 sbus_writel(y, &fbc->y0);
449 sbus_writel(x, &fbc->x0);
450 sbus_writel(x + width - 1, &fbc->x1);
451 if (width <= 8) {
452 val = (u32) data[0] << 24;
453 data += 1;
454 } else if (width <= 16) {
455 val = ((u32) data[0] << 24) |
456 ((u32) data[1] << 16);
457 data += 2;
458 } else {
459 val = ((u32) data[0] << 24) |
460 ((u32) data[1] << 16) |
461 ((u32) data[2] << 8);
462 data += 3;
463 }
464 sbus_writel(val, &fbc->font);
465 }
466
467 y += 1;
468 x = image->dx;
469 }
470
471 spin_unlock_irqrestore(&par->lock, flags);
472}
473
474/**
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700475 * cg6_setcolreg - Sets a color register.
476 *
477 * @regno: boolean, 0 copy local, 1 get_user() function
478 * @red: frame buffer colormap structure
479 * @green: The green value which can be up to 16 bits wide
480 * @blue: The blue value which can be up to 16 bits wide.
481 * @transp: If supported the alpha value which can be up to 16 bits wide.
482 * @info: frame buffer info structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 */
484static int cg6_setcolreg(unsigned regno,
485 unsigned red, unsigned green, unsigned blue,
486 unsigned transp, struct fb_info *info)
487{
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700488 struct cg6_par *par = (struct cg6_par *)info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 struct bt_regs __iomem *bt = par->bt;
490 unsigned long flags;
491
492 if (regno >= 256)
493 return 1;
494
495 red >>= 8;
496 green >>= 8;
497 blue >>= 8;
498
499 spin_lock_irqsave(&par->lock, flags);
500
501 sbus_writel((u32)regno << 24, &bt->addr);
502 sbus_writel((u32)red << 24, &bt->color_map);
503 sbus_writel((u32)green << 24, &bt->color_map);
504 sbus_writel((u32)blue << 24, &bt->color_map);
505
506 spin_unlock_irqrestore(&par->lock, flags);
507
508 return 0;
509}
510
511/**
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700512 * cg6_blank - Blanks the display.
513 *
514 * @blank_mode: the blank mode we want.
515 * @info: frame buffer structure that represents a single frame buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 */
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700517static int cg6_blank(int blank, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700519 struct cg6_par *par = (struct cg6_par *)info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 struct cg6_thc __iomem *thc = par->thc;
521 unsigned long flags;
522 u32 val;
523
524 spin_lock_irqsave(&par->lock, flags);
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700525 val = sbus_readl(&thc->thc_misc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 switch (blank) {
528 case FB_BLANK_UNBLANK: /* Unblanking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 val |= CG6_THC_MISC_VIDEO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 par->flags &= ~CG6_FLAG_BLANKED;
531 break;
532
533 case FB_BLANK_NORMAL: /* Normal blanking */
534 case FB_BLANK_VSYNC_SUSPEND: /* VESA blank (vsync off) */
535 case FB_BLANK_HSYNC_SUSPEND: /* VESA blank (hsync off) */
536 case FB_BLANK_POWERDOWN: /* Poweroff */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 val &= ~CG6_THC_MISC_VIDEO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 par->flags |= CG6_FLAG_BLANKED;
539 break;
540 }
541
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700542 sbus_writel(val, &thc->thc_misc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 spin_unlock_irqrestore(&par->lock, flags);
544
545 return 0;
546}
547
548static struct sbus_mmap_map cg6_mmap_map[] = {
549 {
550 .voff = CG6_FBC,
551 .poff = CG6_FBC_OFFSET,
552 .size = PAGE_SIZE
553 },
554 {
555 .voff = CG6_TEC,
556 .poff = CG6_TEC_OFFSET,
557 .size = PAGE_SIZE
558 },
559 {
560 .voff = CG6_BTREGS,
561 .poff = CG6_BROOKTREE_OFFSET,
562 .size = PAGE_SIZE
563 },
564 {
565 .voff = CG6_FHC,
566 .poff = CG6_FHC_OFFSET,
567 .size = PAGE_SIZE
568 },
569 {
570 .voff = CG6_THC,
571 .poff = CG6_THC_OFFSET,
572 .size = PAGE_SIZE
573 },
574 {
575 .voff = CG6_ROM,
576 .poff = CG6_ROM_OFFSET,
577 .size = 0x10000
578 },
579 {
580 .voff = CG6_RAM,
581 .poff = CG6_RAM_OFFSET,
582 .size = SBUS_MMAP_FBSIZE(1)
583 },
584 {
585 .voff = CG6_DHC,
586 .poff = CG6_DHC_OFFSET,
587 .size = 0x40000
588 },
589 { .size = 0 }
590};
591
Christoph Hellwig216d5262006-01-14 13:21:25 -0800592static int cg6_mmap(struct fb_info *info, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 struct cg6_par *par = (struct cg6_par *)info->par;
595
596 return sbusfb_mmap_helper(cg6_mmap_map,
Krzysztof Helt963b9162009-05-04 10:39:45 +0000597 info->fix.smem_start, info->fix.smem_len,
David S. Miller50312ce2006-06-29 14:35:52 -0700598 par->which_io, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Christoph Hellwig67a66802006-01-14 13:21:25 -0800601static int cg6_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return sbusfb_ioctl_helper(cmd, arg, info,
Krzysztof Helt963b9162009-05-04 10:39:45 +0000604 FBTYPE_SUNFAST_COLOR, 8, info->fix.smem_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
607/*
608 * Initialisation
609 */
610
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700611static void __devinit cg6_init_fix(struct fb_info *info, int linebytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 struct cg6_par *par = (struct cg6_par *)info->par;
614 const char *cg6_cpu_name, *cg6_card_name;
615 u32 conf;
616
617 conf = sbus_readl(par->fhc);
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700618 switch (conf & CG6_FHC_CPU_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 case CG6_FHC_CPU_SPARC:
620 cg6_cpu_name = "sparc";
621 break;
622 case CG6_FHC_CPU_68020:
623 cg6_cpu_name = "68020";
624 break;
625 default:
626 cg6_cpu_name = "i386";
627 break;
628 };
629 if (((conf >> CG6_FHC_REV_SHIFT) & CG6_FHC_REV_MASK) >= 11) {
Krzysztof Helt963b9162009-05-04 10:39:45 +0000630 if (info->fix.smem_len <= 0x100000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 cg6_card_name = "TGX";
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700632 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 cg6_card_name = "TGX+";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 } else {
Krzysztof Helt963b9162009-05-04 10:39:45 +0000635 if (info->fix.smem_len <= 0x100000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 cg6_card_name = "GX";
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700637 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 cg6_card_name = "GX+";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
641 sprintf(info->fix.id, "%s %s", cg6_card_name, cg6_cpu_name);
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700642 info->fix.id[sizeof(info->fix.id) - 1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 info->fix.type = FB_TYPE_PACKED_PIXELS;
645 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
646
647 info->fix.line_length = linebytes;
648
649 info->fix.accel = FB_ACCEL_SUN_CGSIX;
650}
651
652/* Initialize Brooktree DAC */
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700653static void __devinit cg6_bt_init(struct cg6_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
655 struct bt_regs __iomem *bt = par->bt;
656
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700657 sbus_writel(0x04 << 24, &bt->addr); /* color planes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 sbus_writel(0xff << 24, &bt->control);
659 sbus_writel(0x05 << 24, &bt->addr);
660 sbus_writel(0x00 << 24, &bt->control);
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700661 sbus_writel(0x06 << 24, &bt->addr); /* overlay plane */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 sbus_writel(0x73 << 24, &bt->control);
663 sbus_writel(0x07 << 24, &bt->addr);
664 sbus_writel(0x00 << 24, &bt->control);
665}
666
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700667static void __devinit cg6_chip_init(struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700669 struct cg6_par *par = (struct cg6_par *)info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct cg6_tec __iomem *tec = par->tec;
671 struct cg6_fbc __iomem *fbc = par->fbc;
Robert Reif291d5f32008-10-10 12:12:41 -0700672 struct cg6_thc __iomem *thc = par->thc;
David S. Miller806f7bf2005-12-12 14:41:20 -0800673 u32 rev, conf, mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 int i;
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700675
Robert Reif291d5f32008-10-10 12:12:41 -0700676 /* Hide the cursor. */
677 sbus_writel(CG6_THC_CURSOFF, &thc->thc_cursxy);
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 /* Turn off stuff in the Transform Engine. */
680 sbus_writel(0, &tec->tec_matrix);
681 sbus_writel(0, &tec->tec_clip);
682 sbus_writel(0, &tec->tec_vdc);
683
684 /* Take care of bugs in old revisions. */
685 rev = (sbus_readl(par->fhc) >> CG6_FHC_REV_SHIFT) & CG6_FHC_REV_MASK;
686 if (rev < 5) {
687 conf = (sbus_readl(par->fhc) & CG6_FHC_RES_MASK) |
688 CG6_FHC_CPU_68020 | CG6_FHC_TEST |
689 (11 << CG6_FHC_TEST_X_SHIFT) |
690 (11 << CG6_FHC_TEST_Y_SHIFT);
691 if (rev < 2)
692 conf |= CG6_FHC_DST_DISABLE;
693 sbus_writel(conf, par->fhc);
694 }
695
696 /* Set things in the FBC. Bad things appear to happen if we do
697 * back to back store/loads on the mode register, so copy it
698 * out instead. */
699 mode = sbus_readl(&fbc->mode);
700 do {
701 i = sbus_readl(&fbc->s);
702 } while (i & 0x10000000);
703 mode &= ~(CG6_FBC_BLIT_MASK | CG6_FBC_MODE_MASK |
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700704 CG6_FBC_DRAW_MASK | CG6_FBC_BWRITE0_MASK |
705 CG6_FBC_BWRITE1_MASK | CG6_FBC_BREAD_MASK |
706 CG6_FBC_BDISP_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 mode |= (CG6_FBC_BLIT_SRC | CG6_FBC_MODE_COLOR8 |
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700708 CG6_FBC_DRAW_RENDER | CG6_FBC_BWRITE0_ENABLE |
709 CG6_FBC_BWRITE1_DISABLE | CG6_FBC_BREAD_0 |
710 CG6_FBC_BDISP_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 sbus_writel(mode, &fbc->mode);
712
713 sbus_writel(0, &fbc->clip);
714 sbus_writel(0, &fbc->offx);
715 sbus_writel(0, &fbc->offy);
716 sbus_writel(0, &fbc->clipminx);
717 sbus_writel(0, &fbc->clipminy);
718 sbus_writel(info->var.xres - 1, &fbc->clipmaxx);
719 sbus_writel(info->var.yres - 1, &fbc->clipmaxy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
David S. Millerc7f439b2007-07-27 22:31:46 -0700722static void cg6_unmap_regs(struct of_device *op, struct fb_info *info,
723 struct cg6_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
David S. Millerc7f439b2007-07-27 22:31:46 -0700725 if (par->fbc)
726 of_iounmap(&op->resource[0], par->fbc, 4096);
727 if (par->tec)
728 of_iounmap(&op->resource[0], par->tec, sizeof(struct cg6_tec));
729 if (par->thc)
730 of_iounmap(&op->resource[0], par->thc, sizeof(struct cg6_thc));
731 if (par->bt)
732 of_iounmap(&op->resource[0], par->bt, sizeof(struct bt_regs));
733 if (par->fhc)
734 of_iounmap(&op->resource[0], par->fhc, sizeof(u32));
David S. Miller50312ce2006-06-29 14:35:52 -0700735
David S. Millerc7f439b2007-07-27 22:31:46 -0700736 if (info->screen_base)
Krzysztof Helt963b9162009-05-04 10:39:45 +0000737 of_iounmap(&op->resource[0], info->screen_base,
738 info->fix.smem_len);
David S. Miller50312ce2006-06-29 14:35:52 -0700739}
740
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700741static int __devinit cg6_probe(struct of_device *op,
742 const struct of_device_id *match)
David S. Miller50312ce2006-06-29 14:35:52 -0700743{
744 struct device_node *dp = op->node;
David S. Millerc7f439b2007-07-27 22:31:46 -0700745 struct fb_info *info;
746 struct cg6_par *par;
David S. Miller50312ce2006-06-29 14:35:52 -0700747 int linebytes, err;
Krzysztof Helt3fc701d2007-08-01 21:39:32 -0700748 int dblbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
David S. Millerc7f439b2007-07-27 22:31:46 -0700750 info = framebuffer_alloc(sizeof(struct cg6_par), &op->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
David S. Millerc7f439b2007-07-27 22:31:46 -0700752 err = -ENOMEM;
753 if (!info)
754 goto out_err;
755 par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
David S. Millerc7f439b2007-07-27 22:31:46 -0700757 spin_lock_init(&par->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Krzysztof Helt963b9162009-05-04 10:39:45 +0000759 info->fix.smem_start = op->resource[0].start;
David S. Millerc7f439b2007-07-27 22:31:46 -0700760 par->which_io = op->resource[0].flags & IORESOURCE_BITS;
761
Robert Reif6cd5a862008-05-08 21:37:30 -0700762 sbusfb_fill_var(&info->var, dp, 8);
David S. Millerc7f439b2007-07-27 22:31:46 -0700763 info->var.red.length = 8;
764 info->var.green.length = 8;
765 info->var.blue.length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
David S. Miller50312ce2006-06-29 14:35:52 -0700767 linebytes = of_getintprop_default(dp, "linebytes",
David S. Millerc7f439b2007-07-27 22:31:46 -0700768 info->var.xres);
Krzysztof Helt963b9162009-05-04 10:39:45 +0000769 info->fix.smem_len = PAGE_ALIGN(linebytes * info->var.yres);
Krzysztof Helt3fc701d2007-08-01 21:39:32 -0700770
771 dblbuf = of_getintprop_default(dp, "dblbuf", 0);
772 if (dblbuf)
Krzysztof Helt963b9162009-05-04 10:39:45 +0000773 info->fix.smem_len *= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
David S. Millerc7f439b2007-07-27 22:31:46 -0700775 par->fbc = of_ioremap(&op->resource[0], CG6_FBC_OFFSET,
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700776 4096, "cgsix fbc");
David S. Millerc7f439b2007-07-27 22:31:46 -0700777 par->tec = of_ioremap(&op->resource[0], CG6_TEC_OFFSET,
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700778 sizeof(struct cg6_tec), "cgsix tec");
David S. Millerc7f439b2007-07-27 22:31:46 -0700779 par->thc = of_ioremap(&op->resource[0], CG6_THC_OFFSET,
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700780 sizeof(struct cg6_thc), "cgsix thc");
David S. Millerc7f439b2007-07-27 22:31:46 -0700781 par->bt = of_ioremap(&op->resource[0], CG6_BROOKTREE_OFFSET,
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700782 sizeof(struct bt_regs), "cgsix dac");
David S. Millerc7f439b2007-07-27 22:31:46 -0700783 par->fhc = of_ioremap(&op->resource[0], CG6_FHC_OFFSET,
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700784 sizeof(u32), "cgsix fhc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
David S. Millerc7f439b2007-07-27 22:31:46 -0700786 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_IMAGEBLIT |
Krzysztof Helta140e942007-08-05 18:05:29 -0700787 FBINFO_HWACCEL_COPYAREA | FBINFO_HWACCEL_FILLRECT |
788 FBINFO_READS_FAST;
David S. Millerc7f439b2007-07-27 22:31:46 -0700789 info->fbops = &cg6_ops;
David S. Miller50312ce2006-06-29 14:35:52 -0700790
Krzysztof Helt6993bea2007-08-05 18:04:18 -0700791 info->screen_base = of_ioremap(&op->resource[0], CG6_RAM_OFFSET,
Krzysztof Helt963b9162009-05-04 10:39:45 +0000792 info->fix.smem_len, "cgsix ram");
David S. Millerc7f439b2007-07-27 22:31:46 -0700793 if (!par->fbc || !par->tec || !par->thc ||
794 !par->bt || !par->fhc || !info->screen_base)
795 goto out_unmap_regs;
David S. Miller50312ce2006-06-29 14:35:52 -0700796
David S. Millerc7f439b2007-07-27 22:31:46 -0700797 info->var.accel_flags = FB_ACCELF_TEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
David S. Millerc7f439b2007-07-27 22:31:46 -0700799 cg6_bt_init(par);
800 cg6_chip_init(info);
Robert Reif59f71372008-05-03 21:12:00 -0700801 cg6_blank(FB_BLANK_UNBLANK, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
David S. Millerc7f439b2007-07-27 22:31:46 -0700803 if (fb_alloc_cmap(&info->cmap, 256, 0))
804 goto out_unmap_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
David S. Millerc7f439b2007-07-27 22:31:46 -0700806 fb_set_cmap(&info->cmap, info);
807 cg6_init_fix(info, linebytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
David S. Millerc7f439b2007-07-27 22:31:46 -0700809 err = register_framebuffer(info);
810 if (err < 0)
811 goto out_dealloc_cmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
David S. Millerc7f439b2007-07-27 22:31:46 -0700813 dev_set_drvdata(&op->dev, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Robert Reif194f1a682008-04-27 15:18:57 -0700815 printk(KERN_INFO "%s: CGsix [%s] at %lx:%lx\n",
David S. Millerc7f439b2007-07-27 22:31:46 -0700816 dp->full_name, info->fix.id,
Krzysztof Helt963b9162009-05-04 10:39:45 +0000817 par->which_io, info->fix.smem_start);
David S. Miller50312ce2006-06-29 14:35:52 -0700818
819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
David S. Millerc7f439b2007-07-27 22:31:46 -0700821out_dealloc_cmap:
822 fb_dealloc_cmap(&info->cmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
David S. Millerc7f439b2007-07-27 22:31:46 -0700824out_unmap_regs:
825 cg6_unmap_regs(op, info, par);
826
827out_err:
828 return err;
David S. Miller50312ce2006-06-29 14:35:52 -0700829}
830
David S. Millere3a411a32006-12-28 21:01:32 -0800831static int __devexit cg6_remove(struct of_device *op)
David S. Miller50312ce2006-06-29 14:35:52 -0700832{
David S. Millerc7f439b2007-07-27 22:31:46 -0700833 struct fb_info *info = dev_get_drvdata(&op->dev);
834 struct cg6_par *par = info->par;
David S. Miller50312ce2006-06-29 14:35:52 -0700835
David S. Millerc7f439b2007-07-27 22:31:46 -0700836 unregister_framebuffer(info);
837 fb_dealloc_cmap(&info->cmap);
David S. Miller50312ce2006-06-29 14:35:52 -0700838
David S. Millerc7f439b2007-07-27 22:31:46 -0700839 cg6_unmap_regs(op, info, par);
David S. Miller50312ce2006-06-29 14:35:52 -0700840
David S. Millerc7f439b2007-07-27 22:31:46 -0700841 framebuffer_release(info);
David S. Miller50312ce2006-06-29 14:35:52 -0700842
David S. Millere3a411a32006-12-28 21:01:32 -0800843 dev_set_drvdata(&op->dev, NULL);
David S. Miller50312ce2006-06-29 14:35:52 -0700844
845 return 0;
846}
847
David S. Millerfd098312008-08-31 01:23:17 -0700848static const struct of_device_id cg6_match[] = {
David S. Miller50312ce2006-06-29 14:35:52 -0700849 {
850 .name = "cgsix",
851 },
852 {
853 .name = "cgthree+",
854 },
855 {},
856};
857MODULE_DEVICE_TABLE(of, cg6_match);
858
859static struct of_platform_driver cg6_driver = {
860 .name = "cg6",
861 .match_table = cg6_match,
862 .probe = cg6_probe,
863 .remove = __devexit_p(cg6_remove),
864};
865
866static int __init cg6_init(void)
867{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (fb_get_options("cg6fb", NULL))
869 return -ENODEV;
870
David S. Miller50312ce2006-06-29 14:35:52 -0700871 return of_register_driver(&cg6_driver, &of_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
David S. Miller50312ce2006-06-29 14:35:52 -0700874static void __exit cg6_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
David S. Miller50312ce2006-06-29 14:35:52 -0700876 of_unregister_driver(&cg6_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
879module_init(cg6_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880module_exit(cg6_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882MODULE_DESCRIPTION("framebuffer driver for CGsix chipsets");
David S. Miller50312ce2006-06-29 14:35:52 -0700883MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
884MODULE_VERSION("2.0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885MODULE_LICENSE("GPL");