2 * linux/drivers/video/riva/fbdev.c - nVidia RIVA 128/TNT/TNT2 fb driver
4 * Maintained by Ani Joshi <ajoshi@shell.unixbox.com>
6 * Copyright 1999-2000 Jeff Garzik
10 * Ani Joshi: Lots of debugging and cleanup work, really helped
11 * get the driver going
13 * Ferenc Bakonyi: Bug fixes, cleanup, modularization
15 * Jindrich Makovicka: Accel code help, hw cursor, mtrr
17 * Paul Richards: Bug fixes, updates
19 * Initial template from skeletonfb.c, created 28 Dec 1997 by Geert Uytterhoeven
20 * Includes riva_hw.c from nVidia, see copyright below.
21 * KGI code provided the basis for state storage, init, and mode switching.
23 * This file is subject to the terms and conditions of the GNU General Public
24 * License. See the file COPYING in the main directory of this archive
27 * Known bugs and issues:
28 * restoring text mode fails
29 * doublescan modes are broken
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/errno.h>
35 #include <linux/string.h>
37 #include <linux/slab.h>
38 #include <linux/delay.h>
40 #include <linux/init.h>
41 #include <linux/pci.h>
42 #include <linux/backlight.h>
43 #include <linux/bitrev.h>
44 #ifdef CONFIG_PMAC_BACKLIGHT
45 #include <asm/machdep.h>
46 #include <asm/backlight.h>
52 /* version number of this driver */
53 #define RIVAFB_VERSION "0.9.5b"
55 /* ------------------------------------------------------------------------- *
57 * various helpful macros and constants
59 * ------------------------------------------------------------------------- */
60 #ifdef CONFIG_FB_RIVA_DEBUG
61 #define NVTRACE printk
63 #define NVTRACE if(0) printk
66 #define NVTRACE_ENTER(...) NVTRACE("%s START\n", __func__)
67 #define NVTRACE_LEAVE(...) NVTRACE("%s END\n", __func__)
69 #ifdef CONFIG_FB_RIVA_DEBUG
70 #define assert(expr) \
72 printk( "Assertion failed! %s,%s,%s,line=%d\n",\
73 #expr,__FILE__,__func__,__LINE__); \
80 #define PFX "rivafb: "
82 /* macro that allows you to set overflow bits */
83 #define SetBitField(value,from,to) SetBF(to,GetBF(value,from))
84 #define SetBit(n) (1<<(n))
85 #define Set8Bits(value) ((value)&0xff)
87 /* HW cursor parameters */
90 /* ------------------------------------------------------------------------- *
94 * ------------------------------------------------------------------------- */
96 static int rivafb_blank(int blank
, struct fb_info
*info
);
98 /* ------------------------------------------------------------------------- *
100 * card identification
102 * ------------------------------------------------------------------------- */
104 static struct pci_device_id rivafb_pci_tbl
[] = {
105 { PCI_VENDOR_ID_NVIDIA_SGS
, PCI_DEVICE_ID_NVIDIA_SGS_RIVA128
,
106 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
107 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_TNT
,
108 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
109 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_TNT2
,
110 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
111 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_UTNT2
,
112 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
113 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_VTNT2
,
114 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
115 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_UVTNT2
,
116 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
117 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_ITNT2
,
118 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
119 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE_SDR
,
120 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
121 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE_DDR
,
122 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
123 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO
,
124 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
125 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE2_MX
,
126 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
127 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE2_MX2
,
128 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
129 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE2_GO
,
130 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
131 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO2_MXR
,
132 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
133 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE2_GTS
,
134 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
135 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE2_GTS2
,
136 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
137 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE2_ULTRA
,
138 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
139 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO2_PRO
,
140 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
141 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE4_MX_460
,
142 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
143 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE4_MX_440
,
144 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
145 // NF2/IGP version, GeForce 4 MX, NV18
146 { PCI_VENDOR_ID_NVIDIA
, 0x01f0,
147 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
148 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE4_MX_420
,
149 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
150 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE4_440_GO
,
151 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
152 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE4_420_GO
,
153 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
154 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE4_420_GO_M32
,
155 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
156 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO4_500XGL
,
157 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
158 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE4_440_GO_M64
,
159 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
160 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO4_200
,
161 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
162 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO4_550XGL
,
163 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
164 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO4_500_GOGL
,
165 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
166 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_IGEFORCE2
,
167 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
168 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE3
,
169 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
170 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE3_1
,
171 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
172 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE3_2
,
173 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
174 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO_DDC
,
175 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
176 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE4_TI_4600
,
177 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
178 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE4_TI_4400
,
179 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
180 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE4_TI_4200
,
181 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
182 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO4_900XGL
,
183 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
184 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO4_750XGL
,
185 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
186 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_QUADRO4_700XGL
,
187 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
188 { PCI_VENDOR_ID_NVIDIA
, PCI_DEVICE_ID_NVIDIA_GEFORCE_FX_GO_5200
,
189 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
190 { 0, } /* terminate list */
192 MODULE_DEVICE_TABLE(pci
, rivafb_pci_tbl
);
194 /* ------------------------------------------------------------------------- *
198 * ------------------------------------------------------------------------- */
200 /* command line data, set in rivafb_setup() */
201 static int flatpanel
= -1; /* Autodetect later */
202 static int forceCRTC
= -1;
203 static bool noaccel
= 0;
204 static bool nomtrr
= 0;
205 #ifdef CONFIG_PMAC_BACKLIGHT
206 static int backlight
= 1;
208 static int backlight
= 0;
211 static char *mode_option
= NULL
;
212 static bool strictmode
= 0;
214 static struct fb_fix_screeninfo rivafb_fix
= {
215 .type
= FB_TYPE_PACKED_PIXELS
,
220 static struct fb_var_screeninfo rivafb_default_var
= {
230 .activate
= FB_ACTIVATE_NOW
,
240 .vmode
= FB_VMODE_NONINTERLACED
244 static const struct riva_regs reg_template
= {
245 {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* ATTR */
246 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
247 0x41, 0x01, 0x0F, 0x00, 0x00},
248 {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* CRT */
249 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
250 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE3, /* 0x10 */
251 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
252 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20 */
253 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
254 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30 */
255 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
258 {0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x05, 0x0F, /* GRA */
260 {0x03, 0x01, 0x0F, 0x00, 0x0E}, /* SEQ */
267 #ifdef CONFIG_FB_RIVA_BACKLIGHT
268 /* We do not have any information about which values are allowed, thus
269 * we used safe values.
271 #define MIN_LEVEL 0x158
272 #define MAX_LEVEL 0x534
273 #define LEVEL_STEP ((MAX_LEVEL - MIN_LEVEL) / FB_BACKLIGHT_MAX)
275 static int riva_bl_get_level_brightness(struct riva_par
*par
,
278 struct fb_info
*info
= pci_get_drvdata(par
->pdev
);
281 /* Get and convert the value */
282 /* No locking on bl_curve since accessing a single value */
283 nlevel
= MIN_LEVEL
+ info
->bl_curve
[level
] * LEVEL_STEP
;
287 else if (nlevel
< MIN_LEVEL
)
289 else if (nlevel
> MAX_LEVEL
)
295 static int riva_bl_update_status(struct backlight_device
*bd
)
297 struct riva_par
*par
= bl_get_data(bd
);
298 U032 tmp_pcrt
, tmp_pmc
;
301 if (bd
->props
.power
!= FB_BLANK_UNBLANK
||
302 bd
->props
.fb_blank
!= FB_BLANK_UNBLANK
)
305 level
= bd
->props
.brightness
;
307 tmp_pmc
= NV_RD32(par
->riva
.PMC
, 0x10F0) & 0x0000FFFF;
308 tmp_pcrt
= NV_RD32(par
->riva
.PCRTC0
, 0x081C) & 0xFFFFFFFC;
311 tmp_pmc
|= (1 << 31); /* backlight bit */
312 tmp_pmc
|= riva_bl_get_level_brightness(par
, level
) << 16; /* level */
314 NV_WR32(par
->riva
.PCRTC0
, 0x081C, tmp_pcrt
);
315 NV_WR32(par
->riva
.PMC
, 0x10F0, tmp_pmc
);
320 static const struct backlight_ops riva_bl_ops
= {
321 .update_status
= riva_bl_update_status
,
324 static void riva_bl_init(struct riva_par
*par
)
326 struct backlight_properties props
;
327 struct fb_info
*info
= pci_get_drvdata(par
->pdev
);
328 struct backlight_device
*bd
;
334 #ifdef CONFIG_PMAC_BACKLIGHT
335 if (!machine_is(powermac
) ||
336 !pmac_has_backlight_type("mnca"))
340 snprintf(name
, sizeof(name
), "rivabl%d", info
->node
);
342 memset(&props
, 0, sizeof(struct backlight_properties
));
343 props
.type
= BACKLIGHT_RAW
;
344 props
.max_brightness
= FB_BACKLIGHT_LEVELS
- 1;
345 bd
= backlight_device_register(name
, info
->dev
, par
, &riva_bl_ops
,
349 printk(KERN_WARNING
"riva: Backlight registration failed\n");
354 fb_bl_default_curve(info
, 0,
355 MIN_LEVEL
* FB_BACKLIGHT_MAX
/ MAX_LEVEL
,
358 bd
->props
.brightness
= bd
->props
.max_brightness
;
359 bd
->props
.power
= FB_BLANK_UNBLANK
;
360 backlight_update_status(bd
);
362 printk("riva: Backlight initialized (%s)\n", name
);
370 static void riva_bl_exit(struct fb_info
*info
)
372 struct backlight_device
*bd
= info
->bl_dev
;
374 backlight_device_unregister(bd
);
375 printk("riva: Backlight unloaded\n");
378 static inline void riva_bl_init(struct riva_par
*par
) {}
379 static inline void riva_bl_exit(struct fb_info
*info
) {}
380 #endif /* CONFIG_FB_RIVA_BACKLIGHT */
382 /* ------------------------------------------------------------------------- *
386 * ------------------------------------------------------------------------- */
388 static inline void CRTCout(struct riva_par
*par
, unsigned char index
,
391 VGA_WR08(par
->riva
.PCIO
, 0x3d4, index
);
392 VGA_WR08(par
->riva
.PCIO
, 0x3d5, val
);
395 static inline unsigned char CRTCin(struct riva_par
*par
,
398 VGA_WR08(par
->riva
.PCIO
, 0x3d4, index
);
399 return (VGA_RD08(par
->riva
.PCIO
, 0x3d5));
402 static inline void GRAout(struct riva_par
*par
, unsigned char index
,
405 VGA_WR08(par
->riva
.PVIO
, 0x3ce, index
);
406 VGA_WR08(par
->riva
.PVIO
, 0x3cf, val
);
409 static inline unsigned char GRAin(struct riva_par
*par
,
412 VGA_WR08(par
->riva
.PVIO
, 0x3ce, index
);
413 return (VGA_RD08(par
->riva
.PVIO
, 0x3cf));
416 static inline void SEQout(struct riva_par
*par
, unsigned char index
,
419 VGA_WR08(par
->riva
.PVIO
, 0x3c4, index
);
420 VGA_WR08(par
->riva
.PVIO
, 0x3c5, val
);
423 static inline unsigned char SEQin(struct riva_par
*par
,
426 VGA_WR08(par
->riva
.PVIO
, 0x3c4, index
);
427 return (VGA_RD08(par
->riva
.PVIO
, 0x3c5));
430 static inline void ATTRout(struct riva_par
*par
, unsigned char index
,
433 VGA_WR08(par
->riva
.PCIO
, 0x3c0, index
);
434 VGA_WR08(par
->riva
.PCIO
, 0x3c0, val
);
437 static inline unsigned char ATTRin(struct riva_par
*par
,
440 VGA_WR08(par
->riva
.PCIO
, 0x3c0, index
);
441 return (VGA_RD08(par
->riva
.PCIO
, 0x3c1));
444 static inline void MISCout(struct riva_par
*par
, unsigned char val
)
446 VGA_WR08(par
->riva
.PVIO
, 0x3c2, val
);
449 static inline unsigned char MISCin(struct riva_par
*par
)
451 return (VGA_RD08(par
->riva
.PVIO
, 0x3cc));
454 static inline void reverse_order(u32
*l
)
457 a
[0] = bitrev8(a
[0]);
458 a
[1] = bitrev8(a
[1]);
459 a
[2] = bitrev8(a
[2]);
460 a
[3] = bitrev8(a
[3]);
463 /* ------------------------------------------------------------------------- *
467 * ------------------------------------------------------------------------- */
470 * rivafb_load_cursor_image - load cursor image to hardware
471 * @data: address to monochrome bitmap (1 = foreground color, 0 = background)
472 * @par: pointer to private data
473 * @w: width of cursor image in pixels
474 * @h: height of cursor image in scanlines
475 * @bg: background color (ARGB1555) - alpha bit determines opacity
476 * @fg: foreground color (ARGB1555)
479 * Loads cursor image based on a monochrome source and mask bitmap. The
480 * image bits determines the color of the pixel, 0 for background, 1 for
481 * foreground. Only the affected region (as determined by @w and @h
482 * parameters) will be updated.
487 static void rivafb_load_cursor_image(struct riva_par
*par
, u8
*data8
,
488 u16 bg
, u16 fg
, u32 w
, u32 h
)
492 u32
*data
= (u32
*)data8
;
493 bg
= le16_to_cpu(bg
);
494 fg
= le16_to_cpu(fg
);
498 for (i
= 0; i
< h
; i
++) {
502 for (j
= 0; j
< w
/2; j
++) {
504 #if defined (__BIG_ENDIAN)
505 tmp
= (b
& (1 << 31)) ? fg
<< 16 : bg
<< 16;
507 tmp
|= (b
& (1 << 31)) ? fg
: bg
;
510 tmp
= (b
& 1) ? fg
: bg
;
512 tmp
|= (b
& 1) ? fg
<< 16 : bg
<< 16;
515 writel(tmp
, &par
->riva
.CURSOR
[k
++]);
517 k
+= (MAX_CURS
- w
)/2;
521 /* ------------------------------------------------------------------------- *
523 * general utility functions
525 * ------------------------------------------------------------------------- */
528 * riva_wclut - set CLUT entry
529 * @chip: pointer to RIVA_HW_INST object
530 * @regnum: register number
531 * @red: red component
532 * @green: green component
533 * @blue: blue component
536 * Sets color register @regnum.
541 static void riva_wclut(RIVA_HW_INST
*chip
,
542 unsigned char regnum
, unsigned char red
,
543 unsigned char green
, unsigned char blue
)
545 VGA_WR08(chip
->PDIO
, 0x3c8, regnum
);
546 VGA_WR08(chip
->PDIO
, 0x3c9, red
);
547 VGA_WR08(chip
->PDIO
, 0x3c9, green
);
548 VGA_WR08(chip
->PDIO
, 0x3c9, blue
);
552 * riva_rclut - read fromCLUT register
553 * @chip: pointer to RIVA_HW_INST object
554 * @regnum: register number
555 * @red: red component
556 * @green: green component
557 * @blue: blue component
560 * Reads red, green, and blue from color register @regnum.
565 static void riva_rclut(RIVA_HW_INST
*chip
,
566 unsigned char regnum
, unsigned char *red
,
567 unsigned char *green
, unsigned char *blue
)
570 VGA_WR08(chip
->PDIO
, 0x3c7, regnum
);
571 *red
= VGA_RD08(chip
->PDIO
, 0x3c9);
572 *green
= VGA_RD08(chip
->PDIO
, 0x3c9);
573 *blue
= VGA_RD08(chip
->PDIO
, 0x3c9);
577 * riva_save_state - saves current chip state
578 * @par: pointer to riva_par object containing info for current riva board
579 * @regs: pointer to riva_regs object
582 * Saves current chip state to @regs.
588 static void riva_save_state(struct riva_par
*par
, struct riva_regs
*regs
)
593 par
->riva
.LockUnlock(&par
->riva
, 0);
595 par
->riva
.UnloadStateExt(&par
->riva
, ®s
->ext
);
597 regs
->misc_output
= MISCin(par
);
599 for (i
= 0; i
< NUM_CRT_REGS
; i
++)
600 regs
->crtc
[i
] = CRTCin(par
, i
);
602 for (i
= 0; i
< NUM_ATC_REGS
; i
++)
603 regs
->attr
[i
] = ATTRin(par
, i
);
605 for (i
= 0; i
< NUM_GRC_REGS
; i
++)
606 regs
->gra
[i
] = GRAin(par
, i
);
608 for (i
= 0; i
< NUM_SEQ_REGS
; i
++)
609 regs
->seq
[i
] = SEQin(par
, i
);
614 * riva_load_state - loads current chip state
615 * @par: pointer to riva_par object containing info for current riva board
616 * @regs: pointer to riva_regs object
619 * Loads chip state from @regs.
622 * riva_load_video_mode()
627 static void riva_load_state(struct riva_par
*par
, struct riva_regs
*regs
)
629 RIVA_HW_STATE
*state
= ®s
->ext
;
633 CRTCout(par
, 0x11, 0x00);
635 par
->riva
.LockUnlock(&par
->riva
, 0);
637 par
->riva
.LoadStateExt(&par
->riva
, state
);
639 MISCout(par
, regs
->misc_output
);
641 for (i
= 0; i
< NUM_CRT_REGS
; i
++) {
647 CRTCout(par
, i
, regs
->crtc
[i
]);
651 for (i
= 0; i
< NUM_ATC_REGS
; i
++)
652 ATTRout(par
, i
, regs
->attr
[i
]);
654 for (i
= 0; i
< NUM_GRC_REGS
; i
++)
655 GRAout(par
, i
, regs
->gra
[i
]);
657 for (i
= 0; i
< NUM_SEQ_REGS
; i
++)
658 SEQout(par
, i
, regs
->seq
[i
]);
663 * riva_load_video_mode - calculate timings
664 * @info: pointer to fb_info object containing info for current riva board
667 * Calculate some timings and then send em off to riva_load_state().
672 static int riva_load_video_mode(struct fb_info
*info
)
674 int bpp
, width
, hDisplaySize
, hDisplay
, hStart
,
675 hEnd
, hTotal
, height
, vDisplay
, vStart
, vEnd
, vTotal
, dotClock
;
676 int hBlankStart
, hBlankEnd
, vBlankStart
, vBlankEnd
;
678 struct riva_par
*par
= info
->par
;
679 struct riva_regs newmode
;
682 /* time to calculate */
683 rivafb_blank(FB_BLANK_NORMAL
, info
);
685 bpp
= info
->var
.bits_per_pixel
;
686 if (bpp
== 16 && info
->var
.green
.length
== 5)
688 width
= info
->var
.xres_virtual
;
689 hDisplaySize
= info
->var
.xres
;
690 hDisplay
= (hDisplaySize
/ 8) - 1;
691 hStart
= (hDisplaySize
+ info
->var
.right_margin
) / 8 - 1;
692 hEnd
= (hDisplaySize
+ info
->var
.right_margin
+
693 info
->var
.hsync_len
) / 8 - 1;
694 hTotal
= (hDisplaySize
+ info
->var
.right_margin
+
695 info
->var
.hsync_len
+ info
->var
.left_margin
) / 8 - 5;
696 hBlankStart
= hDisplay
;
697 hBlankEnd
= hTotal
+ 4;
699 height
= info
->var
.yres_virtual
;
700 vDisplay
= info
->var
.yres
- 1;
701 vStart
= info
->var
.yres
+ info
->var
.lower_margin
- 1;
702 vEnd
= info
->var
.yres
+ info
->var
.lower_margin
+
703 info
->var
.vsync_len
- 1;
704 vTotal
= info
->var
.yres
+ info
->var
.lower_margin
+
705 info
->var
.vsync_len
+ info
->var
.upper_margin
+ 2;
706 vBlankStart
= vDisplay
;
707 vBlankEnd
= vTotal
+ 1;
708 dotClock
= 1000000000 / info
->var
.pixclock
;
710 memcpy(&newmode
, ®_template
, sizeof(struct riva_regs
));
712 if ((info
->var
.vmode
& FB_VMODE_MASK
) == FB_VMODE_INTERLACED
)
715 if (par
->FlatPanel
) {
718 vBlankStart
= vStart
;
721 hBlankEnd
= hTotal
+ 4;
724 newmode
.crtc
[0x0] = Set8Bits (hTotal
);
725 newmode
.crtc
[0x1] = Set8Bits (hDisplay
);
726 newmode
.crtc
[0x2] = Set8Bits (hBlankStart
);
727 newmode
.crtc
[0x3] = SetBitField (hBlankEnd
, 4: 0, 4:0) | SetBit (7);
728 newmode
.crtc
[0x4] = Set8Bits (hStart
);
729 newmode
.crtc
[0x5] = SetBitField (hBlankEnd
, 5: 5, 7:7)
730 | SetBitField (hEnd
, 4: 0, 4:0);
731 newmode
.crtc
[0x6] = SetBitField (vTotal
, 7: 0, 7:0);
732 newmode
.crtc
[0x7] = SetBitField (vTotal
, 8: 8, 0:0)
733 | SetBitField (vDisplay
, 8: 8, 1:1)
734 | SetBitField (vStart
, 8: 8, 2:2)
735 | SetBitField (vBlankStart
, 8: 8, 3:3)
737 | SetBitField (vTotal
, 9: 9, 5:5)
738 | SetBitField (vDisplay
, 9: 9, 6:6)
739 | SetBitField (vStart
, 9: 9, 7:7);
740 newmode
.crtc
[0x9] = SetBitField (vBlankStart
, 9: 9, 5:5)
742 newmode
.crtc
[0x10] = Set8Bits (vStart
);
743 newmode
.crtc
[0x11] = SetBitField (vEnd
, 3: 0, 3:0)
745 newmode
.crtc
[0x12] = Set8Bits (vDisplay
);
746 newmode
.crtc
[0x13] = (width
/ 8) * ((bpp
+ 1) / 8);
747 newmode
.crtc
[0x15] = Set8Bits (vBlankStart
);
748 newmode
.crtc
[0x16] = Set8Bits (vBlankEnd
);
750 newmode
.ext
.screen
= SetBitField(hBlankEnd
,6:6,4:4)
751 | SetBitField(vBlankStart
,10:10,3:3)
752 | SetBitField(vStart
,10:10,2:2)
753 | SetBitField(vDisplay
,10:10,1:1)
754 | SetBitField(vTotal
,10:10,0:0);
755 newmode
.ext
.horiz
= SetBitField(hTotal
,8:8,0:0)
756 | SetBitField(hDisplay
,8:8,1:1)
757 | SetBitField(hBlankStart
,8:8,2:2)
758 | SetBitField(hStart
,8:8,3:3);
759 newmode
.ext
.extra
= SetBitField(vTotal
,11:11,0:0)
760 | SetBitField(vDisplay
,11:11,2:2)
761 | SetBitField(vStart
,11:11,4:4)
762 | SetBitField(vBlankStart
,11:11,6:6);
764 if ((info
->var
.vmode
& FB_VMODE_MASK
) == FB_VMODE_INTERLACED
) {
765 int tmp
= (hTotal
>> 1) & ~1;
766 newmode
.ext
.interlace
= Set8Bits(tmp
);
767 newmode
.ext
.horiz
|= SetBitField(tmp
, 8:8,4:4);
769 newmode
.ext
.interlace
= 0xff; /* interlace off */
771 if (par
->riva
.Architecture
>= NV_ARCH_10
)
772 par
->riva
.CURSOR
= (U032 __iomem
*)(info
->screen_base
+ par
->riva
.CursorStart
);
774 if (info
->var
.sync
& FB_SYNC_HOR_HIGH_ACT
)
775 newmode
.misc_output
&= ~0x40;
777 newmode
.misc_output
|= 0x40;
778 if (info
->var
.sync
& FB_SYNC_VERT_HIGH_ACT
)
779 newmode
.misc_output
&= ~0x80;
781 newmode
.misc_output
|= 0x80;
783 rc
= CalcStateExt(&par
->riva
, &newmode
.ext
, bpp
, width
,
784 hDisplaySize
, height
, dotClock
);
788 newmode
.ext
.scale
= NV_RD32(par
->riva
.PRAMDAC
, 0x00000848) &
790 if (par
->FlatPanel
== 1) {
791 newmode
.ext
.pixel
|= (1 << 7);
792 newmode
.ext
.scale
|= (1 << 8);
794 if (par
->SecondCRTC
) {
795 newmode
.ext
.head
= NV_RD32(par
->riva
.PCRTC0
, 0x00000860) &
797 newmode
.ext
.head2
= NV_RD32(par
->riva
.PCRTC0
, 0x00002860) |
799 newmode
.ext
.crtcOwner
= 3;
800 newmode
.ext
.pllsel
|= 0x20000800;
801 newmode
.ext
.vpll2
= newmode
.ext
.vpll
;
802 } else if (par
->riva
.twoHeads
) {
803 newmode
.ext
.head
= NV_RD32(par
->riva
.PCRTC0
, 0x00000860) |
805 newmode
.ext
.head2
= NV_RD32(par
->riva
.PCRTC0
, 0x00002860) &
807 newmode
.ext
.crtcOwner
= 0;
808 newmode
.ext
.vpll2
= NV_RD32(par
->riva
.PRAMDAC0
, 0x00000520);
810 if (par
->FlatPanel
== 1) {
811 newmode
.ext
.pixel
|= (1 << 7);
812 newmode
.ext
.scale
|= (1 << 8);
814 newmode
.ext
.cursorConfig
= 0x02000100;
815 par
->current_state
= newmode
;
816 riva_load_state(par
, &par
->current_state
);
817 par
->riva
.LockUnlock(&par
->riva
, 0); /* important for HW cursor */
820 rivafb_blank(FB_BLANK_UNBLANK
, info
);
826 static void riva_update_var(struct fb_var_screeninfo
*var
,
827 const struct fb_videomode
*modedb
)
830 var
->xres
= var
->xres_virtual
= modedb
->xres
;
831 var
->yres
= modedb
->yres
;
832 if (var
->yres_virtual
< var
->yres
)
833 var
->yres_virtual
= var
->yres
;
834 var
->xoffset
= var
->yoffset
= 0;
835 var
->pixclock
= modedb
->pixclock
;
836 var
->left_margin
= modedb
->left_margin
;
837 var
->right_margin
= modedb
->right_margin
;
838 var
->upper_margin
= modedb
->upper_margin
;
839 var
->lower_margin
= modedb
->lower_margin
;
840 var
->hsync_len
= modedb
->hsync_len
;
841 var
->vsync_len
= modedb
->vsync_len
;
842 var
->sync
= modedb
->sync
;
843 var
->vmode
= modedb
->vmode
;
848 * rivafb_do_maximize -
849 * @info: pointer to fb_info object containing info for current riva board
858 * -EINVAL on failure, 0 on success
864 static int rivafb_do_maximize(struct fb_info
*info
,
865 struct fb_var_screeninfo
*var
,
881 /* use highest possible virtual resolution */
882 if (var
->xres_virtual
== -1 && var
->yres_virtual
== -1) {
883 printk(KERN_WARNING PFX
884 "using maximum available virtual resolution\n");
885 for (i
= 0; modes
[i
].xres
!= -1; i
++) {
886 if (modes
[i
].xres
* nom
/ den
* modes
[i
].yres
<
890 if (modes
[i
].xres
== -1) {
892 "could not find a virtual resolution that fits into video memory!!\n");
893 NVTRACE("EXIT - EINVAL error\n");
896 var
->xres_virtual
= modes
[i
].xres
;
897 var
->yres_virtual
= modes
[i
].yres
;
900 "virtual resolution set to maximum of %dx%d\n",
901 var
->xres_virtual
, var
->yres_virtual
);
902 } else if (var
->xres_virtual
== -1) {
903 var
->xres_virtual
= (info
->fix
.smem_len
* den
/
904 (nom
* var
->yres_virtual
)) & ~15;
905 printk(KERN_WARNING PFX
906 "setting virtual X resolution to %d\n", var
->xres_virtual
);
907 } else if (var
->yres_virtual
== -1) {
908 var
->xres_virtual
= (var
->xres_virtual
+ 15) & ~15;
909 var
->yres_virtual
= info
->fix
.smem_len
* den
/
910 (nom
* var
->xres_virtual
);
911 printk(KERN_WARNING PFX
912 "setting virtual Y resolution to %d\n", var
->yres_virtual
);
914 var
->xres_virtual
= (var
->xres_virtual
+ 15) & ~15;
915 if (var
->xres_virtual
* nom
/ den
* var
->yres_virtual
> info
->fix
.smem_len
) {
917 "mode %dx%dx%d rejected...resolution too high to fit into video memory!\n",
918 var
->xres
, var
->yres
, var
->bits_per_pixel
);
919 NVTRACE("EXIT - EINVAL error\n");
924 if (var
->xres_virtual
* nom
/ den
>= 8192) {
925 printk(KERN_WARNING PFX
926 "virtual X resolution (%d) is too high, lowering to %d\n",
927 var
->xres_virtual
, 8192 * den
/ nom
- 16);
928 var
->xres_virtual
= 8192 * den
/ nom
- 16;
931 if (var
->xres_virtual
< var
->xres
) {
933 "virtual X resolution (%d) is smaller than real\n", var
->xres_virtual
);
937 if (var
->yres_virtual
< var
->yres
) {
939 "virtual Y resolution (%d) is smaller than real\n", var
->yres_virtual
);
942 if (var
->yres_virtual
> 0x7fff/nom
)
943 var
->yres_virtual
= 0x7fff/nom
;
944 if (var
->xres_virtual
> 0x7fff/nom
)
945 var
->xres_virtual
= 0x7fff/nom
;
951 riva_set_pattern(struct riva_par
*par
, int clr0
, int clr1
, int pat0
, int pat1
)
953 RIVA_FIFO_FREE(par
->riva
, Patt
, 4);
954 NV_WR32(&par
->riva
.Patt
->Color0
, 0, clr0
);
955 NV_WR32(&par
->riva
.Patt
->Color1
, 0, clr1
);
956 NV_WR32(par
->riva
.Patt
->Monochrome
, 0, pat0
);
957 NV_WR32(par
->riva
.Patt
->Monochrome
, 4, pat1
);
960 /* acceleration routines */
961 static inline void wait_for_idle(struct riva_par
*par
)
963 while (par
->riva
.Busy(&par
->riva
));
967 * Set ROP. Translate X rop into ROP3. Internal routine.
970 riva_set_rop_solid(struct riva_par
*par
, int rop
)
972 riva_set_pattern(par
, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
973 RIVA_FIFO_FREE(par
->riva
, Rop
, 1);
974 NV_WR32(&par
->riva
.Rop
->Rop3
, 0, rop
);
978 static void riva_setup_accel(struct fb_info
*info
)
980 struct riva_par
*par
= info
->par
;
982 RIVA_FIFO_FREE(par
->riva
, Clip
, 2);
983 NV_WR32(&par
->riva
.Clip
->TopLeft
, 0, 0x0);
984 NV_WR32(&par
->riva
.Clip
->WidthHeight
, 0,
985 (info
->var
.xres_virtual
& 0xffff) |
986 (info
->var
.yres_virtual
<< 16));
987 riva_set_rop_solid(par
, 0xcc);
992 * riva_get_cmap_len - query current color map length
993 * @var: standard kernel fb changeable data
996 * Get current color map length.
999 * Length of color map
1002 * rivafb_setcolreg()
1004 static int riva_get_cmap_len(const struct fb_var_screeninfo
*var
)
1006 int rc
= 256; /* reasonable default */
1008 switch (var
->green
.length
) {
1010 rc
= 256; /* 256 entries (2^8), 8 bpp and RGB8888 */
1013 rc
= 32; /* 32 entries (2^5), 16 bpp, RGB555 */
1016 rc
= 64; /* 64 entries (2^6), 16 bpp, RGB565 */
1019 /* should not occur */
1025 /* ------------------------------------------------------------------------- *
1027 * framebuffer operations
1029 * ------------------------------------------------------------------------- */
1031 static int rivafb_open(struct fb_info
*info
, int user
)
1033 struct riva_par
*par
= info
->par
;
1036 mutex_lock(&par
->open_lock
);
1037 if (!par
->ref_count
) {
1039 memset(&par
->state
, 0, sizeof(struct vgastate
));
1040 par
->state
.flags
= VGA_SAVE_MODE
| VGA_SAVE_FONTS
;
1041 /* save the DAC for Riva128 */
1042 if (par
->riva
.Architecture
== NV_ARCH_03
)
1043 par
->state
.flags
|= VGA_SAVE_CMAP
;
1044 save_vga(&par
->state
);
1046 /* vgaHWunlock() + riva unlock (0x7F) */
1047 CRTCout(par
, 0x11, 0xFF);
1048 par
->riva
.LockUnlock(&par
->riva
, 0);
1050 riva_save_state(par
, &par
->initial_state
);
1053 mutex_unlock(&par
->open_lock
);
1058 static int rivafb_release(struct fb_info
*info
, int user
)
1060 struct riva_par
*par
= info
->par
;
1063 mutex_lock(&par
->open_lock
);
1064 if (!par
->ref_count
) {
1065 mutex_unlock(&par
->open_lock
);
1068 if (par
->ref_count
== 1) {
1069 par
->riva
.LockUnlock(&par
->riva
, 0);
1070 par
->riva
.LoadStateExt(&par
->riva
, &par
->initial_state
.ext
);
1071 riva_load_state(par
, &par
->initial_state
);
1073 restore_vga(&par
->state
);
1075 par
->riva
.LockUnlock(&par
->riva
, 1);
1078 mutex_unlock(&par
->open_lock
);
1083 static int rivafb_check_var(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
1085 const struct fb_videomode
*mode
;
1086 struct riva_par
*par
= info
->par
;
1087 int nom
, den
; /* translating from pixels->bytes */
1091 switch (var
->bits_per_pixel
) {
1093 var
->red
.offset
= var
->green
.offset
= var
->blue
.offset
= 0;
1094 var
->red
.length
= var
->green
.length
= var
->blue
.length
= 8;
1095 var
->bits_per_pixel
= 8;
1099 var
->green
.length
= 5;
1102 var
->bits_per_pixel
= 16;
1103 /* The Riva128 supports RGB555 only */
1104 if (par
->riva
.Architecture
== NV_ARCH_03
)
1105 var
->green
.length
= 5;
1106 if (var
->green
.length
== 5) {
1107 /* 0rrrrrgg gggbbbbb */
1108 var
->red
.offset
= 10;
1109 var
->green
.offset
= 5;
1110 var
->blue
.offset
= 0;
1111 var
->red
.length
= 5;
1112 var
->green
.length
= 5;
1113 var
->blue
.length
= 5;
1115 /* rrrrrggg gggbbbbb */
1116 var
->red
.offset
= 11;
1117 var
->green
.offset
= 5;
1118 var
->blue
.offset
= 0;
1119 var
->red
.length
= 5;
1120 var
->green
.length
= 6;
1121 var
->blue
.length
= 5;
1127 var
->red
.length
= var
->green
.length
= var
->blue
.length
= 8;
1128 var
->bits_per_pixel
= 32;
1129 var
->red
.offset
= 16;
1130 var
->green
.offset
= 8;
1131 var
->blue
.offset
= 0;
1137 "mode %dx%dx%d rejected...color depth not supported.\n",
1138 var
->xres
, var
->yres
, var
->bits_per_pixel
);
1139 NVTRACE("EXIT, returning -EINVAL\n");
1144 if (!info
->monspecs
.vfmax
|| !info
->monspecs
.hfmax
||
1145 !info
->monspecs
.dclkmax
|| !fb_validate_mode(var
, info
))
1149 /* calculate modeline if supported by monitor */
1150 if (!mode_valid
&& info
->monspecs
.gtf
) {
1151 if (!fb_get_mode(FB_MAXTIMINGS
, 0, var
, info
))
1156 mode
= fb_find_best_mode(var
, &info
->modelist
);
1158 riva_update_var(var
, mode
);
1163 if (!mode_valid
&& info
->monspecs
.modedb_len
)
1166 if (var
->xres_virtual
< var
->xres
)
1167 var
->xres_virtual
= var
->xres
;
1168 if (var
->yres_virtual
<= var
->yres
)
1169 var
->yres_virtual
= -1;
1170 if (rivafb_do_maximize(info
, var
, nom
, den
) < 0)
1173 /* truncate xoffset and yoffset to maximum if too high */
1174 if (var
->xoffset
> var
->xres_virtual
- var
->xres
)
1175 var
->xoffset
= var
->xres_virtual
- var
->xres
- 1;
1177 if (var
->yoffset
> var
->yres_virtual
- var
->yres
)
1178 var
->yoffset
= var
->yres_virtual
- var
->yres
- 1;
1180 var
->red
.msb_right
=
1181 var
->green
.msb_right
=
1182 var
->blue
.msb_right
=
1183 var
->transp
.offset
= var
->transp
.length
= var
->transp
.msb_right
= 0;
1188 static int rivafb_set_par(struct fb_info
*info
)
1190 struct riva_par
*par
= info
->par
;
1194 /* vgaHWunlock() + riva unlock (0x7F) */
1195 CRTCout(par
, 0x11, 0xFF);
1196 par
->riva
.LockUnlock(&par
->riva
, 0);
1197 rc
= riva_load_video_mode(info
);
1200 if(!(info
->flags
& FBINFO_HWACCEL_DISABLED
))
1201 riva_setup_accel(info
);
1203 par
->cursor_reset
= 1;
1204 info
->fix
.line_length
= (info
->var
.xres_virtual
* (info
->var
.bits_per_pixel
>> 3));
1205 info
->fix
.visual
= (info
->var
.bits_per_pixel
== 8) ?
1206 FB_VISUAL_PSEUDOCOLOR
: FB_VISUAL_DIRECTCOLOR
;
1208 if (info
->flags
& FBINFO_HWACCEL_DISABLED
)
1209 info
->pixmap
.scan_align
= 1;
1211 info
->pixmap
.scan_align
= 4;
1219 * rivafb_pan_display
1220 * @var: standard kernel fb changeable data
1222 * @info: pointer to fb_info object containing info for current riva board
1225 * Pan (or wrap, depending on the `vmode' field) the display using the
1226 * `xoffset' and `yoffset' fields of the `var' structure.
1227 * If the values don't fit, return -EINVAL.
1229 * This call looks only at xoffset, yoffset and the FB_VMODE_YWRAP flag
1231 static int rivafb_pan_display(struct fb_var_screeninfo
*var
,
1232 struct fb_info
*info
)
1234 struct riva_par
*par
= info
->par
;
1238 base
= var
->yoffset
* info
->fix
.line_length
+ var
->xoffset
;
1239 par
->riva
.SetStartAddress(&par
->riva
, base
);
1244 static int rivafb_blank(int blank
, struct fb_info
*info
)
1246 struct riva_par
*par
= info
->par
;
1247 unsigned char tmp
, vesa
;
1249 tmp
= SEQin(par
, 0x01) & ~0x20; /* screen on/off */
1250 vesa
= CRTCin(par
, 0x1a) & ~0xc0; /* sync on/off */
1258 case FB_BLANK_UNBLANK
:
1259 case FB_BLANK_NORMAL
:
1261 case FB_BLANK_VSYNC_SUSPEND
:
1264 case FB_BLANK_HSYNC_SUSPEND
:
1267 case FB_BLANK_POWERDOWN
:
1272 SEQout(par
, 0x01, tmp
);
1273 CRTCout(par
, 0x1a, vesa
);
1282 * @regno: register index
1283 * @red: red component
1284 * @green: green component
1285 * @blue: blue component
1286 * @transp: transparency
1287 * @info: pointer to fb_info object containing info for current riva board
1290 * Set a single color register. The values supplied have a 16 bit
1294 * Return != 0 for invalid regno.
1297 * fbcmap.c:fb_set_cmap()
1299 static int rivafb_setcolreg(unsigned regno
, unsigned red
, unsigned green
,
1300 unsigned blue
, unsigned transp
,
1301 struct fb_info
*info
)
1303 struct riva_par
*par
= info
->par
;
1304 RIVA_HW_INST
*chip
= &par
->riva
;
1307 if (regno
>= riva_get_cmap_len(&info
->var
))
1310 if (info
->var
.grayscale
) {
1311 /* gray = 0.30*R + 0.59*G + 0.11*B */
1312 red
= green
= blue
=
1313 (red
* 77 + green
* 151 + blue
* 28) >> 8;
1316 if (regno
< 16 && info
->fix
.visual
== FB_VISUAL_DIRECTCOLOR
) {
1317 ((u32
*) info
->pseudo_palette
)[regno
] =
1318 (regno
<< info
->var
.red
.offset
) |
1319 (regno
<< info
->var
.green
.offset
) |
1320 (regno
<< info
->var
.blue
.offset
);
1322 * The Riva128 2D engine requires color information in
1323 * TrueColor format even if framebuffer is in DirectColor
1325 if (par
->riva
.Architecture
== NV_ARCH_03
) {
1326 switch (info
->var
.bits_per_pixel
) {
1328 par
->palette
[regno
] = ((red
& 0xf800) >> 1) |
1329 ((green
& 0xf800) >> 6) |
1330 ((blue
& 0xf800) >> 11);
1333 par
->palette
[regno
] = ((red
& 0xff00) << 8) |
1334 ((green
& 0xff00)) |
1335 ((blue
& 0xff00) >> 8);
1341 switch (info
->var
.bits_per_pixel
) {
1343 /* "transparent" stuff is completely ignored. */
1344 riva_wclut(chip
, regno
, red
>> 8, green
>> 8, blue
>> 8);
1347 if (info
->var
.green
.length
== 5) {
1348 for (i
= 0; i
< 8; i
++) {
1349 riva_wclut(chip
, regno
*8+i
, red
>> 8,
1350 green
>> 8, blue
>> 8);
1356 for (i
= 0; i
< 8; i
++) {
1357 riva_wclut(chip
, regno
*8+i
,
1358 red
>> 8, green
>> 8,
1362 riva_rclut(chip
, regno
*4, &r
, &g
, &b
);
1363 for (i
= 0; i
< 4; i
++)
1364 riva_wclut(chip
, regno
*4+i
, r
,
1369 riva_wclut(chip
, regno
, red
>> 8, green
>> 8, blue
>> 8);
1379 * rivafb_fillrect - hardware accelerated color fill function
1380 * @info: pointer to fb_info structure
1381 * @rect: pointer to fb_fillrect structure
1384 * This function fills up a region of framebuffer memory with a solid
1385 * color with a choice of two different ROP's, copy or invert.
1390 static void rivafb_fillrect(struct fb_info
*info
, const struct fb_fillrect
*rect
)
1392 struct riva_par
*par
= info
->par
;
1393 u_int color
, rop
= 0;
1395 if ((info
->flags
& FBINFO_HWACCEL_DISABLED
)) {
1396 cfb_fillrect(info
, rect
);
1400 if (info
->var
.bits_per_pixel
== 8)
1401 color
= rect
->color
;
1403 if (par
->riva
.Architecture
!= NV_ARCH_03
)
1404 color
= ((u32
*)info
->pseudo_palette
)[rect
->color
];
1406 color
= par
->palette
[rect
->color
];
1409 switch (rect
->rop
) {
1419 riva_set_rop_solid(par
, rop
);
1421 RIVA_FIFO_FREE(par
->riva
, Bitmap
, 1);
1422 NV_WR32(&par
->riva
.Bitmap
->Color1A
, 0, color
);
1424 RIVA_FIFO_FREE(par
->riva
, Bitmap
, 2);
1425 NV_WR32(&par
->riva
.Bitmap
->UnclippedRectangle
[0].TopLeft
, 0,
1426 (rect
->dx
<< 16) | rect
->dy
);
1428 NV_WR32(&par
->riva
.Bitmap
->UnclippedRectangle
[0].WidthHeight
, 0,
1429 (rect
->width
<< 16) | rect
->height
);
1431 riva_set_rop_solid(par
, 0xcc);
1436 * rivafb_copyarea - hardware accelerated blit function
1437 * @info: pointer to fb_info structure
1438 * @region: pointer to fb_copyarea structure
1441 * This copies an area of pixels from one location to another
1446 static void rivafb_copyarea(struct fb_info
*info
, const struct fb_copyarea
*region
)
1448 struct riva_par
*par
= info
->par
;
1450 if ((info
->flags
& FBINFO_HWACCEL_DISABLED
)) {
1451 cfb_copyarea(info
, region
);
1455 RIVA_FIFO_FREE(par
->riva
, Blt
, 3);
1456 NV_WR32(&par
->riva
.Blt
->TopLeftSrc
, 0,
1457 (region
->sy
<< 16) | region
->sx
);
1458 NV_WR32(&par
->riva
.Blt
->TopLeftDst
, 0,
1459 (region
->dy
<< 16) | region
->dx
);
1461 NV_WR32(&par
->riva
.Blt
->WidthHeight
, 0,
1462 (region
->height
<< 16) | region
->width
);
1466 static inline void convert_bgcolor_16(u32
*col
)
1468 *col
= ((*col
& 0x0000F800) << 8)
1469 | ((*col
& 0x00007E0) << 5)
1470 | ((*col
& 0x0000001F) << 3)
1476 * rivafb_imageblit: hardware accelerated color expand function
1477 * @info: pointer to fb_info structure
1478 * @image: pointer to fb_image structure
1481 * If the source is a monochrome bitmap, the function fills up a a region
1482 * of framebuffer memory with pixels whose color is determined by the bit
1483 * setting of the bitmap, 1 - foreground, 0 - background.
1485 * If the source is not a monochrome bitmap, color expansion is not done.
1486 * In this case, it is channeled to a software function.
1491 static void rivafb_imageblit(struct fb_info
*info
,
1492 const struct fb_image
*image
)
1494 struct riva_par
*par
= info
->par
;
1495 u32 fgx
= 0, bgx
= 0, width
, tmp
;
1496 u8
*cdat
= (u8
*) image
->data
;
1497 volatile u32 __iomem
*d
;
1500 if ((info
->flags
& FBINFO_HWACCEL_DISABLED
) || image
->depth
!= 1) {
1501 cfb_imageblit(info
, image
);
1505 switch (info
->var
.bits_per_pixel
) {
1507 fgx
= image
->fg_color
;
1508 bgx
= image
->bg_color
;
1512 if (par
->riva
.Architecture
!= NV_ARCH_03
) {
1513 fgx
= ((u32
*)info
->pseudo_palette
)[image
->fg_color
];
1514 bgx
= ((u32
*)info
->pseudo_palette
)[image
->bg_color
];
1516 fgx
= par
->palette
[image
->fg_color
];
1517 bgx
= par
->palette
[image
->bg_color
];
1519 if (info
->var
.green
.length
== 6)
1520 convert_bgcolor_16(&bgx
);
1524 RIVA_FIFO_FREE(par
->riva
, Bitmap
, 7);
1525 NV_WR32(&par
->riva
.Bitmap
->ClipE
.TopLeft
, 0,
1526 (image
->dy
<< 16) | (image
->dx
& 0xFFFF));
1527 NV_WR32(&par
->riva
.Bitmap
->ClipE
.BottomRight
, 0,
1528 (((image
->dy
+ image
->height
) << 16) |
1529 ((image
->dx
+ image
->width
) & 0xffff)));
1530 NV_WR32(&par
->riva
.Bitmap
->Color0E
, 0, bgx
);
1531 NV_WR32(&par
->riva
.Bitmap
->Color1E
, 0, fgx
);
1532 NV_WR32(&par
->riva
.Bitmap
->WidthHeightInE
, 0,
1533 (image
->height
<< 16) | ((image
->width
+ 31) & ~31));
1534 NV_WR32(&par
->riva
.Bitmap
->WidthHeightOutE
, 0,
1535 (image
->height
<< 16) | ((image
->width
+ 31) & ~31));
1536 NV_WR32(&par
->riva
.Bitmap
->PointE
, 0,
1537 (image
->dy
<< 16) | (image
->dx
& 0xFFFF));
1539 d
= &par
->riva
.Bitmap
->MonochromeData01E
;
1541 width
= (image
->width
+ 31)/32;
1542 size
= width
* image
->height
;
1543 while (size
>= 16) {
1544 RIVA_FIFO_FREE(par
->riva
, Bitmap
, 16);
1545 for (i
= 0; i
< 16; i
++) {
1546 tmp
= *((u32
*)cdat
);
1547 cdat
= (u8
*)((u32
*)cdat
+ 1);
1548 reverse_order(&tmp
);
1549 NV_WR32(d
, i
*4, tmp
);
1554 RIVA_FIFO_FREE(par
->riva
, Bitmap
, size
);
1555 for (i
= 0; i
< size
; i
++) {
1556 tmp
= *((u32
*) cdat
);
1557 cdat
= (u8
*)((u32
*)cdat
+ 1);
1558 reverse_order(&tmp
);
1559 NV_WR32(d
, i
*4, tmp
);
1565 * rivafb_cursor - hardware cursor function
1566 * @info: pointer to info structure
1567 * @cursor: pointer to fbcursor structure
1570 * A cursor function that supports displaying a cursor image via hardware.
1571 * Within the kernel, copy and invert rops are supported. If exported
1572 * to user space, only the copy rop will be supported.
1577 static int rivafb_cursor(struct fb_info
*info
, struct fb_cursor
*cursor
)
1579 struct riva_par
*par
= info
->par
;
1580 u8 data
[MAX_CURS
* MAX_CURS
/8];
1581 int i
, set
= cursor
->set
;
1584 if (cursor
->image
.width
> MAX_CURS
|| cursor
->image
.height
> MAX_CURS
)
1587 par
->riva
.ShowHideCursor(&par
->riva
, 0);
1589 if (par
->cursor_reset
) {
1590 set
= FB_CUR_SETALL
;
1591 par
->cursor_reset
= 0;
1594 if (set
& FB_CUR_SETSIZE
)
1595 memset_io(par
->riva
.CURSOR
, 0, MAX_CURS
* MAX_CURS
* 2);
1597 if (set
& FB_CUR_SETPOS
) {
1600 yy
= cursor
->image
.dy
- info
->var
.yoffset
;
1601 xx
= cursor
->image
.dx
- info
->var
.xoffset
;
1605 NV_WR32(par
->riva
.PRAMDAC
, 0x0000300, temp
);
1609 if (set
& (FB_CUR_SETSHAPE
| FB_CUR_SETCMAP
| FB_CUR_SETIMAGE
)) {
1610 u32 bg_idx
= cursor
->image
.bg_color
;
1611 u32 fg_idx
= cursor
->image
.fg_color
;
1612 u32 s_pitch
= (cursor
->image
.width
+7) >> 3;
1613 u32 d_pitch
= MAX_CURS
/8;
1614 u8
*dat
= (u8
*) cursor
->image
.data
;
1615 u8
*msk
= (u8
*) cursor
->mask
;
1618 src
= kmalloc(s_pitch
* cursor
->image
.height
, GFP_ATOMIC
);
1621 switch (cursor
->rop
) {
1623 for (i
= 0; i
< s_pitch
* cursor
->image
.height
; i
++)
1624 src
[i
] = dat
[i
] ^ msk
[i
];
1628 for (i
= 0; i
< s_pitch
* cursor
->image
.height
; i
++)
1629 src
[i
] = dat
[i
] & msk
[i
];
1633 fb_pad_aligned_buffer(data
, d_pitch
, src
, s_pitch
,
1634 cursor
->image
.height
);
1636 bg
= ((info
->cmap
.red
[bg_idx
] & 0xf8) << 7) |
1637 ((info
->cmap
.green
[bg_idx
] & 0xf8) << 2) |
1638 ((info
->cmap
.blue
[bg_idx
] & 0xf8) >> 3) |
1641 fg
= ((info
->cmap
.red
[fg_idx
] & 0xf8) << 7) |
1642 ((info
->cmap
.green
[fg_idx
] & 0xf8) << 2) |
1643 ((info
->cmap
.blue
[fg_idx
] & 0xf8) >> 3) |
1646 par
->riva
.LockUnlock(&par
->riva
, 0);
1648 rivafb_load_cursor_image(par
, data
, bg
, fg
,
1649 cursor
->image
.width
,
1650 cursor
->image
.height
);
1656 par
->riva
.ShowHideCursor(&par
->riva
, 1);
1661 static int rivafb_sync(struct fb_info
*info
)
1663 struct riva_par
*par
= info
->par
;
1669 /* ------------------------------------------------------------------------- *
1671 * initialization helper functions
1673 * ------------------------------------------------------------------------- */
1675 /* kernel interface */
1676 static struct fb_ops riva_fb_ops
= {
1677 .owner
= THIS_MODULE
,
1678 .fb_open
= rivafb_open
,
1679 .fb_release
= rivafb_release
,
1680 .fb_check_var
= rivafb_check_var
,
1681 .fb_set_par
= rivafb_set_par
,
1682 .fb_setcolreg
= rivafb_setcolreg
,
1683 .fb_pan_display
= rivafb_pan_display
,
1684 .fb_blank
= rivafb_blank
,
1685 .fb_fillrect
= rivafb_fillrect
,
1686 .fb_copyarea
= rivafb_copyarea
,
1687 .fb_imageblit
= rivafb_imageblit
,
1688 .fb_cursor
= rivafb_cursor
,
1689 .fb_sync
= rivafb_sync
,
1692 static int riva_set_fbinfo(struct fb_info
*info
)
1694 unsigned int cmap_len
;
1695 struct riva_par
*par
= info
->par
;
1698 info
->flags
= FBINFO_DEFAULT
1699 | FBINFO_HWACCEL_XPAN
1700 | FBINFO_HWACCEL_YPAN
1701 | FBINFO_HWACCEL_COPYAREA
1702 | FBINFO_HWACCEL_FILLRECT
1703 | FBINFO_HWACCEL_IMAGEBLIT
;
1705 /* Accel seems to not work properly on NV30 yet...*/
1706 if ((par
->riva
.Architecture
== NV_ARCH_30
) || noaccel
) {
1707 printk(KERN_DEBUG PFX
"disabling acceleration\n");
1708 info
->flags
|= FBINFO_HWACCEL_DISABLED
;
1711 info
->var
= rivafb_default_var
;
1712 info
->fix
.visual
= (info
->var
.bits_per_pixel
== 8) ?
1713 FB_VISUAL_PSEUDOCOLOR
: FB_VISUAL_DIRECTCOLOR
;
1715 info
->pseudo_palette
= par
->pseudo_palette
;
1717 cmap_len
= riva_get_cmap_len(&info
->var
);
1718 fb_alloc_cmap(&info
->cmap
, cmap_len
, 0);
1720 info
->pixmap
.size
= 8 * 1024;
1721 info
->pixmap
.buf_align
= 4;
1722 info
->pixmap
.access_align
= 32;
1723 info
->pixmap
.flags
= FB_PIXMAP_SYSTEM
;
1724 info
->var
.yres_virtual
= -1;
1726 return (rivafb_check_var(&info
->var
, info
));
1729 static int riva_get_EDID_OF(struct fb_info
*info
, struct pci_dev
*pd
)
1731 struct riva_par
*par
= info
->par
;
1732 struct device_node
*dp
;
1733 const unsigned char *pedid
= NULL
;
1734 const unsigned char *disptype
= NULL
;
1735 static char *propnames
[] = {
1736 "DFP,EDID", "LCD,EDID", "EDID", "EDID1", "EDID,B", "EDID,A", NULL
};
1740 dp
= pci_device_to_OF_node(pd
);
1741 for (; dp
!= NULL
; dp
= dp
->child
) {
1742 disptype
= of_get_property(dp
, "display-type", NULL
);
1743 if (disptype
== NULL
)
1745 if (strncmp(disptype
, "LCD", 3) != 0)
1747 for (i
= 0; propnames
[i
] != NULL
; ++i
) {
1748 pedid
= of_get_property(dp
, propnames
[i
], NULL
);
1749 if (pedid
!= NULL
) {
1750 par
->EDID
= (unsigned char *)pedid
;
1751 NVTRACE("LCD found.\n");
1760 #if defined(CONFIG_FB_RIVA_I2C)
1761 static int riva_get_EDID_i2c(struct fb_info
*info
)
1763 struct riva_par
*par
= info
->par
;
1764 struct fb_var_screeninfo var
;
1768 par
->riva
.LockUnlock(&par
->riva
, 0);
1769 riva_create_i2c_busses(par
);
1770 for (i
= 0; i
< 3; i
++) {
1771 if (!par
->chan
[i
].par
)
1773 riva_probe_i2c_connector(par
, i
, &par
->EDID
);
1774 if (par
->EDID
&& !fb_parse_edid(par
->EDID
, &var
)) {
1775 printk(PFX
"Found EDID Block from BUS %i\n", i
);
1781 return (par
->EDID
) ? 1 : 0;
1783 #endif /* CONFIG_FB_RIVA_I2C */
1785 static void riva_update_default_var(struct fb_var_screeninfo
*var
,
1786 struct fb_info
*info
)
1788 struct fb_monspecs
*specs
= &info
->monspecs
;
1789 struct fb_videomode modedb
;
1792 /* respect mode options */
1794 fb_find_mode(var
, info
, mode_option
,
1795 specs
->modedb
, specs
->modedb_len
,
1797 } else if (specs
->modedb
!= NULL
) {
1798 /* get first mode in database as fallback */
1799 modedb
= specs
->modedb
[0];
1800 /* get preferred timing */
1801 if (info
->monspecs
.misc
& FB_MISC_1ST_DETAIL
) {
1804 for (i
= 0; i
< specs
->modedb_len
; i
++) {
1805 if (specs
->modedb
[i
].flag
& FB_MODE_IS_FIRST
) {
1806 modedb
= specs
->modedb
[i
];
1811 var
->bits_per_pixel
= 8;
1812 riva_update_var(var
, &modedb
);
1818 static void riva_get_EDID(struct fb_info
*info
, struct pci_dev
*pdev
)
1821 if (riva_get_EDID_OF(info
, pdev
)) {
1825 if (IS_ENABLED(CONFIG_OF
))
1826 printk(PFX
"could not retrieve EDID from OF\n");
1827 #if defined(CONFIG_FB_RIVA_I2C)
1828 if (!riva_get_EDID_i2c(info
))
1829 printk(PFX
"could not retrieve EDID from DDC/I2C\n");
1835 static void riva_get_edidinfo(struct fb_info
*info
)
1837 struct fb_var_screeninfo
*var
= &rivafb_default_var
;
1838 struct riva_par
*par
= info
->par
;
1840 fb_edid_to_monspecs(par
->EDID
, &info
->monspecs
);
1841 fb_videomode_to_modelist(info
->monspecs
.modedb
, info
->monspecs
.modedb_len
,
1843 riva_update_default_var(var
, info
);
1845 /* if user specified flatpanel, we respect that */
1846 if (info
->monspecs
.input
& FB_DISP_DDI
)
1850 /* ------------------------------------------------------------------------- *
1854 * ------------------------------------------------------------------------- */
1856 static u32
riva_get_arch(struct pci_dev
*pd
)
1860 switch (pd
->device
& 0x0ff0) {
1861 case 0x0100: /* GeForce 256 */
1862 case 0x0110: /* GeForce2 MX */
1863 case 0x0150: /* GeForce2 */
1864 case 0x0170: /* GeForce4 MX */
1865 case 0x0180: /* GeForce4 MX (8x AGP) */
1866 case 0x01A0: /* nForce */
1867 case 0x01F0: /* nForce2 */
1870 case 0x0200: /* GeForce3 */
1871 case 0x0250: /* GeForce4 Ti */
1872 case 0x0280: /* GeForce4 Ti (8x AGP) */
1875 case 0x0300: /* GeForceFX 5800 */
1876 case 0x0310: /* GeForceFX 5600 */
1877 case 0x0320: /* GeForceFX 5200 */
1878 case 0x0330: /* GeForceFX 5900 */
1879 case 0x0340: /* GeForceFX 5700 */
1882 case 0x0020: /* TNT, TNT2 */
1885 case 0x0010: /* Riva128 */
1888 default: /* unknown architecture */
1894 static int rivafb_probe(struct pci_dev
*pd
, const struct pci_device_id
*ent
)
1896 struct riva_par
*default_par
;
1897 struct fb_info
*info
;
1903 info
= framebuffer_alloc(sizeof(struct riva_par
), &pd
->dev
);
1905 printk (KERN_ERR PFX
"could not allocate memory\n");
1909 default_par
= info
->par
;
1910 default_par
->pdev
= pd
;
1912 info
->pixmap
.addr
= kzalloc(8 * 1024, GFP_KERNEL
);
1913 if (info
->pixmap
.addr
== NULL
) {
1915 goto err_framebuffer_release
;
1918 ret
= pci_enable_device(pd
);
1920 printk(KERN_ERR PFX
"cannot enable PCI device\n");
1921 goto err_free_pixmap
;
1924 ret
= pci_request_regions(pd
, "rivafb");
1926 printk(KERN_ERR PFX
"cannot request PCI regions\n");
1927 goto err_disable_device
;
1930 mutex_init(&default_par
->open_lock
);
1931 default_par
->riva
.Architecture
= riva_get_arch(pd
);
1933 default_par
->Chipset
= (pd
->vendor
<< 16) | pd
->device
;
1934 printk(KERN_INFO PFX
"nVidia device/chipset %X\n",default_par
->Chipset
);
1936 if(default_par
->riva
.Architecture
== 0) {
1937 printk(KERN_ERR PFX
"unknown NV_ARCH\n");
1939 goto err_release_region
;
1941 if(default_par
->riva
.Architecture
== NV_ARCH_10
||
1942 default_par
->riva
.Architecture
== NV_ARCH_20
||
1943 default_par
->riva
.Architecture
== NV_ARCH_30
) {
1944 sprintf(rivafb_fix
.id
, "NV%x", (pd
->device
& 0x0ff0) >> 4);
1946 sprintf(rivafb_fix
.id
, "NV%x", default_par
->riva
.Architecture
);
1949 default_par
->FlatPanel
= flatpanel
;
1951 printk(KERN_INFO PFX
"flatpanel support enabled\n");
1952 default_par
->forceCRTC
= forceCRTC
;
1954 rivafb_fix
.mmio_len
= pci_resource_len(pd
, 0);
1955 rivafb_fix
.smem_len
= pci_resource_len(pd
, 1);
1958 /* enable IO and mem if not already done */
1961 pci_read_config_word(pd
, PCI_COMMAND
, &cmd
);
1962 cmd
|= (PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
);
1963 pci_write_config_word(pd
, PCI_COMMAND
, cmd
);
1966 rivafb_fix
.mmio_start
= pci_resource_start(pd
, 0);
1967 rivafb_fix
.smem_start
= pci_resource_start(pd
, 1);
1969 default_par
->ctrl_base
= ioremap(rivafb_fix
.mmio_start
,
1970 rivafb_fix
.mmio_len
);
1971 if (!default_par
->ctrl_base
) {
1972 printk(KERN_ERR PFX
"cannot ioremap MMIO base\n");
1974 goto err_release_region
;
1977 switch (default_par
->riva
.Architecture
) {
1979 /* Riva128's PRAMIN is in the "framebuffer" space
1980 * Since these cards were never made with more than 8 megabytes
1981 * we can safely allocate this separately.
1983 default_par
->riva
.PRAMIN
= ioremap(rivafb_fix
.smem_start
+ 0x00C00000, 0x00008000);
1984 if (!default_par
->riva
.PRAMIN
) {
1985 printk(KERN_ERR PFX
"cannot ioremap PRAMIN region\n");
1987 goto err_iounmap_ctrl_base
;
1994 default_par
->riva
.PCRTC0
=
1995 (u32 __iomem
*)(default_par
->ctrl_base
+ 0x00600000);
1996 default_par
->riva
.PRAMIN
=
1997 (u32 __iomem
*)(default_par
->ctrl_base
+ 0x00710000);
2000 riva_common_setup(default_par
);
2002 if (default_par
->riva
.Architecture
== NV_ARCH_03
) {
2003 default_par
->riva
.PCRTC
= default_par
->riva
.PCRTC0
2004 = default_par
->riva
.PGRAPH
;
2007 rivafb_fix
.smem_len
= riva_get_memlen(default_par
) * 1024;
2008 default_par
->dclk_max
= riva_get_maxdclk(default_par
) * 1000;
2009 info
->screen_base
= ioremap_wc(rivafb_fix
.smem_start
,
2010 rivafb_fix
.smem_len
);
2011 if (!info
->screen_base
) {
2012 printk(KERN_ERR PFX
"cannot ioremap FB base\n");
2014 goto err_iounmap_pramin
;
2018 default_par
->wc_cookie
=
2019 arch_phys_wc_add(rivafb_fix
.smem_start
,
2020 rivafb_fix
.smem_len
);
2022 info
->fbops
= &riva_fb_ops
;
2023 info
->fix
= rivafb_fix
;
2024 riva_get_EDID(info
, pd
);
2025 riva_get_edidinfo(info
);
2027 ret
=riva_set_fbinfo(info
);
2029 printk(KERN_ERR PFX
"error setting initial video mode\n");
2030 goto err_iounmap_screen_base
;
2033 fb_destroy_modedb(info
->monspecs
.modedb
);
2034 info
->monspecs
.modedb
= NULL
;
2036 pci_set_drvdata(pd
, info
);
2039 riva_bl_init(info
->par
);
2041 ret
= register_framebuffer(info
);
2044 "error registering riva framebuffer\n");
2045 goto err_iounmap_screen_base
;
2048 printk(KERN_INFO PFX
2049 "PCI nVidia %s framebuffer ver %s (%dMB @ 0x%lX)\n",
2052 info
->fix
.smem_len
/ (1024 * 1024),
2053 info
->fix
.smem_start
);
2058 err_iounmap_screen_base
:
2059 #ifdef CONFIG_FB_RIVA_I2C
2060 riva_delete_i2c_busses(info
->par
);
2062 iounmap(info
->screen_base
);
2064 if (default_par
->riva
.Architecture
== NV_ARCH_03
)
2065 iounmap(default_par
->riva
.PRAMIN
);
2066 err_iounmap_ctrl_base
:
2067 iounmap(default_par
->ctrl_base
);
2069 pci_release_regions(pd
);
2072 kfree(info
->pixmap
.addr
);
2073 err_framebuffer_release
:
2074 framebuffer_release(info
);
2079 static void rivafb_remove(struct pci_dev
*pd
)
2081 struct fb_info
*info
= pci_get_drvdata(pd
);
2082 struct riva_par
*par
= info
->par
;
2086 #ifdef CONFIG_FB_RIVA_I2C
2087 riva_delete_i2c_busses(par
);
2091 unregister_framebuffer(info
);
2094 arch_phys_wc_del(par
->wc_cookie
);
2095 iounmap(par
->ctrl_base
);
2096 iounmap(info
->screen_base
);
2097 if (par
->riva
.Architecture
== NV_ARCH_03
)
2098 iounmap(par
->riva
.PRAMIN
);
2099 pci_release_regions(pd
);
2100 kfree(info
->pixmap
.addr
);
2101 framebuffer_release(info
);
2105 /* ------------------------------------------------------------------------- *
2109 * ------------------------------------------------------------------------- */
2112 static int rivafb_setup(char *options
)
2117 if (!options
|| !*options
)
2120 while ((this_opt
= strsep(&options
, ",")) != NULL
) {
2121 if (!strncmp(this_opt
, "forceCRTC", 9)) {
2125 if (!*p
|| !*(++p
)) continue;
2126 forceCRTC
= *p
- '0';
2127 if (forceCRTC
< 0 || forceCRTC
> 1)
2129 } else if (!strncmp(this_opt
, "flatpanel", 9)) {
2131 } else if (!strncmp(this_opt
, "backlight:", 10)) {
2132 backlight
= simple_strtoul(this_opt
+10, NULL
, 0);
2133 } else if (!strncmp(this_opt
, "nomtrr", 6)) {
2135 } else if (!strncmp(this_opt
, "strictmode", 10)) {
2137 } else if (!strncmp(this_opt
, "noaccel", 7)) {
2140 mode_option
= this_opt
;
2145 #endif /* !MODULE */
2147 static struct pci_driver rivafb_driver
= {
2149 .id_table
= rivafb_pci_tbl
,
2150 .probe
= rivafb_probe
,
2151 .remove
= rivafb_remove
,
2156 /* ------------------------------------------------------------------------- *
2160 * ------------------------------------------------------------------------- */
2162 static int rivafb_init(void)
2165 char *option
= NULL
;
2167 if (fb_get_options("rivafb", &option
))
2169 rivafb_setup(option
);
2171 return pci_register_driver(&rivafb_driver
);
2175 module_init(rivafb_init
);
2177 static void __exit
rivafb_exit(void)
2179 pci_unregister_driver(&rivafb_driver
);
2182 module_exit(rivafb_exit
);
2184 module_param(noaccel
, bool, 0);
2185 MODULE_PARM_DESC(noaccel
, "bool: disable acceleration");
2186 module_param(flatpanel
, int, 0);
2187 MODULE_PARM_DESC(flatpanel
, "Enables experimental flat panel support for some chipsets. (0 or 1=enabled) (default=0)");
2188 module_param(forceCRTC
, int, 0);
2189 MODULE_PARM_DESC(forceCRTC
, "Forces usage of a particular CRTC in case autodetection fails. (0 or 1) (default=autodetect)");
2190 module_param(nomtrr
, bool, 0);
2191 MODULE_PARM_DESC(nomtrr
, "Disables MTRR support (0 or 1=disabled) (default=0)");
2192 module_param(strictmode
, bool, 0);
2193 MODULE_PARM_DESC(strictmode
, "Only use video modes from EDID");
2195 MODULE_AUTHOR("Ani Joshi, maintainer");
2196 MODULE_DESCRIPTION("Framebuffer driver for nVidia Riva 128, TNT, TNT2, and the GeForce series");
2197 MODULE_LICENSE("GPL");