tridentfb.c 38.0 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * Frame buffer driver for Trident TGUI, Blade and Image series
L
Linus Torvalds 已提交
3
 *
4
 * Copyright 2001, 2002 - Jani Monoses   <jani@iv.ro>
L
Linus Torvalds 已提交
5 6 7
 *
 *
 * CREDITS:(in order of appearance)
8 9 10 11 12 13
 *	skeletonfb.c by Geert Uytterhoeven and other fb code in drivers/video
 *	Special thanks ;) to Mattia Crivellini <tia@mclink.it>
 *	much inspired by the XFree86 4.x Trident driver sources
 *	by Alan Hourihane the FreeVGA project
 *	Francesco Salvestrini <salvestrini@users.sf.net> XP support,
 *	code, suggestions
L
Linus Torvalds 已提交
14
 * TODO:
15
 *	timing value tweaking so it looks good on every monitor in every mode
L
Linus Torvalds 已提交
16 17 18 19 20 21 22 23
 */

#include <linux/module.h>
#include <linux/fb.h>
#include <linux/init.h>
#include <linux/pci.h>

#include <linux/delay.h>
24
#include <video/vga.h>
L
Linus Torvalds 已提交
25 26
#include <video/trident.h>

27
#define VERSION		"0.7.9-NEWAPI"
L
Linus Torvalds 已提交
28 29

struct tridentfb_par {
30
	void __iomem *io_virt;	/* iospace virtual memory address */
31
	u32 pseudo_pal[16];
32
	int chip_id;
33
	int flatpanel;
34 35 36 37 38 39
	void (*init_accel) (struct tridentfb_par *, int, int);
	void (*wait_engine) (struct tridentfb_par *);
	void (*fill_rect)
		(struct tridentfb_par *par, u32, u32, u32, u32, u32, u32);
	void (*copy_rect)
		(struct tridentfb_par *par, u32, u32, u32, u32, u32, u32);
L
Linus Torvalds 已提交
40 41
};

42
static unsigned char eng_oper;	/* engine operation... */
L
Linus Torvalds 已提交
43 44 45
static struct fb_ops tridentfb_ops;

static struct fb_fix_screeninfo tridentfb_fix = {
46
	.id = "Trident",
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54 55
	.type = FB_TYPE_PACKED_PIXELS,
	.ypanstep = 1,
	.visual = FB_VISUAL_PSEUDOCOLOR,
	.accel = FB_ACCEL_NONE,
};

/* defaults which are normally overriden by user values */

/* video mode */
56
static char *mode_option __devinitdata = "640x480";
57
static int bpp __devinitdata = 8;
L
Linus Torvalds 已提交
58

59
static int noaccel __devinitdata;
L
Linus Torvalds 已提交
60 61 62 63

static int center;
static int stretch;

64 65
static int fp __devinitdata;
static int crt __devinitdata;
L
Linus Torvalds 已提交
66

67 68
static int memsize __devinitdata;
static int memdiff __devinitdata;
L
Linus Torvalds 已提交
69 70
static int nativex;

71 72
module_param(mode_option, charp, 0);
MODULE_PARM_DESC(mode_option, "Initial video mode e.g. '648x480-8@60'");
73 74
module_param_named(mode, mode_option, charp, 0);
MODULE_PARM_DESC(mode, "Initial video mode e.g. '648x480-8@60' (deprecated)");
L
Linus Torvalds 已提交
75 76 77 78 79 80 81 82
module_param(bpp, int, 0);
module_param(center, int, 0);
module_param(stretch, int, 0);
module_param(noaccel, int, 0);
module_param(memsize, int, 0);
module_param(memdiff, int, 0);
module_param(nativex, int, 0);
module_param(fp, int, 0);
83
MODULE_PARM_DESC(fp, "Define if flatpanel is connected");
L
Linus Torvalds 已提交
84
module_param(crt, int, 0);
85
MODULE_PARM_DESC(crt, "Define if CRT is connected");
L
Linus Torvalds 已提交
86

87 88
static int is_oldclock(int id)
{
89 90
	return	(id == TGUI9440) ||
		(id == TGUI9660) ||
91 92 93 94 95
		(id == CYBER9320);
}

static int is_oldprotect(int id)
{
96 97
	return	(id == TGUI9440) ||
		(id == TGUI9660) ||
98 99 100 101
		(id == PROVIDIA9685) ||
		(id == CYBER9320) ||
		(id == CYBER9382) ||
		(id == CYBER9385);
102 103
}

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
static int is_blade(int id)
{
	return	(id == BLADE3D) ||
		(id == CYBERBLADEE4) ||
		(id == CYBERBLADEi7) ||
		(id == CYBERBLADEi7D) ||
		(id == CYBERBLADEi1) ||
		(id == CYBERBLADEi1D) ||
		(id == CYBERBLADEAi1) ||
		(id == CYBERBLADEAi1D);
}

static int is_xp(int id)
{
	return	(id == CYBERBLADEXPAi1) ||
		(id == CYBERBLADEXPm8) ||
		(id == CYBERBLADEXPm16);
}

L
Linus Torvalds 已提交
123 124
static int is3Dchip(int id)
{
125 126 127 128 129 130 131 132 133
	return ((id == BLADE3D) || (id == CYBERBLADEE4) ||
		(id == CYBERBLADEi7) || (id == CYBERBLADEi7D) ||
		(id == CYBER9397) || (id == CYBER9397DVD) ||
		(id == CYBER9520) || (id == CYBER9525DVD) ||
		(id == IMAGE975) || (id == IMAGE985) ||
		(id == CYBERBLADEi1) || (id == CYBERBLADEi1D) ||
		(id == CYBERBLADEAi1) || (id == CYBERBLADEAi1D) ||
		(id == CYBERBLADEXPm8) || (id == CYBERBLADEXPm16) ||
		(id == CYBERBLADEXPAi1));
L
Linus Torvalds 已提交
134 135 136 137 138
}

static int iscyber(int id)
{
	switch (id) {
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
	case CYBER9388:
	case CYBER9382:
	case CYBER9385:
	case CYBER9397:
	case CYBER9397DVD:
	case CYBER9520:
	case CYBER9525DVD:
	case CYBERBLADEE4:
	case CYBERBLADEi7D:
	case CYBERBLADEi1:
	case CYBERBLADEi1D:
	case CYBERBLADEAi1:
	case CYBERBLADEAi1D:
	case CYBERBLADEXPAi1:
		return 1;
L
Linus Torvalds 已提交
154

155 156
	case CYBER9320:
	case TGUI9660:
157
	case PROVIDIA9685:
158 159 160 161 162 163 164 165 166
	case IMAGE975:
	case IMAGE985:
	case BLADE3D:
	case CYBERBLADEi7:	/* VIA MPV4 integrated version */

	default:
		/* case CYBERBLDAEXPm8:  Strange */
		/* case CYBERBLDAEXPm16: Strange */
		return 0;
L
Linus Torvalds 已提交
167 168 169
	}
}

170 171 172 173
static inline void t_outb(struct tridentfb_par *p, u8 val, u16 reg)
{
	fb_writeb(val, p->io_virt + reg);
}
L
Linus Torvalds 已提交
174

175 176 177 178
static inline u8 t_inb(struct tridentfb_par *p, u16 reg)
{
	return fb_readb(p->io_virt + reg);
}
L
Linus Torvalds 已提交
179

180 181 182 183 184 185 186 187 188
static inline void writemmr(struct tridentfb_par *par, u16 r, u32 v)
{
	fb_writel(v, par->io_virt + r);
}

static inline u32 readmmr(struct tridentfb_par *par, u16 r)
{
	return fb_readl(par->io_virt + r);
}
L
Linus Torvalds 已提交
189 190 191 192 193

/*
 * Blade specific acceleration.
 */

194
#define point(x, y) ((y) << 16 | (x))
L
Linus Torvalds 已提交
195

196
static void blade_init_accel(struct tridentfb_par *par, int pitch, int bpp)
L
Linus Torvalds 已提交
197
{
198
	int v1 = (pitch >> 3) << 20;
199 200 201
	int tmp = bpp == 24 ? 2 : (bpp >> 4);
	int v2 = v1 | (tmp << 29);

202 203 204 205 206 207 208 209 210
	writemmr(par, 0x21C0, v2);
	writemmr(par, 0x21C4, v2);
	writemmr(par, 0x21B8, v2);
	writemmr(par, 0x21BC, v2);
	writemmr(par, 0x21D0, v1);
	writemmr(par, 0x21D4, v1);
	writemmr(par, 0x21C8, v1);
	writemmr(par, 0x21CC, v1);
	writemmr(par, 0x216C, 0);
L
Linus Torvalds 已提交
211 212
}

