blob: 7d0c50e3a40b9099389493c38209c999259f5313 [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 *
7 * Copyright © 1999 Hannu Mallat
8 * 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 *
45 * 0.1.4 (released 2002-05-28) ported over to new fbdev api by James Simmons
46 *
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
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
57 *
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>
70#include <linux/timer.h>
71#include <linux/spinlock.h>
72
73#include <video/tdfx.h>
74
Krzysztof Helt8af1d502007-10-16 01:28:43 -070075#undef TDFXFB_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#ifdef TDFXFB_DEBUG
77#define DPRINTK(a,b...) printk(KERN_DEBUG "fb: %s: " a, __FUNCTION__ , ## b)
78#else
79#define DPRINTK(a,b...)
Krzysztof Helt8af1d502007-10-16 01:28:43 -070080#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82#define BANSHEE_MAX_PIXCLOCK 270000
83#define VOODOO3_MAX_PIXCLOCK 300000
84#define VOODOO5_MAX_PIXCLOCK 350000
85
86static struct fb_fix_screeninfo tdfx_fix __devinitdata = {
87 .id = "3Dfx",
88 .type = FB_TYPE_PACKED_PIXELS,
Krzysztof Helt8af1d502007-10-16 01:28:43 -070089 .visual = FB_VISUAL_PSEUDOCOLOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 .ypanstep = 1,
Krzysztof Helt8af1d502007-10-16 01:28:43 -070091 .ywrapstep = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .accel = FB_ACCEL_3DFX_BANSHEE
93};
94
95static struct fb_var_screeninfo tdfx_var __devinitdata = {
96 /* "640x480, 8 bpp @ 60 Hz */
97 .xres = 640,
98 .yres = 480,
99 .xres_virtual = 640,
100 .yres_virtual = 1024,
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700101 .bits_per_pixel = 8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .red = {0, 8, 0},
103 .blue = {0, 8, 0},
104 .green = {0, 8, 0},
105 .activate = FB_ACTIVATE_NOW,
106 .height = -1,
107 .width = -1,
108 .accel_flags = FB_ACCELF_TEXT,
109 .pixclock = 39722,
110 .left_margin = 40,
111 .right_margin = 24,
112 .upper_margin = 32,
113 .lower_margin = 11,
114 .hsync_len = 96,
115 .vsync_len = 2,
116 .vmode = FB_VMODE_NONINTERLACED
117};
118
119/*
120 * PCI driver prototypes
121 */
122static int __devinit tdfxfb_probe(struct pci_dev *pdev,
123 const struct pci_device_id *id);
124static void __devexit tdfxfb_remove(struct pci_dev *pdev);
125
126static struct pci_device_id tdfxfb_id_table[] = {
127 { PCI_VENDOR_ID_3DFX, PCI_DEVICE_ID_3DFX_BANSHEE,
128 PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
129 0xff0000, 0 },
130 { PCI_VENDOR_ID_3DFX, PCI_DEVICE_ID_3DFX_VOODOO3,
131 PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
132 0xff0000, 0 },
133 { PCI_VENDOR_ID_3DFX, PCI_DEVICE_ID_3DFX_VOODOO5,
134 PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
135 0xff0000, 0 },
136 { 0, }
137};
138
139static struct pci_driver tdfxfb_driver = {
140 .name = "tdfxfb",
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700141 .id_table = tdfxfb_id_table,
142 .probe = tdfxfb_probe,
143 .remove = __devexit_p(tdfxfb_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
146MODULE_DEVICE_TABLE(pci, tdfxfb_id_table);
147
148/*
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700149 * Driver data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 */
151static int nopan = 0;
152static int nowrap = 1; // not implemented (yet)
153static char *mode_option __devinitdata = NULL;
154
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700155/* -------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 * Hardware-specific funcions
157 * ------------------------------------------------------------------------- */
158
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700159static inline u8 vga_inb(struct tdfx_par *par, u32 reg)
160{
161 return inb(par->iobase + reg - 0x300);
162}
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700163
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700164static inline void vga_outb(struct tdfx_par *par, u32 reg, u8 val)
165{
166 outb(val, par->iobase + reg - 0x300);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700169static inline void gra_outb(struct tdfx_par *par, u32 idx, u8 val)
170{
171 vga_outb(par, GRA_I, idx);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700172 wmb();
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700173 vga_outb(par, GRA_D, val);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700174 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700177static inline void seq_outb(struct tdfx_par *par, u32 idx, u8 val)
178{
179 vga_outb(par, SEQ_I, idx);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700180 wmb();
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700181 vga_outb(par, SEQ_D, val);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700182 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700185static inline u8 seq_inb(struct tdfx_par *par, u32 idx)
186{
187 vga_outb(par, SEQ_I, idx);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700188 mb();
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700189 return vga_inb(par, SEQ_D);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700192static inline void crt_outb(struct tdfx_par *par, u32 idx, u8 val)
193{
194 vga_outb(par, CRT_I, idx);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700195 wmb();
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700196 vga_outb(par, CRT_D, val);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700197 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700200static inline u8 crt_inb(struct tdfx_par *par, u32 idx)
201{
202 vga_outb(par, CRT_I, idx);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700203 mb();
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700204 return vga_inb(par, CRT_D);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700207static inline void att_outb(struct tdfx_par *par, u32 idx, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 unsigned char tmp;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 tmp = vga_inb(par, IS1_R);
212 vga_outb(par, ATT_IW, idx);
213 vga_outb(par, ATT_IW, val);
214}
215
216static inline void vga_disable_video(struct tdfx_par *par)
217{
218 unsigned char s;
219
220 s = seq_inb(par, 0x01) | 0x20;
221 seq_outb(par, 0x00, 0x01);
222 seq_outb(par, 0x01, s);
223 seq_outb(par, 0x00, 0x03);
224}
225
226static inline void vga_enable_video(struct tdfx_par *par)
227{
228 unsigned char s;
229
230 s = seq_inb(par, 0x01) & 0xdf;
231 seq_outb(par, 0x00, 0x01);
232 seq_outb(par, 0x01, s);
233 seq_outb(par, 0x00, 0x03);
234}
235
236static inline void vga_enable_palette(struct tdfx_par *par)
237{
238 vga_inb(par, IS1_R);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700239 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 vga_outb(par, ATT_IW, 0x20);
241}
242
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700243static inline u32 tdfx_inl(struct tdfx_par *par, unsigned int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 return readl(par->regbase_virt + reg);
246}
247
248static inline void tdfx_outl(struct tdfx_par *par, unsigned int reg, u32 val)
249{
250 writel(val, par->regbase_virt + reg);
251}
252
253static inline void banshee_make_room(struct tdfx_par *par, int size)
254{
255 /* Note: The Voodoo3's onboard FIFO has 32 slots. This loop
256 * won't quit if you ask for more. */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700257 while ((tdfx_inl(par, STATUS) & 0x1f) < size - 1) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260static int banshee_wait_idle(struct fb_info *info)
261{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800262 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 int i = 0;
264
265 banshee_make_room(par, 1);
266 tdfx_outl(par, COMMAND_3D, COMMAND_3D_NOP);
267
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700268 do {
269 if ((tdfx_inl(par, STATUS) & STATUS_BUSY) == 0)
270 i++;
271 } while (i < 3);
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return 0;
274}
275
276/*
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700277 * Set the color of a palette entry in 8bpp mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 */
279static inline void do_setpalentry(struct tdfx_par *par, unsigned regno, u32 c)
280{
281 banshee_make_room(par, 2);
282 tdfx_outl(par, DACADDR, regno);
Krzysztof Helt254c9472007-10-16 01:28:46 -0700283 /* read after write makes it working */
284 tdfx_inl(par, DACADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 tdfx_outl(par, DACDATA, c);
286}
287
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700288static u32 do_calc_pll(int freq, int *freq_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700290 int m, n, k, best_m, best_n, best_k, best_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 int fref = 14318;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 best_error = freq;
294 best_n = best_m = best_k = 0;
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700295
296 for (k = 3; k >= 0; k--) {
297 for (m = 63; m >= 0; m--) {
298 /*
299 * Estimate value of n that produces target frequency
300 * with current m and k
301 */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700302 int n_estimated = ((freq * (m + 2) << k) / fref) - 2;
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700303
304 /* Search neighborhood of estimated n */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700305 for (n = max(0, n_estimated);
306 n <= min(255, n_estimated + 1);
307 n++) {
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700308 /*
309 * Calculate PLL freqency with current m, k and
310 * estimated n
311 */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700312 int f = (fref * (n + 2) / (m + 2)) >> k;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700313 int error = abs(f - freq);
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700314
315 /*
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700316 * If this is the closest we've come to the
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700317 * target frequency then remember n, m and k
318 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700319 if (error < best_error) {
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700320 best_error = error;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700321 best_n = n;
322 best_m = m;
323 best_k = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325 }
326 }
327 }
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 n = best_n;
330 m = best_m;
331 k = best_k;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700332 *freq_out = (fref * (n + 2) / (m + 2)) >> k;
Richard Drummond0fbe9ca2005-05-01 08:59:24 -0700333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return (n << 8) | (m << 2) | k;
335}
336
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700337static void do_write_regs(struct fb_info *info, struct banshee_reg *reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800339 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 int i;
341
342 banshee_wait_idle(info);
343
344 tdfx_outl(par, MISCINIT1, tdfx_inl(par, MISCINIT1) | 0x01);
345
346 crt_outb(par, 0x11, crt_inb(par, 0x11) & 0x7f); /* CRT unprotect */
347
348 banshee_make_room(par, 3);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700349 tdfx_outl(par, VGAINIT1, reg->vgainit1 & 0x001FFFFF);
350 tdfx_outl(par, VIDPROCCFG, reg->vidcfg & ~0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351#if 0
352 tdfx_outl(par, PLLCTRL1, reg->mempll);
353 tdfx_outl(par, PLLCTRL2, reg->gfxpll);
354#endif
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700355 tdfx_outl(par, PLLCTRL0, reg->vidpll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 vga_outb(par, MISC_W, reg->misc[0x00] | 0x01);
358
359 for (i = 0; i < 5; i++)
360 seq_outb(par, i, reg->seq[i]);
361
362 for (i = 0; i < 25; i++)
363 crt_outb(par, i, reg->crt[i]);
364
365 for (i = 0; i < 9; i++)
366 gra_outb(par, i, reg->gra[i]);
367
368 for (i = 0; i < 21; i++)
369 att_outb(par, i, reg->att[i]);
370
371 crt_outb(par, 0x1a, reg->ext[0]);
372 crt_outb(par, 0x1b, reg->ext[1]);
373
374 vga_enable_palette(par);
375 vga_enable_video(par);
376
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700377 banshee_make_room(par, 9);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700378 tdfx_outl(par, VGAINIT0, reg->vgainit0);
379 tdfx_outl(par, DACMODE, reg->dacmode);
380 tdfx_outl(par, VIDDESKSTRIDE, reg->stride);
381 tdfx_outl(par, HWCURPATADDR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700383 tdfx_outl(par, VIDSCREENSIZE, reg->screensize);
384 tdfx_outl(par, VIDDESKSTART, reg->startaddr);
385 tdfx_outl(par, VIDPROCCFG, reg->vidcfg);
386 tdfx_outl(par, VGAINIT1, reg->vgainit1);
387 tdfx_outl(par, MISCINIT0, reg->miscinit0);
388
389 banshee_make_room(par, 8);
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700390 tdfx_outl(par, SRCBASE, reg->startaddr);
391 tdfx_outl(par, DSTBASE, reg->startaddr);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700392 tdfx_outl(par, COMMANDEXTRA_2D, 0);
393 tdfx_outl(par, CLIP0MIN, 0);
394 tdfx_outl(par, CLIP0MAX, 0x0fff0fff);
395 tdfx_outl(par, CLIP1MIN, 0);
396 tdfx_outl(par, CLIP1MAX, 0x0fff0fff);
397 tdfx_outl(par, SRCXY, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 banshee_wait_idle(info);
400}
401
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700402static unsigned long do_lfb_size(struct tdfx_par *par, unsigned short dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700404 u32 draminit0 = tdfx_inl(par, DRAMINIT0);
405 u32 draminit1 = tdfx_inl(par, DRAMINIT1);
Richard Drummond333f9812005-05-01 08:59:25 -0700406 u32 miscinit1;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700407 int num_chips = (draminit0 & DRAMINIT0_SGRAM_NUM) ? 8 : 4;
Richard Drummond333f9812005-05-01 08:59:25 -0700408 int chip_size; /* in MB */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700409 int has_sgram = draminit1 & DRAMINIT1_MEM_SDRAM;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700410
Richard Drummond333f9812005-05-01 08:59:25 -0700411 if (dev_id < PCI_DEVICE_ID_3DFX_VOODOO5) {
412 /* Banshee/Voodoo3 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700413 chip_size = 2;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700414 if (has_sgram && (draminit0 & DRAMINIT0_SGRAM_TYPE))
415 chip_size = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 } else {
417 /* Voodoo4/5 */
Richard Drummond333f9812005-05-01 08:59:25 -0700418 has_sgram = 0;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700419 chip_size = draminit0 & DRAMINIT0_SGRAM_TYPE_MASK;
420 chip_size = 1 << (chip_size >> DRAMINIT0_SGRAM_TYPE_SHIFT);
Richard Drummond333f9812005-05-01 08:59:25 -0700421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Richard Drummond333f9812005-05-01 08:59:25 -0700423 /* disable block writes for SDRAM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 miscinit1 = tdfx_inl(par, MISCINIT1);
Richard Drummond333f9812005-05-01 08:59:25 -0700425 miscinit1 |= has_sgram ? 0 : MISCINIT1_2DBLOCK_DIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 miscinit1 |= MISCINIT1_CLUT_INV;
427
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700428 banshee_make_room(par, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 tdfx_outl(par, MISCINIT1, miscinit1);
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700430 return num_chips * chip_size * 1024l * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
433/* ------------------------------------------------------------------------- */
434
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700435static int tdfxfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800437 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 u32 lpitch;
439
440 if (var->bits_per_pixel != 8 && var->bits_per_pixel != 16 &&
441 var->bits_per_pixel != 24 && var->bits_per_pixel != 32) {
442 DPRINTK("depth not supported: %u\n", var->bits_per_pixel);
443 return -EINVAL;
444 }
445
446 if (var->xres != var->xres_virtual)
447 var->xres_virtual = var->xres;
448
449 if (var->yres > var->yres_virtual)
450 var->yres_virtual = var->yres;
451
452 if (var->xoffset) {
453 DPRINTK("xoffset not supported\n");
454 return -EINVAL;
455 }
456
457 /* Banshee doesn't support interlace, but Voodoo4/5 and probably Voodoo3 do. */
458 /* no direct information about device id now? use max_pixclock for this... */
459 if (((var->vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) &&
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700460 (par->max_pixclock < VOODOO3_MAX_PIXCLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 DPRINTK("interlace not supported\n");
462 return -EINVAL;
463 }
464
465 var->xres = (var->xres + 15) & ~15; /* could sometimes be 8 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700466 lpitch = var->xres * ((var->bits_per_pixel + 7) >> 3);
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (var->xres < 320 || var->xres > 2048) {
469 DPRINTK("width not supported: %u\n", var->xres);
470 return -EINVAL;
471 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (var->yres < 200 || var->yres > 2048) {
474 DPRINTK("height not supported: %u\n", var->yres);
475 return -EINVAL;
476 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (lpitch * var->yres_virtual > info->fix.smem_len) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700479 var->yres_virtual = info->fix.smem_len / lpitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (var->yres_virtual < var->yres) {
481 DPRINTK("no memory for screen (%ux%ux%u)\n",
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700482 var->xres, var->yres_virtual,
483 var->bits_per_pixel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return -EINVAL;
485 }
486 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (PICOS2KHZ(var->pixclock) > par->max_pixclock) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700489 DPRINTK("pixclock too high (%ldKHz)\n",
490 PICOS2KHZ(var->pixclock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return -EINVAL;
492 }
493
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700494 var->transp.offset = 0;
495 var->transp.length = 0;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700496 switch (var->bits_per_pixel) {
497 case 8:
498 var->red.length = var->green.length = var->blue.length = 8;
499 break;
500 case 16:
501 var->red.offset = 11;
502 var->red.length = 5;
503 var->green.offset = 5;
504 var->green.length = 6;
505 var->blue.offset = 0;
506 var->blue.length = 5;
507 break;
508 case 32:
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700509 var->transp.offset = 24;
510 var->transp.length = 8;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700511 case 24:
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700512 var->red.offset = 16;
513 var->green.offset = 8;
514 var->blue.offset = 0;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700515 var->red.length = var->green.length = var->blue.length = 8;
516 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 var->height = var->width = -1;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 var->accel_flags = FB_ACCELF_TEXT;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700521
522 DPRINTK("Checking graphics mode at %dx%d depth %d\n",
523 var->xres, var->yres, var->bits_per_pixel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return 0;
525}
526
527static int tdfxfb_set_par(struct fb_info *info)
528{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800529 struct tdfx_par *par = info->par;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700530 u32 hdispend = info->var.xres;
531 u32 hsyncsta = hdispend + info->var.right_margin;
532 u32 hsyncend = hsyncsta + info->var.hsync_len;
533 u32 htotal = hsyncend + info->var.left_margin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 u32 hd, hs, he, ht, hbs, hbe;
535 u32 vd, vs, ve, vt, vbs, vbe;
536 struct banshee_reg reg;
537 int fout, freq;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700538 u32 wd;
539 u32 cpp = (info->var.bits_per_pixel + 7) >> 3;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 memset(&reg, 0, sizeof(reg));
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700542
543 reg.vidcfg = VIDCFG_VIDPROC_ENABLE | VIDCFG_DESK_ENABLE |
544 VIDCFG_CURS_X11 |
545 ((cpp - 1) << VIDCFG_PIXFMT_SHIFT) |
546 (cpp != 1 ? VIDCFG_CLUT_BYPASS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 /* PLL settings */
549 freq = PICOS2KHZ(info->var.pixclock);
550
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700551 reg.vidcfg &= ~VIDCFG_2X;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700553 if (freq > par->max_pixclock / 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 freq = freq > par->max_pixclock ? par->max_pixclock : freq;
555 reg.dacmode |= DACMODE_2X;
556 reg.vidcfg |= VIDCFG_2X;
557 hdispend >>= 1;
558 hsyncsta >>= 1;
559 hsyncend >>= 1;
560 htotal >>= 1;
561 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 hd = wd = (hdispend >> 3) - 1;
564 hs = (hsyncsta >> 3) - 1;
565 he = (hsyncend >> 3) - 1;
566 ht = (htotal >> 3) - 1;
567 hbs = hd;
568 hbe = ht;
569
570 if ((info->var.vmode & FB_VMODE_MASK) == FB_VMODE_DOUBLE) {
571 vbs = vd = (info->var.yres << 1) - 1;
572 vs = vd + (info->var.lower_margin << 1);
573 ve = vs + (info->var.vsync_len << 1);
574 vbe = vt = ve + (info->var.upper_margin << 1) - 1;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700575 reg.screensize = info->var.xres | (info->var.yres << 13);
576 reg.vidcfg |= VIDCFG_HALF_MODE;
577 reg.crt[0x09] = 0x80;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 } else {
579 vbs = vd = info->var.yres - 1;
580 vs = vd + info->var.lower_margin;
581 ve = vs + info->var.vsync_len;
582 vbe = vt = ve + info->var.upper_margin - 1;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700583 reg.screensize = info->var.xres | (info->var.yres << 12);
584 reg.vidcfg &= ~VIDCFG_HALF_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 /* this is all pretty standard VGA register stuffing */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700588 reg.misc[0x00] = 0x0f |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 (info->var.xres < 400 ? 0xa0 :
590 info->var.xres < 480 ? 0x60 :
591 info->var.xres < 768 ? 0xe0 : 0x20);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 reg.gra[0x05] = 0x40;
594 reg.gra[0x06] = 0x05;
595 reg.gra[0x07] = 0x0f;
596 reg.gra[0x08] = 0xff;
597
598 reg.att[0x00] = 0x00;
599 reg.att[0x01] = 0x01;
600 reg.att[0x02] = 0x02;
601 reg.att[0x03] = 0x03;
602 reg.att[0x04] = 0x04;
603 reg.att[0x05] = 0x05;
604 reg.att[0x06] = 0x06;
605 reg.att[0x07] = 0x07;
606 reg.att[0x08] = 0x08;
607 reg.att[0x09] = 0x09;
608 reg.att[0x0a] = 0x0a;
609 reg.att[0x0b] = 0x0b;
610 reg.att[0x0c] = 0x0c;
611 reg.att[0x0d] = 0x0d;
612 reg.att[0x0e] = 0x0e;
613 reg.att[0x0f] = 0x0f;
614 reg.att[0x10] = 0x41;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 reg.att[0x12] = 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 reg.seq[0x00] = 0x03;
618 reg.seq[0x01] = 0x01; /* fixme: clkdiv2? */
619 reg.seq[0x02] = 0x0f;
620 reg.seq[0x03] = 0x00;
621 reg.seq[0x04] = 0x0e;
622
623 reg.crt[0x00] = ht - 4;
624 reg.crt[0x01] = hd;
625 reg.crt[0x02] = hbs;
626 reg.crt[0x03] = 0x80 | (hbe & 0x1f);
627 reg.crt[0x04] = hs;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700628 reg.crt[0x05] = ((hbe & 0x20) << 2) | (he & 0x1f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 reg.crt[0x06] = vt;
630 reg.crt[0x07] = ((vs & 0x200) >> 2) |
631 ((vd & 0x200) >> 3) |
632 ((vt & 0x200) >> 4) | 0x10 |
633 ((vbs & 0x100) >> 5) |
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700634 ((vs & 0x100) >> 6) |
635 ((vd & 0x100) >> 7) |
636 ((vt & 0x100) >> 8);
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700637 reg.crt[0x09] |= 0x40 | ((vbs & 0x200) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 reg.crt[0x10] = vs;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700639 reg.crt[0x11] = (ve & 0x0f) | 0x20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 reg.crt[0x12] = vd;
641 reg.crt[0x13] = wd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 reg.crt[0x15] = vbs;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700643 reg.crt[0x16] = vbe + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 reg.crt[0x17] = 0xc3;
645 reg.crt[0x18] = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700647 /* Banshee's nonvga stuff */
648 reg.ext[0x00] = (((ht & 0x100) >> 8) |
649 ((hd & 0x100) >> 6) |
650 ((hbs & 0x100) >> 4) |
651 ((hbe & 0x40) >> 1) |
652 ((hs & 0x100) >> 2) |
653 ((he & 0x20) << 2));
654 reg.ext[0x01] = (((vt & 0x400) >> 10) |
655 ((vd & 0x400) >> 8) |
656 ((vbs & 0x400) >> 6) |
657 ((vbe & 0x400) >> 4));
658
659 reg.vgainit0 = VGAINIT0_8BIT_DAC |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 VGAINIT0_EXT_ENABLE |
661 VGAINIT0_WAKEUP_3C3 |
662 VGAINIT0_ALT_READBACK |
663 VGAINIT0_EXTSHIFTOUT;
664 reg.vgainit1 = tdfx_inl(par, VGAINIT1) & 0x1fffff;
665
666 reg.cursloc = 0;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700667
668 reg.cursc0 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 reg.cursc1 = 0xffffff;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 reg.stride = info->var.xres * cpp;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700672 reg.startaddr = info->var.yoffset * reg.stride
673 + info->var.xoffset * cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 reg.vidpll = do_calc_pll(freq, &fout);
676#if 0
677 reg.mempll = do_calc_pll(..., &fout);
678 reg.gfxpll = do_calc_pll(..., &fout);
679#endif
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if ((info->var.vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED)
682 reg.vidcfg |= VIDCFG_INTERLACE;
683 reg.miscinit0 = tdfx_inl(par, MISCINIT0);
684
685#if defined(__BIG_ENDIAN)
686 switch (info->var.bits_per_pixel) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700687 case 8:
688 case 24:
689 reg.miscinit0 &= ~(1 << 30);
690 reg.miscinit0 &= ~(1 << 31);
691 break;
692 case 16:
693 reg.miscinit0 |= (1 << 30);
694 reg.miscinit0 |= (1 << 31);
695 break;
696 case 32:
697 reg.miscinit0 |= (1 << 30);
698 reg.miscinit0 &= ~(1 << 31);
699 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700701#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 do_write_regs(info, &reg);
703
704 /* Now change fb_fix_screeninfo according to changes in par */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700705 info->fix.line_length = reg.stride;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700706 info->fix.visual = (info->var.bits_per_pixel == 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 ? FB_VISUAL_PSEUDOCOLOR
708 : FB_VISUAL_TRUECOLOR;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700709 DPRINTK("Graphics mode is now set at %dx%d depth %d\n",
710 info->var.xres, info->var.yres, info->var.bits_per_pixel);
711 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714/* A handy macro shamelessly pinched from matroxfb */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700715#define CNVT_TOHW(val, width) ((((val)<<(width))+0x7FFF-(val))>>16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700717static int tdfxfb_setcolreg(unsigned regno, unsigned red, unsigned green,
718 unsigned blue, unsigned transp,
719 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800721 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 u32 rgbcol;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700723
724 if (regno >= info->cmap.len || regno > 255)
725 return 1;
726
Krzysztof Helt254c9472007-10-16 01:28:46 -0700727 /* grayscale works only partially under directcolor */
728 if (info->var.grayscale) {
729 /* grayscale = 0.30*R + 0.59*G + 0.11*B */
730 red = green = blue = (red * 77 + green * 151 + blue * 28) >> 8;
731 }
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 switch (info->fix.visual) {
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800734 case FB_VISUAL_PSEUDOCOLOR:
735 rgbcol =(((u32)red & 0xff00) << 8) |
736 (((u32)green & 0xff00) << 0) |
737 (((u32)blue & 0xff00) >> 8);
738 do_setpalentry(par, regno, rgbcol);
739 break;
740 /* Truecolor has no hardware color palettes. */
741 case FB_VISUAL_TRUECOLOR:
742 if (regno < 16) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700743 rgbcol = (CNVT_TOHW(red, info->var.red.length) <<
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800744 info->var.red.offset) |
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700745 (CNVT_TOHW(green, info->var.green.length) <<
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800746 info->var.green.offset) |
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700747 (CNVT_TOHW(blue, info->var.blue.length) <<
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800748 info->var.blue.offset) |
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700749 (CNVT_TOHW(transp, info->var.transp.length) <<
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800750 info->var.transp.offset);
751 par->palette[regno] = rgbcol;
752 }
753
754 break;
755 default:
756 DPRINTK("bad depth %u\n", info->var.bits_per_pixel);
757 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Antonino A. Daplas54243ce2006-03-11 03:27:26 -0800759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return 0;
761}
762
763/* 0 unblank, 1 blank, 2 no vsync, 3 no hsync, 4 off */
764static int tdfxfb_blank(int blank, struct fb_info *info)
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700765{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800766 struct tdfx_par *par = info->par;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700767 int vgablank = 1;
768 u32 dacmode = tdfx_inl(par, DACMODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700770 dacmode &= ~(BIT(1) | BIT(3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 switch (blank) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700773 case FB_BLANK_UNBLANK: /* Screen: On; HSync: On, VSync: On */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700774 vgablank = 0;
775 break;
776 case FB_BLANK_NORMAL: /* Screen: Off; HSync: On, VSync: On */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700777 break;
778 case FB_BLANK_VSYNC_SUSPEND: /* Screen: Off; HSync: On, VSync: Off */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700779 dacmode |= BIT(3);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700780 break;
781 case FB_BLANK_HSYNC_SUSPEND: /* Screen: Off; HSync: Off, VSync: On */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700782 dacmode |= BIT(1);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700783 break;
784 case FB_BLANK_POWERDOWN: /* Screen: Off; HSync: Off, VSync: Off */
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700785 dacmode |= BIT(1) | BIT(3);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700786 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700789 banshee_make_room(par, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 tdfx_outl(par, DACMODE, dacmode);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700791 if (vgablank)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 vga_disable_video(par);
793 else
794 vga_enable_video(par);
795 return 0;
796}
797
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700798/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 * Set the starting position of the visible screen to var->yoffset
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801static int tdfxfb_pan_display(struct fb_var_screeninfo *var,
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700802 struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800804 struct tdfx_par *par = info->par;
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700805 u32 addr = var->yoffset * info->fix.line_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 if (nopan || var->xoffset || (var->yoffset > var->yres_virtual))
808 return -EINVAL;
809 if ((var->yoffset + var->yres > var->yres_virtual && nowrap))
810 return -EINVAL;
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 banshee_make_room(par, 1);
813 tdfx_outl(par, VIDDESKSTART, addr);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 info->var.xoffset = var->xoffset;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700816 info->var.yoffset = var->yoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return 0;
818}
819
820#ifdef CONFIG_FB_3DFX_ACCEL
821/*
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700822 * FillRect 2D command (solidfill or invert (via ROP_XOR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700824static void tdfxfb_fillrect(struct fb_info *info,
825 const struct fb_fillrect *rect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800827 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 u32 bpp = info->var.bits_per_pixel;
829 u32 stride = info->fix.line_length;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700830 u32 fmt= stride | ((bpp + ((bpp == 8) ? 0 : 8)) << 13);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 int tdfx_rop;
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700832 u32 dx = rect->dx;
833 u32 dy = rect->dy;
834 u32 dstbase = 0;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700835
836 if (rect->rop == ROP_COPY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 tdfx_rop = TDFX_ROP_COPY;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700838 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 tdfx_rop = TDFX_ROP_XOR;
840
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700841 /* asume always rect->height < 4096 */
842 if (dy + rect->height > 4095) {
843 dstbase = stride * dy;
844 dy = 0;
845 }
846 /* asume always rect->width < 4096 */
847 if (dx + rect->width > 4095) {
848 dstbase += dx * bpp >> 3;
849 dx = 0;
850 }
851 banshee_make_room(par, 6);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700852 tdfx_outl(par, DSTFORMAT, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (info->fix.visual == FB_VISUAL_PSEUDOCOLOR) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700854 tdfx_outl(par, COLORFORE, rect->color);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 } else { /* FB_VISUAL_TRUECOLOR */
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800856 tdfx_outl(par, COLORFORE, par->palette[rect->color]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700858 tdfx_outl(par, COMMAND_2D, COMMAND_2D_FILLRECT | (tdfx_rop << 24));
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700859 tdfx_outl(par, DSTBASE, dstbase);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700860 tdfx_outl(par, DSTSIZE, rect->width | (rect->height << 16));
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700861 tdfx_outl(par, LAUNCH_2D, dx | (dy << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
864/*
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700865 * Screen-to-Screen BitBlt 2D command (for the bmove fb op.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700867static void tdfxfb_copyarea(struct fb_info *info,
868 const struct fb_copyarea *area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800870 struct tdfx_par *par = info->par;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700871 u32 sx = area->sx, sy = area->sy, dx = area->dx, dy = area->dy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 u32 bpp = info->var.bits_per_pixel;
873 u32 stride = info->fix.line_length;
874 u32 blitcmd = COMMAND_2D_S2S_BITBLT | (TDFX_ROP_COPY << 24);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700875 u32 fmt = stride | ((bpp + ((bpp == 8) ? 0 : 8)) << 13);
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700876 u32 dstbase = 0;
877 u32 srcbase = 0;
878
879 /* asume always area->height < 4096 */
880 if (sy + area->height > 4095) {
881 srcbase = stride * sy;
882 sy = 0;
883 }
884 /* asume always area->width < 4096 */
885 if (sx + area->width > 4095) {
886 srcbase += sx * bpp >> 3;
887 sx = 0;
888 }
889 /* asume always area->height < 4096 */
890 if (dy + area->height > 4095) {
891 dstbase = stride * dy;
892 dy = 0;
893 }
894 /* asume always area->width < 4096 */
895 if (dx + area->width > 4095) {
896 dstbase += dx * bpp >> 3;
897 dx = 0;
898 }
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (area->sx <= area->dx) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700901 //-X
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 blitcmd |= BIT(14);
903 sx += area->width - 1;
904 dx += area->width - 1;
905 }
906 if (area->sy <= area->dy) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700907 //-Y
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 blitcmd |= BIT(15);
909 sy += area->height - 1;
910 dy += area->height - 1;
911 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700912
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700913 banshee_make_room(par, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700915 tdfx_outl(par, SRCFORMAT, fmt);
916 tdfx_outl(par, DSTFORMAT, fmt);
917 tdfx_outl(par, COMMAND_2D, blitcmd);
918 tdfx_outl(par, DSTSIZE, area->width | (area->height << 16));
919 tdfx_outl(par, DSTXY, dx | (dy << 16));
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700920 tdfx_outl(par, SRCBASE, srcbase);
921 tdfx_outl(par, DSTBASE, dstbase);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700922 tdfx_outl(par, LAUNCH_2D, sx | (sy << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700925static void tdfxfb_imageblit(struct fb_info *info, const struct fb_image *image)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Antonino A. Daplasa807f612006-01-09 20:53:11 -0800927 struct tdfx_par *par = info->par;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700928 int size = image->height * ((image->width * image->depth + 7) >> 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 int fifo_free;
930 int i, stride = info->fix.line_length;
931 u32 bpp = info->var.bits_per_pixel;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700932 u32 dstfmt = stride | ((bpp + ((bpp == 8) ? 0 : 8)) << 13);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 u8 *chardata = (u8 *) image->data;
934 u32 srcfmt;
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700935 u32 dx = image->dx;
936 u32 dy = image->dy;
937 u32 dstbase = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 if (image->depth != 1) {
940 //banshee_make_room(par, 6 + ((size + 3) >> 2));
941 //srcfmt = stride | ((bpp+((bpp==8) ? 0 : 8)) << 13) | 0x400000;
942 cfb_imageblit(info, image);
943 return;
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700944 }
945 banshee_make_room(par, 9);
946 switch (info->fix.visual) {
947 case FB_VISUAL_PSEUDOCOLOR:
948 tdfx_outl(par, COLORFORE, image->fg_color);
949 tdfx_outl(par, COLORBACK, image->bg_color);
950 break;
951 case FB_VISUAL_TRUECOLOR:
952 default:
953 tdfx_outl(par, COLORFORE,
954 par->palette[image->fg_color]);
955 tdfx_outl(par, COLORBACK,
956 par->palette[image->bg_color]);
957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958#ifdef __BIG_ENDIAN
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700959 srcfmt = 0x400000 | BIT(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960#else
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700961 srcfmt = 0x400000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962#endif
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700963 /* asume always image->height < 4096 */
964 if (dy + image->height > 4095) {
965 dstbase = stride * dy;
966 dy = 0;
967 }
968 /* asume always image->width < 4096 */
969 if (dx + image->width > 4095) {
970 dstbase += dx * bpp >> 3;
971 dx = 0;
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700974 tdfx_outl(par, DSTBASE, dstbase);
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700975 tdfx_outl(par, SRCXY, 0);
Krzysztof Helt92744dd2007-10-16 01:28:45 -0700976 tdfx_outl(par, DSTXY, dx | (dy << 16));
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700977 tdfx_outl(par, COMMAND_2D, COMMAND_2D_H2S_BITBLT | (TDFX_ROP_COPY << 24));
978 tdfx_outl(par, SRCFORMAT, srcfmt);
979 tdfx_outl(par, DSTFORMAT, dstfmt);
980 tdfx_outl(par, DSTSIZE, image->width | (image->height << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 /* A count of how many free FIFO entries we've requested.
983 * When this goes negative, we need to request more. */
984 fifo_free = 0;
985
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700986 /* Send four bytes at a time of data */
987 for (i = (size >> 2); i > 0; i--) {
988 if (--fifo_free < 0) {
989 fifo_free = 31;
990 banshee_make_room(par, fifo_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700992 tdfx_outl(par, LAUNCH_2D, *(u32*)chardata);
993 chardata += 4;
994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700996 /* Send the leftovers now */
997 banshee_make_room(par, 3);
Krzysztof Helt4f05b532007-10-16 01:28:48 -0700998 switch (size % 4) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -0700999 case 0:
1000 break;
1001 case 1:
1002 tdfx_outl(par, LAUNCH_2D, *chardata);
1003 break;
1004 case 2:
1005 tdfx_outl(par, LAUNCH_2D, *(u16*)chardata);
1006 break;
1007 case 3:
1008 tdfx_outl(par, LAUNCH_2D,
1009 *(u16*)chardata | ((chardata[3]) << 24));
1010 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 }
1012}
1013#endif /* CONFIG_FB_3DFX_ACCEL */
1014
1015#ifdef TDFX_HARDWARE_CURSOR
1016static int tdfxfb_cursor(struct fb_info *info, struct fb_cursor *cursor)
1017{
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001018 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 unsigned long flags;
1020
1021 /*
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001022 * If the cursor is not be changed this means either we want the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 * current cursor state (if enable is set) or we want to query what
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001024 * we can do with the cursor (if enable is not set)
1025 */
1026 if (!cursor->set)
1027 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 /* Too large of a cursor :-( */
1030 if (cursor->image.width > 64 || cursor->image.height > 64)
1031 return -ENXIO;
1032
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001033 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 * If we are going to be changing things we should disable
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001035 * the cursor first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
1037 if (info->cursor.enable) {
1038 spin_lock_irqsave(&par->DAClock, flags);
1039 info->cursor.enable = 0;
1040 del_timer(&(par->hwcursor.timer));
1041 tdfx_outl(par, VIDPROCCFG, par->hwcursor.disable);
1042 spin_unlock_irqrestore(&par->DAClock, flags);
1043 }
1044
1045 /* Disable the Cursor */
1046 if ((cursor->set && FB_CUR_SETCUR) && !cursor->enable)
1047 return 0;
1048
1049 /* fix cursor color - XFree86 forgets to restore it properly */
1050 if (cursor->set && FB_CUR_SETCMAP) {
1051 struct fb_cmap cmap = cursor->image.cmap;
1052 unsigned long bg_color, fg_color;
1053
1054 cmap.len = 2; /* Voodoo 3+ only support 2 color cursors */
1055 fg_color = ((cmap.red[cmap.start] << 16) |
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001056 (cmap.green[cmap.start] << 8) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 (cmap.blue[cmap.start]));
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001058 bg_color = ((cmap.red[cmap.start + 1] << 16) |
1059 (cmap.green[cmap.start + 1] << 8) |
1060 (cmap.blue[cmap.start + 1]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 fb_copy_cmap(&cmap, &info->cursor.image.cmap);
1062 spin_lock_irqsave(&par->DAClock, flags);
1063 banshee_make_room(par, 2);
1064 tdfx_outl(par, HWCURC0, bg_color);
1065 tdfx_outl(par, HWCURC1, fg_color);
1066 spin_unlock_irqrestore(&par->DAClock, flags);
1067 }
1068
1069 if (cursor->set && FB_CUR_SETPOS) {
1070 int x, y;
1071
1072 x = cursor->image.dx;
1073 y = cursor->image.dy;
1074 y -= info->var.yoffset;
1075 info->cursor.image.dx = x;
1076 info->cursor.image.dy = y;
1077 x += 63;
1078 y += 63;
1079 spin_lock_irqsave(&par->DAClock, flags);
1080 banshee_make_room(par, 1);
1081 tdfx_outl(par, HWCURLOC, (y << 16) + x);
1082 spin_unlock_irqrestore(&par->DAClock, flags);
1083 }
1084
1085 /* Not supported so we fake it */
1086 if (cursor->set && FB_CUR_SETHOT) {
1087 info->cursor.hot.x = cursor->hot.x;
1088 info->cursor.hot.y = cursor->hot.y;
1089 }
1090
1091 if (cursor->set && FB_CUR_SETSHAPE) {
1092 /*
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001093 * Voodoo 3 and above cards use 2 monochrome cursor patterns.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 * The reason is so the card can fetch 8 words at a time
1095 * and are stored on chip for use for the next 8 scanlines.
1096 * This reduces the number of times for access to draw the
1097 * cursor for each screen refresh.
1098 * Each pattern is a bitmap of 64 bit wide and 64 bit high
1099 * (total of 8192 bits or 1024 Kbytes). The two patterns are
1100 * stored in such a way that pattern 0 always resides in the
1101 * lower half (least significant 64 bits) of a 128 bit word
1102 * and pattern 1 the upper half. If you examine the data of
1103 * the cursor image the graphics card uses then from the
1104 * begining you see line one of pattern 0, line one of
1105 * pattern 1, line two of pattern 0, line two of pattern 1,
1106 * etc etc. The linear stride for the cursor is always 16 bytes
1107 * (128 bits) which is the maximum cursor width times two for
1108 * the two monochrome patterns.
1109 */
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001110 u8 *cursorbase = (u8 *)info->cursor.image.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 char *bitmap = (char *)cursor->image.data;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001112 char *mask = (char *)cursor->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 int i, j, k, h = 0;
1114
1115 for (i = 0; i < 64; i++) {
1116 if (i < cursor->image.height) {
1117 j = (cursor->image.width + 7) >> 3;
1118 k = 8 - j;
1119
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001120 for (; j > 0; j--) {
1121 /* Pattern 0. Copy the cursor bitmap to it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 fb_writeb(*bitmap, cursorbase + h);
1123 bitmap++;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001124 /* Pattern 1. Copy the cursor mask to it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 fb_writeb(*mask, cursorbase + h + 8);
1126 mask++;
1127 h++;
1128 }
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001129 for (; k > 0; k--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 fb_writeb(0, cursorbase + h);
1131 fb_writeb(~0, cursorbase + h + 8);
1132 h++;
1133 }
1134 } else {
1135 fb_writel(0, cursorbase + h);
1136 fb_writel(0, cursorbase + h + 4);
1137 fb_writel(~0, cursorbase + h + 8);
1138 fb_writel(~0, cursorbase + h + 12);
1139 h += 16;
1140 }
1141 }
1142 }
1143 /* Turn the cursor on */
1144 cursor->enable = 1;
1145 info->cursor = *cursor;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001146 mod_timer(&par->hwcursor.timer, jiffies + HZ / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 spin_lock_irqsave(&par->DAClock, flags);
1148 banshee_make_room(par, 1);
1149 tdfx_outl(par, VIDPROCCFG, par->hwcursor.enable);
1150 spin_unlock_irqrestore(&par->DAClock, flags);
1151 return 0;
1152}
1153#endif
1154
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001155static struct fb_ops tdfxfb_ops = {
1156 .owner = THIS_MODULE,
1157 .fb_check_var = tdfxfb_check_var,
1158 .fb_set_par = tdfxfb_set_par,
1159 .fb_setcolreg = tdfxfb_setcolreg,
1160 .fb_blank = tdfxfb_blank,
1161 .fb_pan_display = tdfxfb_pan_display,
1162 .fb_sync = banshee_wait_idle,
1163#ifdef CONFIG_FB_3DFX_ACCEL
1164 .fb_fillrect = tdfxfb_fillrect,
1165 .fb_copyarea = tdfxfb_copyarea,
1166 .fb_imageblit = tdfxfb_imageblit,
1167#else
1168 .fb_fillrect = cfb_fillrect,
1169 .fb_copyarea = cfb_copyarea,
1170 .fb_imageblit = cfb_imageblit,
1171#endif
1172};
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174/**
1175 * tdfxfb_probe - Device Initializiation
1176 *
1177 * @pdev: PCI Device to initialize
1178 * @id: PCI Device ID
1179 *
1180 * Initializes and allocates resources for PCI device @pdev.
1181 *
1182 */
1183static int __devinit tdfxfb_probe(struct pci_dev *pdev,
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001184 const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
1186 struct tdfx_par *default_par;
1187 struct fb_info *info;
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001188 int err, lpitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 if ((err = pci_enable_device(pdev))) {
1191 printk(KERN_WARNING "tdfxfb: Can't enable pdev: %d\n", err);
1192 return err;
1193 }
1194
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001195 info = framebuffer_alloc(sizeof(struct tdfx_par), &pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001197 if (!info)
1198 return -ENOMEM;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 default_par = info->par;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 /* Configure the default fb_fix_screeninfo first */
1203 switch (pdev->device) {
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001204 case PCI_DEVICE_ID_3DFX_BANSHEE:
1205 strcat(tdfx_fix.id, " Banshee");
1206 default_par->max_pixclock = BANSHEE_MAX_PIXCLOCK;
1207 break;
1208 case PCI_DEVICE_ID_3DFX_VOODOO3:
1209 strcat(tdfx_fix.id, " Voodoo3");
1210 default_par->max_pixclock = VOODOO3_MAX_PIXCLOCK;
1211 break;
1212 case PCI_DEVICE_ID_3DFX_VOODOO5:
1213 strcat(tdfx_fix.id, " Voodoo5");
1214 default_par->max_pixclock = VOODOO5_MAX_PIXCLOCK;
1215 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
1217
1218 tdfx_fix.mmio_start = pci_resource_start(pdev, 0);
1219 tdfx_fix.mmio_len = pci_resource_len(pdev, 0);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001220 if (!request_mem_region(tdfx_fix.mmio_start, tdfx_fix.mmio_len,
1221 "tdfx regbase")) {
1222 printk(KERN_WARNING "tdfxfb: Can't reserve regbase\n");
1223 goto out_err;
1224 }
1225
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001226 default_par->regbase_virt =
1227 ioremap_nocache(tdfx_fix.mmio_start, tdfx_fix.mmio_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (!default_par->regbase_virt) {
1229 printk("fb: Can't remap %s register area.\n", tdfx_fix.id);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001230 goto out_err_regbase;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 tdfx_fix.smem_start = pci_resource_start(pdev, 1);
1234 if (!(tdfx_fix.smem_len = do_lfb_size(default_par, pdev->device))) {
1235 printk("fb: Can't count %s memory.\n", tdfx_fix.id);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001236 goto out_err_regbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001239 if (!request_mem_region(tdfx_fix.smem_start,
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001240 pci_resource_len(pdev, 1), "tdfx smem")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 printk(KERN_WARNING "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 Helt8af1d502007-10-16 01:28:43 -07001245 info->screen_base = ioremap_nocache(tdfx_fix.smem_start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 tdfx_fix.smem_len);
1247 if (!info->screen_base) {
1248 printk("fb: Can't remap %s framebuffer.\n", tdfx_fix.id);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001249 goto out_err_screenbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251
1252 default_par->iobase = pci_resource_start(pdev, 2);
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (!request_region(pci_resource_start(pdev, 2),
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001255 pci_resource_len(pdev, 2), "tdfx iobase")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 printk(KERN_WARNING "tdfxfb: Can't reserve iobase\n");
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001257 goto out_err_screenbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
1259
1260 printk("fb: %s memory = %dK\n", tdfx_fix.id, tdfx_fix.smem_len >> 10);
1261
1262 tdfx_fix.ypanstep = nopan ? 0 : 1;
1263 tdfx_fix.ywrapstep = nowrap ? 0 : 1;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 info->fbops = &tdfxfb_ops;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001266 info->fix = tdfx_fix;
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001267 info->pseudo_palette = default_par->palette;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
1269#ifdef CONFIG_FB_3DFX_ACCEL
1270 info->flags |= FBINFO_HWACCEL_FILLRECT |
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001271 FBINFO_HWACCEL_COPYAREA |
1272 FBINFO_HWACCEL_IMAGEBLIT |
1273 FBINFO_READS_FAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274#endif
1275
1276 if (!mode_option)
1277 mode_option = "640x480@60";
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001278
1279 err = fb_find_mode(&info->var, info, mode_option, NULL, 0, NULL, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (!err || err == 4)
1281 info->var = tdfx_var;
1282
1283 /* maximize virtual vertical length */
1284 lpitch = info->var.xres_virtual * ((info->var.bits_per_pixel + 7) >> 3);
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001285 info->var.yres_virtual = info->fix.smem_len / lpitch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (info->var.yres_virtual < info->var.yres)
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001287 goto out_err_iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) {
1290 printk(KERN_WARNING "tdfxfb: Can't allocate color map\n");
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001291 goto out_err_iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293
1294 if (register_framebuffer(info) < 0) {
1295 printk("tdfxfb: can't register framebuffer\n");
1296 fb_dealloc_cmap(&info->cmap);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001297 goto out_err_iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299 /*
1300 * Our driver data
1301 */
1302 pci_set_drvdata(pdev, info);
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001305out_err_iobase:
1306 release_mem_region(pci_resource_start(pdev, 2),
1307 pci_resource_len(pdev, 2));
1308out_err_screenbase:
1309 if (info->screen_base)
1310 iounmap(info->screen_base);
1311 release_mem_region(tdfx_fix.smem_start, pci_resource_len(pdev, 1));
1312out_err_regbase:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /*
1314 * Cleanup after anything that was remapped/allocated.
1315 */
1316 if (default_par->regbase_virt)
1317 iounmap(default_par->regbase_virt);
Krzysztof Helt92744dd2007-10-16 01:28:45 -07001318 release_mem_region(tdfx_fix.mmio_start, tdfx_fix.mmio_len);
1319out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 framebuffer_release(info);
1321 return -ENXIO;
1322}
1323
1324#ifndef MODULE
Adrian Bunka0aa7d02006-01-09 20:54:04 -08001325static void tdfxfb_setup(char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001327 char *this_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 if (!options || !*options)
1330 return;
1331
1332 while ((this_opt = strsep(&options, ",")) != NULL) {
1333 if (!*this_opt)
1334 continue;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001335 if (!strcmp(this_opt, "nopan")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 nopan = 1;
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001337 } else if (!strcmp(this_opt, "nowrap")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 nowrap = 1;
1339 } else {
1340 mode_option = this_opt;
1341 }
1342 }
1343}
1344#endif
1345
1346/**
1347 * tdfxfb_remove - Device removal
1348 *
1349 * @pdev: PCI Device to cleanup
1350 *
1351 * Releases all resources allocated during the course of the driver's
1352 * lifetime for the PCI device @pdev.
1353 *
1354 */
1355static void __devexit tdfxfb_remove(struct pci_dev *pdev)
1356{
1357 struct fb_info *info = pci_get_drvdata(pdev);
Antonino A. Daplasa807f612006-01-09 20:53:11 -08001358 struct tdfx_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 unregister_framebuffer(info);
1361 iounmap(par->regbase_virt);
1362 iounmap(info->screen_base);
1363
1364 /* Clean up after reserved regions */
1365 release_region(pci_resource_start(pdev, 2),
1366 pci_resource_len(pdev, 2));
1367 release_mem_region(pci_resource_start(pdev, 1),
1368 pci_resource_len(pdev, 1));
1369 release_mem_region(pci_resource_start(pdev, 0),
1370 pci_resource_len(pdev, 0));
1371 pci_set_drvdata(pdev, NULL);
1372 framebuffer_release(info);
1373}
1374
1375static int __init tdfxfb_init(void)
1376{
1377#ifndef MODULE
1378 char *option = NULL;
1379
1380 if (fb_get_options("tdfxfb", &option))
1381 return -ENODEV;
1382
1383 tdfxfb_setup(option);
1384#endif
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001385 return pci_register_driver(&tdfxfb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
1387
1388static void __exit tdfxfb_exit(void)
1389{
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001390 pci_unregister_driver(&tdfxfb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
1393MODULE_AUTHOR("Hannu Mallat <hmallat@cc.hut.fi>");
1394MODULE_DESCRIPTION("3Dfx framebuffer device driver");
1395MODULE_LICENSE("GPL");
Krzysztof Helt8af1d502007-10-16 01:28:43 -07001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397module_init(tdfxfb_init);
1398module_exit(tdfxfb_exit);