blob: ee64771fbe3dd0dee90f15664606901884b85245 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * tdfxfb.c
4 *
5 * Author: Hannu Mallat <hmallat@cc.hut.fi>
6 *
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07007 * Copyright © 1999 Hannu Mallat
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * All rights reserved
9 *
10 * Created : Thu Sep 23 18:17:43 1999, hmallat
11 * Last modified: Tue Nov 2 21:19:47 1999, hmallat
12 *
Krzysztof Helt8af1d502007-10-16 01:28:43 -070013 * Lots of the information here comes from the Daryll Strauss' Banshee
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * 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.
17 *
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!
21 *
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).
Krzysztof Helt8af1d502007-10-16 01:28:43 -070026 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * 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.
33 *
34 * The structure of this driver comes pretty much from the Permedia
35 * driver by Ilario Nardinocchi, which in turn is based on skeletonfb.
Krzysztof Helt8af1d502007-10-16 01:28:43 -070036 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * TODO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * - 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
41 * things?
42 *
43 * Version history:
44 *
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -070045 * 0.1.4 (released 2002-05-28) ported over to new fbdev api by James Simmons
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 *
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -070047 * 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
54 * improvements
55 * 0.1.1 (released 1999-10-07) added Voodoo3 support by Harold Oga.
56 * 0.1.0 (released 1999-10-06) initial version
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 */
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/module.h>
61#include <linux/kernel.h>
62#include <linux/errno.h>
63#include <linux/string.h>
64#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/fb.h>
67#include <linux/init.h>
68#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#include <video/tdfx.h>
72
Harvey Harrison5ae12172008-04-28 02:15:47 -070073#define DPRINTK(a, b...) pr_debug("fb: %s: " a, __func__ , ## b)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Krzysztof Helt0960bd32007-10-16 01:28:49 -070075#ifdef CONFIG_MTRR
76#include <asm/mtrr.h>
77#else
78/* duplicate asm/mtrr.h defines to work on archs without mtrr */
79#define MTRR_TYPE_WRCOMB 1
80
81static inline int mtrr_add(unsigned long base, unsigned long size,
82 unsigned int type, char increment)
83{
84 return -ENODEV;
85}
86static inline int mtrr_del(int reg, unsigned long base,
87 unsigned long size)
88{
89 return -ENODEV;
90}
91#endif
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#define BANSHEE_MAX_PIXCLOCK 270000
94#define VOODOO3_MAX_PIXCLOCK 300000
95#define VOODOO5_MAX_PIXCLOCK 350000
96
97static struct fb_fix_screeninfo tdfx_fix __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 .type = FB_TYPE_PACKED_PIXELS,
Krzysztof Helt8af1d502007-10-16 01:28:43 -070099 .visual = FB_VISUAL_PSEUDOCOLOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 .ypanstep = 1,
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700101 .ywrapstep = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .accel = FB_ACCEL_3DFX_BANSHEE
103};
104
105static struct fb_var_screeninfo tdfx_var __devinitdata = {
106 /* "640x480, 8 bpp @ 60 Hz */
107 .xres = 640,
108 .yres = 480,
109 .xres_virtual = 640,
110 .yres_virtual = 1024,
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700111 .bits_per_pixel = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 .red = {0, 8, 0},
113 .blue = {0, 8, 0},
114 .green = {0, 8, 0},
115 .activate = FB_ACTIVATE_NOW,
116 .height = -1,
117 .width = -1,
118 .accel_flags = FB_ACCELF_TEXT,
119 .pixclock = 39722,
120 .left_margin = 40,
121 .right_margin = 24,
122 .upper_margin = 32,
123 .lower_margin = 11,
124 .hsync_len = 96,
125 .vsync_len = 2,
126 .vmode = FB_VMODE_NONINTERLACED
127};
128
129/*
130 * PCI driver prototypes
131 */
132static int __devinit tdfxfb_probe(struct pci_dev *pdev,
133 const struct pci_device_id *id);
134static void __devexit tdfxfb_remove(struct pci_dev *pdev);
135
136static struct pci_device_id tdfxfb_id_table[] = {
137 { PCI_VENDOR_ID_3DFX, PCI_DEVICE_ID_3DFX_BANSHEE,
138 PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
139 0xff0000, 0 },
140 { PCI_VENDOR_ID_3DFX, PCI_DEVICE_ID_3DFX_VOODOO3,
141 PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
142 0xff0000, 0 },
143 { PCI_VENDOR_ID_3DFX, PCI_DEVICE_ID_3DFX_VOODOO5,
144 PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
145 0xff0000, 0 },
146 { 0, }
147};
148
149static struct pci_driver tdfxfb_driver = {
150 .name = "tdfxfb",
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700151 .id_table = tdfxfb_id_table,
152 .probe = tdfxfb_probe,
153 .remove = __devexit_p(tdfxfb_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154};
155
156MODULE_DEVICE_TABLE(pci, tdfxfb_id_table);
157
158/*
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700159 * Driver data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 */
Krzysztof Helt90b0f082007-10-16 01:28:48 -0700161static int nopan;
162static int nowrap = 1; /* not implemented (yet) */
163static int hwcursor = 1;
Krzysztof Helt0960bd32007-10-16 01:28:49 -0700164static char *mode_option __devinitdata;
165/* mtrr option */
166static int nomtrr __devinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700168/* -------------------------------------------------------------------------
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700169 * Hardware-specific funcions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * ------------------------------------------------------------------------- */
171
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700172static inline u8 vga_inb(struct tdfx_par *par, u32 reg)
173{
174 return inb(par->iobase + reg - 0x300);
175}
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700176
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700177static inline void vga_outb(struct tdfx_par *par, u32 reg, u8 val)
178{
179 outb(val, par->iobase + reg - 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700182static inline void gra_outb(struct tdfx_par *par, u32 idx, u8 val)
183{
184 vga_outb(par, GRA_I, idx);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700185 wmb();
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700186 vga_outb(par, GRA_D, val);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700187 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700190static inline void seq_outb(struct tdfx_par *par, u32 idx, u8 val)
191{
192 vga_outb(par, SEQ_I, idx);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700193 wmb();
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700194 vga_outb(par, SEQ_D, val);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700195 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700198static inline u8 seq_inb(struct tdfx_par *par, u32 idx)
199{
200 vga_outb(par, SEQ_I, idx);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700201 mb();
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700202 return vga_inb(par, SEQ_D);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700205static inline void crt_outb(struct tdfx_par *par, u32 idx, u8 val)
206{
207 vga_outb(par, CRT_I, idx);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700208 wmb();
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700209 vga_outb(par, CRT_D, val);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700210 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700213static inline u8 crt_inb(struct tdfx_par *par, u32 idx)
214{
215 vga_outb(par, CRT_I, idx);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700216 mb();
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700217 return vga_inb(par, CRT_D);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700220static inline void att_outb(struct tdfx_par *par, u32 idx, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 unsigned char tmp;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 tmp = vga_inb(par, IS1_R);
225 vga_outb(par, ATT_IW, idx);
226 vga_outb(par, ATT_IW, val);
227}
228
229static inline void vga_disable_video(struct tdfx_par *par)
230{
231 unsigned char s;
232
233 s = seq_inb(par, 0x01) | 0x20;
234 seq_outb(par, 0x00, 0x01);
235 seq_outb(par, 0x01, s);
236 seq_outb(par, 0x00, 0x03);
237}
238
239static inline void vga_enable_video(struct tdfx_par *par)
240{
241 unsigned char s;
242
243 s = seq_inb(par, 0x01) & 0xdf;
244 seq_outb(par, 0x00, 0x01);
245 seq_outb(par, 0x01, s);
246 seq_outb(par, 0x00, 0x03);
247}
248
249static inline void vga_enable_palette(struct tdfx_par *par)
250{
251 vga_inb(par, IS1_R);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700252 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 vga_outb(par, ATT_IW, 0x20);
254}
255
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700256static inline u32 tdfx_inl(struct tdfx_par *par, unsigned int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 return readl(par->regbase_virt + reg);
259}
260
261static inline void tdfx_outl(struct tdfx_par *par, unsigned int reg, u32 val)
262{
263 writel(val, par->regbase_virt + reg);
264}
265
266static inline void banshee_make_room(struct tdfx_par *par, int size)
267{
268 /* Note: The Voodoo3's onboard FIFO has 32 slots. This loop
269 * won't quit if you ask for more. */
Krzysztof Heltf67fd7c2007-10-16 01:29:26 -0700270 while ((tdfx_inl(par, STATUS) & 0x1f) < size - 1)
271 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static int banshee_wait_idle(struct fb_info *info)
275{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800276 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 int i = 0;
278
279 banshee_make_room(par, 1);
280 tdfx_outl(par, COMMAND_3D, COMMAND_3D_NOP);
281
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700282 do {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700283 if ((tdfx_inl(par, STATUS) & STATUS_BUSY) == 0)
284 i++;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700285 } while (i < 3);
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
288}
289
290/*
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700291 * Set the color of a palette entry in 8bpp mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 */
293static inline void do_setpalentry(struct tdfx_par *par, unsigned regno, u32 c)
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700294{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 banshee_make_room(par, 2);
296 tdfx_outl(par, DACADDR, regno);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700297 /* read after write makes it working */
298 tdfx_inl(par, DACADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 tdfx_outl(par, DACDATA, c);
300}
301
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700302static u32 do_calc_pll(int freq, int *freq_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700304 int m, n, k, best_m, best_n, best_k, best_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 int fref = 14318;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 best_error = freq;
308 best_n = best_m = best_k = 0;
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700309
310 for (k = 3; k >= 0; k--) {
311 for (m = 63; m >= 0; m--) {
312 /*
313 * Estimate value of n that produces target frequency
314 * with current m and k
315 */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700316 int n_estimated = ((freq * (m + 2) << k) / fref) - 2;
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700317
318 /* Search neighborhood of estimated n */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700319 for (n = max(0, n_estimated);
320 n <= min(255, n_estimated + 1);
321 n++) {
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700322 /*
323 * Calculate PLL freqency with current m, k and
324 * estimated n
325 */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700326 int f = (fref * (n + 2) / (m + 2)) >> k;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700327 int error = abs(f - freq);
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700328
329 /*
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700330 * If this is the closest we've come to the
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700331 * target frequency then remember n, m and k
332 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700333 if (error < best_error) {
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700334 best_error = error;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700335 best_n = n;
336 best_m = m;
337 best_k = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339 }
340 }
341 }
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 n = best_n;
344 m = best_m;
345 k = best_k;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700346 *freq_out = (fref * (n + 2) / (m + 2)) >> k;
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return (n << 8) | (m << 2) | k;
349}
350
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700351static void do_write_regs(struct fb_info *info, struct banshee_reg *reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800353 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 int i;
355
356 banshee_wait_idle(info);
357
358 tdfx_outl(par, MISCINIT1, tdfx_inl(par, MISCINIT1) | 0x01);
359
360 crt_outb(par, 0x11, crt_inb(par, 0x11) & 0x7f); /* CRT unprotect */
361
362 banshee_make_room(par, 3);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700363 tdfx_outl(par, VGAINIT1, reg->vgainit1 & 0x001FFFFF);
364 tdfx_outl(par, VIDPROCCFG, reg->vidcfg & ~0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365#if 0
366 tdfx_outl(par, PLLCTRL1, reg->mempll);
367 tdfx_outl(par, PLLCTRL2, reg->gfxpll);
368#endif
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700369 tdfx_outl(par, PLLCTRL0, reg->vidpll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 vga_outb(par, MISC_W, reg->misc[0x00] | 0x01);
372
373 for (i = 0; i < 5; i++)
374 seq_outb(par, i, reg->seq[i]);
375
376 for (i = 0; i < 25; i++)
377 crt_outb(par, i, reg->crt[i]);
378
379 for (i = 0; i < 9; i++)
380 gra_outb(par, i, reg->gra[i]);
381
382 for (i = 0; i < 21; i++)
383 att_outb(par, i, reg->att[i]);
384
385 crt_outb(par, 0x1a, reg->ext[0]);
386 crt_outb(par, 0x1b, reg->ext[1]);
387
388 vga_enable_palette(par);
389 vga_enable_video(par);
390
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700391 banshee_make_room(par, 9);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700392 tdfx_outl(par, VGAINIT0, reg->vgainit0);
393 tdfx_outl(par, DACMODE, reg->dacmode);
394 tdfx_outl(par, VIDDESKSTRIDE, reg->stride);
Krzysztof Helt90b0f082007-10-16 01:28:48 -0700395 tdfx_outl(par, HWCURPATADDR, reg->curspataddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700397 tdfx_outl(par, VIDSCREENSIZE, reg->screensize);
398 tdfx_outl(par, VIDDESKSTART, reg->startaddr);
399 tdfx_outl(par, VIDPROCCFG, reg->vidcfg);
400 tdfx_outl(par, VGAINIT1, reg->vgainit1);
401 tdfx_outl(par, MISCINIT0, reg->miscinit0);
402
403 banshee_make_room(par, 8);
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700404 tdfx_outl(par, SRCBASE, reg->startaddr);
405 tdfx_outl(par, DSTBASE, reg->startaddr);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700406 tdfx_outl(par, COMMANDEXTRA_2D, 0);
407 tdfx_outl(par, CLIP0MIN, 0);
408 tdfx_outl(par, CLIP0MAX, 0x0fff0fff);
409 tdfx_outl(par, CLIP1MIN, 0);
410 tdfx_outl(par, CLIP1MAX, 0x0fff0fff);
411 tdfx_outl(par, SRCXY, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 banshee_wait_idle(info);
414}
415
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700416static unsigned long do_lfb_size(struct tdfx_par *par, unsigned short dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700418 u32 draminit0 = tdfx_inl(par, DRAMINIT0);
419 u32 draminit1 = tdfx_inl(par, DRAMINIT1);
Richard Drummond333f9812005-05-01 08:59:25 -0700420 u32 miscinit1;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700421 int num_chips = (draminit0 & DRAMINIT0_SGRAM_NUM) ? 8 : 4;
Richard Drummond333f9812005-05-01 08:59:25 -0700422 int chip_size; /* in MB */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700423 int has_sgram = draminit1 & DRAMINIT1_MEM_SDRAM;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700424
Richard Drummond333f9812005-05-01 08:59:25 -0700425 if (dev_id < PCI_DEVICE_ID_3DFX_VOODOO5) {
426 /* Banshee/Voodoo3 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700427 chip_size = 2;
Krzysztof Heltbf6910c2008-09-02 14:36:03 -0700428 if (has_sgram && !(draminit0 & DRAMINIT0_SGRAM_TYPE))
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700429 chip_size = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 } else {
431 /* Voodoo4/5 */
Richard Drummond333f9812005-05-01 08:59:25 -0700432 has_sgram = 0;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700433 chip_size = draminit0 & DRAMINIT0_SGRAM_TYPE_MASK;
434 chip_size = 1 << (chip_size >> DRAMINIT0_SGRAM_TYPE_SHIFT);
Richard Drummond333f9812005-05-01 08:59:25 -0700435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Richard Drummond333f9812005-05-01 08:59:25 -0700437 /* disable block writes for SDRAM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 miscinit1 = tdfx_inl(par, MISCINIT1);
Richard Drummond333f9812005-05-01 08:59:25 -0700439 miscinit1 |= has_sgram ? 0 : MISCINIT1_2DBLOCK_DIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 miscinit1 |= MISCINIT1_CLUT_INV;
441
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700442 banshee_make_room(par, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 tdfx_outl(par, MISCINIT1, miscinit1);
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700444 return num_chips * chip_size * 1024l * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
447/* ------------------------------------------------------------------------- */
448
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700449static int tdfxfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800451 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 u32 lpitch;
453
454 if (var->bits_per_pixel != 8 && var->bits_per_pixel != 16 &&
455 var->bits_per_pixel != 24 && var->bits_per_pixel != 32) {
456 DPRINTK("depth not supported: %u\n", var->bits_per_pixel);
457 return -EINVAL;
458 }
459
460 if (var->xres != var->xres_virtual)
461 var->xres_virtual = var->xres;
462
463 if (var->yres > var->yres_virtual)
464 var->yres_virtual = var->yres;
465
466 if (var->xoffset) {
467 DPRINTK("xoffset not supported\n");
468 return -EINVAL;
469 }
Krzysztof Helt90b0f082007-10-16 01:28:48 -0700470 var->yoffset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700472 /*
473 * Banshee doesn't support interlace, but Voodoo4/5 and probably
474 * Voodoo3 do.
475 * no direct information about device id now?
476 * use max_pixclock for this...
477 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (((var->vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) &&
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700479 (par->max_pixclock < VOODOO3_MAX_PIXCLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 DPRINTK("interlace not supported\n");
481 return -EINVAL;
482 }
483
484 var->xres = (var->xres + 15) & ~15; /* could sometimes be 8 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700485 lpitch = var->xres * ((var->bits_per_pixel + 7) >> 3);
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (var->xres < 320 || var->xres > 2048) {
488 DPRINTK("width not supported: %u\n", var->xres);
489 return -EINVAL;
490 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (var->yres < 200 || var->yres > 2048) {
493 DPRINTK("height not supported: %u\n", var->yres);
494 return -EINVAL;
495 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (lpitch * var->yres_virtual > info->fix.smem_len) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700498 var->yres_virtual = info->fix.smem_len / lpitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (var->yres_virtual < var->yres) {
500 DPRINTK("no memory for screen (%ux%ux%u)\n",
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700501 var->xres, var->yres_virtual,
502 var->bits_per_pixel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return -EINVAL;
504 }
505 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (PICOS2KHZ(var->pixclock) > par->max_pixclock) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700508 DPRINTK("pixclock too high (%ldKHz)\n",
509 PICOS2KHZ(var->pixclock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return -EINVAL;
511 }
512
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700513 var->transp.offset = 0;
514 var->transp.length = 0;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700515 switch (var->bits_per_pixel) {
516 case 8:
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700517 var->red.length = 8;
518 var->red.offset = 0;
519 var->green = var->red;
520 var->blue = var->red;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700521 break;
522 case 16:
523 var->red.offset = 11;
524 var->red.length = 5;
525 var->green.offset = 5;
526 var->green.length = 6;
527 var->blue.offset = 0;
528 var->blue.length = 5;
529 break;
530 case 32:
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700531 var->transp.offset = 24;
532 var->transp.length = 8;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700533 case 24:
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700534 var->red.offset = 16;
535 var->green.offset = 8;
536 var->blue.offset = 0;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700537 var->red.length = var->green.length = var->blue.length = 8;
538 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700540 var->width = -1;
541 var->height = -1;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 var->accel_flags = FB_ACCELF_TEXT;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700544
545 DPRINTK("Checking graphics mode at %dx%d depth %d\n",
546 var->xres, var->yres, var->bits_per_pixel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return 0;
548}
549
550static int tdfxfb_set_par(struct fb_info *info)
551{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800552 struct tdfx_par *par = info->par;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700553 u32 hdispend = info->var.xres;
554 u32 hsyncsta = hdispend + info->var.right_margin;
555 u32 hsyncend = hsyncsta + info->var.hsync_len;
556 u32 htotal = hsyncend + info->var.left_margin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 u32 hd, hs, he, ht, hbs, hbe;
558 u32 vd, vs, ve, vt, vbs, vbe;
559 struct banshee_reg reg;
560 int fout, freq;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700561 u32 wd;
562 u32 cpp = (info->var.bits_per_pixel + 7) >> 3;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 memset(&reg, 0, sizeof(reg));
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700565
566 reg.vidcfg = VIDCFG_VIDPROC_ENABLE | VIDCFG_DESK_ENABLE |
567 VIDCFG_CURS_X11 |
568 ((cpp - 1) << VIDCFG_PIXFMT_SHIFT) |
569 (cpp != 1 ? VIDCFG_CLUT_BYPASS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 /* PLL settings */
572 freq = PICOS2KHZ(info->var.pixclock);
573
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700574 reg.vidcfg &= ~VIDCFG_2X;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700576 if (freq > par->max_pixclock / 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 freq = freq > par->max_pixclock ? par->max_pixclock : freq;
578 reg.dacmode |= DACMODE_2X;
579 reg.vidcfg |= VIDCFG_2X;
580 hdispend >>= 1;
581 hsyncsta >>= 1;
582 hsyncend >>= 1;
583 htotal >>= 1;
584 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700585
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700586 wd = (hdispend >> 3) - 1;
587 hd = wd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 hs = (hsyncsta >> 3) - 1;
589 he = (hsyncend >> 3) - 1;
590 ht = (htotal >> 3) - 1;
591 hbs = hd;
592 hbe = ht;
593
594 if ((info->var.vmode & FB_VMODE_MASK) == FB_VMODE_DOUBLE) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700595 vd = (info->var.yres << 1) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 vs = vd + (info->var.lower_margin << 1);
597 ve = vs + (info->var.vsync_len << 1);
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700598 vt = ve + (info->var.upper_margin << 1) - 1;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700599 reg.screensize = info->var.xres | (info->var.yres << 13);
600 reg.vidcfg |= VIDCFG_HALF_MODE;
601 reg.crt[0x09] = 0x80;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 } else {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700603 vd = info->var.yres - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 vs = vd + info->var.lower_margin;
605 ve = vs + info->var.vsync_len;
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700606 vt = ve + info->var.upper_margin - 1;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700607 reg.screensize = info->var.xres | (info->var.yres << 12);
608 reg.vidcfg &= ~VIDCFG_HALF_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700610 vbs = vd;
611 vbe = vt;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /* this is all pretty standard VGA register stuffing */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700614 reg.misc[0x00] = 0x0f |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 (info->var.xres < 400 ? 0xa0 :
616 info->var.xres < 480 ? 0x60 :
617 info->var.xres < 768 ? 0xe0 : 0x20);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 reg.gra[0x05] = 0x40;
620 reg.gra[0x06] = 0x05;
621 reg.gra[0x07] = 0x0f;
622 reg.gra[0x08] = 0xff;
623
624 reg.att[0x00] = 0x00;
625 reg.att[0x01] = 0x01;
626 reg.att[0x02] = 0x02;
627 reg.att[0x03] = 0x03;
628 reg.att[0x04] = 0x04;
629 reg.att[0x05] = 0x05;
630 reg.att[0x06] = 0x06;
631 reg.att[0x07] = 0x07;
632 reg.att[0x08] = 0x08;
633 reg.att[0x09] = 0x09;
634 reg.att[0x0a] = 0x0a;
635 reg.att[0x0b] = 0x0b;
636 reg.att[0x0c] = 0x0c;
637 reg.att[0x0d] = 0x0d;
638 reg.att[0x0e] = 0x0e;
639 reg.att[0x0f] = 0x0f;
640 reg.att[0x10] = 0x41;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 reg.att[0x12] = 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 reg.seq[0x00] = 0x03;
644 reg.seq[0x01] = 0x01; /* fixme: clkdiv2? */
645 reg.seq[0x02] = 0x0f;
646 reg.seq[0x03] = 0x00;
647 reg.seq[0x04] = 0x0e;
648
649 reg.crt[0x00] = ht - 4;
650 reg.crt[0x01] = hd;
651 reg.crt[0x02] = hbs;
652 reg.crt[0x03] = 0x80 | (hbe & 0x1f);
653 reg.crt[0x04] = hs;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700654 reg.crt[0x05] = ((hbe & 0x20) << 2) | (he & 0x1f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 reg.crt[0x06] = vt;
656 reg.crt[0x07] = ((vs & 0x200) >> 2) |
657 ((vd & 0x200) >> 3) |
658 ((vt & 0x200) >> 4) | 0x10 |
659 ((vbs & 0x100) >> 5) |
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700660 ((vs & 0x100) >> 6) |
661 ((vd & 0x100) >> 7) |
662 ((vt & 0x100) >> 8);
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700663 reg.crt[0x09] |= 0x40 | ((vbs & 0x200) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 reg.crt[0x10] = vs;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700665 reg.crt[0x11] = (ve & 0x0f) | 0x20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 reg.crt[0x12] = vd;
667 reg.crt[0x13] = wd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 reg.crt[0x15] = vbs;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700669 reg.crt[0x16] = vbe + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 reg.crt[0x17] = 0xc3;
671 reg.crt[0x18] = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700673 /* Banshee's nonvga stuff */
674 reg.ext[0x00] = (((ht & 0x100) >> 8) |
675 ((hd & 0x100) >> 6) |
676 ((hbs & 0x100) >> 4) |
677 ((hbe & 0x40) >> 1) |
678 ((hs & 0x100) >> 2) |
679 ((he & 0x20) << 2));
680 reg.ext[0x01] = (((vt & 0x400) >> 10) |
681 ((vd & 0x400) >> 8) |
682 ((vbs & 0x400) >> 6) |
683 ((vbe & 0x400) >> 4));
684
685 reg.vgainit0 = VGAINIT0_8BIT_DAC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 VGAINIT0_EXT_ENABLE |
687 VGAINIT0_WAKEUP_3C3 |
688 VGAINIT0_ALT_READBACK |
689 VGAINIT0_EXTSHIFTOUT;
690 reg.vgainit1 = tdfx_inl(par, VGAINIT1) & 0x1fffff;
691
Krzysztof Helt90b0f082007-10-16 01:28:48 -0700692 if (hwcursor)
693 reg.curspataddr = info->fix.smem_len;
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 reg.cursloc = 0;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700696
697 reg.cursc0 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 reg.cursc1 = 0xffffff;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 reg.stride = info->var.xres * cpp;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700701 reg.startaddr = info->var.yoffset * reg.stride
702 + info->var.xoffset * cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 reg.vidpll = do_calc_pll(freq, &fout);
705#if 0
706 reg.mempll = do_calc_pll(..., &fout);
707 reg.gfxpll = do_calc_pll(..., &fout);
708#endif
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if ((info->var.vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED)
711 reg.vidcfg |= VIDCFG_INTERLACE;
712 reg.miscinit0 = tdfx_inl(par, MISCINIT0);
713
714#if defined(__BIG_ENDIAN)
715 switch (info->var.bits_per_pixel) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700716 case 8:
717 case 24:
718 reg.miscinit0 &= ~(1 << 30);
719 reg.miscinit0 &= ~(1 << 31);
720 break;
721 case 16:
722 reg.miscinit0 |= (1 << 30);
723 reg.miscinit0 |= (1 << 31);
724 break;
725 case 32:
726 reg.miscinit0 |= (1 << 30);
727 reg.miscinit0 &= ~(1 << 31);
728 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700730#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 do_write_regs(info, &reg);
732
733 /* Now change fb_fix_screeninfo according to changes in par */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700734 info->fix.line_length = reg.stride;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700735 info->fix.visual = (info->var.bits_per_pixel == 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 ? FB_VISUAL_PSEUDOCOLOR
737 : FB_VISUAL_TRUECOLOR;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700738 DPRINTK("Graphics mode is now set at %dx%d depth %d\n",
739 info->var.xres, info->var.yres, info->var.bits_per_pixel);
740 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
743/* A handy macro shamelessly pinched from matroxfb */
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700744#define CNVT_TOHW(val, width) ((((val) << (width)) + 0x7FFF - (val)) >> 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700746static int tdfxfb_setcolreg(unsigned regno, unsigned red, unsigned green,
747 unsigned blue, unsigned transp,
748 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800750 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 u32 rgbcol;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700752
753 if (regno >= info->cmap.len || regno > 255)
754 return 1;
755
Krzysztof Helt254c9472007-10-16 01:28:46 -0700756 /* grayscale works only partially under directcolor */
757 if (info->var.grayscale) {
758 /* grayscale = 0.30*R + 0.59*G + 0.11*B */
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700759 blue = (red * 77 + green * 151 + blue * 28) >> 8;
760 green = blue;
761 red = blue;
Krzysztof Helt254c9472007-10-16 01:28:46 -0700762 }
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 switch (info->fix.visual) {
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800765 case FB_VISUAL_PSEUDOCOLOR:
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700766 rgbcol = (((u32)red & 0xff00) << 8) |
767 (((u32)green & 0xff00) << 0) |
768 (((u32)blue & 0xff00) >> 8);
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800769 do_setpalentry(par, regno, rgbcol);
770 break;
771 /* Truecolor has no hardware color palettes. */
772 case FB_VISUAL_TRUECOLOR:
773 if (regno < 16) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700774 rgbcol = (CNVT_TOHW(red, info->var.red.length) <<
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800775 info->var.red.offset) |
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700776 (CNVT_TOHW(green, info->var.green.length) <<
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800777 info->var.green.offset) |
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700778 (CNVT_TOHW(blue, info->var.blue.length) <<
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800779 info->var.blue.offset) |
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700780 (CNVT_TOHW(transp, info->var.transp.length) <<
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800781 info->var.transp.offset);
782 par->palette[regno] = rgbcol;
783 }
784
785 break;
786 default:
787 DPRINTK("bad depth %u\n", info->var.bits_per_pixel);
788 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return 0;
792}
793
794/* 0 unblank, 1 blank, 2 no vsync, 3 no hsync, 4 off */
795static int tdfxfb_blank(int blank, struct fb_info *info)
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700796{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800797 struct tdfx_par *par = info->par;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700798 int vgablank = 1;
799 u32 dacmode = tdfx_inl(par, DACMODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700801 dacmode &= ~(BIT(1) | BIT(3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 switch (blank) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700804 case FB_BLANK_UNBLANK: /* Screen: On; HSync: On, VSync: On */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700805 vgablank = 0;
806 break;
807 case FB_BLANK_NORMAL: /* Screen: Off; HSync: On, VSync: On */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700808 break;
809 case FB_BLANK_VSYNC_SUSPEND: /* Screen: Off; HSync: On, VSync: Off */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700810 dacmode |= BIT(3);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700811 break;
812 case FB_BLANK_HSYNC_SUSPEND: /* Screen: Off; HSync: Off, VSync: On */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700813 dacmode |= BIT(1);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700814 break;
815 case FB_BLANK_POWERDOWN: /* Screen: Off; HSync: Off, VSync: Off */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700816 dacmode |= BIT(1) | BIT(3);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700817 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
819
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700820 banshee_make_room(par, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 tdfx_outl(par, DACMODE, dacmode);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700822 if (vgablank)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 vga_disable_video(par);
824 else
825 vga_enable_video(par);
826 return 0;
827}
828
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700829/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 * Set the starting position of the visible screen to var->yoffset
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700831 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832static int tdfxfb_pan_display(struct fb_var_screeninfo *var,
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700833 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800835 struct tdfx_par *par = info->par;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700836 u32 addr = var->yoffset * info->fix.line_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Krzysztof Heltc2c12152008-07-23 21:31:24 -0700838 if (nopan || var->xoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return -EINVAL;
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 banshee_make_room(par, 1);
842 tdfx_outl(par, VIDDESKSTART, addr);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return 0;
845}
846
847#ifdef CONFIG_FB_3DFX_ACCEL
848/*
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700849 * FillRect 2D command (solidfill or invert (via ROP_XOR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700851static void tdfxfb_fillrect(struct fb_info *info,
852 const struct fb_fillrect *rect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800854 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 u32 bpp = info->var.bits_per_pixel;
856 u32 stride = info->fix.line_length;
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700857 u32 fmt = stride | ((bpp + ((bpp == 8) ? 0 : 8)) << 13);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 int tdfx_rop;
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700859 u32 dx = rect->dx;
860 u32 dy = rect->dy;
861 u32 dstbase = 0;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700862
863 if (rect->rop == ROP_COPY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 tdfx_rop = TDFX_ROP_COPY;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700865 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 tdfx_rop = TDFX_ROP_XOR;
867
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700868 /* asume always rect->height < 4096 */
869 if (dy + rect->height > 4095) {
870 dstbase = stride * dy;
871 dy = 0;
872 }
873 /* asume always rect->width < 4096 */
874 if (dx + rect->width > 4095) {
875 dstbase += dx * bpp >> 3;
876 dx = 0;
877 }
878 banshee_make_room(par, 6);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700879 tdfx_outl(par, DSTFORMAT, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (info->fix.visual == FB_VISUAL_PSEUDOCOLOR) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700881 tdfx_outl(par, COLORFORE, rect->color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 } else { /* FB_VISUAL_TRUECOLOR */
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800883 tdfx_outl(par, COLORFORE, par->palette[rect->color]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700885 tdfx_outl(par, COMMAND_2D, COMMAND_2D_FILLRECT | (tdfx_rop << 24));
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700886 tdfx_outl(par, DSTBASE, dstbase);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700887 tdfx_outl(par, DSTSIZE, rect->width | (rect->height << 16));
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700888 tdfx_outl(par, LAUNCH_2D, dx | (dy << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
891/*
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700892 * Screen-to-Screen BitBlt 2D command (for the bmove fb op.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700894static void tdfxfb_copyarea(struct fb_info *info,
895 const struct fb_copyarea *area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800897 struct tdfx_par *par = info->par;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700898 u32 sx = area->sx, sy = area->sy, dx = area->dx, dy = area->dy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 u32 bpp = info->var.bits_per_pixel;
900 u32 stride = info->fix.line_length;
901 u32 blitcmd = COMMAND_2D_S2S_BITBLT | (TDFX_ROP_COPY << 24);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700902 u32 fmt = stride | ((bpp + ((bpp == 8) ? 0 : 8)) << 13);
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700903 u32 dstbase = 0;
904 u32 srcbase = 0;
905
906 /* asume always area->height < 4096 */
907 if (sy + area->height > 4095) {
908 srcbase = stride * sy;
909 sy = 0;
910 }
911 /* asume always area->width < 4096 */
912 if (sx + area->width > 4095) {
913 srcbase += sx * bpp >> 3;
914 sx = 0;
915 }
916 /* asume always area->height < 4096 */
917 if (dy + area->height > 4095) {
918 dstbase = stride * dy;
919 dy = 0;
920 }
921 /* asume always area->width < 4096 */
922 if (dx + area->width > 4095) {
923 dstbase += dx * bpp >> 3;
924 dx = 0;
925 }
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (area->sx <= area->dx) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700928 /* -X */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 blitcmd |= BIT(14);
930 sx += area->width - 1;
931 dx += area->width - 1;
932 }
933 if (area->sy <= area->dy) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700934 /* -Y */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 blitcmd |= BIT(15);
936 sy += area->height - 1;
937 dy += area->height - 1;
938 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700939
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700940 banshee_make_room(par, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700942 tdfx_outl(par, SRCFORMAT, fmt);
943 tdfx_outl(par, DSTFORMAT, fmt);
944 tdfx_outl(par, COMMAND_2D, blitcmd);
945 tdfx_outl(par, DSTSIZE, area->width | (area->height << 16));
946 tdfx_outl(par, DSTXY, dx | (dy << 16));
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700947 tdfx_outl(par, SRCBASE, srcbase);
948 tdfx_outl(par, DSTBASE, dstbase);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700949 tdfx_outl(par, LAUNCH_2D, sx | (sy << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700952static void tdfxfb_imageblit(struct fb_info *info, const struct fb_image *image)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800954 struct tdfx_par *par = info->par;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700955 int size = image->height * ((image->width * image->depth + 7) >> 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 int fifo_free;
957 int i, stride = info->fix.line_length;
958 u32 bpp = info->var.bits_per_pixel;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700959 u32 dstfmt = stride | ((bpp + ((bpp == 8) ? 0 : 8)) << 13);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 u8 *chardata = (u8 *) image->data;
961 u32 srcfmt;
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700962 u32 dx = image->dx;
963 u32 dy = image->dy;
964 u32 dstbase = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 if (image->depth != 1) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700967#ifdef BROKEN_CODE
968 banshee_make_room(par, 6 + ((size + 3) >> 2));
969 srcfmt = stride | ((bpp + ((bpp == 8) ? 0 : 8)) << 13) |
970 0x400000;
971#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 cfb_imageblit(info, image);
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -0700973#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return;
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700975 }
976 banshee_make_room(par, 9);
977 switch (info->fix.visual) {
978 case FB_VISUAL_PSEUDOCOLOR:
979 tdfx_outl(par, COLORFORE, image->fg_color);
980 tdfx_outl(par, COLORBACK, image->bg_color);
981 break;
982 case FB_VISUAL_TRUECOLOR:
983 default:
984 tdfx_outl(par, COLORFORE,
985 par->palette[image->fg_color]);
986 tdfx_outl(par, COLORBACK,
987 par->palette[image->bg_color]);
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989#ifdef __BIG_ENDIAN
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700990 srcfmt = 0x400000 | BIT(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991#else
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700992 srcfmt = 0x400000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993#endif
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700994 /* asume always image->height < 4096 */
995 if (dy + image->height > 4095) {
996 dstbase = stride * dy;
997 dy = 0;
998 }
999 /* asume always image->width < 4096 */
1000 if (dx + image->width > 4095) {
1001 dstbase += dx * bpp >> 3;
1002 dx = 0;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001005 tdfx_outl(par, DSTBASE, dstbase);
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001006 tdfx_outl(par, SRCXY, 0);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001007 tdfx_outl(par, DSTXY, dx | (dy << 16));
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001008 tdfx_outl(par, COMMAND_2D,
1009 COMMAND_2D_H2S_BITBLT | (TDFX_ROP_COPY << 24));
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001010 tdfx_outl(par, SRCFORMAT, srcfmt);
1011 tdfx_outl(par, DSTFORMAT, dstfmt);
1012 tdfx_outl(par, DSTSIZE, image->width | (image->height << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 /* A count of how many free FIFO entries we've requested.
1015 * When this goes negative, we need to request more. */
1016 fifo_free = 0;
1017
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001018 /* Send four bytes at a time of data */
1019 for (i = (size >> 2); i > 0; i--) {
1020 if (--fifo_free < 0) {
1021 fifo_free = 31;
1022 banshee_make_room(par, fifo_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001024 tdfx_outl(par, LAUNCH_2D, *(u32 *)chardata);
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001025 chardata += 4;
1026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001028 /* Send the leftovers now */
1029 banshee_make_room(par, 3);
Krzysztof Helt4f05b532007-10-16 01:28:48 -07001030 switch (size % 4) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001031 case 0:
1032 break;
1033 case 1:
1034 tdfx_outl(par, LAUNCH_2D, *chardata);
1035 break;
1036 case 2:
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001037 tdfx_outl(par, LAUNCH_2D, *(u16 *)chardata);
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001038 break;
1039 case 3:
1040 tdfx_outl(par, LAUNCH_2D,
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001041 *(u16 *)chardata | (chardata[3] << 24));
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001042 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044}
1045#endif /* CONFIG_FB_3DFX_ACCEL */
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047static int tdfxfb_cursor(struct fb_info *info, struct fb_cursor *cursor)
1048{
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001049 struct tdfx_par *par = info->par;
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001050 u32 vidcfg;
1051
1052 if (!hwcursor)
1053 return -EINVAL; /* just to force soft_cursor() call */
1054
1055 /* Too large of a cursor or wrong bpp :-( */
1056 if (cursor->image.width > 64 ||
1057 cursor->image.height > 64 ||
1058 cursor->image.depth > 1)
1059 return -EINVAL;
1060
1061 vidcfg = tdfx_inl(par, VIDPROCCFG);
1062 if (cursor->enable)
1063 tdfx_outl(par, VIDPROCCFG, vidcfg | VIDCFG_HWCURSOR_ENABLE);
1064 else
1065 tdfx_outl(par, VIDPROCCFG, vidcfg & ~VIDCFG_HWCURSOR_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 /*
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001068 * If the cursor is not be changed this means either we want the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 * current cursor state (if enable is set) or we want to query what
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001070 * we can do with the cursor (if enable is not set)
1071 */
1072 if (!cursor->set)
1073 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 /* fix cursor color - XFree86 forgets to restore it properly */
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001076 if (cursor->set & FB_CUR_SETCMAP) {
1077 struct fb_cmap cmap = info->cmap;
1078 u32 bg_idx = cursor->image.bg_color;
1079 u32 fg_idx = cursor->image.fg_color;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 unsigned long bg_color, fg_color;
1081
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001082 fg_color = (((u32)cmap.red[fg_idx] & 0xff00) << 8) |
1083 (((u32)cmap.green[fg_idx] & 0xff00) << 0) |
1084 (((u32)cmap.blue[fg_idx] & 0xff00) >> 8);
1085 bg_color = (((u32)cmap.red[bg_idx] & 0xff00) << 8) |
1086 (((u32)cmap.green[bg_idx] & 0xff00) << 0) |
1087 (((u32)cmap.blue[bg_idx] & 0xff00) >> 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 banshee_make_room(par, 2);
1089 tdfx_outl(par, HWCURC0, bg_color);
1090 tdfx_outl(par, HWCURC1, fg_color);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
1092
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001093 if (cursor->set & FB_CUR_SETPOS) {
1094 int x = cursor->image.dx;
1095 int y = cursor->image.dy - info->var.yoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 x += 63;
1098 y += 63;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 banshee_make_room(par, 1);
1100 tdfx_outl(par, HWCURLOC, (y << 16) + x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001102 if (cursor->set & (FB_CUR_SETIMAGE | FB_CUR_SETSHAPE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 /*
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001104 * Voodoo 3 and above cards use 2 monochrome cursor patterns.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 * The reason is so the card can fetch 8 words at a time
1106 * and are stored on chip for use for the next 8 scanlines.
1107 * This reduces the number of times for access to draw the
1108 * cursor for each screen refresh.
1109 * Each pattern is a bitmap of 64 bit wide and 64 bit high
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001110 * (total of 8192 bits or 1024 bytes). The two patterns are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 * stored in such a way that pattern 0 always resides in the
1112 * lower half (least significant 64 bits) of a 128 bit word
1113 * and pattern 1 the upper half. If you examine the data of
1114 * the cursor image the graphics card uses then from the
1115 * begining you see line one of pattern 0, line one of
1116 * pattern 1, line two of pattern 0, line two of pattern 1,
1117 * etc etc. The linear stride for the cursor is always 16 bytes
1118 * (128 bits) which is the maximum cursor width times two for
1119 * the two monochrome patterns.
1120 */
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001121 u8 __iomem *cursorbase = info->screen_base + info->fix.smem_len;
1122 u8 *bitmap = (u8 *)cursor->image.data;
1123 u8 *mask = (u8 *)cursor->mask;
1124 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001126 fb_memset(cursorbase, 0, 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001128 for (i = 0; i < cursor->image.height; i++) {
1129 int h = 0;
1130 int j = (cursor->image.width + 7) >> 3;
1131
1132 for (; j > 0; j--) {
1133 u8 data = *mask ^ *bitmap;
1134 if (cursor->rop == ROP_COPY)
1135 data = *mask & *bitmap;
1136 /* Pattern 0. Copy the cursor mask to it */
1137 fb_writeb(*mask, cursorbase + h);
1138 mask++;
1139 /* Pattern 1. Copy the cursor bitmap to it */
1140 fb_writeb(data, cursorbase + h + 8);
1141 bitmap++;
1142 h++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001144 cursorbase += 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
1146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return 0;
1148}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001150static struct fb_ops tdfxfb_ops = {
1151 .owner = THIS_MODULE,
1152 .fb_check_var = tdfxfb_check_var,
1153 .fb_set_par = tdfxfb_set_par,
1154 .fb_setcolreg = tdfxfb_setcolreg,
1155 .fb_blank = tdfxfb_blank,
1156 .fb_pan_display = tdfxfb_pan_display,
1157 .fb_sync = banshee_wait_idle,
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001158 .fb_cursor = tdfxfb_cursor,
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001159#ifdef CONFIG_FB_3DFX_ACCEL
1160 .fb_fillrect = tdfxfb_fillrect,
1161 .fb_copyarea = tdfxfb_copyarea,
1162 .fb_imageblit = tdfxfb_imageblit,
1163#else
1164 .fb_fillrect = cfb_fillrect,
1165 .fb_copyarea = cfb_copyarea,
1166 .fb_imageblit = cfb_imageblit,
1167#endif
1168};
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170/**
1171 * tdfxfb_probe - Device Initializiation
1172 *
1173 * @pdev: PCI Device to initialize
1174 * @id: PCI Device ID
1175 *
1176 * Initializes and allocates resources for PCI device @pdev.
1177 *
1178 */
1179static int __devinit tdfxfb_probe(struct pci_dev *pdev,
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001180 const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
1182 struct tdfx_par *default_par;
1183 struct fb_info *info;
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001184 int err, lpitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001186 err = pci_enable_device(pdev);
1187 if (err) {
1188 printk(KERN_ERR "tdfxfb: Can't enable pdev: %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return err;
1190 }
1191
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001192 info = framebuffer_alloc(sizeof(struct tdfx_par), &pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001194 if (!info)
1195 return -ENOMEM;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 default_par = info->par;
Krzysztof Helt3b256132008-10-15 22:03:34 -07001198 info->fix = tdfx_fix;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 /* Configure the default fb_fix_screeninfo first */
1201 switch (pdev->device) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001202 case PCI_DEVICE_ID_3DFX_BANSHEE:
Krzysztof Helt3b256132008-10-15 22:03:34 -07001203 strcpy(info->fix.id, "3Dfx Banshee");
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001204 default_par->max_pixclock = BANSHEE_MAX_PIXCLOCK;
1205 break;
1206 case PCI_DEVICE_ID_3DFX_VOODOO3:
Krzysztof Helt3b256132008-10-15 22:03:34 -07001207 strcpy(info->fix.id, "3Dfx Voodoo3");
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001208 default_par->max_pixclock = VOODOO3_MAX_PIXCLOCK;
1209 break;
1210 case PCI_DEVICE_ID_3DFX_VOODOO5:
Krzysztof Helt3b256132008-10-15 22:03:34 -07001211 strcpy(info->fix.id, "3Dfx Voodoo5");
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001212 default_par->max_pixclock = VOODOO5_MAX_PIXCLOCK;
1213 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215
Krzysztof Helt3b256132008-10-15 22:03:34 -07001216 info->fix.mmio_start = pci_resource_start(pdev, 0);
1217 info->fix.mmio_len = pci_resource_len(pdev, 0);
1218 if (!request_mem_region(info->fix.mmio_start, info->fix.mmio_len,
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001219 "tdfx regbase")) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001220 printk(KERN_ERR "tdfxfb: Can't reserve regbase\n");
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001221 goto out_err;
1222 }
1223
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001224 default_par->regbase_virt =
Krzysztof Helt3b256132008-10-15 22:03:34 -07001225 ioremap_nocache(info->fix.mmio_start, info->fix.mmio_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (!default_par->regbase_virt) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001227 printk(KERN_ERR "fb: Can't remap %s register area.\n",
Krzysztof Helt3b256132008-10-15 22:03:34 -07001228 info->fix.id);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001229 goto out_err_regbase;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Krzysztof Helt3b256132008-10-15 22:03:34 -07001232 info->fix.smem_start = pci_resource_start(pdev, 1);
1233 info->fix.smem_len = do_lfb_size(default_par, pdev->device);
1234 if (!info->fix.smem_len) {
1235 printk(KERN_ERR "fb: Can't count %s memory.\n", info->fix.id);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001236 goto out_err_regbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238
Krzysztof Helt3b256132008-10-15 22:03:34 -07001239 if (!request_mem_region(info->fix.smem_start,
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001240 pci_resource_len(pdev, 1), "tdfx smem")) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001241 printk(KERN_ERR "tdfxfb: Can't reserve smem\n");
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001242 goto out_err_regbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244
Krzysztof Helt3b256132008-10-15 22:03:34 -07001245 info->screen_base = ioremap_nocache(info->fix.smem_start,
1246 info->fix.smem_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 if (!info->screen_base) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001248 printk(KERN_ERR "fb: Can't remap %s framebuffer.\n",
Krzysztof Helt3b256132008-10-15 22:03:34 -07001249 info->fix.id);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001250 goto out_err_screenbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
1252
1253 default_par->iobase = pci_resource_start(pdev, 2);
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (!request_region(pci_resource_start(pdev, 2),
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001256 pci_resource_len(pdev, 2), "tdfx iobase")) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001257 printk(KERN_ERR "tdfxfb: Can't reserve iobase\n");
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001258 goto out_err_screenbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260
Krzysztof Helt3b256132008-10-15 22:03:34 -07001261 printk(KERN_INFO "fb: %s memory = %dK\n", info->fix.id,
1262 info->fix.smem_len >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Krzysztof Helt0960bd32007-10-16 01:28:49 -07001264 default_par->mtrr_handle = -1;
1265 if (!nomtrr)
1266 default_par->mtrr_handle =
Krzysztof Helt3b256132008-10-15 22:03:34 -07001267 mtrr_add(info->fix.smem_start, info->fix.smem_len,
Krzysztof Helt0960bd32007-10-16 01:28:49 -07001268 MTRR_TYPE_WRCOMB, 1);
1269
Krzysztof Helt3b256132008-10-15 22:03:34 -07001270 info->fix.ypanstep = nopan ? 0 : 1;
1271 info->fix.ywrapstep = nowrap ? 0 : 1;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 info->fbops = &tdfxfb_ops;
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001274 info->pseudo_palette = default_par->palette;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
1276#ifdef CONFIG_FB_3DFX_ACCEL
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001277 info->flags |= FBINFO_HWACCEL_FILLRECT |
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001278 FBINFO_HWACCEL_COPYAREA |
1279 FBINFO_HWACCEL_IMAGEBLIT |
1280 FBINFO_READS_FAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281#endif
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001282 /* reserve 8192 bits for cursor */
1283 /* the 2.4 driver says PAGE_MASK boundary is not enough for Voodoo4 */
1284 if (hwcursor)
1285 info->fix.smem_len = (info->fix.smem_len - 1024) &
1286 (PAGE_MASK << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 if (!mode_option)
1289 mode_option = "640x480@60";
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001290
1291 err = fb_find_mode(&info->var, info, mode_option, NULL, 0, NULL, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (!err || err == 4)
1293 info->var = tdfx_var;
1294
1295 /* maximize virtual vertical length */
1296 lpitch = info->var.xres_virtual * ((info->var.bits_per_pixel + 7) >> 3);
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001297 info->var.yres_virtual = info->fix.smem_len / lpitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (info->var.yres_virtual < info->var.yres)
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001299 goto out_err_iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001302 printk(KERN_ERR "tdfxfb: Can't allocate color map\n");
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001303 goto out_err_iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
1305
1306 if (register_framebuffer(info) < 0) {
Krzysztof Helt3cbe9cf2007-10-16 01:29:28 -07001307 printk(KERN_ERR "tdfxfb: can't register framebuffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 fb_dealloc_cmap(&info->cmap);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001309 goto out_err_iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311 /*
1312 * Our driver data
1313 */
1314 pci_set_drvdata(pdev, info);
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001315 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001317out_err_iobase:
Krzysztof Helt0960bd32007-10-16 01:28:49 -07001318 if (default_par->mtrr_handle >= 0)
1319 mtrr_del(default_par->mtrr_handle, info->fix.smem_start,
1320 info->fix.smem_len);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001321 release_mem_region(pci_resource_start(pdev, 2),
1322 pci_resource_len(pdev, 2));
1323out_err_screenbase:
1324 if (info->screen_base)
1325 iounmap(info->screen_base);
Krzysztof Helt3b256132008-10-15 22:03:34 -07001326 release_mem_region(info->fix.smem_start, pci_resource_len(pdev, 1));
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001327out_err_regbase:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /*
1329 * Cleanup after anything that was remapped/allocated.
1330 */
1331 if (default_par->regbase_virt)
1332 iounmap(default_par->regbase_virt);
Krzysztof Helt3b256132008-10-15 22:03:34 -07001333 release_mem_region(info->fix.mmio_start, info->fix.mmio_len);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001334out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 framebuffer_release(info);
1336 return -ENXIO;
1337}
1338
1339#ifndef MODULE
Randy Dunlap0ce85eb2008-02-06 01:39:19 -08001340static void __init tdfxfb_setup(char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001342 char *this_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 if (!options || !*options)
1345 return;
1346
1347 while ((this_opt = strsep(&options, ",")) != NULL) {
1348 if (!*this_opt)
1349 continue;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001350 if (!strcmp(this_opt, "nopan")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 nopan = 1;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001352 } else if (!strcmp(this_opt, "nowrap")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 nowrap = 1;
Krzysztof Helt0960bd32007-10-16 01:28:49 -07001354 } else if (!strncmp(this_opt, "hwcursor=", 9)) {
1355 hwcursor = simple_strtoul(this_opt + 9, NULL, 0);
1356#ifdef CONFIG_MTRR
1357 } else if (!strncmp(this_opt, "nomtrr", 6)) {
1358 nomtrr = 1;
1359#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 } else {
1361 mode_option = this_opt;
1362 }
1363 }
1364}
1365#endif
1366
1367/**
1368 * tdfxfb_remove - Device removal
1369 *
1370 * @pdev: PCI Device to cleanup
1371 *
1372 * Releases all resources allocated during the course of the driver's
1373 * lifetime for the PCI device @pdev.
1374 *
1375 */
1376static void __devexit tdfxfb_remove(struct pci_dev *pdev)
1377{
1378 struct fb_info *info = pci_get_drvdata(pdev);
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001379 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 unregister_framebuffer(info);
Krzysztof Helt0960bd32007-10-16 01:28:49 -07001382 if (par->mtrr_handle >= 0)
1383 mtrr_del(par->mtrr_handle, info->fix.smem_start,
1384 info->fix.smem_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 iounmap(par->regbase_virt);
1386 iounmap(info->screen_base);
1387
1388 /* Clean up after reserved regions */
1389 release_region(pci_resource_start(pdev, 2),
1390 pci_resource_len(pdev, 2));
1391 release_mem_region(pci_resource_start(pdev, 1),
1392 pci_resource_len(pdev, 1));
1393 release_mem_region(pci_resource_start(pdev, 0),
1394 pci_resource_len(pdev, 0));
1395 pci_set_drvdata(pdev, NULL);
Andres Salomon895d7222009-03-31 15:25:21 -07001396 fb_dealloc_cmap(&info->cmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 framebuffer_release(info);
1398}
1399
1400static int __init tdfxfb_init(void)
1401{
1402#ifndef MODULE
1403 char *option = NULL;
1404
1405 if (fb_get_options("tdfxfb", &option))
1406 return -ENODEV;
1407
1408 tdfxfb_setup(option);
1409#endif
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001410 return pci_register_driver(&tdfxfb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
1413static void __exit tdfxfb_exit(void)
1414{
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001415 pci_unregister_driver(&tdfxfb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
1418MODULE_AUTHOR("Hannu Mallat <hmallat@cc.hut.fi>");
1419MODULE_DESCRIPTION("3Dfx framebuffer device driver");
1420MODULE_LICENSE("GPL");
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001421
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001422module_param(hwcursor, int, 0644);
1423MODULE_PARM_DESC(hwcursor, "Enable hardware cursor "
1424 "(1=enable, 0=disable, default=1)");
Krzysztof Heltea9014b2008-07-23 21:31:22 -07001425module_param(mode_option, charp, 0);
1426MODULE_PARM_DESC(mode_option, "Initial video mode e.g. '648x480-8@60'");
Krzysztof Helt0960bd32007-10-16 01:28:49 -07001427#ifdef CONFIG_MTRR
1428module_param(nomtrr, bool, 0);
1429MODULE_PARM_DESC(nomtrr, "Disable MTRR support (default: enabled)");
1430#endif
Krzysztof Helt90b0f082007-10-16 01:28:48 -07001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432module_init(tdfxfb_init);
1433module_exit(tdfxfb_exit);