213
static void blade_wait_engine(struct tridentfb_par *par)
L
Linus Torvalds 已提交
214
{
215 216
	while (readmmr(par, STATUS) & 0xFA800000)
		cpu_relax();
L
Linus Torvalds 已提交
217 218
}

219 220
static void blade_fill_rect(struct tridentfb_par *par,
			    u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop)
L
Linus Torvalds 已提交
221
{
222 223
	writemmr(par, COLOR, c);
	writemmr(par, ROP, rop ? ROP_X : ROP_S);
224
	writemmr(par, CMD, 0x20000000 | 1 << 19 | 1 << 4 | 2 << 2);
L
Linus Torvalds 已提交
225

226 227
	writemmr(par, DST1, point(x, y));
	writemmr(par, DST2, point(x + w - 1, y + h - 1));
L
Linus Torvalds 已提交
228 229
}

230 231
static void blade_copy_rect(struct tridentfb_par *par,
			    u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h)
L
Linus Torvalds 已提交
232 233
{
	int direction = 2;
234 235 236 237
	u32 s1 = point(x1, y1);
	u32 s2 = point(x1 + w - 1, y1 + h - 1);
	u32 d1 = point(x2, y2);
	u32 d2 = point(x2 + w - 1, y2 + h - 1);
L
Linus Torvalds 已提交
238 239

	if ((y1 > y2) || ((y1 == y2) && (x1 > x2)))
240
		direction = 0;
L
Linus Torvalds 已提交
241

242 243
	writemmr(par, ROP, ROP_S);
	writemmr(par, CMD, 0xE0000000 | 1 << 19 | 1 << 4 | 1 << 2 | direction);
L
Linus Torvalds 已提交
244

245 246 247 248
	writemmr(par, SRC1, direction ? s2 : s1);
	writemmr(par, SRC2, direction ? s1 : s2);
	writemmr(par, DST1, direction ? d2 : d1);
	writemmr(par, DST2, direction ? d1 : d2);
L
Linus Torvalds 已提交
249 250 251 252 253 254
}

/*
 * BladeXP specific acceleration functions
 */

255
static void xp_init_accel(struct tridentfb_par *par, int pitch, int bpp)
L
Linus Torvalds 已提交
256
{
257 258
	unsigned char x = bpp == 24 ? 3 : (bpp >> 4);
	int v1 = pitch << (bpp == 24 ? 20 : (18 + x));
L
Linus Torvalds 已提交
259 260

	switch (pitch << (bpp >> 3)) {
261 262 263 264 265 266 267 268 269 270 271 272 273
	case 8192:
	case 512:
		x |= 0x00;
		break;
	case 1024:
		x |= 0x04;
		break;
	case 2048:
		x |= 0x08;
		break;
	case 4096:
		x |= 0x0C;
		break;
L
Linus Torvalds 已提交
274 275
	}

276
	t_outb(par, x, 0x2125);
L
Linus Torvalds 已提交
277 278 279

	eng_oper = x | 0x40;

280 281 282
	writemmr(par, 0x2154, v1);
	writemmr(par, 0x2150, v1);
	t_outb(par, 3, 0x2126);
L
Linus Torvalds 已提交
283 284
}

285
static void xp_wait_engine(struct tridentfb_par *par)
L
Linus Torvalds 已提交
286 287 288 289 290
{
	int count, timeout;

	count = 0;
	timeout = 0;
291
	while (t_inb(par, STATUS) & 0x80) {
L
Linus Torvalds 已提交
292 293 294 295 296 297 298
		count++;
		if (count == 10000000) {
			/* Timeout */
			count = 9990000;
			timeout++;
			if (timeout == 8) {
				/* Reset engine */
299
				t_outb(par, 0x00, STATUS);
L
Linus Torvalds 已提交
300 301 302
				return;
			}
		}
303
		cpu_relax();
L
Linus Torvalds 已提交
304 305 306
	}
}

307 308
static void xp_fill_rect(struct tridentfb_par *par,
			 u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop)
L
Linus Torvalds 已提交
309
{
310 311
	writemmr(par, 0x2127, ROP_P);
	writemmr(par, 0x2158, c);
312 313 314 315
	writemmr(par, DRAWFL, 0x4000);
	writemmr(par, OLDDIM, point(h, w));
	writemmr(par, OLDDST, point(y, x));
	t_outb(par, 0x01, OLDCMD);
316
	t_outb(par, eng_oper, 0x2125);
L
Linus Torvalds 已提交
317 318
}

319 320
static void xp_copy_rect(struct tridentfb_par *par,
			 u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h)
L
Linus Torvalds 已提交
321 322
{
	int direction;
323
	u32 x1_tmp, x2_tmp, y1_tmp, y2_tmp;
L
Linus Torvalds 已提交
324 325

	direction = 0x0004;
326

L
Linus Torvalds 已提交
327 328 329 330 331 332 333 334
	if ((x1 < x2) && (y1 == y2)) {
		direction |= 0x0200;
		x1_tmp = x1 + w - 1;
		x2_tmp = x2 + w - 1;
	} else {
		x1_tmp = x1;
		x2_tmp = x2;
	}
335

L
Linus Torvalds 已提交
336 337 338 339
	if (y1 < y2) {
		direction |= 0x0100;
		y1_tmp = y1 + h - 1;
		y2_tmp = y2 + h - 1;
340
	} else {
L
Linus Torvalds 已提交
341 342 343 344
		y1_tmp = y1;
		y2_tmp = y2;
	}

345
	writemmr(par, DRAWFL, direction);
346
	t_outb(par, ROP_S, 0x2127);
347 348 349 350
	writemmr(par, OLDSRC, point(y1_tmp, x1_tmp));
	writemmr(par, OLDDST, point(y2_tmp, x2_tmp));
	writemmr(par, OLDDIM, point(h, w));
	t_outb(par, 0x01, OLDCMD);
L
Linus Torvalds 已提交
351 352 353 354 355
}

/*
 * Image specific acceleration functions
 */
356
static void image_init_accel(struct tridentfb_par *par, int pitch, int bpp)
L
Linus Torvalds 已提交
357
{
358 359
	int tmp = bpp == 24 ? 2: (bpp >> 4);

360 361 362 363 364 365 366 367 368 369 370 371 372
	writemmr(par, 0x2120, 0xF0000000);
	writemmr(par, 0x2120, 0x40000000 | tmp);
	writemmr(par, 0x2120, 0x80000000);
	writemmr(par, 0x2144, 0x00000000);
	writemmr(par, 0x2148, 0x00000000);
	writemmr(par, 0x2150, 0x00000000);
	writemmr(par, 0x2154, 0x00000000);
	writemmr(par, 0x2120, 0x60000000 | (pitch << 16) | pitch);
	writemmr(par, 0x216C, 0x00000000);
	writemmr(par, 0x2170, 0x00000000);
	writemmr(par, 0x217C, 0x00000000);
	writemmr(par, 0x2120, 0x10000000);
	writemmr(par, 0x2130, (2047 << 16) | 2047);
L
Linus Torvalds 已提交
373 374
}

375
static void image_wait_engine(struct tridentfb_par *par)
L
Linus Torvalds 已提交
376
{
377 378
	while (readmmr(par, 0x2164) & 0xF0000000)
		cpu_relax();
L
Linus Torvalds 已提交
379 380
}

381 382
static void image_fill_rect(struct tridentfb_par *par,
			    u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop)
L
Linus Torvalds 已提交
383
{
384 385
	writemmr(par, 0x2120, 0x80000000);
	writemmr(par, 0x2120, 0x90000000 | ROP_S);
L
Linus Torvalds 已提交
386

387
	writemmr(par, 0x2144, c);
L
Linus Torvalds 已提交
388

389 390
	writemmr(par, DST1, point(x, y));
	writemmr(par, DST2, point(x + w - 1, y + h - 1));
L
Linus Torvalds 已提交
391

392
	writemmr(par, 0x2124, 0x80000000 | 3 << 22 | 1 << 10 | 1 << 9);
L
Linus Torvalds 已提交
393 394
}

395 396
static void image_copy_rect(struct tridentfb_par *par,
			    u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h)
