2 * linux/drivers/video/s3fb.c -- Frame buffer device driver for S3 Trio/Virge
4 * Copyright (c) 2006-2007 Ondrej Zajicek <santiago@crfreenet.org>
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive for
10 * Code is based on David Boucher's viafb (http://davesdomain.org.uk/viafb/)
11 * which is based on the code of neofb.
14 #include <linux/version.h>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/errno.h>
18 #include <linux/string.h>
20 #include <linux/tty.h>
21 #include <linux/slab.h>
22 #include <linux/delay.h>
24 #include <linux/svga.h>
25 #include <linux/init.h>
26 #include <linux/pci.h>
27 #include <linux/console.h> /* Why should fb driver call console functions? because acquire_console_sem() */
28 #include <video/vga.h>
35 int chip
, rev
, mclk_freq
;
37 struct vgastate state
;
38 struct mutex open_lock
;
39 unsigned int ref_count
;
40 u32 pseudo_palette
[16];
44 /* ------------------------------------------------------------------------- */
46 static const struct svga_fb_format s3fb_formats
[] = {
47 { 0, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0,
48 FB_TYPE_TEXT
, FB_AUX_TEXT_SVGA_STEP4
, FB_VISUAL_PSEUDOCOLOR
, 8, 16},
49 { 4, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0,
50 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_PSEUDOCOLOR
, 8, 16},
51 { 4, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 1,
52 FB_TYPE_INTERLEAVED_PLANES
, 1, FB_VISUAL_PSEUDOCOLOR
, 8, 16},
53 { 8, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0,
54 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_PSEUDOCOLOR
, 4, 8},
55 {16, {10, 5, 0}, {5, 5, 0}, {0, 5, 0}, {0, 0, 0}, 0,
56 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_TRUECOLOR
, 2, 4},
57 {16, {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0}, 0,
58 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_TRUECOLOR
, 2, 4},
59 {24, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
60 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_TRUECOLOR
, 1, 2},
61 {32, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
62 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_TRUECOLOR
, 1, 2},
67 static const struct svga_pll s3_pll
= {3, 129, 3, 33, 0, 3,
68 35000, 240000, 14318};
70 static const int s3_memsizes
[] = {4096, 0, 3072, 8192, 2048, 6144, 1024, 512};
72 static const char * const s3_names
[] = {"S3 Unknown", "S3 Trio32", "S3 Trio64", "S3 Trio64V+",
73 "S3 Trio64UV+", "S3 Trio64V2/DX", "S3 Trio64V2/GX",
74 "S3 Plato/PX", "S3 Aurora64VP", "S3 Virge",
75 "S3 Virge/VX", "S3 Virge/DX", "S3 Virge/GX",
76 "S3 Virge/GX2", "S3 Virge/GX2P", "S3 Virge/GX2P"};
78 #define CHIP_UNKNOWN 0x00
79 #define CHIP_732_TRIO32 0x01
80 #define CHIP_764_TRIO64 0x02
81 #define CHIP_765_TRIO64VP 0x03
82 #define CHIP_767_TRIO64UVP 0x04
83 #define CHIP_775_TRIO64V2_DX 0x05
84 #define CHIP_785_TRIO64V2_GX 0x06
85 #define CHIP_551_PLATO_PX 0x07
86 #define CHIP_M65_AURORA64VP 0x08
87 #define CHIP_325_VIRGE 0x09
88 #define CHIP_988_VIRGE_VX 0x0A
89 #define CHIP_375_VIRGE_DX 0x0B
90 #define CHIP_385_VIRGE_GX 0x0C
91 #define CHIP_356_VIRGE_GX2 0x0D
92 #define CHIP_357_VIRGE_GX2P 0x0E
93 #define CHIP_359_VIRGE_GX2P 0x0F
95 #define CHIP_XXX_TRIO 0x80
96 #define CHIP_XXX_TRIO64V2_DXGX 0x81
97 #define CHIP_XXX_VIRGE_DXGX 0x82
99 #define CHIP_UNDECIDED_FLAG 0x80
100 #define CHIP_MASK 0xFF
102 /* CRT timing register sets */
104 static const struct vga_regset s3_h_total_regs
[] = {{0x00, 0, 7}, {0x5D, 0, 0}, VGA_REGSET_END
};
105 static const struct vga_regset s3_h_display_regs
[] = {{0x01, 0, 7}, {0x5D, 1, 1}, VGA_REGSET_END
};
106 static const struct vga_regset s3_h_blank_start_regs
[] = {{0x02, 0, 7}, {0x5D, 2, 2}, VGA_REGSET_END
};
107 static const struct vga_regset s3_h_blank_end_regs
[] = {{0x03, 0, 4}, {0x05, 7, 7}, VGA_REGSET_END
};
108 static const struct vga_regset s3_h_sync_start_regs
[] = {{0x04, 0, 7}, {0x5D, 4, 4}, VGA_REGSET_END
};
109 static const struct vga_regset s3_h_sync_end_regs
[] = {{0x05, 0, 4}, VGA_REGSET_END
};
111 static const struct vga_regset s3_v_total_regs
[] = {{0x06, 0, 7}, {0x07, 0, 0}, {0x07, 5, 5}, {0x5E, 0, 0}, VGA_REGSET_END
};
112 static const struct vga_regset s3_v_display_regs
[] = {{0x12, 0, 7}, {0x07, 1, 1}, {0x07, 6, 6}, {0x5E, 1, 1}, VGA_REGSET_END
};
113 static const struct vga_regset s3_v_blank_start_regs
[] = {{0x15, 0, 7}, {0x07, 3, 3}, {0x09, 5, 5}, {0x5E, 2, 2}, VGA_REGSET_END
};
114 static const struct vga_regset s3_v_blank_end_regs
[] = {{0x16, 0, 7}, VGA_REGSET_END
};
115 static const struct vga_regset s3_v_sync_start_regs
[] = {{0x10, 0, 7}, {0x07, 2, 2}, {0x07, 7, 7}, {0x5E, 4, 4}, VGA_REGSET_END
};
116 static const struct vga_regset s3_v_sync_end_regs
[] = {{0x11, 0, 3}, VGA_REGSET_END
};
118 static const struct vga_regset s3_line_compare_regs
[] = {{0x18, 0, 7}, {0x07, 4, 4}, {0x09, 6, 6}, {0x5E, 6, 6}, VGA_REGSET_END
};
119 static const struct vga_regset s3_start_address_regs
[] = {{0x0d, 0, 7}, {0x0c, 0, 7}, {0x31, 4, 5}, {0x51, 0, 1}, VGA_REGSET_END
};
120 static const struct vga_regset s3_offset_regs
[] = {{0x13, 0, 7}, {0x51, 4, 5}, VGA_REGSET_END
}; /* set 0x43 bit 2 to 0 */
122 static const struct svga_timing_regs s3_timing_regs
= {
123 s3_h_total_regs
, s3_h_display_regs
, s3_h_blank_start_regs
,
124 s3_h_blank_end_regs
, s3_h_sync_start_regs
, s3_h_sync_end_regs
,
125 s3_v_total_regs
, s3_v_display_regs
, s3_v_blank_start_regs
,
126 s3_v_blank_end_regs
, s3_v_sync_start_regs
, s3_v_sync_end_regs
,
130 /* ------------------------------------------------------------------------- */
132 /* Module parameters */
135 static char *mode_option __devinitdata
= "640x480-8@60";
138 static int mtrr __devinitdata
= 1;
141 static int fasttext
= 1;
144 MODULE_AUTHOR("(c) 2006-2007 Ondrej Zajicek <santiago@crfreenet.org>");
145 MODULE_LICENSE("GPL");
146 MODULE_DESCRIPTION("fbdev driver for S3 Trio/Virge");
148 module_param(mode_option
, charp
, 0444);
149 MODULE_PARM_DESC(mode_option
, "Default video mode ('640x480-8@60', etc)");
150 module_param_named(mode
, mode_option
, charp
, 0444);
151 MODULE_PARM_DESC(mode
, "Default video mode ('640x480-8@60', etc) (deprecated)");
154 module_param(mtrr
, int, 0444);
155 MODULE_PARM_DESC(mtrr
, "Enable write-combining with MTRR (1=enable, 0=disable, default=1)");
158 module_param(fasttext
, int, 0644);
159 MODULE_PARM_DESC(fasttext
, "Enable S3 fast text mode (1=enable, 0=disable, default=1)");
162 /* ------------------------------------------------------------------------- */
164 /* Set font in S3 fast text mode */
166 static void s3fb_settile_fast(struct fb_info
*info
, struct fb_tilemap
*map
)
168 const u8
*font
= map
->data
;
169 u8 __iomem
*fb
= (u8 __iomem
*) info
->screen_base
;
172 if ((map
->width
!= 8) || (map
->height
!= 16) ||
173 (map
->depth
!= 1) || (map
->length
!= 256)) {
174 printk(KERN_ERR
"fb%d: unsupported font parameters: width %d, height %d, depth %d, length %d\n",
175 info
->node
, map
->width
, map
->height
, map
->depth
, map
->length
);
180 for (i
= 0; i
< map
->height
; i
++) {
181 for (c
= 0; c
< map
->length
; c
++) {
182 fb_writeb(font
[c
* map
->height
+ i
], fb
+ c
* 4);
188 static struct fb_tile_ops s3fb_tile_ops
= {
189 .fb_settile
= svga_settile
,
190 .fb_tilecopy
= svga_tilecopy
,
191 .fb_tilefill
= svga_tilefill
,
192 .fb_tileblit
= svga_tileblit
,
193 .fb_tilecursor
= svga_tilecursor
,
194 .fb_get_tilemax
= svga_get_tilemax
,
197 static struct fb_tile_ops s3fb_fast_tile_ops
= {
198 .fb_settile
= s3fb_settile_fast
,
199 .fb_tilecopy
= svga_tilecopy
,
200 .fb_tilefill
= svga_tilefill
,
201 .fb_tileblit
= svga_tileblit
,
202 .fb_tilecursor
= svga_tilecursor
,
203 .fb_get_tilemax
= svga_get_tilemax
,
207 /* ------------------------------------------------------------------------- */
209 /* image data is MSB-first, fb structure is MSB-first too */
210 static inline u32
expand_color(u32 c
)
212 return ((c
& 1) | ((c
& 2) << 7) | ((c
& 4) << 14) | ((c
& 8) << 21)) * 0xFF;
215 /* s3fb_iplan_imageblit silently assumes that almost everything is 8-pixel aligned */
216 static void s3fb_iplan_imageblit(struct fb_info
*info
, const struct fb_image
*image
)
218 u32 fg
= expand_color(image
->fg_color
);
219 u32 bg
= expand_color(image
->bg_color
);
220 const u8
*src1
, *src
;
227 dst1
= info
->screen_base
+ (image
->dy
* info
->fix
.line_length
)
228 + ((image
->dx
/ 8) * 4);
230 for (y
= 0; y
< image
->height
; y
++) {
232 dst
= (u32 __iomem
*) dst1
;
233 for (x
= 0; x
< image
->width
; x
+= 8) {
234 val
= *(src
++) * 0x01010101;
235 val
= (val
& fg
) | (~val
& bg
);
236 fb_writel(val
, dst
++);
238 src1
+= image
->width
/ 8;
239 dst1
+= info
->fix
.line_length
;
244 /* s3fb_iplan_fillrect silently assumes that almost everything is 8-pixel aligned */
245 static void s3fb_iplan_fillrect(struct fb_info
*info
, const struct fb_fillrect
*rect
)
247 u32 fg
= expand_color(rect
->color
);
252 dst1
= info
->screen_base
+ (rect
->dy
* info
->fix
.line_length
)
253 + ((rect
->dx
/ 8) * 4);
255 for (y
= 0; y
< rect
->height
; y
++) {
256 dst
= (u32 __iomem
*) dst1
;
257 for (x
= 0; x
< rect
->width
; x
+= 8) {
258 fb_writel(fg
, dst
++);
260 dst1
+= info
->fix
.line_length
;
265 /* image data is MSB-first, fb structure is high-nibble-in-low-byte-first */
266 static inline u32
expand_pixel(u32 c
)
268 return (((c
& 1) << 24) | ((c
& 2) << 27) | ((c
& 4) << 14) | ((c
& 8) << 17) |
269 ((c
& 16) << 4) | ((c
& 32) << 7) | ((c
& 64) >> 6) | ((c
& 128) >> 3)) * 0xF;
272 /* s3fb_cfb4_imageblit silently assumes that almost everything is 8-pixel aligned */
273 static void s3fb_cfb4_imageblit(struct fb_info
*info
, const struct fb_image
*image
)
275 u32 fg
= image
->fg_color
* 0x11111111;
276 u32 bg
= image
->bg_color
* 0x11111111;
277 const u8
*src1
, *src
;
284 dst1
= info
->screen_base
+ (image
->dy
* info
->fix
.line_length
)
285 + ((image
->dx
/ 8) * 4);
287 for (y
= 0; y
< image
->height
; y
++) {
289 dst
= (u32 __iomem
*) dst1
;
290 for (x
= 0; x
< image
->width
; x
+= 8) {
291 val
= expand_pixel(*(src
++));
292 val
= (val
& fg
) | (~val
& bg
);
293 fb_writel(val
, dst
++);
295 src1
+= image
->width
/ 8;
296 dst1
+= info
->fix
.line_length
;
300 static void s3fb_imageblit(struct fb_info
*info
, const struct fb_image
*image
)
302 if ((info
->var
.bits_per_pixel
== 4) && (image
->depth
== 1)
303 && ((image
->width
% 8) == 0) && ((image
->dx
% 8) == 0)) {
304 if (info
->fix
.type
== FB_TYPE_INTERLEAVED_PLANES
)
305 s3fb_iplan_imageblit(info
, image
);
307 s3fb_cfb4_imageblit(info
, image
);
309 cfb_imageblit(info
, image
);
312 static void s3fb_fillrect(struct fb_info
*info
, const struct fb_fillrect
*rect
)
314 if ((info
->var
.bits_per_pixel
== 4)
315 && ((rect
->width
% 8) == 0) && ((rect
->dx
% 8) == 0)
316 && (info
->fix
.type
== FB_TYPE_INTERLEAVED_PLANES
))
317 s3fb_iplan_fillrect(info
, rect
);
319 cfb_fillrect(info
, rect
);
324 /* ------------------------------------------------------------------------- */
327 static void s3_set_pixclock(struct fb_info
*info
, u32 pixclock
)
333 rv
= svga_compute_pll(&s3_pll
, 1000000000 / pixclock
, &m
, &n
, &r
, info
->node
);
335 printk(KERN_ERR
"fb%d: cannot set requested pixclock, keeping old value\n", info
->node
);
339 /* Set VGA misc register */
340 regval
= vga_r(NULL
, VGA_MIS_R
);
341 vga_w(NULL
, VGA_MIS_W
, regval
| VGA_MIS_ENB_PLL_LOAD
);
343 /* Set S3 clock registers */
344 vga_wseq(NULL
, 0x12, ((n
- 2) | (r
<< 5)));
345 vga_wseq(NULL
, 0x13, m
- 2);
349 /* Activate clock - write 0, 1, 0 to seq/15 bit 5 */
350 regval
= vga_rseq (NULL
, 0x15); /* | 0x80; */
351 vga_wseq(NULL
, 0x15, regval
& ~(1<<5));
352 vga_wseq(NULL
, 0x15, regval
| (1<<5));
353 vga_wseq(NULL
, 0x15, regval
& ~(1<<5));
357 /* Open framebuffer */
359 static int s3fb_open(struct fb_info
*info
, int user
)
361 struct s3fb_info
*par
= info
->par
;
363 mutex_lock(&(par
->open_lock
));
364 if (par
->ref_count
== 0) {
365 memset(&(par
->state
), 0, sizeof(struct vgastate
));
366 par
->state
.flags
= VGA_SAVE_MODE
| VGA_SAVE_FONTS
| VGA_SAVE_CMAP
;
367 par
->state
.num_crtc
= 0x70;
368 par
->state
.num_seq
= 0x20;
369 save_vga(&(par
->state
));
373 mutex_unlock(&(par
->open_lock
));
378 /* Close framebuffer */
380 static int s3fb_release(struct fb_info
*info
, int user
)
382 struct s3fb_info
*par
= info
->par
;
384 mutex_lock(&(par
->open_lock
));
385 if (par
->ref_count
== 0) {
386 mutex_unlock(&(par
->open_lock
));
390 if (par
->ref_count
== 1)
391 restore_vga(&(par
->state
));
394 mutex_unlock(&(par
->open_lock
));
399 /* Validate passed in var */
401 static int s3fb_check_var(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
403 struct s3fb_info
*par
= info
->par
;
407 /* Find appropriate format */
408 rv
= svga_match_format (s3fb_formats
, var
, NULL
);
410 /* 32bpp mode is not supported on VIRGE VX,
411 24bpp is not supported on others */
412 if ((par
->chip
== CHIP_988_VIRGE_VX
) ? (rv
== 7) : (rv
== 6))
416 printk(KERN_ERR
"fb%d: unsupported mode requested\n", info
->node
);
420 /* Do not allow to have real resoulution larger than virtual */
421 if (var
->xres
> var
->xres_virtual
)
422 var
->xres_virtual
= var
->xres
;
424 if (var
->yres
> var
->yres_virtual
)
425 var
->yres_virtual
= var
->yres
;
427 /* Round up xres_virtual to have proper alignment of lines */
428 step
= s3fb_formats
[rv
].xresstep
- 1;
429 var
->xres_virtual
= (var
->xres_virtual
+step
) & ~step
;
431 /* Check whether have enough memory */
432 mem
= ((var
->bits_per_pixel
* var
->xres_virtual
) >> 3) * var
->yres_virtual
;
433 if (mem
> info
->screen_size
) {
434 printk(KERN_ERR
"fb%d: not enough framebuffer memory (%d kB requested , %d kB available)\n",
435 info
->node
, mem
>> 10, (unsigned int) (info
->screen_size
>> 10));
439 rv
= svga_check_timings (&s3_timing_regs
, var
, info
->node
);
441 printk(KERN_ERR
"fb%d: invalid timings requested\n", info
->node
);
445 rv
= svga_compute_pll(&s3_pll
, PICOS2KHZ(var
->pixclock
), &m
, &n
, &r
,
448 printk(KERN_ERR
"fb%d: invalid pixclock value requested\n",
456 /* Set video mode from par */
458 static int s3fb_set_par(struct fb_info
*info
)
460 struct s3fb_info
*par
= info
->par
;
461 u32 value
, mode
, hmul
, offset_value
, screen_size
, multiplex
;
462 u32 bpp
= info
->var
.bits_per_pixel
;
465 info
->fix
.ypanstep
= 1;
466 info
->fix
.line_length
= (info
->var
.xres_virtual
* bpp
) / 8;
468 info
->flags
&= ~FBINFO_MISC_TILEBLITTING
;
469 info
->tileops
= NULL
;
471 /* in 4bpp supports 8p wide tiles only, any tiles otherwise */
472 info
->pixmap
.blit_x
= (bpp
== 4) ? (1 << (8 - 1)) : (~(u32
)0);
473 info
->pixmap
.blit_y
= ~(u32
)0;
475 offset_value
= (info
->var
.xres_virtual
* bpp
) / 64;
476 screen_size
= info
->var
.yres_virtual
* info
->fix
.line_length
;
478 info
->fix
.ypanstep
= 16;
479 info
->fix
.line_length
= 0;
481 info
->flags
|= FBINFO_MISC_TILEBLITTING
;
482 info
->tileops
= fasttext
? &s3fb_fast_tile_ops
: &s3fb_tile_ops
;
484 /* supports 8x16 tiles only */
485 info
->pixmap
.blit_x
= 1 << (8 - 1);
486 info
->pixmap
.blit_y
= 1 << (16 - 1);
488 offset_value
= info
->var
.xres_virtual
/ 16;
489 screen_size
= (info
->var
.xres_virtual
* info
->var
.yres_virtual
) / 64;
492 info
->var
.xoffset
= 0;
493 info
->var
.yoffset
= 0;
494 info
->var
.activate
= FB_ACTIVATE_NOW
;
496 /* Unlock registers */
497 vga_wcrt(NULL
, 0x38, 0x48);
498 vga_wcrt(NULL
, 0x39, 0xA5);
499 vga_wseq(NULL
, 0x08, 0x06);
500 svga_wcrt_mask(0x11, 0x00, 0x80);
502 /* Blank screen and turn off sync */
503 svga_wseq_mask(0x01, 0x20, 0x20);
504 svga_wcrt_mask(0x17, 0x00, 0x80);
506 /* Set default values */
507 svga_set_default_gfx_regs();
508 svga_set_default_atc_regs();
509 svga_set_default_seq_regs();
510 svga_set_default_crt_regs();
511 svga_wcrt_multi(s3_line_compare_regs
, 0xFFFFFFFF);
512 svga_wcrt_multi(s3_start_address_regs
, 0);
514 /* S3 specific initialization */
515 svga_wcrt_mask(0x58, 0x10, 0x10); /* enable linear framebuffer */
516 svga_wcrt_mask(0x31, 0x08, 0x08); /* enable sequencer access to framebuffer above 256 kB */
518 /* svga_wcrt_mask(0x33, 0x08, 0x08); */ /* DDR ? */
519 /* svga_wcrt_mask(0x43, 0x01, 0x01); */ /* DDR ? */
520 svga_wcrt_mask(0x33, 0x00, 0x08); /* no DDR ? */
521 svga_wcrt_mask(0x43, 0x00, 0x01); /* no DDR ? */
523 svga_wcrt_mask(0x5D, 0x00, 0x28); // Clear strange HSlen bits
525 /* svga_wcrt_mask(0x58, 0x03, 0x03); */
527 /* svga_wcrt_mask(0x53, 0x12, 0x13); */ /* enable MMIO */
528 /* svga_wcrt_mask(0x40, 0x08, 0x08); */ /* enable write buffer */
531 /* Set the offset register */
532 pr_debug("fb%d: offset register : %d\n", info
->node
, offset_value
);
533 svga_wcrt_multi(s3_offset_regs
, offset_value
);
535 vga_wcrt(NULL
, 0x54, 0x18); /* M parameter */
536 vga_wcrt(NULL
, 0x60, 0xff); /* N parameter */
537 vga_wcrt(NULL
, 0x61, 0xff); /* L parameter */
538 vga_wcrt(NULL
, 0x62, 0xff); /* L parameter */
540 vga_wcrt(NULL
, 0x3A, 0x35);
541 svga_wattr(0x33, 0x00);
543 if (info
->var
.vmode
& FB_VMODE_DOUBLE
)
544 svga_wcrt_mask(0x09, 0x80, 0x80);
546 svga_wcrt_mask(0x09, 0x00, 0x80);
548 if (info
->var
.vmode
& FB_VMODE_INTERLACED
)
549 svga_wcrt_mask(0x42, 0x20, 0x20);
551 svga_wcrt_mask(0x42, 0x00, 0x20);
553 /* Disable hardware graphics cursor */
554 svga_wcrt_mask(0x45, 0x00, 0x01);
555 /* Disable Streams engine */
556 svga_wcrt_mask(0x67, 0x00, 0x0C);
558 mode
= svga_match_format(s3fb_formats
, &(info
->var
), &(info
->fix
));
560 /* S3 virge DX hack */
561 if (par
->chip
== CHIP_375_VIRGE_DX
) {
562 vga_wcrt(NULL
, 0x86, 0x80);
563 vga_wcrt(NULL
, 0x90, 0x00);
566 /* S3 virge VX hack */
567 if (par
->chip
== CHIP_988_VIRGE_VX
) {
568 vga_wcrt(NULL
, 0x50, 0x00);
569 vga_wcrt(NULL
, 0x67, 0x50);
571 vga_wcrt(NULL
, 0x63, (mode
<= 2) ? 0x90 : 0x09);
572 vga_wcrt(NULL
, 0x66, 0x90);
575 svga_wcrt_mask(0x31, 0x00, 0x40);
579 /* Set mode-specific register values */
582 pr_debug("fb%d: text mode\n", info
->node
);
583 svga_set_textmode_vga_regs();
585 /* Set additional registers like in 8-bit mode */
586 svga_wcrt_mask(0x50, 0x00, 0x30);
587 svga_wcrt_mask(0x67, 0x00, 0xF0);
589 /* Disable enhanced mode */
590 svga_wcrt_mask(0x3A, 0x00, 0x30);
593 pr_debug("fb%d: high speed text mode set\n", info
->node
);
594 svga_wcrt_mask(0x31, 0x40, 0x40);
598 pr_debug("fb%d: 4 bit pseudocolor\n", info
->node
);
599 vga_wgfx(NULL
, VGA_GFX_MODE
, 0x40);
601 /* Set additional registers like in 8-bit mode */
602 svga_wcrt_mask(0x50, 0x00, 0x30);
603 svga_wcrt_mask(0x67, 0x00, 0xF0);
605 /* disable enhanced mode */
606 svga_wcrt_mask(0x3A, 0x00, 0x30);
609 pr_debug("fb%d: 4 bit pseudocolor, planar\n", info
->node
);
611 /* Set additional registers like in 8-bit mode */
612 svga_wcrt_mask(0x50, 0x00, 0x30);
613 svga_wcrt_mask(0x67, 0x00, 0xF0);
615 /* disable enhanced mode */
616 svga_wcrt_mask(0x3A, 0x00, 0x30);
619 pr_debug("fb%d: 8 bit pseudocolor\n", info
->node
);
620 if (info
->var
.pixclock
> 20000) {
621 svga_wcrt_mask(0x50, 0x00, 0x30);
622 svga_wcrt_mask(0x67, 0x00, 0xF0);
624 svga_wcrt_mask(0x50, 0x00, 0x30);
625 svga_wcrt_mask(0x67, 0x10, 0xF0);
630 pr_debug("fb%d: 5/5/5 truecolor\n", info
->node
);
631 if (par
->chip
== CHIP_988_VIRGE_VX
) {
632 if (info
->var
.pixclock
> 20000)
633 svga_wcrt_mask(0x67, 0x20, 0xF0);
635 svga_wcrt_mask(0x67, 0x30, 0xF0);
637 svga_wcrt_mask(0x50, 0x10, 0x30);
638 svga_wcrt_mask(0x67, 0x30, 0xF0);
643 pr_debug("fb%d: 5/6/5 truecolor\n", info
->node
);
644 if (par
->chip
== CHIP_988_VIRGE_VX
) {
645 if (info
->var
.pixclock
> 20000)
646 svga_wcrt_mask(0x67, 0x40, 0xF0);
648 svga_wcrt_mask(0x67, 0x50, 0xF0);
650 svga_wcrt_mask(0x50, 0x10, 0x30);
651 svga_wcrt_mask(0x67, 0x50, 0xF0);
657 pr_debug("fb%d: 8/8/8 truecolor\n", info
->node
);
658 svga_wcrt_mask(0x67, 0xD0, 0xF0);
661 pr_debug("fb%d: 8/8/8/8 truecolor\n", info
->node
);
662 svga_wcrt_mask(0x50, 0x30, 0x30);
663 svga_wcrt_mask(0x67, 0xD0, 0xF0);
666 printk(KERN_ERR
"fb%d: unsupported mode - bug\n", info
->node
);
670 if (par
->chip
!= CHIP_988_VIRGE_VX
) {
671 svga_wseq_mask(0x15, multiplex
? 0x10 : 0x00, 0x10);
672 svga_wseq_mask(0x18, multiplex
? 0x80 : 0x00, 0x80);
675 s3_set_pixclock(info
, info
->var
.pixclock
);
676 svga_set_timings(&s3_timing_regs
, &(info
->var
), hmul
, 1,
677 (info
->var
.vmode
& FB_VMODE_DOUBLE
) ? 2 : 1,
678 (info
->var
.vmode
& FB_VMODE_INTERLACED
) ? 2 : 1,
681 /* Set interlaced mode start/end register */
682 value
= info
->var
.xres
+ info
->var
.left_margin
+ info
->var
.right_margin
+ info
->var
.hsync_len
;
683 value
= ((value
* hmul
) / 8) - 5;
684 vga_wcrt(NULL
, 0x3C, (value
+ 1) / 2);
686 memset_io(info
->screen_base
, 0x00, screen_size
);
687 /* Device and screen back on */
688 svga_wcrt_mask(0x17, 0x80, 0x80);
689 svga_wseq_mask(0x01, 0x00, 0x20);
694 /* Set a colour register */
696 static int s3fb_setcolreg(u_int regno
, u_int red
, u_int green
, u_int blue
,
697 u_int transp
, struct fb_info
*fb
)
699 switch (fb
->var
.bits_per_pixel
) {
705 if ((fb
->var
.bits_per_pixel
== 4) &&
706 (fb
->var
.nonstd
== 0)) {
707 outb(0xF0, VGA_PEL_MSK
);
708 outb(regno
*16, VGA_PEL_IW
);
710 outb(0x0F, VGA_PEL_MSK
);
711 outb(regno
, VGA_PEL_IW
);
713 outb(red
>> 10, VGA_PEL_D
);
714 outb(green
>> 10, VGA_PEL_D
);
715 outb(blue
>> 10, VGA_PEL_D
);
721 outb(0xFF, VGA_PEL_MSK
);
722 outb(regno
, VGA_PEL_IW
);
723 outb(red
>> 10, VGA_PEL_D
);
724 outb(green
>> 10, VGA_PEL_D
);
725 outb(blue
>> 10, VGA_PEL_D
);
731 if (fb
->var
.green
.length
== 5)
732 ((u32
*)fb
->pseudo_palette
)[regno
] = ((red
& 0xF800) >> 1) |
733 ((green
& 0xF800) >> 6) | ((blue
& 0xF800) >> 11);
734 else if (fb
->var
.green
.length
== 6)
735 ((u32
*)fb
->pseudo_palette
)[regno
] = (red
& 0xF800) |
736 ((green
& 0xFC00) >> 5) | ((blue
& 0xF800) >> 11);
744 ((u32
*)fb
->pseudo_palette
)[regno
] = ((red
& 0xFF00) << 8) |
745 (green
& 0xFF00) | ((blue
& 0xFF00) >> 8);
755 /* Set the display blanking state */
757 static int s3fb_blank(int blank_mode
, struct fb_info
*info
)
759 switch (blank_mode
) {
760 case FB_BLANK_UNBLANK
:
761 pr_debug("fb%d: unblank\n", info
->node
);
762 svga_wcrt_mask(0x56, 0x00, 0x06);
763 svga_wseq_mask(0x01, 0x00, 0x20);
765 case FB_BLANK_NORMAL
:
766 pr_debug("fb%d: blank\n", info
->node
);
767 svga_wcrt_mask(0x56, 0x00, 0x06);
768 svga_wseq_mask(0x01, 0x20, 0x20);
770 case FB_BLANK_HSYNC_SUSPEND
:
771 pr_debug("fb%d: hsync\n", info
->node
);
772 svga_wcrt_mask(0x56, 0x02, 0x06);
773 svga_wseq_mask(0x01, 0x20, 0x20);
775 case FB_BLANK_VSYNC_SUSPEND
:
776 pr_debug("fb%d: vsync\n", info
->node
);
777 svga_wcrt_mask(0x56, 0x04, 0x06);
778 svga_wseq_mask(0x01, 0x20, 0x20);
780 case FB_BLANK_POWERDOWN
:
781 pr_debug("fb%d: sync down\n", info
->node
);
782 svga_wcrt_mask(0x56, 0x06, 0x06);
783 svga_wseq_mask(0x01, 0x20, 0x20);
791 /* Pan the display */
793 static int s3fb_pan_display(struct fb_var_screeninfo
*var
, struct fb_info
*info
) {
797 /* Calculate the offset */
798 if (var
->bits_per_pixel
== 0) {
799 offset
= (var
->yoffset
/ 16) * (var
->xres_virtual
/ 2) + (var
->xoffset
/ 2);
800 offset
= offset
>> 2;
802 offset
= (var
->yoffset
* info
->fix
.line_length
) +
803 (var
->xoffset
* var
->bits_per_pixel
/ 8);
804 offset
= offset
>> 2;
808 svga_wcrt_multi(s3_start_address_regs
, offset
);
813 /* ------------------------------------------------------------------------- */
815 /* Frame buffer operations */
817 static struct fb_ops s3fb_ops
= {
818 .owner
= THIS_MODULE
,
819 .fb_open
= s3fb_open
,
820 .fb_release
= s3fb_release
,
821 .fb_check_var
= s3fb_check_var
,
822 .fb_set_par
= s3fb_set_par
,
823 .fb_setcolreg
= s3fb_setcolreg
,
824 .fb_blank
= s3fb_blank
,
825 .fb_pan_display
= s3fb_pan_display
,
826 .fb_fillrect
= s3fb_fillrect
,
827 .fb_copyarea
= cfb_copyarea
,
828 .fb_imageblit
= s3fb_imageblit
,
829 .fb_get_caps
= svga_get_caps
,
832 /* ------------------------------------------------------------------------- */
834 static int __devinit
s3_identification(int chip
)
836 if (chip
== CHIP_XXX_TRIO
) {
837 u8 cr30
= vga_rcrt(NULL
, 0x30);
838 u8 cr2e
= vga_rcrt(NULL
, 0x2e);
839 u8 cr2f
= vga_rcrt(NULL
, 0x2f);
841 if ((cr30
== 0xE0) || (cr30
== 0xE1)) {
843 return CHIP_732_TRIO32
;
846 return CHIP_764_TRIO64
;
848 return CHIP_765_TRIO64VP
;
853 if (chip
== CHIP_XXX_TRIO64V2_DXGX
) {
854 u8 cr6f
= vga_rcrt(NULL
, 0x6f);
857 return CHIP_775_TRIO64V2_DX
;
859 return CHIP_785_TRIO64V2_GX
;
862 if (chip
== CHIP_XXX_VIRGE_DXGX
) {
863 u8 cr6f
= vga_rcrt(NULL
, 0x6f);
866 return CHIP_375_VIRGE_DX
;
868 return CHIP_385_VIRGE_GX
;
877 static int __devinit
s3_pci_probe(struct pci_dev
*dev
, const struct pci_device_id
*id
)
879 struct fb_info
*info
;
880 struct s3fb_info
*par
;
882 u8 regval
, cr38
, cr39
;
884 /* Ignore secondary VGA device because there is no VGA arbitration */
885 if (! svga_primary_device(dev
)) {
886 dev_info(&(dev
->dev
), "ignoring secondary device\n");
890 /* Allocate and fill driver data structure */
891 info
= framebuffer_alloc(sizeof(struct s3fb_info
), &(dev
->dev
));
893 dev_err(&(dev
->dev
), "cannot allocate memory\n");
898 mutex_init(&par
->open_lock
);
900 info
->flags
= FBINFO_PARTIAL_PAN_OK
| FBINFO_HWACCEL_YPAN
;
901 info
->fbops
= &s3fb_ops
;
903 /* Prepare PCI device */
904 rc
= pci_enable_device(dev
);
906 dev_err(info
->dev
, "cannot enable PCI device\n");
907 goto err_enable_device
;
910 rc
= pci_request_regions(dev
, "s3fb");
912 dev_err(info
->dev
, "cannot reserve framebuffer region\n");
913 goto err_request_regions
;
917 info
->fix
.smem_start
= pci_resource_start(dev
, 0);
918 info
->fix
.smem_len
= pci_resource_len(dev
, 0);
920 /* Map physical IO memory address into kernel space */
921 info
->screen_base
= pci_iomap(dev
, 0, 0);
922 if (! info
->screen_base
) {
924 dev_err(info
->dev
, "iomap for framebuffer failed\n");
929 cr38
= vga_rcrt(NULL
, 0x38);
930 cr39
= vga_rcrt(NULL
, 0x39);
931 vga_wseq(NULL
, 0x08, 0x06);
932 vga_wcrt(NULL
, 0x38, 0x48);
933 vga_wcrt(NULL
, 0x39, 0xA5);
935 /* Find how many physical memory there is on card */
936 /* 0x36 register is accessible even if other registers are locked */
937 regval
= vga_rcrt(NULL
, 0x36);
938 info
->screen_size
= s3_memsizes
[regval
>> 5] << 10;
939 info
->fix
.smem_len
= info
->screen_size
;
941 par
->chip
= id
->driver_data
& CHIP_MASK
;
942 par
->rev
= vga_rcrt(NULL
, 0x2f);
943 if (par
->chip
& CHIP_UNDECIDED_FLAG
)
944 par
->chip
= s3_identification(par
->chip
);
946 /* Find MCLK frequency */
947 regval
= vga_rseq(NULL
, 0x10);
948 par
->mclk_freq
= ((vga_rseq(NULL
, 0x11) + 2) * 14318) / ((regval
& 0x1F) + 2);
949 par
->mclk_freq
= par
->mclk_freq
>> (regval
>> 5);
952 vga_wcrt(NULL
, 0x38, cr38
);
953 vga_wcrt(NULL
, 0x39, cr39
);
955 strcpy(info
->fix
.id
, s3_names
[par
->chip
]);
956 info
->fix
.mmio_start
= 0;
957 info
->fix
.mmio_len
= 0;
958 info
->fix
.type
= FB_TYPE_PACKED_PIXELS
;
959 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
960 info
->fix
.ypanstep
= 0;
961 info
->fix
.accel
= FB_ACCEL_NONE
;
962 info
->pseudo_palette
= (void*) (par
->pseudo_palette
);
964 /* Prepare startup mode */
965 rc
= fb_find_mode(&(info
->var
), info
, mode_option
, NULL
, 0, NULL
, 8);
966 if (! ((rc
== 1) || (rc
== 2))) {
968 dev_err(info
->dev
, "mode %s not found\n", mode_option
);
972 rc
= fb_alloc_cmap(&info
->cmap
, 256, 0);
974 dev_err(info
->dev
, "cannot allocate colormap\n");
978 rc
= register_framebuffer(info
);
980 dev_err(info
->dev
, "cannot register framebuffer\n");
984 printk(KERN_INFO
"fb%d: %s on %s, %d MB RAM, %d MHz MCLK\n", info
->node
, info
->fix
.id
,
985 pci_name(dev
), info
->fix
.smem_len
>> 20, (par
->mclk_freq
+ 500) / 1000);
987 if (par
->chip
== CHIP_UNKNOWN
)
988 printk(KERN_INFO
"fb%d: unknown chip, CR2D=%x, CR2E=%x, CRT2F=%x, CRT30=%x\n",
989 info
->node
, vga_rcrt(NULL
, 0x2d), vga_rcrt(NULL
, 0x2e),
990 vga_rcrt(NULL
, 0x2f), vga_rcrt(NULL
, 0x30));
992 /* Record a reference to the driver data */
993 pci_set_drvdata(dev
, info
);
998 par
->mtrr_reg
= mtrr_add(info
->fix
.smem_start
, info
->fix
.smem_len
, MTRR_TYPE_WRCOMB
, 1);
1004 /* Error handling */
1006 fb_dealloc_cmap(&info
->cmap
);
1009 pci_iounmap(dev
, info
->screen_base
);
1011 pci_release_regions(dev
);
1012 err_request_regions
:
1013 /* pci_disable_device(dev); */
1015 framebuffer_release(info
);
1022 static void __devexit
s3_pci_remove(struct pci_dev
*dev
)
1024 struct fb_info
*info
= pci_get_drvdata(dev
);
1029 struct s3fb_info
*par
= info
->par
;
1031 if (par
->mtrr_reg
>= 0) {
1032 mtrr_del(par
->mtrr_reg
, 0, 0);
1037 unregister_framebuffer(info
);
1038 fb_dealloc_cmap(&info
->cmap
);
1040 pci_iounmap(dev
, info
->screen_base
);
1041 pci_release_regions(dev
);
1042 /* pci_disable_device(dev); */
1044 pci_set_drvdata(dev
, NULL
);
1045 framebuffer_release(info
);
1051 static int s3_pci_suspend(struct pci_dev
* dev
, pm_message_t state
)
1053 struct fb_info
*info
= pci_get_drvdata(dev
);
1054 struct s3fb_info
*par
= info
->par
;
1056 dev_info(info
->dev
, "suspend\n");
1058 acquire_console_sem();
1059 mutex_lock(&(par
->open_lock
));
1061 if ((state
.event
== PM_EVENT_FREEZE
) || (par
->ref_count
== 0)) {
1062 mutex_unlock(&(par
->open_lock
));
1063 release_console_sem();
1067 fb_set_suspend(info
, 1);
1069 pci_save_state(dev
);
1070 pci_disable_device(dev
);
1071 pci_set_power_state(dev
, pci_choose_state(dev
, state
));
1073 mutex_unlock(&(par
->open_lock
));
1074 release_console_sem();
1082 static int s3_pci_resume(struct pci_dev
* dev
)
1084 struct fb_info
*info
= pci_get_drvdata(dev
);
1085 struct s3fb_info
*par
= info
->par
;
1088 dev_info(info
->dev
, "resume\n");
1090 acquire_console_sem();
1091 mutex_lock(&(par
->open_lock
));
1093 if (par
->ref_count
== 0) {
1094 mutex_unlock(&(par
->open_lock
));
1095 release_console_sem();
1099 pci_set_power_state(dev
, PCI_D0
);
1100 pci_restore_state(dev
);
1101 err
= pci_enable_device(dev
);
1103 mutex_unlock(&(par
->open_lock
));
1104 release_console_sem();
1105 dev_err(info
->dev
, "error %d enabling device for resume\n", err
);
1108 pci_set_master(dev
);
1111 fb_set_suspend(info
, 0);
1113 mutex_unlock(&(par
->open_lock
));
1114 release_console_sem();
1120 /* List of boards that we are trying to support */
1122 static struct pci_device_id s3_devices
[] __devinitdata
= {
1123 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8810), .driver_data
= CHIP_XXX_TRIO
},
1124 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8811), .driver_data
= CHIP_XXX_TRIO
},
1125 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8812), .driver_data
= CHIP_M65_AURORA64VP
},
1126 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8814), .driver_data
= CHIP_767_TRIO64UVP
},
1127 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8901), .driver_data
= CHIP_XXX_TRIO64V2_DXGX
},
1128 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8902), .driver_data
= CHIP_551_PLATO_PX
},
1130 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x5631), .driver_data
= CHIP_325_VIRGE
},
1131 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x883D), .driver_data
= CHIP_988_VIRGE_VX
},
1132 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8A01), .driver_data
= CHIP_XXX_VIRGE_DXGX
},
1133 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8A10), .driver_data
= CHIP_356_VIRGE_GX2
},
1134 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8A11), .driver_data
= CHIP_357_VIRGE_GX2P
},
1135 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8A12), .driver_data
= CHIP_359_VIRGE_GX2P
},
1137 {0, 0, 0, 0, 0, 0, 0}
1141 MODULE_DEVICE_TABLE(pci
, s3_devices
);
1143 static struct pci_driver s3fb_pci_driver
= {
1145 .id_table
= s3_devices
,
1146 .probe
= s3_pci_probe
,
1147 .remove
= __devexit_p(s3_pci_remove
),
1148 .suspend
= s3_pci_suspend
,
1149 .resume
= s3_pci_resume
,
1152 /* Parse user speficied options */
1155 static int __init
s3fb_setup(char *options
)
1159 if (!options
|| !*options
)
1162 while ((opt
= strsep(&options
, ",")) != NULL
) {
1167 else if (!strncmp(opt
, "mtrr:", 5))
1168 mtrr
= simple_strtoul(opt
+ 5, NULL
, 0);
1170 else if (!strncmp(opt
, "fasttext:", 9))
1171 fasttext
= simple_strtoul(opt
+ 9, NULL
, 0);
1182 static void __exit
s3fb_cleanup(void)
1184 pr_debug("s3fb: cleaning up\n");
1185 pci_unregister_driver(&s3fb_pci_driver
);
1188 /* Driver Initialisation */
1190 static int __init
s3fb_init(void)
1194 char *option
= NULL
;
1196 if (fb_get_options("s3fb", &option
))
1201 pr_debug("s3fb: initializing\n");
1202 return pci_register_driver(&s3fb_pci_driver
);
1205 /* ------------------------------------------------------------------------- */
1207 /* Modularization */
1209 module_init(s3fb_init
);
1210 module_exit(s3fb_cleanup
);