0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #include <linux/module.h>
0015 #include <linux/kernel.h>
0016 #include <linux/errno.h>
0017 #include <linux/string.h>
0018 #include <linux/mm.h>
0019 #include <linux/tty.h>
0020 #include <linux/delay.h>
0021 #include <linux/fb.h>
0022 #include <linux/svga.h>
0023 #include <linux/init.h>
0024 #include <linux/pci.h>
0025 #include <linux/console.h> /* Why should fb driver call console functions? because console_lock() */
0026 #include <video/vga.h>
0027
0028 #include <linux/i2c.h>
0029 #include <linux/i2c-algo-bit.h>
0030
0031 struct s3fb_info {
0032 int chip, rev, mclk_freq;
0033 int wc_cookie;
0034 struct vgastate state;
0035 struct mutex open_lock;
0036 unsigned int ref_count;
0037 u32 pseudo_palette[16];
0038 #ifdef CONFIG_FB_S3_DDC
0039 u8 __iomem *mmio;
0040 bool ddc_registered;
0041 struct i2c_adapter ddc_adapter;
0042 struct i2c_algo_bit_data ddc_algo;
0043 #endif
0044 };
0045
0046
0047
0048
0049 static const struct svga_fb_format s3fb_formats[] = {
0050 { 0, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0,
0051 FB_TYPE_TEXT, FB_AUX_TEXT_SVGA_STEP4, FB_VISUAL_PSEUDOCOLOR, 8, 16},
0052 { 4, {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0}, 0,
0053 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_PSEUDOCOLOR, 8, 16},
0054 { 4, {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0}, 1,
0055 FB_TYPE_INTERLEAVED_PLANES, 1, FB_VISUAL_PSEUDOCOLOR, 8, 16},
0056 { 8, {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
0057 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_PSEUDOCOLOR, 4, 8},
0058 {16, {10, 5, 0}, {5, 5, 0}, {0, 5, 0}, {0, 0, 0}, 0,
0059 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 2, 4},
0060 {16, {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0}, 0,
0061 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 2, 4},
0062 {24, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
0063 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 1, 2},
0064 {32, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
0065 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 1, 2},
0066 SVGA_FORMAT_END
0067 };
0068
0069
0070 static const struct svga_pll s3_pll = {3, 129, 3, 33, 0, 3,
0071 35000, 240000, 14318};
0072 static const struct svga_pll s3_trio3d_pll = {3, 129, 3, 31, 0, 4,
0073 230000, 460000, 14318};
0074
0075 static const int s3_memsizes[] = {4096, 0, 3072, 8192, 2048, 6144, 1024, 512};
0076
0077 static const char * const s3_names[] = {"S3 Unknown", "S3 Trio32", "S3 Trio64", "S3 Trio64V+",
0078 "S3 Trio64UV+", "S3 Trio64V2/DX", "S3 Trio64V2/GX",
0079 "S3 Plato/PX", "S3 Aurora64V+", "S3 Virge",
0080 "S3 Virge/VX", "S3 Virge/DX", "S3 Virge/GX",
0081 "S3 Virge/GX2", "S3 Virge/GX2+", "",
0082 "S3 Trio3D/1X", "S3 Trio3D/2X", "S3 Trio3D/2X",
0083 "S3 Trio3D", "S3 Virge/MX"};
0084
0085 #define CHIP_UNKNOWN 0x00
0086 #define CHIP_732_TRIO32 0x01
0087 #define CHIP_764_TRIO64 0x02
0088 #define CHIP_765_TRIO64VP 0x03
0089 #define CHIP_767_TRIO64UVP 0x04
0090 #define CHIP_775_TRIO64V2_DX 0x05
0091 #define CHIP_785_TRIO64V2_GX 0x06
0092 #define CHIP_551_PLATO_PX 0x07
0093 #define CHIP_M65_AURORA64VP 0x08
0094 #define CHIP_325_VIRGE 0x09
0095 #define CHIP_988_VIRGE_VX 0x0A
0096 #define CHIP_375_VIRGE_DX 0x0B
0097 #define CHIP_385_VIRGE_GX 0x0C
0098 #define CHIP_357_VIRGE_GX2 0x0D
0099 #define CHIP_359_VIRGE_GX2P 0x0E
0100 #define CHIP_360_TRIO3D_1X 0x10
0101 #define CHIP_362_TRIO3D_2X 0x11
0102 #define CHIP_368_TRIO3D_2X 0x12
0103 #define CHIP_365_TRIO3D 0x13
0104 #define CHIP_260_VIRGE_MX 0x14
0105
0106 #define CHIP_XXX_TRIO 0x80
0107 #define CHIP_XXX_TRIO64V2_DXGX 0x81
0108 #define CHIP_XXX_VIRGE_DXGX 0x82
0109 #define CHIP_36X_TRIO3D_1X_2X 0x83
0110
0111 #define CHIP_UNDECIDED_FLAG 0x80
0112 #define CHIP_MASK 0xFF
0113
0114 #define MMIO_OFFSET 0x1000000
0115 #define MMIO_SIZE 0x10000
0116
0117
0118
0119 static const struct vga_regset s3_h_total_regs[] = {{0x00, 0, 7}, {0x5D, 0, 0}, VGA_REGSET_END};
0120 static const struct vga_regset s3_h_display_regs[] = {{0x01, 0, 7}, {0x5D, 1, 1}, VGA_REGSET_END};
0121 static const struct vga_regset s3_h_blank_start_regs[] = {{0x02, 0, 7}, {0x5D, 2, 2}, VGA_REGSET_END};
0122 static const struct vga_regset s3_h_blank_end_regs[] = {{0x03, 0, 4}, {0x05, 7, 7}, VGA_REGSET_END};
0123 static const struct vga_regset s3_h_sync_start_regs[] = {{0x04, 0, 7}, {0x5D, 4, 4}, VGA_REGSET_END};
0124 static const struct vga_regset s3_h_sync_end_regs[] = {{0x05, 0, 4}, VGA_REGSET_END};
0125
0126 static const struct vga_regset s3_v_total_regs[] = {{0x06, 0, 7}, {0x07, 0, 0}, {0x07, 5, 5}, {0x5E, 0, 0}, VGA_REGSET_END};
0127 static const struct vga_regset s3_v_display_regs[] = {{0x12, 0, 7}, {0x07, 1, 1}, {0x07, 6, 6}, {0x5E, 1, 1}, VGA_REGSET_END};
0128 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};
0129 static const struct vga_regset s3_v_blank_end_regs[] = {{0x16, 0, 7}, VGA_REGSET_END};
0130 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};
0131 static const struct vga_regset s3_v_sync_end_regs[] = {{0x11, 0, 3}, VGA_REGSET_END};
0132
0133 static const struct vga_regset s3_line_compare_regs[] = {{0x18, 0, 7}, {0x07, 4, 4}, {0x09, 6, 6}, {0x5E, 6, 6}, VGA_REGSET_END};
0134 static const struct vga_regset s3_start_address_regs[] = {{0x0d, 0, 7}, {0x0c, 0, 7}, {0x69, 0, 4}, VGA_REGSET_END};
0135 static const struct vga_regset s3_offset_regs[] = {{0x13, 0, 7}, {0x51, 4, 5}, VGA_REGSET_END};
0136
0137 static const struct vga_regset s3_dtpc_regs[] = {{0x3B, 0, 7}, {0x5D, 6, 6}, VGA_REGSET_END};
0138
0139 static const struct svga_timing_regs s3_timing_regs = {
0140 s3_h_total_regs, s3_h_display_regs, s3_h_blank_start_regs,
0141 s3_h_blank_end_regs, s3_h_sync_start_regs, s3_h_sync_end_regs,
0142 s3_v_total_regs, s3_v_display_regs, s3_v_blank_start_regs,
0143 s3_v_blank_end_regs, s3_v_sync_start_regs, s3_v_sync_end_regs,
0144 };
0145
0146
0147
0148
0149
0150
0151
0152 static char *mode_option;
0153 static int mtrr = 1;
0154 static int fasttext = 1;
0155
0156
0157 MODULE_AUTHOR("(c) 2006-2007 Ondrej Zajicek <santiago@crfreenet.org>");
0158 MODULE_LICENSE("GPL");
0159 MODULE_DESCRIPTION("fbdev driver for S3 Trio/Virge");
0160
0161 module_param(mode_option, charp, 0444);
0162 MODULE_PARM_DESC(mode_option, "Default video mode ('640x480-8@60', etc)");
0163 module_param_named(mode, mode_option, charp, 0444);
0164 MODULE_PARM_DESC(mode, "Default video mode ('640x480-8@60', etc) (deprecated)");
0165 module_param(mtrr, int, 0444);
0166 MODULE_PARM_DESC(mtrr, "Enable write-combining with MTRR (1=enable, 0=disable, default=1)");
0167
0168 module_param(fasttext, int, 0644);
0169 MODULE_PARM_DESC(fasttext, "Enable S3 fast text mode (1=enable, 0=disable, default=1)");
0170
0171
0172
0173
0174 #ifdef CONFIG_FB_S3_DDC
0175
0176 #define DDC_REG 0xaa
0177 #define DDC_MMIO_REG 0xff20
0178 #define DDC_SCL_OUT (1 << 0)
0179 #define DDC_SDA_OUT (1 << 1)
0180 #define DDC_SCL_IN (1 << 2)
0181 #define DDC_SDA_IN (1 << 3)
0182 #define DDC_DRIVE_EN (1 << 4)
0183
0184 static bool s3fb_ddc_needs_mmio(int chip)
0185 {
0186 return !(chip == CHIP_360_TRIO3D_1X ||
0187 chip == CHIP_362_TRIO3D_2X ||
0188 chip == CHIP_368_TRIO3D_2X);
0189 }
0190
0191 static u8 s3fb_ddc_read(struct s3fb_info *par)
0192 {
0193 if (s3fb_ddc_needs_mmio(par->chip))
0194 return readb(par->mmio + DDC_MMIO_REG);
0195 else
0196 return vga_rcrt(par->state.vgabase, DDC_REG);
0197 }
0198
0199 static void s3fb_ddc_write(struct s3fb_info *par, u8 val)
0200 {
0201 if (s3fb_ddc_needs_mmio(par->chip))
0202 writeb(val, par->mmio + DDC_MMIO_REG);
0203 else
0204 vga_wcrt(par->state.vgabase, DDC_REG, val);
0205 }
0206
0207 static void s3fb_ddc_setscl(void *data, int val)
0208 {
0209 struct s3fb_info *par = data;
0210 unsigned char reg;
0211
0212 reg = s3fb_ddc_read(par) | DDC_DRIVE_EN;
0213 if (val)
0214 reg |= DDC_SCL_OUT;
0215 else
0216 reg &= ~DDC_SCL_OUT;
0217 s3fb_ddc_write(par, reg);
0218 }
0219
0220 static void s3fb_ddc_setsda(void *data, int val)
0221 {
0222 struct s3fb_info *par = data;
0223 unsigned char reg;
0224
0225 reg = s3fb_ddc_read(par) | DDC_DRIVE_EN;
0226 if (val)
0227 reg |= DDC_SDA_OUT;
0228 else
0229 reg &= ~DDC_SDA_OUT;
0230 s3fb_ddc_write(par, reg);
0231 }
0232
0233 static int s3fb_ddc_getscl(void *data)
0234 {
0235 struct s3fb_info *par = data;
0236
0237 return !!(s3fb_ddc_read(par) & DDC_SCL_IN);
0238 }
0239
0240 static int s3fb_ddc_getsda(void *data)
0241 {
0242 struct s3fb_info *par = data;
0243
0244 return !!(s3fb_ddc_read(par) & DDC_SDA_IN);
0245 }
0246
0247 static int s3fb_setup_ddc_bus(struct fb_info *info)
0248 {
0249 struct s3fb_info *par = info->par;
0250
0251 strscpy(par->ddc_adapter.name, info->fix.id,
0252 sizeof(par->ddc_adapter.name));
0253 par->ddc_adapter.owner = THIS_MODULE;
0254 par->ddc_adapter.class = I2C_CLASS_DDC;
0255 par->ddc_adapter.algo_data = &par->ddc_algo;
0256 par->ddc_adapter.dev.parent = info->device;
0257 par->ddc_algo.setsda = s3fb_ddc_setsda;
0258 par->ddc_algo.setscl = s3fb_ddc_setscl;
0259 par->ddc_algo.getsda = s3fb_ddc_getsda;
0260 par->ddc_algo.getscl = s3fb_ddc_getscl;
0261 par->ddc_algo.udelay = 10;
0262 par->ddc_algo.timeout = 20;
0263 par->ddc_algo.data = par;
0264
0265 i2c_set_adapdata(&par->ddc_adapter, par);
0266
0267
0268
0269
0270
0271
0272 if (par->chip == CHIP_357_VIRGE_GX2 ||
0273 par->chip == CHIP_359_VIRGE_GX2P ||
0274 par->chip == CHIP_260_VIRGE_MX)
0275 svga_wseq_mask(par->state.vgabase, 0x0d, 0x01, 0x03);
0276 else
0277 svga_wseq_mask(par->state.vgabase, 0x0d, 0x00, 0x03);
0278
0279 svga_wcrt_mask(par->state.vgabase, 0x5c, 0x03, 0x03);
0280
0281 return i2c_bit_add_bus(&par->ddc_adapter);
0282 }
0283 #endif
0284
0285
0286
0287
0288
0289
0290 static void s3fb_settile_fast(struct fb_info *info, struct fb_tilemap *map)
0291 {
0292 const u8 *font = map->data;
0293 u8 __iomem *fb = (u8 __iomem *) info->screen_base;
0294 int i, c;
0295
0296 if ((map->width != 8) || (map->height != 16) ||
0297 (map->depth != 1) || (map->length != 256)) {
0298 fb_err(info, "unsupported font parameters: width %d, height %d, depth %d, length %d\n",
0299 map->width, map->height, map->depth, map->length);
0300 return;
0301 }
0302
0303 fb += 2;
0304 for (i = 0; i < map->height; i++) {
0305 for (c = 0; c < map->length; c++) {
0306 fb_writeb(font[c * map->height + i], fb + c * 4);
0307 }
0308 fb += 1024;
0309 }
0310 }
0311
0312 static void s3fb_tilecursor(struct fb_info *info, struct fb_tilecursor *cursor)
0313 {
0314 struct s3fb_info *par = info->par;
0315
0316 svga_tilecursor(par->state.vgabase, info, cursor);
0317 }
0318
0319 static struct fb_tile_ops s3fb_tile_ops = {
0320 .fb_settile = svga_settile,
0321 .fb_tilecopy = svga_tilecopy,
0322 .fb_tilefill = svga_tilefill,
0323 .fb_tileblit = svga_tileblit,
0324 .fb_tilecursor = s3fb_tilecursor,
0325 .fb_get_tilemax = svga_get_tilemax,
0326 };
0327
0328 static struct fb_tile_ops s3fb_fast_tile_ops = {
0329 .fb_settile = s3fb_settile_fast,
0330 .fb_tilecopy = svga_tilecopy,
0331 .fb_tilefill = svga_tilefill,
0332 .fb_tileblit = svga_tileblit,
0333 .fb_tilecursor = s3fb_tilecursor,
0334 .fb_get_tilemax = svga_get_tilemax,
0335 };
0336
0337
0338
0339
0340
0341 static inline u32 expand_color(u32 c)
0342 {
0343 return ((c & 1) | ((c & 2) << 7) | ((c & 4) << 14) | ((c & 8) << 21)) * 0xFF;
0344 }
0345
0346
0347 static void s3fb_iplan_imageblit(struct fb_info *info, const struct fb_image *image)
0348 {
0349 u32 fg = expand_color(image->fg_color);
0350 u32 bg = expand_color(image->bg_color);
0351 const u8 *src1, *src;
0352 u8 __iomem *dst1;
0353 u32 __iomem *dst;
0354 u32 val;
0355 int x, y;
0356
0357 src1 = image->data;
0358 dst1 = info->screen_base + (image->dy * info->fix.line_length)
0359 + ((image->dx / 8) * 4);
0360
0361 for (y = 0; y < image->height; y++) {
0362 src = src1;
0363 dst = (u32 __iomem *) dst1;
0364 for (x = 0; x < image->width; x += 8) {
0365 val = *(src++) * 0x01010101;
0366 val = (val & fg) | (~val & bg);
0367 fb_writel(val, dst++);
0368 }
0369 src1 += image->width / 8;
0370 dst1 += info->fix.line_length;
0371 }
0372
0373 }
0374
0375
0376 static void s3fb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
0377 {
0378 u32 fg = expand_color(rect->color);
0379 u8 __iomem *dst1;
0380 u32 __iomem *dst;
0381 int x, y;
0382
0383 dst1 = info->screen_base + (rect->dy * info->fix.line_length)
0384 + ((rect->dx / 8) * 4);
0385
0386 for (y = 0; y < rect->height; y++) {
0387 dst = (u32 __iomem *) dst1;
0388 for (x = 0; x < rect->width; x += 8) {
0389 fb_writel(fg, dst++);
0390 }
0391 dst1 += info->fix.line_length;
0392 }
0393 }
0394
0395
0396
0397 static inline u32 expand_pixel(u32 c)
0398 {
0399 return (((c & 1) << 24) | ((c & 2) << 27) | ((c & 4) << 14) | ((c & 8) << 17) |
0400 ((c & 16) << 4) | ((c & 32) << 7) | ((c & 64) >> 6) | ((c & 128) >> 3)) * 0xF;
0401 }
0402
0403
0404 static void s3fb_cfb4_imageblit(struct fb_info *info, const struct fb_image *image)
0405 {
0406 u32 fg = image->fg_color * 0x11111111;
0407 u32 bg = image->bg_color * 0x11111111;
0408 const u8 *src1, *src;
0409 u8 __iomem *dst1;
0410 u32 __iomem *dst;
0411 u32 val;
0412 int x, y;
0413
0414 src1 = image->data;
0415 dst1 = info->screen_base + (image->dy * info->fix.line_length)
0416 + ((image->dx / 8) * 4);
0417
0418 for (y = 0; y < image->height; y++) {
0419 src = src1;
0420 dst = (u32 __iomem *) dst1;
0421 for (x = 0; x < image->width; x += 8) {
0422 val = expand_pixel(*(src++));
0423 val = (val & fg) | (~val & bg);
0424 fb_writel(val, dst++);
0425 }
0426 src1 += image->width / 8;
0427 dst1 += info->fix.line_length;
0428 }
0429 }
0430
0431 static void s3fb_imageblit(struct fb_info *info, const struct fb_image *image)
0432 {
0433 if ((info->var.bits_per_pixel == 4) && (image->depth == 1)
0434 && ((image->width % 8) == 0) && ((image->dx % 8) == 0)) {
0435 if (info->fix.type == FB_TYPE_INTERLEAVED_PLANES)
0436 s3fb_iplan_imageblit(info, image);
0437 else
0438 s3fb_cfb4_imageblit(info, image);
0439 } else
0440 cfb_imageblit(info, image);
0441 }
0442
0443 static void s3fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
0444 {
0445 if ((info->var.bits_per_pixel == 4)
0446 && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
0447 && (info->fix.type == FB_TYPE_INTERLEAVED_PLANES))
0448 s3fb_iplan_fillrect(info, rect);
0449 else
0450 cfb_fillrect(info, rect);
0451 }
0452
0453
0454
0455
0456
0457
0458 static void s3_set_pixclock(struct fb_info *info, u32 pixclock)
0459 {
0460 struct s3fb_info *par = info->par;
0461 u16 m, n, r;
0462 u8 regval;
0463 int rv;
0464
0465 rv = svga_compute_pll((par->chip == CHIP_365_TRIO3D) ? &s3_trio3d_pll : &s3_pll,
0466 1000000000 / pixclock, &m, &n, &r, info->node);
0467 if (rv < 0) {
0468 fb_err(info, "cannot set requested pixclock, keeping old value\n");
0469 return;
0470 }
0471
0472
0473 regval = vga_r(par->state.vgabase, VGA_MIS_R);
0474 vga_w(par->state.vgabase, VGA_MIS_W, regval | VGA_MIS_ENB_PLL_LOAD);
0475
0476
0477 if (par->chip == CHIP_357_VIRGE_GX2 ||
0478 par->chip == CHIP_359_VIRGE_GX2P ||
0479 par->chip == CHIP_360_TRIO3D_1X ||
0480 par->chip == CHIP_362_TRIO3D_2X ||
0481 par->chip == CHIP_368_TRIO3D_2X ||
0482 par->chip == CHIP_260_VIRGE_MX) {
0483 vga_wseq(par->state.vgabase, 0x12, (n - 2) | ((r & 3) << 6));
0484 vga_wseq(par->state.vgabase, 0x29, r >> 2);
0485 } else
0486 vga_wseq(par->state.vgabase, 0x12, (n - 2) | (r << 5));
0487 vga_wseq(par->state.vgabase, 0x13, m - 2);
0488
0489 udelay(1000);
0490
0491
0492 regval = vga_rseq (par->state.vgabase, 0x15);
0493 vga_wseq(par->state.vgabase, 0x15, regval & ~(1<<5));
0494 vga_wseq(par->state.vgabase, 0x15, regval | (1<<5));
0495 vga_wseq(par->state.vgabase, 0x15, regval & ~(1<<5));
0496 }
0497
0498
0499
0500
0501 static int s3fb_open(struct fb_info *info, int user)
0502 {
0503 struct s3fb_info *par = info->par;
0504
0505 mutex_lock(&(par->open_lock));
0506 if (par->ref_count == 0) {
0507 void __iomem *vgabase = par->state.vgabase;
0508
0509 memset(&(par->state), 0, sizeof(struct vgastate));
0510 par->state.vgabase = vgabase;
0511 par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS | VGA_SAVE_CMAP;
0512 par->state.num_crtc = 0x70;
0513 par->state.num_seq = 0x20;
0514 save_vga(&(par->state));
0515 }
0516
0517 par->ref_count++;
0518 mutex_unlock(&(par->open_lock));
0519
0520 return 0;
0521 }
0522
0523
0524
0525 static int s3fb_release(struct fb_info *info, int user)
0526 {
0527 struct s3fb_info *par = info->par;
0528
0529 mutex_lock(&(par->open_lock));
0530 if (par->ref_count == 0) {
0531 mutex_unlock(&(par->open_lock));
0532 return -EINVAL;
0533 }
0534
0535 if (par->ref_count == 1)
0536 restore_vga(&(par->state));
0537
0538 par->ref_count--;
0539 mutex_unlock(&(par->open_lock));
0540
0541 return 0;
0542 }
0543
0544
0545
0546 static int s3fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
0547 {
0548 struct s3fb_info *par = info->par;
0549 int rv, mem, step;
0550 u16 m, n, r;
0551
0552 if (!var->pixclock)
0553 return -EINVAL;
0554
0555
0556 rv = svga_match_format (s3fb_formats, var, NULL);
0557
0558
0559
0560 if ((par->chip == CHIP_988_VIRGE_VX) ? (rv == 7) : (rv == 6))
0561 rv = -EINVAL;
0562
0563 if (rv < 0) {
0564 fb_err(info, "unsupported mode requested\n");
0565 return rv;
0566 }
0567
0568
0569 if (var->xres > var->xres_virtual)
0570 var->xres_virtual = var->xres;
0571
0572 if (var->yres > var->yres_virtual)
0573 var->yres_virtual = var->yres;
0574
0575
0576 step = s3fb_formats[rv].xresstep - 1;
0577 var->xres_virtual = (var->xres_virtual+step) & ~step;
0578
0579
0580 mem = ((var->bits_per_pixel * var->xres_virtual) >> 3) * var->yres_virtual;
0581 if (mem > info->screen_size) {
0582 fb_err(info, "not enough framebuffer memory (%d kB requested , %u kB available)\n",
0583 mem >> 10, (unsigned int) (info->screen_size >> 10));
0584 return -EINVAL;
0585 }
0586
0587 rv = svga_check_timings (&s3_timing_regs, var, info->node);
0588 if (rv < 0) {
0589 fb_err(info, "invalid timings requested\n");
0590 return rv;
0591 }
0592
0593 rv = svga_compute_pll(&s3_pll, PICOS2KHZ(var->pixclock), &m, &n, &r,
0594 info->node);
0595 if (rv < 0) {
0596 fb_err(info, "invalid pixclock value requested\n");
0597 return rv;
0598 }
0599
0600 return 0;
0601 }
0602
0603
0604
0605 static int s3fb_set_par(struct fb_info *info)
0606 {
0607 struct s3fb_info *par = info->par;
0608 u32 value, mode, hmul, offset_value, screen_size, multiplex, dbytes;
0609 u32 bpp = info->var.bits_per_pixel;
0610 u32 htotal, hsstart;
0611
0612 if (bpp != 0) {
0613 info->fix.ypanstep = 1;
0614 info->fix.line_length = (info->var.xres_virtual * bpp) / 8;
0615
0616 info->flags &= ~FBINFO_MISC_TILEBLITTING;
0617 info->tileops = NULL;
0618
0619
0620 info->pixmap.blit_x = (bpp == 4) ? (1 << (8 - 1)) : (~(u32)0);
0621 info->pixmap.blit_y = ~(u32)0;
0622
0623 offset_value = (info->var.xres_virtual * bpp) / 64;
0624 screen_size = info->var.yres_virtual * info->fix.line_length;
0625 } else {
0626 info->fix.ypanstep = 16;
0627 info->fix.line_length = 0;
0628
0629 info->flags |= FBINFO_MISC_TILEBLITTING;
0630 info->tileops = fasttext ? &s3fb_fast_tile_ops : &s3fb_tile_ops;
0631
0632
0633 info->pixmap.blit_x = 1 << (8 - 1);
0634 info->pixmap.blit_y = 1 << (16 - 1);
0635
0636 offset_value = info->var.xres_virtual / 16;
0637 screen_size = (info->var.xres_virtual * info->var.yres_virtual) / 64;
0638 }
0639
0640 info->var.xoffset = 0;
0641 info->var.yoffset = 0;
0642 info->var.activate = FB_ACTIVATE_NOW;
0643
0644
0645 vga_wcrt(par->state.vgabase, 0x38, 0x48);
0646 vga_wcrt(par->state.vgabase, 0x39, 0xA5);
0647 vga_wseq(par->state.vgabase, 0x08, 0x06);
0648 svga_wcrt_mask(par->state.vgabase, 0x11, 0x00, 0x80);
0649
0650
0651 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
0652 svga_wcrt_mask(par->state.vgabase, 0x17, 0x00, 0x80);
0653
0654
0655 svga_set_default_gfx_regs(par->state.vgabase);
0656 svga_set_default_atc_regs(par->state.vgabase);
0657 svga_set_default_seq_regs(par->state.vgabase);
0658 svga_set_default_crt_regs(par->state.vgabase);
0659 svga_wcrt_multi(par->state.vgabase, s3_line_compare_regs, 0xFFFFFFFF);
0660 svga_wcrt_multi(par->state.vgabase, s3_start_address_regs, 0);
0661
0662
0663 svga_wcrt_mask(par->state.vgabase, 0x58, 0x10, 0x10);
0664 svga_wcrt_mask(par->state.vgabase, 0x31, 0x08, 0x08);
0665
0666
0667
0668 svga_wcrt_mask(par->state.vgabase, 0x33, 0x00, 0x08);
0669 svga_wcrt_mask(par->state.vgabase, 0x43, 0x00, 0x01);
0670
0671 svga_wcrt_mask(par->state.vgabase, 0x5D, 0x00, 0x28);
0672
0673
0674
0675
0676
0677
0678
0679
0680 fb_dbg(info, "offset register : %d\n", offset_value);
0681 svga_wcrt_multi(par->state.vgabase, s3_offset_regs, offset_value);
0682
0683 if (par->chip != CHIP_357_VIRGE_GX2 &&
0684 par->chip != CHIP_359_VIRGE_GX2P &&
0685 par->chip != CHIP_360_TRIO3D_1X &&
0686 par->chip != CHIP_362_TRIO3D_2X &&
0687 par->chip != CHIP_368_TRIO3D_2X &&
0688 par->chip != CHIP_260_VIRGE_MX) {
0689 vga_wcrt(par->state.vgabase, 0x54, 0x18);
0690 vga_wcrt(par->state.vgabase, 0x60, 0xff);
0691 vga_wcrt(par->state.vgabase, 0x61, 0xff);
0692 vga_wcrt(par->state.vgabase, 0x62, 0xff);
0693 }
0694
0695 vga_wcrt(par->state.vgabase, 0x3A, 0x35);
0696 svga_wattr(par->state.vgabase, 0x33, 0x00);
0697
0698 if (info->var.vmode & FB_VMODE_DOUBLE)
0699 svga_wcrt_mask(par->state.vgabase, 0x09, 0x80, 0x80);
0700 else
0701 svga_wcrt_mask(par->state.vgabase, 0x09, 0x00, 0x80);
0702
0703 if (info->var.vmode & FB_VMODE_INTERLACED)
0704 svga_wcrt_mask(par->state.vgabase, 0x42, 0x20, 0x20);
0705 else
0706 svga_wcrt_mask(par->state.vgabase, 0x42, 0x00, 0x20);
0707
0708
0709 svga_wcrt_mask(par->state.vgabase, 0x45, 0x00, 0x01);
0710
0711 svga_wcrt_mask(par->state.vgabase, 0x67, 0x00, 0x0C);
0712
0713 mode = svga_match_format(s3fb_formats, &(info->var), &(info->fix));
0714
0715
0716 if (par->chip == CHIP_375_VIRGE_DX) {
0717 vga_wcrt(par->state.vgabase, 0x86, 0x80);
0718 vga_wcrt(par->state.vgabase, 0x90, 0x00);
0719 }
0720
0721
0722 if (par->chip == CHIP_988_VIRGE_VX) {
0723 vga_wcrt(par->state.vgabase, 0x50, 0x00);
0724 vga_wcrt(par->state.vgabase, 0x67, 0x50);
0725 msleep(10);
0726 vga_wcrt(par->state.vgabase, 0x63, (mode <= 2) ? 0x90 : 0x09);
0727 vga_wcrt(par->state.vgabase, 0x66, 0x90);
0728 }
0729
0730 if (par->chip == CHIP_357_VIRGE_GX2 ||
0731 par->chip == CHIP_359_VIRGE_GX2P ||
0732 par->chip == CHIP_360_TRIO3D_1X ||
0733 par->chip == CHIP_362_TRIO3D_2X ||
0734 par->chip == CHIP_368_TRIO3D_2X ||
0735 par->chip == CHIP_365_TRIO3D ||
0736 par->chip == CHIP_375_VIRGE_DX ||
0737 par->chip == CHIP_385_VIRGE_GX ||
0738 par->chip == CHIP_260_VIRGE_MX) {
0739 dbytes = info->var.xres * ((bpp+7)/8);
0740 vga_wcrt(par->state.vgabase, 0x91, (dbytes + 7) / 8);
0741 vga_wcrt(par->state.vgabase, 0x90, (((dbytes + 7) / 8) >> 8) | 0x80);
0742
0743 vga_wcrt(par->state.vgabase, 0x66, 0x81);
0744 }
0745
0746 if (par->chip == CHIP_357_VIRGE_GX2 ||
0747 par->chip == CHIP_359_VIRGE_GX2P ||
0748 par->chip == CHIP_360_TRIO3D_1X ||
0749 par->chip == CHIP_362_TRIO3D_2X ||
0750 par->chip == CHIP_368_TRIO3D_2X ||
0751 par->chip == CHIP_260_VIRGE_MX)
0752 vga_wcrt(par->state.vgabase, 0x34, 0x00);
0753 else
0754 vga_wcrt(par->state.vgabase, 0x34, 0x10);
0755
0756 svga_wcrt_mask(par->state.vgabase, 0x31, 0x00, 0x40);
0757 multiplex = 0;
0758 hmul = 1;
0759
0760
0761 switch (mode) {
0762 case 0:
0763 fb_dbg(info, "text mode\n");
0764 svga_set_textmode_vga_regs(par->state.vgabase);
0765
0766
0767 svga_wcrt_mask(par->state.vgabase, 0x50, 0x00, 0x30);
0768 svga_wcrt_mask(par->state.vgabase, 0x67, 0x00, 0xF0);
0769
0770
0771 svga_wcrt_mask(par->state.vgabase, 0x3A, 0x00, 0x30);
0772
0773 if (fasttext) {
0774 fb_dbg(info, "high speed text mode set\n");
0775 svga_wcrt_mask(par->state.vgabase, 0x31, 0x40, 0x40);
0776 }
0777 break;
0778 case 1:
0779 fb_dbg(info, "4 bit pseudocolor\n");
0780 vga_wgfx(par->state.vgabase, VGA_GFX_MODE, 0x40);
0781
0782
0783 svga_wcrt_mask(par->state.vgabase, 0x50, 0x00, 0x30);
0784 svga_wcrt_mask(par->state.vgabase, 0x67, 0x00, 0xF0);
0785
0786
0787 svga_wcrt_mask(par->state.vgabase, 0x3A, 0x00, 0x30);
0788 break;
0789 case 2:
0790 fb_dbg(info, "4 bit pseudocolor, planar\n");
0791
0792
0793 svga_wcrt_mask(par->state.vgabase, 0x50, 0x00, 0x30);
0794 svga_wcrt_mask(par->state.vgabase, 0x67, 0x00, 0xF0);
0795
0796
0797 svga_wcrt_mask(par->state.vgabase, 0x3A, 0x00, 0x30);
0798 break;
0799 case 3:
0800 fb_dbg(info, "8 bit pseudocolor\n");
0801 svga_wcrt_mask(par->state.vgabase, 0x50, 0x00, 0x30);
0802 if (info->var.pixclock > 20000 ||
0803 par->chip == CHIP_357_VIRGE_GX2 ||
0804 par->chip == CHIP_359_VIRGE_GX2P ||
0805 par->chip == CHIP_360_TRIO3D_1X ||
0806 par->chip == CHIP_362_TRIO3D_2X ||
0807 par->chip == CHIP_368_TRIO3D_2X ||
0808 par->chip == CHIP_260_VIRGE_MX)
0809 svga_wcrt_mask(par->state.vgabase, 0x67, 0x00, 0xF0);
0810 else {
0811 svga_wcrt_mask(par->state.vgabase, 0x67, 0x10, 0xF0);
0812 multiplex = 1;
0813 }
0814 break;
0815 case 4:
0816 fb_dbg(info, "5/5/5 truecolor\n");
0817 if (par->chip == CHIP_988_VIRGE_VX) {
0818 if (info->var.pixclock > 20000)
0819 svga_wcrt_mask(par->state.vgabase, 0x67, 0x20, 0xF0);
0820 else
0821 svga_wcrt_mask(par->state.vgabase, 0x67, 0x30, 0xF0);
0822 } else if (par->chip == CHIP_365_TRIO3D) {
0823 svga_wcrt_mask(par->state.vgabase, 0x50, 0x10, 0x30);
0824 if (info->var.pixclock > 8695) {
0825 svga_wcrt_mask(par->state.vgabase, 0x67, 0x30, 0xF0);
0826 hmul = 2;
0827 } else {
0828 svga_wcrt_mask(par->state.vgabase, 0x67, 0x20, 0xF0);
0829 multiplex = 1;
0830 }
0831 } else {
0832 svga_wcrt_mask(par->state.vgabase, 0x50, 0x10, 0x30);
0833 svga_wcrt_mask(par->state.vgabase, 0x67, 0x30, 0xF0);
0834 if (par->chip != CHIP_357_VIRGE_GX2 &&
0835 par->chip != CHIP_359_VIRGE_GX2P &&
0836 par->chip != CHIP_360_TRIO3D_1X &&
0837 par->chip != CHIP_362_TRIO3D_2X &&
0838 par->chip != CHIP_368_TRIO3D_2X &&
0839 par->chip != CHIP_260_VIRGE_MX)
0840 hmul = 2;
0841 }
0842 break;
0843 case 5:
0844 fb_dbg(info, "5/6/5 truecolor\n");
0845 if (par->chip == CHIP_988_VIRGE_VX) {
0846 if (info->var.pixclock > 20000)
0847 svga_wcrt_mask(par->state.vgabase, 0x67, 0x40, 0xF0);
0848 else
0849 svga_wcrt_mask(par->state.vgabase, 0x67, 0x50, 0xF0);
0850 } else if (par->chip == CHIP_365_TRIO3D) {
0851 svga_wcrt_mask(par->state.vgabase, 0x50, 0x10, 0x30);
0852 if (info->var.pixclock > 8695) {
0853 svga_wcrt_mask(par->state.vgabase, 0x67, 0x50, 0xF0);
0854 hmul = 2;
0855 } else {
0856 svga_wcrt_mask(par->state.vgabase, 0x67, 0x40, 0xF0);
0857 multiplex = 1;
0858 }
0859 } else {
0860 svga_wcrt_mask(par->state.vgabase, 0x50, 0x10, 0x30);
0861 svga_wcrt_mask(par->state.vgabase, 0x67, 0x50, 0xF0);
0862 if (par->chip != CHIP_357_VIRGE_GX2 &&
0863 par->chip != CHIP_359_VIRGE_GX2P &&
0864 par->chip != CHIP_360_TRIO3D_1X &&
0865 par->chip != CHIP_362_TRIO3D_2X &&
0866 par->chip != CHIP_368_TRIO3D_2X &&
0867 par->chip != CHIP_260_VIRGE_MX)
0868 hmul = 2;
0869 }
0870 break;
0871 case 6:
0872
0873 fb_dbg(info, "8/8/8 truecolor\n");
0874 svga_wcrt_mask(par->state.vgabase, 0x67, 0xD0, 0xF0);
0875 break;
0876 case 7:
0877 fb_dbg(info, "8/8/8/8 truecolor\n");
0878 svga_wcrt_mask(par->state.vgabase, 0x50, 0x30, 0x30);
0879 svga_wcrt_mask(par->state.vgabase, 0x67, 0xD0, 0xF0);
0880 break;
0881 default:
0882 fb_err(info, "unsupported mode - bug\n");
0883 return -EINVAL;
0884 }
0885
0886 if (par->chip != CHIP_988_VIRGE_VX) {
0887 svga_wseq_mask(par->state.vgabase, 0x15, multiplex ? 0x10 : 0x00, 0x10);
0888 svga_wseq_mask(par->state.vgabase, 0x18, multiplex ? 0x80 : 0x00, 0x80);
0889 }
0890
0891 s3_set_pixclock(info, info->var.pixclock);
0892 svga_set_timings(par->state.vgabase, &s3_timing_regs, &(info->var), hmul, 1,
0893 (info->var.vmode & FB_VMODE_DOUBLE) ? 2 : 1,
0894 (info->var.vmode & FB_VMODE_INTERLACED) ? 2 : 1,
0895 hmul, info->node);
0896
0897
0898 htotal = info->var.xres + info->var.left_margin + info->var.right_margin + info->var.hsync_len;
0899 htotal = ((htotal * hmul) / 8) - 5;
0900 vga_wcrt(par->state.vgabase, 0x3C, (htotal + 1) / 2);
0901
0902
0903 hsstart = ((info->var.xres + info->var.right_margin) * hmul) / 8;
0904
0905 value = clamp((htotal + hsstart + 1) / 2 + 2, hsstart + 4, htotal + 1);
0906 svga_wcrt_multi(par->state.vgabase, s3_dtpc_regs, value);
0907
0908 if (screen_size > info->screen_size)
0909 screen_size = info->screen_size;
0910 memset_io(info->screen_base, 0x00, screen_size);
0911
0912 svga_wcrt_mask(par->state.vgabase, 0x17, 0x80, 0x80);
0913 svga_wseq_mask(par->state.vgabase, 0x01, 0x00, 0x20);
0914
0915 return 0;
0916 }
0917
0918
0919
0920 static int s3fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
0921 u_int transp, struct fb_info *fb)
0922 {
0923 switch (fb->var.bits_per_pixel) {
0924 case 0:
0925 case 4:
0926 if (regno >= 16)
0927 return -EINVAL;
0928
0929 if ((fb->var.bits_per_pixel == 4) &&
0930 (fb->var.nonstd == 0)) {
0931 outb(0xF0, VGA_PEL_MSK);
0932 outb(regno*16, VGA_PEL_IW);
0933 } else {
0934 outb(0x0F, VGA_PEL_MSK);
0935 outb(regno, VGA_PEL_IW);
0936 }
0937 outb(red >> 10, VGA_PEL_D);
0938 outb(green >> 10, VGA_PEL_D);
0939 outb(blue >> 10, VGA_PEL_D);
0940 break;
0941 case 8:
0942 if (regno >= 256)
0943 return -EINVAL;
0944
0945 outb(0xFF, VGA_PEL_MSK);
0946 outb(regno, VGA_PEL_IW);
0947 outb(red >> 10, VGA_PEL_D);
0948 outb(green >> 10, VGA_PEL_D);
0949 outb(blue >> 10, VGA_PEL_D);
0950 break;
0951 case 16:
0952 if (regno >= 16)
0953 return 0;
0954
0955 if (fb->var.green.length == 5)
0956 ((u32*)fb->pseudo_palette)[regno] = ((red & 0xF800) >> 1) |
0957 ((green & 0xF800) >> 6) | ((blue & 0xF800) >> 11);
0958 else if (fb->var.green.length == 6)
0959 ((u32*)fb->pseudo_palette)[regno] = (red & 0xF800) |
0960 ((green & 0xFC00) >> 5) | ((blue & 0xF800) >> 11);
0961 else return -EINVAL;
0962 break;
0963 case 24:
0964 case 32:
0965 if (regno >= 16)
0966 return 0;
0967
0968 ((u32*)fb->pseudo_palette)[regno] = ((red & 0xFF00) << 8) |
0969 (green & 0xFF00) | ((blue & 0xFF00) >> 8);
0970 break;
0971 default:
0972 return -EINVAL;
0973 }
0974
0975 return 0;
0976 }
0977
0978
0979
0980
0981 static int s3fb_blank(int blank_mode, struct fb_info *info)
0982 {
0983 struct s3fb_info *par = info->par;
0984
0985 switch (blank_mode) {
0986 case FB_BLANK_UNBLANK:
0987 fb_dbg(info, "unblank\n");
0988 svga_wcrt_mask(par->state.vgabase, 0x56, 0x00, 0x06);
0989 svga_wseq_mask(par->state.vgabase, 0x01, 0x00, 0x20);
0990 break;
0991 case FB_BLANK_NORMAL:
0992 fb_dbg(info, "blank\n");
0993 svga_wcrt_mask(par->state.vgabase, 0x56, 0x00, 0x06);
0994 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
0995 break;
0996 case FB_BLANK_HSYNC_SUSPEND:
0997 fb_dbg(info, "hsync\n");
0998 svga_wcrt_mask(par->state.vgabase, 0x56, 0x02, 0x06);
0999 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
1000 break;
1001 case FB_BLANK_VSYNC_SUSPEND:
1002 fb_dbg(info, "vsync\n");
1003 svga_wcrt_mask(par->state.vgabase, 0x56, 0x04, 0x06);
1004 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
1005 break;
1006 case FB_BLANK_POWERDOWN:
1007 fb_dbg(info, "sync down\n");
1008 svga_wcrt_mask(par->state.vgabase, 0x56, 0x06, 0x06);
1009 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
1010 break;
1011 }
1012
1013 return 0;
1014 }
1015
1016
1017
1018
1019 static int s3fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
1020 {
1021 struct s3fb_info *par = info->par;
1022 unsigned int offset;
1023
1024
1025 if (info->var.bits_per_pixel == 0) {
1026 offset = (var->yoffset / 16) * (info->var.xres_virtual / 2)
1027 + (var->xoffset / 2);
1028 offset = offset >> 2;
1029 } else {
1030 offset = (var->yoffset * info->fix.line_length) +
1031 (var->xoffset * info->var.bits_per_pixel / 8);
1032 offset = offset >> 2;
1033 }
1034
1035
1036 svga_wcrt_multi(par->state.vgabase, s3_start_address_regs, offset);
1037
1038 return 0;
1039 }
1040
1041
1042
1043
1044
1045 static const struct fb_ops s3fb_ops = {
1046 .owner = THIS_MODULE,
1047 .fb_open = s3fb_open,
1048 .fb_release = s3fb_release,
1049 .fb_check_var = s3fb_check_var,
1050 .fb_set_par = s3fb_set_par,
1051 .fb_setcolreg = s3fb_setcolreg,
1052 .fb_blank = s3fb_blank,
1053 .fb_pan_display = s3fb_pan_display,
1054 .fb_fillrect = s3fb_fillrect,
1055 .fb_copyarea = cfb_copyarea,
1056 .fb_imageblit = s3fb_imageblit,
1057 .fb_get_caps = svga_get_caps,
1058 };
1059
1060
1061
1062 static int s3_identification(struct s3fb_info *par)
1063 {
1064 int chip = par->chip;
1065
1066 if (chip == CHIP_XXX_TRIO) {
1067 u8 cr30 = vga_rcrt(par->state.vgabase, 0x30);
1068 u8 cr2e = vga_rcrt(par->state.vgabase, 0x2e);
1069 u8 cr2f = vga_rcrt(par->state.vgabase, 0x2f);
1070
1071 if ((cr30 == 0xE0) || (cr30 == 0xE1)) {
1072 if (cr2e == 0x10)
1073 return CHIP_732_TRIO32;
1074 if (cr2e == 0x11) {
1075 if (! (cr2f & 0x40))
1076 return CHIP_764_TRIO64;
1077 else
1078 return CHIP_765_TRIO64VP;
1079 }
1080 }
1081 }
1082
1083 if (chip == CHIP_XXX_TRIO64V2_DXGX) {
1084 u8 cr6f = vga_rcrt(par->state.vgabase, 0x6f);
1085
1086 if (! (cr6f & 0x01))
1087 return CHIP_775_TRIO64V2_DX;
1088 else
1089 return CHIP_785_TRIO64V2_GX;
1090 }
1091
1092 if (chip == CHIP_XXX_VIRGE_DXGX) {
1093 u8 cr6f = vga_rcrt(par->state.vgabase, 0x6f);
1094
1095 if (! (cr6f & 0x01))
1096 return CHIP_375_VIRGE_DX;
1097 else
1098 return CHIP_385_VIRGE_GX;
1099 }
1100
1101 if (chip == CHIP_36X_TRIO3D_1X_2X) {
1102 switch (vga_rcrt(par->state.vgabase, 0x2f)) {
1103 case 0x00:
1104 return CHIP_360_TRIO3D_1X;
1105 case 0x01:
1106 return CHIP_362_TRIO3D_2X;
1107 case 0x02:
1108 return CHIP_368_TRIO3D_2X;
1109 }
1110 }
1111
1112 return CHIP_UNKNOWN;
1113 }
1114
1115
1116
1117
1118 static int s3_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
1119 {
1120 struct pci_bus_region bus_reg;
1121 struct resource vga_res;
1122 struct fb_info *info;
1123 struct s3fb_info *par;
1124 int rc;
1125 u8 regval, cr38, cr39;
1126 bool found = false;
1127
1128
1129 if (! svga_primary_device(dev)) {
1130 dev_info(&(dev->dev), "ignoring secondary device\n");
1131 return -ENODEV;
1132 }
1133
1134
1135 info = framebuffer_alloc(sizeof(struct s3fb_info), &(dev->dev));
1136 if (!info)
1137 return -ENOMEM;
1138
1139 par = info->par;
1140 mutex_init(&par->open_lock);
1141
1142 info->flags = FBINFO_PARTIAL_PAN_OK | FBINFO_HWACCEL_YPAN;
1143 info->fbops = &s3fb_ops;
1144
1145
1146 rc = pci_enable_device(dev);
1147 if (rc < 0) {
1148 dev_err(info->device, "cannot enable PCI device\n");
1149 goto err_enable_device;
1150 }
1151
1152 rc = pci_request_regions(dev, "s3fb");
1153 if (rc < 0) {
1154 dev_err(info->device, "cannot reserve framebuffer region\n");
1155 goto err_request_regions;
1156 }
1157
1158
1159 info->fix.smem_start = pci_resource_start(dev, 0);
1160 info->fix.smem_len = pci_resource_len(dev, 0);
1161
1162
1163 info->screen_base = pci_iomap_wc(dev, 0, 0);
1164 if (! info->screen_base) {
1165 rc = -ENOMEM;
1166 dev_err(info->device, "iomap for framebuffer failed\n");
1167 goto err_iomap;
1168 }
1169
1170 bus_reg.start = 0;
1171 bus_reg.end = 64 * 1024;
1172
1173 vga_res.flags = IORESOURCE_IO;
1174
1175 pcibios_bus_to_resource(dev->bus, &vga_res, &bus_reg);
1176
1177 par->state.vgabase = (void __iomem *) (unsigned long) vga_res.start;
1178
1179
1180 cr38 = vga_rcrt(par->state.vgabase, 0x38);
1181 cr39 = vga_rcrt(par->state.vgabase, 0x39);
1182 vga_wseq(par->state.vgabase, 0x08, 0x06);
1183 vga_wcrt(par->state.vgabase, 0x38, 0x48);
1184 vga_wcrt(par->state.vgabase, 0x39, 0xA5);
1185
1186
1187 par->chip = id->driver_data & CHIP_MASK;
1188 par->rev = vga_rcrt(par->state.vgabase, 0x2f);
1189 if (par->chip & CHIP_UNDECIDED_FLAG)
1190 par->chip = s3_identification(par);
1191
1192
1193
1194 regval = vga_rcrt(par->state.vgabase, 0x36);
1195 if (par->chip == CHIP_360_TRIO3D_1X ||
1196 par->chip == CHIP_362_TRIO3D_2X ||
1197 par->chip == CHIP_368_TRIO3D_2X ||
1198 par->chip == CHIP_365_TRIO3D) {
1199 switch ((regval & 0xE0) >> 5) {
1200 case 0:
1201 case 1:
1202 case 2:
1203 info->screen_size = 4 << 20;
1204 break;
1205 case 4:
1206 case 6:
1207 info->screen_size = 2 << 20;
1208 break;
1209 }
1210 } else if (par->chip == CHIP_357_VIRGE_GX2 ||
1211 par->chip == CHIP_359_VIRGE_GX2P ||
1212 par->chip == CHIP_260_VIRGE_MX) {
1213 switch ((regval & 0xC0) >> 6) {
1214 case 1:
1215 info->screen_size = 4 << 20;
1216 break;
1217 case 3:
1218 info->screen_size = 2 << 20;
1219 break;
1220 }
1221 } else if (par->chip == CHIP_988_VIRGE_VX) {
1222 switch ((regval & 0x60) >> 5) {
1223 case 0:
1224 info->screen_size = 2 << 20;
1225 break;
1226 case 1:
1227 info->screen_size = 4 << 20;
1228 break;
1229 case 2:
1230 info->screen_size = 6 << 20;
1231 break;
1232 case 3:
1233 info->screen_size = 8 << 20;
1234 break;
1235 }
1236
1237 regval = vga_rcrt(par->state.vgabase, 0x37);
1238 switch ((regval & 0x60) >> 5) {
1239 case 1:
1240 info->screen_size -= 4 << 20;
1241 break;
1242 case 2:
1243 info->screen_size -= 2 << 20;
1244 break;
1245 }
1246 } else
1247 info->screen_size = s3_memsizes[regval >> 5] << 10;
1248 info->fix.smem_len = info->screen_size;
1249
1250
1251 regval = vga_rseq(par->state.vgabase, 0x10);
1252 par->mclk_freq = ((vga_rseq(par->state.vgabase, 0x11) + 2) * 14318) / ((regval & 0x1F) + 2);
1253 par->mclk_freq = par->mclk_freq >> (regval >> 5);
1254
1255
1256 vga_wcrt(par->state.vgabase, 0x38, cr38);
1257 vga_wcrt(par->state.vgabase, 0x39, cr39);
1258
1259 strcpy(info->fix.id, s3_names [par->chip]);
1260 info->fix.mmio_start = 0;
1261 info->fix.mmio_len = 0;
1262 info->fix.type = FB_TYPE_PACKED_PIXELS;
1263 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
1264 info->fix.ypanstep = 0;
1265 info->fix.accel = FB_ACCEL_NONE;
1266 info->pseudo_palette = (void*) (par->pseudo_palette);
1267 info->var.bits_per_pixel = 8;
1268
1269 #ifdef CONFIG_FB_S3_DDC
1270
1271 if (s3fb_ddc_needs_mmio(par->chip)) {
1272 par->mmio = ioremap(info->fix.smem_start + MMIO_OFFSET, MMIO_SIZE);
1273 if (par->mmio)
1274 svga_wcrt_mask(par->state.vgabase, 0x53, 0x08, 0x08);
1275 else
1276 dev_err(info->device, "unable to map MMIO at 0x%lx, disabling DDC",
1277 info->fix.smem_start + MMIO_OFFSET);
1278 }
1279 if (!s3fb_ddc_needs_mmio(par->chip) || par->mmio)
1280 if (s3fb_setup_ddc_bus(info) == 0) {
1281 u8 *edid = fb_ddc_read(&par->ddc_adapter);
1282 par->ddc_registered = true;
1283 if (edid) {
1284 fb_edid_to_monspecs(edid, &info->monspecs);
1285 kfree(edid);
1286 if (!info->monspecs.modedb)
1287 dev_err(info->device, "error getting mode database\n");
1288 else {
1289 const struct fb_videomode *m;
1290
1291 fb_videomode_to_modelist(info->monspecs.modedb,
1292 info->monspecs.modedb_len,
1293 &info->modelist);
1294 m = fb_find_best_display(&info->monspecs, &info->modelist);
1295 if (m) {
1296 fb_videomode_to_var(&info->var, m);
1297
1298 if (s3fb_check_var(&info->var, info) == 0)
1299 found = true;
1300 }
1301 }
1302 }
1303 }
1304 #endif
1305 if (!mode_option && !found)
1306 mode_option = "640x480-8@60";
1307
1308
1309 if (mode_option) {
1310 rc = fb_find_mode(&info->var, info, mode_option,
1311 info->monspecs.modedb, info->monspecs.modedb_len,
1312 NULL, info->var.bits_per_pixel);
1313 if (!rc || rc == 4) {
1314 rc = -EINVAL;
1315 dev_err(info->device, "mode %s not found\n", mode_option);
1316 fb_destroy_modedb(info->monspecs.modedb);
1317 info->monspecs.modedb = NULL;
1318 goto err_find_mode;
1319 }
1320 }
1321
1322 fb_destroy_modedb(info->monspecs.modedb);
1323 info->monspecs.modedb = NULL;
1324
1325
1326 info->var.yres_virtual = info->fix.smem_len * 8 /
1327 (info->var.bits_per_pixel * info->var.xres_virtual);
1328 if (info->var.yres_virtual < info->var.yres) {
1329 dev_err(info->device, "virtual vertical size smaller than real\n");
1330 rc = -EINVAL;
1331 goto err_find_mode;
1332 }
1333
1334 rc = fb_alloc_cmap(&info->cmap, 256, 0);
1335 if (rc < 0) {
1336 dev_err(info->device, "cannot allocate colormap\n");
1337 goto err_alloc_cmap;
1338 }
1339
1340 rc = register_framebuffer(info);
1341 if (rc < 0) {
1342 dev_err(info->device, "cannot register framebuffer\n");
1343 goto err_reg_fb;
1344 }
1345
1346 fb_info(info, "%s on %s, %d MB RAM, %d MHz MCLK\n",
1347 info->fix.id, pci_name(dev),
1348 info->fix.smem_len >> 20, (par->mclk_freq + 500) / 1000);
1349
1350 if (par->chip == CHIP_UNKNOWN)
1351 fb_info(info, "unknown chip, CR2D=%x, CR2E=%x, CRT2F=%x, CRT30=%x\n",
1352 vga_rcrt(par->state.vgabase, 0x2d),
1353 vga_rcrt(par->state.vgabase, 0x2e),
1354 vga_rcrt(par->state.vgabase, 0x2f),
1355 vga_rcrt(par->state.vgabase, 0x30));
1356
1357
1358 pci_set_drvdata(dev, info);
1359
1360 if (mtrr)
1361 par->wc_cookie = arch_phys_wc_add(info->fix.smem_start,
1362 info->fix.smem_len);
1363
1364 return 0;
1365
1366
1367 err_reg_fb:
1368 fb_dealloc_cmap(&info->cmap);
1369 err_alloc_cmap:
1370 err_find_mode:
1371 #ifdef CONFIG_FB_S3_DDC
1372 if (par->ddc_registered)
1373 i2c_del_adapter(&par->ddc_adapter);
1374 if (par->mmio)
1375 iounmap(par->mmio);
1376 #endif
1377 pci_iounmap(dev, info->screen_base);
1378 err_iomap:
1379 pci_release_regions(dev);
1380 err_request_regions:
1381
1382 err_enable_device:
1383 framebuffer_release(info);
1384 return rc;
1385 }
1386
1387
1388
1389
1390 static void s3_pci_remove(struct pci_dev *dev)
1391 {
1392 struct fb_info *info = pci_get_drvdata(dev);
1393 struct s3fb_info __maybe_unused *par;
1394
1395 if (info) {
1396 par = info->par;
1397 arch_phys_wc_del(par->wc_cookie);
1398 unregister_framebuffer(info);
1399 fb_dealloc_cmap(&info->cmap);
1400
1401 #ifdef CONFIG_FB_S3_DDC
1402 if (par->ddc_registered)
1403 i2c_del_adapter(&par->ddc_adapter);
1404 if (par->mmio)
1405 iounmap(par->mmio);
1406 #endif
1407
1408 pci_iounmap(dev, info->screen_base);
1409 pci_release_regions(dev);
1410
1411
1412 framebuffer_release(info);
1413 }
1414 }
1415
1416
1417
1418 static int __maybe_unused s3_pci_suspend(struct device *dev)
1419 {
1420 struct fb_info *info = dev_get_drvdata(dev);
1421 struct s3fb_info *par = info->par;
1422
1423 dev_info(info->device, "suspend\n");
1424
1425 console_lock();
1426 mutex_lock(&(par->open_lock));
1427
1428 if (par->ref_count == 0) {
1429 mutex_unlock(&(par->open_lock));
1430 console_unlock();
1431 return 0;
1432 }
1433
1434 fb_set_suspend(info, 1);
1435
1436 mutex_unlock(&(par->open_lock));
1437 console_unlock();
1438
1439 return 0;
1440 }
1441
1442
1443
1444
1445 static int __maybe_unused s3_pci_resume(struct device *dev)
1446 {
1447 struct fb_info *info = dev_get_drvdata(dev);
1448 struct s3fb_info *par = info->par;
1449
1450 dev_info(info->device, "resume\n");
1451
1452 console_lock();
1453 mutex_lock(&(par->open_lock));
1454
1455 if (par->ref_count == 0) {
1456 mutex_unlock(&(par->open_lock));
1457 console_unlock();
1458 return 0;
1459 }
1460
1461 s3fb_set_par(info);
1462 fb_set_suspend(info, 0);
1463
1464 mutex_unlock(&(par->open_lock));
1465 console_unlock();
1466
1467 return 0;
1468 }
1469
1470 static const struct dev_pm_ops s3_pci_pm_ops = {
1471 #ifdef CONFIG_PM_SLEEP
1472 .suspend = s3_pci_suspend,
1473 .resume = s3_pci_resume,
1474 .freeze = NULL,
1475 .thaw = s3_pci_resume,
1476 .poweroff = s3_pci_suspend,
1477 .restore = s3_pci_resume,
1478 #endif
1479 };
1480
1481
1482
1483 static const struct pci_device_id s3_devices[] = {
1484 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8810), .driver_data = CHIP_XXX_TRIO},
1485 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8811), .driver_data = CHIP_XXX_TRIO},
1486 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8812), .driver_data = CHIP_M65_AURORA64VP},
1487 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8814), .driver_data = CHIP_767_TRIO64UVP},
1488 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8901), .driver_data = CHIP_XXX_TRIO64V2_DXGX},
1489 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8902), .driver_data = CHIP_551_PLATO_PX},
1490
1491 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x5631), .driver_data = CHIP_325_VIRGE},
1492 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x883D), .driver_data = CHIP_988_VIRGE_VX},
1493 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8A01), .driver_data = CHIP_XXX_VIRGE_DXGX},
1494 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8A10), .driver_data = CHIP_357_VIRGE_GX2},
1495 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8A11), .driver_data = CHIP_359_VIRGE_GX2P},
1496 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8A12), .driver_data = CHIP_359_VIRGE_GX2P},
1497 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8A13), .driver_data = CHIP_36X_TRIO3D_1X_2X},
1498 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8904), .driver_data = CHIP_365_TRIO3D},
1499 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8C01), .driver_data = CHIP_260_VIRGE_MX},
1500
1501 {0, 0, 0, 0, 0, 0, 0}
1502 };
1503
1504
1505 MODULE_DEVICE_TABLE(pci, s3_devices);
1506
1507 static struct pci_driver s3fb_pci_driver = {
1508 .name = "s3fb",
1509 .id_table = s3_devices,
1510 .probe = s3_pci_probe,
1511 .remove = s3_pci_remove,
1512 .driver.pm = &s3_pci_pm_ops,
1513 };
1514
1515
1516
1517 #ifndef MODULE
1518 static int __init s3fb_setup(char *options)
1519 {
1520 char *opt;
1521
1522 if (!options || !*options)
1523 return 0;
1524
1525 while ((opt = strsep(&options, ",")) != NULL) {
1526
1527 if (!*opt)
1528 continue;
1529 else if (!strncmp(opt, "mtrr:", 5))
1530 mtrr = simple_strtoul(opt + 5, NULL, 0);
1531 else if (!strncmp(opt, "fasttext:", 9))
1532 fasttext = simple_strtoul(opt + 9, NULL, 0);
1533 else
1534 mode_option = opt;
1535 }
1536
1537 return 0;
1538 }
1539 #endif
1540
1541
1542
1543 static void __exit s3fb_cleanup(void)
1544 {
1545 pr_debug("s3fb: cleaning up\n");
1546 pci_unregister_driver(&s3fb_pci_driver);
1547 }
1548
1549
1550
1551 static int __init s3fb_init(void)
1552 {
1553
1554 #ifndef MODULE
1555 char *option = NULL;
1556
1557 if (fb_get_options("s3fb", &option))
1558 return -ENODEV;
1559 s3fb_setup(option);
1560 #endif
1561
1562 pr_debug("s3fb: initializing\n");
1563 return pci_register_driver(&s3fb_pci_driver);
1564 }
1565
1566
1567
1568
1569
1570 module_init(s3fb_init);
1571 module_exit(s3fb_cleanup);