blob: fe01add3700e05769dc035cde599040b43460328 [file] [log] [blame]
Finn Thain34c41d02009-11-04 00:47:28 +11001/*
2 * macfb.c: Generic framebuffer for Macs whose colourmaps/modes we
3 * don't know how to set.
4 *
5 * (c) 1999 David Huggins-Daines <dhd@debian.org>
6 *
7 * Primarily based on vesafb.c, by Gerd Knorr
8 * (c) 1998 Gerd Knorr <kraxel@cs.tu-berlin.de>
9 *
10 * Also uses information and code from:
11 *
12 * The original macfb.c from Linux/mac68k 2.0, by Alan Cox, Juergen
13 * Mellinger, Mikael Forselius, Michael Schmitz, and others.
14 *
15 * valkyriefb.c, by Martin Costabel, Kevin Schoedel, Barry Nathan, Dan
16 * Jacobowitz, Paul Mackerras, Fabio Riccardi, and Geert Uytterhoeven.
17 *
18 * The VideoToolbox "Bugs" web page at
19 * http://rajsky.psych.nyu.edu/Tips/VideoBugs.html
20 *
21 * This code is free software. You may copy, modify, and distribute
22 * it subject to the terms and conditions of the GNU General Public
23 * License, version 2, or any later version, at your convenience.
24 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <linux/module.h>
27#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/errno.h>
29#include <linux/string.h>
30#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/delay.h>
32#include <linux/nubus.h>
33#include <linux/init.h>
34#include <linux/fb.h>
35
36#include <asm/setup.h>
37#include <asm/bootinfo.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/macintosh.h>
39#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* Common DAC base address for the LC, RBV, Valkyrie, and IIvx */
42#define DAC_BASE 0x50f24000
43
44/* Some addresses for the DAFB */
45#define DAFB_BASE 0xf9800200
46
47/* Address for the built-in Civic framebuffer in Quadra AVs */
Finn Thain34c41d02009-11-04 00:47:28 +110048#define CIVIC_BASE 0x50f30800
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/* GSC (Gray Scale Controller) base address */
51#define GSC_BASE 0x50F20000
52
53/* CSC (Color Screen Controller) base address */
54#define CSC_BASE 0x50F20000
55
Finn Thain34c41d02009-11-04 00:47:28 +110056static int (*macfb_setpalette)(unsigned int regno, unsigned int red,
57 unsigned int green, unsigned int blue,
58 struct fb_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Finn Thain3839d012008-11-18 20:45:22 +010060static struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 unsigned char addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 unsigned char lut;
Finn Thain3839d012008-11-18 20:45:22 +010063} __iomem *v8_brazil_cmap_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Finn Thain3839d012008-11-18 20:45:22 +010065static struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 unsigned char addr;
67 char pad1[3]; /* word aligned */
68 unsigned char lut;
69 char pad2[3]; /* word aligned */
70 unsigned char cntl; /* a guess as to purpose */
Finn Thain3839d012008-11-18 20:45:22 +010071} __iomem *rbv_cmap_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Finn Thain3839d012008-11-18 20:45:22 +010073static struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 unsigned long reset;
75 unsigned long pad1[3];
76 unsigned char pad2[3];
77 unsigned char lut;
Finn Thain3839d012008-11-18 20:45:22 +010078} __iomem *dafb_cmap_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Finn Thain3839d012008-11-18 20:45:22 +010080static struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned char addr; /* OFFSET: 0x00 */
82 unsigned char pad1[15];
83 unsigned char lut; /* OFFSET: 0x10 */
84 unsigned char pad2[15];
85 unsigned char status; /* OFFSET: 0x20 */
86 unsigned char pad3[7];
87 unsigned long vbl_addr; /* OFFSET: 0x28 */
88 unsigned int status2; /* OFFSET: 0x2C */
Finn Thain3839d012008-11-18 20:45:22 +010089} __iomem *civic_cmap_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Finn Thain3839d012008-11-18 20:45:22 +010091static struct {
Finn Thain34c41d02009-11-04 00:47:28 +110092 char pad1[0x40];
93 unsigned char clut_waddr; /* 0x40 */
94 char pad2;
95 unsigned char clut_data; /* 0x42 */
96 char pad3[0x3];
97 unsigned char clut_raddr; /* 0x46 */
Finn Thain3839d012008-11-18 20:45:22 +010098} __iomem *csc_cmap_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Finn Thain34c41d02009-11-04 00:47:28 +1100100/* The registers in these structs are in NuBus slot space */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101struct mdc_cmap_regs {
102 char pad1[0x200200];
103 unsigned char addr;
104 char pad2[6];
105 unsigned char lut;
106};
107
108struct toby_cmap_regs {
109 char pad1[0x90018];
110 unsigned char lut; /* TFBClutWDataReg, offset 0x90018 */
111 char pad2[3];
112 unsigned char addr; /* TFBClutAddrReg, offset 0x9001C */
113};
114
115struct jet_cmap_regs {
116 char pad1[0xe0e000];
117 unsigned char addr;
118 unsigned char lut;
119};
120
Finn Thain34c41d02009-11-04 00:47:28 +1100121#define PIXEL_TO_MM(a) (((a)*10)/28) /* width in mm at 72 dpi */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static struct fb_var_screeninfo macfb_defined = {
Finn Thain34c41d02009-11-04 00:47:28 +1100124 .bits_per_pixel = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .activate = FB_ACTIVATE_NOW,
126 .width = -1,
127 .height = -1,
128 .right_margin = 32,
129 .upper_margin = 16,
130 .lower_margin = 4,
131 .vsync_len = 4,
132 .vmode = FB_VMODE_NONINTERLACED,
133};
134
135static struct fb_fix_screeninfo macfb_fix = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .type = FB_TYPE_PACKED_PIXELS,
137 .accel = FB_ACCEL_NONE,
138};
139
Finn Thain99e11ab2009-11-04 00:51:18 +1100140static void *slot_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static struct fb_info fb_info;
Antonino A. Daplas24fc7222007-07-17 04:05:37 -0700142static u32 pseudo_palette[16];
Finn Thain34c41d02009-11-04 00:47:28 +1100143static int inverse;
144static int vidtest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Finn Thain34c41d02009-11-04 00:47:28 +1100146/*
147 * Unlike the Valkyrie, the DAFB cannot set individual colormap
148 * registers. Therefore, we do what the MacOS driver does (no
149 * kidding!) and simply set them one by one until we hit the one we
150 * want.
151 */
152static int dafb_setpalette(unsigned int regno, unsigned int red,
153 unsigned int green, unsigned int blue,
154 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 static int lastreg = -1;
157 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 local_irq_save(flags);
Finn Thain34c41d02009-11-04 00:47:28 +1100160
161 /*
162 * fbdev will set an entire colourmap, but X won't. Hopefully
163 * this should accommodate both of them
164 */
165 if (regno != lastreg + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 int i;
Finn Thain34c41d02009-11-04 00:47:28 +1100167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 /* Stab in the dark trying to reset the CLUT pointer */
169 nubus_writel(0, &dafb_cmap_regs->reset);
170 nop();
Finn Thain34c41d02009-11-04 00:47:28 +1100171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* Loop until we get to the register we want */
173 for (i = 0; i < regno; i++) {
Finn Thain34c41d02009-11-04 00:47:28 +1100174 nubus_writeb(info->cmap.red[i] >> 8,
175 &dafb_cmap_regs->lut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 nop();
Finn Thain34c41d02009-11-04 00:47:28 +1100177 nubus_writeb(info->cmap.green[i] >> 8,
178 &dafb_cmap_regs->lut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 nop();
Finn Thain34c41d02009-11-04 00:47:28 +1100180 nubus_writeb(info->cmap.blue[i] >> 8,
181 &dafb_cmap_regs->lut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 nop();
183 }
184 }
Finn Thain34c41d02009-11-04 00:47:28 +1100185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 nubus_writeb(red, &dafb_cmap_regs->lut);
187 nop();
188 nubus_writeb(green, &dafb_cmap_regs->lut);
189 nop();
190 nubus_writeb(blue, &dafb_cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 local_irq_restore(flags);
193 lastreg = regno;
194 return 0;
195}
196
197/* V8 and Brazil seem to use the same DAC. Sonora does as well. */
Finn Thain34c41d02009-11-04 00:47:28 +1100198static int v8_brazil_setpalette(unsigned int regno, unsigned int red,
199 unsigned int green, unsigned int blue,
200 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 unsigned int bpp = info->var.bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 unsigned long flags;
204
Finn Thain34c41d02009-11-04 00:47:28 +1100205 if (bpp > 8)
206 return 1; /* failsafe */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 local_irq_save(flags);
209
210 /* On these chips, the CLUT register numbers are spread out
Finn Thain34c41d02009-11-04 00:47:28 +1100211 * across the register space. Thus:
212 * In 8bpp, all regnos are valid.
213 * In 4bpp, the regnos are 0x0f, 0x1f, 0x2f, etc, etc
214 * In 2bpp, the regnos are 0x3f, 0x7f, 0xbf, 0xff
215 */
Finn Thain99e11ab2009-11-04 00:51:18 +1100216 regno = (regno << (8 - bpp)) | (0xFF >> bpp);
217 nubus_writeb(regno, &v8_brazil_cmap_regs->addr);
Finn Thain34c41d02009-11-04 00:47:28 +1100218 nop();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /* send one color channel at a time */
Finn Thain99e11ab2009-11-04 00:51:18 +1100221 nubus_writeb(red, &v8_brazil_cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100222 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100223 nubus_writeb(green, &v8_brazil_cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100224 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100225 nubus_writeb(blue, &v8_brazil_cmap_regs->lut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Finn Thain34c41d02009-11-04 00:47:28 +1100227 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return 0;
229}
230
Finn Thain34c41d02009-11-04 00:47:28 +1100231/* RAM-Based Video */
232static int rbv_setpalette(unsigned int regno, unsigned int red,
233 unsigned int green, unsigned int blue,
234 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 unsigned long flags;
237
Finn Thain34c41d02009-11-04 00:47:28 +1100238 if (info->var.bits_per_pixel > 8)
239 return 1; /* failsafe */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 local_irq_save(flags);
Finn Thain34c41d02009-11-04 00:47:28 +1100242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /* From the VideoToolbox driver. Seems to be saying that
244 * regno #254 and #255 are the important ones for 1-bit color,
245 * regno #252-255 are the important ones for 2-bit color, etc.
246 */
Finn Thain99e11ab2009-11-04 00:51:18 +1100247 regno += 256 - (1 << info->var.bits_per_pixel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 /* reset clut? (VideoToolbox sez "not necessary") */
Finn Thain34c41d02009-11-04 00:47:28 +1100250 nubus_writeb(0xFF, &rbv_cmap_regs->cntl);
251 nop();
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* tell clut which address to use. */
Finn Thain99e11ab2009-11-04 00:51:18 +1100254 nubus_writeb(regno, &rbv_cmap_regs->addr);
Finn Thain34c41d02009-11-04 00:47:28 +1100255 nop();
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /* send one color channel at a time. */
Finn Thain99e11ab2009-11-04 00:51:18 +1100258 nubus_writeb(red, &rbv_cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100259 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100260 nubus_writeb(green, &rbv_cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100261 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100262 nubus_writeb(blue, &rbv_cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100263
264 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return 0;
266}
267
Finn Thain34c41d02009-11-04 00:47:28 +1100268/* Macintosh Display Card (8*24) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269static int mdc_setpalette(unsigned int regno, unsigned int red,
270 unsigned int green, unsigned int blue,
271 struct fb_info *info)
272{
Finn Thain99e11ab2009-11-04 00:51:18 +1100273 struct mdc_cmap_regs *cmap_regs = slot_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 unsigned long flags;
275
276 local_irq_save(flags);
Finn Thain34c41d02009-11-04 00:47:28 +1100277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /* the nop's are there to order writes. */
Finn Thain99e11ab2009-11-04 00:51:18 +1100279 nubus_writeb(regno, &cmap_regs->addr);
Finn Thain34c41d02009-11-04 00:47:28 +1100280 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100281 nubus_writeb(red, &cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100282 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100283 nubus_writeb(green, &cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100284 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100285 nubus_writeb(blue, &cmap_regs->lut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 local_irq_restore(flags);
288 return 0;
289}
290
291/* Toby frame buffer */
292static int toby_setpalette(unsigned int regno, unsigned int red,
293 unsigned int green, unsigned int blue,
Finn Thain34c41d02009-11-04 00:47:28 +1100294 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Finn Thain99e11ab2009-11-04 00:51:18 +1100296 struct toby_cmap_regs *cmap_regs = slot_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 unsigned int bpp = info->var.bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 unsigned long flags;
299
Finn Thain99e11ab2009-11-04 00:51:18 +1100300 red = ~red;
301 green = ~green;
302 blue = ~blue;
303 regno = (regno << (8 - bpp)) | (0xFF >> bpp);
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 local_irq_save(flags);
Finn Thain34c41d02009-11-04 00:47:28 +1100306
Finn Thain99e11ab2009-11-04 00:51:18 +1100307 nubus_writeb(regno, &cmap_regs->addr);
Finn Thain34c41d02009-11-04 00:47:28 +1100308 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100309 nubus_writeb(red, &cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100310 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100311 nubus_writeb(green, &cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100312 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100313 nubus_writeb(blue, &cmap_regs->lut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 local_irq_restore(flags);
316 return 0;
317}
318
319/* Jet frame buffer */
320static int jet_setpalette(unsigned int regno, unsigned int red,
321 unsigned int green, unsigned int blue,
322 struct fb_info *info)
323{
Finn Thain99e11ab2009-11-04 00:51:18 +1100324 struct jet_cmap_regs *cmap_regs = slot_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 unsigned long flags;
326
327 local_irq_save(flags);
Finn Thain34c41d02009-11-04 00:47:28 +1100328
329 nubus_writeb(regno, &cmap_regs->addr);
330 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100331 nubus_writeb(red, &cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100332 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100333 nubus_writeb(green, &cmap_regs->lut);
Finn Thain34c41d02009-11-04 00:47:28 +1100334 nop();
Finn Thain99e11ab2009-11-04 00:51:18 +1100335 nubus_writeb(blue, &cmap_regs->lut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 local_irq_restore(flags);
338 return 0;
339}
340
341/*
342 * Civic framebuffer -- Quadra AV built-in video. A chip
343 * called Sebastian holds the actual color palettes, and
Finn Thain34c41d02009-11-04 00:47:28 +1100344 * apparently, there are two different banks of 512K RAM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * which can act as separate framebuffers for doing video
346 * input and viewing the screen at the same time! The 840AV
Finn Thain34c41d02009-11-04 00:47:28 +1100347 * Can add another 1MB RAM to give the two framebuffers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 * 1MB RAM apiece.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 */
Finn Thain34c41d02009-11-04 00:47:28 +1100350static int civic_setpalette(unsigned int regno, unsigned int red,
351 unsigned int green, unsigned int blue,
352 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 unsigned long flags;
355 int clut_status;
356
Finn Thain34c41d02009-11-04 00:47:28 +1100357 if (info->var.bits_per_pixel > 8)
358 return 1; /* failsafe */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Finn Thain34c41d02009-11-04 00:47:28 +1100362 /* Set the register address */
363 nubus_writeb(regno, &civic_cmap_regs->addr);
364 nop();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /*
367 * Grab a status word and do some checking;
368 * Then finally write the clut!
369 */
370 clut_status = nubus_readb(&civic_cmap_regs->status2);
371
372 if ((clut_status & 0x0008) == 0)
373 {
374#if 0
375 if ((clut_status & 0x000D) != 0)
376 {
Finn Thain34c41d02009-11-04 00:47:28 +1100377 nubus_writeb(0x00, &civic_cmap_regs->lut);
378 nop();
379 nubus_writeb(0x00, &civic_cmap_regs->lut);
380 nop();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382#endif
383
Finn Thain34c41d02009-11-04 00:47:28 +1100384 nubus_writeb(red, &civic_cmap_regs->lut);
385 nop();
386 nubus_writeb(green, &civic_cmap_regs->lut);
387 nop();
388 nubus_writeb(blue, &civic_cmap_regs->lut);
389 nop();
390 nubus_writeb(0x00, &civic_cmap_regs->lut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392 else
393 {
394 unsigned char junk;
395
Finn Thain34c41d02009-11-04 00:47:28 +1100396 junk = nubus_readb(&civic_cmap_regs->lut);
397 nop();
398 junk = nubus_readb(&civic_cmap_regs->lut);
399 nop();
400 junk = nubus_readb(&civic_cmap_regs->lut);
401 nop();
402 junk = nubus_readb(&civic_cmap_regs->lut);
403 nop();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 if ((clut_status & 0x000D) != 0)
406 {
Finn Thain34c41d02009-11-04 00:47:28 +1100407 nubus_writeb(0x00, &civic_cmap_regs->lut);
408 nop();
409 nubus_writeb(0x00, &civic_cmap_regs->lut);
410 nop();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
Finn Thain34c41d02009-11-04 00:47:28 +1100413 nubus_writeb(red, &civic_cmap_regs->lut);
414 nop();
415 nubus_writeb(green, &civic_cmap_regs->lut);
416 nop();
417 nubus_writeb(blue, &civic_cmap_regs->lut);
418 nop();
419 nubus_writeb(junk, &civic_cmap_regs->lut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
422 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return 0;
424}
425
426/*
427 * The CSC is the framebuffer on the PowerBook 190 series
428 * (and the 5300 too, but that's a PowerMac). This function
429 * brought to you in part by the ECSC driver for MkLinux.
430 */
Finn Thain34c41d02009-11-04 00:47:28 +1100431static int csc_setpalette(unsigned int regno, unsigned int red,
432 unsigned int green, unsigned int blue,
433 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Finn Thain99e11ab2009-11-04 00:51:18 +1100435 unsigned long flags;
436
437 local_irq_save(flags);
438
439 udelay(1); /* mklinux on PB 5300 waits for 260 ns */
Finn Thain3839d012008-11-18 20:45:22 +0100440 nubus_writeb(regno, &csc_cmap_regs->clut_waddr);
Finn Thain99e11ab2009-11-04 00:51:18 +1100441 nubus_writeb(red, &csc_cmap_regs->clut_data);
Finn Thain3839d012008-11-18 20:45:22 +0100442 nubus_writeb(green, &csc_cmap_regs->clut_data);
Finn Thain99e11ab2009-11-04 00:51:18 +1100443 nubus_writeb(blue, &csc_cmap_regs->clut_data);
444
445 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return 0;
447}
448
449static int macfb_setcolreg(unsigned regno, unsigned red, unsigned green,
450 unsigned blue, unsigned transp,
451 struct fb_info *fb_info)
452{
453 /*
Finn Thain34c41d02009-11-04 00:47:28 +1100454 * Set a single color register. The values supplied are
455 * already rounded down to the hardware's capabilities
456 * (according to the entries in the `var' structure).
457 * Return non-zero for invalid regno.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 */
459
460 if (regno >= fb_info->cmap.len)
461 return 1;
462
Antonino A. Daplas24fc7222007-07-17 04:05:37 -0700463 if (fb_info->var.bits_per_pixel <= 8) {
464 switch (fb_info->var.bits_per_pixel) {
465 case 1:
466 /* We shouldn't get here */
467 break;
468 case 2:
469 case 4:
470 case 8:
471 if (macfb_setpalette)
Finn Thain99e11ab2009-11-04 00:51:18 +1100472 macfb_setpalette(regno, red >> 8, green >> 8,
473 blue >> 8, fb_info);
Antonino A. Daplas24fc7222007-07-17 04:05:37 -0700474 else
475 return 1;
476 break;
477 }
478 } else if (regno < 16) {
479 switch (fb_info->var.bits_per_pixel) {
480 case 16:
481 if (fb_info->var.red.offset == 10) {
482 /* 1:5:5:5 */
483 ((u32*) (fb_info->pseudo_palette))[regno] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 ((red & 0xf800) >> 1) |
485 ((green & 0xf800) >> 6) |
486 ((blue & 0xf800) >> 11) |
487 ((transp != 0) << 15);
Antonino A. Daplas24fc7222007-07-17 04:05:37 -0700488 } else {
489 /* 0:5:6:5 */
490 ((u32*) (fb_info->pseudo_palette))[regno] =
Finn Thain34c41d02009-11-04 00:47:28 +1100491 ((red & 0xf800) >> 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 ((green & 0xfc00) >> 5) |
493 ((blue & 0xf800) >> 11);
Antonino A. Daplas24fc7222007-07-17 04:05:37 -0700494 }
495 break;
Finn Thain34c41d02009-11-04 00:47:28 +1100496 /*
497 * 24-bit colour almost doesn't exist on 68k Macs --
498 * http://support.apple.com/kb/TA28634 (Old Article: 10992)
499 */
Antonino A. Daplas24fc7222007-07-17 04:05:37 -0700500 case 24:
Antonino A. Daplas24fc7222007-07-17 04:05:37 -0700501 case 32:
502 red >>= 8;
503 green >>= 8;
504 blue >>= 8;
505 ((u32 *)(fb_info->pseudo_palette))[regno] =
Finn Thain34c41d02009-11-04 00:47:28 +1100506 (red << fb_info->var.red.offset) |
Antonino A. Daplas24fc7222007-07-17 04:05:37 -0700507 (green << fb_info->var.green.offset) |
508 (blue << fb_info->var.blue.offset);
509 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
Antonino A. Daplas24fc7222007-07-17 04:05:37 -0700511 }
512
513 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
516static struct fb_ops macfb_ops = {
517 .owner = THIS_MODULE,
518 .fb_setcolreg = macfb_setcolreg,
519 .fb_fillrect = cfb_fillrect,
520 .fb_copyarea = cfb_copyarea,
521 .fb_imageblit = cfb_imageblit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522};
523
Adrian Bunk511e7482008-07-25 19:46:26 -0700524static void __init macfb_setup(char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 char *this_opt;
Finn Thain34c41d02009-11-04 00:47:28 +1100527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (!options || !*options)
529 return;
Finn Thain34c41d02009-11-04 00:47:28 +1100530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 while ((this_opt = strsep(&options, ",")) != NULL) {
Finn Thain34c41d02009-11-04 00:47:28 +1100532 if (!*this_opt)
533 continue;
534
535 if (!strcmp(this_opt, "inverse"))
536 inverse = 1;
537 else
538 if (!strcmp(this_opt, "vidtest"))
539 vidtest = 1; /* enable experimental CLUT code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541}
542
Amol Lad164a7652006-12-08 02:40:09 -0800543static void __init iounmap_macfb(void)
544{
Amol Lad164a7652006-12-08 02:40:09 -0800545 if (dafb_cmap_regs)
546 iounmap(dafb_cmap_regs);
547 if (v8_brazil_cmap_regs)
548 iounmap(v8_brazil_cmap_regs);
549 if (rbv_cmap_regs)
550 iounmap(rbv_cmap_regs);
551 if (civic_cmap_regs)
552 iounmap(civic_cmap_regs);
553 if (csc_cmap_regs)
554 iounmap(csc_cmap_regs);
555}
556
Al Viroed1705a2006-01-12 01:06:39 -0800557static int __init macfb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
559 int video_cmap_len, video_is_nubus = 0;
560 struct nubus_dev* ndev = NULL;
561 char *option = NULL;
Al Viroed1705a2006-01-12 01:06:39 -0800562 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 if (fb_get_options("macfb", &option))
565 return -ENODEV;
566 macfb_setup(option);
567
568 if (!MACH_IS_MAC)
Al Viroed1705a2006-01-12 01:06:39 -0800569 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Finn Thain11e8fac2009-11-04 00:43:52 +1100571 if (mac_bi_data.id == MAC_MODEL_Q630 ||
572 mac_bi_data.id == MAC_MODEL_P588)
573 return -ENODEV; /* See valkyriefb.c */
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 macfb_defined.xres = mac_bi_data.dimensions & 0xFFFF;
576 macfb_defined.yres = mac_bi_data.dimensions >> 16;
577 macfb_defined.bits_per_pixel = mac_bi_data.videodepth;
Finn Thain34c41d02009-11-04 00:47:28 +1100578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 macfb_fix.line_length = mac_bi_data.videorow;
Finn Thain34c41d02009-11-04 00:47:28 +1100580 macfb_fix.smem_len = macfb_fix.line_length * macfb_defined.yres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /* Note: physical address (since 2.1.127) */
Finn Thain34c41d02009-11-04 00:47:28 +1100582 macfb_fix.smem_start = mac_bi_data.videoaddr;
583
584 /*
585 * This is actually redundant with the initial mappings.
586 * However, there are some non-obvious aspects to the way
587 * those mappings are set up, so this is in fact the safest
588 * way to ensure that this driver will work on every possible Mac
589 */
Finn Thain99e11ab2009-11-04 00:51:18 +1100590 fb_info.screen_base = ioremap(mac_bi_data.videoaddr,
591 macfb_fix.smem_len);
592 if (!fb_info.screen_base)
593 return -ENODEV;
594
Finn Thaind9070fc2011-10-24 01:11:10 +1100595 pr_info("macfb: framebuffer at 0x%08lx, mapped to 0x%p, size %dk\n",
596 macfb_fix.smem_start, fb_info.screen_base,
597 macfb_fix.smem_len / 1024);
598 pr_info("macfb: mode is %dx%dx%d, linelength=%d\n",
599 macfb_defined.xres, macfb_defined.yres,
600 macfb_defined.bits_per_pixel, macfb_fix.line_length);
Finn Thain34c41d02009-11-04 00:47:28 +1100601
Finn Thain99e11ab2009-11-04 00:51:18 +1100602 /* Fill in the available video resolution */
Finn Thain34c41d02009-11-04 00:47:28 +1100603 macfb_defined.xres_virtual = macfb_defined.xres;
604 macfb_defined.yres_virtual = macfb_defined.yres;
605 macfb_defined.height = PIXEL_TO_MM(macfb_defined.yres);
606 macfb_defined.width = PIXEL_TO_MM(macfb_defined.xres);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Finn Thain99e11ab2009-11-04 00:51:18 +1100608 /* Some dummy values for timing to make fbset happy */
Finn Thain34c41d02009-11-04 00:47:28 +1100609 macfb_defined.pixclock = 10000000 / macfb_defined.xres *
610 1000 / macfb_defined.yres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 macfb_defined.left_margin = (macfb_defined.xres / 8) & 0xf8;
612 macfb_defined.hsync_len = (macfb_defined.xres / 8) & 0xf8;
613
614 switch (macfb_defined.bits_per_pixel) {
615 case 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 macfb_defined.red.length = macfb_defined.bits_per_pixel;
617 macfb_defined.green.length = macfb_defined.bits_per_pixel;
618 macfb_defined.blue.length = macfb_defined.bits_per_pixel;
Finn Thaind9070fc2011-10-24 01:11:10 +1100619 video_cmap_len = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 macfb_fix.visual = FB_VISUAL_MONO01;
621 break;
622 case 2:
623 case 4:
624 case 8:
625 macfb_defined.red.length = macfb_defined.bits_per_pixel;
626 macfb_defined.green.length = macfb_defined.bits_per_pixel;
627 macfb_defined.blue.length = macfb_defined.bits_per_pixel;
628 video_cmap_len = 1 << macfb_defined.bits_per_pixel;
629 macfb_fix.visual = FB_VISUAL_PSEUDOCOLOR;
630 break;
631 case 16:
632 macfb_defined.transp.offset = 15;
633 macfb_defined.transp.length = 1;
634 macfb_defined.red.offset = 10;
635 macfb_defined.red.length = 5;
636 macfb_defined.green.offset = 5;
637 macfb_defined.green.length = 5;
638 macfb_defined.blue.offset = 0;
639 macfb_defined.blue.length = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 video_cmap_len = 16;
Finn Thain34c41d02009-11-04 00:47:28 +1100641 /*
642 * Should actually be FB_VISUAL_DIRECTCOLOR, but this
643 * works too
644 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 macfb_fix.visual = FB_VISUAL_TRUECOLOR;
646 break;
647 case 24:
648 case 32:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 macfb_defined.red.offset = 16;
650 macfb_defined.red.length = 8;
651 macfb_defined.green.offset = 8;
652 macfb_defined.green.length = 8;
653 macfb_defined.blue.offset = 0;
654 macfb_defined.blue.length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 video_cmap_len = 16;
656 macfb_fix.visual = FB_VISUAL_TRUECOLOR;
Finn Thain99e11ab2009-11-04 00:51:18 +1100657 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 default:
Finn Thaind9070fc2011-10-24 01:11:10 +1100659 pr_err("macfb: unknown or unsupported bit depth: %d\n",
Finn Thain34c41d02009-11-04 00:47:28 +1100660 macfb_defined.bits_per_pixel);
Finn Thaind9070fc2011-10-24 01:11:10 +1100661 err = -EINVAL;
662 goto fail_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
Finn Thain34c41d02009-11-04 00:47:28 +1100665 /*
666 * We take a wild guess that if the video physical address is
667 * in nubus slot space, that the nubus card is driving video.
668 * Penguin really ought to tell us whether we are using internal
669 * video or not.
670 * Hopefully we only find one of them. Otherwise our NuBus
671 * code is really broken :-)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Finn Thain99e11ab2009-11-04 00:51:18 +1100674 while ((ndev = nubus_find_type(NUBUS_CAT_DISPLAY,
675 NUBUS_TYPE_VIDEO, ndev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 {
Finn Thain99e11ab2009-11-04 00:51:18 +1100677 unsigned long base = ndev->board->slot_addr;
678
679 if (mac_bi_data.videoaddr < base ||
680 mac_bi_data.videoaddr - base > 0xFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 continue;
Finn Thain99e11ab2009-11-04 00:51:18 +1100682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 video_is_nubus = 1;
Finn Thain99e11ab2009-11-04 00:51:18 +1100684 slot_addr = (unsigned char *)base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 switch(ndev->dr_hw) {
687 case NUBUS_DRHW_APPLE_MDC:
Finn Thain89c223a2008-11-18 20:40:40 +0100688 strcpy(macfb_fix.id, "Mac Disp. Card");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 macfb_setpalette = mdc_setpalette;
690 macfb_defined.activate = FB_ACTIVATE_NOW;
691 break;
692 case NUBUS_DRHW_APPLE_TFB:
Finn Thain89c223a2008-11-18 20:40:40 +0100693 strcpy(macfb_fix.id, "Toby");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 macfb_setpalette = toby_setpalette;
695 macfb_defined.activate = FB_ACTIVATE_NOW;
696 break;
697 case NUBUS_DRHW_APPLE_JET:
Finn Thain89c223a2008-11-18 20:40:40 +0100698 strcpy(macfb_fix.id, "Jet");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 macfb_setpalette = jet_setpalette;
700 macfb_defined.activate = FB_ACTIVATE_NOW;
Finn Thain34c41d02009-11-04 00:47:28 +1100701 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 default:
Finn Thain89c223a2008-11-18 20:40:40 +0100703 strcpy(macfb_fix.id, "Generic NuBus");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 break;
705 }
706 }
707
708 /* If it's not a NuBus card, it must be internal video */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (!video_is_nubus)
Finn Thain34c41d02009-11-04 00:47:28 +1100710 switch (mac_bi_data.id) {
711 /*
712 * DAFB Quadras
713 * Note: these first four have the v7 DAFB, which is
714 * known to be rather unlike the ones used in the
715 * other models
716 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 case MAC_MODEL_P475:
718 case MAC_MODEL_P475F:
719 case MAC_MODEL_P575:
720 case MAC_MODEL_Q605:
Finn Thain34c41d02009-11-04 00:47:28 +1100721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 case MAC_MODEL_Q800:
723 case MAC_MODEL_Q650:
724 case MAC_MODEL_Q610:
725 case MAC_MODEL_C650:
726 case MAC_MODEL_C610:
727 case MAC_MODEL_Q700:
728 case MAC_MODEL_Q900:
729 case MAC_MODEL_Q950:
Finn Thain89c223a2008-11-18 20:40:40 +0100730 strcpy(macfb_fix.id, "DAFB");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 macfb_setpalette = dafb_setpalette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 dafb_cmap_regs = ioremap(DAFB_BASE, 0x1000);
Finn Thaind9070fc2011-10-24 01:11:10 +1100733 macfb_defined.activate = FB_ACTIVATE_NOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 break;
735
Finn Thain34c41d02009-11-04 00:47:28 +1100736 /*
737 * LC II uses the V8 framebuffer
738 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 case MAC_MODEL_LCII:
Finn Thain89c223a2008-11-18 20:40:40 +0100740 strcpy(macfb_fix.id, "V8");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 macfb_setpalette = v8_brazil_setpalette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 v8_brazil_cmap_regs = ioremap(DAC_BASE, 0x1000);
Finn Thaind9070fc2011-10-24 01:11:10 +1100743 macfb_defined.activate = FB_ACTIVATE_NOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 break;
Finn Thain34c41d02009-11-04 00:47:28 +1100745
746 /*
747 * IIvi, IIvx use the "Brazil" framebuffer (which is
748 * very much like the V8, it seems, and probably uses
749 * the same DAC)
750 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 case MAC_MODEL_IIVI:
752 case MAC_MODEL_IIVX:
753 case MAC_MODEL_P600:
Finn Thain89c223a2008-11-18 20:40:40 +0100754 strcpy(macfb_fix.id, "Brazil");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 macfb_setpalette = v8_brazil_setpalette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 v8_brazil_cmap_regs = ioremap(DAC_BASE, 0x1000);
Finn Thaind9070fc2011-10-24 01:11:10 +1100757 macfb_defined.activate = FB_ACTIVATE_NOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 break;
Finn Thain34c41d02009-11-04 00:47:28 +1100759
760 /*
761 * LC III (and friends) use the Sonora framebuffer
762 * Incidentally this is also used in the non-AV models
763 * of the x100 PowerMacs
764 * These do in fact seem to use the same DAC interface
765 * as the LC II.
766 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 case MAC_MODEL_LCIII:
768 case MAC_MODEL_P520:
769 case MAC_MODEL_P550:
770 case MAC_MODEL_P460:
Finn Thain89c223a2008-11-18 20:40:40 +0100771 strcpy(macfb_fix.id, "Sonora");
Finn Thaind9070fc2011-10-24 01:11:10 +1100772 macfb_setpalette = v8_brazil_setpalette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 v8_brazil_cmap_regs = ioremap(DAC_BASE, 0x1000);
Finn Thaind9070fc2011-10-24 01:11:10 +1100774 macfb_defined.activate = FB_ACTIVATE_NOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 break;
776
Finn Thain34c41d02009-11-04 00:47:28 +1100777 /*
778 * IIci and IIsi use the infamous RBV chip
779 * (the IIsi is just a rebadged and crippled
780 * IIci in a different case, BTW)
781 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 case MAC_MODEL_IICI:
783 case MAC_MODEL_IISI:
Finn Thain89c223a2008-11-18 20:40:40 +0100784 strcpy(macfb_fix.id, "RBV");
Finn Thaind9070fc2011-10-24 01:11:10 +1100785 macfb_setpalette = rbv_setpalette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 rbv_cmap_regs = ioremap(DAC_BASE, 0x1000);
Finn Thaind9070fc2011-10-24 01:11:10 +1100787 macfb_defined.activate = FB_ACTIVATE_NOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 break;
789
Finn Thain34c41d02009-11-04 00:47:28 +1100790 /*
791 * AVs use the Civic framebuffer
792 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 case MAC_MODEL_Q840:
794 case MAC_MODEL_C660:
Finn Thain89c223a2008-11-18 20:40:40 +0100795 strcpy(macfb_fix.id, "Civic");
Finn Thaind9070fc2011-10-24 01:11:10 +1100796 macfb_setpalette = civic_setpalette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 civic_cmap_regs = ioremap(CIVIC_BASE, 0x1000);
Finn Thaind9070fc2011-10-24 01:11:10 +1100798 macfb_defined.activate = FB_ACTIVATE_NOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 break;
800
801
Finn Thain34c41d02009-11-04 00:47:28 +1100802 /*
803 * Assorted weirdos
804 * We think this may be like the LC II
805 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 case MAC_MODEL_LC:
Finn Thaind9070fc2011-10-24 01:11:10 +1100807 strcpy(macfb_fix.id, "LC");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (vidtest) {
809 macfb_setpalette = v8_brazil_setpalette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 v8_brazil_cmap_regs =
811 ioremap(DAC_BASE, 0x1000);
Finn Thaind9070fc2011-10-24 01:11:10 +1100812 macfb_defined.activate = FB_ACTIVATE_NOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 break;
Finn Thain34c41d02009-11-04 00:47:28 +1100815
816 /*
817 * We think this may be like the LC II
818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 case MAC_MODEL_CCL:
Finn Thaind9070fc2011-10-24 01:11:10 +1100820 strcpy(macfb_fix.id, "Color Classic");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (vidtest) {
822 macfb_setpalette = v8_brazil_setpalette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 v8_brazil_cmap_regs =
824 ioremap(DAC_BASE, 0x1000);
Finn Thaind9070fc2011-10-24 01:11:10 +1100825 macfb_defined.activate = FB_ACTIVATE_NOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 break;
828
Finn Thain34c41d02009-11-04 00:47:28 +1100829 /*
830 * And we *do* mean "weirdos"
831 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 case MAC_MODEL_TV:
Finn Thain89c223a2008-11-18 20:40:40 +0100833 strcpy(macfb_fix.id, "Mac TV");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 break;
835
Finn Thain34c41d02009-11-04 00:47:28 +1100836 /*
837 * These don't have colour, so no need to worry
838 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 case MAC_MODEL_SE30:
840 case MAC_MODEL_CLII:
Finn Thain89c223a2008-11-18 20:40:40 +0100841 strcpy(macfb_fix.id, "Monochrome");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 break;
843
Finn Thain34c41d02009-11-04 00:47:28 +1100844 /*
845 * Powerbooks are particularly difficult. Many of
846 * them have separate framebuffers for external and
847 * internal video, which is admittedly pretty cool,
848 * but will be a bit of a headache to support here.
849 * Also, many of them are grayscale, and we don't
850 * really support that.
851 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Finn Thain99e11ab2009-11-04 00:51:18 +1100853 /*
854 * Slot 0 ROM says TIM. No external video. B&W.
855 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 case MAC_MODEL_PB140:
857 case MAC_MODEL_PB145:
858 case MAC_MODEL_PB170:
Finn Thain89c223a2008-11-18 20:40:40 +0100859 strcpy(macfb_fix.id, "DDC");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 break;
861
Finn Thain34c41d02009-11-04 00:47:28 +1100862 /*
863 * Internal is GSC, External (if present) is ViSC
864 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 case MAC_MODEL_PB150: /* no external video */
866 case MAC_MODEL_PB160:
867 case MAC_MODEL_PB165:
868 case MAC_MODEL_PB180:
869 case MAC_MODEL_PB210:
870 case MAC_MODEL_PB230:
Finn Thain89c223a2008-11-18 20:40:40 +0100871 strcpy(macfb_fix.id, "GSC");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 break;
873
Finn Thain34c41d02009-11-04 00:47:28 +1100874 /*
875 * Internal is TIM, External is ViSC
876 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 case MAC_MODEL_PB165C:
878 case MAC_MODEL_PB180C:
Finn Thain89c223a2008-11-18 20:40:40 +0100879 strcpy(macfb_fix.id, "TIM");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 break;
881
Finn Thain34c41d02009-11-04 00:47:28 +1100882 /*
883 * Internal is CSC, External is Keystone+Ariel.
884 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 case MAC_MODEL_PB190: /* external video is optional */
886 case MAC_MODEL_PB520:
887 case MAC_MODEL_PB250:
888 case MAC_MODEL_PB270C:
889 case MAC_MODEL_PB280:
890 case MAC_MODEL_PB280C:
Finn Thain89c223a2008-11-18 20:40:40 +0100891 strcpy(macfb_fix.id, "CSC");
Finn Thaind9070fc2011-10-24 01:11:10 +1100892 macfb_setpalette = csc_setpalette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 csc_cmap_regs = ioremap(CSC_BASE, 0x1000);
Finn Thaind9070fc2011-10-24 01:11:10 +1100894 macfb_defined.activate = FB_ACTIVATE_NOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 break;
Finn Thain34c41d02009-11-04 00:47:28 +1100896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 default:
Finn Thain89c223a2008-11-18 20:40:40 +0100898 strcpy(macfb_fix.id, "Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 break;
900 }
901
902 fb_info.fbops = &macfb_ops;
903 fb_info.var = macfb_defined;
904 fb_info.fix = macfb_fix;
905 fb_info.pseudo_palette = pseudo_palette;
906 fb_info.flags = FBINFO_DEFAULT;
907
Finn Thain89c223a2008-11-18 20:40:40 +0100908 err = fb_alloc_cmap(&fb_info.cmap, video_cmap_len, 0);
909 if (err)
910 goto fail_unmap;
Finn Thain34c41d02009-11-04 00:47:28 +1100911
Al Viroed1705a2006-01-12 01:06:39 -0800912 err = register_framebuffer(&fb_info);
Finn Thain89c223a2008-11-18 20:40:40 +0100913 if (err)
914 goto fail_dealloc;
915
Finn Thaind9070fc2011-10-24 01:11:10 +1100916 pr_info("fb%d: %s frame buffer device\n",
917 fb_info.node, fb_info.fix.id);
918
Finn Thain89c223a2008-11-18 20:40:40 +0100919 return 0;
920
921fail_dealloc:
922 fb_dealloc_cmap(&fb_info.cmap);
923fail_unmap:
924 iounmap(fb_info.screen_base);
925 iounmap_macfb();
Al Viroed1705a2006-01-12 01:06:39 -0800926 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
929module_init(macfb_init);
930MODULE_LICENSE("GPL");