blob: 3bd0a573d7556790e6e3b88f4a7f70f7bb94efe7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/video/savagefb.c -- S3 Savage Framebuffer Driver
3 *
4 * Copyright (c) 2001-2002 Denis Oliver Kropp <dok@directfb.org>
5 * Sven Neumann <neo@directfb.org>
6 *
7 *
8 * Card specific code is based on XFree86's savage driver.
9 * Framebuffer framework code is based on code of cyber2000fb and tdfxfb.
10 *
11 * This file is subject to the terms and conditions of the GNU General
12 * Public License. See the file COPYING in the main directory of this
13 * archive for more details.
14 *
15 * 0.4.0 (neo)
16 * - hardware accelerated clear and move
17 *
18 * 0.3.2 (dok)
19 * - wait for vertical retrace before writing to cr67
20 * at the beginning of savagefb_set_par
21 * - use synchronization registers cr23 and cr26
22 *
23 * 0.3.1 (dok)
24 * - reset 3D engine
25 * - don't return alpha bits for 32bit format
26 *
27 * 0.3.0 (dok)
28 * - added WaitIdle functions for all Savage types
29 * - do WaitIdle before mode switching
30 * - code cleanup
31 *
32 * 0.2.0 (dok)
33 * - first working version
34 *
35 *
36 * TODO
37 * - clock validations in decode_var
38 *
39 * BUGS
40 * - white margin on bootup
41 *
42 */
43
44#include <linux/config.h>
45#include <linux/module.h>
46#include <linux/kernel.h>
47#include <linux/errno.h>
48#include <linux/string.h>
49#include <linux/mm.h>
50#include <linux/tty.h>
51#include <linux/slab.h>
52#include <linux/delay.h>
53#include <linux/fb.h>
54#include <linux/pci.h>
55#include <linux/init.h>
56#include <linux/console.h>
57
58#include <asm/io.h>
59#include <asm/irq.h>
60#include <asm/pgtable.h>
61#include <asm/system.h>
62#include <asm/uaccess.h>
63
64#ifdef CONFIG_MTRR
65#include <asm/mtrr.h>
66#endif
67
68#include "savagefb.h"
69
70
71#define SAVAGEFB_VERSION "0.4.0_2.6"
72
73/* --------------------------------------------------------------------- */
74
75
Jean Delvare3e42f0b2006-04-18 22:22:09 -070076static char *mode_option __devinitdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78#ifdef MODULE
79
80MODULE_AUTHOR("(c) 2001-2002 Denis Oliver Kropp <dok@directfb.org>");
81MODULE_LICENSE("GPL");
82MODULE_DESCRIPTION("FBDev driver for S3 Savage PCI/AGP Chips");
83
84#endif
85
86
87/* --------------------------------------------------------------------- */
88
89static void vgaHWSeqReset (struct savagefb_par *par, int start)
90{
91 if (start)
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -080092 VGAwSEQ (0x00, 0x01, par); /* Synchronous Reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 else
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -080094 VGAwSEQ (0x00, 0x03, par); /* End Reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
97static void vgaHWProtect (struct savagefb_par *par, int on)
98{
99 unsigned char tmp;
100
101 if (on) {
102 /*
103 * Turn off screen and disable sequencer.
104 */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800105 tmp = VGArSEQ (0x01, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 vgaHWSeqReset (par, 1); /* start synchronous reset */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800108 VGAwSEQ (0x01, tmp | 0x20, par);/* disable the display */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800110 VGAenablePalette(par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 } else {
112 /*
113 * Reenable sequencer, then turn on screen.
114 */
115
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800116 tmp = VGArSEQ (0x01, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800118 VGAwSEQ (0x01, tmp & ~0x20, par);/* reenable display */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 vgaHWSeqReset (par, 0); /* clear synchronous reset */
120
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800121 VGAdisablePalette(par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123}
124
Antonino A. Daplas23566142006-06-26 00:26:23 -0700125static void vgaHWRestore (struct savagefb_par *par, struct savage_reg *reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 int i;
128
Antonino A. Daplas23566142006-06-26 00:26:23 -0700129 VGAwMISC (reg->MiscOutReg, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 for (i = 1; i < 5; i++)
Antonino A. Daplas23566142006-06-26 00:26:23 -0700132 VGAwSEQ (i, reg->Sequencer[i], par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 /* Ensure CRTC registers 0-7 are unlocked by clearing bit 7 or
135 CRTC[17] */
Antonino A. Daplas23566142006-06-26 00:26:23 -0700136 VGAwCR (17, reg->CRTC[17] & ~0x80, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 for (i = 0; i < 25; i++)
Antonino A. Daplas23566142006-06-26 00:26:23 -0700139 VGAwCR (i, reg->CRTC[i], par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 for (i = 0; i < 9; i++)
Antonino A. Daplas23566142006-06-26 00:26:23 -0700142 VGAwGR (i, reg->Graphics[i], par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800144 VGAenablePalette(par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 for (i = 0; i < 21; i++)
Antonino A. Daplas23566142006-06-26 00:26:23 -0700147 VGAwATTR (i, reg->Attribute[i], par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800149 VGAdisablePalette(par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
152static void vgaHWInit (struct fb_var_screeninfo *var,
153 struct savagefb_par *par,
Antonino A. Daplas23566142006-06-26 00:26:23 -0700154 struct xtimings *timings,
155 struct savage_reg *reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Antonino A. Daplas23566142006-06-26 00:26:23 -0700157 reg->MiscOutReg = 0x23;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 if (!(timings->sync & FB_SYNC_HOR_HIGH_ACT))
Antonino A. Daplas23566142006-06-26 00:26:23 -0700160 reg->MiscOutReg |= 0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 if (!(timings->sync & FB_SYNC_VERT_HIGH_ACT))
Antonino A. Daplas23566142006-06-26 00:26:23 -0700163 reg->MiscOutReg |= 0x80;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 /*
166 * Time Sequencer
167 */
Antonino A. Daplas23566142006-06-26 00:26:23 -0700168 reg->Sequencer[0x00] = 0x00;
169 reg->Sequencer[0x01] = 0x01;
170 reg->Sequencer[0x02] = 0x0F;
171 reg->Sequencer[0x03] = 0x00; /* Font select */
172 reg->Sequencer[0x04] = 0x0E; /* Misc */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 /*
175 * CRTC Controller
176 */
Antonino A. Daplas23566142006-06-26 00:26:23 -0700177 reg->CRTC[0x00] = (timings->HTotal >> 3) - 5;
178 reg->CRTC[0x01] = (timings->HDisplay >> 3) - 1;
179 reg->CRTC[0x02] = (timings->HSyncStart >> 3) - 1;
180 reg->CRTC[0x03] = (((timings->HSyncEnd >> 3) - 1) & 0x1f) | 0x80;
181 reg->CRTC[0x04] = (timings->HSyncStart >> 3);
182 reg->CRTC[0x05] = ((((timings->HSyncEnd >> 3) - 1) & 0x20) << 2) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 (((timings->HSyncEnd >> 3)) & 0x1f);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700184 reg->CRTC[0x06] = (timings->VTotal - 2) & 0xFF;
185 reg->CRTC[0x07] = (((timings->VTotal - 2) & 0x100) >> 8) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 (((timings->VDisplay - 1) & 0x100) >> 7) |
187 ((timings->VSyncStart & 0x100) >> 6) |
188 (((timings->VSyncStart - 1) & 0x100) >> 5) |
189 0x10 |
190 (((timings->VTotal - 2) & 0x200) >> 4) |
191 (((timings->VDisplay - 1) & 0x200) >> 3) |
192 ((timings->VSyncStart & 0x200) >> 2);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700193 reg->CRTC[0x08] = 0x00;
194 reg->CRTC[0x09] = (((timings->VSyncStart - 1) & 0x200) >> 4) | 0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 if (timings->dblscan)
Antonino A. Daplas23566142006-06-26 00:26:23 -0700197 reg->CRTC[0x09] |= 0x80;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Antonino A. Daplas23566142006-06-26 00:26:23 -0700199 reg->CRTC[0x0a] = 0x00;
200 reg->CRTC[0x0b] = 0x00;
201 reg->CRTC[0x0c] = 0x00;
202 reg->CRTC[0x0d] = 0x00;
203 reg->CRTC[0x0e] = 0x00;
204 reg->CRTC[0x0f] = 0x00;
205 reg->CRTC[0x10] = timings->VSyncStart & 0xff;
206 reg->CRTC[0x11] = (timings->VSyncEnd & 0x0f) | 0x20;
207 reg->CRTC[0x12] = (timings->VDisplay - 1) & 0xff;
208 reg->CRTC[0x13] = var->xres_virtual >> 4;
209 reg->CRTC[0x14] = 0x00;
210 reg->CRTC[0x15] = (timings->VSyncStart - 1) & 0xff;
211 reg->CRTC[0x16] = (timings->VSyncEnd - 1) & 0xff;
212 reg->CRTC[0x17] = 0xc3;
213 reg->CRTC[0x18] = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /*
216 * are these unnecessary?
217 * vgaHWHBlankKGA(mode, regp, 0, KGA_FIX_OVERSCAN|KGA_ENABLE_ON_ZERO);
218 * vgaHWVBlankKGA(mode, regp, 0, KGA_FIX_OVERSCAN|KGA_ENABLE_ON_ZERO);
219 */
220
221 /*
222 * Graphics Display Controller
223 */
Antonino A. Daplas23566142006-06-26 00:26:23 -0700224 reg->Graphics[0x00] = 0x00;
225 reg->Graphics[0x01] = 0x00;
226 reg->Graphics[0x02] = 0x00;
227 reg->Graphics[0x03] = 0x00;
228 reg->Graphics[0x04] = 0x00;
229 reg->Graphics[0x05] = 0x40;
230 reg->Graphics[0x06] = 0x05; /* only map 64k VGA memory !!!! */
231 reg->Graphics[0x07] = 0x0F;
232 reg->Graphics[0x08] = 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234
Antonino A. Daplas23566142006-06-26 00:26:23 -0700235 reg->Attribute[0x00] = 0x00; /* standard colormap translation */
236 reg->Attribute[0x01] = 0x01;
237 reg->Attribute[0x02] = 0x02;
238 reg->Attribute[0x03] = 0x03;
239 reg->Attribute[0x04] = 0x04;
240 reg->Attribute[0x05] = 0x05;
241 reg->Attribute[0x06] = 0x06;
242 reg->Attribute[0x07] = 0x07;
243 reg->Attribute[0x08] = 0x08;
244 reg->Attribute[0x09] = 0x09;
245 reg->Attribute[0x0a] = 0x0A;
246 reg->Attribute[0x0b] = 0x0B;
247 reg->Attribute[0x0c] = 0x0C;
248 reg->Attribute[0x0d] = 0x0D;
249 reg->Attribute[0x0e] = 0x0E;
250 reg->Attribute[0x0f] = 0x0F;
251 reg->Attribute[0x10] = 0x41;
252 reg->Attribute[0x11] = 0xFF;
253 reg->Attribute[0x12] = 0x0F;
254 reg->Attribute[0x13] = 0x00;
255 reg->Attribute[0x14] = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
258/* -------------------- Hardware specific routines ------------------------- */
259
260/*
261 * Hardware Acceleration for SavageFB
262 */
263
264/* Wait for fifo space */
265static void
266savage3D_waitfifo(struct savagefb_par *par, int space)
267{
268 int slots = MAXFIFO - space;
269
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800270 while ((savage_in32(0x48C00, par) & 0x0000ffff) > slots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273static void
274savage4_waitfifo(struct savagefb_par *par, int space)
275{
276 int slots = MAXFIFO - space;
277
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800278 while ((savage_in32(0x48C60, par) & 0x001fffff) > slots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281static void
282savage2000_waitfifo(struct savagefb_par *par, int space)
283{
284 int slots = MAXFIFO - space;
285
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800286 while ((savage_in32(0x48C60, par) & 0x0000ffff) > slots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/* Wait for idle accelerator */
290static void
291savage3D_waitidle(struct savagefb_par *par)
292{
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800293 while ((savage_in32(0x48C00, par) & 0x0008ffff) != 0x80000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
296static void
297savage4_waitidle(struct savagefb_par *par)
298{
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800299 while ((savage_in32(0x48C60, par) & 0x00a00000) != 0x00a00000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302static void
303savage2000_waitidle(struct savagefb_par *par)
304{
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800305 while ((savage_in32(0x48C60, par) & 0x009fffff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Antonino A. Daplasf8020dc2006-06-26 00:26:24 -0700308#ifdef CONFIG_FB_SAVAGE_ACCEL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309static void
310SavageSetup2DEngine (struct savagefb_par *par)
311{
312 unsigned long GlobalBitmapDescriptor;
313
314 GlobalBitmapDescriptor = 1 | 8 | BCI_BD_BW_DISABLE;
315 BCI_BD_SET_BPP (GlobalBitmapDescriptor, par->depth);
316 BCI_BD_SET_STRIDE (GlobalBitmapDescriptor, par->vwidth);
317
318 switch(par->chip) {
319 case S3_SAVAGE3D:
320 case S3_SAVAGE_MX:
321 /* Disable BCI */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800322 savage_out32(0x48C18, savage_in32(0x48C18, par) & 0x3FF0, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* Setup BCI command overflow buffer */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800324 savage_out32(0x48C14,
325 (par->cob_offset >> 11) | (par->cob_index << 29),
326 par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 /* Program shadow status update. */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800328 savage_out32(0x48C10, 0x78207220, par);
329 savage_out32(0x48C0C, 0, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /* Enable BCI and command overflow buffer */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800331 savage_out32(0x48C18, savage_in32(0x48C18, par) | 0x0C, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 break;
333 case S3_SAVAGE4:
334 case S3_PROSAVAGE:
335 case S3_SUPERSAVAGE:
336 /* Disable BCI */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800337 savage_out32(0x48C18, savage_in32(0x48C18, par) & 0x3FF0, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 /* Program shadow status update */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800339 savage_out32(0x48C10, 0x00700040, par);
340 savage_out32(0x48C0C, 0, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* Enable BCI without the COB */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800342 savage_out32(0x48C18, savage_in32(0x48C18, par) | 0x08, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 break;
344 case S3_SAVAGE2000:
345 /* Disable BCI */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800346 savage_out32(0x48C18, 0, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 /* Setup BCI command overflow buffer */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800348 savage_out32(0x48C18,
349 (par->cob_offset >> 7) | (par->cob_index),
350 par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* Disable shadow status update */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800352 savage_out32(0x48A30, 0, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /* Enable BCI and command overflow buffer */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800354 savage_out32(0x48C18, savage_in32(0x48C18, par) | 0x00280000,
355 par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 break;
357 default:
358 break;
359 }
360 /* Turn on 16-bit register access. */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800361 vga_out8(0x3d4, 0x31, par);
362 vga_out8(0x3d5, 0x0c, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 /* Set stride to use GBD. */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800365 vga_out8 (0x3d4, 0x50, par);
366 vga_out8 (0x3d5, vga_in8(0x3d5, par) | 0xC1, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /* Enable 2D engine. */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800369 vga_out8 (0x3d4, 0x40, par);
370 vga_out8 (0x3d5, 0x01, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800372 savage_out32 (MONO_PAT_0, ~0, par);
373 savage_out32 (MONO_PAT_1, ~0, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /* Setup plane masks */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800376 savage_out32 (0x8128, ~0, par); /* enable all write planes */
377 savage_out32 (0x812C, ~0, par); /* enable all read planes */
378 savage_out16 (0x8134, 0x27, par);
379 savage_out16 (0x8136, 0x07, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 /* Now set the GBD */
382 par->bci_ptr = 0;
383 par->SavageWaitFifo (par, 4);
384
385 BCI_SEND( BCI_CMD_SETREG | (1 << 16) | BCI_GBD1 );
386 BCI_SEND( 0 );
387 BCI_SEND( BCI_CMD_SETREG | (1 << 16) | BCI_GBD2 );
388 BCI_SEND( GlobalBitmapDescriptor );
389}
390
Antonino A. Daplasf8020dc2006-06-26 00:26:24 -0700391static void savagefb_set_clip(struct fb_info *info)
392{
393 struct savagefb_par *par = info->par;
394 int cmd;
395
396 cmd = BCI_CMD_NOP | BCI_CMD_CLIP_NEW;
397 par->bci_ptr = 0;
398 par->SavageWaitFifo(par,3);
399 BCI_SEND(cmd);
400 BCI_SEND(BCI_CLIP_TL(0, 0));
401 BCI_SEND(BCI_CLIP_BR(0xfff, 0xfff));
402}
403#else
404static void SavageSetup2DEngine (struct savagefb_par *par) {}
405
406#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408static void SavageCalcClock(long freq, int min_m, int min_n1, int max_n1,
409 int min_n2, int max_n2, long freq_min,
410 long freq_max, unsigned int *mdiv,
411 unsigned int *ndiv, unsigned int *r)
412{
413 long diff, best_diff;
414 unsigned int m;
415 unsigned char n1, n2, best_n1=16+2, best_n2=2, best_m=125+2;
416
417 if (freq < freq_min / (1 << max_n2)) {
418 printk (KERN_ERR "invalid frequency %ld Khz\n", freq);
419 freq = freq_min / (1 << max_n2);
420 }
421 if (freq > freq_max / (1 << min_n2)) {
422 printk (KERN_ERR "invalid frequency %ld Khz\n", freq);
423 freq = freq_max / (1 << min_n2);
424 }
425
426 /* work out suitable timings */
427 best_diff = freq;
428
429 for (n2=min_n2; n2<=max_n2; n2++) {
430 for (n1=min_n1+2; n1<=max_n1+2; n1++) {
431 m = (freq * n1 * (1 << n2) + HALF_BASE_FREQ) /
432 BASE_FREQ;
433 if (m < min_m+2 || m > 127+2)
434 continue;
435 if ((m * BASE_FREQ >= freq_min * n1) &&
436 (m * BASE_FREQ <= freq_max * n1)) {
437 diff = freq * (1 << n2) * n1 - BASE_FREQ * m;
438 if (diff < 0)
439 diff = -diff;
440 if (diff < best_diff) {
441 best_diff = diff;
442 best_m = m;
443 best_n1 = n1;
444 best_n2 = n2;
445 }
446 }
447 }
448 }
449
450 *ndiv = best_n1 - 2;
451 *r = best_n2;
452 *mdiv = best_m - 2;
453}
454
455static int common_calc_clock(long freq, int min_m, int min_n1, int max_n1,
456 int min_n2, int max_n2, long freq_min,
457 long freq_max, unsigned char *mdiv,
458 unsigned char *ndiv)
459{
460 long diff, best_diff;
461 unsigned int m;
462 unsigned char n1, n2;
463 unsigned char best_n1 = 16+2, best_n2 = 2, best_m = 125+2;
464
465 best_diff = freq;
466
467 for (n2 = min_n2; n2 <= max_n2; n2++) {
468 for (n1 = min_n1+2; n1 <= max_n1+2; n1++) {
469 m = (freq * n1 * (1 << n2) + HALF_BASE_FREQ) /
470 BASE_FREQ;
471 if (m < min_m + 2 || m > 127+2)
472 continue;
473 if((m * BASE_FREQ >= freq_min * n1) &&
474 (m * BASE_FREQ <= freq_max * n1)) {
475 diff = freq * (1 << n2) * n1 - BASE_FREQ * m;
476 if(diff < 0)
477 diff = -diff;
478 if(diff < best_diff) {
479 best_diff = diff;
480 best_m = m;
481 best_n1 = n1;
482 best_n2 = n2;
483 }
484 }
485 }
486 }
487
488 if(max_n1 == 63)
489 *ndiv = (best_n1 - 2) | (best_n2 << 6);
490 else
491 *ndiv = (best_n1 - 2) | (best_n2 << 5);
492
493 *mdiv = best_m - 2;
494
495 return 0;
496}
497
498#ifdef SAVAGEFB_DEBUG
499/* This function is used to debug, it prints out the contents of s3 regs */
500
501static void SavagePrintRegs(void)
502{
503 unsigned char i;
504 int vgaCRIndex = 0x3d4;
505 int vgaCRReg = 0x3d5;
506
507 printk(KERN_DEBUG "SR x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE "
508 "xF" );
509
510 for( i = 0; i < 0x70; i++ ) {
511 if( !(i % 16) )
512 printk(KERN_DEBUG "\nSR%xx ", i >> 4 );
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800513 vga_out8( 0x3c4, i, par);
514 printk(KERN_DEBUG " %02x", vga_in8(0x3c5, par) );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516
517 printk(KERN_DEBUG "\n\nCR x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC "
518 "xD xE xF" );
519
520 for( i = 0; i < 0xB7; i++ ) {
521 if( !(i % 16) )
522 printk(KERN_DEBUG "\nCR%xx ", i >> 4 );
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800523 vga_out8( vgaCRIndex, i, par);
524 printk(KERN_DEBUG " %02x", vga_in8(vgaCRReg, par) );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
527 printk(KERN_DEBUG "\n\n");
528}
529#endif
530
531/* --------------------------------------------------------------------- */
532
Antonino A. Daplas23566142006-06-26 00:26:23 -0700533static void savage_get_default_par(struct savagefb_par *par, struct savage_reg *reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 unsigned char cr3a, cr53, cr66;
536
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800537 vga_out16 (0x3d4, 0x4838, par);
538 vga_out16 (0x3d4, 0xa039, par);
539 vga_out16 (0x3c4, 0x0608, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800541 vga_out8 (0x3d4, 0x66, par);
542 cr66 = vga_in8 (0x3d5, par);
543 vga_out8 (0x3d5, cr66 | 0x80, par);
544 vga_out8 (0x3d4, 0x3a, par);
545 cr3a = vga_in8 (0x3d5, par);
546 vga_out8 (0x3d5, cr3a | 0x80, par);
547 vga_out8 (0x3d4, 0x53, par);
548 cr53 = vga_in8 (0x3d5, par);
549 vga_out8 (0x3d5, cr53 & 0x7f, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800551 vga_out8 (0x3d4, 0x66, par);
552 vga_out8 (0x3d5, cr66, par);
553 vga_out8 (0x3d4, 0x3a, par);
554 vga_out8 (0x3d5, cr3a, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800556 vga_out8 (0x3d4, 0x66, par);
557 vga_out8 (0x3d5, cr66, par);
558 vga_out8 (0x3d4, 0x3a, par);
559 vga_out8 (0x3d5, cr3a, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 /* unlock extended seq regs */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800562 vga_out8 (0x3c4, 0x08, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700563 reg->SR08 = vga_in8 (0x3c5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800564 vga_out8 (0x3c5, 0x06, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 /* now save all the extended regs we need */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800567 vga_out8 (0x3d4, 0x31, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700568 reg->CR31 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800569 vga_out8 (0x3d4, 0x32, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700570 reg->CR32 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800571 vga_out8 (0x3d4, 0x34, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700572 reg->CR34 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800573 vga_out8 (0x3d4, 0x36, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700574 reg->CR36 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800575 vga_out8 (0x3d4, 0x3a, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700576 reg->CR3A = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800577 vga_out8 (0x3d4, 0x40, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700578 reg->CR40 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800579 vga_out8 (0x3d4, 0x42, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700580 reg->CR42 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800581 vga_out8 (0x3d4, 0x45, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700582 reg->CR45 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800583 vga_out8 (0x3d4, 0x50, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700584 reg->CR50 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800585 vga_out8 (0x3d4, 0x51, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700586 reg->CR51 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800587 vga_out8 (0x3d4, 0x53, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700588 reg->CR53 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800589 vga_out8 (0x3d4, 0x58, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700590 reg->CR58 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800591 vga_out8 (0x3d4, 0x60, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700592 reg->CR60 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800593 vga_out8 (0x3d4, 0x66, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700594 reg->CR66 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800595 vga_out8 (0x3d4, 0x67, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700596 reg->CR67 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800597 vga_out8 (0x3d4, 0x68, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700598 reg->CR68 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800599 vga_out8 (0x3d4, 0x69, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700600 reg->CR69 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800601 vga_out8 (0x3d4, 0x6f, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700602 reg->CR6F = vga_in8 (0x3d5, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800604 vga_out8 (0x3d4, 0x33, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700605 reg->CR33 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800606 vga_out8 (0x3d4, 0x86, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700607 reg->CR86 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800608 vga_out8 (0x3d4, 0x88, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700609 reg->CR88 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800610 vga_out8 (0x3d4, 0x90, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700611 reg->CR90 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800612 vga_out8 (0x3d4, 0x91, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700613 reg->CR91 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800614 vga_out8 (0x3d4, 0xb0, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700615 reg->CRB0 = vga_in8 (0x3d5, par) | 0x80;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /* extended mode timing regs */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800618 vga_out8 (0x3d4, 0x3b, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700619 reg->CR3B = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800620 vga_out8 (0x3d4, 0x3c, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700621 reg->CR3C = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800622 vga_out8 (0x3d4, 0x43, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700623 reg->CR43 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800624 vga_out8 (0x3d4, 0x5d, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700625 reg->CR5D = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800626 vga_out8 (0x3d4, 0x5e, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700627 reg->CR5E = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800628 vga_out8 (0x3d4, 0x65, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700629 reg->CR65 = vga_in8 (0x3d5, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 /* save seq extended regs for DCLK PLL programming */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800632 vga_out8 (0x3c4, 0x0e, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700633 reg->SR0E = vga_in8 (0x3c5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800634 vga_out8 (0x3c4, 0x0f, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700635 reg->SR0F = vga_in8 (0x3c5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800636 vga_out8 (0x3c4, 0x10, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700637 reg->SR10 = vga_in8 (0x3c5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800638 vga_out8 (0x3c4, 0x11, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700639 reg->SR11 = vga_in8 (0x3c5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800640 vga_out8 (0x3c4, 0x12, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700641 reg->SR12 = vga_in8 (0x3c5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800642 vga_out8 (0x3c4, 0x13, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700643 reg->SR13 = vga_in8 (0x3c5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800644 vga_out8 (0x3c4, 0x29, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700645 reg->SR29 = vga_in8 (0x3c5, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800647 vga_out8 (0x3c4, 0x15, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700648 reg->SR15 = vga_in8 (0x3c5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800649 vga_out8 (0x3c4, 0x30, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700650 reg->SR30 = vga_in8 (0x3c5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800651 vga_out8 (0x3c4, 0x18, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700652 reg->SR18 = vga_in8 (0x3c5, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 /* Save flat panel expansion regsters. */
655 if (par->chip == S3_SAVAGE_MX) {
656 int i;
657
658 for (i = 0; i < 8; i++) {
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800659 vga_out8 (0x3c4, 0x54+i, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -0700660 reg->SR54[i] = vga_in8 (0x3c5, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662 }
663
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800664 vga_out8 (0x3d4, 0x66, par);
665 cr66 = vga_in8 (0x3d5, par);
666 vga_out8 (0x3d5, cr66 | 0x80, par);
667 vga_out8 (0x3d4, 0x3a, par);
668 cr3a = vga_in8 (0x3d5, par);
669 vga_out8 (0x3d5, cr3a | 0x80, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 /* now save MIU regs */
672 if (par->chip != S3_SAVAGE_MX) {
Antonino A. Daplas23566142006-06-26 00:26:23 -0700673 reg->MMPR0 = savage_in32(FIFO_CONTROL_REG, par);
674 reg->MMPR1 = savage_in32(MIU_CONTROL_REG, par);
675 reg->MMPR2 = savage_in32(STREAMS_TIMEOUT_REG, par);
676 reg->MMPR3 = savage_in32(MISC_TIMEOUT_REG, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -0800679 vga_out8 (0x3d4, 0x3a, par);
680 vga_out8 (0x3d5, cr3a, par);
681 vga_out8 (0x3d4, 0x66, par);
682 vga_out8 (0x3d5, cr66, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Antonino A. Daplasf8020dc2006-06-26 00:26:24 -0700685static void savage_set_default_par(struct savagefb_par *par,
686 struct savage_reg *reg)
687{
688 unsigned char cr3a, cr53, cr66;
689
690 vga_out16(0x3d4, 0x4838, par);
691 vga_out16(0x3d4, 0xa039, par);
692 vga_out16(0x3c4, 0x0608, par);
693
694 vga_out8(0x3d4, 0x66, par);
695 cr66 = vga_in8(0x3d5, par);
696 vga_out8(0x3d5, cr66 | 0x80, par);
697 vga_out8(0x3d4, 0x3a, par);
698 cr3a = vga_in8(0x3d5, par);
699 vga_out8(0x3d5, cr3a | 0x80, par);
700 vga_out8(0x3d4, 0x53, par);
701 cr53 = vga_in8(0x3d5, par);
702 vga_out8(0x3d5, cr53 & 0x7f, par);
703
704 vga_out8(0x3d4, 0x66, par);
705 vga_out8(0x3d5, cr66, par);
706 vga_out8(0x3d4, 0x3a, par);
707 vga_out8(0x3d5, cr3a, par);
708
709 vga_out8(0x3d4, 0x66, par);
710 vga_out8(0x3d5, cr66, par);
711 vga_out8(0x3d4, 0x3a, par);
712 vga_out8(0x3d5, cr3a, par);
713
714 /* unlock extended seq regs */
715 vga_out8(0x3c4, 0x08, par);
716 vga_out8(0x3c5, reg->SR08, par);
717 vga_out8(0x3c5, 0x06, par);
718
719 /* now restore all the extended regs we need */
720 vga_out8(0x3d4, 0x31, par);
721 vga_out8(0x3d5, reg->CR31, par);
722 vga_out8(0x3d4, 0x32, par);
723 vga_out8(0x3d5, reg->CR32, par);
724 vga_out8(0x3d4, 0x34, par);
725 vga_out8(0x3d5, reg->CR34, par);
726 vga_out8(0x3d4, 0x36, par);
727 vga_out8(0x3d5,reg->CR36, par);
728 vga_out8(0x3d4, 0x3a, par);
729 vga_out8(0x3d5, reg->CR3A, par);
730 vga_out8(0x3d4, 0x40, par);
731 vga_out8(0x3d5, reg->CR40, par);
732 vga_out8(0x3d4, 0x42, par);
733 vga_out8(0x3d5, reg->CR42, par);
734 vga_out8(0x3d4, 0x45, par);
735 vga_out8(0x3d5, reg->CR45, par);
736 vga_out8(0x3d4, 0x50, par);
737 vga_out8(0x3d5, reg->CR50, par);
738 vga_out8(0x3d4, 0x51, par);
739 vga_out8(0x3d5, reg->CR51, par);
740 vga_out8(0x3d4, 0x53, par);
741 vga_out8(0x3d5, reg->CR53, par);
742 vga_out8(0x3d4, 0x58, par);
743 vga_out8(0x3d5, reg->CR58, par);
744 vga_out8(0x3d4, 0x60, par);
745 vga_out8(0x3d5, reg->CR60, par);
746 vga_out8(0x3d4, 0x66, par);
747 vga_out8(0x3d5, reg->CR66, par);
748 vga_out8(0x3d4, 0x67, par);
749 vga_out8(0x3d5, reg->CR67, par);
750 vga_out8(0x3d4, 0x68, par);
751 vga_out8(0x3d5, reg->CR68, par);
752 vga_out8(0x3d4, 0x69, par);
753 vga_out8(0x3d5, reg->CR69, par);
754 vga_out8(0x3d4, 0x6f, par);
755 vga_out8(0x3d5, reg->CR6F, par);
756
757 vga_out8(0x3d4, 0x33, par);
758 vga_out8(0x3d5, reg->CR33, par);
759 vga_out8(0x3d4, 0x86, par);
760 vga_out8(0x3d5, reg->CR86, par);
761 vga_out8(0x3d4, 0x88, par);
762 vga_out8(0x3d5, reg->CR88, par);
763 vga_out8(0x3d4, 0x90, par);
764 vga_out8(0x3d5, reg->CR90, par);
765 vga_out8(0x3d4, 0x91, par);
766 vga_out8(0x3d5, reg->CR91, par);
767 vga_out8(0x3d4, 0xb0, par);
768 vga_out8(0x3d5, reg->CRB0, par);
769
770 /* extended mode timing regs */
771 vga_out8(0x3d4, 0x3b, par);
772 vga_out8(0x3d5, reg->CR3B, par);
773 vga_out8(0x3d4, 0x3c, par);
774 vga_out8(0x3d5, reg->CR3C, par);
775 vga_out8(0x3d4, 0x43, par);
776 vga_out8(0x3d5, reg->CR43, par);
777 vga_out8(0x3d4, 0x5d, par);
778 vga_out8(0x3d5, reg->CR5D, par);
779 vga_out8(0x3d4, 0x5e, par);
780 vga_out8(0x3d5, reg->CR5E, par);
781 vga_out8(0x3d4, 0x65, par);
782 vga_out8(0x3d5, reg->CR65, par);
783
784 /* save seq extended regs for DCLK PLL programming */
785 vga_out8(0x3c4, 0x0e, par);
786 vga_out8(0x3c5, reg->SR0E, par);
787 vga_out8(0x3c4, 0x0f, par);
788 vga_out8(0x3c5, reg->SR0F, par);
789 vga_out8(0x3c4, 0x10, par);
790 vga_out8(0x3c5, reg->SR10, par);
791 vga_out8(0x3c4, 0x11, par);
792 vga_out8(0x3c5, reg->SR11, par);
793 vga_out8(0x3c4, 0x12, par);
794 vga_out8(0x3c5, reg->SR12, par);
795 vga_out8(0x3c4, 0x13, par);
796 vga_out8(0x3c5, reg->SR13, par);
797 vga_out8(0x3c4, 0x29, par);
798 vga_out8(0x3c5, reg->SR29, par);
799
800 vga_out8(0x3c4, 0x15, par);
801 vga_out8(0x3c5, reg->SR15, par);
802 vga_out8(0x3c4, 0x30, par);
803 vga_out8(0x3c5, reg->SR30, par);
804 vga_out8(0x3c4, 0x18, par);
805 vga_out8(0x3c5, reg->SR18, par);
806
807 /* Save flat panel expansion regsters. */
808 if (par->chip == S3_SAVAGE_MX) {
809 int i;
810
811 for (i = 0; i < 8; i++) {
812 vga_out8(0x3c4, 0x54+i, par);
813 vga_out8(0x3c5, reg->SR54[i], par);
814 }
815 }
816
817 vga_out8(0x3d4, 0x66, par);
818 cr66 = vga_in8(0x3d5, par);
819 vga_out8(0x3d5, cr66 | 0x80, par);
820 vga_out8(0x3d4, 0x3a, par);
821 cr3a = vga_in8(0x3d5, par);
822 vga_out8(0x3d5, cr3a | 0x80, par);
823
824 /* now save MIU regs */
825 if (par->chip != S3_SAVAGE_MX) {
826 savage_out32(FIFO_CONTROL_REG, reg->MMPR0, par);
827 savage_out32(MIU_CONTROL_REG, reg->MMPR1, par);
828 savage_out32(STREAMS_TIMEOUT_REG, reg->MMPR2, par);
829 savage_out32(MISC_TIMEOUT_REG, reg->MMPR3, par);
830 }
831
832 vga_out8(0x3d4, 0x3a, par);
833 vga_out8(0x3d5, cr3a, par);
834 vga_out8(0x3d4, 0x66, par);
835 vga_out8(0x3d5, cr66, par);
836}
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838static void savage_update_var(struct fb_var_screeninfo *var, struct fb_videomode *modedb)
839{
840 var->xres = var->xres_virtual = modedb->xres;
841 var->yres = modedb->yres;
842 if (var->yres_virtual < var->yres)
843 var->yres_virtual = var->yres;
844 var->xoffset = var->yoffset = 0;
845 var->pixclock = modedb->pixclock;
846 var->left_margin = modedb->left_margin;
847 var->right_margin = modedb->right_margin;
848 var->upper_margin = modedb->upper_margin;
849 var->lower_margin = modedb->lower_margin;
850 var->hsync_len = modedb->hsync_len;
851 var->vsync_len = modedb->vsync_len;
852 var->sync = modedb->sync;
853 var->vmode = modedb->vmode;
854}
855
856static int savagefb_check_var (struct fb_var_screeninfo *var,
857 struct fb_info *info)
858{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -0800859 struct savagefb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 int memlen, vramlen, mode_valid = 0;
861
862 DBG("savagefb_check_var");
863
864 var->transp.offset = 0;
865 var->transp.length = 0;
866 switch (var->bits_per_pixel) {
867 case 8:
868 var->red.offset = var->green.offset =
869 var->blue.offset = 0;
870 var->red.length = var->green.length =
871 var->blue.length = var->bits_per_pixel;
872 break;
873 case 16:
874 var->red.offset = 11;
875 var->red.length = 5;
876 var->green.offset = 5;
877 var->green.length = 6;
878 var->blue.offset = 0;
879 var->blue.length = 5;
880 break;
881 case 32:
882 var->transp.offset = 24;
883 var->transp.length = 8;
884 var->red.offset = 16;
885 var->red.length = 8;
886 var->green.offset = 8;
887 var->green.length = 8;
888 var->blue.offset = 0;
889 var->blue.length = 8;
890 break;
891
892 default:
893 return -EINVAL;
894 }
895
896 if (!info->monspecs.hfmax || !info->monspecs.vfmax ||
897 !info->monspecs.dclkmax || !fb_validate_mode(var, info))
898 mode_valid = 1;
899
900 /* calculate modeline if supported by monitor */
901 if (!mode_valid && info->monspecs.gtf) {
902 if (!fb_get_mode(FB_MAXTIMINGS, 0, var, info))
903 mode_valid = 1;
904 }
905
906 if (!mode_valid) {
907 struct fb_videomode *mode;
908
909 mode = fb_find_best_mode(var, &info->modelist);
910 if (mode) {
911 savage_update_var(var, mode);
912 mode_valid = 1;
913 }
914 }
915
916 if (!mode_valid && info->monspecs.modedb_len)
917 return -EINVAL;
918
919 /* Is the mode larger than the LCD panel? */
920 if (par->SavagePanelWidth &&
921 (var->xres > par->SavagePanelWidth ||
922 var->yres > par->SavagePanelHeight)) {
923 printk (KERN_INFO "Mode (%dx%d) larger than the LCD panel "
924 "(%dx%d)\n", var->xres, var->yres,
925 par->SavagePanelWidth,
926 par->SavagePanelHeight);
927 return -1;
928 }
929
930 if (var->yres_virtual < var->yres)
931 var->yres_virtual = var->yres;
932 if (var->xres_virtual < var->xres)
933 var->xres_virtual = var->xres;
934
935 vramlen = info->fix.smem_len;
936
937 memlen = var->xres_virtual * var->bits_per_pixel *
938 var->yres_virtual / 8;
939 if (memlen > vramlen) {
940 var->yres_virtual = vramlen * 8 /
941 (var->xres_virtual * var->bits_per_pixel);
942 memlen = var->xres_virtual * var->bits_per_pixel *
943 var->yres_virtual / 8;
944 }
945
946 /* we must round yres/xres down, we already rounded y/xres_virtual up
947 if it was possible. We should return -EINVAL, but I disagree */
948 if (var->yres_virtual < var->yres)
949 var->yres = var->yres_virtual;
950 if (var->xres_virtual < var->xres)
951 var->xres = var->xres_virtual;
952 if (var->xoffset + var->xres > var->xres_virtual)
953 var->xoffset = var->xres_virtual - var->xres;
954 if (var->yoffset + var->yres > var->yres_virtual)
955 var->yoffset = var->yres_virtual - var->yres;
956
957 return 0;
958}
959
960
961static int savagefb_decode_var (struct fb_var_screeninfo *var,
Antonino A. Daplas23566142006-06-26 00:26:23 -0700962 struct savagefb_par *par,
963 struct savage_reg *reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
965 struct xtimings timings;
966 int width, dclk, i, j; /*, refresh; */
967 unsigned int m, n, r;
968 unsigned char tmp = 0;
969 unsigned int pixclock = var->pixclock;
970
971 DBG("savagefb_decode_var");
972
973 memset (&timings, 0, sizeof(timings));
974
975 if (!pixclock) pixclock = 10000; /* 10ns = 100MHz */
976 timings.Clock = 1000000000 / pixclock;
977 if (timings.Clock < 1) timings.Clock = 1;
978 timings.dblscan = var->vmode & FB_VMODE_DOUBLE;
979 timings.interlaced = var->vmode & FB_VMODE_INTERLACED;
980 timings.HDisplay = var->xres;
981 timings.HSyncStart = timings.HDisplay + var->right_margin;
982 timings.HSyncEnd = timings.HSyncStart + var->hsync_len;
983 timings.HTotal = timings.HSyncEnd + var->left_margin;
984 timings.VDisplay = var->yres;
985 timings.VSyncStart = timings.VDisplay + var->lower_margin;
986 timings.VSyncEnd = timings.VSyncStart + var->vsync_len;
987 timings.VTotal = timings.VSyncEnd + var->upper_margin;
988 timings.sync = var->sync;
989
990
991 par->depth = var->bits_per_pixel;
992 par->vwidth = var->xres_virtual;
993
994 if (var->bits_per_pixel == 16 && par->chip == S3_SAVAGE3D) {
995 timings.HDisplay *= 2;
996 timings.HSyncStart *= 2;
997 timings.HSyncEnd *= 2;
998 timings.HTotal *= 2;
999 }
1000
1001 /*
1002 * This will allocate the datastructure and initialize all of the
1003 * generic VGA registers.
1004 */
Antonino A. Daplas23566142006-06-26 00:26:23 -07001005 vgaHWInit (var, par, &timings, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 /* We need to set CR67 whether or not we use the BIOS. */
1008
1009 dclk = timings.Clock;
Antonino A. Daplas23566142006-06-26 00:26:23 -07001010 reg->CR67 = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 switch( var->bits_per_pixel ) {
1013 case 8:
1014 if( (par->chip == S3_SAVAGE2000) && (dclk >= 230000) )
Antonino A. Daplas23566142006-06-26 00:26:23 -07001015 reg->CR67 = 0x10; /* 8bpp, 2 pixels/clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 else
Antonino A. Daplas23566142006-06-26 00:26:23 -07001017 reg->CR67 = 0x00; /* 8bpp, 1 pixel/clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 break;
1019 case 15:
1020 if ( S3_SAVAGE_MOBILE_SERIES(par->chip) ||
1021 ((par->chip == S3_SAVAGE2000) && (dclk >= 230000)) )
Antonino A. Daplas23566142006-06-26 00:26:23 -07001022 reg->CR67 = 0x30; /* 15bpp, 2 pixel/clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 else
Antonino A. Daplas23566142006-06-26 00:26:23 -07001024 reg->CR67 = 0x20; /* 15bpp, 1 pixels/clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 break;
1026 case 16:
1027 if( S3_SAVAGE_MOBILE_SERIES(par->chip) ||
1028 ((par->chip == S3_SAVAGE2000) && (dclk >= 230000)) )
Antonino A. Daplas23566142006-06-26 00:26:23 -07001029 reg->CR67 = 0x50; /* 16bpp, 2 pixel/clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 else
Antonino A. Daplas23566142006-06-26 00:26:23 -07001031 reg->CR67 = 0x40; /* 16bpp, 1 pixels/clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 break;
1033 case 24:
Antonino A. Daplas23566142006-06-26 00:26:23 -07001034 reg->CR67 = 0x70;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 break;
1036 case 32:
Antonino A. Daplas23566142006-06-26 00:26:23 -07001037 reg->CR67 = 0xd0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 break;
1039 }
1040
1041 /*
1042 * Either BIOS use is disabled, or we failed to find a suitable
1043 * match. Fall back to traditional register-crunching.
1044 */
1045
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001046 vga_out8 (0x3d4, 0x3a, par);
1047 tmp = vga_in8 (0x3d5, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (1 /*FIXME:psav->pci_burst*/)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001049 reg->CR3A = (tmp & 0x7f) | 0x15;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 else
Antonino A. Daplas23566142006-06-26 00:26:23 -07001051 reg->CR3A = tmp | 0x95;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Antonino A. Daplas23566142006-06-26 00:26:23 -07001053 reg->CR53 = 0x00;
1054 reg->CR31 = 0x8c;
1055 reg->CR66 = 0x89;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001057 vga_out8 (0x3d4, 0x58, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001058 reg->CR58 = vga_in8 (0x3d5, par) & 0x80;
1059 reg->CR58 |= 0x13;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Antonino A. Daplas23566142006-06-26 00:26:23 -07001061 reg->SR15 = 0x03 | 0x80;
1062 reg->SR18 = 0x00;
1063 reg->CR43 = reg->CR45 = reg->CR65 = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001065 vga_out8 (0x3d4, 0x40, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001066 reg->CR40 = vga_in8 (0x3d5, par) & ~0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Antonino A. Daplas23566142006-06-26 00:26:23 -07001068 reg->MMPR0 = 0x010400;
1069 reg->MMPR1 = 0x00;
1070 reg->MMPR2 = 0x0808;
1071 reg->MMPR3 = 0x08080810;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 SavageCalcClock (dclk, 1, 1, 127, 0, 4, 180000, 360000, &m, &n, &r);
1074 /* m = 107; n = 4; r = 2; */
1075
1076 if (par->MCLK <= 0) {
Antonino A. Daplas23566142006-06-26 00:26:23 -07001077 reg->SR10 = 255;
1078 reg->SR11 = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 } else {
1080 common_calc_clock (par->MCLK, 1, 1, 31, 0, 3, 135000, 270000,
Antonino A. Daplas23566142006-06-26 00:26:23 -07001081 &reg->SR11, &reg->SR10);
1082 /* reg->SR10 = 80; // MCLK == 286000 */
1083 /* reg->SR11 = 125; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085
Antonino A. Daplas23566142006-06-26 00:26:23 -07001086 reg->SR12 = (r << 6) | (n & 0x3f);
1087 reg->SR13 = m & 0xff;
1088 reg->SR29 = (r & 4) | (m & 0x100) >> 5 | (n & 0x40) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 if (var->bits_per_pixel < 24)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001091 reg->MMPR0 -= 0x8000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 else
Antonino A. Daplas23566142006-06-26 00:26:23 -07001093 reg->MMPR0 -= 0x4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 if (timings.interlaced)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001096 reg->CR42 = 0x20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 else
Antonino A. Daplas23566142006-06-26 00:26:23 -07001098 reg->CR42 = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Antonino A. Daplas23566142006-06-26 00:26:23 -07001100 reg->CR34 = 0x10; /* display fifo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 i = ((((timings.HTotal >> 3) - 5) & 0x100) >> 8) |
1103 ((((timings.HDisplay >> 3) - 1) & 0x100) >> 7) |
1104 ((((timings.HSyncStart >> 3) - 1) & 0x100) >> 6) |
1105 ((timings.HSyncStart & 0x800) >> 7);
1106
1107 if ((timings.HSyncEnd >> 3) - (timings.HSyncStart >> 3) > 64)
1108 i |= 0x08;
1109 if ((timings.HSyncEnd >> 3) - (timings.HSyncStart >> 3) > 32)
1110 i |= 0x20;
1111
Antonino A. Daplas23566142006-06-26 00:26:23 -07001112 j = (reg->CRTC[0] + ((i & 0x01) << 8) +
1113 reg->CRTC[4] + ((i & 0x10) << 4) + 1) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Antonino A. Daplas23566142006-06-26 00:26:23 -07001115 if (j - (reg->CRTC[4] + ((i & 0x10) << 4)) < 4) {
1116 if (reg->CRTC[4] + ((i & 0x10) << 4) + 4 <=
1117 reg->CRTC[0] + ((i & 0x01) << 8))
1118 j = reg->CRTC[4] + ((i & 0x10) << 4) + 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 else
Antonino A. Daplas23566142006-06-26 00:26:23 -07001120 j = reg->CRTC[0] + ((i & 0x01) << 8) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
1122
Antonino A. Daplas23566142006-06-26 00:26:23 -07001123 reg->CR3B = j & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 i |= (j & 0x100) >> 2;
Antonino A. Daplas23566142006-06-26 00:26:23 -07001125 reg->CR3C = (reg->CRTC[0] + ((i & 0x01) << 8)) / 2;
1126 reg->CR5D = i;
1127 reg->CR5E = (((timings.VTotal - 2) & 0x400) >> 10) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 (((timings.VDisplay - 1) & 0x400) >> 9) |
1129 (((timings.VSyncStart) & 0x400) >> 8) |
1130 (((timings.VSyncStart) & 0x400) >> 6) | 0x40;
1131 width = (var->xres_virtual * ((var->bits_per_pixel+7) / 8)) >> 3;
Antonino A. Daplas23566142006-06-26 00:26:23 -07001132 reg->CR91 = reg->CRTC[19] = 0xff & width;
1133 reg->CR51 = (0x300 & width) >> 4;
1134 reg->CR90 = 0x80 | (width >> 8);
1135 reg->MiscOutReg |= 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 /* Set frame buffer description. */
1138
1139 if (var->bits_per_pixel <= 8)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001140 reg->CR50 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 else if (var->bits_per_pixel <= 16)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001142 reg->CR50 = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 else
Antonino A. Daplas23566142006-06-26 00:26:23 -07001144 reg->CR50 = 0x30;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 if (var->xres_virtual <= 640)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001147 reg->CR50 |= 0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 else if (var->xres_virtual == 800)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001149 reg->CR50 |= 0x80;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 else if (var->xres_virtual == 1024)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001151 reg->CR50 |= 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 else if (var->xres_virtual == 1152)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001153 reg->CR50 |= 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 else if (var->xres_virtual == 1280)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001155 reg->CR50 |= 0xc0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 else if (var->xres_virtual == 1600)
Antonino A. Daplas23566142006-06-26 00:26:23 -07001157 reg->CR50 |= 0x81;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 else
Antonino A. Daplas23566142006-06-26 00:26:23 -07001159 reg->CR50 |= 0xc1; /* Use GBD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 if( par->chip == S3_SAVAGE2000 )
Antonino A. Daplas23566142006-06-26 00:26:23 -07001162 reg->CR33 = 0x08;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 else
Antonino A. Daplas23566142006-06-26 00:26:23 -07001164 reg->CR33 = 0x20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Antonino A. Daplas23566142006-06-26 00:26:23 -07001166 reg->CRTC[0x17] = 0xeb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Antonino A. Daplas23566142006-06-26 00:26:23 -07001168 reg->CR67 |= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001170 vga_out8(0x3d4, 0x36, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001171 reg->CR36 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001172 vga_out8 (0x3d4, 0x68, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001173 reg->CR68 = vga_in8 (0x3d5, par);
1174 reg->CR69 = 0;
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001175 vga_out8 (0x3d4, 0x6f, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001176 reg->CR6F = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001177 vga_out8 (0x3d4, 0x86, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001178 reg->CR86 = vga_in8 (0x3d5, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001179 vga_out8 (0x3d4, 0x88, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001180 reg->CR88 = vga_in8 (0x3d5, par) | 0x08;
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001181 vga_out8 (0x3d4, 0xb0, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001182 reg->CRB0 = vga_in8 (0x3d5, par) | 0x80;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 return 0;
1185}
1186
1187/* --------------------------------------------------------------------- */
1188
1189/*
1190 * Set a single color register. Return != 0 for invalid regno.
1191 */
1192static int savagefb_setcolreg(unsigned regno,
1193 unsigned red,
1194 unsigned green,
1195 unsigned blue,
1196 unsigned transp,
1197 struct fb_info *info)
1198{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08001199 struct savagefb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 if (regno >= NR_PALETTE)
1202 return -EINVAL;
1203
1204 par->palette[regno].red = red;
1205 par->palette[regno].green = green;
1206 par->palette[regno].blue = blue;
1207 par->palette[regno].transp = transp;
1208
1209 switch (info->var.bits_per_pixel) {
1210 case 8:
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001211 vga_out8 (0x3c8, regno, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001213 vga_out8 (0x3c9, red >> 10, par);
1214 vga_out8 (0x3c9, green >> 10, par);
1215 vga_out8 (0x3c9, blue >> 10, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 break;
1217
1218 case 16:
1219 if (regno < 16)
1220 ((u32 *)info->pseudo_palette)[regno] =
1221 ((red & 0xf800) ) |
1222 ((green & 0xfc00) >> 5) |
1223 ((blue & 0xf800) >> 11);
1224 break;
1225
1226 case 24:
1227 if (regno < 16)
1228 ((u32 *)info->pseudo_palette)[regno] =
1229 ((red & 0xff00) << 8) |
1230 ((green & 0xff00) ) |
1231 ((blue & 0xff00) >> 8);
1232 break;
1233 case 32:
1234 if (regno < 16)
1235 ((u32 *)info->pseudo_palette)[regno] =
1236 ((transp & 0xff00) << 16) |
1237 ((red & 0xff00) << 8) |
1238 ((green & 0xff00) ) |
1239 ((blue & 0xff00) >> 8);
1240 break;
1241
1242 default:
1243 return 1;
1244 }
1245
1246 return 0;
1247}
1248
Antonino A. Daplas23566142006-06-26 00:26:23 -07001249static void savagefb_set_par_int (struct savagefb_par *par, struct savage_reg *reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
1251 unsigned char tmp, cr3a, cr66, cr67;
1252
1253 DBG ("savagefb_set_par_int");
1254
1255 par->SavageWaitIdle (par);
1256
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001257 vga_out8 (0x3c2, 0x23, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001259 vga_out16 (0x3d4, 0x4838, par);
1260 vga_out16 (0x3d4, 0xa539, par);
1261 vga_out16 (0x3c4, 0x0608, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 vgaHWProtect (par, 1);
1264
1265 /*
1266 * Some Savage/MX and /IX systems go nuts when trying to exit the
1267 * server after WindowMaker has displayed a gradient background. I
1268 * haven't been able to find what causes it, but a non-destructive
1269 * switch to mode 3 here seems to eliminate the issue.
1270 */
1271
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001272 VerticalRetraceWait(par);
1273 vga_out8 (0x3d4, 0x67, par);
1274 cr67 = vga_in8 (0x3d5, par);
1275 vga_out8 (0x3d5, cr67/*par->CR67*/ & ~0x0c, par); /* no STREAMS yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001277 vga_out8 (0x3d4, 0x23, par);
1278 vga_out8 (0x3d5, 0x00, par);
1279 vga_out8 (0x3d4, 0x26, par);
1280 vga_out8 (0x3d5, 0x00, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 /* restore extended regs */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001283 vga_out8 (0x3d4, 0x66, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001284 vga_out8 (0x3d5, reg->CR66, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001285 vga_out8 (0x3d4, 0x3a, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001286 vga_out8 (0x3d5, reg->CR3A, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001287 vga_out8 (0x3d4, 0x31, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001288 vga_out8 (0x3d5, reg->CR31, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001289 vga_out8 (0x3d4, 0x32, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001290 vga_out8 (0x3d5, reg->CR32, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001291 vga_out8 (0x3d4, 0x58, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001292 vga_out8 (0x3d5, reg->CR58, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001293 vga_out8 (0x3d4, 0x53, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001294 vga_out8 (0x3d5, reg->CR53 & 0x7f, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001296 vga_out16 (0x3c4, 0x0608, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 /* Restore DCLK registers. */
1299
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001300 vga_out8 (0x3c4, 0x0e, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001301 vga_out8 (0x3c5, reg->SR0E, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001302 vga_out8 (0x3c4, 0x0f, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001303 vga_out8 (0x3c5, reg->SR0F, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001304 vga_out8 (0x3c4, 0x29, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001305 vga_out8 (0x3c5, reg->SR29, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001306 vga_out8 (0x3c4, 0x15, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001307 vga_out8 (0x3c5, reg->SR15, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 /* Restore flat panel expansion regsters. */
1310 if( par->chip == S3_SAVAGE_MX ) {
1311 int i;
1312
1313 for( i = 0; i < 8; i++ ) {
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001314 vga_out8 (0x3c4, 0x54+i, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001315 vga_out8 (0x3c5, reg->SR54[i], par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
1317 }
1318
Antonino A. Daplas23566142006-06-26 00:26:23 -07001319 vgaHWRestore (par, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 /* extended mode timing registers */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001322 vga_out8 (0x3d4, 0x53, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001323 vga_out8 (0x3d5, reg->CR53, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001324 vga_out8 (0x3d4, 0x5d, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001325 vga_out8 (0x3d5, reg->CR5D, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001326 vga_out8 (0x3d4, 0x5e, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001327 vga_out8 (0x3d5, reg->CR5E, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001328 vga_out8 (0x3d4, 0x3b, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001329 vga_out8 (0x3d5, reg->CR3B, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001330 vga_out8 (0x3d4, 0x3c, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001331 vga_out8 (0x3d5, reg->CR3C, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001332 vga_out8 (0x3d4, 0x43, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001333 vga_out8 (0x3d5, reg->CR43, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001334 vga_out8 (0x3d4, 0x65, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001335 vga_out8 (0x3d5, reg->CR65, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 /* restore the desired video mode with cr67 */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001338 vga_out8 (0x3d4, 0x67, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 /* following part not present in X11 driver */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001340 cr67 = vga_in8 (0x3d5, par) & 0xf;
1341 vga_out8 (0x3d5, 0x50 | cr67, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 udelay (10000);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001343 vga_out8 (0x3d4, 0x67, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 /* end of part */
Antonino A. Daplas23566142006-06-26 00:26:23 -07001345 vga_out8 (0x3d5, reg->CR67 & ~0x0c, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 /* other mode timing and extended regs */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001348 vga_out8 (0x3d4, 0x34, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001349 vga_out8 (0x3d5, reg->CR34, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001350 vga_out8 (0x3d4, 0x40, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001351 vga_out8 (0x3d5, reg->CR40, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001352 vga_out8 (0x3d4, 0x42, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001353 vga_out8 (0x3d5, reg->CR42, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001354 vga_out8 (0x3d4, 0x45, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001355 vga_out8 (0x3d5, reg->CR45, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001356 vga_out8 (0x3d4, 0x50, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001357 vga_out8 (0x3d5, reg->CR50, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001358 vga_out8 (0x3d4, 0x51, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001359 vga_out8 (0x3d5, reg->CR51, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 /* memory timings */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001362 vga_out8 (0x3d4, 0x36, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001363 vga_out8 (0x3d5, reg->CR36, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001364 vga_out8 (0x3d4, 0x60, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001365 vga_out8 (0x3d5, reg->CR60, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001366 vga_out8 (0x3d4, 0x68, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001367 vga_out8 (0x3d5, reg->CR68, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001368 vga_out8 (0x3d4, 0x69, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001369 vga_out8 (0x3d5, reg->CR69, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001370 vga_out8 (0x3d4, 0x6f, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001371 vga_out8 (0x3d5, reg->CR6F, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001373 vga_out8 (0x3d4, 0x33, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001374 vga_out8 (0x3d5, reg->CR33, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001375 vga_out8 (0x3d4, 0x86, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001376 vga_out8 (0x3d5, reg->CR86, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001377 vga_out8 (0x3d4, 0x88, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001378 vga_out8 (0x3d5, reg->CR88, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001379 vga_out8 (0x3d4, 0x90, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001380 vga_out8 (0x3d5, reg->CR90, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001381 vga_out8 (0x3d4, 0x91, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001382 vga_out8 (0x3d5, reg->CR91, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 if (par->chip == S3_SAVAGE4) {
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001385 vga_out8 (0x3d4, 0xb0, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001386 vga_out8 (0x3d5, reg->CRB0, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001389 vga_out8 (0x3d4, 0x32, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001390 vga_out8 (0x3d5, reg->CR32, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 /* unlock extended seq regs */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001393 vga_out8 (0x3c4, 0x08, par);
1394 vga_out8 (0x3c5, 0x06, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 /* Restore extended sequencer regs for MCLK. SR10 == 255 indicates
1397 * that we should leave the default SR10 and SR11 values there.
1398 */
Antonino A. Daplas23566142006-06-26 00:26:23 -07001399 if (reg->SR10 != 255) {
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001400 vga_out8 (0x3c4, 0x10, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001401 vga_out8 (0x3c5, reg->SR10, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001402 vga_out8 (0x3c4, 0x11, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001403 vga_out8 (0x3c5, reg->SR11, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 }
1405
1406 /* restore extended seq regs for dclk */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001407 vga_out8 (0x3c4, 0x0e, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001408 vga_out8 (0x3c5, reg->SR0E, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001409 vga_out8 (0x3c4, 0x0f, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001410 vga_out8 (0x3c5, reg->SR0F, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001411 vga_out8 (0x3c4, 0x12, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001412 vga_out8 (0x3c5, reg->SR12, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001413 vga_out8 (0x3c4, 0x13, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001414 vga_out8 (0x3c5, reg->SR13, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001415 vga_out8 (0x3c4, 0x29, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001416 vga_out8 (0x3c5, reg->SR29, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001418 vga_out8 (0x3c4, 0x18, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001419 vga_out8 (0x3c5, reg->SR18, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 /* load new m, n pll values for dclk & mclk */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001422 vga_out8 (0x3c4, 0x15, par);
1423 tmp = vga_in8 (0x3c5, par) & ~0x21;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001425 vga_out8 (0x3c5, tmp | 0x03, par);
1426 vga_out8 (0x3c5, tmp | 0x23, par);
1427 vga_out8 (0x3c5, tmp | 0x03, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001428 vga_out8 (0x3c5, reg->SR15, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 udelay (100);
1430
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001431 vga_out8 (0x3c4, 0x30, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001432 vga_out8 (0x3c5, reg->SR30, par);
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001433 vga_out8 (0x3c4, 0x08, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001434 vga_out8 (0x3c5, reg->SR08, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 /* now write out cr67 in full, possibly starting STREAMS */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001437 VerticalRetraceWait(par);
1438 vga_out8 (0x3d4, 0x67, par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001439 vga_out8 (0x3d5, reg->CR67, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001441 vga_out8 (0x3d4, 0x66, par);
1442 cr66 = vga_in8 (0x3d5, par);
1443 vga_out8 (0x3d5, cr66 | 0x80, par);
1444 vga_out8 (0x3d4, 0x3a, par);
1445 cr3a = vga_in8 (0x3d5, par);
1446 vga_out8 (0x3d5, cr3a | 0x80, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 if (par->chip != S3_SAVAGE_MX) {
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001449 VerticalRetraceWait(par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001450 savage_out32 (FIFO_CONTROL_REG, reg->MMPR0, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 par->SavageWaitIdle (par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001452 savage_out32 (MIU_CONTROL_REG, reg->MMPR1, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 par->SavageWaitIdle (par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001454 savage_out32 (STREAMS_TIMEOUT_REG, reg->MMPR2, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 par->SavageWaitIdle (par);
Antonino A. Daplas23566142006-06-26 00:26:23 -07001456 savage_out32 (MISC_TIMEOUT_REG, reg->MMPR3, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
1458
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001459 vga_out8 (0x3d4, 0x66, par);
1460 vga_out8 (0x3d5, cr66, par);
1461 vga_out8 (0x3d4, 0x3a, par);
1462 vga_out8 (0x3d5, cr3a, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 SavageSetup2DEngine (par);
1465 vgaHWProtect (par, 0);
1466}
1467
1468static void savagefb_update_start (struct savagefb_par *par,
1469 struct fb_var_screeninfo *var)
1470{
1471 int base;
1472
1473 base = ((var->yoffset * var->xres_virtual + (var->xoffset & ~1))
1474 * ((var->bits_per_pixel+7) / 8)) >> 2;
1475
1476 /* now program the start address registers */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001477 vga_out16(0x3d4, (base & 0x00ff00) | 0x0c, par);
1478 vga_out16(0x3d4, ((base & 0x00ff) << 8) | 0x0d, par);
1479 vga_out8 (0x3d4, 0x69, par);
1480 vga_out8 (0x3d5, (base & 0x7f0000) >> 16, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
1482
1483
1484static void savagefb_set_fix(struct fb_info *info)
1485{
1486 info->fix.line_length = info->var.xres_virtual *
1487 info->var.bits_per_pixel / 8;
1488
Antonino A. Daplas6d83b0b2005-11-08 21:39:05 -08001489 if (info->var.bits_per_pixel == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
Antonino A. Daplas6d83b0b2005-11-08 21:39:05 -08001491 info->fix.xpanstep = 4;
1492 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 info->fix.visual = FB_VISUAL_TRUECOLOR;
Antonino A. Daplas6d83b0b2005-11-08 21:39:05 -08001494 info->fix.xpanstep = 2;
1495 }
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499static int savagefb_set_par (struct fb_info *info)
1500{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08001501 struct savagefb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 struct fb_var_screeninfo *var = &info->var;
1503 int err;
1504
1505 DBG("savagefb_set_par");
Antonino A. Daplas23566142006-06-26 00:26:23 -07001506 err = savagefb_decode_var (var, par, &par->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (err)
1508 return err;
1509
1510 if (par->dacSpeedBpp <= 0) {
1511 if (var->bits_per_pixel > 24)
1512 par->dacSpeedBpp = par->clock[3];
1513 else if (var->bits_per_pixel >= 24)
1514 par->dacSpeedBpp = par->clock[2];
1515 else if ((var->bits_per_pixel > 8) && (var->bits_per_pixel < 24))
1516 par->dacSpeedBpp = par->clock[1];
1517 else if (var->bits_per_pixel <= 8)
1518 par->dacSpeedBpp = par->clock[0];
1519 }
1520
1521 /* Set ramdac limits */
1522 par->maxClock = par->dacSpeedBpp;
1523 par->minClock = 10000;
1524
Antonino A. Daplas23566142006-06-26 00:26:23 -07001525 savagefb_set_par_int (par, &par->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 fb_set_cmap (&info->cmap, info);
1527 savagefb_set_fix(info);
1528 savagefb_set_clip(info);
1529
1530 SavagePrintRegs();
1531 return 0;
1532}
1533
1534/*
1535 * Pan or Wrap the Display
1536 */
1537static int savagefb_pan_display (struct fb_var_screeninfo *var,
1538 struct fb_info *info)
1539{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08001540 struct savagefb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 savagefb_update_start (par, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 return 0;
1544}
1545
Antonino A. Daplas13776712005-09-09 13:04:35 -07001546static int savagefb_blank(int blank, struct fb_info *info)
1547{
1548 struct savagefb_par *par = info->par;
1549 u8 sr8 = 0, srd = 0;
1550
1551 if (par->display_type == DISP_CRT) {
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001552 vga_out8(0x3c4, 0x08, par);
1553 sr8 = vga_in8(0x3c5, par);
Antonino A. Daplas13776712005-09-09 13:04:35 -07001554 sr8 |= 0x06;
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001555 vga_out8(0x3c5, sr8, par);
1556 vga_out8(0x3c4, 0x0d, par);
1557 srd = vga_in8(0x3c5, par);
Antonino A. Daplas13776712005-09-09 13:04:35 -07001558 srd &= 0x03;
1559
1560 switch (blank) {
1561 case FB_BLANK_UNBLANK:
1562 case FB_BLANK_NORMAL:
1563 break;
1564 case FB_BLANK_VSYNC_SUSPEND:
1565 srd |= 0x10;
1566 break;
1567 case FB_BLANK_HSYNC_SUSPEND:
1568 srd |= 0x40;
1569 break;
1570 case FB_BLANK_POWERDOWN:
1571 srd |= 0x50;
1572 break;
1573 }
1574
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001575 vga_out8(0x3c4, 0x0d, par);
1576 vga_out8(0x3c5, srd, par);
Antonino A. Daplas13776712005-09-09 13:04:35 -07001577 }
1578
1579 if (par->display_type == DISP_LCD ||
1580 par->display_type == DISP_DFP) {
1581 switch(blank) {
1582 case FB_BLANK_UNBLANK:
1583 case FB_BLANK_NORMAL:
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001584 vga_out8(0x3c4, 0x31, par); /* SR31 bit 4 - FP enable */
1585 vga_out8(0x3c5, vga_in8(0x3c5, par) | 0x10, par);
Antonino A. Daplas13776712005-09-09 13:04:35 -07001586 break;
1587 case FB_BLANK_VSYNC_SUSPEND:
1588 case FB_BLANK_HSYNC_SUSPEND:
1589 case FB_BLANK_POWERDOWN:
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001590 vga_out8(0x3c4, 0x31, par); /* SR31 bit 4 - FP enable */
1591 vga_out8(0x3c5, vga_in8(0x3c5, par) & ~0x10, par);
Antonino A. Daplas13776712005-09-09 13:04:35 -07001592 break;
1593 }
1594 }
1595
1596 return (blank == FB_BLANK_NORMAL) ? 1 : 0;
1597}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Antonino A. Daplasf8020dc2006-06-26 00:26:24 -07001599static void savagefb_save_state(struct fb_info *info)
1600{
1601 struct savagefb_par *par = info->par;
1602
1603 savage_get_default_par(par, &par->save);
1604}
1605
1606static void savagefb_restore_state(struct fb_info *info)
1607{
1608 struct savagefb_par *par = info->par;
1609
1610 savagefb_blank(FB_BLANK_POWERDOWN, info);
1611 savage_set_default_par(par, &par->save);
1612 savagefb_blank(FB_BLANK_UNBLANK, info);
1613}
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615static struct fb_ops savagefb_ops = {
1616 .owner = THIS_MODULE,
1617 .fb_check_var = savagefb_check_var,
1618 .fb_set_par = savagefb_set_par,
1619 .fb_setcolreg = savagefb_setcolreg,
1620 .fb_pan_display = savagefb_pan_display,
Antonino A. Daplas13776712005-09-09 13:04:35 -07001621 .fb_blank = savagefb_blank,
Antonino A. Daplasf8020dc2006-06-26 00:26:24 -07001622 .fb_save_state = savagefb_save_state,
1623 .fb_restore_state = savagefb_restore_state,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624#if defined(CONFIG_FB_SAVAGE_ACCEL)
1625 .fb_fillrect = savagefb_fillrect,
1626 .fb_copyarea = savagefb_copyarea,
1627 .fb_imageblit = savagefb_imageblit,
1628 .fb_sync = savagefb_sync,
1629#else
1630 .fb_fillrect = cfb_fillrect,
1631 .fb_copyarea = cfb_copyarea,
1632 .fb_imageblit = cfb_imageblit,
1633#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634};
1635
1636/* --------------------------------------------------------------------- */
1637
1638static struct fb_var_screeninfo __devinitdata savagefb_var800x600x8 = {
1639 .accel_flags = FB_ACCELF_TEXT,
1640 .xres = 800,
1641 .yres = 600,
1642 .xres_virtual = 800,
1643 .yres_virtual = 600,
1644 .bits_per_pixel = 8,
1645 .pixclock = 25000,
1646 .left_margin = 88,
1647 .right_margin = 40,
1648 .upper_margin = 23,
1649 .lower_margin = 1,
1650 .hsync_len = 128,
1651 .vsync_len = 4,
1652 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
1653 .vmode = FB_VMODE_NONINTERLACED
1654};
1655
1656static void savage_enable_mmio (struct savagefb_par *par)
1657{
1658 unsigned char val;
1659
1660 DBG ("savage_enable_mmio\n");
1661
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001662 val = vga_in8 (0x3c3, par);
1663 vga_out8 (0x3c3, val | 0x01, par);
1664 val = vga_in8 (0x3cc, par);
1665 vga_out8 (0x3c2, val | 0x01, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 if (par->chip >= S3_SAVAGE4) {
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001668 vga_out8 (0x3d4, 0x40, par);
1669 val = vga_in8 (0x3d5, par);
1670 vga_out8 (0x3d5, val | 1, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
1672}
1673
1674
1675static void savage_disable_mmio (struct savagefb_par *par)
1676{
1677 unsigned char val;
1678
1679 DBG ("savage_disable_mmio\n");
1680
1681 if(par->chip >= S3_SAVAGE4 ) {
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001682 vga_out8 (0x3d4, 0x40, par);
1683 val = vga_in8 (0x3d5, par);
1684 vga_out8 (0x3d5, val | 1, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
1686}
1687
1688
1689static int __devinit savage_map_mmio (struct fb_info *info)
1690{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08001691 struct savagefb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 DBG ("savage_map_mmio");
1693
1694 if (S3_SAVAGE3D_SERIES (par->chip))
1695 par->mmio.pbase = pci_resource_start (par->pcidev, 0) +
1696 SAVAGE_NEWMMIO_REGBASE_S3;
1697 else
1698 par->mmio.pbase = pci_resource_start (par->pcidev, 0) +
1699 SAVAGE_NEWMMIO_REGBASE_S4;
1700
1701 par->mmio.len = SAVAGE_NEWMMIO_REGSIZE;
1702
1703 par->mmio.vbase = ioremap (par->mmio.pbase, par->mmio.len);
1704 if (!par->mmio.vbase) {
1705 printk ("savagefb: unable to map memory mapped IO\n");
1706 return -ENOMEM;
1707 } else
1708 printk (KERN_INFO "savagefb: mapped io at %p\n",
1709 par->mmio.vbase);
1710
1711 info->fix.mmio_start = par->mmio.pbase;
1712 info->fix.mmio_len = par->mmio.len;
1713
Al Viro0d3e8fe2005-04-26 07:43:41 -07001714 par->bci_base = (u32 __iomem *)(par->mmio.vbase + BCI_BUFFER_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 par->bci_ptr = 0;
1716
1717 savage_enable_mmio (par);
1718
1719 return 0;
1720}
1721
Randy Dunlapa61bdaa2006-04-18 22:22:11 -07001722static void savage_unmap_mmio (struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08001724 struct savagefb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 DBG ("savage_unmap_mmio");
1726
1727 savage_disable_mmio(par);
1728
1729 if (par->mmio.vbase) {
Al Viro0d3e8fe2005-04-26 07:43:41 -07001730 iounmap(par->mmio.vbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 par->mmio.vbase = NULL;
1732 }
1733}
1734
1735static int __devinit savage_map_video (struct fb_info *info,
1736 int video_len)
1737{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08001738 struct savagefb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 int resource;
1740
1741 DBG("savage_map_video");
1742
1743 if (S3_SAVAGE3D_SERIES (par->chip))
1744 resource = 0;
1745 else
1746 resource = 1;
1747
1748 par->video.pbase = pci_resource_start (par->pcidev, resource);
1749 par->video.len = video_len;
1750 par->video.vbase = ioremap (par->video.pbase, par->video.len);
1751
1752 if (!par->video.vbase) {
1753 printk ("savagefb: unable to map screen memory\n");
1754 return -ENOMEM;
1755 } else
1756 printk (KERN_INFO "savagefb: mapped framebuffer at %p, "
1757 "pbase == %x\n", par->video.vbase, par->video.pbase);
1758
1759 info->fix.smem_start = par->video.pbase;
1760 info->fix.smem_len = par->video.len - par->cob_size;
1761 info->screen_base = par->video.vbase;
1762
1763#ifdef CONFIG_MTRR
1764 par->video.mtrr = mtrr_add (par->video.pbase, video_len,
1765 MTRR_TYPE_WRCOMB, 1);
1766#endif
1767
1768 /* Clear framebuffer, it's all white in memory after boot */
Al Viro0d3e8fe2005-04-26 07:43:41 -07001769 memset_io (par->video.vbase, 0, par->video.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 return 0;
1772}
1773
Randy Dunlapa61bdaa2006-04-18 22:22:11 -07001774static void savage_unmap_video (struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08001776 struct savagefb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778 DBG("savage_unmap_video");
1779
1780 if (par->video.vbase) {
1781#ifdef CONFIG_MTRR
1782 mtrr_del (par->video.mtrr, par->video.pbase, par->video.len);
1783#endif
1784
1785 iounmap (par->video.vbase);
1786 par->video.vbase = NULL;
1787 info->screen_base = NULL;
1788 }
1789}
1790
Randy Dunlapa61bdaa2006-04-18 22:22:11 -07001791static int savage_init_hw (struct savagefb_par *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
1793 unsigned char config1, m, n, n1, n2, sr8, cr3f, cr66 = 0, tmp;
1794
1795 static unsigned char RamSavage3D[] = { 8, 4, 4, 2 };
1796 static unsigned char RamSavage4[] = { 2, 4, 8, 12, 16, 32, 64, 32 };
1797 static unsigned char RamSavageMX[] = { 2, 8, 4, 16, 8, 16, 4, 16 };
1798 static unsigned char RamSavageNB[] = { 0, 2, 4, 8, 16, 32, 2, 2 };
Antonino A. Daplas13776712005-09-09 13:04:35 -07001799 int videoRam, videoRambytes, dvi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
1801 DBG("savage_init_hw");
1802
1803 /* unprotect CRTC[0-7] */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001804 vga_out8(0x3d4, 0x11, par);
1805 tmp = vga_in8(0x3d5, par);
1806 vga_out8(0x3d5, tmp & 0x7f, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 /* unlock extended regs */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001809 vga_out16(0x3d4, 0x4838, par);
1810 vga_out16(0x3d4, 0xa039, par);
1811 vga_out16(0x3c4, 0x0608, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001813 vga_out8(0x3d4, 0x40, par);
1814 tmp = vga_in8(0x3d5, par);
1815 vga_out8(0x3d5, tmp & ~0x01, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 /* unlock sys regs */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001818 vga_out8(0x3d4, 0x38, par);
1819 vga_out8(0x3d5, 0x48, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821 /* Unlock system registers. */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001822 vga_out16(0x3d4, 0x4838, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 /* Next go on to detect amount of installed ram */
1825
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001826 vga_out8(0x3d4, 0x36, par); /* for register CR36 (CONFG_REG1), */
1827 config1 = vga_in8(0x3d5, par); /* get amount of vram installed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 /* Compute the amount of video memory and offscreen memory. */
1830
1831 switch (par->chip) {
1832 case S3_SAVAGE3D:
1833 videoRam = RamSavage3D[ (config1 & 0xC0) >> 6 ] * 1024;
1834 break;
1835
1836 case S3_SAVAGE4:
1837 /*
1838 * The Savage4 has one ugly special case to consider. On
1839 * systems with 4 banks of 2Mx32 SDRAM, the BIOS says 4MB
1840 * when it really means 8MB. Why do it the same when you
1841 * can do it different...
1842 */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001843 vga_out8(0x3d4, 0x68, par); /* memory control 1 */
1844 if( (vga_in8(0x3d5, par) & 0xC0) == (0x01 << 6) )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 RamSavage4[1] = 8;
1846
1847 /*FALLTHROUGH*/
1848
1849 case S3_SAVAGE2000:
1850 videoRam = RamSavage4[ (config1 & 0xE0) >> 5 ] * 1024;
1851 break;
1852
1853 case S3_SAVAGE_MX:
1854 case S3_SUPERSAVAGE:
1855 videoRam = RamSavageMX[ (config1 & 0x0E) >> 1 ] * 1024;
1856 break;
1857
1858 case S3_PROSAVAGE:
1859 videoRam = RamSavageNB[ (config1 & 0xE0) >> 5 ] * 1024;
1860 break;
1861
1862 default:
1863 /* How did we get here? */
1864 videoRam = 0;
1865 break;
1866 }
1867
1868 videoRambytes = videoRam * 1024;
1869
1870 printk (KERN_INFO "savagefb: probed videoram: %dk\n", videoRam);
1871
1872 /* reset graphics engine to avoid memory corruption */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001873 vga_out8 (0x3d4, 0x66, par);
1874 cr66 = vga_in8 (0x3d5, par);
1875 vga_out8 (0x3d5, cr66 | 0x02, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 udelay (10000);
1877
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001878 vga_out8 (0x3d4, 0x66, par);
1879 vga_out8 (0x3d5, cr66 & ~0x02, par); /* clear reset flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 udelay (10000);
1881
1882
1883 /*
1884 * reset memory interface, 3D engine, AGP master, PCI master,
1885 * master engine unit, motion compensation/LPB
1886 */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001887 vga_out8 (0x3d4, 0x3f, par);
1888 cr3f = vga_in8 (0x3d5, par);
1889 vga_out8 (0x3d5, cr3f | 0x08, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 udelay (10000);
1891
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001892 vga_out8 (0x3d4, 0x3f, par);
1893 vga_out8 (0x3d5, cr3f & ~0x08, par); /* clear reset flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 udelay (10000);
1895
1896 /* Savage ramdac speeds */
1897 par->numClocks = 4;
1898 par->clock[0] = 250000;
1899 par->clock[1] = 250000;
1900 par->clock[2] = 220000;
1901 par->clock[3] = 220000;
1902
1903 /* detect current mclk */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001904 vga_out8(0x3c4, 0x08, par);
1905 sr8 = vga_in8(0x3c5, par);
1906 vga_out8(0x3c5, 0x06, par);
1907 vga_out8(0x3c4, 0x10, par);
1908 n = vga_in8(0x3c5, par);
1909 vga_out8(0x3c4, 0x11, par);
1910 m = vga_in8(0x3c5, par);
1911 vga_out8(0x3c4, 0x08, par);
1912 vga_out8(0x3c5, sr8, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 m &= 0x7f;
1914 n1 = n & 0x1f;
1915 n2 = (n >> 5) & 0x03;
1916 par->MCLK = ((1431818 * (m+2)) / (n1+2) / (1 << n2) + 50) / 100;
1917 printk (KERN_INFO "savagefb: Detected current MCLK value of %d kHz\n",
1918 par->MCLK);
1919
Antonino A. Daplas13776712005-09-09 13:04:35 -07001920 /* check for DVI/flat panel */
1921 dvi = 0;
1922
1923 if (par->chip == S3_SAVAGE4) {
1924 unsigned char sr30 = 0x00;
1925
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001926 vga_out8(0x3c4, 0x30, par);
Antonino A. Daplas13776712005-09-09 13:04:35 -07001927 /* clear bit 1 */
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001928 vga_out8(0x3c5, vga_in8(0x3c5, par) & ~0x02, par);
1929 sr30 = vga_in8(0x3c5, par);
Antonino A. Daplas13776712005-09-09 13:04:35 -07001930 if (sr30 & 0x02 /*0x04 */) {
1931 dvi = 1;
1932 printk("savagefb: Digital Flat Panel Detected\n");
1933 }
1934 }
1935
Antonino A. Daplas7b6a1862005-09-15 20:58:57 +08001936 if (S3_SAVAGE_MOBILE_SERIES(par->chip) && !par->crtonly)
Antonino A. Daplas13776712005-09-09 13:04:35 -07001937 par->display_type = DISP_LCD;
1938 else if (dvi || (par->chip == S3_SAVAGE4 && par->dvi))
1939 par->display_type = DISP_DFP;
1940 else
1941 par->display_type = DISP_CRT;
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 /* Check LCD panel parrmation */
1944
Antonino A. Daplas7b6a1862005-09-15 20:58:57 +08001945 if (par->display_type == DISP_LCD) {
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001946 unsigned char cr6b = VGArCR( 0x6b, par);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001948 int panelX = (VGArSEQ (0x61, par) +
1949 ((VGArSEQ (0x66, par) & 0x02) << 7) + 1) * 8;
1950 int panelY = (VGArSEQ (0x69, par) +
1951 ((VGArSEQ (0x6e, par) & 0x70) << 4) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 char * sTechnology = "Unknown";
1954
1955 /* OK, I admit it. I don't know how to limit the max dot clock
1956 * for LCD panels of various sizes. I thought I copied the
1957 * formula from the BIOS, but many users have parrmed me of
1958 * my folly.
1959 *
1960 * Instead, I'll abandon any attempt to automatically limit the
1961 * clock, and add an LCDClock option to XF86Config. Some day,
1962 * I should come back to this.
1963 */
1964
1965 enum ACTIVE_DISPLAYS { /* These are the bits in CR6B */
1966 ActiveCRT = 0x01,
1967 ActiveLCD = 0x02,
1968 ActiveTV = 0x04,
1969 ActiveCRT2 = 0x20,
1970 ActiveDUO = 0x80
1971 };
1972
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001973 if ((VGArSEQ (0x39, par) & 0x03) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 sTechnology = "TFT";
Antonino A. Daplas1cc650c2005-11-07 01:00:41 -08001975 } else if ((VGArSEQ (0x30, par) & 0x01) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 sTechnology = "DSTN";
1977 } else {
1978 sTechnology = "STN";
1979 }
1980
1981 printk (KERN_INFO "savagefb: %dx%d %s LCD panel detected %s\n",
1982 panelX, panelY, sTechnology,
1983 cr6b & ActiveLCD ? "and active" : "but not active");
1984
1985 if( cr6b & ActiveLCD ) {
1986 /*
1987 * If the LCD is active and panel expansion is enabled,
1988 * we probably want to kill the HW cursor.
1989 */
1990
1991 printk (KERN_INFO "savagefb: Limiting video mode to "
1992 "%dx%d\n", panelX, panelY );
1993
1994 par->SavagePanelWidth = panelX;
1995 par->SavagePanelHeight = panelY;
1996
Antonino A. Daplas13776712005-09-09 13:04:35 -07001997 } else
1998 par->display_type = DISP_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
2000
Antonino A. Daplas23566142006-06-26 00:26:23 -07002001 savage_get_default_par (par, &par->state);
2002 par->save = par->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 if( S3_SAVAGE4_SERIES(par->chip) ) {
2005 /*
2006 * The Savage4 and ProSavage have COB coherency bugs which
2007 * render the buffer useless. We disable it.
2008 */
2009 par->cob_index = 2;
2010 par->cob_size = 0x8000 << par->cob_index;
2011 par->cob_offset = videoRambytes;
2012 } else {
2013 /* We use 128kB for the COB on all chips. */
2014
2015 par->cob_index = 7;
2016 par->cob_size = 0x400 << par->cob_index;
2017 par->cob_offset = videoRambytes - par->cob_size;
2018 }
2019
2020 return videoRambytes;
2021}
2022
2023static int __devinit savage_init_fb_info (struct fb_info *info,
2024 struct pci_dev *dev,
2025 const struct pci_device_id *id)
2026{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08002027 struct savagefb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 int err = 0;
2029
2030 par->pcidev = dev;
2031
2032 info->fix.type = FB_TYPE_PACKED_PIXELS;
2033 info->fix.type_aux = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 info->fix.ypanstep = 1;
2035 info->fix.ywrapstep = 0;
2036 info->fix.accel = id->driver_data;
2037
2038 switch (info->fix.accel) {
2039 case FB_ACCEL_SUPERSAVAGE:
2040 par->chip = S3_SUPERSAVAGE;
2041 snprintf (info->fix.id, 16, "SuperSavage");
2042 break;
2043 case FB_ACCEL_SAVAGE4:
2044 par->chip = S3_SAVAGE4;
2045 snprintf (info->fix.id, 16, "Savage4");
2046 break;
2047 case FB_ACCEL_SAVAGE3D:
2048 par->chip = S3_SAVAGE3D;
2049 snprintf (info->fix.id, 16, "Savage3D");
2050 break;
2051 case FB_ACCEL_SAVAGE3D_MV:
2052 par->chip = S3_SAVAGE3D;
2053 snprintf (info->fix.id, 16, "Savage3D-MV");
2054 break;
2055 case FB_ACCEL_SAVAGE2000:
2056 par->chip = S3_SAVAGE2000;
2057 snprintf (info->fix.id, 16, "Savage2000");
2058 break;
2059 case FB_ACCEL_SAVAGE_MX_MV:
2060 par->chip = S3_SAVAGE_MX;
2061 snprintf (info->fix.id, 16, "Savage/MX-MV");
2062 break;
2063 case FB_ACCEL_SAVAGE_MX:
2064 par->chip = S3_SAVAGE_MX;
2065 snprintf (info->fix.id, 16, "Savage/MX");
2066 break;
2067 case FB_ACCEL_SAVAGE_IX_MV:
2068 par->chip = S3_SAVAGE_MX;
2069 snprintf (info->fix.id, 16, "Savage/IX-MV");
2070 break;
2071 case FB_ACCEL_SAVAGE_IX:
2072 par->chip = S3_SAVAGE_MX;
2073 snprintf (info->fix.id, 16, "Savage/IX");
2074 break;
2075 case FB_ACCEL_PROSAVAGE_PM:
2076 par->chip = S3_PROSAVAGE;
2077 snprintf (info->fix.id, 16, "ProSavagePM");
2078 break;
2079 case FB_ACCEL_PROSAVAGE_KM:
2080 par->chip = S3_PROSAVAGE;
2081 snprintf (info->fix.id, 16, "ProSavageKM");
2082 break;
2083 case FB_ACCEL_S3TWISTER_P:
Antonino A. Daplas7b6a1862005-09-15 20:58:57 +08002084 par->chip = S3_PROSAVAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 snprintf (info->fix.id, 16, "TwisterP");
2086 break;
2087 case FB_ACCEL_S3TWISTER_K:
Antonino A. Daplas7b6a1862005-09-15 20:58:57 +08002088 par->chip = S3_PROSAVAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 snprintf (info->fix.id, 16, "TwisterK");
2090 break;
2091 case FB_ACCEL_PROSAVAGE_DDR:
Antonino A. Daplas7b6a1862005-09-15 20:58:57 +08002092 par->chip = S3_PROSAVAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 snprintf (info->fix.id, 16, "ProSavageDDR");
2094 break;
2095 case FB_ACCEL_PROSAVAGE_DDRK:
2096 par->chip = S3_PROSAVAGE;
2097 snprintf (info->fix.id, 16, "ProSavage8");
2098 break;
2099 }
2100
2101 if (S3_SAVAGE3D_SERIES(par->chip)) {
2102 par->SavageWaitIdle = savage3D_waitidle;
2103 par->SavageWaitFifo = savage3D_waitfifo;
2104 } else if (S3_SAVAGE4_SERIES(par->chip) ||
2105 S3_SUPERSAVAGE == par->chip) {
2106 par->SavageWaitIdle = savage4_waitidle;
2107 par->SavageWaitFifo = savage4_waitfifo;
2108 } else {
2109 par->SavageWaitIdle = savage2000_waitidle;
2110 par->SavageWaitFifo = savage2000_waitfifo;
2111 }
2112
2113 info->var.nonstd = 0;
2114 info->var.activate = FB_ACTIVATE_NOW;
2115 info->var.width = -1;
2116 info->var.height = -1;
2117 info->var.accel_flags = 0;
2118
2119 info->fbops = &savagefb_ops;
2120 info->flags = FBINFO_DEFAULT |
2121 FBINFO_HWACCEL_YPAN |
2122 FBINFO_HWACCEL_XPAN;
2123
2124 info->pseudo_palette = par->pseudo_palette;
2125
2126#if defined(CONFIG_FB_SAVAGE_ACCEL)
2127 /* FIFO size + padding for commands */
2128 info->pixmap.addr = kmalloc(8*1024, GFP_KERNEL);
2129
2130 err = -ENOMEM;
2131 if (info->pixmap.addr) {
2132 memset(info->pixmap.addr, 0, 8*1024);
2133 info->pixmap.size = 8*1024;
2134 info->pixmap.scan_align = 4;
2135 info->pixmap.buf_align = 4;
James Simmons58a60642005-06-21 17:17:08 -07002136 info->pixmap.access_align = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Olaf Hering6062bfa2005-09-09 13:04:55 -07002138 err = fb_alloc_cmap (&info->cmap, NR_PALETTE, 0);
2139 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 info->flags |= FBINFO_HWACCEL_COPYAREA |
2141 FBINFO_HWACCEL_FILLRECT |
2142 FBINFO_HWACCEL_IMAGEBLIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 }
2144#endif
2145 return err;
2146}
2147
2148/* --------------------------------------------------------------------- */
2149
2150static int __devinit savagefb_probe (struct pci_dev* dev,
2151 const struct pci_device_id* id)
2152{
2153 struct fb_info *info;
2154 struct savagefb_par *par;
2155 u_int h_sync, v_sync;
2156 int err, lpitch;
2157 int video_len;
2158
2159 DBG("savagefb_probe");
2160 SavagePrintRegs();
2161
2162 info = framebuffer_alloc(sizeof(struct savagefb_par), &dev->dev);
2163 if (!info)
2164 return -ENOMEM;
2165 par = info->par;
2166 err = pci_enable_device(dev);
2167 if (err)
2168 goto failed_enable;
2169
Olaf Hering6062bfa2005-09-09 13:04:55 -07002170 if ((err = pci_request_regions(dev, "savagefb"))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 printk(KERN_ERR "cannot request PCI regions\n");
2172 goto failed_enable;
2173 }
2174
2175 err = -ENOMEM;
2176
Olaf Hering6062bfa2005-09-09 13:04:55 -07002177 if ((err = savage_init_fb_info(info, dev, id)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 goto failed_init;
2179
2180 err = savage_map_mmio(info);
2181 if (err)
2182 goto failed_mmio;
2183
2184 video_len = savage_init_hw(par);
Olaf Hering6062bfa2005-09-09 13:04:55 -07002185 /* FIXME: cant be negative */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 if (video_len < 0) {
2187 err = video_len;
2188 goto failed_mmio;
2189 }
2190
2191 err = savage_map_video(info, video_len);
2192 if (err)
2193 goto failed_video;
2194
2195 INIT_LIST_HEAD(&info->modelist);
2196#if defined(CONFIG_FB_SAVAGE_I2C)
2197 savagefb_create_i2c_busses(info);
Antonino A. Daplas13776712005-09-09 13:04:35 -07002198 savagefb_probe_i2c_connector(info, &par->edid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 fb_edid_to_monspecs(par->edid, &info->monspecs);
Antonino A. Daplas8d57f222006-03-11 03:27:25 -08002200 kfree(par->edid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 fb_videomode_to_modelist(info->monspecs.modedb,
2202 info->monspecs.modedb_len,
2203 &info->modelist);
2204#endif
2205 info->var = savagefb_var800x600x8;
2206
2207 if (mode_option) {
2208 fb_find_mode(&info->var, info, mode_option,
2209 info->monspecs.modedb, info->monspecs.modedb_len,
2210 NULL, 8);
2211 } else if (info->monspecs.modedb != NULL) {
Antonino A. Daplas5ee1ef92005-11-07 01:00:55 -08002212 struct fb_videomode *modedb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Antonino A. Daplas5ee1ef92005-11-07 01:00:55 -08002214 modedb = fb_find_best_display(&info->monspecs,
2215 &info->modelist);
2216 savage_update_var(&info->var, modedb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 }
2218
2219 /* maximize virtual vertical length */
2220 lpitch = info->var.xres_virtual*((info->var.bits_per_pixel + 7) >> 3);
2221 info->var.yres_virtual = info->fix.smem_len/lpitch;
2222
2223 if (info->var.yres_virtual < info->var.yres)
2224 goto failed;
2225
2226#if defined(CONFIG_FB_SAVAGE_ACCEL)
2227 /*
2228 * The clipping coordinates are masked with 0xFFF, so limit our
2229 * virtual resolutions to these sizes.
2230 */
2231 if (info->var.yres_virtual > 0x1000)
2232 info->var.yres_virtual = 0x1000;
2233
2234 if (info->var.xres_virtual > 0x1000)
2235 info->var.xres_virtual = 0x1000;
2236#endif
2237 savagefb_check_var(&info->var, info);
2238 savagefb_set_fix(info);
2239
2240 /*
2241 * Calculate the hsync and vsync frequencies. Note that
2242 * we split the 1e12 constant up so that we can preserve
2243 * the precision and fit the results into 32-bit registers.
2244 * (1953125000 * 512 = 1e12)
2245 */
2246 h_sync = 1953125000 / info->var.pixclock;
2247 h_sync = h_sync * 512 / (info->var.xres + info->var.left_margin +
2248 info->var.right_margin +
2249 info->var.hsync_len);
2250 v_sync = h_sync / (info->var.yres + info->var.upper_margin +
2251 info->var.lower_margin + info->var.vsync_len);
2252
2253 printk(KERN_INFO "savagefb v" SAVAGEFB_VERSION ": "
2254 "%dkB VRAM, using %dx%d, %d.%03dkHz, %dHz\n",
2255 info->fix.smem_len >> 10,
2256 info->var.xres, info->var.yres,
2257 h_sync / 1000, h_sync % 1000, v_sync);
2258
2259
2260 fb_destroy_modedb(info->monspecs.modedb);
2261 info->monspecs.modedb = NULL;
2262
2263 err = register_framebuffer (info);
2264 if (err < 0)
2265 goto failed;
2266
2267 printk (KERN_INFO "fb: S3 %s frame buffer device\n",
2268 info->fix.id);
2269
2270 /*
2271 * Our driver data
2272 */
2273 pci_set_drvdata(dev, info);
2274
2275 return 0;
2276
2277 failed:
2278#ifdef CONFIG_FB_SAVAGE_I2C
2279 savagefb_delete_i2c_busses(info);
2280#endif
2281 fb_alloc_cmap (&info->cmap, 0, 0);
2282 savage_unmap_video(info);
2283 failed_video:
2284 savage_unmap_mmio (info);
2285 failed_mmio:
2286 kfree(info->pixmap.addr);
2287 failed_init:
2288 pci_release_regions(dev);
2289 failed_enable:
2290 framebuffer_release(info);
2291
2292 return err;
2293}
2294
2295static void __devexit savagefb_remove (struct pci_dev *dev)
2296{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08002297 struct fb_info *info = pci_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 DBG("savagefb_remove");
2300
2301 if (info) {
2302 /*
2303 * If unregister_framebuffer fails, then
2304 * we will be leaving hooks that could cause
2305 * oopsen laying around.
2306 */
2307 if (unregister_framebuffer (info))
2308 printk (KERN_WARNING "savagefb: danger danger! "
2309 "Oopsen imminent!\n");
2310
2311#ifdef CONFIG_FB_SAVAGE_I2C
2312 savagefb_delete_i2c_busses(info);
2313#endif
2314 fb_alloc_cmap (&info->cmap, 0, 0);
2315 savage_unmap_video (info);
2316 savage_unmap_mmio (info);
2317 kfree(info->pixmap.addr);
2318 pci_release_regions(dev);
2319 framebuffer_release(info);
2320
2321 /*
2322 * Ensure that the driver data is no longer
2323 * valid.
2324 */
2325 pci_set_drvdata(dev, NULL);
2326 }
2327}
2328
Pavel Machek9bfd3542005-04-16 15:25:36 -07002329static int savagefb_suspend (struct pci_dev* dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08002331 struct fb_info *info = pci_get_drvdata(dev);
2332 struct savagefb_par *par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
2334 DBG("savagefb_suspend");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Antonino A. Daplas13776712005-09-09 13:04:35 -07002337 par->pm_state = state.event;
2338
2339 /*
2340 * For PM_EVENT_FREEZE, do not power down so the console
2341 * can remain active.
2342 */
2343 if (state.event == PM_EVENT_FREEZE) {
2344 dev->dev.power.power_state = state;
2345 return 0;
2346 }
2347
2348 acquire_console_sem();
2349 fb_set_suspend(info, 1);
2350
2351 if (info->fbops->fb_sync)
2352 info->fbops->fb_sync(info);
2353
2354 savagefb_blank(FB_BLANK_POWERDOWN, info);
Antonino A. Daplasf8020dc2006-06-26 00:26:24 -07002355 savage_set_default_par(par, &par->save);
Antonino A. Daplas13776712005-09-09 13:04:35 -07002356 savage_disable_mmio(par);
2357 pci_save_state(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 pci_disable_device(dev);
Pavel Machek9bfd3542005-04-16 15:25:36 -07002359 pci_set_power_state(dev, pci_choose_state(dev, state));
Antonino A. Daplas13776712005-09-09 13:04:35 -07002360 release_console_sem();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
2362 return 0;
2363}
2364
2365static int savagefb_resume (struct pci_dev* dev)
2366{
Antonino A. Daplasb8901b02006-01-09 20:53:02 -08002367 struct fb_info *info = pci_get_drvdata(dev);
2368 struct savagefb_par *par = info->par;
Antonino A. Daplas13776712005-09-09 13:04:35 -07002369 int cur_state = par->pm_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
2371 DBG("savage_resume");
2372
Antonino A. Daplas13776712005-09-09 13:04:35 -07002373 par->pm_state = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Antonino A. Daplas13776712005-09-09 13:04:35 -07002375 /*
2376 * The adapter was not powered down coming back from a
2377 * PM_EVENT_FREEZE.
2378 */
2379 if (cur_state == PM_EVENT_FREEZE) {
2380 pci_set_power_state(dev, PCI_D0);
2381 return 0;
2382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 acquire_console_sem();
2385
Antonino A. Daplas13776712005-09-09 13:04:35 -07002386 pci_set_power_state(dev, PCI_D0);
2387 pci_restore_state(dev);
2388
2389 if(pci_enable_device(dev))
2390 DBG("err");
2391
2392 pci_set_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 savage_enable_mmio(par);
2394 savage_init_hw(par);
Antonino A. Daplasf8020dc2006-06-26 00:26:24 -07002395 savagefb_set_par(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 fb_set_suspend (info, 0);
Antonino A. Daplasf8020dc2006-06-26 00:26:24 -07002397 savagefb_blank(FB_BLANK_UNBLANK, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 release_console_sem();
2399
2400 return 0;
2401}
2402
2403
2404static struct pci_device_id savagefb_devices[] __devinitdata = {
2405 {PCI_VENDOR_ID_S3, PCI_CHIP_SUPSAV_MX128,
2406 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SUPERSAVAGE},
2407
2408 {PCI_VENDOR_ID_S3, PCI_CHIP_SUPSAV_MX64,
2409 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SUPERSAVAGE},
2410
2411 {PCI_VENDOR_ID_S3, PCI_CHIP_SUPSAV_MX64C,
2412 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SUPERSAVAGE},
2413
2414 {PCI_VENDOR_ID_S3, PCI_CHIP_SUPSAV_IX128SDR,
2415 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SUPERSAVAGE},
2416
2417 {PCI_VENDOR_ID_S3, PCI_CHIP_SUPSAV_IX128DDR,
2418 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SUPERSAVAGE},
2419
2420 {PCI_VENDOR_ID_S3, PCI_CHIP_SUPSAV_IX64SDR,
2421 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SUPERSAVAGE},
2422
2423 {PCI_VENDOR_ID_S3, PCI_CHIP_SUPSAV_IX64DDR,
2424 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SUPERSAVAGE},
2425
2426 {PCI_VENDOR_ID_S3, PCI_CHIP_SUPSAV_IXCSDR,
2427 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SUPERSAVAGE},
2428
2429 {PCI_VENDOR_ID_S3, PCI_CHIP_SUPSAV_IXCDDR,
2430 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SUPERSAVAGE},
2431
2432 {PCI_VENDOR_ID_S3, PCI_CHIP_SAVAGE4,
2433 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SAVAGE4},
2434
2435 {PCI_VENDOR_ID_S3, PCI_CHIP_SAVAGE3D,
2436 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SAVAGE3D},
2437
2438 {PCI_VENDOR_ID_S3, PCI_CHIP_SAVAGE3D_MV,
2439 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SAVAGE3D_MV},
2440
2441 {PCI_VENDOR_ID_S3, PCI_CHIP_SAVAGE2000,
2442 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SAVAGE2000},
2443
2444 {PCI_VENDOR_ID_S3, PCI_CHIP_SAVAGE_MX_MV,
2445 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SAVAGE_MX_MV},
2446
2447 {PCI_VENDOR_ID_S3, PCI_CHIP_SAVAGE_MX,
2448 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SAVAGE_MX},
2449
2450 {PCI_VENDOR_ID_S3, PCI_CHIP_SAVAGE_IX_MV,
2451 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SAVAGE_IX_MV},
2452
2453 {PCI_VENDOR_ID_S3, PCI_CHIP_SAVAGE_IX,
2454 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SAVAGE_IX},
2455
2456 {PCI_VENDOR_ID_S3, PCI_CHIP_PROSAVAGE_PM,
2457 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_PROSAVAGE_PM},
2458
2459 {PCI_VENDOR_ID_S3, PCI_CHIP_PROSAVAGE_KM,
2460 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_PROSAVAGE_KM},
2461
2462 {PCI_VENDOR_ID_S3, PCI_CHIP_S3TWISTER_P,
2463 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_S3TWISTER_P},
2464
2465 {PCI_VENDOR_ID_S3, PCI_CHIP_S3TWISTER_K,
2466 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_S3TWISTER_K},
2467
2468 {PCI_VENDOR_ID_S3, PCI_CHIP_PROSAVAGE_DDR,
2469 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_PROSAVAGE_DDR},
2470
2471 {PCI_VENDOR_ID_S3, PCI_CHIP_PROSAVAGE_DDRK,
2472 PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_PROSAVAGE_DDRK},
2473
2474 {0, 0, 0, 0, 0, 0, 0}
2475};
2476
2477MODULE_DEVICE_TABLE(pci, savagefb_devices);
2478
2479static struct pci_driver savagefb_driver = {
2480 .name = "savagefb",
2481 .id_table = savagefb_devices,
2482 .probe = savagefb_probe,
2483 .suspend = savagefb_suspend,
2484 .resume = savagefb_resume,
2485 .remove = __devexit_p(savagefb_remove)
2486};
2487
2488/* **************************** exit-time only **************************** */
2489
2490static void __exit savage_done (void)
2491{
2492 DBG("savage_done");
2493 pci_unregister_driver (&savagefb_driver);
2494}
2495
2496
2497/* ************************* init in-kernel code ************************** */
2498
2499static int __init savagefb_setup(char *options)
2500{
2501#ifndef MODULE
2502 char *this_opt;
2503
2504 if (!options || !*options)
2505 return 0;
2506
2507 while ((this_opt = strsep(&options, ",")) != NULL) {
2508 mode_option = this_opt;
2509 }
2510#endif /* !MODULE */
2511 return 0;
2512}
2513
2514static int __init savagefb_init(void)
2515{
2516 char *option;
2517
2518 DBG("savagefb_init");
2519
2520 if (fb_get_options("savagefb", &option))
2521 return -ENODEV;
2522
2523 savagefb_setup(option);
2524 return pci_register_driver (&savagefb_driver);
2525
2526}
2527
2528module_init(savagefb_init);
2529module_exit(savage_done);
Antonino A. Daplasc52890c2005-09-09 13:09:59 -07002530
2531module_param(mode_option, charp, 0);
2532MODULE_PARM_DESC(mode_option, "Specify initial video mode");