L
Linus Torvalds 已提交
397
{
398
	int direction = 0x4;
399 400 401 402
	u32 s1 = point(x1, y1);
	u32 s2 = point(x1 + w - 1, y1 + h - 1);
	u32 d1 = point(x2, y2);
	u32 d2 = point(x2 + w - 1, y2 + h - 1);
L
Linus Torvalds 已提交
403

404 405 406
	if ((y1 > y2) || ((y1 == y2) && (x1 > x2)))
		direction = 0;

407 408
	writemmr(par, 0x2120, 0x80000000);
	writemmr(par, 0x2120, 0x90000000 | ROP_S);
409

410 411 412 413
	writemmr(par, SRC1, direction ? s2 : s1);
	writemmr(par, SRC2, direction ? s1 : s2);
	writemmr(par, DST1, direction ? d2 : d1);
	writemmr(par, DST2, direction ? d1 : d2);
414 415
	writemmr(par, 0x2124,
		 0x80000000 | 1 << 22 | 1 << 10 | 1 << 7 | direction);
416
}
L
Linus Torvalds 已提交
417

418 419 420 421 422 423
/*
 * TGUI 9440/96XX acceleration
 */

static void tgui_init_accel(struct tridentfb_par *par, int pitch, int bpp)
{
424
	unsigned char x = bpp == 24 ? 3 : (bpp >> 4);
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452

	/* disable clipping */
	writemmr(par, 0x2148, 0);
	writemmr(par, 0x214C, point(4095, 2047));

	switch ((pitch * bpp) / 8) {
	case 8192:
	case 512:
		x |= 0x00;
		break;
	case 1024:
		x |= 0x04;
		break;
	case 2048:
		x |= 0x08;
		break;
	case 4096:
		x |= 0x0C;
		break;
	}

	fb_writew(x, par->io_virt + 0x2122);
}

static void tgui_fill_rect(struct tridentfb_par *par,
			   u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop)
{
	t_outb(par, ROP_P, 0x2127);
453 454 455 456 457
	writemmr(par, OLDCLR, c);
	writemmr(par, DRAWFL, 0x4020);
	writemmr(par, OLDDIM, point(w - 1, h - 1));
	writemmr(par, OLDDST, point(x, y));
	t_outb(par, 1, OLDCMD);
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
}

static void tgui_copy_rect(struct tridentfb_par *par,
			   u32 x1, u32 y1, u32 x2, u32 y2, u32 w, u32 h)
{
	int flags = 0;
	u16 x1_tmp, x2_tmp, y1_tmp, y2_tmp;

	if ((x1 < x2) && (y1 == y2)) {
		flags |= 0x0200;
		x1_tmp = x1 + w - 1;
		x2_tmp = x2 + w - 1;
	} else {
		x1_tmp = x1;
		x2_tmp = x2;
	}

	if (y1 < y2) {
		flags |= 0x0100;
		y1_tmp = y1 + h - 1;
		y2_tmp = y2 + h - 1;
	} else {
		y1_tmp = y1;
		y2_tmp = y2;
	}

484
	writemmr(par, DRAWFL, 0x4 | flags);
485
	t_outb(par, ROP_S, 0x2127);
486 487 488 489
	writemmr(par, OLDSRC, point(x1_tmp, y1_tmp));
	writemmr(par, OLDDST, point(x2_tmp, y2_tmp));
	writemmr(par, OLDDIM, point(w - 1, h - 1));
	t_outb(par, 1, OLDCMD);
490 491
}

L
Linus Torvalds 已提交
492 493 494 495
/*
 * Accel functions called by the upper layers
 */
#ifdef CONFIG_FB_TRIDENT_ACCEL
496 497
static void tridentfb_fillrect(struct fb_info *info,
			       const struct fb_fillrect *fr)
L
Linus Torvalds 已提交
498
{
499
	struct tridentfb_par *par = info->par;
500
	int col;
501

502 503
	if (info->var.bits_per_pixel == 8) {
		col = fr->color;
504 505
		col |= col << 8;
		col |= col << 16;
506
	} else
507 508
		col = ((u32 *)(info->pseudo_palette))[fr->color];

509
	par->wait_engine(par);
510
	par->fill_rect(par, fr->dx, fr->dy, fr->width,
511
		       fr->height, col, fr->rop);
L
Linus Torvalds 已提交
512
}
513

514 515
static void tridentfb_copyarea(struct fb_info *info,
			       const struct fb_copyarea *ca)
L
Linus Torvalds 已提交
516
{
517 518
	struct tridentfb_par *par = info->par;

519
	par->wait_engine(par);
520
	par->copy_rect(par, ca->sx, ca->sy, ca->dx, ca->dy,
521
		       ca->width, ca->height);
522 523 524 525 526 527
}

static int tridentfb_sync(struct fb_info *info)
{
	struct tridentfb_par *par = info->par;

528
	par->wait_engine(par);
529
	return 0;
L
Linus Torvalds 已提交
530
}
531 532 533
#else
#define tridentfb_fillrect cfb_fillrect
#define tridentfb_copyarea cfb_copyarea
L
Linus Torvalds 已提交
534 535 536 537 538 539
#endif /* CONFIG_FB_TRIDENT_ACCEL */

/*
 * Hardware access functions
 */

540
static inline unsigned char read3X4(struct tridentfb_par *par, int reg)
L
Linus Torvalds 已提交
541
{
542
	return vga_mm_rcrt(par->io_virt, reg);
L
Linus Torvalds 已提交
543 544
}

545 546
static inline void write3X4(struct tridentfb_par *par, int reg,
			    unsigned char val)
L
Linus Torvalds 已提交
547
{
548
	vga_mm_wcrt(par->io_virt, reg, val);
L
Linus Torvalds 已提交
549 550
}

551 552
static inline unsigned char read3CE(struct tridentfb_par *par,
				    unsigned char reg)
L
Linus Torvalds 已提交
553
{
554
	return vga_mm_rgfx(par->io_virt, reg);
L
Linus Torvalds 已提交
555 556
}

557 558
static inline void writeAttr(struct tridentfb_par *par, int reg,
			     unsigned char val)
L
Linus Torvalds 已提交
559
{
560 561
	fb_readb(par->io_virt + VGA_IS1_RC);	/* flip-flop to index */
	vga_mm_wattr(par->io_virt, reg, val);
L
Linus Torvalds 已提交
562 563
}

564 565
static inline void write3CE(struct tridentfb_par *par, int reg,
			    unsigned char val)
L
Linus Torvalds 已提交
566
{
567
	vga_mm_wgfx(par->io_virt, reg, val);
L
Linus Torvalds 已提交
568 569
}

570
static void enable_mmio(void)
L
Linus Torvalds 已提交
571 572
{
	/* Goto New Mode */
573
	vga_io_rseq(0x0B);
L
Linus Torvalds 已提交
574 575

	/* Unprotect registers */
576
	vga_io_wseq(NewMode1, 0x80);
577

L
Linus Torvalds 已提交
578
	/* Enable MMIO */
579
	outb(PCIReg, 0x3D4);
L
Linus Torvalds 已提交
580
	outb(inb(0x3D5) | 0x01, 0x3D5);
581 582
}

583
static void disable_mmio(struct tridentfb_par *par)
584 585
{
	/* Goto New Mode */
586
	vga_mm_rseq(par->io_virt, 0x0B);
587 588

	/* Unprotect registers */
589
	vga_mm_wseq(par->io_virt, NewMode1, 0x80);
590 591

	/* Disable MMIO */
592 593
	t_outb(par, PCIReg, 0x3D4);
	t_outb(par, t_inb(par, 0x3D5) & ~0x01, 0x3D5);
L
Linus Torvalds 已提交
594 595
}

596 597
static void crtc_unlock(struct tridentfb_par *par)
{
598 599
	write3X4(par, VGA_CRTC_V_SYNC_END,
		 read3X4(par, VGA_CRTC_V_SYNC_END) & 0x7F);
600
}
L
Linus Torvalds 已提交
601 602

/*  Return flat panel's maximum x resolution */
603
static int __devinit get_nativex(struct tridentfb_par *par)
L
Linus Torvalds 已提交
604
{
605
	int x, y, tmp;
L
Linus Torvalds 已提交
606 607 608 609

	if (nativex)
		return nativex;

610
	tmp = (read3CE(par, VertStretch) >> 4) & 3;
L
Linus Torvalds 已提交
611 612

	switch (tmp) {
613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
	case 0:
		x = 1280; y = 1024;
		break;
	case 2:
		x = 1024; y = 768;
		break;
	case 3:
		x = 800; y = 600;
		break;
	case 4:
		x = 1400; y = 1050;
		break;
	case 1:
	default:
		x = 640;  y = 480;
		break;
L
Linus Torvalds 已提交
629 630 631 632 633 634 635
	}

	output("%dx%d flat panel found\n", x, y);
	return x;
}

