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/module.h>
15 #include <linux/kernel.h>
16 #include <linux/errno.h>
17 #include <linux/string.h>
19 #include <linux/tty.h>
20 #include <linux/slab.h>
21 #include <linux/delay.h>
23 #include <linux/svga.h>
24 #include <linux/init.h>
25 #include <linux/pci.h>
26 #include <linux/console.h> /* Why should fb driver call console functions? because acquire_console_sem() */
27 #include <video/vga.h>
34 int chip
, rev
, mclk_freq
;
36 struct vgastate state
;
37 struct mutex open_lock
;
38 unsigned int ref_count
;
39 u32 pseudo_palette
[16];
43 /* ------------------------------------------------------------------------- */
45 static const struct svga_fb_format s3fb_formats
[] = {
46 { 0, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0,
47 FB_TYPE_TEXT
, FB_AUX_TEXT_SVGA_STEP4
, FB_VISUAL_PSEUDOCOLOR
, 8, 16},
48 { 4, {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0}, 0,
49 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_PSEUDOCOLOR
, 8, 16},
50 { 4, {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0}, 1,
51 FB_TYPE_INTERLEAVED_PLANES
, 1, FB_VISUAL_PSEUDOCOLOR
, 8, 16},
52 { 8, {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
53 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_PSEUDOCOLOR
, 4, 8},
54 {16, {10, 5, 0}, {5, 5, 0}, {0, 5, 0}, {0, 0, 0}, 0,
55 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_TRUECOLOR
, 2, 4},
56 {16, {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0}, 0,
57 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_TRUECOLOR
, 2, 4},
58 {24, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
59 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_TRUECOLOR
, 1, 2},
60 {32, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
61 FB_TYPE_PACKED_PIXELS
, 0, FB_VISUAL_TRUECOLOR
, 1, 2},
66 static const struct svga_pll s3_pll
= {3, 129, 3, 33, 0, 3,
67 35000, 240000, 14318};
69 static const int s3_memsizes
[] = {4096, 0, 3072, 8192, 2048, 6144, 1024, 512};
71 static const char * const s3_names
[] = {"S3 Unknown", "S3 Trio32", "S3 Trio64", "S3 Trio64V+",
72 "S3 Trio64UV+", "S3 Trio64V2/DX", "S3 Trio64V2/GX",
73 "S3 Plato/PX", "S3 Aurora64VP", "S3 Virge",
74 "S3 Virge/VX", "S3 Virge/DX", "S3 Virge/GX",
75 "S3 Virge/GX2", "S3 Virge/GX2P", "S3 Virge/GX2P"};
77 #define CHIP_UNKNOWN 0x00
78 #define CHIP_732_TRIO32 0x01
79 #define CHIP_764_TRIO64 0x02
80 #define CHIP_765_TRIO64VP 0x03
81 #define CHIP_767_TRIO64UVP 0x04
82 #define CHIP_775_TRIO64V2_DX 0x05
83 #define CHIP_785_TRIO64V2_GX 0x06
84 #define CHIP_551_PLATO_PX 0x07
85 #define CHIP_M65_AURORA64VP 0x08
86 #define CHIP_325_VIRGE 0x09
87 #define CHIP_988_VIRGE_VX 0x0A
88 #define CHIP_375_VIRGE_DX 0x0B
89 #define CHIP_385_VIRGE_GX 0x0C
90 #define CHIP_356_VIRGE_GX2 0x0D
91 #define CHIP_357_VIRGE_GX2P 0x0E
92 #define CHIP_359_VIRGE_GX2P 0x0F
94 #define CHIP_XXX_TRIO 0x80
95 #define CHIP_XXX_TRIO64V2_DXGX 0x81
96 #define CHIP_XXX_VIRGE_DXGX 0x82
98 #define CHIP_UNDECIDED_FLAG 0x80
99 #define CHIP_MASK 0xFF
101 /* CRT timing register sets */
103 static const struct vga_regset s3_h_total_regs
[] = {{0x00, 0, 7}, {0x5D, 0, 0}, VGA_REGSET_END
};
104 static const struct vga_regset s3_h_display_regs
[] = {{0x01, 0, 7}, {0x5D, 1, 1}, VGA_REGSET_END
};
105 static const struct vga_regset s3_h_blank_start_regs
[] = {{0x02, 0, 7}, {0x5D, 2, 2}, VGA_REGSET_END
};
106 static const struct vga_regset s3_h_blank_end_regs
[] = {{0x03, 0, 4}, {0x05, 7, 7}, VGA_REGSET_END
};
107 static const struct vga_regset s3_h_sync_start_regs
[] = {{0x04, 0, 7}, {0x5D, 4, 4}, VGA_REGSET_END
};
108 static const struct vga_regset s3_h_sync_end_regs
[] = {{0x05, 0, 4}, VGA_REGSET_END
};
110 static const struct vga_regset s3_v_total_regs
[] = {{0x06, 0, 7}, {0x07, 0, 0}, {0x07, 5, 5}, {0x5E, 0, 0}, VGA_REGSET_END
};
111 static const struct vga_regset s3_v_display_regs
[] = {{0x12, 0, 7}, {0x07, 1, 1}, {0x07, 6, 6}, {0x5E, 1, 1}, VGA_REGSET_END
};
112 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
};
113 static const struct vga_regset s3_v_blank_end_regs
[] = {{0x16, 0, 7}, VGA_REGSET_END
};
114 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
};
115 static const struct vga_regset s3_v_sync_end_regs
[] = {{0x11, 0, 3}, VGA_REGSET_END
};
117 static const struct vga_regset s3_line_compare_regs
[] = {{0x18, 0, 7}, {0x07, 4, 4}, {0x09, 6, 6}, {0x5E, 6, 6}, VGA_REGSET_END
};
118 static const struct vga_regset s3_start_address_regs
[] = {{0x0d, 0, 7}, {0x0c, 0, 7}, {0x31, 4, 5}, {0x51, 0, 1}, VGA_REGSET_END
};
119 static const struct vga_regset s3_offset_regs
[] = {{0x13, 0, 7}, {0x51, 4, 5}, VGA_REGSET_END
}; /* set 0x43 bit 2 to 0 */
121 static const struct svga_timing_regs s3_timing_regs
= {
122 s3_h_total_regs
, s3_h_display_regs
, s3_h_blank_start_regs
,
123 s3_h_blank_end_regs
, s3_h_sync_start_regs
, s3_h_sync_end_regs
,
124 s3_v_total_regs
, s3_v_display_regs
, s3_v_blank_start_regs
,
125 s3_v_blank_end_regs
, s3_v_sync_start_regs
, s3_v_sync_end_regs
,
129 /* ------------------------------------------------------------------------- */
131 /* Module parameters */
134 static char *mode_option __devinitdata
= "640x480-8@60";
137 static int mtrr __devinitdata
= 1;
140 static int fasttext
= 1;
143 MODULE_AUTHOR("(c) 2006-2007 Ondrej Zajicek <santiago@crfreenet.org>");
144 MODULE_LICENSE("GPL");
145 MODULE_DESCRIPTION("fbdev driver for S3 Trio/Virge");
147 module_param(mode_option
, charp
, 0444);
148 MODULE_PARM_DESC(mode_option
, "Default video mode ('640x480-8@60', etc)");
149 module_param_named(mode
, mode_option
, charp
, 0444);
150 MODULE_PARM_DESC(mode
, "Default video mode ('640x480-8@60', etc) (deprecated)");
153 module_param(mtrr
, int, 0444);
154 MODULE_PARM_DESC(mtrr
, "Enable write-combining with MTRR (1=enable, 0=disable, default=1)");
157 module_param(fasttext
, int, 0644);
158 MODULE_PARM_DESC(fasttext
, "Enable S3 fast text mode (1=enable, 0=disable, default=1)");
161 /* ------------------------------------------------------------------------- */
163 /* Set font in S3 fast text mode */
165 static void s3fb_settile_fast(struct fb_info
*info
, struct fb_tilemap
*map
)
167 const u8
*font
= map
->data
;
168 u8 __iomem
*fb
= (u8 __iomem
*) info
->screen_base
;
171 if ((map
->width
!= 8) || (map
->height
!= 16) ||
172 (map
->depth
!= 1) || (map
->length
!= 256)) {
173 printk(KERN_ERR
"fb%d: unsupported font parameters: width %d, height %d, depth %d, length %d\n",
174 info
->node
, map
->width
, map
->height
, map
->depth
, map
->length
);
179 for (i
= 0; i
< map
->height
; i
++) {
180 for (c
= 0; c
< map
->length
; c
++) {
181 fb_writeb(font
[c
* map
->height
+ i
], fb
+ c
* 4);
187 static struct fb_tile_ops s3fb_tile_ops
= {
188 .fb_settile
= svga_settile
,
189 .fb_tilecopy
= svga_tilecopy
,
190 .fb_tilefill
= svga_tilefill
,
191 .fb_tileblit
= svga_tileblit
,
192 .fb_tilecursor
= svga_tilecursor
,
193 .fb_get_tilemax
= svga_get_tilemax
,
196 static struct fb_tile_ops s3fb_fast_tile_ops
= {
197 .fb_settile
= s3fb_settile_fast
,
198 .fb_tilecopy
= svga_tilecopy
,
199 .fb_tilefill
= svga_tilefill
,
200 .fb_tileblit
= svga_tileblit
,
201 .fb_tilecursor
= svga_tilecursor
,
202 .fb_get_tilemax
= svga_get_tilemax
,
206 /* ------------------------------------------------------------------------- */
208 /* image data is MSB-first, fb structure is MSB-first too */
209 static inline u32
expand_color(u32 c
)
211 return ((c
& 1) | ((c
& 2) << 7) | ((c
& 4) << 14) | ((c
& 8) << 21)) * 0xFF;
214 /* s3fb_iplan_imageblit silently assumes that almost everything is 8-pixel aligned */
215 static void s3fb_iplan_imageblit(struct fb_info
*info
, const struct fb_image
*image
)
217 u32 fg
= expand_color(image
->fg_color
);
218 u32 bg
= expand_color(image
->bg_color
);
219 const u8
*src1
, *src
;
226 dst1
= info
->screen_base
+ (image
->dy
* info
->fix
.line_length
)
227 + ((image
->dx
/ 8) * 4);
229 for (y
= 0; y
< image
->height
; y
++) {
231 dst
= (u32 __iomem
*) dst1
;
232 for (x
= 0; x
< image
->width
; x
+= 8) {
233 val
= *(src
++) * 0x01010101;
234 val
= (val
& fg
) | (~val
& bg
);
235 fb_writel(val
, dst
++);
237 src1
+= image
->width
/ 8;
238 dst1
+= info
->fix
.line_length
;
243 /* s3fb_iplan_fillrect silently assumes that almost everything is 8-pixel aligned */
244 static void s3fb_iplan_fillrect(struct fb_info
*info
, const struct fb_fillrect
*rect
)
246 u32 fg
= expand_color(rect
->color
);
251 dst1
= info
->screen_base
+ (rect
->dy
* info
->fix
.line_length
)
252 + ((rect
->dx
/ 8) * 4);
254 for (y
= 0; y
< rect
->height
; y
++) {
255 dst
= (u32 __iomem
*) dst1
;
256 for (x
= 0; x
< rect
->width
; x
+= 8) {
257 fb_writel(fg
, dst
++);
259 dst1
+= info
->fix
.line_length
;
264 /* image data is MSB-first, fb structure is high-nibble-in-low-byte-first */
265 static inline u32
expand_pixel(u32 c
)
267 return (((c
& 1) << 24) | ((c
& 2) << 27) | ((c
& 4) << 14) | ((c
& 8) << 17) |
268 ((c
& 16) << 4) | ((c
& 32) << 7) | ((c
& 64) >> 6) | ((c
& 128) >> 3)) * 0xF;
271 /* s3fb_cfb4_imageblit silently assumes that almost everything is 8-pixel aligned */
272 static void s3fb_cfb4_imageblit(struct fb_info
*info
, const struct fb_image
*image
)
274 u32 fg
= image
->fg_color
* 0x11111111;
275 u32 bg
= image
->bg_color
* 0x11111111;
276 const u8
*src1
, *src
;
283 dst1
= info
->screen_base
+ (image
->dy
* info
->fix
.line_length
)
284 + ((image
->dx
/ 8) * 4);
286 for (y
= 0; y
< image
->height
; y
++) {
288 dst
= (u32 __iomem
*) dst1
;
289 for (x
= 0; x
< image
->width
; x
+= 8) {
290 val
= expand_pixel(*(src
++));
291 val
= (val
& fg
) | (~val
& bg
);
292 fb_writel(val
, dst
++);
294 src1
+= image
->width
/ 8;
295 dst1
+= info
->fix
.line_length
;
299 static void s3fb_imageblit(struct fb_info
*info
, const struct fb_image
*image
)
301 if ((info
->var
.bits_per_pixel
== 4) && (image
->depth
== 1)
302 && ((image
->width
% 8) == 0) && ((image
->dx
% 8) == 0)) {
303 if (info
->fix
.type
== FB_TYPE_INTERLEAVED_PLANES
)
304 s3fb_iplan_imageblit(info
, image
);
306 s3fb_cfb4_imageblit(info
, image
);
308 cfb_imageblit(info
, image
);
311 static void s3fb_fillrect(struct fb_info
*info
, const struct fb_fillrect
*rect
)
313 if ((info
->var
.bits_per_pixel
== 4)
314 && ((rect
->width
% 8) == 0) && ((rect
->dx
% 8) == 0)
315 && (info
->fix
.type
== FB_TYPE_INTERLEAVED_PLANES
))
316 s3fb_iplan_fillrect(info
, rect
);
318 cfb_fillrect(info
, rect
);
323 /* ------------------------------------------------------------------------- */
326 static void s3_set_pixclock(struct fb_info
*info
, u32 pixclock
)
332 rv
= svga_compute_pll(&s3_pll
, 1000000000 / pixclock
, &m
, &n
, &r
, info
->node
);
334 printk(KERN_ERR
"fb%d: cannot set requested pixclock, keeping old value\n", info
->node
);
338 /* Set VGA misc register */
339 regval
= vga_r(NULL
, VGA_MIS_R
);
340 vga_w(NULL
, VGA_MIS_W
, regval
| VGA_MIS_ENB_PLL_LOAD
);
342 /* Set S3 clock registers */
343 vga_wseq(NULL
, 0x12, ((n
- 2) | (r
<< 5)));
344 vga_wseq(NULL
, 0x13, m
- 2);
348 /* Activate clock - write 0, 1, 0 to seq/15 bit 5 */
349 regval
= vga_rseq (NULL
, 0x15); /* | 0x80; */
350 vga_wseq(NULL
, 0x15, regval
& ~(1<<5));
351 vga_wseq(NULL
, 0x15, regval
| (1<<5));
352 vga_wseq(NULL
, 0x15, regval
& ~(1<<5));
356 /* Open framebuffer */
358 static int s3fb_open(struct fb_info
*info
, int user
)
360 struct s3fb_info
*par
= info
->par
;
362 mutex_lock(&(par
->open_lock
));
363 if (par
->ref_count
== 0) {
364 memset(&(par
->state
), 0, sizeof(struct vgastate
));
365 par
->state
.flags
= VGA_SAVE_MODE
| VGA_SAVE_FONTS
| VGA_SAVE_CMAP
;
366 par
->state
.num_crtc
= 0x70;
367 par
->state
.num_seq
= 0x20;
368 save_vga(&(par
->state
));
372 mutex_unlock(&(par
->open_lock
));
377 /* Close framebuffer */
379 static int s3fb_release(struct fb_info
*info
, int user
)
381 struct s3fb_info
*par
= info
->par
;
383 mutex_lock(&(par
->open_lock
));
384 if (par
->ref_count
== 0) {
385 mutex_unlock(&(par
->open_lock
));
389 if (par
->ref_count
== 1)
390 restore_vga(&(par
->state
));
393 mutex_unlock(&(par
->open_lock
));
398 /* Validate passed in var */
400 static int s3fb_check_var(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
402 struct s3fb_info
*par
= info
->par
;
406 /* Find appropriate format */
407 rv
= svga_match_format (s3fb_formats
, var
, NULL
);
409 /* 32bpp mode is not supported on VIRGE VX,
410 24bpp is not supported on others */
411 if ((par
->chip
== CHIP_988_VIRGE_VX
) ? (rv
== 7) : (rv
== 6))
415 printk(KERN_ERR
"fb%d: unsupported mode requested\n", info
->node
);
419 /* Do not allow to have real resoulution larger than virtual */
420 if (var
->xres
> var
->xres_virtual
)
421 var
->xres_virtual
= var
->xres
;
423 if (var
->yres
> var
->yres_virtual
)
424 var
->yres_virtual
= var
->yres
;
426 /* Round up xres_virtual to have proper alignment of lines */
427 step
= s3fb_formats
[rv
].xresstep
- 1;
428 var
->xres_virtual
= (var
->xres_virtual
+step
) & ~step
;
430 /* Check whether have enough memory */
431 mem
= ((var
->bits_per_pixel
* var
->xres_virtual
) >> 3) * var
->yres_virtual
;
432 if (mem
> info
->screen_size
) {
433 printk(KERN_ERR
"fb%d: not enough framebuffer memory (%d kB requested , %d kB available)\n",
434 info
->node
, mem
>> 10, (unsigned int) (info
->screen_size
>> 10));
438 rv
= svga_check_timings (&s3_timing_regs
, var
, info
->node
);
440 printk(KERN_ERR
"fb%d: invalid timings requested\n", info
->node
);
444 rv
= svga_compute_pll(&s3_pll
, PICOS2KHZ(var
->pixclock
), &m
, &n
, &r
,
447 printk(KERN_ERR
"fb%d: invalid pixclock value requested\n",
455 /* Set video mode from par */
457 static int s3fb_set_par(struct fb_info
*info
)
459 struct s3fb_info
*par
= info
->par
;
460 u32 value
, mode
, hmul
, offset_value
, screen_size
, multiplex
;
461 u32 bpp
= info
->var
.bits_per_pixel
;
464 info
->fix
.ypanstep
= 1;
465 info
->fix
.line_length
= (info
->var
.xres_virtual
* bpp
) / 8;
467 info
->flags
&= ~FBINFO_MISC_TILEBLITTING
;
468 info
->tileops
= NULL
;
470 /* in 4bpp supports 8p wide tiles only, any tiles otherwise */
471 info
->pixmap
.blit_x
= (bpp
== 4) ? (1 << (8 - 1)) : (~(u32
)0);
472 info
->pixmap
.blit_y
= ~(u32
)0;
474 offset_value
= (info
->var
.xres_virtual
* bpp
) / 64;
475 screen_size
= info
->var
.yres_virtual
* info
->fix
.line_length
;
477 info
->fix
.ypanstep
= 16;
478 info
->fix
.line_length
= 0;
480 info
->flags
|= FBINFO_MISC_TILEBLITTING
;
481 info
->tileops
= fasttext
? &s3fb_fast_tile_ops
: &s3fb_tile_ops
;
483 /* supports 8x16 tiles only */
484 info
->pixmap
.blit_x
= 1 << (8 - 1);
485 info
->pixmap
.blit_y
= 1 << (16 - 1);
487 offset_value
= info
->var
.xres_virtual
/ 16;
488 screen_size
= (info
->var
.xres_virtual
* info
->var
.yres_virtual
) / 64;
491 info
->var
.xoffset
= 0;
492 info
->var
.yoffset
= 0;
493 info
->var
.activate
= FB_ACTIVATE_NOW
;
495 /* Unlock registers */
496 vga_wcrt(NULL
, 0x38, 0x48);
497 vga_wcrt(NULL
, 0x39, 0xA5);
498 vga_wseq(NULL
, 0x08, 0x06);
499 svga_wcrt_mask(0x11, 0x00, 0x80);
501 /* Blank screen and turn off sync */
502 svga_wseq_mask(0x01, 0x20, 0x20);
503 svga_wcrt_mask(0x17, 0x00, 0x80);
505 /* Set default values */
506 svga_set_default_gfx_regs();
507 svga_set_default_atc_regs();
508 svga_set_default_seq_regs();
509 svga_set_default_crt_regs();
510 svga_wcrt_multi(s3_line_compare_regs
, 0xFFFFFFFF);
511 svga_wcrt_multi(s3_start_address_regs
, 0);
513 /* S3 specific initialization */
514 svga_wcrt_mask(0x58, 0x10, 0x10); /* enable linear framebuffer */
515 svga_wcrt_mask(0x31, 0x08, 0x08); /* enable sequencer access to framebuffer above 256 kB */
517 /* svga_wcrt_mask(0x33, 0x08, 0x08); */ /* DDR ? */
518 /* svga_wcrt_mask(0x43, 0x01, 0x01); */ /* DDR ? */
519 svga_wcrt_mask(0x33, 0x00, 0x08); /* no DDR ? */
520 svga_wcrt_mask(0x43, 0x00, 0x01); /* no DDR ? */
522 svga_wcrt_mask(0x5D, 0x00, 0x28); // Clear strange HSlen bits
524 /* svga_wcrt_mask(0x58, 0x03, 0x03); */
526 /* svga_wcrt_mask(0x53, 0x12, 0x13); */ /* enable MMIO */
527 /* svga_wcrt_mask(0x40, 0x08, 0x08); */ /* enable write buffer */
530 /* Set the offset register */
531 pr_debug("fb%d: offset register : %d\n", info
->node
, offset_value
);
532 svga_wcrt_multi(s3_offset_regs
, offset_value
);
534 vga_wcrt(NULL
, 0x54, 0x18); /* M parameter */
535 vga_wcrt(NULL
, 0x60, 0xff); /* N parameter */
536 vga_wcrt(NULL
, 0x61, 0xff); /* L parameter */
537 vga_wcrt(NULL
, 0x62, 0xff); /* L parameter */
539 vga_wcrt(NULL
, 0x3A, 0x35);
540 svga_wattr(0x33, 0x00);
542 if (info
->var
.vmode
& FB_VMODE_DOUBLE
)
543 svga_wcrt_mask(0x09, 0x80, 0x80);
545 svga_wcrt_mask(0x09, 0x00, 0x80);
547 if (info
->var
.vmode
& FB_VMODE_INTERLACED
)
548 svga_wcrt_mask(0x42, 0x20, 0x20);
550 svga_wcrt_mask(0x42, 0x00, 0x20);
552 /* Disable hardware graphics cursor */
553 svga_wcrt_mask(0x45, 0x00, 0x01);
554 /* Disable Streams engine */
555 svga_wcrt_mask(0x67, 0x00, 0x0C);
557 mode
= svga_match_format(s3fb_formats
, &(info
->var
), &(info
->fix
));
559 /* S3 virge DX hack */
560 if (par
->chip
== CHIP_375_VIRGE_DX
) {
561 vga_wcrt(NULL
, 0x86, 0x80);
562 vga_wcrt(NULL
, 0x90, 0x00);
565 /* S3 virge VX hack */
566 if (par
->chip
== CHIP_988_VIRGE_VX
) {
567 vga_wcrt(NULL
, 0x50, 0x00);
568 vga_wcrt(NULL
, 0x67, 0x50);
570 vga_wcrt(NULL
, 0x63, (mode
<= 2) ? 0x90 : 0x09);
571 vga_wcrt(NULL
, 0x66, 0x90);
574 svga_wcrt_mask(0x31, 0x00, 0x40);
578 /* Set mode-specific register values */
581 pr_debug("fb%d: text mode\n", info
->node
);
582 svga_set_textmode_vga_regs();
584 /* Set additional registers like in 8-bit mode */
585 svga_wcrt_mask(0x50, 0x00, 0x30);
586 svga_wcrt_mask(0x67, 0x00, 0xF0);
588 /* Disable enhanced mode */
589 svga_wcrt_mask(0x3A, 0x00, 0x30);
592 pr_debug("fb%d: high speed text mode set\n", info
->node
);
593 svga_wcrt_mask(0x31, 0x40, 0x40);
597 pr_debug("fb%d: 4 bit pseudocolor\n", info
->node
);
598 vga_wgfx(NULL
, VGA_GFX_MODE
, 0x40);
600 /* Set additional registers like in 8-bit mode */
601 svga_wcrt_mask(0x50, 0x00, 0x30);
602 svga_wcrt_mask(0x67, 0x00, 0xF0);
604 /* disable enhanced mode */
605 svga_wcrt_mask(0x3A, 0x00, 0x30);
608 pr_debug("fb%d: 4 bit pseudocolor, planar\n", info
->node
);
610 /* Set additional registers like in 8-bit mode */
611 svga_wcrt_mask(0x50, 0x00, 0x30);
612 svga_wcrt_mask(0x67, 0x00, 0xF0);
614 /* disable enhanced mode */
615 svga_wcrt_mask(0x3A, 0x00, 0x30);
618 pr_debug("fb%d: 8 bit pseudocolor\n", info
->node
);
619 if (info
->var
.pixclock
> 20000) {
620 svga_wcrt_mask(0x50, 0x00, 0x30);
621 svga_wcrt_mask(0x67, 0x00, 0xF0);
623 svga_wcrt_mask(0x50, 0x00, 0x30);
624 svga_wcrt_mask(0x67, 0x10, 0xF0);
629 pr_debug("fb%d: 5/5/5 truecolor\n", info
->node
);
630 if (par
->chip
== CHIP_988_VIRGE_VX
) {
631 if (info
->var
.pixclock
> 20000)
632 svga_wcrt_mask(0x67, 0x20, 0xF0);
634 svga_wcrt_mask(0x67, 0x30, 0xF0);
636 svga_wcrt_mask(0x50, 0x10, 0x30);
637 svga_wcrt_mask(0x67, 0x30, 0xF0);
642 pr_debug("fb%d: 5/6/5 truecolor\n", info
->node
);
643 if (par
->chip
== CHIP_988_VIRGE_VX
) {
644 if (info
->var
.pixclock
> 20000)
645 svga_wcrt_mask(0x67, 0x40, 0xF0);
647 svga_wcrt_mask(0x67, 0x50, 0xF0);
649 svga_wcrt_mask(0x50, 0x10, 0x30);
650 svga_wcrt_mask(0x67, 0x50, 0xF0);
656 pr_debug("fb%d: 8/8/8 truecolor\n", info
->node
);
657 svga_wcrt_mask(0x67, 0xD0, 0xF0);
660 pr_debug("fb%d: 8/8/8/8 truecolor\n", info
->node
);
661 svga_wcrt_mask(0x50, 0x30, 0x30);
662 svga_wcrt_mask(0x67, 0xD0, 0xF0);
665 printk(KERN_ERR
"fb%d: unsupported mode - bug\n", info
->node
);
669 if (par
->chip
!= CHIP_988_VIRGE_VX
) {
670 svga_wseq_mask(0x15, multiplex
? 0x10 : 0x00, 0x10);
671 svga_wseq_mask(0x18, multiplex
? 0x80 : 0x00, 0x80);
674 s3_set_pixclock(info
, info
->var
.pixclock
);
675 svga_set_timings(&s3_timing_regs
, &(info
->var
), hmul
, 1,
676 (info
->var
.vmode
& FB_VMODE_DOUBLE
) ? 2 : 1,
677 (info
->var
.vmode
& FB_VMODE_INTERLACED
) ? 2 : 1,
680 /* Set interlaced mode start/end register */
681 value
= info
->var
.xres
+ info
->var
.left_margin
+ info
->var
.right_margin
+ info
->var
.hsync_len
;
682 value
= ((value
* hmul
) / 8) - 5;
683 vga_wcrt(NULL
, 0x3C, (value
+ 1) / 2);
685 memset_io(info
->screen_base
, 0x00, screen_size
);
686 /* Device and screen back on */
687 svga_wcrt_mask(0x17, 0x80, 0x80);
688 svga_wseq_mask(0x01, 0x00, 0x20);
693 /* Set a colour register */
695 static int s3fb_setcolreg(u_int regno
, u_int red
, u_int green
, u_int blue
,
696 u_int transp
, struct fb_info
*fb
)
698 switch (fb
->var
.bits_per_pixel
) {
704 if ((fb
->var
.bits_per_pixel
== 4) &&
705 (fb
->var
.nonstd
== 0)) {
706 outb(0xF0, VGA_PEL_MSK
);
707 outb(regno
*16, VGA_PEL_IW
);
709 outb(0x0F, VGA_PEL_MSK
);
710 outb(regno
, VGA_PEL_IW
);
712 outb(red
>> 10, VGA_PEL_D
);
713 outb(green
>> 10, VGA_PEL_D
);
714 outb(blue
>> 10, VGA_PEL_D
);
720 outb(0xFF, VGA_PEL_MSK
);
721 outb(regno
, VGA_PEL_IW
);
722 outb(red
>> 10, VGA_PEL_D
);
723 outb(green
>> 10, VGA_PEL_D
);
724 outb(blue
>> 10, VGA_PEL_D
);
730 if (fb
->var
.green
.length
== 5)
731 ((u32
*)fb
->pseudo_palette
)[regno
] = ((red
& 0xF800) >> 1) |
732 ((green
& 0xF800) >> 6) | ((blue
& 0xF800) >> 11);
733 else if (fb
->var
.green
.length
== 6)
734 ((u32
*)fb
->pseudo_palette
)[regno
] = (red
& 0xF800) |
735 ((green
& 0xFC00) >> 5) | ((blue
& 0xF800) >> 11);
743 ((u32
*)fb
->pseudo_palette
)[regno
] = ((red
& 0xFF00) << 8) |
744 (green
& 0xFF00) | ((blue
& 0xFF00) >> 8);
754 /* Set the display blanking state */
756 static int s3fb_blank(int blank_mode
, struct fb_info
*info
)
758 switch (blank_mode
) {
759 case FB_BLANK_UNBLANK
:
760 pr_debug("fb%d: unblank\n", info
->node
);
761 svga_wcrt_mask(0x56, 0x00, 0x06);
762 svga_wseq_mask(0x01, 0x00, 0x20);
764 case FB_BLANK_NORMAL
:
765 pr_debug("fb%d: blank\n", info
->node
);
766 svga_wcrt_mask(0x56, 0x00, 0x06);
767 svga_wseq_mask(0x01, 0x20, 0x20);
769 case FB_BLANK_HSYNC_SUSPEND
:
770 pr_debug("fb%d: hsync\n", info
->node
);
771 svga_wcrt_mask(0x56, 0x02, 0x06);
772 svga_wseq_mask(0x01, 0x20, 0x20);
774 case FB_BLANK_VSYNC_SUSPEND
:
775 pr_debug("fb%d: vsync\n", info
->node
);
776 svga_wcrt_mask(0x56, 0x04, 0x06);
777 svga_wseq_mask(0x01, 0x20, 0x20);
779 case FB_BLANK_POWERDOWN
:
780 pr_debug("fb%d: sync down\n", info
->node
);
781 svga_wcrt_mask(0x56, 0x06, 0x06);
782 svga_wseq_mask(0x01, 0x20, 0x20);
790 /* Pan the display */
792 static int s3fb_pan_display(struct fb_var_screeninfo
*var
, struct fb_info
*info
) {
796 /* Calculate the offset */
797 if (var
->bits_per_pixel
== 0) {
798 offset
= (var
->yoffset
/ 16) * (var
->xres_virtual
/ 2) + (var
->xoffset
/ 2);
799 offset
= offset
>> 2;
801 offset
= (var
->yoffset
* info
->fix
.line_length
) +
802 (var
->xoffset
* var
->bits_per_pixel
/ 8);
803 offset
= offset
>> 2;
807 svga_wcrt_multi(s3_start_address_regs
, offset
);
812 /* ------------------------------------------------------------------------- */
814 /* Frame buffer operations */
816 static struct fb_ops s3fb_ops
= {
817 .owner
= THIS_MODULE
,
818 .fb_open
= s3fb_open
,
819 .fb_release
= s3fb_release
,
820 .fb_check_var
= s3fb_check_var
,
821 .fb_set_par
= s3fb_set_par
,
822 .fb_setcolreg
= s3fb_setcolreg
,
823 .fb_blank
= s3fb_blank
,
824 .fb_pan_display
= s3fb_pan_display
,
825 .fb_fillrect
= s3fb_fillrect
,
826 .fb_copyarea
= cfb_copyarea
,
827 .fb_imageblit
= s3fb_imageblit
,
828 .fb_get_caps
= svga_get_caps
,
831 /* ------------------------------------------------------------------------- */
833 static int __devinit
s3_identification(int chip
)
835 if (chip
== CHIP_XXX_TRIO
) {
836 u8 cr30
= vga_rcrt(NULL
, 0x30);
837 u8 cr2e
= vga_rcrt(NULL
, 0x2e);
838 u8 cr2f
= vga_rcrt(NULL
, 0x2f);
840 if ((cr30
== 0xE0) || (cr30
== 0xE1)) {
842 return CHIP_732_TRIO32
;
845 return CHIP_764_TRIO64
;
847 return CHIP_765_TRIO64VP
;
852 if (chip
== CHIP_XXX_TRIO64V2_DXGX
) {
853 u8 cr6f
= vga_rcrt(NULL
, 0x6f);
856 return CHIP_775_TRIO64V2_DX
;
858 return CHIP_785_TRIO64V2_GX
;
861 if (chip
== CHIP_XXX_VIRGE_DXGX
) {
862 u8 cr6f
= vga_rcrt(NULL
, 0x6f);
865 return CHIP_375_VIRGE_DX
;
867 return CHIP_385_VIRGE_GX
;
876 static int __devinit
s3_pci_probe(struct pci_dev
*dev
, const struct pci_device_id
*id
)
878 struct fb_info
*info
;
879 struct s3fb_info
*par
;
881 u8 regval
, cr38
, cr39
;
883 /* Ignore secondary VGA device because there is no VGA arbitration */
884 if (! svga_primary_device(dev
)) {
885 dev_info(&(dev
->dev
), "ignoring secondary device\n");
889 /* Allocate and fill driver data structure */
890 info
= framebuffer_alloc(sizeof(struct s3fb_info
), &(dev
->dev
));
892 dev_err(&(dev
->dev
), "cannot allocate memory\n");
897 mutex_init(&par
->open_lock
);
899 info
->flags
= FBINFO_PARTIAL_PAN_OK
| FBINFO_HWACCEL_YPAN
;
900 info
->fbops
= &s3fb_ops
;
902 /* Prepare PCI device */
903 rc
= pci_enable_device(dev
);
905 dev_err(info
->device
, "cannot enable PCI device\n");
906 goto err_enable_device
;
909 rc
= pci_request_regions(dev
, "s3fb");
911 dev_err(info
->device
, "cannot reserve framebuffer region\n");
912 goto err_request_regions
;
916 info
->fix
.smem_start
= pci_resource_start(dev
, 0);
917 info
->fix
.smem_len
= pci_resource_len(dev
, 0);
919 /* Map physical IO memory address into kernel space */
920 info
->screen_base
= pci_iomap(dev
, 0, 0);
921 if (! info
->screen_base
) {
923 dev_err(info
->device
, "iomap for framebuffer failed\n");
928 cr38
= vga_rcrt(NULL
, 0x38);
929 cr39
= vga_rcrt(NULL
, 0x39);
930 vga_wseq(NULL
, 0x08, 0x06);
931 vga_wcrt(NULL
, 0x38, 0x48);
932 vga_wcrt(NULL
, 0x39, 0xA5);
934 /* Find how many physical memory there is on card */
935 /* 0x36 register is accessible even if other registers are locked */
936 regval
= vga_rcrt(NULL
, 0x36);
937 info
->screen_size
= s3_memsizes
[regval
>> 5] << 10;
938 info
->fix
.smem_len
= info
->screen_size
;
940 par
->chip
= id
->driver_data
& CHIP_MASK
;
941 par
->rev
= vga_rcrt(NULL
, 0x2f);
942 if (par
->chip
& CHIP_UNDECIDED_FLAG
)
943 par
->chip
= s3_identification(par
->chip
);
945 /* Find MCLK frequency */
946 regval
= vga_rseq(NULL
, 0x10);
947 par
->mclk_freq
= ((vga_rseq(NULL
, 0x11) + 2) * 14318) / ((regval
& 0x1F) + 2);
948 par
->mclk_freq
= par
->mclk_freq
>> (regval
>> 5);
951 vga_wcrt(NULL
, 0x38, cr38
);
952 vga_wcrt(NULL
, 0x39, cr39
);
954 strcpy(info
->fix
.id
, s3_names
[par
->chip
]);
955 info
->fix
.mmio_start
= 0;
956 info
->fix
.mmio_len
= 0;
957 info
->fix
.type
= FB_TYPE_PACKED_PIXELS
;
958 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
959 info
->fix
.ypanstep
= 0;
960 info
->fix
.accel
= FB_ACCEL_NONE
;
961 info
->pseudo_palette
= (void*) (par
->pseudo_palette
);
963 /* Prepare startup mode */
964 rc
= fb_find_mode(&(info
->var
), info
, mode_option
, NULL
, 0, NULL
, 8);
965 if (! ((rc
== 1) || (rc
== 2))) {
967 dev_err(info
->device
, "mode %s not found\n", mode_option
);
971 rc
= fb_alloc_cmap(&info
->cmap
, 256, 0);
973 dev_err(info
->device
, "cannot allocate colormap\n");
977 rc
= register_framebuffer(info
);
979 dev_err(info
->device
, "cannot register framebuffer\n");
983 printk(KERN_INFO
"fb%d: %s on %s, %d MB RAM, %d MHz MCLK\n", info
->node
, info
->fix
.id
,
984 pci_name(dev
), info
->fix
.smem_len
>> 20, (par
->mclk_freq
+ 500) / 1000);
986 if (par
->chip
== CHIP_UNKNOWN
)
987 printk(KERN_INFO
"fb%d: unknown chip, CR2D=%x, CR2E=%x, CRT2F=%x, CRT30=%x\n",
988 info
->node
, vga_rcrt(NULL
, 0x2d), vga_rcrt(NULL
, 0x2e),
989 vga_rcrt(NULL
, 0x2f), vga_rcrt(NULL
, 0x30));
991 /* Record a reference to the driver data */
992 pci_set_drvdata(dev
, info
);
997 par
->mtrr_reg
= mtrr_add(info
->fix
.smem_start
, info
->fix
.smem_len
, MTRR_TYPE_WRCOMB
, 1);
1003 /* Error handling */
1005 fb_dealloc_cmap(&info
->cmap
);
1008 pci_iounmap(dev
, info
->screen_base
);
1010 pci_release_regions(dev
);
1011 err_request_regions
:
1012 /* pci_disable_device(dev); */
1014 framebuffer_release(info
);
1021 static void __devexit
s3_pci_remove(struct pci_dev
*dev
)
1023 struct fb_info
*info
= pci_get_drvdata(dev
);
1028 struct s3fb_info
*par
= info
->par
;
1030 if (par
->mtrr_reg
>= 0) {
1031 mtrr_del(par
->mtrr_reg
, 0, 0);
1036 unregister_framebuffer(info
);
1037 fb_dealloc_cmap(&info
->cmap
);
1039 pci_iounmap(dev
, info
->screen_base
);
1040 pci_release_regions(dev
);
1041 /* pci_disable_device(dev); */
1043 pci_set_drvdata(dev
, NULL
);
1044 framebuffer_release(info
);
1050 static int s3_pci_suspend(struct pci_dev
* dev
, pm_message_t state
)
1052 struct fb_info
*info
= pci_get_drvdata(dev
);
1053 struct s3fb_info
*par
= info
->par
;
1055 dev_info(info
->device
, "suspend\n");
1057 acquire_console_sem();
1058 mutex_lock(&(par
->open_lock
));
1060 if ((state
.event
== PM_EVENT_FREEZE
) || (par
->ref_count
== 0)) {
1061 mutex_unlock(&(par
->open_lock
));
1062 release_console_sem();
1066 fb_set_suspend(info
, 1);
1068 pci_save_state(dev
);
1069 pci_disable_device(dev
);
1070 pci_set_power_state(dev
, pci_choose_state(dev
, state
));
1072 mutex_unlock(&(par
->open_lock
));
1073 release_console_sem();
1081 static int s3_pci_resume(struct pci_dev
* dev
)
1083 struct fb_info
*info
= pci_get_drvdata(dev
);
1084 struct s3fb_info
*par
= info
->par
;
1087 dev_info(info
->device
, "resume\n");
1089 acquire_console_sem();
1090 mutex_lock(&(par
->open_lock
));
1092 if (par
->ref_count
== 0) {
1093 mutex_unlock(&(par
->open_lock
));
1094 release_console_sem();
1098 pci_set_power_state(dev
, PCI_D0
);
1099 pci_restore_state(dev
);
1100 err
= pci_enable_device(dev
);
1102 mutex_unlock(&(par
->open_lock
));
1103 release_console_sem();
1104 dev_err(info
->device
, "error %d enabling device for resume\n", err
);
1107 pci_set_master(dev
);
1110 fb_set_suspend(info
, 0);
1112 mutex_unlock(&(par
->open_lock
));
1113 release_console_sem();
1119 /* List of boards that we are trying to support */
1121 static struct pci_device_id s3_devices
[] __devinitdata
= {
1122 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8810), .driver_data
= CHIP_XXX_TRIO
},
1123 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8811), .driver_data
= CHIP_XXX_TRIO
},
1124 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8812), .driver_data
= CHIP_M65_AURORA64VP
},
1125 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8814), .driver_data
= CHIP_767_TRIO64UVP
},
1126 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8901), .driver_data
= CHIP_XXX_TRIO64V2_DXGX
},
1127 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8902), .driver_data
= CHIP_551_PLATO_PX
},
1129 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x5631), .driver_data
= CHIP_325_VIRGE
},
1130 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x883D), .driver_data
= CHIP_988_VIRGE_VX
},
1131 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8A01), .driver_data
= CHIP_XXX_VIRGE_DXGX
},
1132 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8A10), .driver_data
= CHIP_356_VIRGE_GX2
},
1133 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8A11), .driver_data
= CHIP_357_VIRGE_GX2P
},
1134 {PCI_DEVICE(PCI_VENDOR_ID_S3
, 0x8A12), .driver_data
= CHIP_359_VIRGE_GX2P
},
1136 {0, 0, 0, 0, 0, 0, 0}
1140 MODULE_DEVICE_TABLE(pci
, s3_devices
);
1142 static struct pci_driver s3fb_pci_driver
= {
1144 .id_table
= s3_devices
,
1145 .probe
= s3_pci_probe
,
1146 .remove
= __devexit_p(s3_pci_remove
),
1147 .suspend
= s3_pci_suspend
,
1148 .resume
= s3_pci_resume
,
1151 /* Parse user speficied options */
1154 static int __init
s3fb_setup(char *options
)
1158 if (!options
|| !*options
)
1161 while ((opt
= strsep(&options
, ",")) != NULL
) {
1166 else if (!strncmp(opt
, "mtrr:", 5))
1167 mtrr
= simple_strtoul(opt
+ 5, NULL
, 0);
1169 else if (!strncmp(opt
, "fasttext:", 9))
1170 fasttext
= simple_strtoul(opt
+ 9, NULL
, 0);
1181 static void __exit
s3fb_cleanup(void)
1183 pr_debug("s3fb: cleaning up\n");
1184 pci_unregister_driver(&s3fb_pci_driver
);
1187 /* Driver Initialisation */
1189 static int __init
s3fb_init(void)
1193 char *option
= NULL
;
1195 if (fb_get_options("s3fb", &option
))
1200 pr_debug("s3fb: initializing\n");
1201 return pci_register_driver(&s3fb_pci_driver
);
1204 /* ------------------------------------------------------------------------- */
1206 /* Modularization */
1208 module_init(s3fb_init
);
1209 module_exit(s3fb_cleanup
);