2 * drivers/video/chipsfb.c -- frame buffer device for
3 * Chips & Technologies 65550 chip.
5 * Copyright (C) 1998-2002 Paul Mackerras
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.
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
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/errno.h>
20 #include <linux/string.h>
22 #include <linux/slab.h>
23 #include <linux/vmalloc.h>
24 #include <linux/delay.h>
25 #include <linux/interrupt.h>
27 #include <linux/init.h>
28 #include <linux/pci.h>
29 #include <linux/console.h>
32 #ifdef CONFIG_PMAC_BACKLIGHT
33 #include <asm/backlight.h>
37 * Since we access the display with inb/outb to fixed port numbers,
38 * we can only handle one 6555x chip. -- paulus
40 #define write_ind(num, val, ap, dp) do { \
41 outb((num), (ap)); outb((val), (dp)); \
43 #define read_ind(num, var, ap, dp) do { \
44 outb((num), (ap)); var = inb((dp)); \
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)
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); \
66 #define read_ar(num, var) do { \
67 inb(0x3da); read_ind(num, var, 0x3c0, 0x3c1); \
75 static int chipsfb_pci_init(struct pci_dev
*dp
, const struct pci_device_id
*);
76 static int chipsfb_check_var(struct fb_var_screeninfo
*var
,
77 struct fb_info
*info
);
78 static int chipsfb_set_par(struct fb_info
*info
);
79 static int chipsfb_setcolreg(u_int regno
, u_int red
, u_int green
, u_int blue
,
80 u_int transp
, struct fb_info
*info
);
81 static int chipsfb_blank(int blank
, struct fb_info
*info
);
83 static struct fb_ops chipsfb_ops
= {
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
,
94 static int chipsfb_check_var(struct fb_var_screeninfo
*var
,
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)
101 || (var
->vmode
& FB_VMODE_MASK
) != FB_VMODE_NONINTERLACED
)
104 var
->xres
= var
->xres_virtual
= 800;
105 var
->yres
= var
->yres_virtual
= 600;
110 static int chipsfb_set_par(struct fb_info
*info
)
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
118 info
->fix
.line_length
= 800*2;
119 info
->fix
.visual
= FB_VISUAL_TRUECOLOR
;
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;
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
134 info
->fix
.line_length
= 800;
135 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
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;
146 static int chipsfb_blank(int blank
, struct fb_info
*info
)
148 #ifdef CONFIG_PMAC_BACKLIGHT
149 mutex_lock(&pmac_backlight_mutex
);
151 if (pmac_backlight
) {
152 /* used to disable backlight only for blank > 1, but it seems
153 * useful at blank = 1 too (saves battery, extends backlight
156 down(&pmac_backlight
->sem
);
158 pmac_backlight
->props
->power
= FB_BLANK_POWERDOWN
;
160 pmac_backlight
->props
->power
= FB_BLANK_UNBLANK
;
161 pmac_backlight
->props
->update_status(pmac_backlight
);
162 up(&pmac_backlight
->sem
);
165 mutex_unlock(&pmac_backlight_mutex
);
166 #endif /* CONFIG_PMAC_BACKLIGHT */
168 return 1; /* get fb_blank to set the colormap to all black */
171 static int chipsfb_setcolreg(u_int regno
, u_int red
, u_int green
, u_int blue
,
172 u_int transp
, struct fb_info
*info
)
188 struct chips_init_reg
{
193 static struct chips_init_reg chips_init_sr
[] = {
200 static struct chips_init_reg chips_init_gr
[] = {
206 static struct chips_init_reg chips_init_ar
[] = {
212 static struct chips_init_reg chips_init_cr
[] = {
243 static struct chips_init_reg chips_init_fr
[] = {
253 /* { 0x12, 0x40 }, -- 3400 needs 40, 2400 needs 48, no way to tell */
271 static struct chips_init_reg chips_init_xr
[] = {
272 { 0xce, 0x00 }, /* set default memory clock */
273 { 0xcc, 0x43 }, /* memory clock ratio */
296 static void __init
chips_hw_init(void)
300 for (i
= 0; i
< ARRAY_SIZE(chips_init_xr
); ++i
)
301 write_xr(chips_init_xr
[i
].addr
, chips_init_xr
[i
].data
);
302 outb(0x29, 0x3c2); /* set misc output reg */
303 for (i
= 0; i
< ARRAY_SIZE(chips_init_sr
); ++i
)
304 write_sr(chips_init_sr
[i
].addr
, chips_init_sr
[i
].data
);
305 for (i
= 0; i
< ARRAY_SIZE(chips_init_gr
); ++i
)
306 write_gr(chips_init_gr
[i
].addr
, chips_init_gr
[i
].data
);
307 for (i
= 0; i
< ARRAY_SIZE(chips_init_ar
); ++i
)
308 write_ar(chips_init_ar
[i
].addr
, chips_init_ar
[i
].data
);
309 for (i
= 0; i
< ARRAY_SIZE(chips_init_cr
); ++i
)
310 write_cr(chips_init_cr
[i
].addr
, chips_init_cr
[i
].data
);
311 for (i
= 0; i
< ARRAY_SIZE(chips_init_fr
); ++i
)
312 write_fr(chips_init_fr
[i
].addr
, chips_init_fr
[i
].data
);
315 static struct fb_fix_screeninfo chipsfb_fix __initdata
= {
317 .type
= FB_TYPE_PACKED_PIXELS
,
318 .visual
= FB_VISUAL_PSEUDOCOLOR
,
319 .accel
= FB_ACCEL_NONE
,
322 // FIXME: Assumes 1MB frame buffer, but 65550 supports 1MB or 2MB.
323 // * "3500" PowerBook G3 (the original PB G3) has 2MB.
324 // * 2400 has 1MB composed of 2 Mitsubishi M5M4V4265CTP DRAM chips.
325 // Motherboard actually supports 2MB -- there are two blank locations
326 // for a second pair of DRAMs. (Thanks, Apple!)
327 // * 3400 has 1MB (I think). Don't know if it's expandable.
329 .smem_len
= 0x100000, /* 1MB */
332 static struct fb_var_screeninfo chipsfb_var __initdata
= {
338 .red
= { .length
= 8 },
339 .green
= { .length
= 8 },
340 .blue
= { .length
= 8 },
343 .vmode
= FB_VMODE_NONINTERLACED
,
353 static void __init
init_chips(struct fb_info
*p
, unsigned long addr
)
355 memset(p
->screen_base
, 0, 0x100000);
357 p
->fix
= chipsfb_fix
;
358 p
->fix
.smem_start
= addr
;
360 p
->var
= chipsfb_var
;
362 p
->fbops
= &chipsfb_ops
;
363 p
->flags
= FBINFO_DEFAULT
;
365 fb_alloc_cmap(&p
->cmap
, 256, 0);
371 chipsfb_pci_init(struct pci_dev
*dp
, const struct pci_device_id
*ent
)
374 unsigned long addr
, size
;
378 if (pci_enable_device(dp
) < 0) {
379 dev_err(&dp
->dev
, "Cannot enable PCI device\n");
383 if ((dp
->resource
[0].flags
& IORESOURCE_MEM
) == 0)
385 addr
= pci_resource_start(dp
, 0);
386 size
= pci_resource_len(dp
, 0);
390 p
= framebuffer_alloc(0, &dp
->dev
);
392 dev_err(&dp
->dev
, "Cannot allocate framebuffer structure\n");
397 if (pci_request_region(dp
, 0, "chipsfb") != 0) {
398 dev_err(&dp
->dev
, "Cannot request framebuffer\n");
404 addr
+= 0x800000; // Use big-endian aperture
407 /* we should use pci_enable_device here, but,
408 the device doesn't declare its I/O ports in its BARs
409 so pci_enable_device won't turn on I/O responses */
410 pci_read_config_word(dp
, PCI_COMMAND
, &cmd
);
411 cmd
|= 3; /* enable memory and IO space */
412 pci_write_config_word(dp
, PCI_COMMAND
, cmd
);
414 #ifdef CONFIG_PMAC_BACKLIGHT
415 /* turn on the backlight */
416 mutex_lock(&pmac_backlight_mutex
);
417 if (pmac_backlight
) {
418 down(&pmac_backlight
->sem
);
419 pmac_backlight
->props
->power
= FB_BLANK_UNBLANK
;
420 pmac_backlight
->props
->update_status(pmac_backlight
);
421 up(&pmac_backlight
->sem
);
423 mutex_unlock(&pmac_backlight_mutex
);
424 #endif /* CONFIG_PMAC_BACKLIGHT */
427 p
->screen_base
= __ioremap(addr
, 0x200000, _PAGE_NO_CACHE
);
429 p
->screen_base
= ioremap(addr
, 0x200000);
431 if (p
->screen_base
== NULL
) {
432 dev_err(&dp
->dev
, "Cannot map framebuffer\n");
434 goto err_release_pci
;
437 pci_set_drvdata(dp
, p
);
438 p
->device
= &dp
->dev
;
442 if (register_framebuffer(p
) < 0) {
443 dev_err(&dp
->dev
,"C&T 65550 framebuffer failed to register\n");
447 dev_info(&dp
->dev
,"fb%d: Chips 65550 frame buffer"
448 " (%dK RAM detected)\n",
449 p
->node
, p
->fix
.smem_len
/ 1024);
454 iounmap(p
->screen_base
);
456 pci_release_region(dp
, 0);
458 framebuffer_release(p
);
464 static void __devexit
chipsfb_remove(struct pci_dev
*dp
)
466 struct fb_info
*p
= pci_get_drvdata(dp
);
468 if (p
->screen_base
== NULL
)
470 unregister_framebuffer(p
);
471 iounmap(p
->screen_base
);
472 p
->screen_base
= NULL
;
473 pci_release_region(dp
, 0);
477 static int chipsfb_pci_suspend(struct pci_dev
*pdev
, pm_message_t state
)
479 struct fb_info
*p
= pci_get_drvdata(pdev
);
481 if (state
.event
== pdev
->dev
.power
.power_state
.event
)
483 if (state
.event
!= PM_SUSPEND_MEM
)
486 acquire_console_sem();
488 fb_set_suspend(p
, 1);
489 release_console_sem();
491 pdev
->dev
.power
.power_state
= state
;
495 static int chipsfb_pci_resume(struct pci_dev
*pdev
)
497 struct fb_info
*p
= pci_get_drvdata(pdev
);
499 acquire_console_sem();
500 fb_set_suspend(p
, 0);
502 release_console_sem();
504 pdev
->dev
.power
.power_state
= PMSG_ON
;
507 #endif /* CONFIG_PM */
510 static struct pci_device_id chipsfb_pci_tbl
[] = {
511 { PCI_VENDOR_ID_CT
, PCI_DEVICE_ID_CT_65550
, PCI_ANY_ID
, PCI_ANY_ID
},
515 MODULE_DEVICE_TABLE(pci
, chipsfb_pci_tbl
);
517 static struct pci_driver chipsfb_driver
= {
519 .id_table
= chipsfb_pci_tbl
,
520 .probe
= chipsfb_pci_init
,
521 .remove
= __devexit_p(chipsfb_remove
),
523 .suspend
= chipsfb_pci_suspend
,
524 .resume
= chipsfb_pci_resume
,
528 int __init
chips_init(void)
530 if (fb_get_options("chipsfb", NULL
))
533 return pci_register_driver(&chipsfb_driver
);
536 module_init(chips_init
);
538 static void __exit
chipsfb_exit(void)
540 pci_unregister_driver(&chipsfb_driver
);
543 MODULE_LICENSE("GPL");