blob: 9a3f8f1c6aabdc9d14220c223cb97a735a799497 [file] [log] [blame]
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001/*
2 * linux/drivers/video/s3fb.c -- Frame buffer device driver for S3 Trio/Virge
3 *
4 * Copyright (c) 2006-2007 Ondrej Zajicek <santiago@crfreenet.org>
5 *
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
8 * more details.
9 *
10 * Code is based on David Boucher's viafb (http://davesdomain.org.uk/viafb/)
11 * which is based on the code of neofb.
12 */
13
Ondrej Zajiceka2684222007-02-12 00:54:49 -080014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/errno.h>
17#include <linux/string.h>
18#include <linux/mm.h>
19#include <linux/tty.h>
Ondrej Zajiceka2684222007-02-12 00:54:49 -080020#include <linux/delay.h>
21#include <linux/fb.h>
22#include <linux/svga.h>
23#include <linux/init.h>
24#include <linux/pci.h>
Torben Hohnac751ef2011-01-25 15:07:35 -080025#include <linux/console.h> /* Why should fb driver call console functions? because console_lock() */
Ondrej Zajiceka2684222007-02-12 00:54:49 -080026#include <video/vga.h>
27
Ondrej Zary86c0f0432011-04-18 10:14:57 +000028#include <linux/i2c.h>
29#include <linux/i2c-algo-bit.h>
30
Ondrej Zajiceka2684222007-02-12 00:54:49 -080031#ifdef CONFIG_MTRR
32#include <asm/mtrr.h>
33#endif
34
35struct s3fb_info {
36 int chip, rev, mclk_freq;
37 int mtrr_reg;
38 struct vgastate state;
39 struct mutex open_lock;
40 unsigned int ref_count;
41 u32 pseudo_palette[16];
Ondrej Zary86c0f0432011-04-18 10:14:57 +000042#ifdef CONFIG_FB_S3_DDC
43 u8 __iomem *mmio;
44 bool ddc_registered;
45 struct i2c_adapter ddc_adapter;
46 struct i2c_algo_bit_data ddc_algo;
47#endif
Ondrej Zajiceka2684222007-02-12 00:54:49 -080048};
49
50
51/* ------------------------------------------------------------------------- */
52
53static const struct svga_fb_format s3fb_formats[] = {
54 { 0, {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0}, 0,
55 FB_TYPE_TEXT, FB_AUX_TEXT_SVGA_STEP4, FB_VISUAL_PSEUDOCOLOR, 8, 16},
Michal Januszewskic26d7b22009-04-13 14:39:49 -070056 { 4, {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0}, 0,
Ondrej Zajiceka2684222007-02-12 00:54:49 -080057 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_PSEUDOCOLOR, 8, 16},
Michal Januszewskic26d7b22009-04-13 14:39:49 -070058 { 4, {0, 4, 0}, {0, 4, 0}, {0, 4, 0}, {0, 0, 0}, 1,
Ondrej Zajiceka2684222007-02-12 00:54:49 -080059 FB_TYPE_INTERLEAVED_PLANES, 1, FB_VISUAL_PSEUDOCOLOR, 8, 16},
Michal Januszewskic26d7b22009-04-13 14:39:49 -070060 { 8, {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
Ondrej Zajiceka2684222007-02-12 00:54:49 -080061 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_PSEUDOCOLOR, 4, 8},
62 {16, {10, 5, 0}, {5, 5, 0}, {0, 5, 0}, {0, 0, 0}, 0,
63 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 2, 4},
64 {16, {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0}, 0,
65 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 2, 4},
66 {24, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
67 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 1, 2},
68 {32, {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0}, 0,
69 FB_TYPE_PACKED_PIXELS, 0, FB_VISUAL_TRUECOLOR, 1, 2},
70 SVGA_FORMAT_END
71};
72
73
74static const struct svga_pll s3_pll = {3, 129, 3, 33, 0, 3,
Ondrej Zajicek249bdbb2007-05-08 00:39:24 -070075 35000, 240000, 14318};
Ondrej Zary5694f9c2011-03-01 19:18:17 +000076static const struct svga_pll s3_trio3d_pll = {3, 129, 3, 31, 0, 4,
77 230000, 460000, 14318};
Ondrej Zajiceka2684222007-02-12 00:54:49 -080078
79static const int s3_memsizes[] = {4096, 0, 3072, 8192, 2048, 6144, 1024, 512};
80
81static const char * const s3_names[] = {"S3 Unknown", "S3 Trio32", "S3 Trio64", "S3 Trio64V+",
82 "S3 Trio64UV+", "S3 Trio64V2/DX", "S3 Trio64V2/GX",
Ondrej Zary94e948e2011-03-29 19:07:08 +000083 "S3 Plato/PX", "S3 Aurora64V+", "S3 Virge",
Ondrej Zajiceka2684222007-02-12 00:54:49 -080084 "S3 Virge/VX", "S3 Virge/DX", "S3 Virge/GX",
Ondrej Zary94e948e2011-03-29 19:07:08 +000085 "S3 Virge/GX2", "S3 Virge/GX2+", "",
Ondrej Zary5694f9c2011-03-01 19:18:17 +000086 "S3 Trio3D/1X", "S3 Trio3D/2X", "S3 Trio3D/2X",
Ondrej Zary6fcdbc02012-07-06 15:12:11 +020087 "S3 Trio3D", "S3 Virge/MX"};
Ondrej Zajiceka2684222007-02-12 00:54:49 -080088
89#define CHIP_UNKNOWN 0x00
90#define CHIP_732_TRIO32 0x01
91#define CHIP_764_TRIO64 0x02
92#define CHIP_765_TRIO64VP 0x03
93#define CHIP_767_TRIO64UVP 0x04
94#define CHIP_775_TRIO64V2_DX 0x05
95#define CHIP_785_TRIO64V2_GX 0x06
96#define CHIP_551_PLATO_PX 0x07
97#define CHIP_M65_AURORA64VP 0x08
98#define CHIP_325_VIRGE 0x09
99#define CHIP_988_VIRGE_VX 0x0A
100#define CHIP_375_VIRGE_DX 0x0B
101#define CHIP_385_VIRGE_GX 0x0C
Ondrej Zary94e948e2011-03-29 19:07:08 +0000102#define CHIP_357_VIRGE_GX2 0x0D
103#define CHIP_359_VIRGE_GX2P 0x0E
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700104#define CHIP_360_TRIO3D_1X 0x10
105#define CHIP_362_TRIO3D_2X 0x11
106#define CHIP_368_TRIO3D_2X 0x12
Ondrej Zary5694f9c2011-03-01 19:18:17 +0000107#define CHIP_365_TRIO3D 0x13
Ondrej Zary6fcdbc02012-07-06 15:12:11 +0200108#define CHIP_260_VIRGE_MX 0x14
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800109
110#define CHIP_XXX_TRIO 0x80
111#define CHIP_XXX_TRIO64V2_DXGX 0x81
112#define CHIP_XXX_VIRGE_DXGX 0x82
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700113#define CHIP_36X_TRIO3D_1X_2X 0x83
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800114
115#define CHIP_UNDECIDED_FLAG 0x80
116#define CHIP_MASK 0xFF
117
Ondrej Zary86c0f0432011-04-18 10:14:57 +0000118#define MMIO_OFFSET 0x1000000
119#define MMIO_SIZE 0x10000
120
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800121/* CRT timing register sets */
122
123static const struct vga_regset s3_h_total_regs[] = {{0x00, 0, 7}, {0x5D, 0, 0}, VGA_REGSET_END};
124static const struct vga_regset s3_h_display_regs[] = {{0x01, 0, 7}, {0x5D, 1, 1}, VGA_REGSET_END};
125static const struct vga_regset s3_h_blank_start_regs[] = {{0x02, 0, 7}, {0x5D, 2, 2}, VGA_REGSET_END};
126static const struct vga_regset s3_h_blank_end_regs[] = {{0x03, 0, 4}, {0x05, 7, 7}, VGA_REGSET_END};
127static const struct vga_regset s3_h_sync_start_regs[] = {{0x04, 0, 7}, {0x5D, 4, 4}, VGA_REGSET_END};
128static const struct vga_regset s3_h_sync_end_regs[] = {{0x05, 0, 4}, VGA_REGSET_END};
129
130static const struct vga_regset s3_v_total_regs[] = {{0x06, 0, 7}, {0x07, 0, 0}, {0x07, 5, 5}, {0x5E, 0, 0}, VGA_REGSET_END};
131static const struct vga_regset s3_v_display_regs[] = {{0x12, 0, 7}, {0x07, 1, 1}, {0x07, 6, 6}, {0x5E, 1, 1}, VGA_REGSET_END};
132static const struct vga_regset s3_v_blank_start_regs[] = {{0x15, 0, 7}, {0x07, 3, 3}, {0x09, 5, 5}, {0x5E, 2, 2}, VGA_REGSET_END};
133static const struct vga_regset s3_v_blank_end_regs[] = {{0x16, 0, 7}, VGA_REGSET_END};
134static const struct vga_regset s3_v_sync_start_regs[] = {{0x10, 0, 7}, {0x07, 2, 2}, {0x07, 7, 7}, {0x5E, 4, 4}, VGA_REGSET_END};
135static const struct vga_regset s3_v_sync_end_regs[] = {{0x11, 0, 3}, VGA_REGSET_END};
136
137static const struct vga_regset s3_line_compare_regs[] = {{0x18, 0, 7}, {0x07, 4, 4}, {0x09, 6, 6}, {0x5E, 6, 6}, VGA_REGSET_END};
Ondrej Zary7fe029d2011-03-01 19:18:43 +0000138static const struct vga_regset s3_start_address_regs[] = {{0x0d, 0, 7}, {0x0c, 0, 7}, {0x69, 0, 4}, VGA_REGSET_END};
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800139static const struct vga_regset s3_offset_regs[] = {{0x13, 0, 7}, {0x51, 4, 5}, VGA_REGSET_END}; /* set 0x43 bit 2 to 0 */
140
Ondrej Zarycb11c042011-03-01 19:18:35 +0000141static const struct vga_regset s3_dtpc_regs[] = {{0x3B, 0, 7}, {0x5D, 6, 6}, VGA_REGSET_END};
142
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800143static const struct svga_timing_regs s3_timing_regs = {
144 s3_h_total_regs, s3_h_display_regs, s3_h_blank_start_regs,
145 s3_h_blank_end_regs, s3_h_sync_start_regs, s3_h_sync_end_regs,
146 s3_v_total_regs, s3_v_display_regs, s3_v_blank_start_regs,
147 s3_v_blank_end_regs, s3_v_sync_start_regs, s3_v_sync_end_regs,
148};
149
150
151/* ------------------------------------------------------------------------- */
152
153/* Module parameters */
154
155
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800156static char *mode_option;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800157
158#ifdef CONFIG_MTRR
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800159static int mtrr = 1;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800160#endif
161
162static int fasttext = 1;
163
164
165MODULE_AUTHOR("(c) 2006-2007 Ondrej Zajicek <santiago@crfreenet.org>");
166MODULE_LICENSE("GPL");
167MODULE_DESCRIPTION("fbdev driver for S3 Trio/Virge");
168
Krzysztof Helta8140542008-04-28 02:15:09 -0700169module_param(mode_option, charp, 0444);
170MODULE_PARM_DESC(mode_option, "Default video mode ('640x480-8@60', etc)");
171module_param_named(mode, mode_option, charp, 0444);
172MODULE_PARM_DESC(mode, "Default video mode ('640x480-8@60', etc) (deprecated)");
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800173
174#ifdef CONFIG_MTRR
175module_param(mtrr, int, 0444);
176MODULE_PARM_DESC(mtrr, "Enable write-combining with MTRR (1=enable, 0=disable, default=1)");
177#endif
178
179module_param(fasttext, int, 0644);
180MODULE_PARM_DESC(fasttext, "Enable S3 fast text mode (1=enable, 0=disable, default=1)");
181
182
183/* ------------------------------------------------------------------------- */
184
Ondrej Zary86c0f0432011-04-18 10:14:57 +0000185#ifdef CONFIG_FB_S3_DDC
186
187#define DDC_REG 0xaa /* Trio 3D/1X/2X */
188#define DDC_MMIO_REG 0xff20 /* all other chips */
189#define DDC_SCL_OUT (1 << 0)
190#define DDC_SDA_OUT (1 << 1)
191#define DDC_SCL_IN (1 << 2)
192#define DDC_SDA_IN (1 << 3)
193#define DDC_DRIVE_EN (1 << 4)
194
195static bool s3fb_ddc_needs_mmio(int chip)
196{
197 return !(chip == CHIP_360_TRIO3D_1X ||
198 chip == CHIP_362_TRIO3D_2X ||
199 chip == CHIP_368_TRIO3D_2X);
200}
201
202static u8 s3fb_ddc_read(struct s3fb_info *par)
203{
204 if (s3fb_ddc_needs_mmio(par->chip))
205 return readb(par->mmio + DDC_MMIO_REG);
206 else
207 return vga_rcrt(par->state.vgabase, DDC_REG);
208}
209
210static void s3fb_ddc_write(struct s3fb_info *par, u8 val)
211{
212 if (s3fb_ddc_needs_mmio(par->chip))
213 writeb(val, par->mmio + DDC_MMIO_REG);
214 else
215 vga_wcrt(par->state.vgabase, DDC_REG, val);
216}
217
218static void s3fb_ddc_setscl(void *data, int val)
219{
220 struct s3fb_info *par = data;
221 unsigned char reg;
222
223 reg = s3fb_ddc_read(par) | DDC_DRIVE_EN;
224 if (val)
225 reg |= DDC_SCL_OUT;
226 else
227 reg &= ~DDC_SCL_OUT;
228 s3fb_ddc_write(par, reg);
229}
230
231static void s3fb_ddc_setsda(void *data, int val)
232{
233 struct s3fb_info *par = data;
234 unsigned char reg;
235
236 reg = s3fb_ddc_read(par) | DDC_DRIVE_EN;
237 if (val)
238 reg |= DDC_SDA_OUT;
239 else
240 reg &= ~DDC_SDA_OUT;
241 s3fb_ddc_write(par, reg);
242}
243
244static int s3fb_ddc_getscl(void *data)
245{
246 struct s3fb_info *par = data;
247
248 return !!(s3fb_ddc_read(par) & DDC_SCL_IN);
249}
250
251static int s3fb_ddc_getsda(void *data)
252{
253 struct s3fb_info *par = data;
254
255 return !!(s3fb_ddc_read(par) & DDC_SDA_IN);
256}
257
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800258static int s3fb_setup_ddc_bus(struct fb_info *info)
Ondrej Zary86c0f0432011-04-18 10:14:57 +0000259{
260 struct s3fb_info *par = info->par;
261
262 strlcpy(par->ddc_adapter.name, info->fix.id,
263 sizeof(par->ddc_adapter.name));
264 par->ddc_adapter.owner = THIS_MODULE;
265 par->ddc_adapter.class = I2C_CLASS_DDC;
266 par->ddc_adapter.algo_data = &par->ddc_algo;
267 par->ddc_adapter.dev.parent = info->device;
268 par->ddc_algo.setsda = s3fb_ddc_setsda;
269 par->ddc_algo.setscl = s3fb_ddc_setscl;
270 par->ddc_algo.getsda = s3fb_ddc_getsda;
271 par->ddc_algo.getscl = s3fb_ddc_getscl;
272 par->ddc_algo.udelay = 10;
273 par->ddc_algo.timeout = 20;
274 par->ddc_algo.data = par;
275
276 i2c_set_adapdata(&par->ddc_adapter, par);
277
278 /*
279 * some Virge cards have external MUX to switch chip I2C bus between
280 * DDC and extension pins - switch it do DDC
281 */
282/* vga_wseq(par->state.vgabase, 0x08, 0x06); - not needed, already unlocked */
283 if (par->chip == CHIP_357_VIRGE_GX2 ||
Ondrej Zary6fcdbc02012-07-06 15:12:11 +0200284 par->chip == CHIP_359_VIRGE_GX2P ||
285 par->chip == CHIP_260_VIRGE_MX)
Ondrej Zary86c0f0432011-04-18 10:14:57 +0000286 svga_wseq_mask(par->state.vgabase, 0x0d, 0x01, 0x03);
287 else
288 svga_wseq_mask(par->state.vgabase, 0x0d, 0x00, 0x03);
289 /* some Virge need this or the DDC is ignored */
290 svga_wcrt_mask(par->state.vgabase, 0x5c, 0x03, 0x03);
291
292 return i2c_bit_add_bus(&par->ddc_adapter);
293}
294#endif /* CONFIG_FB_S3_DDC */
295
296
297/* ------------------------------------------------------------------------- */
298
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800299/* Set font in S3 fast text mode */
300
301static void s3fb_settile_fast(struct fb_info *info, struct fb_tilemap *map)
302{
303 const u8 *font = map->data;
Antonino A. Daplas75814d82007-05-08 00:38:49 -0700304 u8 __iomem *fb = (u8 __iomem *) info->screen_base;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800305 int i, c;
306
307 if ((map->width != 8) || (map->height != 16) ||
308 (map->depth != 1) || (map->length != 256)) {
Joe Perches31b67802013-09-19 18:35:55 -0700309 fb_err(info, "unsupported font parameters: width %d, height %d, depth %d, length %d\n",
310 map->width, map->height, map->depth, map->length);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800311 return;
312 }
313
314 fb += 2;
315 for (i = 0; i < map->height; i++) {
316 for (c = 0; c < map->length; c++) {
Antonino A. Daplas75814d82007-05-08 00:38:49 -0700317 fb_writeb(font[c * map->height + i], fb + c * 4);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800318 }
319 fb += 1024;
320 }
321}
322
David Miller55db0922011-01-11 23:52:11 +0000323static void s3fb_tilecursor(struct fb_info *info, struct fb_tilecursor *cursor)
324{
325 struct s3fb_info *par = info->par;
326
327 svga_tilecursor(par->state.vgabase, info, cursor);
328}
329
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800330static struct fb_tile_ops s3fb_tile_ops = {
331 .fb_settile = svga_settile,
332 .fb_tilecopy = svga_tilecopy,
333 .fb_tilefill = svga_tilefill,
334 .fb_tileblit = svga_tileblit,
David Miller55db0922011-01-11 23:52:11 +0000335 .fb_tilecursor = s3fb_tilecursor,
Ondrej Zajicek34ed25f2007-05-08 00:40:00 -0700336 .fb_get_tilemax = svga_get_tilemax,
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800337};
338
339static struct fb_tile_ops s3fb_fast_tile_ops = {
340 .fb_settile = s3fb_settile_fast,
341 .fb_tilecopy = svga_tilecopy,
342 .fb_tilefill = svga_tilefill,
343 .fb_tileblit = svga_tileblit,
David Miller55db0922011-01-11 23:52:11 +0000344 .fb_tilecursor = s3fb_tilecursor,
Ondrej Zajicek34ed25f2007-05-08 00:40:00 -0700345 .fb_get_tilemax = svga_get_tilemax,
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800346};
347
348
349/* ------------------------------------------------------------------------- */
350
351/* image data is MSB-first, fb structure is MSB-first too */
352static inline u32 expand_color(u32 c)
353{
354 return ((c & 1) | ((c & 2) << 7) | ((c & 4) << 14) | ((c & 8) << 21)) * 0xFF;
355}
356
357/* s3fb_iplan_imageblit silently assumes that almost everything is 8-pixel aligned */
358static void s3fb_iplan_imageblit(struct fb_info *info, const struct fb_image *image)
359{
360 u32 fg = expand_color(image->fg_color);
361 u32 bg = expand_color(image->bg_color);
362 const u8 *src1, *src;
363 u8 __iomem *dst1;
364 u32 __iomem *dst;
365 u32 val;
366 int x, y;
367
368 src1 = image->data;
369 dst1 = info->screen_base + (image->dy * info->fix.line_length)
370 + ((image->dx / 8) * 4);
371
372 for (y = 0; y < image->height; y++) {
373 src = src1;
374 dst = (u32 __iomem *) dst1;
375 for (x = 0; x < image->width; x += 8) {
376 val = *(src++) * 0x01010101;
377 val = (val & fg) | (~val & bg);
378 fb_writel(val, dst++);
379 }
380 src1 += image->width / 8;
381 dst1 += info->fix.line_length;
382 }
383
384}
385
386/* s3fb_iplan_fillrect silently assumes that almost everything is 8-pixel aligned */
387static void s3fb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
388{
389 u32 fg = expand_color(rect->color);
390 u8 __iomem *dst1;
391 u32 __iomem *dst;
392 int x, y;
393
394 dst1 = info->screen_base + (rect->dy * info->fix.line_length)
395 + ((rect->dx / 8) * 4);
396
397 for (y = 0; y < rect->height; y++) {
398 dst = (u32 __iomem *) dst1;
399 for (x = 0; x < rect->width; x += 8) {
400 fb_writel(fg, dst++);
401 }
402 dst1 += info->fix.line_length;
403 }
404}
405
406
407/* image data is MSB-first, fb structure is high-nibble-in-low-byte-first */
408static inline u32 expand_pixel(u32 c)
409{
410 return (((c & 1) << 24) | ((c & 2) << 27) | ((c & 4) << 14) | ((c & 8) << 17) |
411 ((c & 16) << 4) | ((c & 32) << 7) | ((c & 64) >> 6) | ((c & 128) >> 3)) * 0xF;
412}
413
414/* s3fb_cfb4_imageblit silently assumes that almost everything is 8-pixel aligned */
415static void s3fb_cfb4_imageblit(struct fb_info *info, const struct fb_image *image)
416{
417 u32 fg = image->fg_color * 0x11111111;
418 u32 bg = image->bg_color * 0x11111111;
419 const u8 *src1, *src;
420 u8 __iomem *dst1;
421 u32 __iomem *dst;
422 u32 val;
423 int x, y;
424
425 src1 = image->data;
426 dst1 = info->screen_base + (image->dy * info->fix.line_length)
427 + ((image->dx / 8) * 4);
428
429 for (y = 0; y < image->height; y++) {
430 src = src1;
431 dst = (u32 __iomem *) dst1;
432 for (x = 0; x < image->width; x += 8) {
433 val = expand_pixel(*(src++));
434 val = (val & fg) | (~val & bg);
435 fb_writel(val, dst++);
436 }
437 src1 += image->width / 8;
438 dst1 += info->fix.line_length;
439 }
440}
441
442static void s3fb_imageblit(struct fb_info *info, const struct fb_image *image)
443{
444 if ((info->var.bits_per_pixel == 4) && (image->depth == 1)
445 && ((image->width % 8) == 0) && ((image->dx % 8) == 0)) {
446 if (info->fix.type == FB_TYPE_INTERLEAVED_PLANES)
447 s3fb_iplan_imageblit(info, image);
448 else
449 s3fb_cfb4_imageblit(info, image);
450 } else
451 cfb_imageblit(info, image);
452}
453
454static void s3fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
455{
456 if ((info->var.bits_per_pixel == 4)
457 && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
458 && (info->fix.type == FB_TYPE_INTERLEAVED_PLANES))
459 s3fb_iplan_fillrect(info, rect);
460 else
461 cfb_fillrect(info, rect);
462}
463
464
465
466/* ------------------------------------------------------------------------- */
467
468
469static void s3_set_pixclock(struct fb_info *info, u32 pixclock)
470{
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700471 struct s3fb_info *par = info->par;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800472 u16 m, n, r;
473 u8 regval;
Ondrej Zajicek249bdbb2007-05-08 00:39:24 -0700474 int rv;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800475
Ondrej Zary5694f9c2011-03-01 19:18:17 +0000476 rv = svga_compute_pll((par->chip == CHIP_365_TRIO3D) ? &s3_trio3d_pll : &s3_pll,
477 1000000000 / pixclock, &m, &n, &r, info->node);
Ondrej Zajicek249bdbb2007-05-08 00:39:24 -0700478 if (rv < 0) {
Joe Perches31b67802013-09-19 18:35:55 -0700479 fb_err(info, "cannot set requested pixclock, keeping old value\n");
Ondrej Zajicek249bdbb2007-05-08 00:39:24 -0700480 return;
481 }
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800482
483 /* Set VGA misc register */
David Millerf8645932011-01-11 23:52:57 +0000484 regval = vga_r(par->state.vgabase, VGA_MIS_R);
485 vga_w(par->state.vgabase, VGA_MIS_W, regval | VGA_MIS_ENB_PLL_LOAD);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800486
487 /* Set S3 clock registers */
Ondrej Zary94e948e2011-03-29 19:07:08 +0000488 if (par->chip == CHIP_357_VIRGE_GX2 ||
489 par->chip == CHIP_359_VIRGE_GX2P ||
490 par->chip == CHIP_360_TRIO3D_1X ||
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700491 par->chip == CHIP_362_TRIO3D_2X ||
Ondrej Zary6fcdbc02012-07-06 15:12:11 +0200492 par->chip == CHIP_368_TRIO3D_2X ||
493 par->chip == CHIP_260_VIRGE_MX) {
David Millerf8645932011-01-11 23:52:57 +0000494 vga_wseq(par->state.vgabase, 0x12, (n - 2) | ((r & 3) << 6)); /* n and two bits of r */
495 vga_wseq(par->state.vgabase, 0x29, r >> 2); /* remaining highest bit of r */
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700496 } else
David Millerf8645932011-01-11 23:52:57 +0000497 vga_wseq(par->state.vgabase, 0x12, (n - 2) | (r << 5));
498 vga_wseq(par->state.vgabase, 0x13, m - 2);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800499
500 udelay(1000);
501
502 /* Activate clock - write 0, 1, 0 to seq/15 bit 5 */
David Millerf8645932011-01-11 23:52:57 +0000503 regval = vga_rseq (par->state.vgabase, 0x15); /* | 0x80; */
504 vga_wseq(par->state.vgabase, 0x15, regval & ~(1<<5));
505 vga_wseq(par->state.vgabase, 0x15, regval | (1<<5));
506 vga_wseq(par->state.vgabase, 0x15, regval & ~(1<<5));
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800507}
508
509
510/* Open framebuffer */
511
512static int s3fb_open(struct fb_info *info, int user)
513{
514 struct s3fb_info *par = info->par;
515
516 mutex_lock(&(par->open_lock));
517 if (par->ref_count == 0) {
David Miller3ff259f2011-01-11 23:53:53 +0000518 void __iomem *vgabase = par->state.vgabase;
519
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800520 memset(&(par->state), 0, sizeof(struct vgastate));
David Miller3ff259f2011-01-11 23:53:53 +0000521 par->state.vgabase = vgabase;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800522 par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS | VGA_SAVE_CMAP;
523 par->state.num_crtc = 0x70;
524 par->state.num_seq = 0x20;
525 save_vga(&(par->state));
526 }
527
528 par->ref_count++;
529 mutex_unlock(&(par->open_lock));
530
531 return 0;
532}
533
534/* Close framebuffer */
535
536static int s3fb_release(struct fb_info *info, int user)
537{
538 struct s3fb_info *par = info->par;
539
540 mutex_lock(&(par->open_lock));
541 if (par->ref_count == 0) {
542 mutex_unlock(&(par->open_lock));
543 return -EINVAL;
544 }
545
546 if (par->ref_count == 1)
547 restore_vga(&(par->state));
548
549 par->ref_count--;
550 mutex_unlock(&(par->open_lock));
551
552 return 0;
553}
554
555/* Validate passed in var */
556
557static int s3fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
558{
559 struct s3fb_info *par = info->par;
560 int rv, mem, step;
Krzysztof Heltc3ca34f2007-10-16 01:29:54 -0700561 u16 m, n, r;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800562
563 /* Find appropriate format */
564 rv = svga_match_format (s3fb_formats, var, NULL);
Ondrej Zajicekd4b766a02007-10-16 01:29:52 -0700565
566 /* 32bpp mode is not supported on VIRGE VX,
567 24bpp is not supported on others */
568 if ((par->chip == CHIP_988_VIRGE_VX) ? (rv == 7) : (rv == 6))
569 rv = -EINVAL;
570
571 if (rv < 0) {
Joe Perches31b67802013-09-19 18:35:55 -0700572 fb_err(info, "unsupported mode requested\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800573 return rv;
574 }
575
576 /* Do not allow to have real resoulution larger than virtual */
577 if (var->xres > var->xres_virtual)
578 var->xres_virtual = var->xres;
579
580 if (var->yres > var->yres_virtual)
581 var->yres_virtual = var->yres;
582
583 /* Round up xres_virtual to have proper alignment of lines */
584 step = s3fb_formats[rv].xresstep - 1;
585 var->xres_virtual = (var->xres_virtual+step) & ~step;
586
587 /* Check whether have enough memory */
588 mem = ((var->bits_per_pixel * var->xres_virtual) >> 3) * var->yres_virtual;
Krzysztof Heltc3ca34f2007-10-16 01:29:54 -0700589 if (mem > info->screen_size) {
Joe Perches31b67802013-09-19 18:35:55 -0700590 fb_err(info, "not enough framebuffer memory (%d kB requested , %u kB available)\n",
591 mem >> 10, (unsigned int) (info->screen_size >> 10));
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800592 return -EINVAL;
593 }
594
595 rv = svga_check_timings (&s3_timing_regs, var, info->node);
Krzysztof Heltc3ca34f2007-10-16 01:29:54 -0700596 if (rv < 0) {
Joe Perches31b67802013-09-19 18:35:55 -0700597 fb_err(info, "invalid timings requested\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800598 return rv;
599 }
600
Krzysztof Heltc3ca34f2007-10-16 01:29:54 -0700601 rv = svga_compute_pll(&s3_pll, PICOS2KHZ(var->pixclock), &m, &n, &r,
602 info->node);
603 if (rv < 0) {
Joe Perches31b67802013-09-19 18:35:55 -0700604 fb_err(info, "invalid pixclock value requested\n");
Krzysztof Heltc3ca34f2007-10-16 01:29:54 -0700605 return rv;
606 }
607
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800608 return 0;
609}
610
611/* Set video mode from par */
612
613static int s3fb_set_par(struct fb_info *info)
614{
615 struct s3fb_info *par = info->par;
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700616 u32 value, mode, hmul, offset_value, screen_size, multiplex, dbytes;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800617 u32 bpp = info->var.bits_per_pixel;
Ondrej Zarycb11c042011-03-01 19:18:35 +0000618 u32 htotal, hsstart;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800619
620 if (bpp != 0) {
621 info->fix.ypanstep = 1;
622 info->fix.line_length = (info->var.xres_virtual * bpp) / 8;
623
624 info->flags &= ~FBINFO_MISC_TILEBLITTING;
625 info->tileops = NULL;
626
Ondrej Zajicek34ed25f2007-05-08 00:40:00 -0700627 /* in 4bpp supports 8p wide tiles only, any tiles otherwise */
628 info->pixmap.blit_x = (bpp == 4) ? (1 << (8 - 1)) : (~(u32)0);
Antonino A. Daplas8db51662007-05-08 00:39:14 -0700629 info->pixmap.blit_y = ~(u32)0;
Ondrej Zajicek34ed25f2007-05-08 00:40:00 -0700630
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800631 offset_value = (info->var.xres_virtual * bpp) / 64;
632 screen_size = info->var.yres_virtual * info->fix.line_length;
633 } else {
634 info->fix.ypanstep = 16;
635 info->fix.line_length = 0;
636
637 info->flags |= FBINFO_MISC_TILEBLITTING;
638 info->tileops = fasttext ? &s3fb_fast_tile_ops : &s3fb_tile_ops;
Ondrej Zajicek34ed25f2007-05-08 00:40:00 -0700639
Antonino A. Daplas8db51662007-05-08 00:39:14 -0700640 /* supports 8x16 tiles only */
641 info->pixmap.blit_x = 1 << (8 - 1);
642 info->pixmap.blit_y = 1 << (16 - 1);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800643
644 offset_value = info->var.xres_virtual / 16;
645 screen_size = (info->var.xres_virtual * info->var.yres_virtual) / 64;
646 }
647
648 info->var.xoffset = 0;
649 info->var.yoffset = 0;
650 info->var.activate = FB_ACTIVATE_NOW;
651
652 /* Unlock registers */
David Millerf8645932011-01-11 23:52:57 +0000653 vga_wcrt(par->state.vgabase, 0x38, 0x48);
654 vga_wcrt(par->state.vgabase, 0x39, 0xA5);
655 vga_wseq(par->state.vgabase, 0x08, 0x06);
David Millerea770782011-01-11 23:51:26 +0000656 svga_wcrt_mask(par->state.vgabase, 0x11, 0x00, 0x80);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800657
658 /* Blank screen and turn off sync */
David Millerd907ec02011-01-11 23:51:08 +0000659 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
David Millerea770782011-01-11 23:51:26 +0000660 svga_wcrt_mask(par->state.vgabase, 0x17, 0x00, 0x80);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800661
662 /* Set default values */
David Millere2fade22011-01-11 23:50:04 +0000663 svga_set_default_gfx_regs(par->state.vgabase);
David Millerf51a14d2011-01-11 23:50:36 +0000664 svga_set_default_atc_regs(par->state.vgabase);
David Millera4ade8392011-01-11 23:50:54 +0000665 svga_set_default_seq_regs(par->state.vgabase);
David Miller1d28fca2011-01-11 23:51:41 +0000666 svga_set_default_crt_regs(par->state.vgabase);
David Miller21da3862011-01-11 23:49:34 +0000667 svga_wcrt_multi(par->state.vgabase, s3_line_compare_regs, 0xFFFFFFFF);
668 svga_wcrt_multi(par->state.vgabase, s3_start_address_regs, 0);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800669
670 /* S3 specific initialization */
David Millerea770782011-01-11 23:51:26 +0000671 svga_wcrt_mask(par->state.vgabase, 0x58, 0x10, 0x10); /* enable linear framebuffer */
672 svga_wcrt_mask(par->state.vgabase, 0x31, 0x08, 0x08); /* enable sequencer access to framebuffer above 256 kB */
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800673
David Millerea770782011-01-11 23:51:26 +0000674/* svga_wcrt_mask(par->state.vgabase, 0x33, 0x08, 0x08); */ /* DDR ? */
675/* svga_wcrt_mask(par->state.vgabase, 0x43, 0x01, 0x01); */ /* DDR ? */
676 svga_wcrt_mask(par->state.vgabase, 0x33, 0x00, 0x08); /* no DDR ? */
677 svga_wcrt_mask(par->state.vgabase, 0x43, 0x00, 0x01); /* no DDR ? */
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800678
David Millerea770782011-01-11 23:51:26 +0000679 svga_wcrt_mask(par->state.vgabase, 0x5D, 0x00, 0x28); /* Clear strange HSlen bits */
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800680
David Millerea770782011-01-11 23:51:26 +0000681/* svga_wcrt_mask(par->state.vgabase, 0x58, 0x03, 0x03); */
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800682
David Millerea770782011-01-11 23:51:26 +0000683/* svga_wcrt_mask(par->state.vgabase, 0x53, 0x12, 0x13); */ /* enable MMIO */
684/* svga_wcrt_mask(par->state.vgabase, 0x40, 0x08, 0x08); */ /* enable write buffer */
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800685
686
687 /* Set the offset register */
Joe Perches31b67802013-09-19 18:35:55 -0700688 fb_dbg(info, "offset register : %d\n", offset_value);
David Miller21da3862011-01-11 23:49:34 +0000689 svga_wcrt_multi(par->state.vgabase, s3_offset_regs, offset_value);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800690
Ondrej Zary94e948e2011-03-29 19:07:08 +0000691 if (par->chip != CHIP_357_VIRGE_GX2 &&
692 par->chip != CHIP_359_VIRGE_GX2P &&
693 par->chip != CHIP_360_TRIO3D_1X &&
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700694 par->chip != CHIP_362_TRIO3D_2X &&
Ondrej Zary6fcdbc02012-07-06 15:12:11 +0200695 par->chip != CHIP_368_TRIO3D_2X &&
696 par->chip != CHIP_260_VIRGE_MX) {
David Millerf8645932011-01-11 23:52:57 +0000697 vga_wcrt(par->state.vgabase, 0x54, 0x18); /* M parameter */
698 vga_wcrt(par->state.vgabase, 0x60, 0xff); /* N parameter */
699 vga_wcrt(par->state.vgabase, 0x61, 0xff); /* L parameter */
700 vga_wcrt(par->state.vgabase, 0x62, 0xff); /* L parameter */
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700701 }
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800702
David Millerf8645932011-01-11 23:52:57 +0000703 vga_wcrt(par->state.vgabase, 0x3A, 0x35);
David Millerf6b0cc42011-01-11 23:49:18 +0000704 svga_wattr(par->state.vgabase, 0x33, 0x00);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800705
706 if (info->var.vmode & FB_VMODE_DOUBLE)
David Millerea770782011-01-11 23:51:26 +0000707 svga_wcrt_mask(par->state.vgabase, 0x09, 0x80, 0x80);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800708 else
David Millerea770782011-01-11 23:51:26 +0000709 svga_wcrt_mask(par->state.vgabase, 0x09, 0x00, 0x80);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800710
711 if (info->var.vmode & FB_VMODE_INTERLACED)
David Millerea770782011-01-11 23:51:26 +0000712 svga_wcrt_mask(par->state.vgabase, 0x42, 0x20, 0x20);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800713 else
David Millerea770782011-01-11 23:51:26 +0000714 svga_wcrt_mask(par->state.vgabase, 0x42, 0x00, 0x20);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800715
716 /* Disable hardware graphics cursor */
David Millerea770782011-01-11 23:51:26 +0000717 svga_wcrt_mask(par->state.vgabase, 0x45, 0x00, 0x01);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800718 /* Disable Streams engine */
David Millerea770782011-01-11 23:51:26 +0000719 svga_wcrt_mask(par->state.vgabase, 0x67, 0x00, 0x0C);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800720
721 mode = svga_match_format(s3fb_formats, &(info->var), &(info->fix));
722
723 /* S3 virge DX hack */
724 if (par->chip == CHIP_375_VIRGE_DX) {
David Millerf8645932011-01-11 23:52:57 +0000725 vga_wcrt(par->state.vgabase, 0x86, 0x80);
726 vga_wcrt(par->state.vgabase, 0x90, 0x00);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800727 }
728
729 /* S3 virge VX hack */
730 if (par->chip == CHIP_988_VIRGE_VX) {
David Millerf8645932011-01-11 23:52:57 +0000731 vga_wcrt(par->state.vgabase, 0x50, 0x00);
732 vga_wcrt(par->state.vgabase, 0x67, 0x50);
Ondrej Zary66cde972011-12-19 23:39:47 +0100733 msleep(10); /* screen remains blank sometimes without this */
David Millerf8645932011-01-11 23:52:57 +0000734 vga_wcrt(par->state.vgabase, 0x63, (mode <= 2) ? 0x90 : 0x09);
735 vga_wcrt(par->state.vgabase, 0x66, 0x90);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800736 }
737
Ondrej Zary94e948e2011-03-29 19:07:08 +0000738 if (par->chip == CHIP_357_VIRGE_GX2 ||
739 par->chip == CHIP_359_VIRGE_GX2P ||
740 par->chip == CHIP_360_TRIO3D_1X ||
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700741 par->chip == CHIP_362_TRIO3D_2X ||
Ondrej Zary5694f9c2011-03-01 19:18:17 +0000742 par->chip == CHIP_368_TRIO3D_2X ||
Ondrej Zarycb11c042011-03-01 19:18:35 +0000743 par->chip == CHIP_365_TRIO3D ||
744 par->chip == CHIP_375_VIRGE_DX ||
Ondrej Zary6fcdbc02012-07-06 15:12:11 +0200745 par->chip == CHIP_385_VIRGE_GX ||
746 par->chip == CHIP_260_VIRGE_MX) {
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700747 dbytes = info->var.xres * ((bpp+7)/8);
David Millerf8645932011-01-11 23:52:57 +0000748 vga_wcrt(par->state.vgabase, 0x91, (dbytes + 7) / 8);
749 vga_wcrt(par->state.vgabase, 0x90, (((dbytes + 7) / 8) >> 8) | 0x80);
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700750
David Millerf8645932011-01-11 23:52:57 +0000751 vga_wcrt(par->state.vgabase, 0x66, 0x81);
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700752 }
753
Ondrej Zary94e948e2011-03-29 19:07:08 +0000754 if (par->chip == CHIP_357_VIRGE_GX2 ||
Ondrej Zarycb11c042011-03-01 19:18:35 +0000755 par->chip == CHIP_359_VIRGE_GX2P ||
756 par->chip == CHIP_360_TRIO3D_1X ||
757 par->chip == CHIP_362_TRIO3D_2X ||
Ondrej Zary6fcdbc02012-07-06 15:12:11 +0200758 par->chip == CHIP_368_TRIO3D_2X ||
759 par->chip == CHIP_260_VIRGE_MX)
Ondrej Zarycb11c042011-03-01 19:18:35 +0000760 vga_wcrt(par->state.vgabase, 0x34, 0x00);
761 else /* enable Data Transfer Position Control (DTPC) */
762 vga_wcrt(par->state.vgabase, 0x34, 0x10);
763
David Millerea770782011-01-11 23:51:26 +0000764 svga_wcrt_mask(par->state.vgabase, 0x31, 0x00, 0x40);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800765 multiplex = 0;
766 hmul = 1;
767
768 /* Set mode-specific register values */
769 switch (mode) {
770 case 0:
Joe Perches31b67802013-09-19 18:35:55 -0700771 fb_dbg(info, "text mode\n");
David Miller9c963942011-01-11 23:51:56 +0000772 svga_set_textmode_vga_regs(par->state.vgabase);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800773
774 /* Set additional registers like in 8-bit mode */
David Millerea770782011-01-11 23:51:26 +0000775 svga_wcrt_mask(par->state.vgabase, 0x50, 0x00, 0x30);
776 svga_wcrt_mask(par->state.vgabase, 0x67, 0x00, 0xF0);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800777
778 /* Disable enhanced mode */
David Millerea770782011-01-11 23:51:26 +0000779 svga_wcrt_mask(par->state.vgabase, 0x3A, 0x00, 0x30);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800780
781 if (fasttext) {
Joe Perches31b67802013-09-19 18:35:55 -0700782 fb_dbg(info, "high speed text mode set\n");
David Millerea770782011-01-11 23:51:26 +0000783 svga_wcrt_mask(par->state.vgabase, 0x31, 0x40, 0x40);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800784 }
785 break;
786 case 1:
Joe Perches31b67802013-09-19 18:35:55 -0700787 fb_dbg(info, "4 bit pseudocolor\n");
David Millerf8645932011-01-11 23:52:57 +0000788 vga_wgfx(par->state.vgabase, VGA_GFX_MODE, 0x40);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800789
790 /* Set additional registers like in 8-bit mode */
David Millerea770782011-01-11 23:51:26 +0000791 svga_wcrt_mask(par->state.vgabase, 0x50, 0x00, 0x30);
792 svga_wcrt_mask(par->state.vgabase, 0x67, 0x00, 0xF0);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800793
794 /* disable enhanced mode */
David Millerea770782011-01-11 23:51:26 +0000795 svga_wcrt_mask(par->state.vgabase, 0x3A, 0x00, 0x30);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800796 break;
797 case 2:
Joe Perches31b67802013-09-19 18:35:55 -0700798 fb_dbg(info, "4 bit pseudocolor, planar\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800799
800 /* Set additional registers like in 8-bit mode */
David Millerea770782011-01-11 23:51:26 +0000801 svga_wcrt_mask(par->state.vgabase, 0x50, 0x00, 0x30);
802 svga_wcrt_mask(par->state.vgabase, 0x67, 0x00, 0xF0);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800803
804 /* disable enhanced mode */
David Millerea770782011-01-11 23:51:26 +0000805 svga_wcrt_mask(par->state.vgabase, 0x3A, 0x00, 0x30);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800806 break;
807 case 3:
Joe Perches31b67802013-09-19 18:35:55 -0700808 fb_dbg(info, "8 bit pseudocolor\n");
David Millerea770782011-01-11 23:51:26 +0000809 svga_wcrt_mask(par->state.vgabase, 0x50, 0x00, 0x30);
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700810 if (info->var.pixclock > 20000 ||
Ondrej Zary94e948e2011-03-29 19:07:08 +0000811 par->chip == CHIP_357_VIRGE_GX2 ||
812 par->chip == CHIP_359_VIRGE_GX2P ||
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700813 par->chip == CHIP_360_TRIO3D_1X ||
814 par->chip == CHIP_362_TRIO3D_2X ||
Ondrej Zary6fcdbc02012-07-06 15:12:11 +0200815 par->chip == CHIP_368_TRIO3D_2X ||
816 par->chip == CHIP_260_VIRGE_MX)
David Millerea770782011-01-11 23:51:26 +0000817 svga_wcrt_mask(par->state.vgabase, 0x67, 0x00, 0xF0);
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700818 else {
David Millerea770782011-01-11 23:51:26 +0000819 svga_wcrt_mask(par->state.vgabase, 0x67, 0x10, 0xF0);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800820 multiplex = 1;
821 }
822 break;
823 case 4:
Joe Perches31b67802013-09-19 18:35:55 -0700824 fb_dbg(info, "5/5/5 truecolor\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800825 if (par->chip == CHIP_988_VIRGE_VX) {
826 if (info->var.pixclock > 20000)
David Millerea770782011-01-11 23:51:26 +0000827 svga_wcrt_mask(par->state.vgabase, 0x67, 0x20, 0xF0);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800828 else
David Millerea770782011-01-11 23:51:26 +0000829 svga_wcrt_mask(par->state.vgabase, 0x67, 0x30, 0xF0);
Ondrej Zary3827d102011-03-01 19:18:27 +0000830 } else if (par->chip == CHIP_365_TRIO3D) {
831 svga_wcrt_mask(par->state.vgabase, 0x50, 0x10, 0x30);
832 if (info->var.pixclock > 8695) {
833 svga_wcrt_mask(par->state.vgabase, 0x67, 0x30, 0xF0);
834 hmul = 2;
835 } else {
836 svga_wcrt_mask(par->state.vgabase, 0x67, 0x20, 0xF0);
837 multiplex = 1;
838 }
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800839 } else {
David Millerea770782011-01-11 23:51:26 +0000840 svga_wcrt_mask(par->state.vgabase, 0x50, 0x10, 0x30);
841 svga_wcrt_mask(par->state.vgabase, 0x67, 0x30, 0xF0);
Ondrej Zary94e948e2011-03-29 19:07:08 +0000842 if (par->chip != CHIP_357_VIRGE_GX2 &&
843 par->chip != CHIP_359_VIRGE_GX2P &&
844 par->chip != CHIP_360_TRIO3D_1X &&
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700845 par->chip != CHIP_362_TRIO3D_2X &&
Ondrej Zary6fcdbc02012-07-06 15:12:11 +0200846 par->chip != CHIP_368_TRIO3D_2X &&
847 par->chip != CHIP_260_VIRGE_MX)
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700848 hmul = 2;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800849 }
850 break;
851 case 5:
Joe Perches31b67802013-09-19 18:35:55 -0700852 fb_dbg(info, "5/6/5 truecolor\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800853 if (par->chip == CHIP_988_VIRGE_VX) {
854 if (info->var.pixclock > 20000)
David Millerea770782011-01-11 23:51:26 +0000855 svga_wcrt_mask(par->state.vgabase, 0x67, 0x40, 0xF0);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800856 else
David Millerea770782011-01-11 23:51:26 +0000857 svga_wcrt_mask(par->state.vgabase, 0x67, 0x50, 0xF0);
Ondrej Zary3827d102011-03-01 19:18:27 +0000858 } else if (par->chip == CHIP_365_TRIO3D) {
859 svga_wcrt_mask(par->state.vgabase, 0x50, 0x10, 0x30);
860 if (info->var.pixclock > 8695) {
861 svga_wcrt_mask(par->state.vgabase, 0x67, 0x50, 0xF0);
862 hmul = 2;
863 } else {
864 svga_wcrt_mask(par->state.vgabase, 0x67, 0x40, 0xF0);
865 multiplex = 1;
866 }
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800867 } else {
David Millerea770782011-01-11 23:51:26 +0000868 svga_wcrt_mask(par->state.vgabase, 0x50, 0x10, 0x30);
869 svga_wcrt_mask(par->state.vgabase, 0x67, 0x50, 0xF0);
Ondrej Zary94e948e2011-03-29 19:07:08 +0000870 if (par->chip != CHIP_357_VIRGE_GX2 &&
871 par->chip != CHIP_359_VIRGE_GX2P &&
872 par->chip != CHIP_360_TRIO3D_1X &&
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700873 par->chip != CHIP_362_TRIO3D_2X &&
Ondrej Zary6fcdbc02012-07-06 15:12:11 +0200874 par->chip != CHIP_368_TRIO3D_2X &&
875 par->chip != CHIP_260_VIRGE_MX)
Ondrej Zary9966c4f2010-05-26 14:42:27 -0700876 hmul = 2;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800877 }
878 break;
879 case 6:
880 /* VIRGE VX case */
Joe Perches31b67802013-09-19 18:35:55 -0700881 fb_dbg(info, "8/8/8 truecolor\n");
David Millerea770782011-01-11 23:51:26 +0000882 svga_wcrt_mask(par->state.vgabase, 0x67, 0xD0, 0xF0);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800883 break;
884 case 7:
Joe Perches31b67802013-09-19 18:35:55 -0700885 fb_dbg(info, "8/8/8/8 truecolor\n");
David Millerea770782011-01-11 23:51:26 +0000886 svga_wcrt_mask(par->state.vgabase, 0x50, 0x30, 0x30);
887 svga_wcrt_mask(par->state.vgabase, 0x67, 0xD0, 0xF0);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800888 break;
889 default:
Joe Perches31b67802013-09-19 18:35:55 -0700890 fb_err(info, "unsupported mode - bug\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800891 return -EINVAL;
892 }
893
894 if (par->chip != CHIP_988_VIRGE_VX) {
David Millerd907ec02011-01-11 23:51:08 +0000895 svga_wseq_mask(par->state.vgabase, 0x15, multiplex ? 0x10 : 0x00, 0x10);
896 svga_wseq_mask(par->state.vgabase, 0x18, multiplex ? 0x80 : 0x00, 0x80);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800897 }
898
899 s3_set_pixclock(info, info->var.pixclock);
David Miller38d26202011-01-11 23:52:25 +0000900 svga_set_timings(par->state.vgabase, &s3_timing_regs, &(info->var), hmul, 1,
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800901 (info->var.vmode & FB_VMODE_DOUBLE) ? 2 : 1,
902 (info->var.vmode & FB_VMODE_INTERLACED) ? 2 : 1,
903 hmul, info->node);
904
905 /* Set interlaced mode start/end register */
Ondrej Zarycb11c042011-03-01 19:18:35 +0000906 htotal = info->var.xres + info->var.left_margin + info->var.right_margin + info->var.hsync_len;
907 htotal = ((htotal * hmul) / 8) - 5;
908 vga_wcrt(par->state.vgabase, 0x3C, (htotal + 1) / 2);
909
910 /* Set Data Transfer Position */
911 hsstart = ((info->var.xres + info->var.right_margin) * hmul) / 8;
Ondrej Zary66cde972011-12-19 23:39:47 +0100912 /* + 2 is needed for Virge/VX, does no harm on other cards */
913 value = clamp((htotal + hsstart + 1) / 2 + 2, hsstart + 4, htotal + 1);
Ondrej Zarycb11c042011-03-01 19:18:35 +0000914 svga_wcrt_multi(par->state.vgabase, s3_dtpc_regs, value);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800915
Antonino A. Daplas75814d82007-05-08 00:38:49 -0700916 memset_io(info->screen_base, 0x00, screen_size);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800917 /* Device and screen back on */
David Millerea770782011-01-11 23:51:26 +0000918 svga_wcrt_mask(par->state.vgabase, 0x17, 0x80, 0x80);
David Millerd907ec02011-01-11 23:51:08 +0000919 svga_wseq_mask(par->state.vgabase, 0x01, 0x00, 0x20);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800920
921 return 0;
922}
923
924/* Set a colour register */
925
926static int s3fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
927 u_int transp, struct fb_info *fb)
928{
929 switch (fb->var.bits_per_pixel) {
930 case 0:
931 case 4:
932 if (regno >= 16)
933 return -EINVAL;
934
935 if ((fb->var.bits_per_pixel == 4) &&
936 (fb->var.nonstd == 0)) {
937 outb(0xF0, VGA_PEL_MSK);
938 outb(regno*16, VGA_PEL_IW);
939 } else {
940 outb(0x0F, VGA_PEL_MSK);
941 outb(regno, VGA_PEL_IW);
942 }
943 outb(red >> 10, VGA_PEL_D);
944 outb(green >> 10, VGA_PEL_D);
945 outb(blue >> 10, VGA_PEL_D);
946 break;
947 case 8:
948 if (regno >= 256)
949 return -EINVAL;
950
951 outb(0xFF, VGA_PEL_MSK);
952 outb(regno, VGA_PEL_IW);
953 outb(red >> 10, VGA_PEL_D);
954 outb(green >> 10, VGA_PEL_D);
955 outb(blue >> 10, VGA_PEL_D);
956 break;
957 case 16:
958 if (regno >= 16)
Ondrej Zajicek249bdbb2007-05-08 00:39:24 -0700959 return 0;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800960
961 if (fb->var.green.length == 5)
962 ((u32*)fb->pseudo_palette)[regno] = ((red & 0xF800) >> 1) |
963 ((green & 0xF800) >> 6) | ((blue & 0xF800) >> 11);
964 else if (fb->var.green.length == 6)
965 ((u32*)fb->pseudo_palette)[regno] = (red & 0xF800) |
966 ((green & 0xFC00) >> 5) | ((blue & 0xF800) >> 11);
967 else return -EINVAL;
968 break;
969 case 24:
970 case 32:
971 if (regno >= 16)
Ondrej Zajicek249bdbb2007-05-08 00:39:24 -0700972 return 0;
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800973
Ondrej Zajicek249bdbb2007-05-08 00:39:24 -0700974 ((u32*)fb->pseudo_palette)[regno] = ((red & 0xFF00) << 8) |
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800975 (green & 0xFF00) | ((blue & 0xFF00) >> 8);
976 break;
977 default:
978 return -EINVAL;
979 }
980
981 return 0;
982}
983
984
985/* Set the display blanking state */
986
987static int s3fb_blank(int blank_mode, struct fb_info *info)
988{
David Millerd907ec02011-01-11 23:51:08 +0000989 struct s3fb_info *par = info->par;
990
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800991 switch (blank_mode) {
992 case FB_BLANK_UNBLANK:
Joe Perches31b67802013-09-19 18:35:55 -0700993 fb_dbg(info, "unblank\n");
David Millerea770782011-01-11 23:51:26 +0000994 svga_wcrt_mask(par->state.vgabase, 0x56, 0x00, 0x06);
David Millerd907ec02011-01-11 23:51:08 +0000995 svga_wseq_mask(par->state.vgabase, 0x01, 0x00, 0x20);
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800996 break;
997 case FB_BLANK_NORMAL:
Joe Perches31b67802013-09-19 18:35:55 -0700998 fb_dbg(info, "blank\n");
David Millerea770782011-01-11 23:51:26 +0000999 svga_wcrt_mask(par->state.vgabase, 0x56, 0x00, 0x06);
David Millerd907ec02011-01-11 23:51:08 +00001000 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001001 break;
1002 case FB_BLANK_HSYNC_SUSPEND:
Joe Perches31b67802013-09-19 18:35:55 -07001003 fb_dbg(info, "hsync\n");
David Millerea770782011-01-11 23:51:26 +00001004 svga_wcrt_mask(par->state.vgabase, 0x56, 0x02, 0x06);
David Millerd907ec02011-01-11 23:51:08 +00001005 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001006 break;
1007 case FB_BLANK_VSYNC_SUSPEND:
Joe Perches31b67802013-09-19 18:35:55 -07001008 fb_dbg(info, "vsync\n");
David Millerea770782011-01-11 23:51:26 +00001009 svga_wcrt_mask(par->state.vgabase, 0x56, 0x04, 0x06);
David Millerd907ec02011-01-11 23:51:08 +00001010 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001011 break;
1012 case FB_BLANK_POWERDOWN:
Joe Perches31b67802013-09-19 18:35:55 -07001013 fb_dbg(info, "sync down\n");
David Millerea770782011-01-11 23:51:26 +00001014 svga_wcrt_mask(par->state.vgabase, 0x56, 0x06, 0x06);
David Millerd907ec02011-01-11 23:51:08 +00001015 svga_wseq_mask(par->state.vgabase, 0x01, 0x20, 0x20);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001016 break;
1017 }
1018
1019 return 0;
1020}
1021
1022
1023/* Pan the display */
1024
David Miller21da3862011-01-11 23:49:34 +00001025static int s3fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
1026{
1027 struct s3fb_info *par = info->par;
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001028 unsigned int offset;
1029
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001030 /* Calculate the offset */
Laurent Pincharta4aadc92011-06-14 09:24:58 +00001031 if (info->var.bits_per_pixel == 0) {
1032 offset = (var->yoffset / 16) * (info->var.xres_virtual / 2)
1033 + (var->xoffset / 2);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001034 offset = offset >> 2;
1035 } else {
1036 offset = (var->yoffset * info->fix.line_length) +
Laurent Pincharta4aadc92011-06-14 09:24:58 +00001037 (var->xoffset * info->var.bits_per_pixel / 8);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001038 offset = offset >> 2;
1039 }
1040
1041 /* Set the offset */
David Miller21da3862011-01-11 23:49:34 +00001042 svga_wcrt_multi(par->state.vgabase, s3_start_address_regs, offset);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001043
1044 return 0;
1045}
1046
1047/* ------------------------------------------------------------------------- */
1048
1049/* Frame buffer operations */
1050
1051static struct fb_ops s3fb_ops = {
1052 .owner = THIS_MODULE,
1053 .fb_open = s3fb_open,
1054 .fb_release = s3fb_release,
1055 .fb_check_var = s3fb_check_var,
1056 .fb_set_par = s3fb_set_par,
1057 .fb_setcolreg = s3fb_setcolreg,
1058 .fb_blank = s3fb_blank,
1059 .fb_pan_display = s3fb_pan_display,
1060 .fb_fillrect = s3fb_fillrect,
1061 .fb_copyarea = cfb_copyarea,
1062 .fb_imageblit = s3fb_imageblit,
Antonino A. Daplas5a87ede2007-05-09 02:35:32 -07001063 .fb_get_caps = svga_get_caps,
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001064};
1065
1066/* ------------------------------------------------------------------------- */
1067
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001068static int s3_identification(struct s3fb_info *par)
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001069{
David Millerf8645932011-01-11 23:52:57 +00001070 int chip = par->chip;
1071
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001072 if (chip == CHIP_XXX_TRIO) {
David Millerf8645932011-01-11 23:52:57 +00001073 u8 cr30 = vga_rcrt(par->state.vgabase, 0x30);
1074 u8 cr2e = vga_rcrt(par->state.vgabase, 0x2e);
1075 u8 cr2f = vga_rcrt(par->state.vgabase, 0x2f);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001076
1077 if ((cr30 == 0xE0) || (cr30 == 0xE1)) {
1078 if (cr2e == 0x10)
1079 return CHIP_732_TRIO32;
1080 if (cr2e == 0x11) {
1081 if (! (cr2f & 0x40))
1082 return CHIP_764_TRIO64;
1083 else
1084 return CHIP_765_TRIO64VP;
1085 }
1086 }
1087 }
1088
1089 if (chip == CHIP_XXX_TRIO64V2_DXGX) {
David Millerf8645932011-01-11 23:52:57 +00001090 u8 cr6f = vga_rcrt(par->state.vgabase, 0x6f);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001091
1092 if (! (cr6f & 0x01))
1093 return CHIP_775_TRIO64V2_DX;
1094 else
1095 return CHIP_785_TRIO64V2_GX;
1096 }
1097
1098 if (chip == CHIP_XXX_VIRGE_DXGX) {
David Millerf8645932011-01-11 23:52:57 +00001099 u8 cr6f = vga_rcrt(par->state.vgabase, 0x6f);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001100
1101 if (! (cr6f & 0x01))
1102 return CHIP_375_VIRGE_DX;
1103 else
1104 return CHIP_385_VIRGE_GX;
1105 }
1106
Ondrej Zary9966c4f2010-05-26 14:42:27 -07001107 if (chip == CHIP_36X_TRIO3D_1X_2X) {
David Millerf8645932011-01-11 23:52:57 +00001108 switch (vga_rcrt(par->state.vgabase, 0x2f)) {
Ondrej Zary9966c4f2010-05-26 14:42:27 -07001109 case 0x00:
1110 return CHIP_360_TRIO3D_1X;
1111 case 0x01:
1112 return CHIP_362_TRIO3D_2X;
1113 case 0x02:
1114 return CHIP_368_TRIO3D_2X;
1115 }
1116 }
1117
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001118 return CHIP_UNKNOWN;
1119}
1120
1121
1122/* PCI probe */
1123
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001124static int s3_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001125{
David Miller94c322c2011-01-11 23:54:21 +00001126 struct pci_bus_region bus_reg;
1127 struct resource vga_res;
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001128 struct fb_info *info;
1129 struct s3fb_info *par;
1130 int rc;
1131 u8 regval, cr38, cr39;
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001132 bool found = false;
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001133
1134 /* Ignore secondary VGA device because there is no VGA arbitration */
1135 if (! svga_primary_device(dev)) {
1136 dev_info(&(dev->dev), "ignoring secondary device\n");
1137 return -ENODEV;
1138 }
1139
1140 /* Allocate and fill driver data structure */
Ondrej Zajicek20e061f2008-04-28 02:15:18 -07001141 info = framebuffer_alloc(sizeof(struct s3fb_info), &(dev->dev));
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001142 if (!info) {
1143 dev_err(&(dev->dev), "cannot allocate memory\n");
1144 return -ENOMEM;
1145 }
1146
1147 par = info->par;
1148 mutex_init(&par->open_lock);
1149
1150 info->flags = FBINFO_PARTIAL_PAN_OK | FBINFO_HWACCEL_YPAN;
1151 info->fbops = &s3fb_ops;
1152
1153 /* Prepare PCI device */
1154 rc = pci_enable_device(dev);
1155 if (rc < 0) {
Ondrej Zajicek594a8812008-08-05 13:01:06 -07001156 dev_err(info->device, "cannot enable PCI device\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001157 goto err_enable_device;
1158 }
1159
1160 rc = pci_request_regions(dev, "s3fb");
1161 if (rc < 0) {
Ondrej Zajicek594a8812008-08-05 13:01:06 -07001162 dev_err(info->device, "cannot reserve framebuffer region\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001163 goto err_request_regions;
1164 }
1165
1166
1167 info->fix.smem_start = pci_resource_start(dev, 0);
1168 info->fix.smem_len = pci_resource_len(dev, 0);
1169
1170 /* Map physical IO memory address into kernel space */
1171 info->screen_base = pci_iomap(dev, 0, 0);
1172 if (! info->screen_base) {
1173 rc = -ENOMEM;
Ondrej Zajicek594a8812008-08-05 13:01:06 -07001174 dev_err(info->device, "iomap for framebuffer failed\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001175 goto err_iomap;
1176 }
1177
David Miller94c322c2011-01-11 23:54:21 +00001178 bus_reg.start = 0;
1179 bus_reg.end = 64 * 1024;
1180
1181 vga_res.flags = IORESOURCE_IO;
1182
Yinghai Lufc279852013-12-09 22:54:40 -08001183 pcibios_bus_to_resource(dev->bus, &vga_res, &bus_reg);
David Miller94c322c2011-01-11 23:54:21 +00001184
1185 par->state.vgabase = (void __iomem *) vga_res.start;
1186
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001187 /* Unlock regs */
David Millerf8645932011-01-11 23:52:57 +00001188 cr38 = vga_rcrt(par->state.vgabase, 0x38);
1189 cr39 = vga_rcrt(par->state.vgabase, 0x39);
1190 vga_wseq(par->state.vgabase, 0x08, 0x06);
1191 vga_wcrt(par->state.vgabase, 0x38, 0x48);
1192 vga_wcrt(par->state.vgabase, 0x39, 0xA5);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001193
Ondrej Zary9966c4f2010-05-26 14:42:27 -07001194 /* Identify chip type */
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001195 par->chip = id->driver_data & CHIP_MASK;
David Millerf8645932011-01-11 23:52:57 +00001196 par->rev = vga_rcrt(par->state.vgabase, 0x2f);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001197 if (par->chip & CHIP_UNDECIDED_FLAG)
David Millerf8645932011-01-11 23:52:57 +00001198 par->chip = s3_identification(par);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001199
Ondrej Zary9966c4f2010-05-26 14:42:27 -07001200 /* Find how many physical memory there is on card */
1201 /* 0x36 register is accessible even if other registers are locked */
David Millerf8645932011-01-11 23:52:57 +00001202 regval = vga_rcrt(par->state.vgabase, 0x36);
Ondrej Zary9966c4f2010-05-26 14:42:27 -07001203 if (par->chip == CHIP_360_TRIO3D_1X ||
1204 par->chip == CHIP_362_TRIO3D_2X ||
Ondrej Zary5694f9c2011-03-01 19:18:17 +00001205 par->chip == CHIP_368_TRIO3D_2X ||
1206 par->chip == CHIP_365_TRIO3D) {
Ondrej Zary9966c4f2010-05-26 14:42:27 -07001207 switch ((regval & 0xE0) >> 5) {
1208 case 0: /* 8MB -- only 4MB usable for display */
1209 case 1: /* 4MB with 32-bit bus */
1210 case 2: /* 4MB */
1211 info->screen_size = 4 << 20;
1212 break;
Ondrej Zary5694f9c2011-03-01 19:18:17 +00001213 case 4: /* 2MB on 365 Trio3D */
Ondrej Zary9966c4f2010-05-26 14:42:27 -07001214 case 6: /* 2MB */
1215 info->screen_size = 2 << 20;
1216 break;
1217 }
Ondrej Zary94e948e2011-03-29 19:07:08 +00001218 } else if (par->chip == CHIP_357_VIRGE_GX2 ||
Ondrej Zary6fcdbc02012-07-06 15:12:11 +02001219 par->chip == CHIP_359_VIRGE_GX2P ||
1220 par->chip == CHIP_260_VIRGE_MX) {
Ondrej Zary94e948e2011-03-29 19:07:08 +00001221 switch ((regval & 0xC0) >> 6) {
1222 case 1: /* 4MB */
1223 info->screen_size = 4 << 20;
1224 break;
1225 case 3: /* 2MB */
1226 info->screen_size = 2 << 20;
1227 break;
1228 }
Ondrej Zary66cde972011-12-19 23:39:47 +01001229 } else if (par->chip == CHIP_988_VIRGE_VX) {
1230 switch ((regval & 0x60) >> 5) {
1231 case 0: /* 2MB */
1232 info->screen_size = 2 << 20;
1233 break;
1234 case 1: /* 4MB */
1235 info->screen_size = 4 << 20;
1236 break;
1237 case 2: /* 6MB */
1238 info->screen_size = 6 << 20;
1239 break;
1240 case 3: /* 8MB */
1241 info->screen_size = 8 << 20;
1242 break;
1243 }
1244 /* off-screen memory */
1245 regval = vga_rcrt(par->state.vgabase, 0x37);
1246 switch ((regval & 0x60) >> 5) {
1247 case 1: /* 4MB */
1248 info->screen_size -= 4 << 20;
1249 break;
1250 case 2: /* 2MB */
1251 info->screen_size -= 2 << 20;
1252 break;
1253 }
Ondrej Zary9966c4f2010-05-26 14:42:27 -07001254 } else
1255 info->screen_size = s3_memsizes[regval >> 5] << 10;
1256 info->fix.smem_len = info->screen_size;
1257
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001258 /* Find MCLK frequency */
David Millerf8645932011-01-11 23:52:57 +00001259 regval = vga_rseq(par->state.vgabase, 0x10);
1260 par->mclk_freq = ((vga_rseq(par->state.vgabase, 0x11) + 2) * 14318) / ((regval & 0x1F) + 2);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001261 par->mclk_freq = par->mclk_freq >> (regval >> 5);
1262
1263 /* Restore locks */
David Millerf8645932011-01-11 23:52:57 +00001264 vga_wcrt(par->state.vgabase, 0x38, cr38);
1265 vga_wcrt(par->state.vgabase, 0x39, cr39);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001266
1267 strcpy(info->fix.id, s3_names [par->chip]);
1268 info->fix.mmio_start = 0;
1269 info->fix.mmio_len = 0;
1270 info->fix.type = FB_TYPE_PACKED_PIXELS;
1271 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
1272 info->fix.ypanstep = 0;
1273 info->fix.accel = FB_ACCEL_NONE;
1274 info->pseudo_palette = (void*) (par->pseudo_palette);
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001275 info->var.bits_per_pixel = 8;
1276
1277#ifdef CONFIG_FB_S3_DDC
1278 /* Enable MMIO if needed */
1279 if (s3fb_ddc_needs_mmio(par->chip)) {
1280 par->mmio = ioremap(info->fix.smem_start + MMIO_OFFSET, MMIO_SIZE);
1281 if (par->mmio)
1282 svga_wcrt_mask(par->state.vgabase, 0x53, 0x08, 0x08); /* enable MMIO */
1283 else
1284 dev_err(info->device, "unable to map MMIO at 0x%lx, disabling DDC",
1285 info->fix.smem_start + MMIO_OFFSET);
1286 }
1287 if (!s3fb_ddc_needs_mmio(par->chip) || par->mmio)
1288 if (s3fb_setup_ddc_bus(info) == 0) {
1289 u8 *edid = fb_ddc_read(&par->ddc_adapter);
1290 par->ddc_registered = true;
1291 if (edid) {
1292 fb_edid_to_monspecs(edid, &info->monspecs);
1293 kfree(edid);
1294 if (!info->monspecs.modedb)
1295 dev_err(info->device, "error getting mode database\n");
1296 else {
1297 const struct fb_videomode *m;
1298
1299 fb_videomode_to_modelist(info->monspecs.modedb,
1300 info->monspecs.modedb_len,
1301 &info->modelist);
1302 m = fb_find_best_display(&info->monspecs, &info->modelist);
1303 if (m) {
1304 fb_videomode_to_var(&info->var, m);
1305 /* fill all other info->var's fields */
1306 if (s3fb_check_var(&info->var, info) == 0)
1307 found = true;
1308 }
1309 }
1310 }
1311 }
1312#endif
1313 if (!mode_option && !found)
1314 mode_option = "640x480-8@60";
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001315
1316 /* Prepare startup mode */
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001317 if (mode_option) {
1318 rc = fb_find_mode(&info->var, info, mode_option,
1319 info->monspecs.modedb, info->monspecs.modedb_len,
1320 NULL, info->var.bits_per_pixel);
1321 if (!rc || rc == 4) {
1322 rc = -EINVAL;
1323 dev_err(info->device, "mode %s not found\n", mode_option);
1324 fb_destroy_modedb(info->monspecs.modedb);
1325 info->monspecs.modedb = NULL;
1326 goto err_find_mode;
1327 }
1328 }
1329
1330 fb_destroy_modedb(info->monspecs.modedb);
1331 info->monspecs.modedb = NULL;
1332
1333 /* maximize virtual vertical size for fast scrolling */
1334 info->var.yres_virtual = info->fix.smem_len * 8 /
1335 (info->var.bits_per_pixel * info->var.xres_virtual);
1336 if (info->var.yres_virtual < info->var.yres) {
1337 dev_err(info->device, "virtual vertical size smaller than real\n");
Wei Yongjuna2a6fc52013-09-23 23:00:15 +08001338 rc = -EINVAL;
Ondrej Zary99d054d2011-03-01 19:18:08 +00001339 goto err_find_mode;
1340 }
1341
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001342 rc = fb_alloc_cmap(&info->cmap, 256, 0);
1343 if (rc < 0) {
Ondrej Zajicek594a8812008-08-05 13:01:06 -07001344 dev_err(info->device, "cannot allocate colormap\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001345 goto err_alloc_cmap;
1346 }
1347
1348 rc = register_framebuffer(info);
1349 if (rc < 0) {
Ondrej Zajicek594a8812008-08-05 13:01:06 -07001350 dev_err(info->device, "cannot register framebuffer\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001351 goto err_reg_fb;
1352 }
1353
Joe Perches31b67802013-09-19 18:35:55 -07001354 fb_info(info, "%s on %s, %d MB RAM, %d MHz MCLK\n",
1355 info->fix.id, pci_name(dev),
1356 info->fix.smem_len >> 20, (par->mclk_freq + 500) / 1000);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001357
1358 if (par->chip == CHIP_UNKNOWN)
Joe Perches31b67802013-09-19 18:35:55 -07001359 fb_info(info, "unknown chip, CR2D=%x, CR2E=%x, CRT2F=%x, CRT30=%x\n",
1360 vga_rcrt(par->state.vgabase, 0x2d),
1361 vga_rcrt(par->state.vgabase, 0x2e),
1362 vga_rcrt(par->state.vgabase, 0x2f),
1363 vga_rcrt(par->state.vgabase, 0x30));
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001364
1365 /* Record a reference to the driver data */
1366 pci_set_drvdata(dev, info);
1367
1368#ifdef CONFIG_MTRR
1369 if (mtrr) {
1370 par->mtrr_reg = -1;
1371 par->mtrr_reg = mtrr_add(info->fix.smem_start, info->fix.smem_len, MTRR_TYPE_WRCOMB, 1);
1372 }
1373#endif
1374
1375 return 0;
1376
1377 /* Error handling */
1378err_reg_fb:
1379 fb_dealloc_cmap(&info->cmap);
1380err_alloc_cmap:
1381err_find_mode:
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001382#ifdef CONFIG_FB_S3_DDC
1383 if (par->ddc_registered)
1384 i2c_del_adapter(&par->ddc_adapter);
1385 if (par->mmio)
1386 iounmap(par->mmio);
1387#endif
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001388 pci_iounmap(dev, info->screen_base);
1389err_iomap:
1390 pci_release_regions(dev);
1391err_request_regions:
1392/* pci_disable_device(dev); */
1393err_enable_device:
1394 framebuffer_release(info);
1395 return rc;
1396}
1397
1398
1399/* PCI remove */
1400
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001401static void s3_pci_remove(struct pci_dev *dev)
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001402{
1403 struct fb_info *info = pci_get_drvdata(dev);
Paul Mundt4f2970b2011-04-20 18:20:26 +09001404 struct s3fb_info __maybe_unused *par = info->par;
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001405
1406 if (info) {
1407
1408#ifdef CONFIG_MTRR
1409 if (par->mtrr_reg >= 0) {
1410 mtrr_del(par->mtrr_reg, 0, 0);
1411 par->mtrr_reg = -1;
1412 }
1413#endif
1414
1415 unregister_framebuffer(info);
1416 fb_dealloc_cmap(&info->cmap);
1417
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001418#ifdef CONFIG_FB_S3_DDC
1419 if (par->ddc_registered)
1420 i2c_del_adapter(&par->ddc_adapter);
1421 if (par->mmio)
1422 iounmap(par->mmio);
1423#endif
1424
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001425 pci_iounmap(dev, info->screen_base);
1426 pci_release_regions(dev);
1427/* pci_disable_device(dev); */
1428
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001429 framebuffer_release(info);
1430 }
1431}
1432
1433/* PCI suspend */
1434
1435static int s3_pci_suspend(struct pci_dev* dev, pm_message_t state)
1436{
1437 struct fb_info *info = pci_get_drvdata(dev);
1438 struct s3fb_info *par = info->par;
1439
Ondrej Zajicek594a8812008-08-05 13:01:06 -07001440 dev_info(info->device, "suspend\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001441
Torben Hohnac751ef2011-01-25 15:07:35 -08001442 console_lock();
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001443 mutex_lock(&(par->open_lock));
1444
1445 if ((state.event == PM_EVENT_FREEZE) || (par->ref_count == 0)) {
1446 mutex_unlock(&(par->open_lock));
Torben Hohnac751ef2011-01-25 15:07:35 -08001447 console_unlock();
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001448 return 0;
1449 }
1450
1451 fb_set_suspend(info, 1);
1452
1453 pci_save_state(dev);
1454 pci_disable_device(dev);
1455 pci_set_power_state(dev, pci_choose_state(dev, state));
1456
1457 mutex_unlock(&(par->open_lock));
Torben Hohnac751ef2011-01-25 15:07:35 -08001458 console_unlock();
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001459
1460 return 0;
1461}
1462
1463
1464/* PCI resume */
1465
1466static int s3_pci_resume(struct pci_dev* dev)
1467{
1468 struct fb_info *info = pci_get_drvdata(dev);
1469 struct s3fb_info *par = info->par;
Randy Dunlap6314db42007-05-08 00:38:11 -07001470 int err;
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001471
Ondrej Zajicek594a8812008-08-05 13:01:06 -07001472 dev_info(info->device, "resume\n");
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001473
Torben Hohnac751ef2011-01-25 15:07:35 -08001474 console_lock();
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001475 mutex_lock(&(par->open_lock));
1476
1477 if (par->ref_count == 0) {
1478 mutex_unlock(&(par->open_lock));
Torben Hohnac751ef2011-01-25 15:07:35 -08001479 console_unlock();
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001480 return 0;
1481 }
1482
1483 pci_set_power_state(dev, PCI_D0);
1484 pci_restore_state(dev);
Randy Dunlap6314db42007-05-08 00:38:11 -07001485 err = pci_enable_device(dev);
1486 if (err) {
1487 mutex_unlock(&(par->open_lock));
Torben Hohnac751ef2011-01-25 15:07:35 -08001488 console_unlock();
Ondrej Zajicek594a8812008-08-05 13:01:06 -07001489 dev_err(info->device, "error %d enabling device for resume\n", err);
Randy Dunlap6314db42007-05-08 00:38:11 -07001490 return err;
1491 }
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001492 pci_set_master(dev);
1493
1494 s3fb_set_par(info);
1495 fb_set_suspend(info, 0);
1496
1497 mutex_unlock(&(par->open_lock));
Torben Hohnac751ef2011-01-25 15:07:35 -08001498 console_unlock();
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001499
1500 return 0;
1501}
1502
1503
1504/* List of boards that we are trying to support */
1505
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001506static struct pci_device_id s3_devices[] = {
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001507 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8810), .driver_data = CHIP_XXX_TRIO},
1508 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8811), .driver_data = CHIP_XXX_TRIO},
1509 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8812), .driver_data = CHIP_M65_AURORA64VP},
1510 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8814), .driver_data = CHIP_767_TRIO64UVP},
1511 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8901), .driver_data = CHIP_XXX_TRIO64V2_DXGX},
1512 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8902), .driver_data = CHIP_551_PLATO_PX},
1513
1514 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x5631), .driver_data = CHIP_325_VIRGE},
1515 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x883D), .driver_data = CHIP_988_VIRGE_VX},
1516 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8A01), .driver_data = CHIP_XXX_VIRGE_DXGX},
Ondrej Zary94e948e2011-03-29 19:07:08 +00001517 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8A10), .driver_data = CHIP_357_VIRGE_GX2},
1518 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8A11), .driver_data = CHIP_359_VIRGE_GX2P},
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001519 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8A12), .driver_data = CHIP_359_VIRGE_GX2P},
Ondrej Zary9966c4f2010-05-26 14:42:27 -07001520 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8A13), .driver_data = CHIP_36X_TRIO3D_1X_2X},
Ondrej Zary5694f9c2011-03-01 19:18:17 +00001521 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8904), .driver_data = CHIP_365_TRIO3D},
Ondrej Zary6fcdbc02012-07-06 15:12:11 +02001522 {PCI_DEVICE(PCI_VENDOR_ID_S3, 0x8C01), .driver_data = CHIP_260_VIRGE_MX},
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001523
1524 {0, 0, 0, 0, 0, 0, 0}
1525};
1526
1527
1528MODULE_DEVICE_TABLE(pci, s3_devices);
1529
1530static struct pci_driver s3fb_pci_driver = {
1531 .name = "s3fb",
1532 .id_table = s3_devices,
1533 .probe = s3_pci_probe,
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001534 .remove = s3_pci_remove,
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001535 .suspend = s3_pci_suspend,
1536 .resume = s3_pci_resume,
1537};
1538
Joe Perches75e1b6a2011-06-23 22:35:19 +00001539/* Parse user specified options */
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001540
1541#ifndef MODULE
1542static int __init s3fb_setup(char *options)
1543{
1544 char *opt;
1545
1546 if (!options || !*options)
1547 return 0;
1548
1549 while ((opt = strsep(&options, ",")) != NULL) {
1550
1551 if (!*opt)
1552 continue;
1553#ifdef CONFIG_MTRR
Ondrej Zajicek62fa4dc2007-02-22 17:00:41 +01001554 else if (!strncmp(opt, "mtrr:", 5))
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001555 mtrr = simple_strtoul(opt + 5, NULL, 0);
1556#endif
Ondrej Zajicek62fa4dc2007-02-22 17:00:41 +01001557 else if (!strncmp(opt, "fasttext:", 9))
1558 fasttext = simple_strtoul(opt + 9, NULL, 0);
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001559 else
Krzysztof Helta8140542008-04-28 02:15:09 -07001560 mode_option = opt;
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001561 }
1562
1563 return 0;
1564}
1565#endif
1566
1567/* Cleanup */
1568
1569static void __exit s3fb_cleanup(void)
1570{
1571 pr_debug("s3fb: cleaning up\n");
1572 pci_unregister_driver(&s3fb_pci_driver);
1573}
1574
1575/* Driver Initialisation */
1576
1577static int __init s3fb_init(void)
1578{
1579
1580#ifndef MODULE
1581 char *option = NULL;
1582
1583 if (fb_get_options("s3fb", &option))
1584 return -ENODEV;
1585 s3fb_setup(option);
1586#endif
1587
1588 pr_debug("s3fb: initializing\n");
1589 return pci_register_driver(&s3fb_pci_driver);
1590}
1591
1592/* ------------------------------------------------------------------------- */
1593
1594/* Modularization */
1595
1596module_init(s3fb_init);
1597module_exit(s3fb_cleanup);