2 * linux/drivers/video/savagefb.c -- S3 Savage Framebuffer Driver
4 * Copyright (c) 2001-2002 Denis Oliver Kropp <dok@directfb.org>
5 * Sven Neumann <neo@directfb.org>
8 * Card specific code is based on XFree86's savage driver.
9 * Framebuffer framework code is based on code of cyber2000fb and tdfxfb.
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.
16 * - hardware accelerated clear and move
19 * - wait for vertical retrace before writing to cr67
20 * at the beginning of savagefb_set_par
21 * - use synchronization registers cr23 and cr26
25 * - don't return alpha bits for 32bit format
28 * - added WaitIdle functions for all Savage types
29 * - do WaitIdle before mode switching
33 * - first working version
37 * - clock validations in decode_var
40 * - white margin on bootup
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>
50 #include <linux/tty.h>
51 #include <linux/slab.h>
52 #include <linux/delay.h>
54 #include <linux/pci.h>
55 #include <linux/init.h>
56 #include <linux/console.h>
60 #include <asm/pgtable.h>
61 #include <asm/system.h>
62 #include <asm/uaccess.h>
71 #define SAVAGEFB_VERSION "0.4.0_2.6"
73 /* --------------------------------------------------------------------- */
76 static char *mode_option __devinitdata
= NULL
;
80 MODULE_AUTHOR("(c) 2001-2002 Denis Oliver Kropp <dok@directfb.org>");
81 MODULE_LICENSE("GPL");
82 MODULE_DESCRIPTION("FBDev driver for S3 Savage PCI/AGP Chips");
87 /* --------------------------------------------------------------------- */
89 static void vgaHWSeqReset (struct savagefb_par
*par
, int start
)
92 VGAwSEQ (0x00, 0x01, par
); /* Synchronous Reset */
94 VGAwSEQ (0x00, 0x03, par
); /* End Reset */
97 static void vgaHWProtect (struct savagefb_par
*par
, int on
)
103 * Turn off screen and disable sequencer.
105 tmp
= VGArSEQ (0x01, par
);
107 vgaHWSeqReset (par
, 1); /* start synchronous reset */
108 VGAwSEQ (0x01, tmp
| 0x20, par
);/* disable the display */
110 VGAenablePalette(par
);
113 * Reenable sequencer, then turn on screen.
116 tmp
= VGArSEQ (0x01, par
);
118 VGAwSEQ (0x01, tmp
& ~0x20, par
);/* reenable display */
119 vgaHWSeqReset (par
, 0); /* clear synchronous reset */
121 VGAdisablePalette(par
);
125 static void vgaHWRestore (struct savagefb_par
*par
)
129 VGAwMISC (par
->MiscOutReg
, par
);
131 for (i
= 1; i
< 5; i
++)
132 VGAwSEQ (i
, par
->Sequencer
[i
], par
);
134 /* Ensure CRTC registers 0-7 are unlocked by clearing bit 7 or
136 VGAwCR (17, par
->CRTC
[17] & ~0x80, par
);
138 for (i
= 0; i
< 25; i
++)
139 VGAwCR (i
, par
->CRTC
[i
], par
);
141 for (i
= 0; i
< 9; i
++)
142 VGAwGR (i
, par
->Graphics
[i
], par
);
144 VGAenablePalette(par
);
146 for (i
= 0; i
< 21; i
++)
147 VGAwATTR (i
, par
->Attribute
[i
], par
);
149 VGAdisablePalette(par
);
152 static void vgaHWInit (struct fb_var_screeninfo
*var
,
153 struct savagefb_par
*par
,
154 struct xtimings
*timings
)
156 par
->MiscOutReg
= 0x23;
158 if (!(timings
->sync
& FB_SYNC_HOR_HIGH_ACT
))
159 par
->MiscOutReg
|= 0x40;
161 if (!(timings
->sync
& FB_SYNC_VERT_HIGH_ACT
))
162 par
->MiscOutReg
|= 0x80;
167 par
->Sequencer
[0x00] = 0x00;
168 par
->Sequencer
[0x01] = 0x01;
169 par
->Sequencer
[0x02] = 0x0F;
170 par
->Sequencer
[0x03] = 0x00; /* Font select */
171 par
->Sequencer
[0x04] = 0x0E; /* Misc */
176 par
->CRTC
[0x00] = (timings
->HTotal
>> 3) - 5;
177 par
->CRTC
[0x01] = (timings
->HDisplay
>> 3) - 1;
178 par
->CRTC
[0x02] = (timings
->HSyncStart
>> 3) - 1;
179 par
->CRTC
[0x03] = (((timings
->HSyncEnd
>> 3) - 1) & 0x1f) | 0x80;
180 par
->CRTC
[0x04] = (timings
->HSyncStart
>> 3);
181 par
->CRTC
[0x05] = ((((timings
->HSyncEnd
>> 3) - 1) & 0x20) << 2) |
182 (((timings
->HSyncEnd
>> 3)) & 0x1f);
183 par
->CRTC
[0x06] = (timings
->VTotal
- 2) & 0xFF;
184 par
->CRTC
[0x07] = (((timings
->VTotal
- 2) & 0x100) >> 8) |
185 (((timings
->VDisplay
- 1) & 0x100) >> 7) |
186 ((timings
->VSyncStart
& 0x100) >> 6) |
187 (((timings
->VSyncStart
- 1) & 0x100) >> 5) |
189 (((timings
->VTotal
- 2) & 0x200) >> 4) |
190 (((timings
->VDisplay
- 1) & 0x200) >> 3) |
191 ((timings
->VSyncStart
& 0x200) >> 2);
192 par
->CRTC
[0x08] = 0x00;
193 par
->CRTC
[0x09] = (((timings
->VSyncStart
- 1) & 0x200) >> 4) | 0x40;
195 if (timings
->dblscan
)
196 par
->CRTC
[0x09] |= 0x80;
198 par
->CRTC
[0x0a] = 0x00;
199 par
->CRTC
[0x0b] = 0x00;
200 par
->CRTC
[0x0c] = 0x00;
201 par
->CRTC
[0x0d] = 0x00;
202 par
->CRTC
[0x0e] = 0x00;
203 par
->CRTC
[0x0f] = 0x00;
204 par
->CRTC
[0x10] = timings
->VSyncStart
& 0xff;
205 par
->CRTC
[0x11] = (timings
->VSyncEnd
& 0x0f) | 0x20;
206 par
->CRTC
[0x12] = (timings
->VDisplay
- 1) & 0xff;
207 par
->CRTC
[0x13] = var
->xres_virtual
>> 4;
208 par
->CRTC
[0x14] = 0x00;
209 par
->CRTC
[0x15] = (timings
->VSyncStart
- 1) & 0xff;
210 par
->CRTC
[0x16] = (timings
->VSyncEnd
- 1) & 0xff;
211 par
->CRTC
[0x17] = 0xc3;
212 par
->CRTC
[0x18] = 0xff;
215 * are these unnecessary?
216 * vgaHWHBlankKGA(mode, regp, 0, KGA_FIX_OVERSCAN|KGA_ENABLE_ON_ZERO);
217 * vgaHWVBlankKGA(mode, regp, 0, KGA_FIX_OVERSCAN|KGA_ENABLE_ON_ZERO);
221 * Graphics Display Controller
223 par
->Graphics
[0x00] = 0x00;
224 par
->Graphics
[0x01] = 0x00;
225 par
->Graphics
[0x02] = 0x00;
226 par
->Graphics
[0x03] = 0x00;
227 par
->Graphics
[0x04] = 0x00;
228 par
->Graphics
[0x05] = 0x40;
229 par
->Graphics
[0x06] = 0x05; /* only map 64k VGA memory !!!! */
230 par
->Graphics
[0x07] = 0x0F;
231 par
->Graphics
[0x08] = 0xFF;
234 par
->Attribute
[0x00] = 0x00; /* standard colormap translation */
235 par
->Attribute
[0x01] = 0x01;
236 par
->Attribute
[0x02] = 0x02;
237 par
->Attribute
[0x03] = 0x03;
238 par
->Attribute
[0x04] = 0x04;
239 par
->Attribute
[0x05] = 0x05;
240 par
->Attribute
[0x06] = 0x06;
241 par
->Attribute
[0x07] = 0x07;
242 par
->Attribute
[0x08] = 0x08;
243 par
->Attribute
[0x09] = 0x09;
244 par
->Attribute
[0x0a] = 0x0A;
245 par
->Attribute
[0x0b] = 0x0B;
246 par
->Attribute
[0x0c] = 0x0C;
247 par
->Attribute
[0x0d] = 0x0D;
248 par
->Attribute
[0x0e] = 0x0E;
249 par
->Attribute
[0x0f] = 0x0F;
250 par
->Attribute
[0x10] = 0x41;
251 par
->Attribute
[0x11] = 0xFF;
252 par
->Attribute
[0x12] = 0x0F;
253 par
->Attribute
[0x13] = 0x00;
254 par
->Attribute
[0x14] = 0x00;
257 /* -------------------- Hardware specific routines ------------------------- */
260 * Hardware Acceleration for SavageFB
263 /* Wait for fifo space */
265 savage3D_waitfifo(struct savagefb_par
*par
, int space
)
267 int slots
= MAXFIFO
- space
;
269 while ((savage_in32(0x48C00, par
) & 0x0000ffff) > slots
);
273 savage4_waitfifo(struct savagefb_par
*par
, int space
)
275 int slots
= MAXFIFO
- space
;
277 while ((savage_in32(0x48C60, par
) & 0x001fffff) > slots
);
281 savage2000_waitfifo(struct savagefb_par
*par
, int space
)
283 int slots
= MAXFIFO
- space
;
285 while ((savage_in32(0x48C60, par
) & 0x0000ffff) > slots
);
288 /* Wait for idle accelerator */
290 savage3D_waitidle(struct savagefb_par
*par
)
292 while ((savage_in32(0x48C00, par
) & 0x0008ffff) != 0x80000);
296 savage4_waitidle(struct savagefb_par
*par
)
298 while ((savage_in32(0x48C60, par
) & 0x00a00000) != 0x00a00000);
302 savage2000_waitidle(struct savagefb_par
*par
)
304 while ((savage_in32(0x48C60, par
) & 0x009fffff));
309 SavageSetup2DEngine (struct savagefb_par
*par
)
311 unsigned long GlobalBitmapDescriptor
;
313 GlobalBitmapDescriptor
= 1 | 8 | BCI_BD_BW_DISABLE
;
314 BCI_BD_SET_BPP (GlobalBitmapDescriptor
, par
->depth
);
315 BCI_BD_SET_STRIDE (GlobalBitmapDescriptor
, par
->vwidth
);
321 savage_out32(0x48C18, savage_in32(0x48C18, par
) & 0x3FF0, par
);
322 /* Setup BCI command overflow buffer */
323 savage_out32(0x48C14,
324 (par
->cob_offset
>> 11) | (par
->cob_index
<< 29),
326 /* Program shadow status update. */
327 savage_out32(0x48C10, 0x78207220, par
);
328 savage_out32(0x48C0C, 0, par
);
329 /* Enable BCI and command overflow buffer */
330 savage_out32(0x48C18, savage_in32(0x48C18, par
) | 0x0C, par
);
336 savage_out32(0x48C18, savage_in32(0x48C18, par
) & 0x3FF0, par
);
337 /* Program shadow status update */
338 savage_out32(0x48C10, 0x00700040, par
);
339 savage_out32(0x48C0C, 0, par
);
340 /* Enable BCI without the COB */
341 savage_out32(0x48C18, savage_in32(0x48C18, par
) | 0x08, par
);
345 savage_out32(0x48C18, 0, par
);
346 /* Setup BCI command overflow buffer */
347 savage_out32(0x48C18,
348 (par
->cob_offset
>> 7) | (par
->cob_index
),
350 /* Disable shadow status update */
351 savage_out32(0x48A30, 0, par
);
352 /* Enable BCI and command overflow buffer */
353 savage_out32(0x48C18, savage_in32(0x48C18, par
) | 0x00280000,
359 /* Turn on 16-bit register access. */
360 vga_out8(0x3d4, 0x31, par
);
361 vga_out8(0x3d5, 0x0c, par
);
363 /* Set stride to use GBD. */
364 vga_out8 (0x3d4, 0x50, par
);
365 vga_out8 (0x3d5, vga_in8(0x3d5, par
) | 0xC1, par
);
367 /* Enable 2D engine. */
368 vga_out8 (0x3d4, 0x40, par
);
369 vga_out8 (0x3d5, 0x01, par
);
371 savage_out32 (MONO_PAT_0
, ~0, par
);
372 savage_out32 (MONO_PAT_1
, ~0, par
);
374 /* Setup plane masks */
375 savage_out32 (0x8128, ~0, par
); /* enable all write planes */
376 savage_out32 (0x812C, ~0, par
); /* enable all read planes */
377 savage_out16 (0x8134, 0x27, par
);
378 savage_out16 (0x8136, 0x07, par
);
380 /* Now set the GBD */
382 par
->SavageWaitFifo (par
, 4);
384 BCI_SEND( BCI_CMD_SETREG
| (1 << 16) | BCI_GBD1
);
386 BCI_SEND( BCI_CMD_SETREG
| (1 << 16) | BCI_GBD2
);
387 BCI_SEND( GlobalBitmapDescriptor
);
391 static void SavageCalcClock(long freq
, int min_m
, int min_n1
, int max_n1
,
392 int min_n2
, int max_n2
, long freq_min
,
393 long freq_max
, unsigned int *mdiv
,
394 unsigned int *ndiv
, unsigned int *r
)
396 long diff
, best_diff
;
398 unsigned char n1
, n2
, best_n1
=16+2, best_n2
=2, best_m
=125+2;
400 if (freq
< freq_min
/ (1 << max_n2
)) {
401 printk (KERN_ERR
"invalid frequency %ld Khz\n", freq
);
402 freq
= freq_min
/ (1 << max_n2
);
404 if (freq
> freq_max
/ (1 << min_n2
)) {
405 printk (KERN_ERR
"invalid frequency %ld Khz\n", freq
);
406 freq
= freq_max
/ (1 << min_n2
);
409 /* work out suitable timings */
412 for (n2
=min_n2
; n2
<=max_n2
; n2
++) {
413 for (n1
=min_n1
+2; n1
<=max_n1
+2; n1
++) {
414 m
= (freq
* n1
* (1 << n2
) + HALF_BASE_FREQ
) /
416 if (m
< min_m
+2 || m
> 127+2)
418 if ((m
* BASE_FREQ
>= freq_min
* n1
) &&
419 (m
* BASE_FREQ
<= freq_max
* n1
)) {
420 diff
= freq
* (1 << n2
) * n1
- BASE_FREQ
* m
;
423 if (diff
< best_diff
) {
438 static int common_calc_clock(long freq
, int min_m
, int min_n1
, int max_n1
,
439 int min_n2
, int max_n2
, long freq_min
,
440 long freq_max
, unsigned char *mdiv
,
443 long diff
, best_diff
;
445 unsigned char n1
, n2
;
446 unsigned char best_n1
= 16+2, best_n2
= 2, best_m
= 125+2;
450 for (n2
= min_n2
; n2
<= max_n2
; n2
++) {
451 for (n1
= min_n1
+2; n1
<= max_n1
+2; n1
++) {
452 m
= (freq
* n1
* (1 << n2
) + HALF_BASE_FREQ
) /
454 if (m
< min_m
+ 2 || m
> 127+2)
456 if((m
* BASE_FREQ
>= freq_min
* n1
) &&
457 (m
* BASE_FREQ
<= freq_max
* n1
)) {
458 diff
= freq
* (1 << n2
) * n1
- BASE_FREQ
* m
;
461 if(diff
< best_diff
) {
472 *ndiv
= (best_n1
- 2) | (best_n2
<< 6);
474 *ndiv
= (best_n1
- 2) | (best_n2
<< 5);
481 #ifdef SAVAGEFB_DEBUG
482 /* This function is used to debug, it prints out the contents of s3 regs */
484 static void SavagePrintRegs(void)
487 int vgaCRIndex
= 0x3d4;
488 int vgaCRReg
= 0x3d5;
490 printk(KERN_DEBUG
"SR x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE "
493 for( i
= 0; i
< 0x70; i
++ ) {
495 printk(KERN_DEBUG
"\nSR%xx ", i
>> 4 );
496 vga_out8( 0x3c4, i
, par
);
497 printk(KERN_DEBUG
" %02x", vga_in8(0x3c5, par
) );
500 printk(KERN_DEBUG
"\n\nCR x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC "
503 for( i
= 0; i
< 0xB7; i
++ ) {
505 printk(KERN_DEBUG
"\nCR%xx ", i
>> 4 );
506 vga_out8( vgaCRIndex
, i
, par
);
507 printk(KERN_DEBUG
" %02x", vga_in8(vgaCRReg
, par
) );
510 printk(KERN_DEBUG
"\n\n");
514 /* --------------------------------------------------------------------- */
516 static void savage_get_default_par(struct savagefb_par
*par
)
518 unsigned char cr3a
, cr53
, cr66
;
520 vga_out16 (0x3d4, 0x4838, par
);
521 vga_out16 (0x3d4, 0xa039, par
);
522 vga_out16 (0x3c4, 0x0608, par
);
524 vga_out8 (0x3d4, 0x66, par
);
525 cr66
= vga_in8 (0x3d5, par
);
526 vga_out8 (0x3d5, cr66
| 0x80, par
);
527 vga_out8 (0x3d4, 0x3a, par
);
528 cr3a
= vga_in8 (0x3d5, par
);
529 vga_out8 (0x3d5, cr3a
| 0x80, par
);
530 vga_out8 (0x3d4, 0x53, par
);
531 cr53
= vga_in8 (0x3d5, par
);
532 vga_out8 (0x3d5, cr53
& 0x7f, par
);
534 vga_out8 (0x3d4, 0x66, par
);
535 vga_out8 (0x3d5, cr66
, par
);
536 vga_out8 (0x3d4, 0x3a, par
);
537 vga_out8 (0x3d5, cr3a
, par
);
539 vga_out8 (0x3d4, 0x66, par
);
540 vga_out8 (0x3d5, cr66
, par
);
541 vga_out8 (0x3d4, 0x3a, par
);
542 vga_out8 (0x3d5, cr3a
, par
);
544 /* unlock extended seq regs */
545 vga_out8 (0x3c4, 0x08, par
);
546 par
->SR08
= vga_in8 (0x3c5, par
);
547 vga_out8 (0x3c5, 0x06, par
);
549 /* now save all the extended regs we need */
550 vga_out8 (0x3d4, 0x31, par
);
551 par
->CR31
= vga_in8 (0x3d5, par
);
552 vga_out8 (0x3d4, 0x32, par
);
553 par
->CR32
= vga_in8 (0x3d5, par
);
554 vga_out8 (0x3d4, 0x34, par
);
555 par
->CR34
= vga_in8 (0x3d5, par
);
556 vga_out8 (0x3d4, 0x36, par
);
557 par
->CR36
= vga_in8 (0x3d5, par
);
558 vga_out8 (0x3d4, 0x3a, par
);
559 par
->CR3A
= vga_in8 (0x3d5, par
);
560 vga_out8 (0x3d4, 0x40, par
);
561 par
->CR40
= vga_in8 (0x3d5, par
);
562 vga_out8 (0x3d4, 0x42, par
);
563 par
->CR42
= vga_in8 (0x3d5, par
);
564 vga_out8 (0x3d4, 0x45, par
);
565 par
->CR45
= vga_in8 (0x3d5, par
);
566 vga_out8 (0x3d4, 0x50, par
);
567 par
->CR50
= vga_in8 (0x3d5, par
);
568 vga_out8 (0x3d4, 0x51, par
);
569 par
->CR51
= vga_in8 (0x3d5, par
);
570 vga_out8 (0x3d4, 0x53, par
);
571 par
->CR53
= vga_in8 (0x3d5, par
);
572 vga_out8 (0x3d4, 0x58, par
);
573 par
->CR58
= vga_in8 (0x3d5, par
);
574 vga_out8 (0x3d4, 0x60, par
);
575 par
->CR60
= vga_in8 (0x3d5, par
);
576 vga_out8 (0x3d4, 0x66, par
);
577 par
->CR66
= vga_in8 (0x3d5, par
);
578 vga_out8 (0x3d4, 0x67, par
);
579 par
->CR67
= vga_in8 (0x3d5, par
);
580 vga_out8 (0x3d4, 0x68, par
);
581 par
->CR68
= vga_in8 (0x3d5, par
);
582 vga_out8 (0x3d4, 0x69, par
);
583 par
->CR69
= vga_in8 (0x3d5, par
);
584 vga_out8 (0x3d4, 0x6f, par
);
585 par
->CR6F
= vga_in8 (0x3d5, par
);
587 vga_out8 (0x3d4, 0x33, par
);
588 par
->CR33
= vga_in8 (0x3d5, par
);
589 vga_out8 (0x3d4, 0x86, par
);
590 par
->CR86
= vga_in8 (0x3d5, par
);
591 vga_out8 (0x3d4, 0x88, par
);
592 par
->CR88
= vga_in8 (0x3d5, par
);
593 vga_out8 (0x3d4, 0x90, par
);
594 par
->CR90
= vga_in8 (0x3d5, par
);
595 vga_out8 (0x3d4, 0x91, par
);
596 par
->CR91
= vga_in8 (0x3d5, par
);
597 vga_out8 (0x3d4, 0xb0, par
);
598 par
->CRB0
= vga_in8 (0x3d5, par
) | 0x80;
600 /* extended mode timing regs */
601 vga_out8 (0x3d4, 0x3b, par
);
602 par
->CR3B
= vga_in8 (0x3d5, par
);
603 vga_out8 (0x3d4, 0x3c, par
);
604 par
->CR3C
= vga_in8 (0x3d5, par
);
605 vga_out8 (0x3d4, 0x43, par
);
606 par
->CR43
= vga_in8 (0x3d5, par
);
607 vga_out8 (0x3d4, 0x5d, par
);
608 par
->CR5D
= vga_in8 (0x3d5, par
);
609 vga_out8 (0x3d4, 0x5e, par
);
610 par
->CR5E
= vga_in8 (0x3d5, par
);
611 vga_out8 (0x3d4, 0x65, par
);
612 par
->CR65
= vga_in8 (0x3d5, par
);
614 /* save seq extended regs for DCLK PLL programming */
615 vga_out8 (0x3c4, 0x0e, par
);
616 par
->SR0E
= vga_in8 (0x3c5, par
);
617 vga_out8 (0x3c4, 0x0f, par
);
618 par
->SR0F
= vga_in8 (0x3c5, par
);
619 vga_out8 (0x3c4, 0x10, par
);
620 par
->SR10
= vga_in8 (0x3c5, par
);
621 vga_out8 (0x3c4, 0x11, par
);
622 par
->SR11
= vga_in8 (0x3c5, par
);
623 vga_out8 (0x3c4, 0x12, par
);
624 par
->SR12
= vga_in8 (0x3c5, par
);
625 vga_out8 (0x3c4, 0x13, par
);
626 par
->SR13
= vga_in8 (0x3c5, par
);
627 vga_out8 (0x3c4, 0x29, par
);
628 par
->SR29
= vga_in8 (0x3c5, par
);
630 vga_out8 (0x3c4, 0x15, par
);
631 par
->SR15
= vga_in8 (0x3c5, par
);
632 vga_out8 (0x3c4, 0x30, par
);
633 par
->SR30
= vga_in8 (0x3c5, par
);
634 vga_out8 (0x3c4, 0x18, par
);
635 par
->SR18
= vga_in8 (0x3c5, par
);
637 /* Save flat panel expansion regsters. */
638 if (par
->chip
== S3_SAVAGE_MX
) {
641 for (i
= 0; i
< 8; i
++) {
642 vga_out8 (0x3c4, 0x54+i
, par
);
643 par
->SR54
[i
] = vga_in8 (0x3c5, par
);
647 vga_out8 (0x3d4, 0x66, par
);
648 cr66
= vga_in8 (0x3d5, par
);
649 vga_out8 (0x3d5, cr66
| 0x80, par
);
650 vga_out8 (0x3d4, 0x3a, par
);
651 cr3a
= vga_in8 (0x3d5, par
);
652 vga_out8 (0x3d5, cr3a
| 0x80, par
);
654 /* now save MIU regs */
655 if (par
->chip
!= S3_SAVAGE_MX
) {
656 par
->MMPR0
= savage_in32(FIFO_CONTROL_REG
, par
);
657 par
->MMPR1
= savage_in32(MIU_CONTROL_REG
, par
);
658 par
->MMPR2
= savage_in32(STREAMS_TIMEOUT_REG
, par
);
659 par
->MMPR3
= savage_in32(MISC_TIMEOUT_REG
, par
);
662 vga_out8 (0x3d4, 0x3a, par
);
663 vga_out8 (0x3d5, cr3a
, par
);
664 vga_out8 (0x3d4, 0x66, par
);
665 vga_out8 (0x3d5, cr66
, par
);
668 static void savage_update_var(struct fb_var_screeninfo
*var
, struct fb_videomode
*modedb
)
670 var
->xres
= var
->xres_virtual
= modedb
->xres
;
671 var
->yres
= modedb
->yres
;
672 if (var
->yres_virtual
< var
->yres
)
673 var
->yres_virtual
= var
->yres
;
674 var
->xoffset
= var
->yoffset
= 0;
675 var
->pixclock
= modedb
->pixclock
;
676 var
->left_margin
= modedb
->left_margin
;
677 var
->right_margin
= modedb
->right_margin
;
678 var
->upper_margin
= modedb
->upper_margin
;
679 var
->lower_margin
= modedb
->lower_margin
;
680 var
->hsync_len
= modedb
->hsync_len
;
681 var
->vsync_len
= modedb
->vsync_len
;
682 var
->sync
= modedb
->sync
;
683 var
->vmode
= modedb
->vmode
;
686 static int savagefb_check_var (struct fb_var_screeninfo
*var
,
687 struct fb_info
*info
)
689 struct savagefb_par
*par
= info
->par
;
690 int memlen
, vramlen
, mode_valid
= 0;
692 DBG("savagefb_check_var");
694 var
->transp
.offset
= 0;
695 var
->transp
.length
= 0;
696 switch (var
->bits_per_pixel
) {
698 var
->red
.offset
= var
->green
.offset
=
699 var
->blue
.offset
= 0;
700 var
->red
.length
= var
->green
.length
=
701 var
->blue
.length
= var
->bits_per_pixel
;
704 var
->red
.offset
= 11;
706 var
->green
.offset
= 5;
707 var
->green
.length
= 6;
708 var
->blue
.offset
= 0;
709 var
->blue
.length
= 5;
712 var
->transp
.offset
= 24;
713 var
->transp
.length
= 8;
714 var
->red
.offset
= 16;
716 var
->green
.offset
= 8;
717 var
->green
.length
= 8;
718 var
->blue
.offset
= 0;
719 var
->blue
.length
= 8;
726 if (!info
->monspecs
.hfmax
|| !info
->monspecs
.vfmax
||
727 !info
->monspecs
.dclkmax
|| !fb_validate_mode(var
, info
))
730 /* calculate modeline if supported by monitor */
731 if (!mode_valid
&& info
->monspecs
.gtf
) {
732 if (!fb_get_mode(FB_MAXTIMINGS
, 0, var
, info
))
737 struct fb_videomode
*mode
;
739 mode
= fb_find_best_mode(var
, &info
->modelist
);
741 savage_update_var(var
, mode
);
746 if (!mode_valid
&& info
->monspecs
.modedb_len
)
749 /* Is the mode larger than the LCD panel? */
750 if (par
->SavagePanelWidth
&&
751 (var
->xres
> par
->SavagePanelWidth
||
752 var
->yres
> par
->SavagePanelHeight
)) {
753 printk (KERN_INFO
"Mode (%dx%d) larger than the LCD panel "
754 "(%dx%d)\n", var
->xres
, var
->yres
,
755 par
->SavagePanelWidth
,
756 par
->SavagePanelHeight
);
760 if (var
->yres_virtual
< var
->yres
)
761 var
->yres_virtual
= var
->yres
;
762 if (var
->xres_virtual
< var
->xres
)
763 var
->xres_virtual
= var
->xres
;
765 vramlen
= info
->fix
.smem_len
;
767 memlen
= var
->xres_virtual
* var
->bits_per_pixel
*
768 var
->yres_virtual
/ 8;
769 if (memlen
> vramlen
) {
770 var
->yres_virtual
= vramlen
* 8 /
771 (var
->xres_virtual
* var
->bits_per_pixel
);
772 memlen
= var
->xres_virtual
* var
->bits_per_pixel
*
773 var
->yres_virtual
/ 8;
776 /* we must round yres/xres down, we already rounded y/xres_virtual up
777 if it was possible. We should return -EINVAL, but I disagree */
778 if (var
->yres_virtual
< var
->yres
)
779 var
->yres
= var
->yres_virtual
;
780 if (var
->xres_virtual
< var
->xres
)
781 var
->xres
= var
->xres_virtual
;
782 if (var
->xoffset
+ var
->xres
> var
->xres_virtual
)
783 var
->xoffset
= var
->xres_virtual
- var
->xres
;
784 if (var
->yoffset
+ var
->yres
> var
->yres_virtual
)
785 var
->yoffset
= var
->yres_virtual
- var
->yres
;
791 static int savagefb_decode_var (struct fb_var_screeninfo
*var
,
792 struct savagefb_par
*par
)
794 struct xtimings timings
;
795 int width
, dclk
, i
, j
; /*, refresh; */
796 unsigned int m
, n
, r
;
797 unsigned char tmp
= 0;
798 unsigned int pixclock
= var
->pixclock
;
800 DBG("savagefb_decode_var");
802 memset (&timings
, 0, sizeof(timings
));
804 if (!pixclock
) pixclock
= 10000; /* 10ns = 100MHz */
805 timings
.Clock
= 1000000000 / pixclock
;
806 if (timings
.Clock
< 1) timings
.Clock
= 1;
807 timings
.dblscan
= var
->vmode
& FB_VMODE_DOUBLE
;
808 timings
.interlaced
= var
->vmode
& FB_VMODE_INTERLACED
;
809 timings
.HDisplay
= var
->xres
;
810 timings
.HSyncStart
= timings
.HDisplay
+ var
->right_margin
;
811 timings
.HSyncEnd
= timings
.HSyncStart
+ var
->hsync_len
;
812 timings
.HTotal
= timings
.HSyncEnd
+ var
->left_margin
;
813 timings
.VDisplay
= var
->yres
;
814 timings
.VSyncStart
= timings
.VDisplay
+ var
->lower_margin
;
815 timings
.VSyncEnd
= timings
.VSyncStart
+ var
->vsync_len
;
816 timings
.VTotal
= timings
.VSyncEnd
+ var
->upper_margin
;
817 timings
.sync
= var
->sync
;
820 par
->depth
= var
->bits_per_pixel
;
821 par
->vwidth
= var
->xres_virtual
;
823 if (var
->bits_per_pixel
== 16 && par
->chip
== S3_SAVAGE3D
) {
824 timings
.HDisplay
*= 2;
825 timings
.HSyncStart
*= 2;
826 timings
.HSyncEnd
*= 2;
831 * This will allocate the datastructure and initialize all of the
832 * generic VGA registers.
834 vgaHWInit (var
, par
, &timings
);
836 /* We need to set CR67 whether or not we use the BIOS. */
838 dclk
= timings
.Clock
;
841 switch( var
->bits_per_pixel
) {
843 if( (par
->chip
== S3_SAVAGE2000
) && (dclk
>= 230000) )
844 par
->CR67
= 0x10; /* 8bpp, 2 pixels/clock */
846 par
->CR67
= 0x00; /* 8bpp, 1 pixel/clock */
849 if ( S3_SAVAGE_MOBILE_SERIES(par
->chip
) ||
850 ((par
->chip
== S3_SAVAGE2000
) && (dclk
>= 230000)) )
851 par
->CR67
= 0x30; /* 15bpp, 2 pixel/clock */
853 par
->CR67
= 0x20; /* 15bpp, 1 pixels/clock */
856 if( S3_SAVAGE_MOBILE_SERIES(par
->chip
) ||
857 ((par
->chip
== S3_SAVAGE2000
) && (dclk
>= 230000)) )
858 par
->CR67
= 0x50; /* 16bpp, 2 pixel/clock */
860 par
->CR67
= 0x40; /* 16bpp, 1 pixels/clock */
871 * Either BIOS use is disabled, or we failed to find a suitable
872 * match. Fall back to traditional register-crunching.
875 vga_out8 (0x3d4, 0x3a, par
);
876 tmp
= vga_in8 (0x3d5, par
);
877 if (1 /*FIXME:psav->pci_burst*/)
878 par
->CR3A
= (tmp
& 0x7f) | 0x15;
880 par
->CR3A
= tmp
| 0x95;
886 vga_out8 (0x3d4, 0x58, par
);
887 par
->CR58
= vga_in8 (0x3d5, par
) & 0x80;
890 par
->SR15
= 0x03 | 0x80;
892 par
->CR43
= par
->CR45
= par
->CR65
= 0x00;
894 vga_out8 (0x3d4, 0x40, par
);
895 par
->CR40
= vga_in8 (0x3d5, par
) & ~0x01;
897 par
->MMPR0
= 0x010400;
900 par
->MMPR3
= 0x08080810;
902 SavageCalcClock (dclk
, 1, 1, 127, 0, 4, 180000, 360000, &m
, &n
, &r
);
903 /* m = 107; n = 4; r = 2; */
905 if (par
->MCLK
<= 0) {
909 common_calc_clock (par
->MCLK
, 1, 1, 31, 0, 3, 135000, 270000,
910 &par
->SR11
, &par
->SR10
);
911 /* par->SR10 = 80; // MCLK == 286000 */
912 /* par->SR11 = 125; */
915 par
->SR12
= (r
<< 6) | (n
& 0x3f);
916 par
->SR13
= m
& 0xff;
917 par
->SR29
= (r
& 4) | (m
& 0x100) >> 5 | (n
& 0x40) >> 2;
919 if (var
->bits_per_pixel
< 24)
920 par
->MMPR0
-= 0x8000;
922 par
->MMPR0
-= 0x4000;
924 if (timings
.interlaced
)
929 par
->CR34
= 0x10; /* display fifo */
931 i
= ((((timings
.HTotal
>> 3) - 5) & 0x100) >> 8) |
932 ((((timings
.HDisplay
>> 3) - 1) & 0x100) >> 7) |
933 ((((timings
.HSyncStart
>> 3) - 1) & 0x100) >> 6) |
934 ((timings
.HSyncStart
& 0x800) >> 7);
936 if ((timings
.HSyncEnd
>> 3) - (timings
.HSyncStart
>> 3) > 64)
938 if ((timings
.HSyncEnd
>> 3) - (timings
.HSyncStart
>> 3) > 32)
941 j
= (par
->CRTC
[0] + ((i
& 0x01) << 8) +
942 par
->CRTC
[4] + ((i
& 0x10) << 4) + 1) / 2;
944 if (j
- (par
->CRTC
[4] + ((i
& 0x10) << 4)) < 4) {
945 if (par
->CRTC
[4] + ((i
& 0x10) << 4) + 4 <=
946 par
->CRTC
[0] + ((i
& 0x01) << 8))
947 j
= par
->CRTC
[4] + ((i
& 0x10) << 4) + 4;
949 j
= par
->CRTC
[0] + ((i
& 0x01) << 8) + 1;
952 par
->CR3B
= j
& 0xff;
953 i
|= (j
& 0x100) >> 2;
954 par
->CR3C
= (par
->CRTC
[0] + ((i
& 0x01) << 8)) / 2;
956 par
->CR5E
= (((timings
.VTotal
- 2) & 0x400) >> 10) |
957 (((timings
.VDisplay
- 1) & 0x400) >> 9) |
958 (((timings
.VSyncStart
) & 0x400) >> 8) |
959 (((timings
.VSyncStart
) & 0x400) >> 6) | 0x40;
960 width
= (var
->xres_virtual
* ((var
->bits_per_pixel
+7) / 8)) >> 3;
961 par
->CR91
= par
->CRTC
[19] = 0xff & width
;
962 par
->CR51
= (0x300 & width
) >> 4;
963 par
->CR90
= 0x80 | (width
>> 8);
964 par
->MiscOutReg
|= 0x0c;
966 /* Set frame buffer description. */
968 if (var
->bits_per_pixel
<= 8)
970 else if (var
->bits_per_pixel
<= 16)
975 if (var
->xres_virtual
<= 640)
977 else if (var
->xres_virtual
== 800)
979 else if (var
->xres_virtual
== 1024)
981 else if (var
->xres_virtual
== 1152)
983 else if (var
->xres_virtual
== 1280)
985 else if (var
->xres_virtual
== 1600)
988 par
->CR50
|= 0xc1; /* Use GBD */
990 if( par
->chip
== S3_SAVAGE2000
)
995 par
->CRTC
[0x17] = 0xeb;
999 vga_out8(0x3d4, 0x36, par
);
1000 par
->CR36
= vga_in8 (0x3d5, par
);
1001 vga_out8 (0x3d4, 0x68, par
);
1002 par
->CR68
= vga_in8 (0x3d5, par
);
1004 vga_out8 (0x3d4, 0x6f, par
);
1005 par
->CR6F
= vga_in8 (0x3d5, par
);
1006 vga_out8 (0x3d4, 0x86, par
);
1007 par
->CR86
= vga_in8 (0x3d5, par
);
1008 vga_out8 (0x3d4, 0x88, par
);
1009 par
->CR88
= vga_in8 (0x3d5, par
) | 0x08;
1010 vga_out8 (0x3d4, 0xb0, par
);
1011 par
->CRB0
= vga_in8 (0x3d5, par
) | 0x80;
1016 /* --------------------------------------------------------------------- */
1019 * Set a single color register. Return != 0 for invalid regno.
1021 static int savagefb_setcolreg(unsigned regno
,
1026 struct fb_info
*info
)
1028 struct savagefb_par
*par
= info
->par
;
1030 if (regno
>= NR_PALETTE
)
1033 par
->palette
[regno
].red
= red
;
1034 par
->palette
[regno
].green
= green
;
1035 par
->palette
[regno
].blue
= blue
;
1036 par
->palette
[regno
].transp
= transp
;
1038 switch (info
->var
.bits_per_pixel
) {
1040 vga_out8 (0x3c8, regno
, par
);
1042 vga_out8 (0x3c9, red
>> 10, par
);
1043 vga_out8 (0x3c9, green
>> 10, par
);
1044 vga_out8 (0x3c9, blue
>> 10, par
);
1049 ((u32
*)info
->pseudo_palette
)[regno
] =
1051 ((green
& 0xfc00) >> 5) |
1052 ((blue
& 0xf800) >> 11);
1057 ((u32
*)info
->pseudo_palette
)[regno
] =
1058 ((red
& 0xff00) << 8) |
1059 ((green
& 0xff00) ) |
1060 ((blue
& 0xff00) >> 8);
1064 ((u32
*)info
->pseudo_palette
)[regno
] =
1065 ((transp
& 0xff00) << 16) |
1066 ((red
& 0xff00) << 8) |
1067 ((green
& 0xff00) ) |
1068 ((blue
& 0xff00) >> 8);
1078 static void savagefb_set_par_int (struct savagefb_par
*par
)
1080 unsigned char tmp
, cr3a
, cr66
, cr67
;
1082 DBG ("savagefb_set_par_int");
1084 par
->SavageWaitIdle (par
);
1086 vga_out8 (0x3c2, 0x23, par
);
1088 vga_out16 (0x3d4, 0x4838, par
);
1089 vga_out16 (0x3d4, 0xa539, par
);
1090 vga_out16 (0x3c4, 0x0608, par
);
1092 vgaHWProtect (par
, 1);
1095 * Some Savage/MX and /IX systems go nuts when trying to exit the
1096 * server after WindowMaker has displayed a gradient background. I
1097 * haven't been able to find what causes it, but a non-destructive
1098 * switch to mode 3 here seems to eliminate the issue.
1101 VerticalRetraceWait(par
);
1102 vga_out8 (0x3d4, 0x67, par
);
1103 cr67
= vga_in8 (0x3d5, par
);
1104 vga_out8 (0x3d5, cr67
/*par->CR67*/ & ~0x0c, par
); /* no STREAMS yet */
1106 vga_out8 (0x3d4, 0x23, par
);
1107 vga_out8 (0x3d5, 0x00, par
);
1108 vga_out8 (0x3d4, 0x26, par
);
1109 vga_out8 (0x3d5, 0x00, par
);
1111 /* restore extended regs */
1112 vga_out8 (0x3d4, 0x66, par
);
1113 vga_out8 (0x3d5, par
->CR66
, par
);
1114 vga_out8 (0x3d4, 0x3a, par
);
1115 vga_out8 (0x3d5, par
->CR3A
, par
);
1116 vga_out8 (0x3d4, 0x31, par
);
1117 vga_out8 (0x3d5, par
->CR31
, par
);
1118 vga_out8 (0x3d4, 0x32, par
);
1119 vga_out8 (0x3d5, par
->CR32
, par
);
1120 vga_out8 (0x3d4, 0x58, par
);
1121 vga_out8 (0x3d5, par
->CR58
, par
);
1122 vga_out8 (0x3d4, 0x53, par
);
1123 vga_out8 (0x3d5, par
->CR53
& 0x7f, par
);
1125 vga_out16 (0x3c4, 0x0608, par
);
1127 /* Restore DCLK registers. */
1129 vga_out8 (0x3c4, 0x0e, par
);
1130 vga_out8 (0x3c5, par
->SR0E
, par
);
1131 vga_out8 (0x3c4, 0x0f, par
);
1132 vga_out8 (0x3c5, par
->SR0F
, par
);
1133 vga_out8 (0x3c4, 0x29, par
);
1134 vga_out8 (0x3c5, par
->SR29
, par
);
1135 vga_out8 (0x3c4, 0x15, par
);
1136 vga_out8 (0x3c5, par
->SR15
, par
);
1138 /* Restore flat panel expansion regsters. */
1139 if( par
->chip
== S3_SAVAGE_MX
) {
1142 for( i
= 0; i
< 8; i
++ ) {
1143 vga_out8 (0x3c4, 0x54+i
, par
);
1144 vga_out8 (0x3c5, par
->SR54
[i
], par
);
1150 /* extended mode timing registers */
1151 vga_out8 (0x3d4, 0x53, par
);
1152 vga_out8 (0x3d5, par
->CR53
, par
);
1153 vga_out8 (0x3d4, 0x5d, par
);
1154 vga_out8 (0x3d5, par
->CR5D
, par
);
1155 vga_out8 (0x3d4, 0x5e, par
);
1156 vga_out8 (0x3d5, par
->CR5E
, par
);
1157 vga_out8 (0x3d4, 0x3b, par
);
1158 vga_out8 (0x3d5, par
->CR3B
, par
);
1159 vga_out8 (0x3d4, 0x3c, par
);
1160 vga_out8 (0x3d5, par
->CR3C
, par
);
1161 vga_out8 (0x3d4, 0x43, par
);
1162 vga_out8 (0x3d5, par
->CR43
, par
);
1163 vga_out8 (0x3d4, 0x65, par
);
1164 vga_out8 (0x3d5, par
->CR65
, par
);
1166 /* restore the desired video mode with cr67 */
1167 vga_out8 (0x3d4, 0x67, par
);
1168 /* following part not present in X11 driver */
1169 cr67
= vga_in8 (0x3d5, par
) & 0xf;
1170 vga_out8 (0x3d5, 0x50 | cr67
, par
);
1172 vga_out8 (0x3d4, 0x67, par
);
1174 vga_out8 (0x3d5, par
->CR67
& ~0x0c, par
);
1176 /* other mode timing and extended regs */
1177 vga_out8 (0x3d4, 0x34, par
);
1178 vga_out8 (0x3d5, par
->CR34
, par
);
1179 vga_out8 (0x3d4, 0x40, par
);
1180 vga_out8 (0x3d5, par
->CR40
, par
);
1181 vga_out8 (0x3d4, 0x42, par
);
1182 vga_out8 (0x3d5, par
->CR42
, par
);
1183 vga_out8 (0x3d4, 0x45, par
);
1184 vga_out8 (0x3d5, par
->CR45
, par
);
1185 vga_out8 (0x3d4, 0x50, par
);
1186 vga_out8 (0x3d5, par
->CR50
, par
);
1187 vga_out8 (0x3d4, 0x51, par
);
1188 vga_out8 (0x3d5, par
->CR51
, par
);
1190 /* memory timings */
1191 vga_out8 (0x3d4, 0x36, par
);
1192 vga_out8 (0x3d5, par
->CR36
, par
);
1193 vga_out8 (0x3d4, 0x60, par
);
1194 vga_out8 (0x3d5, par
->CR60
, par
);
1195 vga_out8 (0x3d4, 0x68, par
);
1196 vga_out8 (0x3d5, par
->CR68
, par
);
1197 vga_out8 (0x3d4, 0x69, par
);
1198 vga_out8 (0x3d5, par
->CR69
, par
);
1199 vga_out8 (0x3d4, 0x6f, par
);
1200 vga_out8 (0x3d5, par
->CR6F
, par
);
1202 vga_out8 (0x3d4, 0x33, par
);
1203 vga_out8 (0x3d5, par
->CR33
, par
);
1204 vga_out8 (0x3d4, 0x86, par
);
1205 vga_out8 (0x3d5, par
->CR86
, par
);
1206 vga_out8 (0x3d4, 0x88, par
);
1207 vga_out8 (0x3d5, par
->CR88
, par
);
1208 vga_out8 (0x3d4, 0x90, par
);
1209 vga_out8 (0x3d5, par
->CR90
, par
);
1210 vga_out8 (0x3d4, 0x91, par
);
1211 vga_out8 (0x3d5, par
->CR91
, par
);
1213 if (par
->chip
== S3_SAVAGE4
) {
1214 vga_out8 (0x3d4, 0xb0, par
);
1215 vga_out8 (0x3d5, par
->CRB0
, par
);
1218 vga_out8 (0x3d4, 0x32, par
);
1219 vga_out8 (0x3d5, par
->CR32
, par
);
1221 /* unlock extended seq regs */
1222 vga_out8 (0x3c4, 0x08, par
);
1223 vga_out8 (0x3c5, 0x06, par
);
1225 /* Restore extended sequencer regs for MCLK. SR10 == 255 indicates
1226 * that we should leave the default SR10 and SR11 values there.
1228 if (par
->SR10
!= 255) {
1229 vga_out8 (0x3c4, 0x10, par
);
1230 vga_out8 (0x3c5, par
->SR10
, par
);
1231 vga_out8 (0x3c4, 0x11, par
);
1232 vga_out8 (0x3c5, par
->SR11
, par
);
1235 /* restore extended seq regs for dclk */
1236 vga_out8 (0x3c4, 0x0e, par
);
1237 vga_out8 (0x3c5, par
->SR0E
, par
);
1238 vga_out8 (0x3c4, 0x0f, par
);
1239 vga_out8 (0x3c5, par
->SR0F
, par
);
1240 vga_out8 (0x3c4, 0x12, par
);
1241 vga_out8 (0x3c5, par
->SR12
, par
);
1242 vga_out8 (0x3c4, 0x13, par
);
1243 vga_out8 (0x3c5, par
->SR13
, par
);
1244 vga_out8 (0x3c4, 0x29, par
);
1245 vga_out8 (0x3c5, par
->SR29
, par
);
1247 vga_out8 (0x3c4, 0x18, par
);
1248 vga_out8 (0x3c5, par
->SR18
, par
);
1250 /* load new m, n pll values for dclk & mclk */
1251 vga_out8 (0x3c4, 0x15, par
);
1252 tmp
= vga_in8 (0x3c5, par
) & ~0x21;
1254 vga_out8 (0x3c5, tmp
| 0x03, par
);
1255 vga_out8 (0x3c5, tmp
| 0x23, par
);
1256 vga_out8 (0x3c5, tmp
| 0x03, par
);
1257 vga_out8 (0x3c5, par
->SR15
, par
);
1260 vga_out8 (0x3c4, 0x30, par
);
1261 vga_out8 (0x3c5, par
->SR30
, par
);
1262 vga_out8 (0x3c4, 0x08, par
);
1263 vga_out8 (0x3c5, par
->SR08
, par
);
1265 /* now write out cr67 in full, possibly starting STREAMS */
1266 VerticalRetraceWait(par
);
1267 vga_out8 (0x3d4, 0x67, par
);
1268 vga_out8 (0x3d5, par
->CR67
, par
);
1270 vga_out8 (0x3d4, 0x66, par
);
1271 cr66
= vga_in8 (0x3d5, par
);
1272 vga_out8 (0x3d5, cr66
| 0x80, par
);
1273 vga_out8 (0x3d4, 0x3a, par
);
1274 cr3a
= vga_in8 (0x3d5, par
);
1275 vga_out8 (0x3d5, cr3a
| 0x80, par
);
1277 if (par
->chip
!= S3_SAVAGE_MX
) {
1278 VerticalRetraceWait(par
);
1279 savage_out32 (FIFO_CONTROL_REG
, par
->MMPR0
, par
);
1280 par
->SavageWaitIdle (par
);
1281 savage_out32 (MIU_CONTROL_REG
, par
->MMPR1
, par
);
1282 par
->SavageWaitIdle (par
);
1283 savage_out32 (STREAMS_TIMEOUT_REG
, par
->MMPR2
, par
);
1284 par
->SavageWaitIdle (par
);
1285 savage_out32 (MISC_TIMEOUT_REG
, par
->MMPR3
, par
);
1288 vga_out8 (0x3d4, 0x66, par
);
1289 vga_out8 (0x3d5, cr66
, par
);
1290 vga_out8 (0x3d4, 0x3a, par
);
1291 vga_out8 (0x3d5, cr3a
, par
);
1293 SavageSetup2DEngine (par
);
1294 vgaHWProtect (par
, 0);
1297 static void savagefb_update_start (struct savagefb_par
*par
,
1298 struct fb_var_screeninfo
*var
)
1302 base
= ((var
->yoffset
* var
->xres_virtual
+ (var
->xoffset
& ~1))
1303 * ((var
->bits_per_pixel
+7) / 8)) >> 2;
1305 /* now program the start address registers */
1306 vga_out16(0x3d4, (base
& 0x00ff00) | 0x0c, par
);
1307 vga_out16(0x3d4, ((base
& 0x00ff) << 8) | 0x0d, par
);
1308 vga_out8 (0x3d4, 0x69, par
);
1309 vga_out8 (0x3d5, (base
& 0x7f0000) >> 16, par
);
1313 static void savagefb_set_fix(struct fb_info
*info
)
1315 info
->fix
.line_length
= info
->var
.xres_virtual
*
1316 info
->var
.bits_per_pixel
/ 8;
1318 if (info
->var
.bits_per_pixel
== 8) {
1319 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
1320 info
->fix
.xpanstep
= 4;
1322 info
->fix
.visual
= FB_VISUAL_TRUECOLOR
;
1323 info
->fix
.xpanstep
= 2;
1328 #if defined(CONFIG_FB_SAVAGE_ACCEL)
1329 static void savagefb_set_clip(struct fb_info
*info
)
1331 struct savagefb_par
*par
= info
->par
;
1334 cmd
= BCI_CMD_NOP
| BCI_CMD_CLIP_NEW
;
1336 par
->SavageWaitFifo(par
,3);
1338 BCI_SEND(BCI_CLIP_TL(0, 0));
1339 BCI_SEND(BCI_CLIP_BR(0xfff, 0xfff));
1343 static int savagefb_set_par (struct fb_info
*info
)
1345 struct savagefb_par
*par
= info
->par
;
1346 struct fb_var_screeninfo
*var
= &info
->var
;
1349 DBG("savagefb_set_par");
1350 err
= savagefb_decode_var (var
, par
);
1354 if (par
->dacSpeedBpp
<= 0) {
1355 if (var
->bits_per_pixel
> 24)
1356 par
->dacSpeedBpp
= par
->clock
[3];
1357 else if (var
->bits_per_pixel
>= 24)
1358 par
->dacSpeedBpp
= par
->clock
[2];
1359 else if ((var
->bits_per_pixel
> 8) && (var
->bits_per_pixel
< 24))
1360 par
->dacSpeedBpp
= par
->clock
[1];
1361 else if (var
->bits_per_pixel
<= 8)
1362 par
->dacSpeedBpp
= par
->clock
[0];
1365 /* Set ramdac limits */
1366 par
->maxClock
= par
->dacSpeedBpp
;
1367 par
->minClock
= 10000;
1369 savagefb_set_par_int (par
);
1370 fb_set_cmap (&info
->cmap
, info
);
1371 savagefb_set_fix(info
);
1372 savagefb_set_clip(info
);
1379 * Pan or Wrap the Display
1381 static int savagefb_pan_display (struct fb_var_screeninfo
*var
,
1382 struct fb_info
*info
)
1384 struct savagefb_par
*par
= info
->par
;
1386 savagefb_update_start (par
, var
);
1390 static int savagefb_blank(int blank
, struct fb_info
*info
)
1392 struct savagefb_par
*par
= info
->par
;
1393 u8 sr8
= 0, srd
= 0;
1395 if (par
->display_type
== DISP_CRT
) {
1396 vga_out8(0x3c4, 0x08, par
);
1397 sr8
= vga_in8(0x3c5, par
);
1399 vga_out8(0x3c5, sr8
, par
);
1400 vga_out8(0x3c4, 0x0d, par
);
1401 srd
= vga_in8(0x3c5, par
);
1405 case FB_BLANK_UNBLANK
:
1406 case FB_BLANK_NORMAL
:
1408 case FB_BLANK_VSYNC_SUSPEND
:
1411 case FB_BLANK_HSYNC_SUSPEND
:
1414 case FB_BLANK_POWERDOWN
:
1419 vga_out8(0x3c4, 0x0d, par
);
1420 vga_out8(0x3c5, srd
, par
);
1423 if (par
->display_type
== DISP_LCD
||
1424 par
->display_type
== DISP_DFP
) {
1426 case FB_BLANK_UNBLANK
:
1427 case FB_BLANK_NORMAL
:
1428 vga_out8(0x3c4, 0x31, par
); /* SR31 bit 4 - FP enable */
1429 vga_out8(0x3c5, vga_in8(0x3c5, par
) | 0x10, par
);
1431 case FB_BLANK_VSYNC_SUSPEND
:
1432 case FB_BLANK_HSYNC_SUSPEND
:
1433 case FB_BLANK_POWERDOWN
:
1434 vga_out8(0x3c4, 0x31, par
); /* SR31 bit 4 - FP enable */
1435 vga_out8(0x3c5, vga_in8(0x3c5, par
) & ~0x10, par
);
1440 return (blank
== FB_BLANK_NORMAL
) ? 1 : 0;
1443 static struct fb_ops savagefb_ops
= {
1444 .owner
= THIS_MODULE
,
1445 .fb_check_var
= savagefb_check_var
,
1446 .fb_set_par
= savagefb_set_par
,
1447 .fb_setcolreg
= savagefb_setcolreg
,
1448 .fb_pan_display
= savagefb_pan_display
,
1449 .fb_blank
= savagefb_blank
,
1450 #if defined(CONFIG_FB_SAVAGE_ACCEL)
1451 .fb_fillrect
= savagefb_fillrect
,
1452 .fb_copyarea
= savagefb_copyarea
,
1453 .fb_imageblit
= savagefb_imageblit
,
1454 .fb_sync
= savagefb_sync
,
1456 .fb_fillrect
= cfb_fillrect
,
1457 .fb_copyarea
= cfb_copyarea
,
1458 .fb_imageblit
= cfb_imageblit
,
1462 /* --------------------------------------------------------------------- */
1464 static struct fb_var_screeninfo __devinitdata savagefb_var800x600x8
= {
1465 .accel_flags
= FB_ACCELF_TEXT
,
1468 .xres_virtual
= 800,
1469 .yres_virtual
= 600,
1470 .bits_per_pixel
= 8,
1478 .sync
= FB_SYNC_HOR_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
1479 .vmode
= FB_VMODE_NONINTERLACED
1482 static void savage_enable_mmio (struct savagefb_par
*par
)
1486 DBG ("savage_enable_mmio\n");
1488 val
= vga_in8 (0x3c3, par
);
1489 vga_out8 (0x3c3, val
| 0x01, par
);
1490 val
= vga_in8 (0x3cc, par
);
1491 vga_out8 (0x3c2, val
| 0x01, par
);
1493 if (par
->chip
>= S3_SAVAGE4
) {
1494 vga_out8 (0x3d4, 0x40, par
);
1495 val
= vga_in8 (0x3d5, par
);
1496 vga_out8 (0x3d5, val
| 1, par
);
1501 static void savage_disable_mmio (struct savagefb_par
*par
)
1505 DBG ("savage_disable_mmio\n");
1507 if(par
->chip
>= S3_SAVAGE4
) {
1508 vga_out8 (0x3d4, 0x40, par
);
1509 val
= vga_in8 (0x3d5, par
);
1510 vga_out8 (0x3d5, val
| 1, par
);
1515 static int __devinit
savage_map_mmio (struct fb_info
*info
)
1517 struct savagefb_par
*par
= info
->par
;
1518 DBG ("savage_map_mmio");
1520 if (S3_SAVAGE3D_SERIES (par
->chip
))
1521 par
->mmio
.pbase
= pci_resource_start (par
->pcidev
, 0) +
1522 SAVAGE_NEWMMIO_REGBASE_S3
;
1524 par
->mmio
.pbase
= pci_resource_start (par
->pcidev
, 0) +
1525 SAVAGE_NEWMMIO_REGBASE_S4
;
1527 par
->mmio
.len
= SAVAGE_NEWMMIO_REGSIZE
;
1529 par
->mmio
.vbase
= ioremap (par
->mmio
.pbase
, par
->mmio
.len
);
1530 if (!par
->mmio
.vbase
) {
1531 printk ("savagefb: unable to map memory mapped IO\n");
1534 printk (KERN_INFO
"savagefb: mapped io at %p\n",
1537 info
->fix
.mmio_start
= par
->mmio
.pbase
;
1538 info
->fix
.mmio_len
= par
->mmio
.len
;
1540 par
->bci_base
= (u32 __iomem
*)(par
->mmio
.vbase
+ BCI_BUFFER_OFFSET
);
1543 savage_enable_mmio (par
);
1548 static void savage_unmap_mmio (struct fb_info
*info
)
1550 struct savagefb_par
*par
= info
->par
;
1551 DBG ("savage_unmap_mmio");
1553 savage_disable_mmio(par
);
1555 if (par
->mmio
.vbase
) {
1556 iounmap(par
->mmio
.vbase
);
1557 par
->mmio
.vbase
= NULL
;
1561 static int __devinit
savage_map_video (struct fb_info
*info
,
1564 struct savagefb_par
*par
= info
->par
;
1567 DBG("savage_map_video");
1569 if (S3_SAVAGE3D_SERIES (par
->chip
))
1574 par
->video
.pbase
= pci_resource_start (par
->pcidev
, resource
);
1575 par
->video
.len
= video_len
;
1576 par
->video
.vbase
= ioremap (par
->video
.pbase
, par
->video
.len
);
1578 if (!par
->video
.vbase
) {
1579 printk ("savagefb: unable to map screen memory\n");
1582 printk (KERN_INFO
"savagefb: mapped framebuffer at %p, "
1583 "pbase == %x\n", par
->video
.vbase
, par
->video
.pbase
);
1585 info
->fix
.smem_start
= par
->video
.pbase
;
1586 info
->fix
.smem_len
= par
->video
.len
- par
->cob_size
;
1587 info
->screen_base
= par
->video
.vbase
;
1590 par
->video
.mtrr
= mtrr_add (par
->video
.pbase
, video_len
,
1591 MTRR_TYPE_WRCOMB
, 1);
1594 /* Clear framebuffer, it's all white in memory after boot */
1595 memset_io (par
->video
.vbase
, 0, par
->video
.len
);
1600 static void savage_unmap_video (struct fb_info
*info
)
1602 struct savagefb_par
*par
= info
->par
;
1604 DBG("savage_unmap_video");
1606 if (par
->video
.vbase
) {
1608 mtrr_del (par
->video
.mtrr
, par
->video
.pbase
, par
->video
.len
);
1611 iounmap (par
->video
.vbase
);
1612 par
->video
.vbase
= NULL
;
1613 info
->screen_base
= NULL
;
1617 static int savage_init_hw (struct savagefb_par
*par
)
1619 unsigned char config1
, m
, n
, n1
, n2
, sr8
, cr3f
, cr66
= 0, tmp
;
1621 static unsigned char RamSavage3D
[] = { 8, 4, 4, 2 };
1622 static unsigned char RamSavage4
[] = { 2, 4, 8, 12, 16, 32, 64, 32 };
1623 static unsigned char RamSavageMX
[] = { 2, 8, 4, 16, 8, 16, 4, 16 };
1624 static unsigned char RamSavageNB
[] = { 0, 2, 4, 8, 16, 32, 2, 2 };
1625 int videoRam
, videoRambytes
, dvi
;
1627 DBG("savage_init_hw");
1629 /* unprotect CRTC[0-7] */
1630 vga_out8(0x3d4, 0x11, par
);
1631 tmp
= vga_in8(0x3d5, par
);
1632 vga_out8(0x3d5, tmp
& 0x7f, par
);
1634 /* unlock extended regs */
1635 vga_out16(0x3d4, 0x4838, par
);
1636 vga_out16(0x3d4, 0xa039, par
);
1637 vga_out16(0x3c4, 0x0608, par
);
1639 vga_out8(0x3d4, 0x40, par
);
1640 tmp
= vga_in8(0x3d5, par
);
1641 vga_out8(0x3d5, tmp
& ~0x01, par
);
1643 /* unlock sys regs */
1644 vga_out8(0x3d4, 0x38, par
);
1645 vga_out8(0x3d5, 0x48, par
);
1647 /* Unlock system registers. */
1648 vga_out16(0x3d4, 0x4838, par
);
1650 /* Next go on to detect amount of installed ram */
1652 vga_out8(0x3d4, 0x36, par
); /* for register CR36 (CONFG_REG1), */
1653 config1
= vga_in8(0x3d5, par
); /* get amount of vram installed */
1655 /* Compute the amount of video memory and offscreen memory. */
1657 switch (par
->chip
) {
1659 videoRam
= RamSavage3D
[ (config1
& 0xC0) >> 6 ] * 1024;
1664 * The Savage4 has one ugly special case to consider. On
1665 * systems with 4 banks of 2Mx32 SDRAM, the BIOS says 4MB
1666 * when it really means 8MB. Why do it the same when you
1667 * can do it different...
1669 vga_out8(0x3d4, 0x68, par
); /* memory control 1 */
1670 if( (vga_in8(0x3d5, par
) & 0xC0) == (0x01 << 6) )
1676 videoRam
= RamSavage4
[ (config1
& 0xE0) >> 5 ] * 1024;
1680 case S3_SUPERSAVAGE
:
1681 videoRam
= RamSavageMX
[ (config1
& 0x0E) >> 1 ] * 1024;
1685 videoRam
= RamSavageNB
[ (config1
& 0xE0) >> 5 ] * 1024;
1689 /* How did we get here? */
1694 videoRambytes
= videoRam
* 1024;
1696 printk (KERN_INFO
"savagefb: probed videoram: %dk\n", videoRam
);
1698 /* reset graphics engine to avoid memory corruption */
1699 vga_out8 (0x3d4, 0x66, par
);
1700 cr66
= vga_in8 (0x3d5, par
);
1701 vga_out8 (0x3d5, cr66
| 0x02, par
);
1704 vga_out8 (0x3d4, 0x66, par
);
1705 vga_out8 (0x3d5, cr66
& ~0x02, par
); /* clear reset flag */
1710 * reset memory interface, 3D engine, AGP master, PCI master,
1711 * master engine unit, motion compensation/LPB
1713 vga_out8 (0x3d4, 0x3f, par
);
1714 cr3f
= vga_in8 (0x3d5, par
);
1715 vga_out8 (0x3d5, cr3f
| 0x08, par
);
1718 vga_out8 (0x3d4, 0x3f, par
);
1719 vga_out8 (0x3d5, cr3f
& ~0x08, par
); /* clear reset flags */
1722 /* Savage ramdac speeds */
1724 par
->clock
[0] = 250000;
1725 par
->clock
[1] = 250000;
1726 par
->clock
[2] = 220000;
1727 par
->clock
[3] = 220000;
1729 /* detect current mclk */
1730 vga_out8(0x3c4, 0x08, par
);
1731 sr8
= vga_in8(0x3c5, par
);
1732 vga_out8(0x3c5, 0x06, par
);
1733 vga_out8(0x3c4, 0x10, par
);
1734 n
= vga_in8(0x3c5, par
);
1735 vga_out8(0x3c4, 0x11, par
);
1736 m
= vga_in8(0x3c5, par
);
1737 vga_out8(0x3c4, 0x08, par
);
1738 vga_out8(0x3c5, sr8
, par
);
1741 n2
= (n
>> 5) & 0x03;
1742 par
->MCLK
= ((1431818 * (m
+2)) / (n1
+2) / (1 << n2
) + 50) / 100;
1743 printk (KERN_INFO
"savagefb: Detected current MCLK value of %d kHz\n",
1746 /* check for DVI/flat panel */
1749 if (par
->chip
== S3_SAVAGE4
) {
1750 unsigned char sr30
= 0x00;
1752 vga_out8(0x3c4, 0x30, par
);
1754 vga_out8(0x3c5, vga_in8(0x3c5, par
) & ~0x02, par
);
1755 sr30
= vga_in8(0x3c5, par
);
1756 if (sr30
& 0x02 /*0x04 */) {
1758 printk("savagefb: Digital Flat Panel Detected\n");
1762 if (S3_SAVAGE_MOBILE_SERIES(par
->chip
) && !par
->crtonly
)
1763 par
->display_type
= DISP_LCD
;
1764 else if (dvi
|| (par
->chip
== S3_SAVAGE4
&& par
->dvi
))
1765 par
->display_type
= DISP_DFP
;
1767 par
->display_type
= DISP_CRT
;
1769 /* Check LCD panel parrmation */
1771 if (par
->display_type
== DISP_LCD
) {
1772 unsigned char cr6b
= VGArCR( 0x6b, par
);
1774 int panelX
= (VGArSEQ (0x61, par
) +
1775 ((VGArSEQ (0x66, par
) & 0x02) << 7) + 1) * 8;
1776 int panelY
= (VGArSEQ (0x69, par
) +
1777 ((VGArSEQ (0x6e, par
) & 0x70) << 4) + 1);
1779 char * sTechnology
= "Unknown";
1781 /* OK, I admit it. I don't know how to limit the max dot clock
1782 * for LCD panels of various sizes. I thought I copied the
1783 * formula from the BIOS, but many users have parrmed me of
1786 * Instead, I'll abandon any attempt to automatically limit the
1787 * clock, and add an LCDClock option to XF86Config. Some day,
1788 * I should come back to this.
1791 enum ACTIVE_DISPLAYS
{ /* These are the bits in CR6B */
1799 if ((VGArSEQ (0x39, par
) & 0x03) == 0) {
1800 sTechnology
= "TFT";
1801 } else if ((VGArSEQ (0x30, par
) & 0x01) == 0) {
1802 sTechnology
= "DSTN";
1804 sTechnology
= "STN";
1807 printk (KERN_INFO
"savagefb: %dx%d %s LCD panel detected %s\n",
1808 panelX
, panelY
, sTechnology
,
1809 cr6b
& ActiveLCD
? "and active" : "but not active");
1811 if( cr6b
& ActiveLCD
) {
1813 * If the LCD is active and panel expansion is enabled,
1814 * we probably want to kill the HW cursor.
1817 printk (KERN_INFO
"savagefb: Limiting video mode to "
1818 "%dx%d\n", panelX
, panelY
);
1820 par
->SavagePanelWidth
= panelX
;
1821 par
->SavagePanelHeight
= panelY
;
1824 par
->display_type
= DISP_CRT
;
1827 savage_get_default_par (par
);
1829 if( S3_SAVAGE4_SERIES(par
->chip
) ) {
1831 * The Savage4 and ProSavage have COB coherency bugs which
1832 * render the buffer useless. We disable it.
1835 par
->cob_size
= 0x8000 << par
->cob_index
;
1836 par
->cob_offset
= videoRambytes
;
1838 /* We use 128kB for the COB on all chips. */
1841 par
->cob_size
= 0x400 << par
->cob_index
;
1842 par
->cob_offset
= videoRambytes
- par
->cob_size
;
1845 return videoRambytes
;
1848 static int __devinit
savage_init_fb_info (struct fb_info
*info
,
1849 struct pci_dev
*dev
,
1850 const struct pci_device_id
*id
)
1852 struct savagefb_par
*par
= info
->par
;
1857 info
->fix
.type
= FB_TYPE_PACKED_PIXELS
;
1858 info
->fix
.type_aux
= 0;
1859 info
->fix
.ypanstep
= 1;
1860 info
->fix
.ywrapstep
= 0;
1861 info
->fix
.accel
= id
->driver_data
;
1863 switch (info
->fix
.accel
) {
1864 case FB_ACCEL_SUPERSAVAGE
:
1865 par
->chip
= S3_SUPERSAVAGE
;
1866 snprintf (info
->fix
.id
, 16, "SuperSavage");
1868 case FB_ACCEL_SAVAGE4
:
1869 par
->chip
= S3_SAVAGE4
;
1870 snprintf (info
->fix
.id
, 16, "Savage4");
1872 case FB_ACCEL_SAVAGE3D
:
1873 par
->chip
= S3_SAVAGE3D
;
1874 snprintf (info
->fix
.id
, 16, "Savage3D");
1876 case FB_ACCEL_SAVAGE3D_MV
:
1877 par
->chip
= S3_SAVAGE3D
;
1878 snprintf (info
->fix
.id
, 16, "Savage3D-MV");
1880 case FB_ACCEL_SAVAGE2000
:
1881 par
->chip
= S3_SAVAGE2000
;
1882 snprintf (info
->fix
.id
, 16, "Savage2000");
1884 case FB_ACCEL_SAVAGE_MX_MV
:
1885 par
->chip
= S3_SAVAGE_MX
;
1886 snprintf (info
->fix
.id
, 16, "Savage/MX-MV");
1888 case FB_ACCEL_SAVAGE_MX
:
1889 par
->chip
= S3_SAVAGE_MX
;
1890 snprintf (info
->fix
.id
, 16, "Savage/MX");
1892 case FB_ACCEL_SAVAGE_IX_MV
:
1893 par
->chip
= S3_SAVAGE_MX
;
1894 snprintf (info
->fix
.id
, 16, "Savage/IX-MV");
1896 case FB_ACCEL_SAVAGE_IX
:
1897 par
->chip
= S3_SAVAGE_MX
;
1898 snprintf (info
->fix
.id
, 16, "Savage/IX");
1900 case FB_ACCEL_PROSAVAGE_PM
:
1901 par
->chip
= S3_PROSAVAGE
;
1902 snprintf (info
->fix
.id
, 16, "ProSavagePM");
1904 case FB_ACCEL_PROSAVAGE_KM
:
1905 par
->chip
= S3_PROSAVAGE
;
1906 snprintf (info
->fix
.id
, 16, "ProSavageKM");
1908 case FB_ACCEL_S3TWISTER_P
:
1909 par
->chip
= S3_PROSAVAGE
;
1910 snprintf (info
->fix
.id
, 16, "TwisterP");
1912 case FB_ACCEL_S3TWISTER_K
:
1913 par
->chip
= S3_PROSAVAGE
;
1914 snprintf (info
->fix
.id
, 16, "TwisterK");
1916 case FB_ACCEL_PROSAVAGE_DDR
:
1917 par
->chip
= S3_PROSAVAGE
;
1918 snprintf (info
->fix
.id
, 16, "ProSavageDDR");
1920 case FB_ACCEL_PROSAVAGE_DDRK
:
1921 par
->chip
= S3_PROSAVAGE
;
1922 snprintf (info
->fix
.id
, 16, "ProSavage8");
1926 if (S3_SAVAGE3D_SERIES(par
->chip
)) {
1927 par
->SavageWaitIdle
= savage3D_waitidle
;
1928 par
->SavageWaitFifo
= savage3D_waitfifo
;
1929 } else if (S3_SAVAGE4_SERIES(par
->chip
) ||
1930 S3_SUPERSAVAGE
== par
->chip
) {
1931 par
->SavageWaitIdle
= savage4_waitidle
;
1932 par
->SavageWaitFifo
= savage4_waitfifo
;
1934 par
->SavageWaitIdle
= savage2000_waitidle
;
1935 par
->SavageWaitFifo
= savage2000_waitfifo
;
1938 info
->var
.nonstd
= 0;
1939 info
->var
.activate
= FB_ACTIVATE_NOW
;
1940 info
->var
.width
= -1;
1941 info
->var
.height
= -1;
1942 info
->var
.accel_flags
= 0;
1944 info
->fbops
= &savagefb_ops
;
1945 info
->flags
= FBINFO_DEFAULT
|
1946 FBINFO_HWACCEL_YPAN
|
1947 FBINFO_HWACCEL_XPAN
;
1949 info
->pseudo_palette
= par
->pseudo_palette
;
1951 #if defined(CONFIG_FB_SAVAGE_ACCEL)
1952 /* FIFO size + padding for commands */
1953 info
->pixmap
.addr
= kmalloc(8*1024, GFP_KERNEL
);
1956 if (info
->pixmap
.addr
) {
1957 memset(info
->pixmap
.addr
, 0, 8*1024);
1958 info
->pixmap
.size
= 8*1024;
1959 info
->pixmap
.scan_align
= 4;
1960 info
->pixmap
.buf_align
= 4;
1961 info
->pixmap
.access_align
= 32;
1963 err
= fb_alloc_cmap (&info
->cmap
, NR_PALETTE
, 0);
1965 info
->flags
|= FBINFO_HWACCEL_COPYAREA
|
1966 FBINFO_HWACCEL_FILLRECT
|
1967 FBINFO_HWACCEL_IMAGEBLIT
;
1973 /* --------------------------------------------------------------------- */
1975 static int __devinit
savagefb_probe (struct pci_dev
* dev
,
1976 const struct pci_device_id
* id
)
1978 struct fb_info
*info
;
1979 struct savagefb_par
*par
;
1980 u_int h_sync
, v_sync
;
1984 DBG("savagefb_probe");
1987 info
= framebuffer_alloc(sizeof(struct savagefb_par
), &dev
->dev
);
1991 err
= pci_enable_device(dev
);
1995 if ((err
= pci_request_regions(dev
, "savagefb"))) {
1996 printk(KERN_ERR
"cannot request PCI regions\n");
2002 if ((err
= savage_init_fb_info(info
, dev
, id
)))
2005 err
= savage_map_mmio(info
);
2009 video_len
= savage_init_hw(par
);
2010 /* FIXME: cant be negative */
2011 if (video_len
< 0) {
2016 err
= savage_map_video(info
, video_len
);
2020 INIT_LIST_HEAD(&info
->modelist
);
2021 #if defined(CONFIG_FB_SAVAGE_I2C)
2022 savagefb_create_i2c_busses(info
);
2023 savagefb_probe_i2c_connector(info
, &par
->edid
);
2024 fb_edid_to_monspecs(par
->edid
, &info
->monspecs
);
2026 fb_videomode_to_modelist(info
->monspecs
.modedb
,
2027 info
->monspecs
.modedb_len
,
2030 info
->var
= savagefb_var800x600x8
;
2033 fb_find_mode(&info
->var
, info
, mode_option
,
2034 info
->monspecs
.modedb
, info
->monspecs
.modedb_len
,
2036 } else if (info
->monspecs
.modedb
!= NULL
) {
2037 struct fb_videomode
*modedb
;
2039 modedb
= fb_find_best_display(&info
->monspecs
,
2041 savage_update_var(&info
->var
, modedb
);
2044 /* maximize virtual vertical length */
2045 lpitch
= info
->var
.xres_virtual
*((info
->var
.bits_per_pixel
+ 7) >> 3);
2046 info
->var
.yres_virtual
= info
->fix
.smem_len
/lpitch
;
2048 if (info
->var
.yres_virtual
< info
->var
.yres
)
2051 #if defined(CONFIG_FB_SAVAGE_ACCEL)
2053 * The clipping coordinates are masked with 0xFFF, so limit our
2054 * virtual resolutions to these sizes.
2056 if (info
->var
.yres_virtual
> 0x1000)
2057 info
->var
.yres_virtual
= 0x1000;
2059 if (info
->var
.xres_virtual
> 0x1000)
2060 info
->var
.xres_virtual
= 0x1000;
2062 savagefb_check_var(&info
->var
, info
);
2063 savagefb_set_fix(info
);
2066 * Calculate the hsync and vsync frequencies. Note that
2067 * we split the 1e12 constant up so that we can preserve
2068 * the precision and fit the results into 32-bit registers.
2069 * (1953125000 * 512 = 1e12)
2071 h_sync
= 1953125000 / info
->var
.pixclock
;
2072 h_sync
= h_sync
* 512 / (info
->var
.xres
+ info
->var
.left_margin
+
2073 info
->var
.right_margin
+
2074 info
->var
.hsync_len
);
2075 v_sync
= h_sync
/ (info
->var
.yres
+ info
->var
.upper_margin
+
2076 info
->var
.lower_margin
+ info
->var
.vsync_len
);
2078 printk(KERN_INFO
"savagefb v" SAVAGEFB_VERSION
": "
2079 "%dkB VRAM, using %dx%d, %d.%03dkHz, %dHz\n",
2080 info
->fix
.smem_len
>> 10,
2081 info
->var
.xres
, info
->var
.yres
,
2082 h_sync
/ 1000, h_sync
% 1000, v_sync
);
2085 fb_destroy_modedb(info
->monspecs
.modedb
);
2086 info
->monspecs
.modedb
= NULL
;
2088 err
= register_framebuffer (info
);
2092 printk (KERN_INFO
"fb: S3 %s frame buffer device\n",
2098 pci_set_drvdata(dev
, info
);
2103 #ifdef CONFIG_FB_SAVAGE_I2C
2104 savagefb_delete_i2c_busses(info
);
2106 fb_alloc_cmap (&info
->cmap
, 0, 0);
2107 savage_unmap_video(info
);
2109 savage_unmap_mmio (info
);
2111 kfree(info
->pixmap
.addr
);
2113 pci_release_regions(dev
);
2115 framebuffer_release(info
);
2120 static void __devexit
savagefb_remove (struct pci_dev
*dev
)
2122 struct fb_info
*info
= pci_get_drvdata(dev
);
2124 DBG("savagefb_remove");
2128 * If unregister_framebuffer fails, then
2129 * we will be leaving hooks that could cause
2130 * oopsen laying around.
2132 if (unregister_framebuffer (info
))
2133 printk (KERN_WARNING
"savagefb: danger danger! "
2134 "Oopsen imminent!\n");
2136 #ifdef CONFIG_FB_SAVAGE_I2C
2137 savagefb_delete_i2c_busses(info
);
2139 fb_alloc_cmap (&info
->cmap
, 0, 0);
2140 savage_unmap_video (info
);
2141 savage_unmap_mmio (info
);
2142 kfree(info
->pixmap
.addr
);
2143 pci_release_regions(dev
);
2144 framebuffer_release(info
);
2147 * Ensure that the driver data is no longer
2150 pci_set_drvdata(dev
, NULL
);
2154 static int savagefb_suspend (struct pci_dev
* dev
, pm_message_t state
)
2156 struct fb_info
*info
= pci_get_drvdata(dev
);
2157 struct savagefb_par
*par
= info
->par
;
2159 DBG("savagefb_suspend");
2162 par
->pm_state
= state
.event
;
2165 * For PM_EVENT_FREEZE, do not power down so the console
2166 * can remain active.
2168 if (state
.event
== PM_EVENT_FREEZE
) {
2169 dev
->dev
.power
.power_state
= state
;
2173 acquire_console_sem();
2174 fb_set_suspend(info
, 1);
2176 if (info
->fbops
->fb_sync
)
2177 info
->fbops
->fb_sync(info
);
2179 savagefb_blank(FB_BLANK_POWERDOWN
, info
);
2180 savage_disable_mmio(par
);
2181 pci_save_state(dev
);
2182 pci_disable_device(dev
);
2183 pci_set_power_state(dev
, pci_choose_state(dev
, state
));
2184 release_console_sem();
2189 static int savagefb_resume (struct pci_dev
* dev
)
2191 struct fb_info
*info
= pci_get_drvdata(dev
);
2192 struct savagefb_par
*par
= info
->par
;
2193 int cur_state
= par
->pm_state
;
2195 DBG("savage_resume");
2197 par
->pm_state
= PM_EVENT_ON
;
2200 * The adapter was not powered down coming back from a
2203 if (cur_state
== PM_EVENT_FREEZE
) {
2204 pci_set_power_state(dev
, PCI_D0
);
2208 acquire_console_sem();
2210 pci_set_power_state(dev
, PCI_D0
);
2211 pci_restore_state(dev
);
2213 if(pci_enable_device(dev
))
2216 pci_set_master(dev
);
2217 savage_enable_mmio(par
);
2218 savage_init_hw(par
);
2219 savagefb_set_par (info
);
2220 savagefb_blank(FB_BLANK_UNBLANK
, info
);
2221 fb_set_suspend (info
, 0);
2222 release_console_sem();
2228 static struct pci_device_id savagefb_devices
[] __devinitdata
= {
2229 {PCI_VENDOR_ID_S3
, PCI_CHIP_SUPSAV_MX128
,
2230 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SUPERSAVAGE
},
2232 {PCI_VENDOR_ID_S3
, PCI_CHIP_SUPSAV_MX64
,
2233 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SUPERSAVAGE
},
2235 {PCI_VENDOR_ID_S3
, PCI_CHIP_SUPSAV_MX64C
,
2236 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SUPERSAVAGE
},
2238 {PCI_VENDOR_ID_S3
, PCI_CHIP_SUPSAV_IX128SDR
,
2239 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SUPERSAVAGE
},
2241 {PCI_VENDOR_ID_S3
, PCI_CHIP_SUPSAV_IX128DDR
,
2242 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SUPERSAVAGE
},
2244 {PCI_VENDOR_ID_S3
, PCI_CHIP_SUPSAV_IX64SDR
,
2245 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SUPERSAVAGE
},
2247 {PCI_VENDOR_ID_S3
, PCI_CHIP_SUPSAV_IX64DDR
,
2248 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SUPERSAVAGE
},
2250 {PCI_VENDOR_ID_S3
, PCI_CHIP_SUPSAV_IXCSDR
,
2251 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SUPERSAVAGE
},
2253 {PCI_VENDOR_ID_S3
, PCI_CHIP_SUPSAV_IXCDDR
,
2254 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SUPERSAVAGE
},
2256 {PCI_VENDOR_ID_S3
, PCI_CHIP_SAVAGE4
,
2257 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SAVAGE4
},
2259 {PCI_VENDOR_ID_S3
, PCI_CHIP_SAVAGE3D
,
2260 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SAVAGE3D
},
2262 {PCI_VENDOR_ID_S3
, PCI_CHIP_SAVAGE3D_MV
,
2263 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SAVAGE3D_MV
},
2265 {PCI_VENDOR_ID_S3
, PCI_CHIP_SAVAGE2000
,
2266 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SAVAGE2000
},
2268 {PCI_VENDOR_ID_S3
, PCI_CHIP_SAVAGE_MX_MV
,
2269 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SAVAGE_MX_MV
},
2271 {PCI_VENDOR_ID_S3
, PCI_CHIP_SAVAGE_MX
,
2272 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SAVAGE_MX
},
2274 {PCI_VENDOR_ID_S3
, PCI_CHIP_SAVAGE_IX_MV
,
2275 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SAVAGE_IX_MV
},
2277 {PCI_VENDOR_ID_S3
, PCI_CHIP_SAVAGE_IX
,
2278 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_SAVAGE_IX
},
2280 {PCI_VENDOR_ID_S3
, PCI_CHIP_PROSAVAGE_PM
,
2281 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_PROSAVAGE_PM
},
2283 {PCI_VENDOR_ID_S3
, PCI_CHIP_PROSAVAGE_KM
,
2284 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_PROSAVAGE_KM
},
2286 {PCI_VENDOR_ID_S3
, PCI_CHIP_S3TWISTER_P
,
2287 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_S3TWISTER_P
},
2289 {PCI_VENDOR_ID_S3
, PCI_CHIP_S3TWISTER_K
,
2290 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_S3TWISTER_K
},
2292 {PCI_VENDOR_ID_S3
, PCI_CHIP_PROSAVAGE_DDR
,
2293 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_PROSAVAGE_DDR
},
2295 {PCI_VENDOR_ID_S3
, PCI_CHIP_PROSAVAGE_DDRK
,
2296 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, FB_ACCEL_PROSAVAGE_DDRK
},
2298 {0, 0, 0, 0, 0, 0, 0}
2301 MODULE_DEVICE_TABLE(pci
, savagefb_devices
);
2303 static struct pci_driver savagefb_driver
= {
2305 .id_table
= savagefb_devices
,
2306 .probe
= savagefb_probe
,
2307 .suspend
= savagefb_suspend
,
2308 .resume
= savagefb_resume
,
2309 .remove
= __devexit_p(savagefb_remove
)
2312 /* **************************** exit-time only **************************** */
2314 static void __exit
savage_done (void)
2317 pci_unregister_driver (&savagefb_driver
);
2321 /* ************************* init in-kernel code ************************** */
2323 static int __init
savagefb_setup(char *options
)
2328 if (!options
|| !*options
)
2331 while ((this_opt
= strsep(&options
, ",")) != NULL
) {
2332 mode_option
= this_opt
;
2334 #endif /* !MODULE */
2338 static int __init
savagefb_init(void)
2342 DBG("savagefb_init");
2344 if (fb_get_options("savagefb", &option
))
2347 savagefb_setup(option
);
2348 return pci_register_driver (&savagefb_driver
);
2352 module_init(savagefb_init
);
2353 module_exit(savage_done
);
2355 module_param(mode_option
, charp
, 0);
2356 MODULE_PARM_DESC(mode_option
, "Specify initial video mode");