/* Set pitch */
636
static void set_lwidth(struct tridentfb_par *par, int width)
L
Linus Torvalds 已提交
637
{
638
	write3X4(par, VGA_CRTC_OFFSET, width & 0xFF);
639 640
	write3X4(par, AddColReg,
		 (read3X4(par, AddColReg) & 0xCF) | ((width & 0x300) >> 4));
L
Linus Torvalds 已提交
641 642 643
}

/* For resolutions smaller than FP resolution stretch */
644
static void screen_stretch(struct tridentfb_par *par)
L
Linus Torvalds 已提交
645
{
646
	if (par->chip_id != CYBERBLADEXPAi1)
647
		write3CE(par, BiosReg, 0);
648
	else
649 650 651
		write3CE(par, BiosReg, 8);
	write3CE(par, VertStretch, (read3CE(par, VertStretch) & 0x7C) | 1);
	write3CE(par, HorStretch, (read3CE(par, HorStretch) & 0x7C) | 1);
L
Linus Torvalds 已提交
652 653 654
}

/* For resolutions smaller than FP resolution center */
655
static void screen_center(struct tridentfb_par *par)
L
Linus Torvalds 已提交
656
{
657 658
	write3CE(par, VertStretch, (read3CE(par, VertStretch) & 0x7C) | 0x80);
	write3CE(par, HorStretch, (read3CE(par, HorStretch) & 0x7C) | 0x80);
L
Linus Torvalds 已提交
659 660 661
}

/* Address of first shown pixel in display memory */
662
static void set_screen_start(struct tridentfb_par *par, int base)
L
Linus Torvalds 已提交
663
{
664
	u8 tmp;
665 666
	write3X4(par, VGA_CRTC_START_LO, base & 0xFF);
	write3X4(par, VGA_CRTC_START_HI, (base & 0xFF00) >> 8);
667 668 669 670
	tmp = read3X4(par, CRTCModuleTest) & 0xDF;
	write3X4(par, CRTCModuleTest, tmp | ((base & 0x10000) >> 11));
	tmp = read3X4(par, CRTHiOrd) & 0xF8;
	write3X4(par, CRTHiOrd, tmp | ((base & 0xE0000) >> 17));
L
Linus Torvalds 已提交
671 672 673
}

/* Set dotclock frequency */
674
static void set_vclk(struct tridentfb_par *par, unsigned long freq)
L
Linus Torvalds 已提交
675
{
676
	int m, n, k;
677 678 679
	unsigned long fi, d, di;
	unsigned char best_m = 0, best_n = 0, best_k = 0;
	unsigned char hi, lo;
L
Linus Torvalds 已提交
680

681
	d = 20000;
682 683 684
	for (k = 1; k >= 0; k--)
		for (m = 0; m < 32; m++)
			for (n = 0; n < 122; n++) {
685
				fi = ((14318l * (n + 8)) / (m + 2)) >> k;
686 687
				if ((di = abs(fi - freq)) < d) {
					d = di;
688 689 690
					best_n = n;
					best_m = m;
					best_k = k;
691
				}
692 693
				if (fi > freq)
					break;
694
			}
695 696 697 698 699 700 701 702 703

	if (is_oldclock(par->chip_id)) {
		lo = best_n | (best_m << 7);
		hi = (best_m >> 1) | (best_k << 4);
	} else {
		lo = best_n;
		hi = best_m | (best_k << 6);
	}

704
	if (is3Dchip(par->chip_id)) {
705 706
		vga_mm_wseq(par->io_virt, ClockHigh, hi);
		vga_mm_wseq(par->io_virt, ClockLow, lo);
L
Linus Torvalds 已提交
707
	} else {
708 709
		t_outb(par, lo, 0x43C8);
		t_outb(par, hi, 0x43C9);
L
Linus Torvalds 已提交
710
	}
711
	debug("VCLK = %X %X\n", hi, lo);
L
Linus Torvalds 已提交
712 713 714
}

/* Set number of lines for flat panels*/
715
static void set_number_of_lines(struct tridentfb_par *par, int lines)
L
Linus Torvalds 已提交
716
{
717
	int tmp = read3CE(par, CyberEnhance) & 0x8F;
L
Linus Torvalds 已提交
718 719 720 721 722 723 724 725
	if (lines > 1024)
		tmp |= 0x50;
	else if (lines > 768)
		tmp |= 0x30;
	else if (lines > 600)
		tmp |= 0x20;
	else if (lines > 480)
		tmp |= 0x10;
726
	write3CE(par, CyberEnhance, tmp);
L
Linus Torvalds 已提交
727 728 729 730
}

/*
 * If we see that FP is active we assume we have one.
731
 * Otherwise we have a CRT display. User can override.
L
Linus Torvalds 已提交
732
 */
733
static int __devinit is_flatpanel(struct tridentfb_par *par)
L
Linus Torvalds 已提交
734 735
{
	if (fp)
736
		return 1;
737
	if (crt || !iscyber(par->chip_id))
738 739
		return 0;
	return (read3CE(par, FPConfig) & 0x10) ? 1 : 0;
L
Linus Torvalds 已提交
740 741 742
}

/* Try detecting the video memory size */
743
static unsigned int __devinit get_memsize(struct tridentfb_par *par)
L
Linus Torvalds 已提交
744 745 746 747 748 749 750 751
{
	unsigned char tmp, tmp2;
	unsigned int k;

	/* If memory size provided by user */
	if (memsize)
		k = memsize * Kb;
	else
752
		switch (par->chip_id) {
753 754 755
		case CYBER9525DVD:
			k = 2560 * Kb;
			break;
L
Linus Torvalds 已提交
756
		default:
757
			tmp = read3X4(par, SPR) & 0x0F;
L
Linus Torvalds 已提交
758 759
			switch (tmp) {

760
			case 0x01:
761
				k = 512 * Kb;
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
				break;
			case 0x02:
				k = 6 * Mb;	/* XP */
				break;
			case 0x03:
				k = 1 * Mb;
				break;
			case 0x04:
				k = 8 * Mb;
				break;
			case 0x06:
				k = 10 * Mb;	/* XP */
				break;
			case 0x07:
				k = 2 * Mb;
				break;
			case 0x08:
				k = 12 * Mb;	/* XP */
				break;
			case 0x0A:
				k = 14 * Mb;	/* XP */
				break;
			case 0x0C:
				k = 16 * Mb;	/* XP */
				break;
			case 0x0E:		/* XP */

789
				tmp2 = vga_mm_rseq(par->io_virt, 0xC1);
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
				switch (tmp2) {
				case 0x00:
					k = 20 * Mb;
					break;
				case 0x01:
					k = 24 * Mb;
					break;
				case 0x10:
					k = 28 * Mb;
					break;
				case 0x11:
					k = 32 * Mb;
					break;
				default:
					k = 1 * Mb;
					break;
				}
				break;

			case 0x0F:
				k = 4 * Mb;
				break;
			default:
				k = 1 * Mb;
L
Linus Torvalds 已提交
814 815
				break;
			}
816
		}
L
Linus Torvalds 已提交
817 818

	k -= memdiff * Kb;
819
	output("framebuffer size = %d Kb\n", k / Kb);
L
Linus Torvalds 已提交
820 821 822 823
	return k;
}

/* See if we can handle the video mode described in var */
824 825
static int tridentfb_check_var(struct fb_var_screeninfo *var,
			       struct fb_info *info)
