5 * Author: Hannu Mallat <hmallat@cc.hut.fi>
7 * Copyright © 1999 Hannu Mallat
10 * Created : Thu Sep 23 18:17:43 1999, hmallat
11 * Last modified: Tue Nov 2 21:19:47 1999, hmallat
13 * Lots of the information here comes from the Daryll Strauss' Banshee
14 * patches to the XF86 server, and the rest comes from the 3dfx
15 * Banshee specification. I'm very much indebted to Daryll for his
16 * work on the X server.
18 * Voodoo3 support was contributed Harold Oga. Lots of additions
19 * (proper acceleration, 24 bpp, hardware cursor) and bug fixes by Attila
20 * Kesmarki. Thanks guys!
22 * Voodoo1 and Voodoo2 support aren't relevant to this driver as they
23 * behave very differently from the Voodoo3/4/5. For anyone wanting to
24 * use frame buffer on the Voodoo1/2, see the sstfb driver (which is
25 * located at http://www.sourceforge.net/projects/sstfb).
27 * While I _am_ grateful to 3Dfx for releasing the specs for Banshee,
28 * I do wish the next version is a bit more complete. Without the XF86
29 * patches I couldn't have gotten even this far... for instance, the
30 * extensions to the VGA register set go completely unmentioned in the
31 * spec! Also, lots of references are made to the 'SST core', but no
32 * spec is publicly available, AFAIK.
34 * The structure of this driver comes pretty much from the Permedia
35 * driver by Ilario Nardinocchi, which in turn is based on skeletonfb.
38 * - multihead support (basically need to support an array of fb_infos)
39 * - support other architectures (PPC, Alpha); does the fact that the VGA
40 * core can be accessed only thru I/O (not memory mapped) complicate
45 * 0.1.4 (released 2002-05-28) ported over to new fbdev api by James Simmons
47 * 0.1.3 (released 1999-11-02) added Attila's panning support, code
48 * reorg, hwcursor address page size alignment
49 * (for mmaping both frame buffer and regs),
50 * and my changes to get rid of hardcoded
51 * VGA i/o register locations (uses PCI
52 * configuration info now)
53 * 0.1.2 (released 1999-10-19) added Attila Kesmarki's bug fixes and
55 * 0.1.1 (released 1999-10-07) added Voodoo3 support by Harold Oga.
56 * 0.1.0 (released 1999-10-06) initial version
60 #include <linux/module.h>
61 #include <linux/kernel.h>
62 #include <linux/errno.h>
63 #include <linux/string.h>
65 #include <linux/slab.h>
67 #include <linux/init.h>
68 #include <linux/pci.h>
71 #include <video/tdfx.h>
73 #define DPRINTK(a, b...) pr_debug("fb: %s: " a, __func__ , ## b)
78 /* duplicate asm/mtrr.h defines to work on archs without mtrr */
79 #define MTRR_TYPE_WRCOMB 1
81 static inline int mtrr_add(unsigned long base
, unsigned long size
,
82 unsigned int type
, char increment
)
86 static inline int mtrr_del(int reg
, unsigned long base
,
93 #define BANSHEE_MAX_PIXCLOCK 270000
94 #define VOODOO3_MAX_PIXCLOCK 300000
95 #define VOODOO5_MAX_PIXCLOCK 350000
97 static struct fb_fix_screeninfo tdfx_fix __devinitdata
= {
99 .type
= FB_TYPE_PACKED_PIXELS
,
100 .visual
= FB_VISUAL_PSEUDOCOLOR
,
103 .accel
= FB_ACCEL_3DFX_BANSHEE
106 static struct fb_var_screeninfo tdfx_var __devinitdata
= {
107 /* "640x480, 8 bpp @ 60 Hz */
111 .yres_virtual
= 1024,
116 .activate
= FB_ACTIVATE_NOW
,
119 .accel_flags
= FB_ACCELF_TEXT
,
127 .vmode
= FB_VMODE_NONINTERLACED
131 * PCI driver prototypes
133 static int __devinit
tdfxfb_probe(struct pci_dev
*pdev
,
134 const struct pci_device_id
*id
);
135 static void __devexit
tdfxfb_remove(struct pci_dev
*pdev
);
137 static struct pci_device_id tdfxfb_id_table
[] = {
138 { PCI_VENDOR_ID_3DFX
, PCI_DEVICE_ID_3DFX_BANSHEE
,
139 PCI_ANY_ID
, PCI_ANY_ID
, PCI_BASE_CLASS_DISPLAY
<< 16,
141 { PCI_VENDOR_ID_3DFX
, PCI_DEVICE_ID_3DFX_VOODOO3
,
142 PCI_ANY_ID
, PCI_ANY_ID
, PCI_BASE_CLASS_DISPLAY
<< 16,
144 { PCI_VENDOR_ID_3DFX
, PCI_DEVICE_ID_3DFX_VOODOO5
,
145 PCI_ANY_ID
, PCI_ANY_ID
, PCI_BASE_CLASS_DISPLAY
<< 16,
150 static struct pci_driver tdfxfb_driver
= {
152 .id_table
= tdfxfb_id_table
,
153 .probe
= tdfxfb_probe
,
154 .remove
= __devexit_p(tdfxfb_remove
),
157 MODULE_DEVICE_TABLE(pci
, tdfxfb_id_table
);
163 static int nowrap
= 1; /* not implemented (yet) */
164 static int hwcursor
= 1;
165 static char *mode_option __devinitdata
;
167 static int nomtrr __devinitdata
;
169 /* -------------------------------------------------------------------------
170 * Hardware-specific funcions
171 * ------------------------------------------------------------------------- */
173 static inline u8
vga_inb(struct tdfx_par
*par
, u32 reg
)
175 return inb(par
->iobase
+ reg
- 0x300);
178 static inline void vga_outb(struct tdfx_par
*par
, u32 reg
, u8 val
)
180 outb(val
, par
->iobase
+ reg
- 0x300);
183 static inline void gra_outb(struct tdfx_par
*par
, u32 idx
, u8 val
)
185 vga_outb(par
, GRA_I
, idx
);
187 vga_outb(par
, GRA_D
, val
);
191 static inline void seq_outb(struct tdfx_par
*par
, u32 idx
, u8 val
)
193 vga_outb(par
, SEQ_I
, idx
);
195 vga_outb(par
, SEQ_D
, val
);
199 static inline u8
seq_inb(struct tdfx_par
*par
, u32 idx
)
201 vga_outb(par
, SEQ_I
, idx
);
203 return vga_inb(par
, SEQ_D
);
206 static inline void crt_outb(struct tdfx_par
*par
, u32 idx
, u8 val
)
208 vga_outb(par
, CRT_I
, idx
);
210 vga_outb(par
, CRT_D
, val
);
214 static inline u8
crt_inb(struct tdfx_par
*par
, u32 idx
)
216 vga_outb(par
, CRT_I
, idx
);
218 return vga_inb(par
, CRT_D
);
221 static inline void att_outb(struct tdfx_par
*par
, u32 idx
, u8 val
)
225 tmp
= vga_inb(par
, IS1_R
);
226 vga_outb(par
, ATT_IW
, idx
);
227 vga_outb(par
, ATT_IW
, val
);
230 static inline void vga_disable_video(struct tdfx_par
*par
)
234 s
= seq_inb(par
, 0x01) | 0x20;
235 seq_outb(par
, 0x00, 0x01);
236 seq_outb(par
, 0x01, s
);
237 seq_outb(par
, 0x00, 0x03);
240 static inline void vga_enable_video(struct tdfx_par
*par
)
244 s
= seq_inb(par
, 0x01) & 0xdf;
245 seq_outb(par
, 0x00, 0x01);
246 seq_outb(par
, 0x01, s
);
247 seq_outb(par
, 0x00, 0x03);
250 static inline void vga_enable_palette(struct tdfx_par
*par
)
254 vga_outb(par
, ATT_IW
, 0x20);
257 static inline u32
tdfx_inl(struct tdfx_par
*par
, unsigned int reg
)
259 return readl(par
->regbase_virt
+ reg
);
262 static inline void tdfx_outl(struct tdfx_par
*par
, unsigned int reg
, u32 val
)
264 writel(val
, par
->regbase_virt
+ reg
);
267 static inline void banshee_make_room(struct tdfx_par
*par
, int size
)
269 /* Note: The Voodoo3's onboard FIFO has 32 slots. This loop
270 * won't quit if you ask for more. */
271 while ((tdfx_inl(par
, STATUS
) & 0x1f) < size
- 1)
275 static int banshee_wait_idle(struct fb_info
*info
)
277 struct tdfx_par
*par
= info
->par
;
280 banshee_make_room(par
, 1);
281 tdfx_outl(par
, COMMAND_3D
, COMMAND_3D_NOP
);
284 if ((tdfx_inl(par
, STATUS
) & STATUS_BUSY
) == 0)
292 * Set the color of a palette entry in 8bpp mode
294 static inline void do_setpalentry(struct tdfx_par
*par
, unsigned regno
, u32 c
)
296 banshee_make_room(par
, 2);
297 tdfx_outl(par
, DACADDR
, regno
);
298 /* read after write makes it working */
299 tdfx_inl(par
, DACADDR
);
300 tdfx_outl(par
, DACDATA
, c
);
303 static u32
do_calc_pll(int freq
, int *freq_out
)
305 int m
, n
, k
, best_m
, best_n
, best_k
, best_error
;
309 best_n
= best_m
= best_k
= 0;
311 for (k
= 3; k
>= 0; k
--) {
312 for (m
= 63; m
>= 0; m
--) {
314 * Estimate value of n that produces target frequency
315 * with current m and k
317 int n_estimated
= ((freq
* (m
+ 2) << k
) / fref
) - 2;
319 /* Search neighborhood of estimated n */
320 for (n
= max(0, n_estimated
);
321 n
<= min(255, n_estimated
+ 1);
324 * Calculate PLL freqency with current m, k and
327 int f
= (fref
* (n
+ 2) / (m
+ 2)) >> k
;
328 int error
= abs(f
- freq
);
331 * If this is the closest we've come to the
332 * target frequency then remember n, m and k
334 if (error
< best_error
) {
347 *freq_out
= (fref
* (n
+ 2) / (m
+ 2)) >> k
;
349 return (n
<< 8) | (m
<< 2) | k
;
352 static void do_write_regs(struct fb_info
*info
, struct banshee_reg
*reg
)
354 struct tdfx_par
*par
= info
->par
;
357 banshee_wait_idle(info
);
359 tdfx_outl(par
, MISCINIT1
, tdfx_inl(par
, MISCINIT1
) | 0x01);
361 crt_outb(par
, 0x11, crt_inb(par
, 0x11) & 0x7f); /* CRT unprotect */
363 banshee_make_room(par
, 3);
364 tdfx_outl(par
, VGAINIT1
, reg
->vgainit1
& 0x001FFFFF);
365 tdfx_outl(par
, VIDPROCCFG
, reg
->vidcfg
& ~0x00000001);
367 tdfx_outl(par
, PLLCTRL1
, reg
->mempll
);
368 tdfx_outl(par
, PLLCTRL2
, reg
->gfxpll
);
370 tdfx_outl(par
, PLLCTRL0
, reg
->vidpll
);
372 vga_outb(par
, MISC_W
, reg
->misc
[0x00] | 0x01);
374 for (i
= 0; i
< 5; i
++)
375 seq_outb(par
, i
, reg
->seq
[i
]);
377 for (i
= 0; i
< 25; i
++)
378 crt_outb(par
, i
, reg
->crt
[i
]);
380 for (i
= 0; i
< 9; i
++)
381 gra_outb(par
, i
, reg
->gra
[i
]);
383 for (i
= 0; i
< 21; i
++)
384 att_outb(par
, i
, reg
->att
[i
]);
386 crt_outb(par
, 0x1a, reg
->ext
[0]);
387 crt_outb(par
, 0x1b, reg
->ext
[1]);
389 vga_enable_palette(par
);
390 vga_enable_video(par
);
392 banshee_make_room(par
, 9);
393 tdfx_outl(par
, VGAINIT0
, reg
->vgainit0
);
394 tdfx_outl(par
, DACMODE
, reg
->dacmode
);
395 tdfx_outl(par
, VIDDESKSTRIDE
, reg
->stride
);
396 tdfx_outl(par
, HWCURPATADDR
, reg
->curspataddr
);
398 tdfx_outl(par
, VIDSCREENSIZE
, reg
->screensize
);
399 tdfx_outl(par
, VIDDESKSTART
, reg
->startaddr
);
400 tdfx_outl(par
, VIDPROCCFG
, reg
->vidcfg
);
401 tdfx_outl(par
, VGAINIT1
, reg
->vgainit1
);
402 tdfx_outl(par
, MISCINIT0
, reg
->miscinit0
);
404 banshee_make_room(par
, 8);
405 tdfx_outl(par
, SRCBASE
, reg
->startaddr
);
406 tdfx_outl(par
, DSTBASE
, reg
->startaddr
);
407 tdfx_outl(par
, COMMANDEXTRA_2D
, 0);
408 tdfx_outl(par
, CLIP0MIN
, 0);
409 tdfx_outl(par
, CLIP0MAX
, 0x0fff0fff);
410 tdfx_outl(par
, CLIP1MIN
, 0);
411 tdfx_outl(par
, CLIP1MAX
, 0x0fff0fff);
412 tdfx_outl(par
, SRCXY
, 0);
414 banshee_wait_idle(info
);
417 static unsigned long do_lfb_size(struct tdfx_par
*par
, unsigned short dev_id
)
419 u32 draminit0
= tdfx_inl(par
, DRAMINIT0
);
420 u32 draminit1
= tdfx_inl(par
, DRAMINIT1
);
422 int num_chips
= (draminit0
& DRAMINIT0_SGRAM_NUM
) ? 8 : 4;
423 int chip_size
; /* in MB */
424 int has_sgram
= draminit1
& DRAMINIT1_MEM_SDRAM
;
426 if (dev_id
< PCI_DEVICE_ID_3DFX_VOODOO5
) {
427 /* Banshee/Voodoo3 */
429 if (has_sgram
&& (draminit0
& DRAMINIT0_SGRAM_TYPE
))
434 chip_size
= draminit0
& DRAMINIT0_SGRAM_TYPE_MASK
;
435 chip_size
= 1 << (chip_size
>> DRAMINIT0_SGRAM_TYPE_SHIFT
);
438 /* disable block writes for SDRAM */
439 miscinit1
= tdfx_inl(par
, MISCINIT1
);
440 miscinit1
|= has_sgram
? 0 : MISCINIT1_2DBLOCK_DIS
;
441 miscinit1
|= MISCINIT1_CLUT_INV
;
443 banshee_make_room(par
, 1);
444 tdfx_outl(par
, MISCINIT1
, miscinit1
);
445 return num_chips
* chip_size
* 1024l * 1024;
448 /* ------------------------------------------------------------------------- */
450 static int tdfxfb_check_var(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
452 struct tdfx_par
*par
= info
->par
;
455 if (var
->bits_per_pixel
!= 8 && var
->bits_per_pixel
!= 16 &&
456 var
->bits_per_pixel
!= 24 && var
->bits_per_pixel
!= 32) {
457 DPRINTK("depth not supported: %u\n", var
->bits_per_pixel
);
461 if (var
->xres
!= var
->xres_virtual
)
462 var
->xres_virtual
= var
->xres
;
464 if (var
->yres
> var
->yres_virtual
)
465 var
->yres_virtual
= var
->yres
;
468 DPRINTK("xoffset not supported\n");
474 * Banshee doesn't support interlace, but Voodoo4/5 and probably
476 * no direct information about device id now?
477 * use max_pixclock for this...
479 if (((var
->vmode
& FB_VMODE_MASK
) == FB_VMODE_INTERLACED
) &&
480 (par
->max_pixclock
< VOODOO3_MAX_PIXCLOCK
)) {
481 DPRINTK("interlace not supported\n");
485 var
->xres
= (var
->xres
+ 15) & ~15; /* could sometimes be 8 */
486 lpitch
= var
->xres
* ((var
->bits_per_pixel
+ 7) >> 3);
488 if (var
->xres
< 320 || var
->xres
> 2048) {
489 DPRINTK("width not supported: %u\n", var
->xres
);
493 if (var
->yres
< 200 || var
->yres
> 2048) {
494 DPRINTK("height not supported: %u\n", var
->yres
);
498 if (lpitch
* var
->yres_virtual
> info
->fix
.smem_len
) {
499 var
->yres_virtual
= info
->fix
.smem_len
/ lpitch
;
500 if (var
->yres_virtual
< var
->yres
) {
501 DPRINTK("no memory for screen (%ux%ux%u)\n",
502 var
->xres
, var
->yres_virtual
,
503 var
->bits_per_pixel
);
508 if (PICOS2KHZ(var
->pixclock
) > par
->max_pixclock
) {
509 DPRINTK("pixclock too high (%ldKHz)\n",
510 PICOS2KHZ(var
->pixclock
));
514 var
->transp
.offset
= 0;
515 var
->transp
.length
= 0;
516 switch (var
->bits_per_pixel
) {
520 var
->green
= var
->red
;
521 var
->blue
= var
->red
;
524 var
->red
.offset
= 11;
526 var
->green
.offset
= 5;
527 var
->green
.length
= 6;
528 var
->blue
.offset
= 0;
529 var
->blue
.length
= 5;
532 var
->transp
.offset
= 24;
533 var
->transp
.length
= 8;
535 var
->red
.offset
= 16;
536 var
->green
.offset
= 8;
537 var
->blue
.offset
= 0;
538 var
->red
.length
= var
->green
.length
= var
->blue
.length
= 8;
544 var
->accel_flags
= FB_ACCELF_TEXT
;
546 DPRINTK("Checking graphics mode at %dx%d depth %d\n",
547 var
->xres
, var
->yres
, var
->bits_per_pixel
);
551 static int tdfxfb_set_par(struct fb_info
*info
)
553 struct tdfx_par
*par
= info
->par
;
554 u32 hdispend
= info
->var
.xres
;
555 u32 hsyncsta
= hdispend
+ info
->var
.right_margin
;
556 u32 hsyncend
= hsyncsta
+ info
->var
.hsync_len
;
557 u32 htotal
= hsyncend
+ info
->var
.left_margin
;
558 u32 hd
, hs
, he
, ht
, hbs
, hbe
;
559 u32 vd
, vs
, ve
, vt
, vbs
, vbe
;
560 struct banshee_reg reg
;
563 u32 cpp
= (info
->var
.bits_per_pixel
+ 7) >> 3;
565 memset(®
, 0, sizeof(reg
));
567 reg
.vidcfg
= VIDCFG_VIDPROC_ENABLE
| VIDCFG_DESK_ENABLE
|
569 ((cpp
- 1) << VIDCFG_PIXFMT_SHIFT
) |
570 (cpp
!= 1 ? VIDCFG_CLUT_BYPASS
: 0);
573 freq
= PICOS2KHZ(info
->var
.pixclock
);
575 reg
.vidcfg
&= ~VIDCFG_2X
;
577 if (freq
> par
->max_pixclock
/ 2) {
578 freq
= freq
> par
->max_pixclock
? par
->max_pixclock
: freq
;
579 reg
.dacmode
|= DACMODE_2X
;
580 reg
.vidcfg
|= VIDCFG_2X
;
587 wd
= (hdispend
>> 3) - 1;
589 hs
= (hsyncsta
>> 3) - 1;
590 he
= (hsyncend
>> 3) - 1;
591 ht
= (htotal
>> 3) - 1;
595 if ((info
->var
.vmode
& FB_VMODE_MASK
) == FB_VMODE_DOUBLE
) {
596 vd
= (info
->var
.yres
<< 1) - 1;
597 vs
= vd
+ (info
->var
.lower_margin
<< 1);
598 ve
= vs
+ (info
->var
.vsync_len
<< 1);
599 vt
= ve
+ (info
->var
.upper_margin
<< 1) - 1;
600 reg
.screensize
= info
->var
.xres
| (info
->var
.yres
<< 13);
601 reg
.vidcfg
|= VIDCFG_HALF_MODE
;
602 reg
.crt
[0x09] = 0x80;
604 vd
= info
->var
.yres
- 1;
605 vs
= vd
+ info
->var
.lower_margin
;
606 ve
= vs
+ info
->var
.vsync_len
;
607 vt
= ve
+ info
->var
.upper_margin
- 1;
608 reg
.screensize
= info
->var
.xres
| (info
->var
.yres
<< 12);
609 reg
.vidcfg
&= ~VIDCFG_HALF_MODE
;
614 /* this is all pretty standard VGA register stuffing */
615 reg
.misc
[0x00] = 0x0f |
616 (info
->var
.xres
< 400 ? 0xa0 :
617 info
->var
.xres
< 480 ? 0x60 :
618 info
->var
.xres
< 768 ? 0xe0 : 0x20);
620 reg
.gra
[0x05] = 0x40;
621 reg
.gra
[0x06] = 0x05;
622 reg
.gra
[0x07] = 0x0f;
623 reg
.gra
[0x08] = 0xff;
625 reg
.att
[0x00] = 0x00;
626 reg
.att
[0x01] = 0x01;
627 reg
.att
[0x02] = 0x02;
628 reg
.att
[0x03] = 0x03;
629 reg
.att
[0x04] = 0x04;
630 reg
.att
[0x05] = 0x05;
631 reg
.att
[0x06] = 0x06;
632 reg
.att
[0x07] = 0x07;
633 reg
.att
[0x08] = 0x08;
634 reg
.att
[0x09] = 0x09;
635 reg
.att
[0x0a] = 0x0a;
636 reg
.att
[0x0b] = 0x0b;
637 reg
.att
[0x0c] = 0x0c;
638 reg
.att
[0x0d] = 0x0d;
639 reg
.att
[0x0e] = 0x0e;
640 reg
.att
[0x0f] = 0x0f;
641 reg
.att
[0x10] = 0x41;
642 reg
.att
[0x12] = 0x0f;
644 reg
.seq
[0x00] = 0x03;
645 reg
.seq
[0x01] = 0x01; /* fixme: clkdiv2? */
646 reg
.seq
[0x02] = 0x0f;
647 reg
.seq
[0x03] = 0x00;
648 reg
.seq
[0x04] = 0x0e;
650 reg
.crt
[0x00] = ht
- 4;
653 reg
.crt
[0x03] = 0x80 | (hbe
& 0x1f);
655 reg
.crt
[0x05] = ((hbe
& 0x20) << 2) | (he
& 0x1f);
657 reg
.crt
[0x07] = ((vs
& 0x200) >> 2) |
658 ((vd
& 0x200) >> 3) |
659 ((vt
& 0x200) >> 4) | 0x10 |
660 ((vbs
& 0x100) >> 5) |
661 ((vs
& 0x100) >> 6) |
662 ((vd
& 0x100) >> 7) |
664 reg
.crt
[0x09] |= 0x40 | ((vbs
& 0x200) >> 4);
666 reg
.crt
[0x11] = (ve
& 0x0f) | 0x20;
670 reg
.crt
[0x16] = vbe
+ 1;
671 reg
.crt
[0x17] = 0xc3;
672 reg
.crt
[0x18] = 0xff;
674 /* Banshee's nonvga stuff */
675 reg
.ext
[0x00] = (((ht
& 0x100) >> 8) |
676 ((hd
& 0x100) >> 6) |
677 ((hbs
& 0x100) >> 4) |
678 ((hbe
& 0x40) >> 1) |
679 ((hs
& 0x100) >> 2) |
681 reg
.ext
[0x01] = (((vt
& 0x400) >> 10) |
682 ((vd
& 0x400) >> 8) |
683 ((vbs
& 0x400) >> 6) |
684 ((vbe
& 0x400) >> 4));
686 reg
.vgainit0
= VGAINIT0_8BIT_DAC
|
687 VGAINIT0_EXT_ENABLE
|
688 VGAINIT0_WAKEUP_3C3
|
689 VGAINIT0_ALT_READBACK
|
690 VGAINIT0_EXTSHIFTOUT
;
691 reg
.vgainit1
= tdfx_inl(par
, VGAINIT1
) & 0x1fffff;
694 reg
.curspataddr
= info
->fix
.smem_len
;
699 reg
.cursc1
= 0xffffff;
701 reg
.stride
= info
->var
.xres
* cpp
;
702 reg
.startaddr
= info
->var
.yoffset
* reg
.stride
703 + info
->var
.xoffset
* cpp
;
705 reg
.vidpll
= do_calc_pll(freq
, &fout
);
707 reg
.mempll
= do_calc_pll(..., &fout
);
708 reg
.gfxpll
= do_calc_pll(..., &fout
);
711 if ((info
->var
.vmode
& FB_VMODE_MASK
) == FB_VMODE_INTERLACED
)
712 reg
.vidcfg
|= VIDCFG_INTERLACE
;
713 reg
.miscinit0
= tdfx_inl(par
, MISCINIT0
);
715 #if defined(__BIG_ENDIAN)
716 switch (info
->var
.bits_per_pixel
) {
719 reg
.miscinit0
&= ~(1 << 30);
720 reg
.miscinit0
&= ~(1 << 31);
723 reg
.miscinit0
|= (1 << 30);
724 reg
.miscinit0
|= (1 << 31);
727 reg
.miscinit0
|= (1 << 30);
728 reg
.miscinit0
&= ~(1 << 31);
732 do_write_regs(info
, ®
);
734 /* Now change fb_fix_screeninfo according to changes in par */
735 info
->fix
.line_length
= reg
.stride
;
736 info
->fix
.visual
= (info
->var
.bits_per_pixel
== 8)
737 ? FB_VISUAL_PSEUDOCOLOR
738 : FB_VISUAL_TRUECOLOR
;
739 DPRINTK("Graphics mode is now set at %dx%d depth %d\n",
740 info
->var
.xres
, info
->var
.yres
, info
->var
.bits_per_pixel
);
744 /* A handy macro shamelessly pinched from matroxfb */
745 #define CNVT_TOHW(val, width) ((((val) << (width)) + 0x7FFF - (val)) >> 16)
747 static int tdfxfb_setcolreg(unsigned regno
, unsigned red
, unsigned green
,
748 unsigned blue
, unsigned transp
,
749 struct fb_info
*info
)
751 struct tdfx_par
*par
= info
->par
;
754 if (regno
>= info
->cmap
.len
|| regno
> 255)
757 /* grayscale works only partially under directcolor */
758 if (info
->var
.grayscale
) {
759 /* grayscale = 0.30*R + 0.59*G + 0.11*B */
760 blue
= (red
* 77 + green
* 151 + blue
* 28) >> 8;
765 switch (info
->fix
.visual
) {
766 case FB_VISUAL_PSEUDOCOLOR
:
767 rgbcol
= (((u32
)red
& 0xff00) << 8) |
768 (((u32
)green
& 0xff00) << 0) |
769 (((u32
)blue
& 0xff00) >> 8);
770 do_setpalentry(par
, regno
, rgbcol
);
772 /* Truecolor has no hardware color palettes. */
773 case FB_VISUAL_TRUECOLOR
:
775 rgbcol
= (CNVT_TOHW(red
, info
->var
.red
.length
) <<
776 info
->var
.red
.offset
) |
777 (CNVT_TOHW(green
, info
->var
.green
.length
) <<
778 info
->var
.green
.offset
) |
779 (CNVT_TOHW(blue
, info
->var
.blue
.length
) <<
780 info
->var
.blue
.offset
) |
781 (CNVT_TOHW(transp
, info
->var
.transp
.length
) <<
782 info
->var
.transp
.offset
);
783 par
->palette
[regno
] = rgbcol
;
788 DPRINTK("bad depth %u\n", info
->var
.bits_per_pixel
);
795 /* 0 unblank, 1 blank, 2 no vsync, 3 no hsync, 4 off */
796 static int tdfxfb_blank(int blank
, struct fb_info
*info
)
798 struct tdfx_par
*par
= info
->par
;
800 u32 dacmode
= tdfx_inl(par
, DACMODE
);
802 dacmode
&= ~(BIT(1) | BIT(3));
805 case FB_BLANK_UNBLANK
: /* Screen: On; HSync: On, VSync: On */
808 case FB_BLANK_NORMAL
: /* Screen: Off; HSync: On, VSync: On */
810 case FB_BLANK_VSYNC_SUSPEND
: /* Screen: Off; HSync: On, VSync: Off */
813 case FB_BLANK_HSYNC_SUSPEND
: /* Screen: Off; HSync: Off, VSync: On */
816 case FB_BLANK_POWERDOWN
: /* Screen: Off; HSync: Off, VSync: Off */
817 dacmode
|= BIT(1) | BIT(3);
821 banshee_make_room(par
, 1);
822 tdfx_outl(par
, DACMODE
, dacmode
);
824 vga_disable_video(par
);
826 vga_enable_video(par
);
831 * Set the starting position of the visible screen to var->yoffset
833 static int tdfxfb_pan_display(struct fb_var_screeninfo
*var
,
834 struct fb_info
*info
)
836 struct tdfx_par
*par
= info
->par
;
837 u32 addr
= var
->yoffset
* info
->fix
.line_length
;
839 if (nopan
|| var
->xoffset
)
842 banshee_make_room(par
, 1);
843 tdfx_outl(par
, VIDDESKSTART
, addr
);
848 #ifdef CONFIG_FB_3DFX_ACCEL
850 * FillRect 2D command (solidfill or invert (via ROP_XOR))
852 static void tdfxfb_fillrect(struct fb_info
*info
,
853 const struct fb_fillrect
*rect
)
855 struct tdfx_par
*par
= info
->par
;
856 u32 bpp
= info
->var
.bits_per_pixel
;
857 u32 stride
= info
->fix
.line_length
;
858 u32 fmt
= stride
| ((bpp
+ ((bpp
== 8) ? 0 : 8)) << 13);
864 if (rect
->rop
== ROP_COPY
)
865 tdfx_rop
= TDFX_ROP_COPY
;
867 tdfx_rop
= TDFX_ROP_XOR
;
869 /* asume always rect->height < 4096 */
870 if (dy
+ rect
->height
> 4095) {
871 dstbase
= stride
* dy
;
874 /* asume always rect->width < 4096 */
875 if (dx
+ rect
->width
> 4095) {
876 dstbase
+= dx
* bpp
>> 3;
879 banshee_make_room(par
, 6);
880 tdfx_outl(par
, DSTFORMAT
, fmt
);
881 if (info
->fix
.visual
== FB_VISUAL_PSEUDOCOLOR
) {
882 tdfx_outl(par
, COLORFORE
, rect
->color
);
883 } else { /* FB_VISUAL_TRUECOLOR */
884 tdfx_outl(par
, COLORFORE
, par
->palette
[rect
->color
]);
886 tdfx_outl(par
, COMMAND_2D
, COMMAND_2D_FILLRECT
| (tdfx_rop
<< 24));
887 tdfx_outl(par
, DSTBASE
, dstbase
);
888 tdfx_outl(par
, DSTSIZE
, rect
->width
| (rect
->height
<< 16));
889 tdfx_outl(par
, LAUNCH_2D
, dx
| (dy
<< 16));
893 * Screen-to-Screen BitBlt 2D command (for the bmove fb op.)
895 static void tdfxfb_copyarea(struct fb_info
*info
,
896 const struct fb_copyarea
*area
)
898 struct tdfx_par
*par
= info
->par
;
899 u32 sx
= area
->sx
, sy
= area
->sy
, dx
= area
->dx
, dy
= area
->dy
;
900 u32 bpp
= info
->var
.bits_per_pixel
;
901 u32 stride
= info
->fix
.line_length
;
902 u32 blitcmd
= COMMAND_2D_S2S_BITBLT
| (TDFX_ROP_COPY
<< 24);
903 u32 fmt
= stride
| ((bpp
+ ((bpp
== 8) ? 0 : 8)) << 13);
907 /* asume always area->height < 4096 */
908 if (sy
+ area
->height
> 4095) {
909 srcbase
= stride
* sy
;
912 /* asume always area->width < 4096 */
913 if (sx
+ area
->width
> 4095) {
914 srcbase
+= sx
* bpp
>> 3;
917 /* asume always area->height < 4096 */
918 if (dy
+ area
->height
> 4095) {
919 dstbase
= stride
* dy
;
922 /* asume always area->width < 4096 */
923 if (dx
+ area
->width
> 4095) {
924 dstbase
+= dx
* bpp
>> 3;
928 if (area
->sx
<= area
->dx
) {
931 sx
+= area
->width
- 1;
932 dx
+= area
->width
- 1;
934 if (area
->sy
<= area
->dy
) {
937 sy
+= area
->height
- 1;
938 dy
+= area
->height
- 1;
941 banshee_make_room(par
, 8);
943 tdfx_outl(par
, SRCFORMAT
, fmt
);
944 tdfx_outl(par
, DSTFORMAT
, fmt
);
945 tdfx_outl(par
, COMMAND_2D
, blitcmd
);
946 tdfx_outl(par
, DSTSIZE
, area
->width
| (area
->height
<< 16));
947 tdfx_outl(par
, DSTXY
, dx
| (dy
<< 16));
948 tdfx_outl(par
, SRCBASE
, srcbase
);
949 tdfx_outl(par
, DSTBASE
, dstbase
);
950 tdfx_outl(par
, LAUNCH_2D
, sx
| (sy
<< 16));
953 static void tdfxfb_imageblit(struct fb_info
*info
, const struct fb_image
*image
)
955 struct tdfx_par
*par
= info
->par
;
956 int size
= image
->height
* ((image
->width
* image
->depth
+ 7) >> 3);
958 int i
, stride
= info
->fix
.line_length
;
959 u32 bpp
= info
->var
.bits_per_pixel
;
960 u32 dstfmt
= stride
| ((bpp
+ ((bpp
== 8) ? 0 : 8)) << 13);
961 u8
*chardata
= (u8
*) image
->data
;
967 if (image
->depth
!= 1) {
969 banshee_make_room(par
, 6 + ((size
+ 3) >> 2));
970 srcfmt
= stride
| ((bpp
+ ((bpp
== 8) ? 0 : 8)) << 13) |
973 cfb_imageblit(info
, image
);
977 banshee_make_room(par
, 9);
978 switch (info
->fix
.visual
) {
979 case FB_VISUAL_PSEUDOCOLOR
:
980 tdfx_outl(par
, COLORFORE
, image
->fg_color
);
981 tdfx_outl(par
, COLORBACK
, image
->bg_color
);
983 case FB_VISUAL_TRUECOLOR
:
985 tdfx_outl(par
, COLORFORE
,
986 par
->palette
[image
->fg_color
]);
987 tdfx_outl(par
, COLORBACK
,
988 par
->palette
[image
->bg_color
]);
991 srcfmt
= 0x400000 | BIT(20);
995 /* asume always image->height < 4096 */
996 if (dy
+ image
->height
> 4095) {
997 dstbase
= stride
* dy
;
1000 /* asume always image->width < 4096 */
1001 if (dx
+ image
->width
> 4095) {
1002 dstbase
+= dx
* bpp
>> 3;
1006 tdfx_outl(par
, DSTBASE
, dstbase
);
1007 tdfx_outl(par
, SRCXY
, 0);
1008 tdfx_outl(par
, DSTXY
, dx
| (dy
<< 16));
1009 tdfx_outl(par
, COMMAND_2D
,
1010 COMMAND_2D_H2S_BITBLT
| (TDFX_ROP_COPY
<< 24));
1011 tdfx_outl(par
, SRCFORMAT
, srcfmt
);
1012 tdfx_outl(par
, DSTFORMAT
, dstfmt
);
1013 tdfx_outl(par
, DSTSIZE
, image
->width
| (image
->height
<< 16));
1015 /* A count of how many free FIFO entries we've requested.
1016 * When this goes negative, we need to request more. */
1019 /* Send four bytes at a time of data */
1020 for (i
= (size
>> 2); i
> 0; i
--) {
1021 if (--fifo_free
< 0) {
1023 banshee_make_room(par
, fifo_free
);
1025 tdfx_outl(par
, LAUNCH_2D
, *(u32
*)chardata
);
1029 /* Send the leftovers now */
1030 banshee_make_room(par
, 3);
1035 tdfx_outl(par
, LAUNCH_2D
, *chardata
);
1038 tdfx_outl(par
, LAUNCH_2D
, *(u16
*)chardata
);
1041 tdfx_outl(par
, LAUNCH_2D
,
1042 *(u16
*)chardata
| (chardata
[3] << 24));
1046 #endif /* CONFIG_FB_3DFX_ACCEL */
1048 static int tdfxfb_cursor(struct fb_info
*info
, struct fb_cursor
*cursor
)
1050 struct tdfx_par
*par
= info
->par
;
1054 return -EINVAL
; /* just to force soft_cursor() call */
1056 /* Too large of a cursor or wrong bpp :-( */
1057 if (cursor
->image
.width
> 64 ||
1058 cursor
->image
.height
> 64 ||
1059 cursor
->image
.depth
> 1)
1062 vidcfg
= tdfx_inl(par
, VIDPROCCFG
);
1064 tdfx_outl(par
, VIDPROCCFG
, vidcfg
| VIDCFG_HWCURSOR_ENABLE
);
1066 tdfx_outl(par
, VIDPROCCFG
, vidcfg
& ~VIDCFG_HWCURSOR_ENABLE
);
1069 * If the cursor is not be changed this means either we want the
1070 * current cursor state (if enable is set) or we want to query what
1071 * we can do with the cursor (if enable is not set)
1076 /* fix cursor color - XFree86 forgets to restore it properly */
1077 if (cursor
->set
& FB_CUR_SETCMAP
) {
1078 struct fb_cmap cmap
= info
->cmap
;
1079 u32 bg_idx
= cursor
->image
.bg_color
;
1080 u32 fg_idx
= cursor
->image
.fg_color
;
1081 unsigned long bg_color
, fg_color
;
1083 fg_color
= (((u32
)cmap
.red
[fg_idx
] & 0xff00) << 8) |
1084 (((u32
)cmap
.green
[fg_idx
] & 0xff00) << 0) |
1085 (((u32
)cmap
.blue
[fg_idx
] & 0xff00) >> 8);
1086 bg_color
= (((u32
)cmap
.red
[bg_idx
] & 0xff00) << 8) |
1087 (((u32
)cmap
.green
[bg_idx
] & 0xff00) << 0) |
1088 (((u32
)cmap
.blue
[bg_idx
] & 0xff00) >> 8);
1089 banshee_make_room(par
, 2);
1090 tdfx_outl(par
, HWCURC0
, bg_color
);
1091 tdfx_outl(par
, HWCURC1
, fg_color
);
1094 if (cursor
->set
& FB_CUR_SETPOS
) {
1095 int x
= cursor
->image
.dx
;
1096 int y
= cursor
->image
.dy
- info
->var
.yoffset
;
1100 banshee_make_room(par
, 1);
1101 tdfx_outl(par
, HWCURLOC
, (y
<< 16) + x
);
1103 if (cursor
->set
& (FB_CUR_SETIMAGE
| FB_CUR_SETSHAPE
)) {
1105 * Voodoo 3 and above cards use 2 monochrome cursor patterns.
1106 * The reason is so the card can fetch 8 words at a time
1107 * and are stored on chip for use for the next 8 scanlines.
1108 * This reduces the number of times for access to draw the
1109 * cursor for each screen refresh.
1110 * Each pattern is a bitmap of 64 bit wide and 64 bit high
1111 * (total of 8192 bits or 1024 bytes). The two patterns are
1112 * stored in such a way that pattern 0 always resides in the
1113 * lower half (least significant 64 bits) of a 128 bit word
1114 * and pattern 1 the upper half. If you examine the data of
1115 * the cursor image the graphics card uses then from the
1116 * begining you see line one of pattern 0, line one of
1117 * pattern 1, line two of pattern 0, line two of pattern 1,
1118 * etc etc. The linear stride for the cursor is always 16 bytes
1119 * (128 bits) which is the maximum cursor width times two for
1120 * the two monochrome patterns.
1122 u8 __iomem
*cursorbase
= info
->screen_base
+ info
->fix
.smem_len
;
1123 u8
*bitmap
= (u8
*)cursor
->image
.data
;
1124 u8
*mask
= (u8
*)cursor
->mask
;
1127 fb_memset(cursorbase
, 0, 1024);
1129 for (i
= 0; i
< cursor
->image
.height
; i
++) {
1131 int j
= (cursor
->image
.width
+ 7) >> 3;
1133 for (; j
> 0; j
--) {
1134 u8 data
= *mask
^ *bitmap
;
1135 if (cursor
->rop
== ROP_COPY
)
1136 data
= *mask
& *bitmap
;
1137 /* Pattern 0. Copy the cursor mask to it */
1138 fb_writeb(*mask
, cursorbase
+ h
);
1140 /* Pattern 1. Copy the cursor bitmap to it */
1141 fb_writeb(data
, cursorbase
+ h
+ 8);
1151 static struct fb_ops tdfxfb_ops
= {
1152 .owner
= THIS_MODULE
,
1153 .fb_check_var
= tdfxfb_check_var
,
1154 .fb_set_par
= tdfxfb_set_par
,
1155 .fb_setcolreg
= tdfxfb_setcolreg
,
1156 .fb_blank
= tdfxfb_blank
,
1157 .fb_pan_display
= tdfxfb_pan_display
,
1158 .fb_sync
= banshee_wait_idle
,
1159 .fb_cursor
= tdfxfb_cursor
,
1160 #ifdef CONFIG_FB_3DFX_ACCEL
1161 .fb_fillrect
= tdfxfb_fillrect
,
1162 .fb_copyarea
= tdfxfb_copyarea
,
1163 .fb_imageblit
= tdfxfb_imageblit
,
1165 .fb_fillrect
= cfb_fillrect
,
1166 .fb_copyarea
= cfb_copyarea
,
1167 .fb_imageblit
= cfb_imageblit
,
1172 * tdfxfb_probe - Device Initializiation
1174 * @pdev: PCI Device to initialize
1175 * @id: PCI Device ID
1177 * Initializes and allocates resources for PCI device @pdev.
1180 static int __devinit
tdfxfb_probe(struct pci_dev
*pdev
,
1181 const struct pci_device_id
*id
)
1183 struct tdfx_par
*default_par
;
1184 struct fb_info
*info
;
1187 err
= pci_enable_device(pdev
);
1189 printk(KERN_ERR
"tdfxfb: Can't enable pdev: %d\n", err
);
1193 info
= framebuffer_alloc(sizeof(struct tdfx_par
), &pdev
->dev
);
1198 default_par
= info
->par
;
1200 /* Configure the default fb_fix_screeninfo first */
1201 switch (pdev
->device
) {
1202 case PCI_DEVICE_ID_3DFX_BANSHEE
:
1203 strcat(tdfx_fix
.id
, " Banshee");
1204 default_par
->max_pixclock
= BANSHEE_MAX_PIXCLOCK
;
1206 case PCI_DEVICE_ID_3DFX_VOODOO3
:
1207 strcat(tdfx_fix
.id
, " Voodoo3");
1208 default_par
->max_pixclock
= VOODOO3_MAX_PIXCLOCK
;
1210 case PCI_DEVICE_ID_3DFX_VOODOO5
:
1211 strcat(tdfx_fix
.id
, " Voodoo5");
1212 default_par
->max_pixclock
= VOODOO5_MAX_PIXCLOCK
;
1216 tdfx_fix
.mmio_start
= pci_resource_start(pdev
, 0);
1217 tdfx_fix
.mmio_len
= pci_resource_len(pdev
, 0);
1218 if (!request_mem_region(tdfx_fix
.mmio_start
, tdfx_fix
.mmio_len
,
1220 printk(KERN_ERR
"tdfxfb: Can't reserve regbase\n");
1224 default_par
->regbase_virt
=
1225 ioremap_nocache(tdfx_fix
.mmio_start
, tdfx_fix
.mmio_len
);
1226 if (!default_par
->regbase_virt
) {
1227 printk(KERN_ERR
"fb: Can't remap %s register area.\n",
1229 goto out_err_regbase
;
1232 tdfx_fix
.smem_start
= pci_resource_start(pdev
, 1);
1233 tdfx_fix
.smem_len
= do_lfb_size(default_par
, pdev
->device
);
1234 if (!tdfx_fix
.smem_len
) {
1235 printk(KERN_ERR
"fb: Can't count %s memory.\n", tdfx_fix
.id
);
1236 goto out_err_regbase
;
1239 if (!request_mem_region(tdfx_fix
.smem_start
,
1240 pci_resource_len(pdev
, 1), "tdfx smem")) {
1241 printk(KERN_ERR
"tdfxfb: Can't reserve smem\n");
1242 goto out_err_regbase
;
1245 info
->screen_base
= ioremap_nocache(tdfx_fix
.smem_start
,
1247 if (!info
->screen_base
) {
1248 printk(KERN_ERR
"fb: Can't remap %s framebuffer.\n",
1250 goto out_err_screenbase
;
1253 default_par
->iobase
= pci_resource_start(pdev
, 2);
1255 if (!request_region(pci_resource_start(pdev
, 2),
1256 pci_resource_len(pdev
, 2), "tdfx iobase")) {
1257 printk(KERN_ERR
"tdfxfb: Can't reserve iobase\n");
1258 goto out_err_screenbase
;
1261 printk(KERN_INFO
"fb: %s memory = %dK\n", tdfx_fix
.id
,
1262 tdfx_fix
.smem_len
>> 10);
1264 default_par
->mtrr_handle
= -1;
1266 default_par
->mtrr_handle
=
1267 mtrr_add(tdfx_fix
.smem_start
, tdfx_fix
.smem_len
,
1268 MTRR_TYPE_WRCOMB
, 1);
1270 tdfx_fix
.ypanstep
= nopan
? 0 : 1;
1271 tdfx_fix
.ywrapstep
= nowrap
? 0 : 1;
1273 info
->fbops
= &tdfxfb_ops
;
1274 info
->fix
= tdfx_fix
;
1275 info
->pseudo_palette
= default_par
->palette
;
1276 info
->flags
= FBINFO_DEFAULT
| FBINFO_HWACCEL_YPAN
;
1277 #ifdef CONFIG_FB_3DFX_ACCEL
1278 info
->flags
|= FBINFO_HWACCEL_FILLRECT
|
1279 FBINFO_HWACCEL_COPYAREA
|
1280 FBINFO_HWACCEL_IMAGEBLIT
|
1283 /* reserve 8192 bits for cursor */
1284 /* the 2.4 driver says PAGE_MASK boundary is not enough for Voodoo4 */
1286 info
->fix
.smem_len
= (info
->fix
.smem_len
- 1024) &
1290 mode_option
= "640x480@60";
1292 err
= fb_find_mode(&info
->var
, info
, mode_option
, NULL
, 0, NULL
, 8);
1293 if (!err
|| err
== 4)
1294 info
->var
= tdfx_var
;
1296 /* maximize virtual vertical length */
1297 lpitch
= info
->var
.xres_virtual
* ((info
->var
.bits_per_pixel
+ 7) >> 3);
1298 info
->var
.yres_virtual
= info
->fix
.smem_len
/ lpitch
;
1299 if (info
->var
.yres_virtual
< info
->var
.yres
)
1300 goto out_err_iobase
;
1302 if (fb_alloc_cmap(&info
->cmap
, 256, 0) < 0) {
1303 printk(KERN_ERR
"tdfxfb: Can't allocate color map\n");
1304 goto out_err_iobase
;
1307 if (register_framebuffer(info
) < 0) {
1308 printk(KERN_ERR
"tdfxfb: can't register framebuffer\n");
1309 fb_dealloc_cmap(&info
->cmap
);
1310 goto out_err_iobase
;
1315 pci_set_drvdata(pdev
, info
);
1319 if (default_par
->mtrr_handle
>= 0)
1320 mtrr_del(default_par
->mtrr_handle
, info
->fix
.smem_start
,
1321 info
->fix
.smem_len
);
1322 release_mem_region(pci_resource_start(pdev
, 2),
1323 pci_resource_len(pdev
, 2));
1325 if (info
->screen_base
)
1326 iounmap(info
->screen_base
);
1327 release_mem_region(tdfx_fix
.smem_start
, pci_resource_len(pdev
, 1));
1330 * Cleanup after anything that was remapped/allocated.
1332 if (default_par
->regbase_virt
)
1333 iounmap(default_par
->regbase_virt
);
1334 release_mem_region(tdfx_fix
.mmio_start
, tdfx_fix
.mmio_len
);
1336 framebuffer_release(info
);
1341 static void __init
tdfxfb_setup(char *options
)
1345 if (!options
|| !*options
)
1348 while ((this_opt
= strsep(&options
, ",")) != NULL
) {
1351 if (!strcmp(this_opt
, "nopan")) {
1353 } else if (!strcmp(this_opt
, "nowrap")) {
1355 } else if (!strncmp(this_opt
, "hwcursor=", 9)) {
1356 hwcursor
= simple_strtoul(this_opt
+ 9, NULL
, 0);
1358 } else if (!strncmp(this_opt
, "nomtrr", 6)) {
1362 mode_option
= this_opt
;
1369 * tdfxfb_remove - Device removal
1371 * @pdev: PCI Device to cleanup
1373 * Releases all resources allocated during the course of the driver's
1374 * lifetime for the PCI device @pdev.
1377 static void __devexit
tdfxfb_remove(struct pci_dev
*pdev
)
1379 struct fb_info
*info
= pci_get_drvdata(pdev
);
1380 struct tdfx_par
*par
= info
->par
;
1382 unregister_framebuffer(info
);
1383 if (par
->mtrr_handle
>= 0)
1384 mtrr_del(par
->mtrr_handle
, info
->fix
.smem_start
,
1385 info
->fix
.smem_len
);
1386 iounmap(par
->regbase_virt
);
1387 iounmap(info
->screen_base
);
1389 /* Clean up after reserved regions */
1390 release_region(pci_resource_start(pdev
, 2),
1391 pci_resource_len(pdev
, 2));
1392 release_mem_region(pci_resource_start(pdev
, 1),
1393 pci_resource_len(pdev
, 1));
1394 release_mem_region(pci_resource_start(pdev
, 0),
1395 pci_resource_len(pdev
, 0));
1396 pci_set_drvdata(pdev
, NULL
);
1397 framebuffer_release(info
);
1400 static int __init
tdfxfb_init(void)
1403 char *option
= NULL
;
1405 if (fb_get_options("tdfxfb", &option
))
1408 tdfxfb_setup(option
);
1410 return pci_register_driver(&tdfxfb_driver
);
1413 static void __exit
tdfxfb_exit(void)
1415 pci_unregister_driver(&tdfxfb_driver
);
1418 MODULE_AUTHOR("Hannu Mallat <hmallat@cc.hut.fi>");
1419 MODULE_DESCRIPTION("3Dfx framebuffer device driver");
1420 MODULE_LICENSE("GPL");
1422 module_param(hwcursor
, int, 0644);
1423 MODULE_PARM_DESC(hwcursor
, "Enable hardware cursor "
1424 "(1=enable, 0=disable, default=1)");
1425 module_param(mode_option
, charp
, 0);
1426 MODULE_PARM_DESC(mode_option
, "Initial video mode e.g. '648x480-8@60'");
1428 module_param(nomtrr
, bool, 0);
1429 MODULE_PARM_DESC(nomtrr
, "Disable MTRR support (default: enabled)");
1432 module_init(tdfxfb_init
);
1433 module_exit(tdfxfb_exit
);