1 /* $Id: aty128fb.c,v 1.1.1.1.36.1 1999/12/11 09:03:05 Exp $
2 * linux/drivers/video/aty128fb.c -- Frame buffer device for ATI Rage128
4 * Copyright (C) 1999-2003, Brad Douglas <brad@neruo.com>
5 * Copyright (C) 1999, Anthony Tong <atong@uiuc.edu>
7 * Ani Joshi / Jeff Garzik
10 * Michel Danzer <michdaen@iiic.ethz.ch>
14 * Benjamin Herrenschmidt
15 * - pmac-specific PM stuff
16 * - various fixes & cleanups
18 * Andreas Hundt <andi@convergence.de>
21 * Paul Mackerras <paulus@samba.org>
22 * - Convert to new framebuffer API,
23 * fix colormap setting at 16 bits/pixel (565)
28 * Jon Smirl <jonsmirl@yahoo.com>
30 * - replace ROM BIOS search
32 * Based off of Geert's atyfb.c and vfb.c.
35 * - monitor sensing (DDC)
37 * - other platform support (only ppc/x86 supported)
38 * - hardware cursor support
40 * Please cc: your patches to brad@neruo.com.
44 * A special note of gratitude to ATI's devrel for providing documentation,
45 * example code and hardware. Thanks Nitya. -atong and brad
49 #include <linux/config.h>
50 #include <linux/module.h>
51 #include <linux/moduleparam.h>
52 #include <linux/kernel.h>
53 #include <linux/errno.h>
54 #include <linux/string.h>
56 #include <linux/tty.h>
57 #include <linux/slab.h>
58 #include <linux/vmalloc.h>
59 #include <linux/delay.h>
60 #include <linux/interrupt.h>
61 #include <asm/uaccess.h>
63 #include <linux/init.h>
64 #include <linux/pci.h>
65 #include <linux/ioport.h>
66 #include <linux/console.h>
69 #ifdef CONFIG_PPC_PMAC
71 #include <asm/pci-bridge.h>
72 #include "../macmodes.h"
75 #ifdef CONFIG_PMAC_BACKLIGHT
76 #include <asm/backlight.h>
79 #ifdef CONFIG_BOOTX_TEXT
80 #include <asm/btext.h>
81 #endif /* CONFIG_BOOTX_TEXT */
87 #include <video/aty128.h>
93 #define DBG(fmt, args...) printk(KERN_DEBUG "aty128fb: %s " fmt, __FUNCTION__, ##args);
95 #define DBG(fmt, args...)
98 #ifndef CONFIG_PPC_PMAC
100 static struct fb_var_screeninfo default_var __initdata
= {
101 /* 640x480, 60 Hz, Non-Interlaced (25.175 MHz dotclock) */
102 640, 480, 640, 480, 0, 0, 8, 0,
103 {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
104 0, 0, -1, -1, 0, 39722, 48, 16, 33, 10, 96, 2,
105 0, FB_VMODE_NONINTERLACED
108 #else /* CONFIG_PPC_PMAC */
109 /* default to 1024x768 at 75Hz on PPC - this will work
110 * on the iMac, the usual 640x480 @ 60Hz doesn't. */
111 static struct fb_var_screeninfo default_var
= {
112 /* 1024x768, 75 Hz, Non-Interlaced (78.75 MHz dotclock) */
113 1024, 768, 1024, 768, 0, 0, 8, 0,
114 {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
115 0, 0, -1, -1, 0, 12699, 160, 32, 28, 1, 96, 3,
116 FB_SYNC_HOR_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
117 FB_VMODE_NONINTERLACED
119 #endif /* CONFIG_PPC_PMAC */
121 /* default modedb mode */
122 /* 640x480, 60 Hz, Non-Interlaced (25.172 MHz dotclock) */
123 static struct fb_videomode defaultmode __initdata
= {
135 .vmode
= FB_VMODE_NONINTERLACED
138 /* Chip generations */
150 /* Must match above enum */
151 static const char *r128_family
[] __devinitdata
= {
163 * PCI driver prototypes
165 static int aty128_probe(struct pci_dev
*pdev
,
166 const struct pci_device_id
*ent
);
167 static void aty128_remove(struct pci_dev
*pdev
);
168 static int aty128_pci_suspend(struct pci_dev
*pdev
, u32 state
);
169 static int aty128_pci_resume(struct pci_dev
*pdev
);
171 /* supported Rage128 chipsets */
172 static struct pci_device_id aty128_pci_tbl
[] = {
173 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_LE
,
174 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_M3_pci
},
175 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_LF
,
176 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_M3
},
177 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_MF
,
178 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_M4
},
179 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_ML
,
180 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_M4
},
181 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PA
,
182 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
183 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PB
,
184 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
185 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PC
,
186 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
187 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PD
,
188 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro_pci
},
189 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PE
,
190 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
191 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PF
,
192 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
193 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PG
,
194 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
195 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PH
,
196 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
197 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PI
,
198 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
199 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PJ
,
200 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
201 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PK
,
202 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
203 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PL
,
204 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
205 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PM
,
206 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
207 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PN
,
208 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
209 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PO
,
210 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
211 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PP
,
212 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro_pci
},
213 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PQ
,
214 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
215 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PR
,
216 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro_pci
},
217 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PS
,
218 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
219 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PT
,
220 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
221 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PU
,
222 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
223 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PV
,
224 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
225 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PW
,
226 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
227 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_PX
,
228 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pro
},
229 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_RE
,
230 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pci
},
231 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_RF
,
232 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128
},
233 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_RG
,
234 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128
},
235 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_RK
,
236 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pci
},
237 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_RL
,
238 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128
},
239 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_SE
,
240 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128
},
241 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_SF
,
242 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_pci
},
243 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_SG
,
244 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128
},
245 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_SH
,
246 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128
},
247 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_SK
,
248 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128
},
249 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_SL
,
250 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128
},
251 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_SM
,
252 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128
},
253 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_SN
,
254 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128
},
255 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_TF
,
256 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_ultra
},
257 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_TL
,
258 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_ultra
},
259 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_TR
,
260 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_ultra
},
261 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_TS
,
262 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_ultra
},
263 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_TT
,
264 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_ultra
},
265 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_RAGE128_TU
,
266 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, rage_128_ultra
},
270 MODULE_DEVICE_TABLE(pci
, aty128_pci_tbl
);
272 static struct pci_driver aty128fb_driver
= {
274 .id_table
= aty128_pci_tbl
,
275 .probe
= aty128_probe
,
276 .remove
= __devexit_p(aty128_remove
),
277 .suspend
= aty128_pci_suspend
,
278 .resume
= aty128_pci_resume
,
281 /* packed BIOS settings */
286 u8 accelerator_entry
;
288 u16 VGA_table_offset
;
289 u16 POST_table_offset
;
295 u16 PCLK_ref_divider
;
299 u16 MCLK_ref_divider
;
303 u16 XCLK_ref_divider
;
306 } __attribute__ ((packed
)) PLL_BLOCK
;
307 #endif /* !CONFIG_PPC */
309 /* onboard memory information */
310 struct aty128_meminfo
{
324 /* various memory configurations */
325 static const struct aty128_meminfo sdr_128
=
326 { 4, 4, 3, 3, 1, 3, 1, 16, 30, 16, "128-bit SDR SGRAM (1:1)" };
327 static const struct aty128_meminfo sdr_64
=
328 { 4, 8, 3, 3, 1, 3, 1, 17, 46, 17, "64-bit SDR SGRAM (1:1)" };
329 static const struct aty128_meminfo sdr_sgram
=
330 { 4, 4, 1, 2, 1, 2, 1, 16, 24, 16, "64-bit SDR SGRAM (2:1)" };
331 static const struct aty128_meminfo ddr_sgram
=
332 { 4, 4, 3, 3, 2, 3, 1, 16, 31, 16, "64-bit DDR SGRAM" };
334 static struct fb_fix_screeninfo aty128fb_fix __initdata
= {
336 .type
= FB_TYPE_PACKED_PIXELS
,
337 .visual
= FB_VISUAL_PSEUDOCOLOR
,
341 .accel
= FB_ACCEL_ATI_RAGE128
,
344 static char *mode_option __initdata
= NULL
;
346 #ifdef CONFIG_PPC_PMAC
347 static int default_vmode __initdata
= VMODE_1024_768_60
;
348 static int default_cmode __initdata
= CMODE_8
;
351 #ifdef CONFIG_PMAC_PBOOK
352 static int default_crt_on __initdata
= 0;
353 static int default_lcd_on __initdata
= 1;
361 struct aty128_constants
{
373 u32 h_total
, h_sync_strt_wid
;
374 u32 v_total
, v_sync_strt_wid
;
376 u32 offset
, offset_cntl
;
377 u32 xoffset
, yoffset
;
384 u32 feedback_divider
;
388 struct aty128_ddafifo
{
393 /* register values for a specific mode */
394 struct aty128fb_par
{
395 struct aty128_crtc crtc
;
396 struct aty128_pll pll
;
397 struct aty128_ddafifo fifo_reg
;
399 struct aty128_constants constants
; /* PLL and others */
400 void *regbase
; /* remapped mmio */
401 u32 vram_size
; /* onboard video ram */
403 const struct aty128_meminfo
*mem
; /* onboard mem info */
405 struct { int vram
; int vram_valid
; } mtrr
;
407 int blitter_may_be_busy
;
408 int fifo_slots
; /* free slots in FIFO (64 max) */
412 struct pci_dev
*pdev
;
413 struct fb_info
*next
;
417 u8 red
[32]; /* see aty128fb_setcolreg */
420 u32 pseudo_palette
[16]; /* used for TRUECOLOR */
424 #define round_div(n, d) ((n+(d/2))/d)
427 * Interface used by the world
429 int aty128fb_init(void);
431 static int aty128fb_check_var(struct fb_var_screeninfo
*var
,
432 struct fb_info
*info
);
433 static int aty128fb_set_par(struct fb_info
*info
);
434 static int aty128fb_setcolreg(u_int regno
, u_int red
, u_int green
, u_int blue
,
435 u_int transp
, struct fb_info
*info
);
436 static int aty128fb_pan_display(struct fb_var_screeninfo
*var
,
438 static int aty128fb_blank(int blank
, struct fb_info
*fb
);
439 static int aty128fb_ioctl(struct inode
*inode
, struct file
*file
, u_int cmd
,
440 u_long arg
, struct fb_info
*info
);
441 static int aty128fb_sync(struct fb_info
*info
);
447 static int aty128_encode_var(struct fb_var_screeninfo
*var
,
448 const struct aty128fb_par
*par
);
449 static int aty128_decode_var(struct fb_var_screeninfo
*var
,
450 struct aty128fb_par
*par
);
452 static void __init
aty128_get_pllinfo(struct aty128fb_par
*par
,
454 static void __init
*aty128_map_ROM(struct pci_dev
*pdev
, const struct aty128fb_par
*par
);
455 static void __init
aty128_unmap_ROM(struct pci_dev
*dev
, void * rom
);
457 static void aty128_timings(struct aty128fb_par
*par
);
458 static void aty128_init_engine(struct aty128fb_par
*par
);
459 static void aty128_reset_engine(const struct aty128fb_par
*par
);
460 static void aty128_flush_pixel_cache(const struct aty128fb_par
*par
);
461 static void do_wait_for_fifo(u16 entries
, struct aty128fb_par
*par
);
462 static void wait_for_fifo(u16 entries
, struct aty128fb_par
*par
);
463 static void wait_for_idle(struct aty128fb_par
*par
);
464 static u32
depth_to_dst(u32 depth
);
466 #define BIOS_IN8(v) (readb(bios + (v)))
467 #define BIOS_IN16(v) (readb(bios + (v)) | \
468 (readb(bios + (v) + 1) << 8))
469 #define BIOS_IN32(v) (readb(bios + (v)) | \
470 (readb(bios + (v) + 1) << 8) | \
471 (readb(bios + (v) + 2) << 16) | \
472 (readb(bios + (v) + 3) << 24))
475 static struct fb_ops aty128fb_ops
= {
476 .owner
= THIS_MODULE
,
477 .fb_check_var
= aty128fb_check_var
,
478 .fb_set_par
= aty128fb_set_par
,
479 .fb_setcolreg
= aty128fb_setcolreg
,
480 .fb_pan_display
= aty128fb_pan_display
,
481 .fb_blank
= aty128fb_blank
,
482 .fb_ioctl
= aty128fb_ioctl
,
483 .fb_sync
= aty128fb_sync
,
484 .fb_fillrect
= cfb_fillrect
,
485 .fb_copyarea
= cfb_copyarea
,
486 .fb_imageblit
= cfb_imageblit
,
487 .fb_cursor
= soft_cursor
,
490 #ifdef CONFIG_PMAC_BACKLIGHT
491 static int aty128_set_backlight_enable(int on
, int level
, void* data
);
492 static int aty128_set_backlight_level(int level
, void* data
);
494 static struct backlight_controller aty128_backlight_controller
= {
495 aty128_set_backlight_enable
,
496 aty128_set_backlight_level
498 #endif /* CONFIG_PMAC_BACKLIGHT */
501 * Functions to read from/write to the mmio registers
502 * - endian conversions may possibly be avoided by
503 * using the other register aperture. TODO.
505 static inline u32
_aty_ld_le32(volatile unsigned int regindex
,
506 const struct aty128fb_par
*par
)
508 return readl (par
->regbase
+ regindex
);
511 static inline void _aty_st_le32(volatile unsigned int regindex
, u32 val
,
512 const struct aty128fb_par
*par
)
514 writel (val
, par
->regbase
+ regindex
);
517 static inline u8
_aty_ld_8(unsigned int regindex
,
518 const struct aty128fb_par
*par
)
520 return readb (par
->regbase
+ regindex
);
523 static inline void _aty_st_8(unsigned int regindex
, u8 val
,
524 const struct aty128fb_par
*par
)
526 writeb (val
, par
->regbase
+ regindex
);
529 #define aty_ld_le32(regindex) _aty_ld_le32(regindex, par)
530 #define aty_st_le32(regindex, val) _aty_st_le32(regindex, val, par)
531 #define aty_ld_8(regindex) _aty_ld_8(regindex, par)
532 #define aty_st_8(regindex, val) _aty_st_8(regindex, val, par)
535 * Functions to read from/write to the pll registers
538 #define aty_ld_pll(pll_index) _aty_ld_pll(pll_index, par)
539 #define aty_st_pll(pll_index, val) _aty_st_pll(pll_index, val, par)
542 static u32
_aty_ld_pll(unsigned int pll_index
,
543 const struct aty128fb_par
*par
)
545 aty_st_8(CLOCK_CNTL_INDEX
, pll_index
& 0x3F);
546 return aty_ld_le32(CLOCK_CNTL_DATA
);
550 static void _aty_st_pll(unsigned int pll_index
, u32 val
,
551 const struct aty128fb_par
*par
)
553 aty_st_8(CLOCK_CNTL_INDEX
, (pll_index
& 0x3F) | PLL_WR_EN
);
554 aty_st_le32(CLOCK_CNTL_DATA
, val
);
558 /* return true when the PLL has completed an atomic update */
559 static int aty_pll_readupdate(const struct aty128fb_par
*par
)
561 return !(aty_ld_pll(PPLL_REF_DIV
) & PPLL_ATOMIC_UPDATE_R
);
565 static void aty_pll_wait_readupdate(const struct aty128fb_par
*par
)
567 unsigned long timeout
= jiffies
+ HZ
/100; // should be more than enough
570 while (time_before(jiffies
, timeout
))
571 if (aty_pll_readupdate(par
)) {
576 if (reset
) /* reset engine?? */
577 printk(KERN_DEBUG
"aty128fb: PLL write timeout!\n");
581 /* tell PLL to update */
582 static void aty_pll_writeupdate(const struct aty128fb_par
*par
)
584 aty_pll_wait_readupdate(par
);
586 aty_st_pll(PPLL_REF_DIV
,
587 aty_ld_pll(PPLL_REF_DIV
) | PPLL_ATOMIC_UPDATE_W
);
591 /* write to the scratch register to test r/w functionality */
592 static int __init
register_test(const struct aty128fb_par
*par
)
597 val
= aty_ld_le32(BIOS_0_SCRATCH
);
599 aty_st_le32(BIOS_0_SCRATCH
, 0x55555555);
600 if (aty_ld_le32(BIOS_0_SCRATCH
) == 0x55555555) {
601 aty_st_le32(BIOS_0_SCRATCH
, 0xAAAAAAAA);
603 if (aty_ld_le32(BIOS_0_SCRATCH
) == 0xAAAAAAAA)
607 aty_st_le32(BIOS_0_SCRATCH
, val
); // restore value
613 * Accelerator engine functions
615 static void do_wait_for_fifo(u16 entries
, struct aty128fb_par
*par
)
620 for (i
= 0; i
< 2000000; i
++) {
621 par
->fifo_slots
= aty_ld_le32(GUI_STAT
) & 0x0fff;
622 if (par
->fifo_slots
>= entries
)
625 aty128_reset_engine(par
);
630 static void wait_for_idle(struct aty128fb_par
*par
)
634 do_wait_for_fifo(64, par
);
637 for (i
= 0; i
< 2000000; i
++) {
638 if (!(aty_ld_le32(GUI_STAT
) & (1 << 31))) {
639 aty128_flush_pixel_cache(par
);
640 par
->blitter_may_be_busy
= 0;
644 aty128_reset_engine(par
);
649 static void wait_for_fifo(u16 entries
, struct aty128fb_par
*par
)
651 if (par
->fifo_slots
< entries
)
652 do_wait_for_fifo(64, par
);
653 par
->fifo_slots
-= entries
;
657 static void aty128_flush_pixel_cache(const struct aty128fb_par
*par
)
662 tmp
= aty_ld_le32(PC_NGUI_CTLSTAT
);
665 aty_st_le32(PC_NGUI_CTLSTAT
, tmp
);
667 for (i
= 0; i
< 2000000; i
++)
668 if (!(aty_ld_le32(PC_NGUI_CTLSTAT
) & PC_BUSY
))
673 static void aty128_reset_engine(const struct aty128fb_par
*par
)
675 u32 gen_reset_cntl
, clock_cntl_index
, mclk_cntl
;
677 aty128_flush_pixel_cache(par
);
679 clock_cntl_index
= aty_ld_le32(CLOCK_CNTL_INDEX
);
680 mclk_cntl
= aty_ld_pll(MCLK_CNTL
);
682 aty_st_pll(MCLK_CNTL
, mclk_cntl
| 0x00030000);
684 gen_reset_cntl
= aty_ld_le32(GEN_RESET_CNTL
);
685 aty_st_le32(GEN_RESET_CNTL
, gen_reset_cntl
| SOFT_RESET_GUI
);
686 aty_ld_le32(GEN_RESET_CNTL
);
687 aty_st_le32(GEN_RESET_CNTL
, gen_reset_cntl
& ~(SOFT_RESET_GUI
));
688 aty_ld_le32(GEN_RESET_CNTL
);
690 aty_st_pll(MCLK_CNTL
, mclk_cntl
);
691 aty_st_le32(CLOCK_CNTL_INDEX
, clock_cntl_index
);
692 aty_st_le32(GEN_RESET_CNTL
, gen_reset_cntl
);
694 /* use old pio mode */
695 aty_st_le32(PM4_BUFFER_CNTL
, PM4_BUFFER_CNTL_NONPM4
);
701 static void aty128_init_engine(struct aty128fb_par
*par
)
707 /* 3D scaler not spoken here */
708 wait_for_fifo(1, par
);
709 aty_st_le32(SCALE_3D_CNTL
, 0x00000000);
711 aty128_reset_engine(par
);
713 pitch_value
= par
->crtc
.pitch
;
714 if (par
->crtc
.bpp
== 24) {
715 pitch_value
= pitch_value
* 3;
718 wait_for_fifo(4, par
);
719 /* setup engine offset registers */
720 aty_st_le32(DEFAULT_OFFSET
, 0x00000000);
722 /* setup engine pitch registers */
723 aty_st_le32(DEFAULT_PITCH
, pitch_value
);
725 /* set the default scissor register to max dimensions */
726 aty_st_le32(DEFAULT_SC_BOTTOM_RIGHT
, (0x1FFF << 16) | 0x1FFF);
728 /* set the drawing controls registers */
729 aty_st_le32(DP_GUI_MASTER_CNTL
,
730 GMC_SRC_PITCH_OFFSET_DEFAULT
|
731 GMC_DST_PITCH_OFFSET_DEFAULT
|
732 GMC_SRC_CLIP_DEFAULT
|
733 GMC_DST_CLIP_DEFAULT
|
734 GMC_BRUSH_SOLIDCOLOR
|
735 (depth_to_dst(par
->crtc
.depth
) << 8) |
737 GMC_BYTE_ORDER_MSB_TO_LSB
|
738 GMC_DP_CONVERSION_TEMP_6500
|
742 GMC_DST_CLR_CMP_FCN_CLEAR
|
746 wait_for_fifo(8, par
);
747 /* clear the line drawing registers */
748 aty_st_le32(DST_BRES_ERR
, 0);
749 aty_st_le32(DST_BRES_INC
, 0);
750 aty_st_le32(DST_BRES_DEC
, 0);
752 /* set brush color registers */
753 aty_st_le32(DP_BRUSH_FRGD_CLR
, 0xFFFFFFFF); /* white */
754 aty_st_le32(DP_BRUSH_BKGD_CLR
, 0x00000000); /* black */
756 /* set source color registers */
757 aty_st_le32(DP_SRC_FRGD_CLR
, 0xFFFFFFFF); /* white */
758 aty_st_le32(DP_SRC_BKGD_CLR
, 0x00000000); /* black */
760 /* default write mask */
761 aty_st_le32(DP_WRITE_MASK
, 0xFFFFFFFF);
763 /* Wait for all the writes to be completed before returning */
768 /* convert depth values to their register representation */
769 static u32
depth_to_dst(u32 depth
)
773 else if (depth
<= 15)
775 else if (depth
== 16)
777 else if (depth
<= 24)
779 else if (depth
<= 32)
786 * PLL informations retreival
791 static void __init
aty128_unmap_ROM(struct pci_dev
*dev
, void * rom
)
793 struct resource
*r
= &dev
->resource
[PCI_ROM_RESOURCE
];
797 /* Release the ROM resource if we used it in the first place */
798 if (r
->parent
&& r
->flags
& PCI_ROM_ADDRESS_ENABLE
) {
800 r
->flags
&= ~PCI_ROM_ADDRESS_ENABLE
;
804 /* This will disable and set address to unassigned */
805 pci_write_config_dword(dev
, dev
->rom_base_reg
, 0);
809 static void * __init
aty128_map_ROM(const struct aty128fb_par
*par
, struct pci_dev
*dev
)
816 /* Fix from ATI for problem with Rage128 hardware not leaving ROM enabled */
818 temp
= aty_ld_le32(RAGE128_MPP_TB_CONFIG
);
821 aty_st_le32(RAGE128_MPP_TB_CONFIG
, temp
);
822 temp
= aty_ld_le32(RAGE128_MPP_TB_CONFIG
);
824 /* no need to search for the ROM, just ask the card where it is. */
825 r
= &dev
->resource
[PCI_ROM_RESOURCE
];
827 /* assign the ROM an address if it doesn't have one */
828 if (r
->parent
== NULL
)
829 pci_assign_resource(dev
, PCI_ROM_RESOURCE
);
831 /* enable if needed */
832 if (!(r
->flags
& PCI_ROM_ADDRESS_ENABLE
)) {
833 pci_write_config_dword(dev
, dev
->rom_base_reg
,
834 r
->start
| PCI_ROM_ADDRESS_ENABLE
);
835 r
->flags
|= PCI_ROM_ADDRESS_ENABLE
;
838 bios
= ioremap(r
->start
, r
->end
- r
->start
+ 1);
840 printk(KERN_ERR
"aty128fb: ROM failed to map\n");
844 /* Very simple test to make sure it appeared */
845 if (BIOS_IN16(0) != 0xaa55) {
846 printk(KERN_ERR
"aty128fb: Invalid ROM signature %x should be 0xaa55\n",
851 /* Look for the PCI data to check the ROM type */
852 dptr
= BIOS_IN16(0x18);
854 /* Check the PCI data signature. If it's wrong, we still assume a normal x86 ROM
855 * for now, until I've verified this works everywhere. The goal here is more
856 * to phase out Open Firmware images.
858 * Currently, we only look at the first PCI data, we could iteratre and deal with
859 * them all, and we should use fb_bios_start relative to start of image and not
860 * relative start of ROM, but so far, I never found a dual-image ATI card
863 * u32 signature; + 0x00
866 * u16 reserved_1; + 0x08
868 * u8 drevision; + 0x0c
869 * u8 class_hi; + 0x0d
870 * u16 class_lo; + 0x0e
872 * u16 irevision; + 0x12
874 * u8 indicator; + 0x15
875 * u16 reserved_2; + 0x16
878 if (BIOS_IN32(dptr
) != (('R' << 24) | ('I' << 16) | ('C' << 8) | 'P')) {
879 printk(KERN_WARNING
"aty128fb: PCI DATA signature in ROM incorrect: %08x\n",
883 rom_type
= BIOS_IN8(dptr
+ 0x14);
886 printk(KERN_INFO
"aty128fb: Found Intel x86 BIOS ROM Image\n");
889 printk(KERN_INFO
"aty128fb: Found Open Firmware ROM Image\n");
892 printk(KERN_INFO
"aty128fb: Found HP PA-RISC ROM Image\n");
895 printk(KERN_INFO
"aty128fb: Found unknown type %d ROM Image\n", rom_type
);
902 aty128_unmap_ROM(dev
, bios
);
906 static void __init
aty128_get_pllinfo(struct aty128fb_par
*par
, unsigned char *bios
)
908 unsigned int bios_hdr
;
909 unsigned int bios_pll
;
911 bios_hdr
= BIOS_IN16(0x48);
912 bios_pll
= BIOS_IN16(bios_hdr
+ 0x30);
914 par
->constants
.ppll_max
= BIOS_IN32(bios_pll
+ 0x16);
915 par
->constants
.ppll_min
= BIOS_IN32(bios_pll
+ 0x12);
916 par
->constants
.xclk
= BIOS_IN16(bios_pll
+ 0x08);
917 par
->constants
.ref_divider
= BIOS_IN16(bios_pll
+ 0x10);
918 par
->constants
.ref_clk
= BIOS_IN16(bios_pll
+ 0x0e);
920 DBG("ppll_max %d ppll_min %d xclk %d ref_divider %d ref clock %d\n",
921 par
->constants
.ppll_max
, par
->constants
.ppll_min
,
922 par
->constants
.xclk
, par
->constants
.ref_divider
,
923 par
->constants
.ref_clk
);
928 static void * __devinit
aty128_find_mem_vbios(struct aty128fb_par
*par
)
930 /* I simplified this code as we used to miss the signatures in
931 * a lot of case. It's now closer to XFree, we just don't check
932 * for signatures at all... Something better will have to be done
933 * if we end up having conflicts
936 unsigned char *rom_base
= NULL
;
938 for (segstart
=0x000c0000; segstart
<0x000f0000; segstart
+=0x00001000) {
939 rom_base
= (char *)ioremap(segstart
, 0x10000);
940 if (rom_base
== NULL
)
942 if ((*rom_base
== 0x55) && (((*(rom_base
+ 1)) & 0xff) == 0xaa))
950 #endif /* ndef(__sparc__) */
952 /* fill in known card constants if pll_block is not available */
953 static void __init
aty128_timings(struct aty128fb_par
*par
)
956 /* instead of a table lookup, assume OF has properly
957 * setup the PLL registers and use their values
958 * to set the XCLK values and reference divider values */
960 u32 x_mpll_ref_fb_div
;
963 unsigned PostDivSet
[] = { 0, 1, 2, 4, 8, 3, 6, 12 };
966 if (!par
->constants
.ref_clk
)
967 par
->constants
.ref_clk
= 2950;
970 x_mpll_ref_fb_div
= aty_ld_pll(X_MPLL_REF_FB_DIV
);
971 xclk_cntl
= aty_ld_pll(XCLK_CNTL
) & 0x7;
972 Nx
= (x_mpll_ref_fb_div
& 0x00ff00) >> 8;
973 M
= x_mpll_ref_fb_div
& 0x0000ff;
975 par
->constants
.xclk
= round_div((2 * Nx
* par
->constants
.ref_clk
),
976 (M
* PostDivSet
[xclk_cntl
]));
978 par
->constants
.ref_divider
=
979 aty_ld_pll(PPLL_REF_DIV
) & PPLL_REF_DIV_MASK
;
982 if (!par
->constants
.ref_divider
) {
983 par
->constants
.ref_divider
= 0x3b;
985 aty_st_pll(X_MPLL_REF_FB_DIV
, 0x004c4c1e);
986 aty_pll_writeupdate(par
);
988 aty_st_pll(PPLL_REF_DIV
, par
->constants
.ref_divider
);
989 aty_pll_writeupdate(par
);
991 /* from documentation */
992 if (!par
->constants
.ppll_min
)
993 par
->constants
.ppll_min
= 12500;
994 if (!par
->constants
.ppll_max
)
995 par
->constants
.ppll_max
= 25000; /* 23000 on some cards? */
996 if (!par
->constants
.xclk
)
997 par
->constants
.xclk
= 0x1d4d; /* same as mclk */
999 par
->constants
.fifo_width
= 128;
1000 par
->constants
.fifo_depth
= 32;
1002 switch (aty_ld_le32(MEM_CNTL
) & 0x3) {
1004 par
->mem
= &sdr_128
;
1007 par
->mem
= &sdr_sgram
;
1010 par
->mem
= &ddr_sgram
;
1013 par
->mem
= &sdr_sgram
;
1023 /* Program the CRTC registers */
1024 static void aty128_set_crtc(const struct aty128_crtc
*crtc
,
1025 const struct aty128fb_par
*par
)
1027 aty_st_le32(CRTC_GEN_CNTL
, crtc
->gen_cntl
);
1028 aty_st_le32(CRTC_H_TOTAL_DISP
, crtc
->h_total
);
1029 aty_st_le32(CRTC_H_SYNC_STRT_WID
, crtc
->h_sync_strt_wid
);
1030 aty_st_le32(CRTC_V_TOTAL_DISP
, crtc
->v_total
);
1031 aty_st_le32(CRTC_V_SYNC_STRT_WID
, crtc
->v_sync_strt_wid
);
1032 aty_st_le32(CRTC_PITCH
, crtc
->pitch
);
1033 aty_st_le32(CRTC_OFFSET
, crtc
->offset
);
1034 aty_st_le32(CRTC_OFFSET_CNTL
, crtc
->offset_cntl
);
1035 /* Disable ATOMIC updating. Is this the right place? */
1036 aty_st_pll(PPLL_CNTL
, aty_ld_pll(PPLL_CNTL
) & ~(0x00030000));
1040 static int aty128_var_to_crtc(const struct fb_var_screeninfo
*var
,
1041 struct aty128_crtc
*crtc
,
1042 const struct aty128fb_par
*par
)
1044 u32 xres
, yres
, vxres
, vyres
, xoffset
, yoffset
, bpp
, dst
;
1045 u32 left
, right
, upper
, lower
, hslen
, vslen
, sync
, vmode
;
1046 u32 h_total
, h_disp
, h_sync_strt
, h_sync_wid
, h_sync_pol
;
1047 u32 v_total
, v_disp
, v_sync_strt
, v_sync_wid
, v_sync_pol
, c_sync
;
1049 u8 mode_bytpp
[7] = { 0, 0, 1, 2, 2, 3, 4 };
1054 vxres
= var
->xres_virtual
;
1055 vyres
= var
->yres_virtual
;
1056 xoffset
= var
->xoffset
;
1057 yoffset
= var
->yoffset
;
1058 bpp
= var
->bits_per_pixel
;
1059 left
= var
->left_margin
;
1060 right
= var
->right_margin
;
1061 upper
= var
->upper_margin
;
1062 lower
= var
->lower_margin
;
1063 hslen
= var
->hsync_len
;
1064 vslen
= var
->vsync_len
;
1071 depth
= (var
->green
.length
== 6) ? 16 : 15;
1073 /* check for mode eligibility
1074 * accept only non interlaced modes */
1075 if ((vmode
& FB_VMODE_MASK
) != FB_VMODE_NONINTERLACED
)
1078 /* convert (and round up) and validate */
1079 xres
= (xres
+ 7) & ~7;
1080 xoffset
= (xoffset
+ 7) & ~7;
1082 if (vxres
< xres
+ xoffset
)
1083 vxres
= xres
+ xoffset
;
1085 if (vyres
< yres
+ yoffset
)
1086 vyres
= yres
+ yoffset
;
1088 /* convert depth into ATI register depth */
1089 dst
= depth_to_dst(depth
);
1091 if (dst
== -EINVAL
) {
1092 printk(KERN_ERR
"aty128fb: Invalid depth or RGBA\n");
1096 /* convert register depth to bytes per pixel */
1097 bytpp
= mode_bytpp
[dst
];
1099 /* make sure there is enough video ram for the mode */
1100 if ((u32
)(vxres
* vyres
* bytpp
) > par
->vram_size
) {
1101 printk(KERN_ERR
"aty128fb: Not enough memory for mode\n");
1105 h_disp
= (xres
>> 3) - 1;
1106 h_total
= (((xres
+ right
+ hslen
+ left
) >> 3) - 1) & 0xFFFFL
;
1109 v_total
= (yres
+ upper
+ vslen
+ lower
- 1) & 0xFFFFL
;
1111 /* check to make sure h_total and v_total are in range */
1112 if (((h_total
>> 3) - 1) > 0x1ff || (v_total
- 1) > 0x7FF) {
1113 printk(KERN_ERR
"aty128fb: invalid width ranges\n");
1117 h_sync_wid
= (hslen
+ 7) >> 3;
1118 if (h_sync_wid
== 0)
1120 else if (h_sync_wid
> 0x3f) /* 0x3f = max hwidth */
1123 h_sync_strt
= (h_disp
<< 3) + right
;
1126 if (v_sync_wid
== 0)
1128 else if (v_sync_wid
> 0x1f) /* 0x1f = max vwidth */
1131 v_sync_strt
= v_disp
+ lower
;
1133 h_sync_pol
= sync
& FB_SYNC_HOR_HIGH_ACT
? 0 : 1;
1134 v_sync_pol
= sync
& FB_SYNC_VERT_HIGH_ACT
? 0 : 1;
1136 c_sync
= sync
& FB_SYNC_COMP_HIGH_ACT
? (1 << 4) : 0;
1138 crtc
->gen_cntl
= 0x3000000L
| c_sync
| (dst
<< 8);
1140 crtc
->h_total
= h_total
| (h_disp
<< 16);
1141 crtc
->v_total
= v_total
| (v_disp
<< 16);
1143 crtc
->h_sync_strt_wid
= h_sync_strt
| (h_sync_wid
<< 16) |
1145 crtc
->v_sync_strt_wid
= v_sync_strt
| (v_sync_wid
<< 16) |
1148 crtc
->pitch
= vxres
>> 3;
1152 if ((var
->activate
& FB_ACTIVATE_MASK
) == FB_ACTIVATE_NOW
)
1153 crtc
->offset_cntl
= 0x00010000;
1155 crtc
->offset_cntl
= 0;
1157 crtc
->vxres
= vxres
;
1158 crtc
->vyres
= vyres
;
1159 crtc
->xoffset
= xoffset
;
1160 crtc
->yoffset
= yoffset
;
1161 crtc
->depth
= depth
;
1168 static int aty128_pix_width_to_var(int pix_width
, struct fb_var_screeninfo
*var
)
1171 /* fill in pixel info */
1172 var
->red
.msb_right
= 0;
1173 var
->green
.msb_right
= 0;
1174 var
->blue
.offset
= 0;
1175 var
->blue
.msb_right
= 0;
1176 var
->transp
.offset
= 0;
1177 var
->transp
.length
= 0;
1178 var
->transp
.msb_right
= 0;
1179 switch (pix_width
) {
1180 case CRTC_PIX_WIDTH_8BPP
:
1181 var
->bits_per_pixel
= 8;
1182 var
->red
.offset
= 0;
1183 var
->red
.length
= 8;
1184 var
->green
.offset
= 0;
1185 var
->green
.length
= 8;
1186 var
->blue
.length
= 8;
1188 case CRTC_PIX_WIDTH_15BPP
:
1189 var
->bits_per_pixel
= 16;
1190 var
->red
.offset
= 10;
1191 var
->red
.length
= 5;
1192 var
->green
.offset
= 5;
1193 var
->green
.length
= 5;
1194 var
->blue
.length
= 5;
1196 case CRTC_PIX_WIDTH_16BPP
:
1197 var
->bits_per_pixel
= 16;
1198 var
->red
.offset
= 11;
1199 var
->red
.length
= 5;
1200 var
->green
.offset
= 5;
1201 var
->green
.length
= 6;
1202 var
->blue
.length
= 5;
1204 case CRTC_PIX_WIDTH_24BPP
:
1205 var
->bits_per_pixel
= 24;
1206 var
->red
.offset
= 16;
1207 var
->red
.length
= 8;
1208 var
->green
.offset
= 8;
1209 var
->green
.length
= 8;
1210 var
->blue
.length
= 8;
1212 case CRTC_PIX_WIDTH_32BPP
:
1213 var
->bits_per_pixel
= 32;
1214 var
->red
.offset
= 16;
1215 var
->red
.length
= 8;
1216 var
->green
.offset
= 8;
1217 var
->green
.length
= 8;
1218 var
->blue
.length
= 8;
1219 var
->transp
.offset
= 24;
1220 var
->transp
.length
= 8;
1223 printk(KERN_ERR
"aty128fb: Invalid pixel width\n");
1231 static int aty128_crtc_to_var(const struct aty128_crtc
*crtc
,
1232 struct fb_var_screeninfo
*var
)
1234 u32 xres
, yres
, left
, right
, upper
, lower
, hslen
, vslen
, sync
;
1235 u32 h_total
, h_disp
, h_sync_strt
, h_sync_dly
, h_sync_wid
, h_sync_pol
;
1236 u32 v_total
, v_disp
, v_sync_strt
, v_sync_wid
, v_sync_pol
, c_sync
;
1239 /* fun with masking */
1240 h_total
= crtc
->h_total
& 0x1ff;
1241 h_disp
= (crtc
->h_total
>> 16) & 0xff;
1242 h_sync_strt
= (crtc
->h_sync_strt_wid
>> 3) & 0x1ff;
1243 h_sync_dly
= crtc
->h_sync_strt_wid
& 0x7;
1244 h_sync_wid
= (crtc
->h_sync_strt_wid
>> 16) & 0x3f;
1245 h_sync_pol
= (crtc
->h_sync_strt_wid
>> 23) & 0x1;
1246 v_total
= crtc
->v_total
& 0x7ff;
1247 v_disp
= (crtc
->v_total
>> 16) & 0x7ff;
1248 v_sync_strt
= crtc
->v_sync_strt_wid
& 0x7ff;
1249 v_sync_wid
= (crtc
->v_sync_strt_wid
>> 16) & 0x1f;
1250 v_sync_pol
= (crtc
->v_sync_strt_wid
>> 23) & 0x1;
1251 c_sync
= crtc
->gen_cntl
& CRTC_CSYNC_EN
? 1 : 0;
1252 pix_width
= crtc
->gen_cntl
& CRTC_PIX_WIDTH_MASK
;
1254 /* do conversions */
1255 xres
= (h_disp
+ 1) << 3;
1257 left
= ((h_total
- h_sync_strt
- h_sync_wid
) << 3) - h_sync_dly
;
1258 right
= ((h_sync_strt
- h_disp
) << 3) + h_sync_dly
;
1259 hslen
= h_sync_wid
<< 3;
1260 upper
= v_total
- v_sync_strt
- v_sync_wid
;
1261 lower
= v_sync_strt
- v_disp
;
1263 sync
= (h_sync_pol
? 0 : FB_SYNC_HOR_HIGH_ACT
) |
1264 (v_sync_pol
? 0 : FB_SYNC_VERT_HIGH_ACT
) |
1265 (c_sync
? FB_SYNC_COMP_HIGH_ACT
: 0);
1267 aty128_pix_width_to_var(pix_width
, var
);
1271 var
->xres_virtual
= crtc
->vxres
;
1272 var
->yres_virtual
= crtc
->vyres
;
1273 var
->xoffset
= crtc
->xoffset
;
1274 var
->yoffset
= crtc
->yoffset
;
1275 var
->left_margin
= left
;
1276 var
->right_margin
= right
;
1277 var
->upper_margin
= upper
;
1278 var
->lower_margin
= lower
;
1279 var
->hsync_len
= hslen
;
1280 var
->vsync_len
= vslen
;
1282 var
->vmode
= FB_VMODE_NONINTERLACED
;
1287 #ifdef CONFIG_PMAC_PBOOK
1288 static void aty128_set_crt_enable(struct aty128fb_par
*par
, int on
)
1291 aty_st_le32(CRTC_EXT_CNTL
, aty_ld_le32(CRTC_EXT_CNTL
) | CRT_CRTC_ON
);
1292 aty_st_le32(DAC_CNTL
, (aty_ld_le32(DAC_CNTL
) | DAC_PALETTE2_SNOOP_EN
));
1294 aty_st_le32(CRTC_EXT_CNTL
, aty_ld_le32(CRTC_EXT_CNTL
) & ~CRT_CRTC_ON
);
1297 static void aty128_set_lcd_enable(struct aty128fb_par
*par
, int on
)
1302 reg
= aty_ld_le32(LVDS_GEN_CNTL
);
1303 reg
|= LVDS_ON
| LVDS_EN
| LVDS_BLON
| LVDS_DIGION
;
1304 reg
&= ~LVDS_DISPLAY_DIS
;
1305 aty_st_le32(LVDS_GEN_CNTL
, reg
);
1306 #ifdef CONFIG_PMAC_BACKLIGHT
1307 aty128_set_backlight_enable(get_backlight_enable(),
1308 get_backlight_level(), par
);
1311 #ifdef CONFIG_PMAC_BACKLIGHT
1312 aty128_set_backlight_enable(0, 0, par
);
1314 reg
= aty_ld_le32(LVDS_GEN_CNTL
);
1315 reg
|= LVDS_DISPLAY_DIS
;
1316 aty_st_le32(LVDS_GEN_CNTL
, reg
);
1318 reg
&= ~(LVDS_ON
/*| LVDS_EN*/);
1319 aty_st_le32(LVDS_GEN_CNTL
, reg
);
1322 #endif /* CONFIG_PMAC_PBOOK */
1324 static void aty128_set_pll(struct aty128_pll
*pll
, const struct aty128fb_par
*par
)
1328 unsigned char post_conv
[] = /* register values for post dividers */
1329 { 2, 0, 1, 4, 2, 2, 6, 2, 3, 2, 2, 2, 7 };
1331 /* select PPLL_DIV_3 */
1332 aty_st_le32(CLOCK_CNTL_INDEX
, aty_ld_le32(CLOCK_CNTL_INDEX
) | (3 << 8));
1335 aty_st_pll(PPLL_CNTL
,
1336 aty_ld_pll(PPLL_CNTL
) | PPLL_RESET
| PPLL_ATOMIC_UPDATE_EN
);
1338 /* write the reference divider */
1339 aty_pll_wait_readupdate(par
);
1340 aty_st_pll(PPLL_REF_DIV
, par
->constants
.ref_divider
& 0x3ff);
1341 aty_pll_writeupdate(par
);
1343 div3
= aty_ld_pll(PPLL_DIV_3
);
1344 div3
&= ~PPLL_FB3_DIV_MASK
;
1345 div3
|= pll
->feedback_divider
;
1346 div3
&= ~PPLL_POST3_DIV_MASK
;
1347 div3
|= post_conv
[pll
->post_divider
] << 16;
1349 /* write feedback and post dividers */
1350 aty_pll_wait_readupdate(par
);
1351 aty_st_pll(PPLL_DIV_3
, div3
);
1352 aty_pll_writeupdate(par
);
1354 aty_pll_wait_readupdate(par
);
1355 aty_st_pll(HTOTAL_CNTL
, 0); /* no horiz crtc adjustment */
1356 aty_pll_writeupdate(par
);
1358 /* clear the reset, just in case */
1359 aty_st_pll(PPLL_CNTL
, aty_ld_pll(PPLL_CNTL
) & ~PPLL_RESET
);
1363 static int aty128_var_to_pll(u32 period_in_ps
, struct aty128_pll
*pll
,
1364 const struct aty128fb_par
*par
)
1366 const struct aty128_constants c
= par
->constants
;
1367 unsigned char post_dividers
[] = {1,2,4,8,3,6,12};
1369 u32 vclk
; /* in .01 MHz */
1373 vclk
= 100000000 / period_in_ps
; /* convert units to 10 kHz */
1375 /* adjust pixel clock if necessary */
1376 if (vclk
> c
.ppll_max
)
1378 if (vclk
* 12 < c
.ppll_min
)
1379 vclk
= c
.ppll_min
/12;
1381 /* now, find an acceptable divider */
1382 for (i
= 0; i
< sizeof(post_dividers
); i
++) {
1383 output_freq
= post_dividers
[i
] * vclk
;
1384 if (output_freq
>= c
.ppll_min
&& output_freq
<= c
.ppll_max
)
1388 /* calculate feedback divider */
1389 n
= c
.ref_divider
* output_freq
;
1392 pll
->post_divider
= post_dividers
[i
];
1393 pll
->feedback_divider
= round_div(n
, d
);
1396 DBG("post %d feedback %d vlck %d output %d ref_divider %d "
1397 "vclk_per: %d\n", pll
->post_divider
,
1398 pll
->feedback_divider
, vclk
, output_freq
,
1399 c
.ref_divider
, period_in_ps
);
1405 static int aty128_pll_to_var(const struct aty128_pll
*pll
, struct fb_var_screeninfo
*var
)
1407 var
->pixclock
= 100000000 / pll
->vclk
;
1413 static void aty128_set_fifo(const struct aty128_ddafifo
*dsp
,
1414 const struct aty128fb_par
*par
)
1416 aty_st_le32(DDA_CONFIG
, dsp
->dda_config
);
1417 aty_st_le32(DDA_ON_OFF
, dsp
->dda_on_off
);
1421 static int aty128_ddafifo(struct aty128_ddafifo
*dsp
,
1422 const struct aty128_pll
*pll
,
1424 const struct aty128fb_par
*par
)
1426 const struct aty128_meminfo
*m
= par
->mem
;
1427 u32 xclk
= par
->constants
.xclk
;
1428 u32 fifo_width
= par
->constants
.fifo_width
;
1429 u32 fifo_depth
= par
->constants
.fifo_depth
;
1430 s32 x
, b
, p
, ron
, roff
;
1433 /* round up to multiple of 8 */
1434 bpp
= (depth
+7) & ~7;
1436 n
= xclk
* fifo_width
;
1437 d
= pll
->vclk
* bpp
;
1438 x
= round_div(n
, d
);
1441 3 * ((m
->Trcd
- 2 > 0) ? m
->Trcd
- 2 : 0) +
1460 x
= round_div(n
, d
);
1461 roff
= x
* (fifo_depth
- 4);
1463 if ((ron
+ m
->Rloop
) >= roff
) {
1464 printk(KERN_ERR
"aty128fb: Mode out of range!\n");
1468 DBG("p: %x rloop: %x x: %x ron: %x roff: %x\n",
1469 p
, m
->Rloop
, x
, ron
, roff
);
1471 dsp
->dda_config
= p
<< 16 | m
->Rloop
<< 20 | x
;
1472 dsp
->dda_on_off
= ron
<< 16 | roff
;
1479 * This actually sets the video mode.
1481 static int aty128fb_set_par(struct fb_info
*info
)
1483 struct aty128fb_par
*par
= info
->par
;
1487 if ((err
= aty128_decode_var(&info
->var
, par
)) != 0)
1490 if (par
->blitter_may_be_busy
)
1493 /* clear all registers that may interfere with mode setting */
1494 aty_st_le32(OVR_CLR
, 0);
1495 aty_st_le32(OVR_WID_LEFT_RIGHT
, 0);
1496 aty_st_le32(OVR_WID_TOP_BOTTOM
, 0);
1497 aty_st_le32(OV0_SCALE_CNTL
, 0);
1498 aty_st_le32(MPP_TB_CONFIG
, 0);
1499 aty_st_le32(MPP_GP_CONFIG
, 0);
1500 aty_st_le32(SUBPIC_CNTL
, 0);
1501 aty_st_le32(VIPH_CONTROL
, 0);
1502 aty_st_le32(I2C_CNTL_1
, 0); /* turn off i2c */
1503 aty_st_le32(GEN_INT_CNTL
, 0); /* turn off interrupts */
1504 aty_st_le32(CAP0_TRIG_CNTL
, 0);
1505 aty_st_le32(CAP1_TRIG_CNTL
, 0);
1507 aty_st_8(CRTC_EXT_CNTL
+ 1, 4); /* turn video off */
1509 aty128_set_crtc(&par
->crtc
, par
);
1510 aty128_set_pll(&par
->pll
, par
);
1511 aty128_set_fifo(&par
->fifo_reg
, par
);
1513 config
= aty_ld_le32(CONFIG_CNTL
) & ~3;
1515 #if defined(__BIG_ENDIAN)
1516 if (par
->crtc
.bpp
== 32)
1517 config
|= 2; /* make aperture do 32 bit swapping */
1518 else if (par
->crtc
.bpp
== 16)
1519 config
|= 1; /* make aperture do 16 bit swapping */
1522 aty_st_le32(CONFIG_CNTL
, config
);
1523 aty_st_8(CRTC_EXT_CNTL
+ 1, 0); /* turn the video back on */
1525 info
->fix
.line_length
= (par
->crtc
.vxres
* par
->crtc
.bpp
) >> 3;
1526 info
->fix
.visual
= par
->crtc
.bpp
== 8 ? FB_VISUAL_PSEUDOCOLOR
1527 : FB_VISUAL_DIRECTCOLOR
;
1529 #ifdef CONFIG_PMAC_PBOOK
1530 if (par
->chip_gen
== rage_M3
) {
1531 aty128_set_crt_enable(par
, par
->crt_on
);
1532 aty128_set_lcd_enable(par
, par
->lcd_on
);
1535 if (par
->accel_flags
& FB_ACCELF_TEXT
)
1536 aty128_init_engine(par
);
1538 #ifdef CONFIG_BOOTX_TEXT
1539 btext_update_display(info
->fix
.smem_start
,
1540 (((par
->crtc
.h_total
>>16) & 0xff)+1)*8,
1541 ((par
->crtc
.v_total
>>16) & 0x7ff)+1,
1543 par
->crtc
.vxres
*par
->crtc
.bpp
/8);
1544 #endif /* CONFIG_BOOTX_TEXT */
1550 * encode/decode the User Defined Part of the Display
1553 static int aty128_decode_var(struct fb_var_screeninfo
*var
, struct aty128fb_par
*par
)
1556 struct aty128_crtc crtc
;
1557 struct aty128_pll pll
;
1558 struct aty128_ddafifo fifo_reg
;
1560 if ((err
= aty128_var_to_crtc(var
, &crtc
, par
)))
1563 if ((err
= aty128_var_to_pll(var
->pixclock
, &pll
, par
)))
1566 if ((err
= aty128_ddafifo(&fifo_reg
, &pll
, crtc
.depth
, par
)))
1571 par
->fifo_reg
= fifo_reg
;
1572 par
->accel_flags
= var
->accel_flags
;
1578 static int aty128_encode_var(struct fb_var_screeninfo
*var
,
1579 const struct aty128fb_par
*par
)
1583 if ((err
= aty128_crtc_to_var(&par
->crtc
, var
)))
1586 if ((err
= aty128_pll_to_var(&par
->pll
, var
)))
1594 var
->accel_flags
= par
->accel_flags
;
1600 static int aty128fb_check_var(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
1602 struct aty128fb_par par
;
1605 par
= *(struct aty128fb_par
*)info
->par
;
1606 if ((err
= aty128_decode_var(var
, &par
)) != 0)
1608 aty128_encode_var(var
, &par
);
1614 * Pan or Wrap the Display
1616 static int aty128fb_pan_display(struct fb_var_screeninfo
*var
, struct fb_info
*fb
)
1618 struct aty128fb_par
*par
= fb
->par
;
1619 u32 xoffset
, yoffset
;
1623 xres
= (((par
->crtc
.h_total
>> 16) & 0xff) + 1) << 3;
1624 yres
= ((par
->crtc
.v_total
>> 16) & 0x7ff) + 1;
1626 xoffset
= (var
->xoffset
+7) & ~7;
1627 yoffset
= var
->yoffset
;
1629 if (xoffset
+xres
> par
->crtc
.vxres
|| yoffset
+yres
> par
->crtc
.vyres
)
1632 par
->crtc
.xoffset
= xoffset
;
1633 par
->crtc
.yoffset
= yoffset
;
1635 offset
= ((yoffset
* par
->crtc
.vxres
+ xoffset
)*(par
->crtc
.bpp
>> 3)) & ~7;
1637 if (par
->crtc
.bpp
== 24)
1638 offset
+= 8 * (offset
% 3); /* Must be multiple of 8 and 3 */
1640 aty_st_le32(CRTC_OFFSET
, offset
);
1647 * Helper function to store a single palette register
1649 static void aty128_st_pal(u_int regno
, u_int red
, u_int green
, u_int blue
,
1650 struct aty128fb_par
*par
)
1652 if (par
->chip_gen
== rage_M3
) {
1654 /* Note: For now, on M3, we set palette on both heads, which may
1655 * be useless. Can someone with a M3 check this ?
1657 * This code would still be useful if using the second CRTC to
1661 aty_st_le32(DAC_CNTL
, aty_ld_le32(DAC_CNTL
) | DAC_PALETTE_ACCESS_CNTL
);
1662 aty_st_8(PALETTE_INDEX
, regno
);
1663 aty_st_le32(PALETTE_DATA
, (red
<<16)|(green
<<8)|blue
);
1665 aty_st_le32(DAC_CNTL
, aty_ld_le32(DAC_CNTL
) & ~DAC_PALETTE_ACCESS_CNTL
);
1668 aty_st_8(PALETTE_INDEX
, regno
);
1669 aty_st_le32(PALETTE_DATA
, (red
<<16)|(green
<<8)|blue
);
1672 static int aty128fb_sync(struct fb_info
*info
)
1674 struct aty128fb_par
*par
= info
->par
;
1676 if (par
->blitter_may_be_busy
)
1681 int __init
aty128fb_setup(char *options
)
1685 if (!options
|| !*options
)
1688 while ((this_opt
= strsep(&options
, ",")) != NULL
) {
1689 #ifdef CONFIG_PMAC_PBOOK
1690 if (!strncmp(this_opt
, "lcd:", 4)) {
1691 default_lcd_on
= simple_strtoul(this_opt
+4, NULL
, 0);
1693 } else if (!strncmp(this_opt
, "crt:", 4)) {
1694 default_crt_on
= simple_strtoul(this_opt
+4, NULL
, 0);
1699 if(!strncmp(this_opt
, "nomtrr", 6)) {
1704 #ifdef CONFIG_PPC_PMAC
1705 /* vmode and cmode deprecated */
1706 if (!strncmp(this_opt
, "vmode:", 6)) {
1707 unsigned int vmode
= simple_strtoul(this_opt
+6, NULL
, 0);
1708 if (vmode
> 0 && vmode
<= VMODE_MAX
)
1709 default_vmode
= vmode
;
1711 } else if (!strncmp(this_opt
, "cmode:", 6)) {
1712 unsigned int cmode
= simple_strtoul(this_opt
+6, NULL
, 0);
1716 default_cmode
= CMODE_8
;
1720 default_cmode
= CMODE_16
;
1724 default_cmode
= CMODE_32
;
1729 #endif /* CONFIG_PPC_PMAC */
1730 mode_option
= this_opt
;
1740 static int __init
aty128_init(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
1742 struct fb_info
*info
= pci_get_drvdata(pdev
);
1743 struct aty128fb_par
*par
= info
->par
;
1744 struct fb_var_screeninfo var
;
1745 char video_card
[DEVICE_NAME_SIZE
];
1749 if (!par
->vram_size
) /* may have already been probed */
1750 par
->vram_size
= aty_ld_le32(CONFIG_MEMSIZE
) & 0x03FFFFFF;
1752 /* Get the chip revision */
1753 chip_rev
= (aty_ld_le32(CONFIG_CNTL
) >> 16) & 0x1F;
1755 strcpy(video_card
, "Rage128 XX ");
1756 video_card
[8] = ent
->device
>> 8;
1757 video_card
[9] = ent
->device
& 0xFF;
1759 /* range check to make sure */
1760 if (ent
->driver_data
< (sizeof(r128_family
)/sizeof(char *)))
1761 strncat(video_card
, r128_family
[ent
->driver_data
], sizeof(video_card
));
1763 printk(KERN_INFO
"aty128fb: %s [chip rev 0x%x] ", video_card
, chip_rev
);
1765 if (par
->vram_size
% (1024 * 1024) == 0)
1766 printk("%dM %s\n", par
->vram_size
/ (1024*1024), par
->mem
->name
);
1768 printk("%dk %s\n", par
->vram_size
/ 1024, par
->mem
->name
);
1770 par
->chip_gen
= ent
->driver_data
;
1773 info
->fbops
= &aty128fb_ops
;
1774 info
->flags
= FBINFO_FLAG_DEFAULT
;
1776 #ifdef CONFIG_PMAC_PBOOK
1777 par
->lcd_on
= default_lcd_on
;
1778 par
->crt_on
= default_crt_on
;
1782 #ifdef CONFIG_PPC_PMAC
1783 if (_machine
== _MACH_Pmac
) {
1785 if (!mac_find_mode(&var
, info
, mode_option
, 8))
1788 if (default_vmode
<= 0 || default_vmode
> VMODE_MAX
)
1789 default_vmode
= VMODE_1024_768_60
;
1791 /* iMacs need that resolution
1792 * PowerMac2,1 first r128 iMacs
1793 * PowerMac2,2 summer 2000 iMacs
1794 * PowerMac4,1 january 2001 iMacs "flower power"
1796 if (machine_is_compatible("PowerMac2,1") ||
1797 machine_is_compatible("PowerMac2,2") ||
1798 machine_is_compatible("PowerMac4,1"))
1799 default_vmode
= VMODE_1024_768_75
;
1802 if (machine_is_compatible("PowerBook2,2"))
1803 default_vmode
= VMODE_800_600_60
;
1805 /* PowerBook Firewire (Pismo), iBook Dual USB */
1806 if (machine_is_compatible("PowerBook3,1") ||
1807 machine_is_compatible("PowerBook4,1"))
1808 default_vmode
= VMODE_1024_768_60
;
1810 /* PowerBook Titanium */
1811 if (machine_is_compatible("PowerBook3,2"))
1812 default_vmode
= VMODE_1152_768_60
;
1814 if (default_cmode
> 16)
1815 default_cmode
= CMODE_32
;
1816 else if (default_cmode
> 8)
1817 default_cmode
= CMODE_16
;
1819 default_cmode
= CMODE_8
;
1821 if (mac_vmode_to_var(default_vmode
, default_cmode
, &var
))
1825 #endif /* CONFIG_PPC_PMAC */
1828 if (fb_find_mode(&var
, info
, mode_option
, NULL
,
1829 0, &defaultmode
, 8) == 0)
1833 var
.accel_flags
&= ~FB_ACCELF_TEXT
;
1834 // var.accel_flags |= FB_ACCELF_TEXT;/* FIXME Will add accel later */
1836 if (aty128fb_check_var(&var
, info
)) {
1837 printk(KERN_ERR
"aty128fb: Cannot set default mode.\n");
1841 /* setup the DAC the way we like it */
1842 dac
= aty_ld_le32(DAC_CNTL
);
1843 dac
|= (DAC_8BIT_EN
| DAC_RANGE_CNTL
);
1845 if (par
->chip_gen
== rage_M3
)
1846 dac
|= DAC_PALETTE2_SNOOP_EN
;
1847 aty_st_le32(DAC_CNTL
, dac
);
1849 /* turn off bus mastering, just in case */
1850 aty_st_le32(BUS_CNTL
, aty_ld_le32(BUS_CNTL
) | BUS_MASTER_DIS
);
1853 fb_alloc_cmap(&info
->cmap
, 256, 0);
1855 var
.activate
= FB_ACTIVATE_NOW
;
1857 aty128_init_engine(par
);
1859 if (register_framebuffer(info
) < 0)
1862 #ifdef CONFIG_PMAC_BACKLIGHT
1863 /* Could be extended to Rage128Pro LVDS output too */
1864 if (par
->chip_gen
== rage_M3
)
1865 register_backlight_controller(&aty128_backlight_controller
, par
, "ati");
1866 #endif /* CONFIG_PMAC_BACKLIGHT */
1868 par
->pm_reg
= pci_find_capability(pdev
, PCI_CAP_ID_PM
);
1871 par
->lock_blank
= 0;
1873 printk(KERN_INFO
"fb%d: %s frame buffer device on %s\n",
1874 info
->node
, info
->fix
.id
, video_card
);
1876 return 1; /* success! */
1880 /* register a card ++ajoshi */
1881 static int __init
aty128_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
1883 unsigned long fb_addr
, reg_addr
;
1884 struct aty128fb_par
*par
;
1885 struct fb_info
*info
;
1891 /* Enable device in PCI config */
1892 if ((err
= pci_enable_device(pdev
))) {
1893 printk(KERN_ERR
"aty128fb: Cannot enable PCI device: %d\n",
1898 fb_addr
= pci_resource_start(pdev
, 0);
1899 if (!request_mem_region(fb_addr
, pci_resource_len(pdev
, 0),
1901 printk(KERN_ERR
"aty128fb: cannot reserve frame "
1906 reg_addr
= pci_resource_start(pdev
, 2);
1907 if (!request_mem_region(reg_addr
, pci_resource_len(pdev
, 2),
1909 printk(KERN_ERR
"aty128fb: cannot reserve MMIO region\n");
1913 /* We have the resources. Now virtualize them */
1914 info
= framebuffer_alloc(sizeof(struct aty128fb_par
), &pdev
->dev
);
1916 printk(KERN_ERR
"aty128fb: can't alloc fb_info_aty128\n");
1921 info
->pseudo_palette
= par
->pseudo_palette
;
1922 info
->fix
= aty128fb_fix
;
1924 /* Virtualize mmio region */
1925 info
->fix
.mmio_start
= reg_addr
;
1926 par
->regbase
= ioremap(reg_addr
, pci_resource_len(pdev
, 2));
1930 /* Grab memory size from the card */
1931 // How does this relate to the resource length from the PCI hardware?
1932 par
->vram_size
= aty_ld_le32(CONFIG_MEMSIZE
) & 0x03FFFFFF;
1934 /* Virtualize the framebuffer */
1935 info
->screen_base
= ioremap(fb_addr
, par
->vram_size
);
1936 if (!info
->screen_base
)
1939 /* Set up info->fix */
1940 info
->fix
= aty128fb_fix
;
1941 info
->fix
.smem_start
= fb_addr
;
1942 info
->fix
.smem_len
= par
->vram_size
;
1943 info
->fix
.mmio_start
= reg_addr
;
1945 /* If we can't test scratch registers, something is seriously wrong */
1946 if (!register_test(par
)) {
1947 printk(KERN_ERR
"aty128fb: Can't write to video register!\n");
1952 bios
= aty128_map_ROM(par
, pdev
);
1955 bios
= aty128_find_mem_vbios(par
);
1958 printk(KERN_INFO
"aty128fb: BIOS not located, guessing timings.\n");
1960 printk(KERN_INFO
"aty128fb: Rage128 BIOS located\n");
1961 aty128_get_pllinfo(par
, bios
);
1962 aty128_unmap_ROM(pdev
, bios
);
1964 #endif /* __sparc__ */
1966 aty128_timings(par
);
1967 pci_set_drvdata(pdev
, info
);
1969 if (!aty128_init(pdev
, ent
))
1974 par
->mtrr
.vram
= mtrr_add(info
->fix
.smem_start
,
1975 par
->vram_size
, MTRR_TYPE_WRCOMB
, 1);
1976 par
->mtrr
.vram_valid
= 1;
1977 /* let there be speed */
1978 printk(KERN_INFO
"aty128fb: Rage128 MTRR set to ON\n");
1980 #endif /* CONFIG_MTRR */
1984 iounmap(info
->screen_base
);
1986 iounmap(par
->regbase
);
1988 framebuffer_release(info
);
1990 release_mem_region(pci_resource_start(pdev
, 2),
1991 pci_resource_len(pdev
, 2));
1993 release_mem_region(pci_resource_start(pdev
, 0),
1994 pci_resource_len(pdev
, 0));
1998 static void __devexit
aty128_remove(struct pci_dev
*pdev
)
2000 struct fb_info
*info
= pci_get_drvdata(pdev
);
2001 struct aty128fb_par
*par
;
2008 unregister_framebuffer(info
);
2010 if (par
->mtrr
.vram_valid
)
2011 mtrr_del(par
->mtrr
.vram
, info
->fix
.smem_start
,
2013 #endif /* CONFIG_MTRR */
2014 iounmap(par
->regbase
);
2015 iounmap(info
->screen_base
);
2017 release_mem_region(pci_resource_start(pdev
, 0),
2018 pci_resource_len(pdev
, 0));
2019 release_mem_region(pci_resource_start(pdev
, 1),
2020 pci_resource_len(pdev
, 1));
2021 release_mem_region(pci_resource_start(pdev
, 2),
2022 pci_resource_len(pdev
, 2));
2023 framebuffer_release(info
);
2025 #endif /* CONFIG_PCI */
2030 * Blank the display.
2032 static int aty128fb_blank(int blank
, struct fb_info
*fb
)
2034 struct aty128fb_par
*par
= fb
->par
;
2037 if (par
->lock_blank
|| par
->asleep
)
2040 #ifdef CONFIG_PMAC_BACKLIGHT
2041 if ((_machine
== _MACH_Pmac
) && blank
)
2042 set_backlight_enable(0);
2043 #endif /* CONFIG_PMAC_BACKLIGHT */
2045 if (blank
& VESA_VSYNC_SUSPEND
)
2047 if (blank
& VESA_HSYNC_SUSPEND
)
2049 if (blank
& VESA_POWERDOWN
)
2052 aty_st_8(CRTC_EXT_CNTL
+1, state
);
2054 #ifdef CONFIG_PMAC_PBOOK
2055 if (par
->chip_gen
== rage_M3
) {
2056 aty128_set_crt_enable(par
, par
->crt_on
&& !blank
);
2057 aty128_set_lcd_enable(par
, par
->lcd_on
&& !blank
);
2060 #ifdef CONFIG_PMAC_BACKLIGHT
2061 if ((_machine
== _MACH_Pmac
) && !blank
)
2062 set_backlight_enable(1);
2063 #endif /* CONFIG_PMAC_BACKLIGHT */
2068 * Set a single color register. The values supplied are already
2069 * rounded down to the hardware's capabilities (according to the
2070 * entries in the var structure). Return != 0 for invalid regno.
2072 static int aty128fb_setcolreg(u_int regno
, u_int red
, u_int green
, u_int blue
,
2073 u_int transp
, struct fb_info
*info
)
2075 struct aty128fb_par
*par
= info
->par
;
2078 || (par
->crtc
.depth
== 16 && regno
> 63)
2079 || (par
->crtc
.depth
== 15 && regno
> 31))
2088 u32
*pal
= info
->pseudo_palette
;
2090 switch (par
->crtc
.depth
) {
2092 pal
[regno
] = (regno
<< 10) | (regno
<< 5) | regno
;
2095 pal
[regno
] = (regno
<< 11) | (regno
<< 6) | regno
;
2098 pal
[regno
] = (regno
<< 16) | (regno
<< 8) | regno
;
2101 i
= (regno
<< 8) | regno
;
2102 pal
[regno
] = (i
<< 16) | i
;
2107 if (par
->crtc
.depth
== 16 && regno
> 0) {
2109 * With the 5-6-5 split of bits for RGB at 16 bits/pixel, we
2110 * have 32 slots for R and B values but 64 slots for G values.
2111 * Thus the R and B values go in one slot but the G value
2112 * goes in a different slot, and we have to avoid disturbing
2113 * the other fields in the slots we touch.
2115 par
->green
[regno
] = green
;
2117 par
->red
[regno
] = red
;
2118 par
->blue
[regno
] = blue
;
2119 aty128_st_pal(regno
* 8, red
, par
->green
[regno
*2],
2122 red
= par
->red
[regno
/2];
2123 blue
= par
->blue
[regno
/2];
2125 } else if (par
->crtc
.bpp
== 16)
2127 aty128_st_pal(regno
, red
, green
, blue
, par
);
2132 #define ATY_MIRROR_LCD_ON 0x00000001
2133 #define ATY_MIRROR_CRT_ON 0x00000002
2135 /* out param: u32* backlight value: 0 to 15 */
2136 #define FBIO_ATY128_GET_MIRROR _IOR('@', 1, __u32)
2137 /* in param: u32* backlight value: 0 to 15 */
2138 #define FBIO_ATY128_SET_MIRROR _IOW('@', 2, __u32)
2140 static int aty128fb_ioctl(struct inode
*inode
, struct file
*file
, u_int cmd
,
2141 u_long arg
, struct fb_info
*info
)
2143 #ifdef CONFIG_PMAC_PBOOK
2144 struct aty128fb_par
*par
= info
->par
;
2149 case FBIO_ATY128_SET_MIRROR
:
2150 if (par
->chip_gen
!= rage_M3
)
2152 rc
= get_user(value
, (__u32 __user
*)arg
);
2155 par
->lcd_on
= (value
& 0x01) != 0;
2156 par
->crt_on
= (value
& 0x02) != 0;
2157 if (!par
->crt_on
&& !par
->lcd_on
)
2159 aty128_set_crt_enable(par
, par
->crt_on
);
2160 aty128_set_lcd_enable(par
, par
->lcd_on
);
2162 case FBIO_ATY128_GET_MIRROR
:
2163 if (par
->chip_gen
!= rage_M3
)
2165 value
= (par
->crt_on
<< 1) | par
->lcd_on
;
2166 return put_user(value
, (__u32 __user
*)arg
);
2172 #ifdef CONFIG_PMAC_BACKLIGHT
2173 static int backlight_conv
[] = {
2174 0xff, 0xc0, 0xb5, 0xaa, 0x9f, 0x94, 0x89, 0x7e,
2175 0x73, 0x68, 0x5d, 0x52, 0x47, 0x3c, 0x31, 0x24
2178 /* We turn off the LCD completely instead of just dimming the backlight.
2179 * This provides greater power saving and the display is useless without
2182 #define BACKLIGHT_LVDS_OFF
2183 /* That one prevents proper CRT output with LCD off */
2184 #undef BACKLIGHT_DAC_OFF
2186 static int aty128_set_backlight_enable(int on
, int level
, void *data
)
2188 struct aty128fb_par
*par
= data
;
2189 unsigned int reg
= aty_ld_le32(LVDS_GEN_CNTL
);
2193 reg
|= LVDS_BL_MOD_EN
| LVDS_BLON
;
2194 if (on
&& level
> BACKLIGHT_OFF
) {
2196 if (!(reg
& LVDS_ON
)) {
2198 aty_st_le32(LVDS_GEN_CNTL
, reg
);
2199 (void)aty_ld_le32(LVDS_GEN_CNTL
);
2202 aty_st_le32(LVDS_GEN_CNTL
, reg
);
2204 reg
&= ~LVDS_BL_MOD_LEVEL_MASK
;
2205 reg
|= (backlight_conv
[level
] << LVDS_BL_MOD_LEVEL_SHIFT
);
2206 #ifdef BACKLIGHT_LVDS_OFF
2207 reg
|= LVDS_ON
| LVDS_EN
;
2208 reg
&= ~LVDS_DISPLAY_DIS
;
2210 aty_st_le32(LVDS_GEN_CNTL
, reg
);
2211 #ifdef BACKLIGHT_DAC_OFF
2212 aty_st_le32(DAC_CNTL
, aty_ld_le32(DAC_CNTL
) & (~DAC_PDWN
));
2215 reg
&= ~LVDS_BL_MOD_LEVEL_MASK
;
2216 reg
|= (backlight_conv
[0] << LVDS_BL_MOD_LEVEL_SHIFT
);
2217 #ifdef BACKLIGHT_LVDS_OFF
2218 reg
|= LVDS_DISPLAY_DIS
;
2219 aty_st_le32(LVDS_GEN_CNTL
, reg
);
2220 (void)aty_ld_le32(LVDS_GEN_CNTL
);
2222 reg
&= ~(LVDS_ON
| LVDS_EN
| LVDS_BLON
| LVDS_DIGION
);
2224 aty_st_le32(LVDS_GEN_CNTL
, reg
);
2225 #ifdef BACKLIGHT_DAC_OFF
2226 aty_st_le32(DAC_CNTL
, aty_ld_le32(DAC_CNTL
) | DAC_PDWN
);
2233 static int aty128_set_backlight_level(int level
, void* data
)
2235 return aty128_set_backlight_enable(1, level
, data
);
2237 #endif /* CONFIG_PMAC_BACKLIGHT */
2241 * Accelerated functions
2244 static inline void aty128_rectcopy(int srcx
, int srcy
, int dstx
, int dsty
,
2245 u_int width
, u_int height
,
2246 struct fb_info_aty128
*par
)
2248 u32 save_dp_datatype
, save_dp_cntl
, dstval
;
2250 if (!width
|| !height
)
2253 dstval
= depth_to_dst(par
->current_par
.crtc
.depth
);
2254 if (dstval
== DST_24BPP
) {
2258 } else if (dstval
== -EINVAL
) {
2259 printk("aty128fb: invalid depth or RGBA\n");
2263 wait_for_fifo(2, par
);
2264 save_dp_datatype
= aty_ld_le32(DP_DATATYPE
);
2265 save_dp_cntl
= aty_ld_le32(DP_CNTL
);
2267 wait_for_fifo(6, par
);
2268 aty_st_le32(SRC_Y_X
, (srcy
<< 16) | srcx
);
2269 aty_st_le32(DP_MIX
, ROP3_SRCCOPY
| DP_SRC_RECT
);
2270 aty_st_le32(DP_CNTL
, DST_X_LEFT_TO_RIGHT
| DST_Y_TOP_TO_BOTTOM
);
2271 aty_st_le32(DP_DATATYPE
, save_dp_datatype
| dstval
| SRC_DSTCOLOR
);
2273 aty_st_le32(DST_Y_X
, (dsty
<< 16) | dstx
);
2274 aty_st_le32(DST_HEIGHT_WIDTH
, (height
<< 16) | width
);
2276 par
->blitter_may_be_busy
= 1;
2278 wait_for_fifo(2, par
);
2279 aty_st_le32(DP_DATATYPE
, save_dp_datatype
);
2280 aty_st_le32(DP_CNTL
, save_dp_cntl
);
2285 * Text mode accelerated functions
2288 static void fbcon_aty128_bmove(struct display
*p
, int sy
, int sx
, int dy
, int dx
,
2289 int height
, int width
)
2292 sy
*= fontheight(p
);
2294 dy
*= fontheight(p
);
2295 width
*= fontwidth(p
);
2296 height
*= fontheight(p
);
2298 aty128_rectcopy(sx
, sy
, dx
, dy
, width
, height
,
2299 (struct fb_info_aty128
*)p
->fb_info
);
2303 static void aty128_set_suspend(struct aty128fb_par
*par
, int suspend
)
2307 struct pci_dev
*pdev
= par
->pdev
;
2312 /* Set the chip into the appropriate suspend mode (we use D2,
2313 * D3 would require a complete re-initialisation of the chip,
2314 * including PCI config registers, clocks, AGP configuration, ...)
2317 /* Make sure CRTC2 is reset. Remove that the day we decide to
2318 * actually use CRTC2 and replace it with real code for disabling
2319 * the CRTC2 output during sleep
2321 aty_st_le32(CRTC2_GEN_CNTL
, aty_ld_le32(CRTC2_GEN_CNTL
) &
2324 /* Set the power management mode to be PCI based */
2325 /* Use this magic value for now */
2327 aty_st_pll(POWER_MANAGEMENT
, pmgt
);
2328 (void)aty_ld_pll(POWER_MANAGEMENT
);
2329 aty_st_le32(BUS_CNTL1
, 0x00000010);
2330 aty_st_le32(MEM_POWER_MISC
, 0x0c830000);
2332 pci_read_config_word(pdev
, par
->pm_reg
+PCI_PM_CTRL
, &pwr_command
);
2333 /* Switch PCI power management to D2 */
2334 pci_write_config_word(pdev
, par
->pm_reg
+PCI_PM_CTRL
,
2335 (pwr_command
& ~PCI_PM_CTRL_STATE_MASK
) | 2);
2336 pci_read_config_word(pdev
, par
->pm_reg
+PCI_PM_CTRL
, &pwr_command
);
2338 /* Switch back PCI power management to D0 */
2340 pci_write_config_word(pdev
, par
->pm_reg
+PCI_PM_CTRL
, 0);
2341 pci_read_config_word(pdev
, par
->pm_reg
+PCI_PM_CTRL
, &pwr_command
);
2346 static int aty128_pci_suspend(struct pci_dev
*pdev
, u32 state
)
2348 struct fb_info
*info
= pci_get_drvdata(pdev
);
2349 struct aty128fb_par
*par
= info
->par
;
2351 /* We don't do anything but D2, for now we return 0, but
2352 * we may want to change that. How do we know if the BIOS
2353 * can properly take care of D3 ? Also, with swsusp, we
2354 * know we'll be rebooted, ...
2356 #ifdef CONFIG_PPC_PMAC
2357 /* HACK ALERT ! Once I find a proper way to say to each driver
2358 * individually what will happen with it's PCI slot, I'll change
2359 * that. On laptops, the AGP slot is just unclocked, so D2 is
2360 * expected, while on desktops, the card is powered off
2364 #endif /* CONFIG_PPC_PMAC */
2366 if (state
!= 2 || state
== pdev
->dev
.power_state
)
2369 printk(KERN_DEBUG
"aty128fb: suspending...\n");
2371 acquire_console_sem();
2373 fb_set_suspend(info
, 1);
2375 /* Make sure engine is reset */
2377 aty128_reset_engine(par
);
2380 /* Blank display and LCD */
2381 aty128fb_blank(VESA_POWERDOWN
, info
);
2385 par
->lock_blank
= 1;
2387 /* We need a way to make sure the fbdev layer will _not_ touch the
2388 * framebuffer before we put the chip to suspend state. On 2.4, I
2389 * used dummy fb ops, 2.5 need proper support for this at the
2393 aty128_set_suspend(par
, 1);
2395 release_console_sem();
2397 pdev
->dev
.power_state
= state
;
2402 static int aty128_pci_resume(struct pci_dev
*pdev
)
2404 struct fb_info
*info
= pci_get_drvdata(pdev
);
2405 struct aty128fb_par
*par
= info
->par
;
2407 if (pdev
->dev
.power_state
== 0)
2410 acquire_console_sem();
2413 if (pdev
->dev
.power_state
== 2)
2414 aty128_set_suspend(par
, 0);
2417 /* Restore display & engine */
2418 aty128_reset_engine(par
);
2420 aty128fb_set_par(info
);
2421 fb_pan_display(info
, &info
->var
);
2422 fb_set_cmap(&info
->cmap
, info
);
2425 fb_set_suspend(info
, 0);
2428 par
->lock_blank
= 0;
2429 aty128fb_blank(0, info
);
2431 release_console_sem();
2433 pdev
->dev
.power_state
= 0;
2435 printk(KERN_DEBUG
"aty128fb: resumed !\n");
2440 int __init
aty128fb_init(void)
2443 char *option
= NULL
;
2445 if (fb_get_options("aty128fb", &option
))
2447 aty128fb_setup(option
);
2450 return pci_module_init(&aty128fb_driver
);
2453 static void __exit
aty128fb_exit(void)
2455 pci_unregister_driver(&aty128fb_driver
);
2458 module_init(aty128fb_init
);
2461 module_exit(aty128fb_exit
);
2463 MODULE_AUTHOR("(c)1999-2003 Brad Douglas <brad@neruo.com>");
2464 MODULE_DESCRIPTION("FBDev driver for ATI Rage128 / Pro cards");
2465 MODULE_LICENSE("GPL");
2466 module_param(mode_option
, charp
, 0);
2467 MODULE_PARM_DESC(mode
, "Specify resolution as \"<xres>x<yres>[-<bpp>][@<refresh>]\" ");
2469 module_param_named(nomtrr
, mtrr
, invbool
, 0);
2470 MODULE_PARM_DESC(mtrr
, "bool: Disable MTRR support (0 or 1=disabled) (default=0)");