L
Linus Torvalds 已提交
826
{
827
	struct tridentfb_par *par = info->par;
L
Linus Torvalds 已提交
828
	int bpp = var->bits_per_pixel;
829
	int line_length;
830
	int ramdac = 230000; /* 230MHz for most 3D chips */
L
Linus Torvalds 已提交
831 832 833
	debug("enter\n");

	/* check color depth */
834
	if (bpp == 24)
L
Linus Torvalds 已提交
835
		bpp = var->bits_per_pixel = 32;
836 837
	if (bpp != 8 && bpp != 16 && bpp != 32)
		return -EINVAL;
838 839
	if (par->chip_id == TGUI9440 && bpp == 32)
		return -EINVAL;
840
	/* check whether resolution fits on panel and in memory */
841
	if (par->flatpanel && nativex && var->xres > nativex)
L
Linus Torvalds 已提交
842
		return -EINVAL;
843 844
	/* various resolution checks */
	var->xres = (var->xres + 7) & ~0x7;
845
	if (var->xres > var->xres_virtual)
846
		var->xres_virtual = var->xres;
847 848 849 850 851 852 853
	if (var->yres > var->yres_virtual)
		var->yres_virtual = var->yres;
	if (var->xres_virtual > 4095 || var->yres > 2048)
		return -EINVAL;
	/* prevent from position overflow for acceleration */
	if (var->yres_virtual > 0xffff)
		return -EINVAL;
854 855 856 857 858 859 860 861 862 863 864 865 866 867
	line_length = var->xres_virtual * bpp / 8;
#ifdef CONFIG_FB_TRIDENT_ACCEL
	if (!is3Dchip(par->chip_id)) {
		/* acceleration requires line length to be power of 2 */
		if (line_length <= 512)
			var->xres_virtual = 512 * 8 / bpp;
		else if (line_length <= 1024)
			var->xres_virtual = 1024 * 8 / bpp;
		else if (line_length <= 2048)
			var->xres_virtual = 2048 * 8 / bpp;
		else if (line_length <= 4096)
			var->xres_virtual = 4096 * 8 / bpp;
		else if (line_length <= 8192)
			var->xres_virtual = 8192 * 8 / bpp;
868 869
		else
			return -EINVAL;
870 871 872 873

		line_length = var->xres_virtual * bpp / 8;
	}
#endif
874 875
	if (var->yres > var->yres_virtual)
		var->yres_virtual = var->yres;
876
	if (line_length * var->yres_virtual > info->fix.smem_len)
L
Linus Torvalds 已提交
877 878 879
		return -EINVAL;

	switch (bpp) {
880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
	case 8:
		var->red.offset = 0;
		var->green.offset = 0;
		var->blue.offset = 0;
		var->red.length = 6;
		var->green.length = 6;
		var->blue.length = 6;
		break;
	case 16:
		var->red.offset = 11;
		var->green.offset = 5;
		var->blue.offset = 0;
		var->red.length = 5;
		var->green.length = 6;
		var->blue.length = 5;
		break;
	case 32:
		var->red.offset = 16;
		var->green.offset = 8;
		var->blue.offset = 0;
		var->red.length = 8;
		var->green.length = 8;
		var->blue.length = 8;
		break;
	default:
		return -EINVAL;
L
Linus Torvalds 已提交
906
	}
907 908 909 910 911 912

	if (is_xp(par->chip_id))
		ramdac = 350000;

	switch (par->chip_id) {
	case TGUI9440:
913
		ramdac = (bpp >= 16) ? 45000 : 90000;
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
		break;
	case CYBER9320:
	case TGUI9660:
		ramdac = 135000;
		break;
	case PROVIDIA9685:
	case CYBER9388:
	case CYBER9382:
	case CYBER9385:
		ramdac = 170000;
		break;
	}

	/* The clock is doubled for 32 bpp */
	if (bpp == 32)
		ramdac /= 2;

	if (PICOS2KHZ(var->pixclock) > ramdac)
		return -EINVAL;

L
Linus Torvalds 已提交
934 935 936 937 938
	debug("exit\n");

	return 0;

}
939

L
Linus Torvalds 已提交
940 941
/* Pan the display */
static int tridentfb_pan_display(struct fb_var_screeninfo *var,
942
				 struct fb_info *info)
L
Linus Torvalds 已提交
943
{
944
	struct tridentfb_par *par = info->par;
L
Linus Torvalds 已提交
945 946 947
	unsigned int offset;

	debug("enter\n");
948
	offset = (var->xoffset + (var->yoffset * var->xres_virtual))
949
		* var->bits_per_pixel / 32;
L
Linus Torvalds 已提交
950 951
	info->var.xoffset = var->xoffset;
	info->var.yoffset = var->yoffset;
952
	set_screen_start(par, offset);
L
Linus Torvalds 已提交
953 954 955 956
	debug("exit\n");
	return 0;
}

957 958 959 960 961 962 963 964 965
static void shadowmode_on(struct tridentfb_par *par)
{
	write3CE(par, CyberControl, read3CE(par, CyberControl) | 0x81);
}

static void shadowmode_off(struct tridentfb_par *par)
{
	write3CE(par, CyberControl, read3CE(par, CyberControl) & 0x7E);
}
L
Linus Torvalds 已提交
966 967 968 969

