blob: 9a656bc6295c6ef432a511481ab353afba0c8c4d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/video/chipsfb.c -- frame buffer device for
3 * Chips & Technologies 65550 chip.
4 *
5 * Copyright (C) 1998-2002 Paul Mackerras
6 *
7 * This file is derived from the Powermac "chips" driver:
8 * Copyright (C) 1997 Fabio Riccardi.
9 * And from the frame buffer device for Open Firmware-initialized devices:
10 * Copyright (C) 1997 Geert Uytterhoeven.
11 *
12 * This file is subject to the terms and conditions of the GNU General Public
13 * License. See the file COPYING in the main directory of this archive for
14 * more details.
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/errno.h>
20#include <linux/string.h>
21#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/slab.h>
23#include <linux/vmalloc.h>
24#include <linux/delay.h>
25#include <linux/interrupt.h>
26#include <linux/fb.h>
27#include <linux/init.h>
28#include <linux/pci.h>
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -070029#include <linux/console.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/io.h>
31
32#ifdef CONFIG_PMAC_BACKLIGHT
33#include <asm/backlight.h>
34#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/*
37 * Since we access the display with inb/outb to fixed port numbers,
38 * we can only handle one 6555x chip. -- paulus
39 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define write_ind(num, val, ap, dp) do { \
41 outb((num), (ap)); outb((val), (dp)); \
42} while (0)
43#define read_ind(num, var, ap, dp) do { \
44 outb((num), (ap)); var = inb((dp)); \
45} while (0)
46
47/* extension registers */
48#define write_xr(num, val) write_ind(num, val, 0x3d6, 0x3d7)
49#define read_xr(num, var) read_ind(num, var, 0x3d6, 0x3d7)
50/* flat panel registers */
51#define write_fr(num, val) write_ind(num, val, 0x3d0, 0x3d1)
52#define read_fr(num, var) read_ind(num, var, 0x3d0, 0x3d1)
53/* CRTC registers */
54#define write_cr(num, val) write_ind(num, val, 0x3d4, 0x3d5)
55#define read_cr(num, var) read_ind(num, var, 0x3d4, 0x3d5)
56/* graphics registers */
57#define write_gr(num, val) write_ind(num, val, 0x3ce, 0x3cf)
58#define read_gr(num, var) read_ind(num, var, 0x3ce, 0x3cf)
59/* sequencer registers */
60#define write_sr(num, val) write_ind(num, val, 0x3c4, 0x3c5)
61#define read_sr(num, var) read_ind(num, var, 0x3c4, 0x3c5)
62/* attribute registers - slightly strange */
63#define write_ar(num, val) do { \
64 inb(0x3da); write_ind(num, val, 0x3c0, 0x3c0); \
65} while (0)
66#define read_ar(num, var) do { \
67 inb(0x3da); read_ind(num, var, 0x3c0, 0x3c1); \
68} while (0)
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
71 * Exported functions
72 */
73int chips_init(void);
74
75static int chipsfb_pci_init(struct pci_dev *dp, const struct pci_device_id *);
76static int chipsfb_check_var(struct fb_var_screeninfo *var,
77 struct fb_info *info);
78static int chipsfb_set_par(struct fb_info *info);
79static int chipsfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
80 u_int transp, struct fb_info *info);
81static int chipsfb_blank(int blank, struct fb_info *info);
82
83static struct fb_ops chipsfb_ops = {
84 .owner = THIS_MODULE,
85 .fb_check_var = chipsfb_check_var,
86 .fb_set_par = chipsfb_set_par,
87 .fb_setcolreg = chipsfb_setcolreg,
88 .fb_blank = chipsfb_blank,
89 .fb_fillrect = cfb_fillrect,
90 .fb_copyarea = cfb_copyarea,
91 .fb_imageblit = cfb_imageblit,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
94static int chipsfb_check_var(struct fb_var_screeninfo *var,
95 struct fb_info *info)
96{
97 if (var->xres > 800 || var->yres > 600
98 || var->xres_virtual > 800 || var->yres_virtual > 600
99 || (var->bits_per_pixel != 8 && var->bits_per_pixel != 16)
100 || var->nonstd
101 || (var->vmode & FB_VMODE_MASK) != FB_VMODE_NONINTERLACED)
102 return -EINVAL;
103
104 var->xres = var->xres_virtual = 800;
105 var->yres = var->yres_virtual = 600;
106
107 return 0;
108}
109
110static int chipsfb_set_par(struct fb_info *info)
111{
112 if (info->var.bits_per_pixel == 16) {
113 write_cr(0x13, 200); // Set line length (doublewords)
114 write_xr(0x81, 0x14); // 15 bit (555) color mode
115 write_xr(0x82, 0x00); // Disable palettes
116 write_xr(0x20, 0x10); // 16 bit blitter mode
117
118 info->fix.line_length = 800*2;
119 info->fix.visual = FB_VISUAL_TRUECOLOR;
120
121 info->var.red.offset = 10;
122 info->var.green.offset = 5;
123 info->var.blue.offset = 0;
124 info->var.red.length = info->var.green.length =
125 info->var.blue.length = 5;
126
127 } else {
128 /* p->var.bits_per_pixel == 8 */
129 write_cr(0x13, 100); // Set line length (doublewords)
130 write_xr(0x81, 0x12); // 8 bit color mode
131 write_xr(0x82, 0x08); // Graphics gamma enable
132 write_xr(0x20, 0x00); // 8 bit blitter mode
133
134 info->fix.line_length = 800;
135 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
136
137 info->var.red.offset = info->var.green.offset =
138 info->var.blue.offset = 0;
139 info->var.red.length = info->var.green.length =
140 info->var.blue.length = 8;
141
142 }
143 return 0;
144}
145
146static int chipsfb_blank(int blank, struct fb_info *info)
147{
148#ifdef CONFIG_PMAC_BACKLIGHT
Michael Hanselmann5474c122006-06-25 05:47:08 -0700149 mutex_lock(&pmac_backlight_mutex);
150
151 if (pmac_backlight) {
Michael Hanselmann5474c122006-06-25 05:47:08 -0700152 /* used to disable backlight only for blank > 1, but it seems
153 * useful at blank = 1 too (saves battery, extends backlight
154 * life)
155 */
156 if (blank)
157 pmac_backlight->props->power = FB_BLANK_POWERDOWN;
158 else
159 pmac_backlight->props->power = FB_BLANK_UNBLANK;
Richard Purdie28ee0862007-02-08 22:25:09 +0000160 backlight_update_status(pmac_backlight);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700161 }
162
163 mutex_unlock(&pmac_backlight_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#endif /* CONFIG_PMAC_BACKLIGHT */
165
166 return 1; /* get fb_blank to set the colormap to all black */
167}
168
169static int chipsfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
170 u_int transp, struct fb_info *info)
171{
172 if (regno > 255)
173 return 1;
174 red >>= 8;
175 green >>= 8;
176 blue >>= 8;
177 outb(regno, 0x3c8);
178 udelay(1);
179 outb(red, 0x3c9);
180 outb(green, 0x3c9);
181 outb(blue, 0x3c9);
182
183 return 0;
184}
185
186struct chips_init_reg {
187 unsigned char addr;
188 unsigned char data;
189};
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static struct chips_init_reg chips_init_sr[] = {
192 { 0x00, 0x03 },
193 { 0x01, 0x01 },
194 { 0x02, 0x0f },
195 { 0x04, 0x0e }
196};
197
198static struct chips_init_reg chips_init_gr[] = {
199 { 0x05, 0x00 },
200 { 0x06, 0x0d },
201 { 0x08, 0xff }
202};
203
204static struct chips_init_reg chips_init_ar[] = {
205 { 0x10, 0x01 },
206 { 0x12, 0x0f },
207 { 0x13, 0x00 }
208};
209
210static struct chips_init_reg chips_init_cr[] = {
211 { 0x00, 0x7f },
212 { 0x01, 0x63 },
213 { 0x02, 0x63 },
214 { 0x03, 0x83 },
215 { 0x04, 0x66 },
216 { 0x05, 0x10 },
217 { 0x06, 0x72 },
218 { 0x07, 0x3e },
219 { 0x08, 0x00 },
220 { 0x09, 0x40 },
221 { 0x0c, 0x00 },
222 { 0x0d, 0x00 },
223 { 0x10, 0x59 },
224 { 0x11, 0x0d },
225 { 0x12, 0x57 },
226 { 0x13, 0x64 },
227 { 0x14, 0x00 },
228 { 0x15, 0x57 },
229 { 0x16, 0x73 },
230 { 0x17, 0xe3 },
231 { 0x18, 0xff },
232 { 0x30, 0x02 },
233 { 0x31, 0x02 },
234 { 0x32, 0x02 },
235 { 0x33, 0x02 },
236 { 0x40, 0x00 },
237 { 0x41, 0x00 },
238 { 0x40, 0x80 }
239};
240
241static struct chips_init_reg chips_init_fr[] = {
242 { 0x01, 0x02 },
243 { 0x03, 0x08 },
244 { 0x04, 0x81 },
245 { 0x05, 0x21 },
246 { 0x08, 0x0c },
247 { 0x0a, 0x74 },
248 { 0x0b, 0x11 },
249 { 0x10, 0x0c },
250 { 0x11, 0xe0 },
251 /* { 0x12, 0x40 }, -- 3400 needs 40, 2400 needs 48, no way to tell */
252 { 0x20, 0x63 },
253 { 0x21, 0x68 },
254 { 0x22, 0x19 },
255 { 0x23, 0x7f },
256 { 0x24, 0x68 },
257 { 0x26, 0x00 },
258 { 0x27, 0x0f },
259 { 0x30, 0x57 },
260 { 0x31, 0x58 },
261 { 0x32, 0x0d },
262 { 0x33, 0x72 },
263 { 0x34, 0x02 },
264 { 0x35, 0x22 },
265 { 0x36, 0x02 },
266 { 0x37, 0x00 }
267};
268
269static struct chips_init_reg chips_init_xr[] = {
270 { 0xce, 0x00 }, /* set default memory clock */
271 { 0xcc, 0x43 }, /* memory clock ratio */
272 { 0xcd, 0x18 },
273 { 0xce, 0xa1 },
274 { 0xc8, 0x84 },
275 { 0xc9, 0x0a },
276 { 0xca, 0x00 },
277 { 0xcb, 0x20 },
278 { 0xcf, 0x06 },
279 { 0xd0, 0x0e },
280 { 0x09, 0x01 },
281 { 0x0a, 0x02 },
282 { 0x0b, 0x01 },
283 { 0x20, 0x00 },
284 { 0x40, 0x03 },
285 { 0x41, 0x01 },
286 { 0x42, 0x00 },
287 { 0x80, 0x82 },
288 { 0x81, 0x12 },
289 { 0x82, 0x08 },
290 { 0xa0, 0x00 },
291 { 0xa8, 0x00 }
292};
293
294static void __init chips_hw_init(void)
295{
296 int i;
297
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800298 for (i = 0; i < ARRAY_SIZE(chips_init_xr); ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 write_xr(chips_init_xr[i].addr, chips_init_xr[i].data);
300 outb(0x29, 0x3c2); /* set misc output reg */
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800301 for (i = 0; i < ARRAY_SIZE(chips_init_sr); ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 write_sr(chips_init_sr[i].addr, chips_init_sr[i].data);
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800303 for (i = 0; i < ARRAY_SIZE(chips_init_gr); ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 write_gr(chips_init_gr[i].addr, chips_init_gr[i].data);
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800305 for (i = 0; i < ARRAY_SIZE(chips_init_ar); ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 write_ar(chips_init_ar[i].addr, chips_init_ar[i].data);
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800307 for (i = 0; i < ARRAY_SIZE(chips_init_cr); ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 write_cr(chips_init_cr[i].addr, chips_init_cr[i].data);
Tobias Klauserd1ae4182006-03-27 01:17:39 -0800309 for (i = 0; i < ARRAY_SIZE(chips_init_fr); ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 write_fr(chips_init_fr[i].addr, chips_init_fr[i].data);
311}
312
313static struct fb_fix_screeninfo chipsfb_fix __initdata = {
314 .id = "C&T 65550",
315 .type = FB_TYPE_PACKED_PIXELS,
316 .visual = FB_VISUAL_PSEUDOCOLOR,
317 .accel = FB_ACCEL_NONE,
318 .line_length = 800,
319
320// FIXME: Assumes 1MB frame buffer, but 65550 supports 1MB or 2MB.
321// * "3500" PowerBook G3 (the original PB G3) has 2MB.
322// * 2400 has 1MB composed of 2 Mitsubishi M5M4V4265CTP DRAM chips.
323// Motherboard actually supports 2MB -- there are two blank locations
324// for a second pair of DRAMs. (Thanks, Apple!)
325// * 3400 has 1MB (I think). Don't know if it's expandable.
326// -- Tim Seufert
327 .smem_len = 0x100000, /* 1MB */
328};
329
330static struct fb_var_screeninfo chipsfb_var __initdata = {
331 .xres = 800,
332 .yres = 600,
333 .xres_virtual = 800,
334 .yres_virtual = 600,
335 .bits_per_pixel = 8,
336 .red = { .length = 8 },
337 .green = { .length = 8 },
338 .blue = { .length = 8 },
339 .height = -1,
340 .width = -1,
341 .vmode = FB_VMODE_NONINTERLACED,
342 .pixclock = 10000,
343 .left_margin = 16,
344 .right_margin = 16,
345 .upper_margin = 16,
346 .lower_margin = 16,
347 .hsync_len = 8,
348 .vsync_len = 8,
349};
350
351static void __init init_chips(struct fb_info *p, unsigned long addr)
352{
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700353 memset(p->screen_base, 0, 0x100000);
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 p->fix = chipsfb_fix;
356 p->fix.smem_start = addr;
357
358 p->var = chipsfb_var;
359
360 p->fbops = &chipsfb_ops;
361 p->flags = FBINFO_DEFAULT;
362
363 fb_alloc_cmap(&p->cmap, 256, 0);
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 chips_hw_init();
366}
367
368static int __devinit
369chipsfb_pci_init(struct pci_dev *dp, const struct pci_device_id *ent)
370{
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700371 struct fb_info *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 unsigned long addr, size;
373 unsigned short cmd;
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700374 int rc = -ENODEV;
375
376 if (pci_enable_device(dp) < 0) {
377 dev_err(&dp->dev, "Cannot enable PCI device\n");
378 goto err_out;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 if ((dp->resource[0].flags & IORESOURCE_MEM) == 0)
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700382 goto err_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 addr = pci_resource_start(dp, 0);
384 size = pci_resource_len(dp, 0);
385 if (addr == 0)
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700386 goto err_disable;
387
388 p = framebuffer_alloc(0, &dp->dev);
389 if (p == NULL) {
390 dev_err(&dp->dev, "Cannot allocate framebuffer structure\n");
391 rc = -ENOMEM;
392 goto err_disable;
393 }
394
395 if (pci_request_region(dp, 0, "chipsfb") != 0) {
396 dev_err(&dp->dev, "Cannot request framebuffer\n");
397 rc = -EBUSY;
398 goto err_release_fb;
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401#ifdef __BIG_ENDIAN
402 addr += 0x800000; // Use big-endian aperture
403#endif
404
405 /* we should use pci_enable_device here, but,
406 the device doesn't declare its I/O ports in its BARs
407 so pci_enable_device won't turn on I/O responses */
408 pci_read_config_word(dp, PCI_COMMAND, &cmd);
409 cmd |= 3; /* enable memory and IO space */
410 pci_write_config_word(dp, PCI_COMMAND, cmd);
411
412#ifdef CONFIG_PMAC_BACKLIGHT
413 /* turn on the backlight */
Michael Hanselmann5474c122006-06-25 05:47:08 -0700414 mutex_lock(&pmac_backlight_mutex);
415 if (pmac_backlight) {
Michael Hanselmann5474c122006-06-25 05:47:08 -0700416 pmac_backlight->props->power = FB_BLANK_UNBLANK;
Richard Purdie28ee0862007-02-08 22:25:09 +0000417 backlight_update_status(pmac_backlight);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700418 }
419 mutex_unlock(&pmac_backlight_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420#endif /* CONFIG_PMAC_BACKLIGHT */
421
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700422#ifdef CONFIG_PPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 p->screen_base = __ioremap(addr, 0x200000, _PAGE_NO_CACHE);
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700424#else
425 p->screen_base = ioremap(addr, 0x200000);
426#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (p->screen_base == NULL) {
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700428 dev_err(&dp->dev, "Cannot map framebuffer\n");
429 rc = -ENOMEM;
430 goto err_release_pci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 pci_set_drvdata(dp, p);
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700434 p->device = &dp->dev;
435
436 init_chips(p, addr);
437
438 if (register_framebuffer(p) < 0) {
439 dev_err(&dp->dev,"C&T 65550 framebuffer failed to register\n");
440 goto err_unmap;
441 }
442
443 dev_info(&dp->dev,"fb%d: Chips 65550 frame buffer"
444 " (%dK RAM detected)\n",
445 p->node, p->fix.smem_len / 1024);
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return 0;
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700448
449 err_unmap:
450 iounmap(p->screen_base);
451 err_release_pci:
452 pci_release_region(dp, 0);
453 err_release_fb:
454 framebuffer_release(p);
455 err_disable:
456 err_out:
457 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460static void __devexit chipsfb_remove(struct pci_dev *dp)
461{
462 struct fb_info *p = pci_get_drvdata(dp);
463
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700464 if (p->screen_base == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return;
466 unregister_framebuffer(p);
467 iounmap(p->screen_base);
468 p->screen_base = NULL;
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700469 pci_release_region(dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700472#ifdef CONFIG_PM
473static int chipsfb_pci_suspend(struct pci_dev *pdev, pm_message_t state)
474{
475 struct fb_info *p = pci_get_drvdata(pdev);
476
Pavel Machekca078ba2005-09-03 15:56:57 -0700477 if (state.event == pdev->dev.power.power_state.event)
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700478 return 0;
Pavel Machekca078ba2005-09-03 15:56:57 -0700479 if (state.event != PM_SUSPEND_MEM)
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700480 goto done;
481
482 acquire_console_sem();
483 chipsfb_blank(1, p);
484 fb_set_suspend(p, 1);
485 release_console_sem();
486 done:
487 pdev->dev.power.power_state = state;
488 return 0;
489}
490
491static int chipsfb_pci_resume(struct pci_dev *pdev)
492{
493 struct fb_info *p = pci_get_drvdata(pdev);
494
495 acquire_console_sem();
496 fb_set_suspend(p, 0);
497 chipsfb_blank(0, p);
498 release_console_sem();
499
500 pdev->dev.power.power_state = PMSG_ON;
501 return 0;
502}
503#endif /* CONFIG_PM */
504
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506static struct pci_device_id chipsfb_pci_tbl[] = {
507 { PCI_VENDOR_ID_CT, PCI_DEVICE_ID_CT_65550, PCI_ANY_ID, PCI_ANY_ID },
508 { 0 }
509};
510
511MODULE_DEVICE_TABLE(pci, chipsfb_pci_tbl);
512
513static struct pci_driver chipsfb_driver = {
514 .name = "chipsfb",
515 .id_table = chipsfb_pci_tbl,
516 .probe = chipsfb_pci_init,
517 .remove = __devexit_p(chipsfb_remove),
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -0700518#ifdef CONFIG_PM
519 .suspend = chipsfb_pci_suspend,
520 .resume = chipsfb_pci_resume,
521#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522};
523
524int __init chips_init(void)
525{
526 if (fb_get_options("chipsfb", NULL))
527 return -ENODEV;
528
529 return pci_register_driver(&chipsfb_driver);
530}
531
532module_init(chips_init);
533
534static void __exit chipsfb_exit(void)
535{
536 pci_unregister_driver(&chipsfb_driver);
537}
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539MODULE_LICENSE("GPL");