/* Set the hardware to the requested video mode */
static int tridentfb_set_par(struct fb_info *info)
{
970 971 972 973
	struct tridentfb_par *par = (struct tridentfb_par *)(info->par);
	u32 htotal, hdispend, hsyncstart, hsyncend, hblankstart, hblankend;
	u32 vtotal, vdispend, vsyncstart, vsyncend, vblankstart, vblankend;
	struct fb_var_screeninfo *var = &info->var;
L
Linus Torvalds 已提交
974 975
	int bpp = var->bits_per_pixel;
	unsigned char tmp;
976 977
	unsigned long vclk;

L
Linus Torvalds 已提交
978
	debug("enter\n");
979
	hdispend = var->xres / 8 - 1;
980 981 982 983
	hsyncstart = (var->xres + var->right_margin) / 8 - 1;
	hsyncend = (var->xres + var->right_margin + var->hsync_len) / 8 - 1;
	htotal = (var->xres + var->left_margin + var->right_margin +
		  var->hsync_len) / 8 - 5;
984
	hblankstart = hdispend + 1;
985
	hblankend = htotal + 3;
L
Linus Torvalds 已提交
986 987 988

	vdispend = var->yres - 1;
	vsyncstart = var->yres + var->lower_margin;
989 990
	vsyncend = vsyncstart + var->vsync_len;
	vtotal = var->upper_margin + vsyncend - 2;
991
	vblankstart = vdispend + 1;
992
	vblankend = vtotal;
L
Linus Torvalds 已提交
993

994 995
	crtc_unlock(par);
	write3CE(par, CyberControl, 8);
L
Linus Torvalds 已提交
996

997
	if (par->flatpanel && var->xres < nativex) {
L
Linus Torvalds 已提交
998 999 1000 1001 1002
		/*
		 * on flat panels with native size larger
		 * than requested resolution decide whether
		 * we stretch or center
		 */
1003
		t_outb(par, 0xEB, VGA_MIS_W);
L
Linus Torvalds 已提交
1004

1005
		shadowmode_on(par);
L
Linus Torvalds 已提交
1006

1007
		if (center)
1008
			screen_center(par);
L
Linus Torvalds 已提交
1009
		else if (stretch)
1010
			screen_stretch(par);
L
Linus Torvalds 已提交
1011 1012

	} else {
1013
		t_outb(par, 0x2B, VGA_MIS_W);
1014
		write3CE(par, CyberControl, 8);
L
Linus Torvalds 已提交
1015 1016 1017
	}

	/* vertical timing values */
1018 1019 1020 1021 1022
	write3X4(par, VGA_CRTC_V_TOTAL, vtotal & 0xFF);
	write3X4(par, VGA_CRTC_V_DISP_END, vdispend & 0xFF);
	write3X4(par, VGA_CRTC_V_SYNC_START, vsyncstart & 0xFF);
	write3X4(par, VGA_CRTC_V_SYNC_END, (vsyncend & 0x0F));
	write3X4(par, VGA_CRTC_V_BLANK_START, vblankstart & 0xFF);
1023
	write3X4(par, VGA_CRTC_V_BLANK_END, vblankend & 0xFF);
L
Linus Torvalds 已提交
1024 1025

	/* horizontal timing values */
1026 1027 1028 1029
	write3X4(par, VGA_CRTC_H_TOTAL, htotal & 0xFF);
	write3X4(par, VGA_CRTC_H_DISP, hdispend & 0xFF);
	write3X4(par, VGA_CRTC_H_SYNC_START, hsyncstart & 0xFF);
	write3X4(par, VGA_CRTC_H_SYNC_END,
1030
		 (hsyncend & 0x1F) | ((hblankend & 0x20) << 2));
1031
	write3X4(par, VGA_CRTC_H_BLANK_START, hblankstart & 0xFF);
1032
	write3X4(par, VGA_CRTC_H_BLANK_END, hblankend & 0x1F);
L
Linus Torvalds 已提交
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043

	/* higher bits of vertical timing values */
	tmp = 0x10;
	if (vtotal & 0x100) tmp |= 0x01;
	if (vdispend & 0x100) tmp |= 0x02;
	if (vsyncstart & 0x100) tmp |= 0x04;
	if (vblankstart & 0x100) tmp |= 0x08;

	if (vtotal & 0x200) tmp |= 0x20;
	if (vdispend & 0x200) tmp |= 0x40;
	if (vsyncstart & 0x200) tmp |= 0x80;
1044
	write3X4(par, VGA_CRTC_OVERFLOW, tmp);
L
Linus Torvalds 已提交
1045

1046 1047
	tmp = read3X4(par, CRTHiOrd) & 0x07;
	tmp |= 0x08;	/* line compare bit 10 */
L
Linus Torvalds 已提交
1048 1049 1050 1051
	if (vtotal & 0x400) tmp |= 0x80;
	if (vblankstart & 0x400) tmp |= 0x40;
	if (vsyncstart & 0x400) tmp |= 0x20;
	if (vdispend & 0x400) tmp |= 0x10;
1052
	write3X4(par, CRTHiOrd, tmp);
L
Linus Torvalds 已提交
1053

1054 1055 1056 1057
	tmp = (htotal >> 8) & 0x01;
	tmp |= (hdispend >> 7) & 0x02;
	tmp |= (hsyncstart >> 5) & 0x08;
	tmp |= (hblankstart >> 4) & 0x10;
1058
	write3X4(par, HorizOverflow, tmp);
1059

L
Linus Torvalds 已提交
1060 1061
	tmp = 0x40;
	if (vblankstart & 0x200) tmp |= 0x20;
1062
//FIXME	if (info->var.vmode & FB_VMODE_DOUBLE) tmp |= 0x80;  /* double scan for 200 line modes */
1063
	write3X4(par, VGA_CRTC_MAX_SCAN, tmp);
L
Linus Torvalds 已提交
1064

1065 1066 1067
	write3X4(par, VGA_CRTC_LINE_COMPARE, 0xFF);
	write3X4(par, VGA_CRTC_PRESET_ROW, 0);
	write3X4(par, VGA_CRTC_MODE, 0xC3);
L
Linus Torvalds 已提交
1068

1069
	write3X4(par, LinearAddReg, 0x20);	/* enable linear addressing */
L
Linus Torvalds 已提交
1070

1071
	tmp = (info->var.vmode & FB_VMODE_INTERLACED) ? 0x84 : 0x80;
1072 1073
	/* enable access extended memory */
	write3X4(par, CRTCModuleTest, tmp);
L
Linus Torvalds 已提交
1074

1075 1076
	/* enable GE for text acceleration */
	write3X4(par, GraphEngReg, 0x80);
L
Linus Torvalds 已提交
1077 1078

	switch (bpp) {
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
	case 8:
		tmp = 0x00;
		break;
	case 16:
		tmp = 0x05;
		break;
	case 24:
		tmp = 0x29;
		break;
	case 32:
		tmp = 0x09;
		break;
L
Linus Torvalds 已提交
1091 1092
	}

1093
	write3X4(par, PixelBusReg, tmp);
L
Linus Torvalds 已提交
1094

1095 1096 1097
	tmp = read3X4(par, DRAMControl);
	if (!is_oldprotect(par->chip_id))
		tmp |= 0x10;
1098
	if (iscyber(par->chip_id))
1099
		tmp |= 0x20;
1100
	write3X4(par, DRAMControl, tmp);	/* both IO, linear enable */
L
Linus Torvalds 已提交
1101

1102
	write3X4(par, InterfaceSel, read3X4(par, InterfaceSel) | 0x40);
1103 1104
	if (!is_xp(par->chip_id))
		write3X4(par, Performance, read3X4(par, Performance) | 0x10);
1105
	/* MMIO & PCI read and write burst enable */
1106 1107
	if (par->chip_id != TGUI9440)
		write3X4(par, PCIReg, read3X4(par, PCIReg) | 0x06);
L
Linus Torvalds 已提交
1108

1109 1110
	vga_mm_wseq(par->io_virt, 0, 3);
	vga_mm_wseq(par->io_virt, 1, 1); /* set char clock 8 dots wide */
1111
	/* enable 4 maps because needed in chain4 mode */
1112 1113 1114
	vga_mm_wseq(par->io_virt, 2, 0x0F);
	vga_mm_wseq(par->io_virt, 3, 0);
	vga_mm_wseq(par->io_virt, 4, 0x0E); /* memory mode enable bitmaps ?? */
L
Linus Torvalds 已提交
1115

1116 1117 1118
	/* convert from picoseconds to kHz */
	vclk = PICOS2KHZ(info->var.pixclock);

1119
	/* divide clock by 2 if 32bpp chain4 mode display and CPU path */
1120
	tmp = read3CE(par, MiscExtFunc) & 0xF0;
1121
	if (bpp == 32 || (par->chip_id == TGUI9440 && bpp == 16)) {
1122
		tmp |= 8;
1123 1124 1125
		vclk *= 2;
	}
	set_vclk(par, vclk);
1126
	write3CE(par, MiscExtFunc, tmp | 0x12);
1127 1128 1129
	write3CE(par, 0x5, 0x40);	/* no CGA compat, allow 256 col */
	write3CE(par, 0x6, 0x05);	/* graphics mode */
	write3CE(par, 0x7, 0x0F);	/* planes? */
L
Linus Torvalds 已提交
1130

1131
	if (par->chip_id == CYBERBLADEXPAi1) {
L
Linus Torvalds 已提交
1132
		/* This fixes snow-effect in 32 bpp */
1133
		write3X4(par, VGA_CRTC_H_SYNC_START, 0x84);
L
Linus Torvalds 已提交
1134 1135
	}

1136 1137 1138 1139
	/* graphics mode and support 256 color modes */
	writeAttr(par, 0x10, 0x41);
	writeAttr(par, 0x12, 0x0F);	/* planes */
	writeAttr(par, 0x13, 0);	/* horizontal pel panning */
L
Linus Torvalds 已提交
1140

1141 1142
	/* colors */
	for (tmp = 0; tmp < 0x10; tmp++)
1143
		writeAttr(par, tmp, tmp);
1144 1145
	fb_readb(par->io_virt + VGA_IS1_RC);	/* flip-flop to index */
	t_outb(par, 0x20, VGA_ATT_W);		/* enable attr */
L
Linus Torvalds 已提交
1146 1147

	switch (bpp) {
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
	case 8:
		tmp = 0;
		break;
	case 16:
		tmp = 0x30;
		break;
	case 24:
	case 32:
		tmp = 0xD0;
		break;
L
Linus Torvalds 已提交
1158 1159
	}

1160 1161 1162 1163 1164 1165 1166
	t_inb(par, VGA_PEL_IW);
	t_inb(par, VGA_PEL_MSK);
	t_inb(par, VGA_PEL_MSK);
	t_inb(par, VGA_PEL_MSK);
	t_inb(par, VGA_PEL_MSK);
	t_outb(par, tmp, VGA_PEL_MSK);
	t_inb(par, VGA_PEL_IW);
L
Linus Torvalds 已提交
1167

1168
	if (par->flatpanel)
1169
		set_number_of_lines(par, info->var.yres);
1170 1171
	info->fix.line_length = info->var.xres_virtual * bpp / 8;
	set_lwidth(par, info->fix.line_length / 8);
1172 1173 1174 1175
#ifdef CONFIG_FB_TRIDENT_ACCEL
	par->init_accel(par, info->var.xres_virtual, bpp);
#endif

L
Linus Torvalds 已提交
1176
	info->fix.visual = (bpp == 8) ? FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
1177
	info->cmap.len = (bpp == 8) ? 256 : 16;
L
Linus Torvalds 已提交
1178 1179 1180 1181 1182 1183
	debug("exit\n");
	return 0;
}

/* Set one color register */
static int tridentfb_setcolreg(unsigned regno, unsigned red, unsigned green,
1184 1185
			       unsigned blue, unsigned transp,
			       struct fb_info *info)
L
Linus Torvalds 已提交
1186 1187
{
	int bpp = info->var.bits_per_pixel;
1188
	struct tridentfb_par *par = info->par;
L
Linus Torvalds 已提交
1189 1190 1191 1192

	if (regno >= info->cmap.len)
		return 1;

1193
	if (bpp == 8) {
1194 1195
		t_outb(par, 0xFF, VGA_PEL_MSK);
		t_outb(par, regno, VGA_PEL_IW);
L
Linus Torvalds 已提交
1196

1197 1198 1199
		t_outb(par, red >> 10, VGA_PEL_D);
		t_outb(par, green >> 10, VGA_PEL_D);
		t_outb(par, blue >> 10, VGA_PEL_D);
L
Linus Torvalds 已提交
1200

1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
	} else if (regno < 16) {
		if (bpp == 16) {	/* RGB 565 */
			u32 col;

			col = (red & 0xF800) | ((green & 0xFC00) >> 5) |
				((blue & 0xF800) >> 11);
			col |= col << 16;
			((u32 *)(info->pseudo_palette))[regno] = col;
		} else if (bpp == 32)		/* ARGB 8888 */
			((u32*)info->pseudo_palette)[regno] =
1211 1212
				((transp & 0xFF00) << 16)	|
				((red & 0xFF00) << 8)		|
1213
				((green & 0xFF00))		|
1214
				((blue & 0xFF00) >> 8);
1215
	}
L
Linus Torvalds 已提交
1216

1217
/* 	debug("exit\n"); */
L
Linus Torvalds 已提交
1218 1219 1220 1221 1222 1223
	return 0;
}

/* Try blanking the screen.For flat panels it does nothing */
static int tridentfb_blank(int blank_mode, struct fb_info *info)
{
1224
	unsigned char PMCont, DPMSCont;
1225
	struct tridentfb_par *par = info->par;
L
Linus Torvalds 已提交
1226 1227

	debug("enter\n");
1228
	if (par->flatpanel)
L
Linus Torvalds 已提交
1229
		return 0;
1230 1231 1232
	t_outb(par, 0x04, 0x83C8); /* Read DPMS Control */
	PMCont = t_inb(par, 0x83C6) & 0xFC;
	DPMSCont = read3CE(par, PowerStatus) & 0xFC;
1233
	switch (blank_mode) {
L
Linus Torvalds 已提交
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
	case FB_BLANK_UNBLANK:
		/* Screen: On, HSync: On, VSync: On */
	case FB_BLANK_NORMAL:
		/* Screen: Off, HSync: On, VSync: On */
		PMCont |= 0x03;
		DPMSCont |= 0x00;
		break;
	case FB_BLANK_HSYNC_SUSPEND:
		/* Screen: Off, HSync: Off, VSync: On */
		PMCont |= 0x02;
		DPMSCont |= 0x01;
		break;
	case FB_BLANK_VSYNC_SUSPEND:
		/* Screen: Off, HSync: On, VSync: Off */
		PMCont |= 0x02;
		DPMSCont |= 0x02;
		break;
	case FB_BLANK_POWERDOWN:
		/* Screen: Off, HSync: Off, VSync: Off */
		PMCont |= 0x00;
		DPMSCont |= 0x03;
		break;
1256
	}
L
Linus Torvalds 已提交
1257

1258 1259 1260
	write3CE(par, PowerStatus, DPMSCont);
	t_outb(par, 4, 0x83C8);
	t_outb(par, PMCont, 0x83C6);
L
Linus Torvalds 已提交
1261 1262 1263 1264 1265 1266 1267

	debug("exit\n");

	/* let fbcon do a softblank for us */
	return (blank_mode == FB_BLANK_NORMAL) ? 1 : 0;
}

1268 1269 1270 1271 1272 1273 1274 1275 1276 1277
static struct fb_ops tridentfb_ops = {
	.owner = THIS_MODULE,
	.fb_setcolreg = tridentfb_setcolreg,
	.fb_pan_display = tridentfb_pan_display,
	.fb_blank = tridentfb_blank,
	.fb_check_var = tridentfb_check_var,
	.fb_set_par = tridentfb_set_par,
	.fb_fillrect = tridentfb_fillrect,
	.fb_copyarea = tridentfb_copyarea,
	.fb_imageblit = cfb_imageblit,
1278 1279
#ifdef CONFIG_FB_TRIDENT_ACCEL
	.fb_sync = tridentfb_sync,
1280
#endif
1281 1282
};

1283 1284
static int __devinit trident_pci_probe(struct pci_dev *dev,
				       const struct pci_device_id *id)
L
Linus Torvalds 已提交
1285 1286 1287
{
	int err;
	unsigned char revision;
1288 1289
	struct fb_info *info;
	struct tridentfb_par *default_par;
1290 1291
	int chip3D;
	int chip_id;
L
Linus Torvalds 已提交
1292 1293 1294 1295 1296

	err = pci_enable_device(dev);
	if (err)
		return err;

1297 1298 1299 1300 1301
	info = framebuffer_alloc(sizeof(struct tridentfb_par), &dev->dev);
	if (!info)
		return -ENOMEM;
	default_par = info->par;

L
Linus Torvalds 已提交
1302 1303
	chip_id = id->device;

1304
	if (chip_id == CYBERBLADEi1)
1305 1306 1307 1308
		output("*** Please do use cyblafb, Cyberblade/i1 support "
		       "will soon be removed from tridentfb!\n");


L
Linus Torvalds 已提交
1309
	/* If PCI id is 0x9660 then further detect chip type */
1310

L
Linus Torvalds 已提交
1311
	if (chip_id == TGUI9660) {
1312
		revision = vga_io_rseq(RevisionID);
1313

L
Linus Torvalds 已提交
1314
		switch (revision) {
1315 1316 1317
		case 0x21:
			chip_id = PROVIDIA9685;
			break;
1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
		case 0x22:
		case 0x23:
			chip_id = CYBER9397;
			break;
		case 0x2A:
			chip_id = CYBER9397DVD;
			break;
		case 0x30:
		case 0x33:
		case 0x34:
		case 0x35:
		case 0x38:
		case 0x3A:
		case 0xB3:
			chip_id = CYBER9385;
			break;
		case 0x40 ... 0x43:
			chip_id = CYBER9382;
			break;
		case 0x4A:
			chip_id = CYBER9388;
			break;
		default:
			break;
L
Linus Torvalds 已提交
1342 1343 1344 1345 1346 1347
		}
	}

	chip3D = is3Dchip(chip_id);

	if (is_xp(chip_id)) {
1348 1349 1350 1351
		default_par->init_accel = xp_init_accel;
		default_par->wait_engine = xp_wait_engine;
		default_par->fill_rect = xp_fill_rect;
		default_par->copy_rect = xp_copy_rect;
1352
	} else if (is_blade(chip_id)) {
1353 1354 1355 1356
		default_par->init_accel = blade_init_accel;
		default_par->wait_engine = blade_wait_engine;
		default_par->fill_rect = blade_fill_rect;
		default_par->copy_rect = blade_copy_rect;
1357
	} else if (chip3D) {			/* 3DImage family left */
1358 1359 1360 1361
		default_par->init_accel = image_init_accel;
		default_par->wait_engine = image_wait_engine;
		default_par->fill_rect = image_fill_rect;
		default_par->copy_rect = image_copy_rect;
1362 1363 1364 1365 1366
	} else { 				/* TGUI 9440/96XX family */
		default_par->init_accel = tgui_init_accel;
		default_par->wait_engine = xp_wait_engine;
		default_par->fill_rect = tgui_fill_rect;
		default_par->copy_rect = tgui_copy_rect;
L
Linus Torvalds 已提交
1367 1368
	}

1369 1370
	default_par->chip_id = chip_id;

L
Linus Torvalds 已提交
1371
	/* setup MMIO region */
1372 1373
	tridentfb_fix.mmio_start = pci_resource_start(dev, 1);
	tridentfb_fix.mmio_len = chip3D ? 0x20000 : 0x10000;
L
Linus Torvalds 已提交
1374 1375 1376

	if (!request_mem_region(tridentfb_fix.mmio_start, tridentfb_fix.mmio_len, "tridentfb")) {
		debug("request_region failed!\n");
1377
		framebuffer_release(info);
L
Linus Torvalds 已提交
1378 1379 1380
		return -1;
	}

1381 1382
	default_par->io_virt = ioremap_nocache(tridentfb_fix.mmio_start,
					       tridentfb_fix.mmio_len);
L
Linus Torvalds 已提交
1383

1384
	if (!default_par->io_virt) {
L
Linus Torvalds 已提交
1385
		debug("ioremap failed\n");
1386 1387
		err = -1;
		goto out_unmap1;
L
Linus Torvalds 已提交
1388 1389
	}

1390 1391
	enable_mmio();

L
Linus Torvalds 已提交
1392
	/* setup framebuffer memory */
1393
	tridentfb_fix.smem_start = pci_resource_start(dev, 0);
1394
	tridentfb_fix.smem_len = get_memsize(default_par);
1395

L
Linus Torvalds 已提交
1396 1397
	if (!request_mem_region(tridentfb_fix.smem_start, tridentfb_fix.smem_len, "tridentfb")) {
		debug("request_mem_region failed!\n");
1398
		disable_mmio(info->par);
1399
		err = -1;
1400
		goto out_unmap1;
L
Linus Torvalds 已提交
1401 1402
	}

1403 1404
	info->screen_base = ioremap_nocache(tridentfb_fix.smem_start,
					    tridentfb_fix.smem_len);
L
Linus Torvalds 已提交
1405

1406
	if (!info->screen_base) {
L
Linus Torvalds 已提交
1407
		debug("ioremap failed\n");
1408
		err = -1;
1409
		goto out_unmap2;
L
Linus Torvalds 已提交
1410 1411 1412
	}

	output("%s board found\n", pci_name(dev));
1413
	default_par->flatpanel = is_flatpanel(default_par);
L
Linus Torvalds 已提交
1414

1415
	if (default_par->flatpanel)
1416
		nativex = get_nativex(default_par);
L
Linus Torvalds 已提交
1417

1418 1419
	info->fix = tridentfb_fix;
	info->fbops = &tridentfb_ops;
1420
	info->pseudo_palette = default_par->pseudo_pal;
L
Linus Torvalds 已提交
1421

1422
	info->flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
L
Linus Torvalds 已提交
1423
#ifdef CONFIG_FB_TRIDENT_ACCEL
1424
	info->flags |= FBINFO_HWACCEL_COPYAREA | FBINFO_HWACCEL_FILLRECT;
L
Linus Torvalds 已提交
1425
#endif
1426
	if (!fb_find_mode(&info->var, info,
1427
			  mode_option, NULL, 0, NULL, bpp)) {
1428
		err = -EINVAL;
1429
		goto out_unmap2;
1430
	}
1431
	err = fb_alloc_cmap(&info->cmap, 256, 0);
1432 1433 1434
	if (err < 0)
		goto out_unmap2;

1435
	if (!noaccel && default_par->init_accel)
1436
		info->var.accel_flags |= FB_ACCELF_TEXT;
L
Linus Torvalds 已提交
1437
	else
1438 1439
		info->var.accel_flags &= ~FB_ACCELF_TEXT;
	info->var.activate |= FB_ACTIVATE_NOW;
1440 1441
	info->device = &dev->dev;
	if (register_framebuffer(info) < 0) {
L
Linus Torvalds 已提交
1442
		printk(KERN_ERR "tridentfb: could not register Trident framebuffer\n");
1443
		fb_dealloc_cmap(&info->cmap);
1444
		err = -EINVAL;
1445
		goto out_unmap2;
L
Linus Torvalds 已提交
1446 1447
	}
	output("fb%d: %s frame buffer device %dx%d-%dbpp\n",
1448 1449
	   info->node, info->fix.id, info->var.xres,
	   info->var.yres, info->var.bits_per_pixel);
1450 1451

	pci_set_drvdata(dev, info);
L
Linus Torvalds 已提交
1452
	return 0;
1453

1454
out_unmap2:
1455 1456
	if (info->screen_base)
		iounmap(info->screen_base);
1457
	release_mem_region(tridentfb_fix.smem_start, tridentfb_fix.smem_len);
1458
	disable_mmio(info->par);
1459
out_unmap1:
1460 1461
	if (default_par->io_virt)
		iounmap(default_par->io_virt);
1462
	release_mem_region(tridentfb_fix.mmio_start, tridentfb_fix.mmio_len);
1463
	framebuffer_release(info);
1464
	return err;
L
Linus Torvalds 已提交
1465 1466
}

1467
static void __devexit trident_pci_remove(struct pci_dev *dev)
L
Linus Torvalds 已提交
1468
{
1469 1470 1471 1472
	struct fb_info *info = pci_get_drvdata(dev);
	struct tridentfb_par *par = info->par;

	unregister_framebuffer(info);
L
Linus Torvalds 已提交
1473
	iounmap(par->io_virt);
1474
	iounmap(info->screen_base);
L
Linus Torvalds 已提交
1475
	release_mem_region(tridentfb_fix.smem_start, tridentfb_fix.smem_len);
1476
	release_mem_region(tridentfb_fix.mmio_start, tridentfb_fix.mmio_len);
1477 1478
	pci_set_drvdata(dev, NULL);
	framebuffer_release(info);
L
Linus Torvalds 已提交
1479 1480 1481 1482
}

/* List of boards that we are trying to support */
static struct pci_device_id trident_devices[] = {
1483 1484 1485 1486 1487 1488 1489 1490
	{PCI_VENDOR_ID_TRIDENT,	BLADE3D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBERBLADEi7, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBERBLADEi7D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBERBLADEi1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBERBLADEi1D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBERBLADEAi1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBERBLADEAi1D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBERBLADEE4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1491
	{PCI_VENDOR_ID_TRIDENT,	TGUI9440, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503
	{PCI_VENDOR_ID_TRIDENT,	TGUI9660, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	IMAGE975, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	IMAGE985, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBER9320, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBER9388, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBER9520, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBER9525DVD, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBER9397, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBER9397DVD, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBERBLADEXPAi1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBERBLADEXPm8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{PCI_VENDOR_ID_TRIDENT,	CYBERBLADEXPm16, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
L
Linus Torvalds 已提交
1504
	{0,}
1505 1506 1507
};

MODULE_DEVICE_TABLE(pci, trident_devices);
L
Linus Torvalds 已提交
1508 1509

static struct pci_driver tridentfb_pci_driver = {
1510 1511 1512 1513
	.name = "tridentfb",
	.id_table = trident_devices,
	.probe = trident_pci_probe,
	.remove = __devexit_p(trident_pci_remove)
L
Linus Torvalds 已提交
1514 1515 1516 1517 1518
};

/*
 * Parse user specified options (`video=trident:')
 * example:
1519
 *	video=trident:800x600,bpp=16,noaccel
L
Linus Torvalds 已提交
1520 1521
 */
#ifndef MODULE
1522
static int __init tridentfb_setup(char *options)
L
Linus Torvalds 已提交
1523
{
1524
	char *opt;
L
Linus Torvalds 已提交
1525 1526
	if (!options || !*options)
		return 0;
1527 1528 1529 1530
	while ((opt = strsep(&options, ",")) != NULL) {
		if (!*opt)
			continue;
		if (!strncmp(opt, "noaccel", 7))
L
Linus Torvalds 已提交
1531
			noaccel = 1;
1532
		else if (!strncmp(opt, "fp", 2))
1533
			fp = 1;
1534
		else if (!strncmp(opt, "crt", 3))
1535
			fp = 0;
1536 1537 1538
		else if (!strncmp(opt, "bpp=", 4))
			bpp = simple_strtoul(opt + 4, NULL, 0);
		else if (!strncmp(opt, "center", 6))
L
Linus Torvalds 已提交
1539
			center = 1;
1540
		else if (!strncmp(opt, "stretch", 7))
L
Linus Torvalds 已提交
1541
			stretch = 1;
1542 1543 1544 1545 1546 1547
		else if (!strncmp(opt, "memsize=", 8))
			memsize = simple_strtoul(opt + 8, NULL, 0);
		else if (!strncmp(opt, "memdiff=", 8))
			memdiff = simple_strtoul(opt + 8, NULL, 0);
		else if (!strncmp(opt, "nativex=", 8))
			nativex = simple_strtoul(opt + 8, NULL, 0);
L
Linus Torvalds 已提交
1548
		else
1549
			mode_option = opt;
L
Linus Torvalds 已提交
1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
	}
	return 0;
}
#endif

static int __init tridentfb_init(void)
{
#ifndef MODULE
	char *option = NULL;

	if (fb_get_options("tridentfb", &option))
		return -ENODEV;
	tridentfb_setup(option);
#endif
	output("Trident framebuffer %s initializing\n", VERSION);
	return pci_register_driver(&tridentfb_pci_driver);
}

static void __exit tridentfb_exit(void)
{
	pci_unregister_driver(&tridentfb_pci_driver);
}

module_init(tridentfb_init);
module_exit(tridentfb_exit);

MODULE_AUTHOR("Jani Monoses <jani@iv.ro>");
MODULE_DESCRIPTION("Framebuffer driver for Trident cards");
MODULE_LICENSE("GPL");