sis_main.c 181.1 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
T
Thomas Winischhofer 已提交
2 3 4
 * SiS 300/540/630[S]/730[S],
 * SiS 315[E|PRO]/550/[M]65x/[M]66x[F|M|G]X/[M]74x[GX]/330/[M]76x[GX],
 * XGI V3XT/V5/V8, Z7
L
Linus Torvalds 已提交
5 6
 * frame buffer driver for Linux kernels >= 2.4.14 and >=2.6.3
 *
T
Thomas Winischhofer 已提交
7
 * Copyright (C) 2001-2005 Thomas Winischhofer, Vienna, Austria.
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the named License,
 * or any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
 *
T
Thomas Winischhofer 已提交
23
 * Author:	Thomas Winischhofer <thomas@winischhofer.net>
L
Linus Torvalds 已提交
24 25 26
 *
 * Author of (practically wiped) code base:
 *		SiS (www.sis.com)
T
Thomas Winischhofer 已提交
27
 *		Copyright (C) 1999 Silicon Integrated Systems, Inc.
L
Linus Torvalds 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
 *
 * See http://www.winischhofer.net/ for more information and updates
 *
 * Originally based on the VBE 2.0 compliant graphic boards framebuffer driver,
 * which is (c) 1998 Gerd Knorr <kraxel@goldbach.in-berlin.de>
 *
 */

#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/spinlock.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/mm.h>
43
#include <linux/screen_info.h>
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51 52 53
#include <linux/slab.h>
#include <linux/fb.h>
#include <linux/selection.h>
#include <linux/ioport.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/vmalloc.h>
#include <linux/capability.h>
#include <linux/fs.h>
#include <linux/types.h>
54
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62
#include <asm/io.h>
#ifdef CONFIG_MTRR
#include <asm/mtrr.h>
#endif

#include "sis.h"
#include "sis_main.h"

63 64 65 66 67
#if !defined(CONFIG_FB_SIS_300) && !defined(CONFIG_FB_SIS_315)
#warning Neither CONFIG_FB_SIS_300 nor CONFIG_FB_SIS_315 is set
#warning sisfb will not work!
#endif

T
Thomas Winischhofer 已提交
68 69 70
static void sisfb_handle_command(struct sis_video_info *ivideo,
				 struct sisfb_cmd *sisfb_command);

L
Linus Torvalds 已提交
71 72 73 74 75
/* ------------------ Internal helper routines ----------------- */

static void __init
sisfb_setdefaultparms(void)
{
T
Thomas Winischhofer 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
	sisfb_off		= 0;
	sisfb_parm_mem		= 0;
	sisfb_accel		= -1;
	sisfb_ypan		= -1;
	sisfb_max		= -1;
	sisfb_userom		= -1;
	sisfb_useoem		= -1;
	sisfb_mode_idx		= -1;
	sisfb_parm_rate		= -1;
	sisfb_crt1off		= 0;
	sisfb_forcecrt1		= -1;
	sisfb_crt2type		= -1;
	sisfb_crt2flags		= 0;
	sisfb_pdc		= 0xff;
	sisfb_pdca		= 0xff;
	sisfb_scalelcd		= -1;
L
Linus Torvalds 已提交
92
	sisfb_specialtiming 	= CUT_NONE;
T
Thomas Winischhofer 已提交
93 94 95 96 97 98 99 100
	sisfb_lvdshl		= -1;
	sisfb_dstn		= 0;
	sisfb_fstn		= 0;
	sisfb_tvplug		= -1;
	sisfb_tvstd		= -1;
	sisfb_tvxposoffset	= 0;
	sisfb_tvyposoffset	= 0;
	sisfb_nocrt2rate	= 0;
L
Linus Torvalds 已提交
101
#if !defined(__i386__) && !defined(__x86_64__)
T
Thomas Winischhofer 已提交
102 103
	sisfb_resetcard		= 0;
	sisfb_videoram		= 0;
L
Linus Torvalds 已提交
104 105 106
#endif
}

T
Thomas Winischhofer 已提交
107 108
/* ------------- Parameter parsing -------------- */

L
Linus Torvalds 已提交
109
static void __devinit
110
sisfb_search_vesamode(unsigned int vesamode, bool quiet)
L
Linus Torvalds 已提交
111 112 113
{
	int i = 0, j = 0;

T
Thomas Winischhofer 已提交
114
	/* We don't know the hardware specs yet and there is no ivideo */
L
Linus Torvalds 已提交
115 116

	if(vesamode == 0) {
T
Thomas Winischhofer 已提交
117 118 119
		if(!quiet)
			printk(KERN_ERR "sisfb: Invalid mode. Using default.\n");

L
Linus Torvalds 已提交
120
		sisfb_mode_idx = DEFAULT_MODE;
121

L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129
		return;
	}

	vesamode &= 0x1dff;  /* Clean VESA mode number from other flags */

	while(sisbios_mode[i++].mode_no[0] != 0) {
		if( (sisbios_mode[i-1].vesa_mode_no_1 == vesamode) ||
		    (sisbios_mode[i-1].vesa_mode_no_2 == vesamode) ) {
T
Thomas Winischhofer 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142
			if(sisfb_fstn) {
				if(sisbios_mode[i-1].mode_no[1] == 0x50 ||
				   sisbios_mode[i-1].mode_no[1] == 0x56 ||
				   sisbios_mode[i-1].mode_no[1] == 0x53)
					continue;
			} else {
				if(sisbios_mode[i-1].mode_no[1] == 0x5a ||
				   sisbios_mode[i-1].mode_no[1] == 0x5b)
					continue;
			}
			sisfb_mode_idx = i - 1;
			j = 1;
			break;
L
Linus Torvalds 已提交
143 144
		}
	}
T
Thomas Winischhofer 已提交
145 146
	if((!j) && !quiet)
		printk(KERN_ERR "sisfb: Invalid VESA mode 0x%x'\n", vesamode);
L
Linus Torvalds 已提交
147 148
}

T
Thomas Winischhofer 已提交
149
static void __devinit
150
sisfb_search_mode(char *name, bool quiet)
L
Linus Torvalds 已提交
151 152
{
	unsigned int j = 0, xres = 0, yres = 0, depth = 0, rate = 0;
T
Thomas Winischhofer 已提交
153
	int i = 0;
L
Linus Torvalds 已提交
154 155 156
	char strbuf[16], strbuf1[20];
	char *nameptr = name;

T
Thomas Winischhofer 已提交
157
	/* We don't know the hardware specs yet and there is no ivideo */
L
Linus Torvalds 已提交
158 159

	if(name == NULL) {
T
Thomas Winischhofer 已提交
160 161 162 163 164
		if(!quiet)
			printk(KERN_ERR "sisfb: Internal error, using default mode.\n");

		sisfb_mode_idx = DEFAULT_MODE;
		return;
L
Linus Torvalds 已提交
165 166
	}

T
Thomas Winischhofer 已提交
167 168 169 170 171 172
	if(!strnicmp(name, sisbios_mode[MODE_INDEX_NONE].name, strlen(name))) {
		if(!quiet)
			printk(KERN_ERR "sisfb: Mode 'none' not supported anymore. Using default.\n");

		sisfb_mode_idx = DEFAULT_MODE;
		return;
L
Linus Torvalds 已提交
173
	}
174

L
Linus Torvalds 已提交
175
	if(strlen(name) <= 19) {
T
Thomas Winischhofer 已提交
176 177 178 179
		strcpy(strbuf1, name);
		for(i = 0; i < strlen(strbuf1); i++) {
			if(strbuf1[i] < '0' || strbuf1[i] > '9') strbuf1[i] = ' ';
		}
L
Linus Torvalds 已提交
180

T
Thomas Winischhofer 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
		/* This does some fuzzy mode naming detection */
		if(sscanf(strbuf1, "%u %u %u %u", &xres, &yres, &depth, &rate) == 4) {
			if((rate <= 32) || (depth > 32)) {
				j = rate; rate = depth; depth = j;
			}
			sprintf(strbuf, "%ux%ux%u", xres, yres, depth);
			nameptr = strbuf;
			sisfb_parm_rate = rate;
		} else if(sscanf(strbuf1, "%u %u %u", &xres, &yres, &depth) == 3) {
			sprintf(strbuf, "%ux%ux%u", xres, yres, depth);
			nameptr = strbuf;
		} else {
			xres = 0;
			if((sscanf(strbuf1, "%u %u", &xres, &yres) == 2) && (xres != 0)) {
				sprintf(strbuf, "%ux%ux8", xres, yres);
				nameptr = strbuf;
			} else {
				sisfb_search_vesamode(simple_strtoul(name, NULL, 0), quiet);
				return;
			}
		}
L
Linus Torvalds 已提交
202 203 204 205 206
	}

	i = 0; j = 0;
	while(sisbios_mode[i].mode_no[0] != 0) {
		if(!strnicmp(nameptr, sisbios_mode[i++].name, strlen(nameptr))) {
T
Thomas Winischhofer 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
			if(sisfb_fstn) {
				if(sisbios_mode[i-1].mode_no[1] == 0x50 ||
				   sisbios_mode[i-1].mode_no[1] == 0x56 ||
				   sisbios_mode[i-1].mode_no[1] == 0x53)
					continue;
			} else {
				if(sisbios_mode[i-1].mode_no[1] == 0x5a ||
				   sisbios_mode[i-1].mode_no[1] == 0x5b)
					continue;
			}
			sisfb_mode_idx = i - 1;
			j = 1;
			break;
		}
	}

	if((!j) && !quiet)
		printk(KERN_ERR "sisfb: Invalid mode '%s'\n", nameptr);
L
Linus Torvalds 已提交
225 226 227 228 229 230
}

#ifndef MODULE
static void __devinit
sisfb_get_vga_mode_from_kernel(void)
{
231
#ifdef CONFIG_X86
T
Thomas Winischhofer 已提交
232
	char mymode[32];
L
Linus Torvalds 已提交
233 234 235 236 237 238 239 240
	int  mydepth = screen_info.lfb_depth;

	if(screen_info.orig_video_isVGA != VIDEO_TYPE_VLFB) return;

	if( (screen_info.lfb_width >= 320) && (screen_info.lfb_width <= 2048) &&
	    (screen_info.lfb_height >= 200) && (screen_info.lfb_height <= 1536) &&
	    (mydepth >= 8) && (mydepth <= 32) ) {

T
Thomas Winischhofer 已提交
241
		if(mydepth == 24) mydepth = 32;
L
Linus Torvalds 已提交
242

T
Thomas Winischhofer 已提交
243 244
		sprintf(mymode, "%ux%ux%u", screen_info.lfb_width,
					screen_info.lfb_height,
L
Linus Torvalds 已提交
245 246
					mydepth);

T
Thomas Winischhofer 已提交
247 248 249
		printk(KERN_DEBUG
			"sisfb: Using vga mode %s pre-set by kernel as default\n",
			mymode);
L
Linus Torvalds 已提交
250

251
		sisfb_search_mode(mymode, true);
L
Linus Torvalds 已提交
252 253 254 255 256 257 258 259 260 261 262
	}
#endif
	return;
}
#endif

static void __init
sisfb_search_crt2type(const char *name)
{
	int i = 0;

T
Thomas Winischhofer 已提交
263
	/* We don't know the hardware specs yet and there is no ivideo */
L
Linus Torvalds 已提交
264 265 266 267

	if(name == NULL) return;

	while(sis_crt2type[i].type_no != -1) {
T
Thomas Winischhofer 已提交
268 269 270 271 272 273 274
		if(!strnicmp(name, sis_crt2type[i].name, strlen(sis_crt2type[i].name))) {
			sisfb_crt2type = sis_crt2type[i].type_no;
			sisfb_tvplug = sis_crt2type[i].tvplug_no;
			sisfb_crt2flags = sis_crt2type[i].flags;
			break;
		}
		i++;
L
Linus Torvalds 已提交
275 276 277 278 279
	}

	sisfb_dstn = (sisfb_crt2flags & FL_550_DSTN) ? 1 : 0;
	sisfb_fstn = (sisfb_crt2flags & FL_550_FSTN) ? 1 : 0;

T
Thomas Winischhofer 已提交
280
	if(sisfb_crt2type < 0)
L
Linus Torvalds 已提交
281 282 283 284 285 286 287 288
		printk(KERN_ERR "sisfb: Invalid CRT2 type: %s\n", name);
}

static void __init
sisfb_search_tvstd(const char *name)
{
	int i = 0;

T
Thomas Winischhofer 已提交
289
	/* We don't know the hardware specs yet and there is no ivideo */
L
Linus Torvalds 已提交
290

T
Thomas Winischhofer 已提交
291 292
	if(name == NULL)
		return;
L
Linus Torvalds 已提交
293 294

	while(sis_tvtype[i].type_no != -1) {
T
Thomas Winischhofer 已提交
295 296 297 298 299
		if(!strnicmp(name, sis_tvtype[i].name, strlen(sis_tvtype[i].name))) {
			sisfb_tvstd = sis_tvtype[i].type_no;
			break;
		}
		i++;
L
Linus Torvalds 已提交
300 301 302 303 304 305 306
	}
}

static void __init
sisfb_search_specialtiming(const char *name)
{
	int i = 0;
307
	bool found = false;
L
Linus Torvalds 已提交
308

T
Thomas Winischhofer 已提交
309
	/* We don't know the hardware specs yet and there is no ivideo */
L
Linus Torvalds 已提交
310

T
Thomas Winischhofer 已提交
311 312
	if(name == NULL)
		return;
L
Linus Torvalds 已提交
313 314

	if(!strnicmp(name, "none", 4)) {
T
Thomas Winischhofer 已提交
315
		sisfb_specialtiming = CUT_FORCENONE;
L
Linus Torvalds 已提交
316 317
		printk(KERN_DEBUG "sisfb: Special timing disabled\n");
	} else {
T
Thomas Winischhofer 已提交
318 319 320 321
		while(mycustomttable[i].chipID != 0) {
			if(!strnicmp(name,mycustomttable[i].optionName,
			   strlen(mycustomttable[i].optionName))) {
				sisfb_specialtiming = mycustomttable[i].SpecialID;
322
				found = true;
T
Thomas Winischhofer 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
				printk(KERN_INFO "sisfb: Special timing for %s %s forced (\"%s\")\n",
					mycustomttable[i].vendorName,
					mycustomttable[i].cardName,
					mycustomttable[i].optionName);
				break;
			}
			i++;
		}
		if(!found) {
			printk(KERN_WARNING "sisfb: Invalid SpecialTiming parameter, valid are:");
			printk(KERN_WARNING "\t\"none\" (to disable special timings)\n");
			i = 0;
			while(mycustomttable[i].chipID != 0) {
				printk(KERN_WARNING "\t\"%s\" (for %s %s)\n",
					mycustomttable[i].optionName,
					mycustomttable[i].vendorName,
					mycustomttable[i].cardName);
				i++;
			}
		}
	}
}

/* ----------- Various detection routines ----------- */

static void __devinit
sisfb_detect_custom_timing(struct sis_video_info *ivideo)
{
	unsigned char *biosver = NULL;
	unsigned char *biosdate = NULL;
353
	bool footprint;
T
Thomas Winischhofer 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
	u32 chksum = 0;
	int i, j;

	if(ivideo->SiS_Pr.UseROM) {
		biosver = ivideo->SiS_Pr.VirtualRomBase + 0x06;
		biosdate = ivideo->SiS_Pr.VirtualRomBase + 0x2c;
		for(i = 0; i < 32768; i++)
			chksum += ivideo->SiS_Pr.VirtualRomBase[i];
	}

	i = 0;
	do {
		if( (mycustomttable[i].chipID == ivideo->chip)			&&
		    ((!strlen(mycustomttable[i].biosversion)) ||
		     (ivideo->SiS_Pr.UseROM &&
		      (!strncmp(mycustomttable[i].biosversion, biosver,
				strlen(mycustomttable[i].biosversion)))))	&&
		    ((!strlen(mycustomttable[i].biosdate)) ||
		     (ivideo->SiS_Pr.UseROM &&
		      (!strncmp(mycustomttable[i].biosdate, biosdate,
				strlen(mycustomttable[i].biosdate)))))		&&
		    ((!mycustomttable[i].bioschksum) ||
		     (ivideo->SiS_Pr.UseROM &&
		      (mycustomttable[i].bioschksum == chksum)))		&&
		    (mycustomttable[i].pcisubsysvendor == ivideo->subsysvendor) &&
		    (mycustomttable[i].pcisubsyscard == ivideo->subsysdevice) ) {
380
			footprint = true;
T
Thomas Winischhofer 已提交
381 382 383 384 385
			for(j = 0; j < 5; j++) {
				if(mycustomttable[i].biosFootprintAddr[j]) {
					if(ivideo->SiS_Pr.UseROM) {
						if(ivideo->SiS_Pr.VirtualRomBase[mycustomttable[i].biosFootprintAddr[j]] !=
							mycustomttable[i].biosFootprintData[j]) {
386
							footprint = false;
T
Thomas Winischhofer 已提交
387 388
						}
					} else
389
						footprint = false;
T
Thomas Winischhofer 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402 403
				}
			}
			if(footprint) {
				ivideo->SiS_Pr.SiS_CustomT = mycustomttable[i].SpecialID;
				printk(KERN_DEBUG "sisfb: Identified [%s %s], special timing applies\n",
					mycustomttable[i].vendorName,
				mycustomttable[i].cardName);
				printk(KERN_DEBUG "sisfb: [specialtiming parameter name: %s]\n",
					mycustomttable[i].optionName);
				break;
			}
		}
		i++;
	} while(mycustomttable[i].chipID);
L
Linus Torvalds 已提交
404 405
}

406
static bool __devinit
L
Linus Torvalds 已提交
407 408 409 410 411 412 413 414 415
sisfb_interpret_edid(struct sisfb_monitor *monitor, u8 *buffer)
{
	int i, j, xres, yres, refresh, index;
	u32 emodes;

	if(buffer[0] != 0x00 || buffer[1] != 0xff ||
	   buffer[2] != 0xff || buffer[3] != 0xff ||
	   buffer[4] != 0xff || buffer[5] != 0xff ||
	   buffer[6] != 0xff || buffer[7] != 0x00) {
T
Thomas Winischhofer 已提交
416
		printk(KERN_DEBUG "sisfb: Bad EDID header\n");
417
		return false;
L
Linus Torvalds 已提交
418 419 420
	}

	if(buffer[0x12] != 0x01) {
T
Thomas Winischhofer 已提交
421 422
		printk(KERN_INFO "sisfb: EDID version %d not supported\n",
			buffer[0x12]);
423
		return false;
L
Linus Torvalds 已提交
424 425 426 427
	}

	monitor->feature = buffer[0x18];

428
	if(!(buffer[0x14] & 0x80)) {
T
Thomas Winischhofer 已提交
429 430 431 432
		if(!(buffer[0x14] & 0x08)) {
			printk(KERN_INFO
				"sisfb: WARNING: Monitor does not support separate syncs\n");
		}
L
Linus Torvalds 已提交
433 434 435 436 437 438 439 440 441
	}

	if(buffer[0x13] >= 0x01) {
	   /* EDID V1 rev 1 and 2: Search for monitor descriptor
	    * to extract ranges
	    */
	    j = 0x36;
	    for(i=0; i<4; i++) {
	       if(buffer[j]     == 0x00 && buffer[j + 1] == 0x00 &&
T
Thomas Winischhofer 已提交
442
		  buffer[j + 2] == 0x00 && buffer[j + 3] == 0xfd &&
L
Linus Torvalds 已提交
443 444 445 446 447 448
		  buffer[j + 4] == 0x00) {
		  monitor->hmin = buffer[j + 7];
		  monitor->hmax = buffer[j + 8];
		  monitor->vmin = buffer[j + 5];
		  monitor->vmax = buffer[j + 6];
		  monitor->dclockmax = buffer[j + 9] * 10 * 1000;
449
		  monitor->datavalid = true;
L
Linus Torvalds 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
		  break;
	       }
	       j += 18;
	    }
	}

	if(!monitor->datavalid) {
	   /* Otherwise: Get a range from the list of supported
	    * Estabished Timings. This is not entirely accurate,
	    * because fixed frequency monitors are not supported
	    * that way.
	    */
	   monitor->hmin = 65535; monitor->hmax = 0;
	   monitor->vmin = 65535; monitor->vmax = 0;
	   monitor->dclockmax = 0;
	   emodes = buffer[0x23] | (buffer[0x24] << 8) | (buffer[0x25] << 16);
	   for(i = 0; i < 13; i++) {
	      if(emodes & sisfb_ddcsmodes[i].mask) {
T
Thomas Winischhofer 已提交
468
		 if(monitor->hmin > sisfb_ddcsmodes[i].h) monitor->hmin = sisfb_ddcsmodes[i].h;
L
Linus Torvalds 已提交
469 470 471 472 473 474 475 476 477 478
		 if(monitor->hmax < sisfb_ddcsmodes[i].h) monitor->hmax = sisfb_ddcsmodes[i].h + 1;
		 if(monitor->vmin > sisfb_ddcsmodes[i].v) monitor->vmin = sisfb_ddcsmodes[i].v;
		 if(monitor->vmax < sisfb_ddcsmodes[i].v) monitor->vmax = sisfb_ddcsmodes[i].v;
		 if(monitor->dclockmax < sisfb_ddcsmodes[i].d) monitor->dclockmax = sisfb_ddcsmodes[i].d;
	      }
	   }
	   index = 0x26;
	   for(i = 0; i < 8; i++) {
	      xres = (buffer[index] + 31) * 8;
	      switch(buffer[index + 1] & 0xc0) {
T
Thomas Winischhofer 已提交
479 480 481 482
		 case 0xc0: yres = (xres * 9) / 16; break;
		 case 0x80: yres = (xres * 4) /  5; break;
		 case 0x40: yres = (xres * 3) /  4; break;
		 default:   yres = xres;	    break;
L
Linus Torvalds 已提交
483 484 485
	      }
	      refresh = (buffer[index + 1] & 0x3f) + 60;
	      if((xres >= 640) && (yres >= 480)) {
T
Thomas Winischhofer 已提交
486 487 488
		 for(j = 0; j < 8; j++) {
		    if((xres == sisfb_ddcfmodes[j].x) &&
		       (yres == sisfb_ddcfmodes[j].y) &&
L
Linus Torvalds 已提交
489 490 491 492 493
		       (refresh == sisfb_ddcfmodes[j].v)) {
		      if(monitor->hmin > sisfb_ddcfmodes[j].h) monitor->hmin = sisfb_ddcfmodes[j].h;
		      if(monitor->hmax < sisfb_ddcfmodes[j].h) monitor->hmax = sisfb_ddcfmodes[j].h + 1;
		      if(monitor->vmin > sisfb_ddcsmodes[j].v) monitor->vmin = sisfb_ddcsmodes[j].v;
		      if(monitor->vmax < sisfb_ddcsmodes[j].v) monitor->vmax = sisfb_ddcsmodes[j].v;
T
Thomas Winischhofer 已提交
494 495 496
		      if(monitor->dclockmax < sisfb_ddcsmodes[j].d) monitor->dclockmax = sisfb_ddcsmodes[j].d;
		    }
		 }
L
Linus Torvalds 已提交
497 498
	      }
	      index += 2;
T
Thomas Winischhofer 已提交
499
	   }
L
Linus Torvalds 已提交
500
	   if((monitor->hmin <= monitor->hmax) && (monitor->vmin <= monitor->vmax)) {
501
	      monitor->datavalid = true;
L
Linus Torvalds 已提交
502 503 504
	   }
	}

T
Thomas Winischhofer 已提交
505
	return monitor->datavalid;
L
Linus Torvalds 已提交
506 507 508 509 510
}

static void __devinit
sisfb_handle_ddc(struct sis_video_info *ivideo, struct sisfb_monitor *monitor, int crtno)
{
T
Thomas Winischhofer 已提交
511 512
	unsigned short temp, i, realcrtno = crtno;
	unsigned char  buffer[256];
L
Linus Torvalds 已提交
513

514
	monitor->datavalid = false;
L
Linus Torvalds 已提交
515 516

	if(crtno) {
T
Thomas Winischhofer 已提交
517 518 519 520
	   if(ivideo->vbflags & CRT2_LCD)      realcrtno = 1;
	   else if(ivideo->vbflags & CRT2_VGA) realcrtno = 2;
	   else return;
	}
L
Linus Torvalds 已提交
521

T
Thomas Winischhofer 已提交
522 523
	if((ivideo->sisfb_crt1off) && (!crtno))
		return;
L
Linus Torvalds 已提交
524

T
Thomas Winischhofer 已提交
525 526 527 528
	temp = SiS_HandleDDC(&ivideo->SiS_Pr, ivideo->vbflags, ivideo->sisvga_engine,
				realcrtno, 0, &buffer[0], ivideo->vbflags2);
	if((!temp) || (temp == 0xffff)) {
	   printk(KERN_INFO "sisfb: CRT%d DDC probing failed\n", crtno + 1);
L
Linus Torvalds 已提交
529
	   return;
T
Thomas Winischhofer 已提交
530 531 532 533 534 535 536 537 538
	} else {
	   printk(KERN_INFO "sisfb: CRT%d DDC supported\n", crtno + 1);
	   printk(KERN_INFO "sisfb: CRT%d DDC level: %s%s%s%s\n",
		crtno + 1,
		(temp & 0x1a) ? "" : "[none of the supported]",
		(temp & 0x02) ? "2 " : "",
		(temp & 0x08) ? "D&P" : "",
		(temp & 0x10) ? "FPDI-2" : "");
	   if(temp & 0x02) {
L
Linus Torvalds 已提交
539 540
	      i = 3;  /* Number of retrys */
	      do {
T
Thomas Winischhofer 已提交
541 542
		 temp = SiS_HandleDDC(&ivideo->SiS_Pr, ivideo->vbflags, ivideo->sisvga_engine,
				     realcrtno, 1, &buffer[0], ivideo->vbflags2);
L
Linus Torvalds 已提交
543
	      } while((temp) && i--);
T
Thomas Winischhofer 已提交
544 545
	      if(!temp) {
		 if(sisfb_interpret_edid(monitor, &buffer[0])) {
L
Linus Torvalds 已提交
546
		    printk(KERN_INFO "sisfb: Monitor range H %d-%dKHz, V %d-%dHz, Max. dotclock %dMHz\n",
T
Thomas Winischhofer 已提交
547
			monitor->hmin, monitor->hmax, monitor->vmin, monitor->vmax,
L
Linus Torvalds 已提交
548 549
			monitor->dclockmax / 1000);
		 } else {
T
Thomas Winischhofer 已提交
550 551
		    printk(KERN_INFO "sisfb: CRT%d DDC EDID corrupt\n", crtno + 1);
		 }
L
Linus Torvalds 已提交
552
	      } else {
T
Thomas Winischhofer 已提交
553
		 printk(KERN_INFO "sisfb: CRT%d DDC reading failed\n", crtno + 1);
L
Linus Torvalds 已提交
554 555 556 557 558 559 560
	      }
	   } else {
	      printk(KERN_INFO "sisfb: VESA D&P and FPDI-2 not supported yet\n");
	   }
	}
}

T
Thomas Winischhofer 已提交
561 562
/* -------------- Mode validation --------------- */

563
static bool
L
Linus Torvalds 已提交
564 565 566 567 568 569
sisfb_verify_rate(struct sis_video_info *ivideo, struct sisfb_monitor *monitor,
		int mode_idx, int rate_idx, int rate)
{
	int htotal, vtotal;
	unsigned int dclock, hsync;

T
Thomas Winischhofer 已提交
570
	if(!monitor->datavalid)
571
		return true;
L
Linus Torvalds 已提交
572

T
Thomas Winischhofer 已提交
573
	if(mode_idx < 0)
574
		return false;
L
Linus Torvalds 已提交
575 576

	/* Skip for 320x200, 320x240, 640x400 */
T
Thomas Winischhofer 已提交
577 578 579 580 581 582 583 584 585 586
	switch(sisbios_mode[mode_idx].mode_no[ivideo->mni]) {
	case 0x59:
	case 0x41:
	case 0x4f:
	case 0x50:
	case 0x56:
	case 0x53:
	case 0x2f:
	case 0x5d:
	case 0x5e:
587
		return true;
L
Linus Torvalds 已提交
588 589 590
#ifdef CONFIG_FB_SIS_315
	case 0x5a:
	case 0x5b:
591
		if(ivideo->sisvga_engine == SIS_315_VGA) return true;
L
Linus Torvalds 已提交
592
#endif
T
Thomas Winischhofer 已提交
593
	}
L
Linus Torvalds 已提交
594

T
Thomas Winischhofer 已提交
595
	if(rate < (monitor->vmin - 1))
596
		return false;
T
Thomas Winischhofer 已提交
597
	if(rate > (monitor->vmax + 1))
598
		return false;
L
Linus Torvalds 已提交
599

T
Thomas Winischhofer 已提交
600
	if(sisfb_gettotalfrommode(&ivideo->SiS_Pr,
L
Linus Torvalds 已提交
601
				  sisbios_mode[mode_idx].mode_no[ivideo->mni],
T
Thomas Winischhofer 已提交
602
				  &htotal, &vtotal, rate_idx)) {
L
Linus Torvalds 已提交
603
		dclock = (htotal * vtotal * rate) / 1000;
T
Thomas Winischhofer 已提交
604
		if(dclock > (monitor->dclockmax + 1000))
605
			return false;
L
Linus Torvalds 已提交
606
		hsync = dclock / htotal;
T
Thomas Winischhofer 已提交
607
		if(hsync < (monitor->hmin - 1))
608
			return false;
T
Thomas Winischhofer 已提交
609
		if(hsync > (monitor->hmax + 1))
610
			return false;
L
Linus Torvalds 已提交
611
        } else {
612
		return false;
L
Linus Torvalds 已提交
613
	}
614
	return true;
L
Linus Torvalds 已提交
615 616 617 618 619
}

static int
sisfb_validate_mode(struct sis_video_info *ivideo, int myindex, u32 vbflags)
{
T
Thomas Winischhofer 已提交
620
	u16 xres=0, yres, myres;
L
Linus Torvalds 已提交
621 622

#ifdef CONFIG_FB_SIS_300
T
Thomas Winischhofer 已提交
623 624 625 626
	if(ivideo->sisvga_engine == SIS_300_VGA) {
		if(!(sisbios_mode[myindex].chipset & MD_SIS300))
			return -1 ;
	}
L
Linus Torvalds 已提交
627 628
#endif
#ifdef CONFIG_FB_SIS_315
T
Thomas Winischhofer 已提交
629 630 631 632
	if(ivideo->sisvga_engine == SIS_315_VGA) {
		if(!(sisbios_mode[myindex].chipset & MD_SIS315))
			return -1;
	}
L
Linus Torvalds 已提交
633 634
#endif

T
Thomas Winischhofer 已提交
635
	myres = sisbios_mode[myindex].yres;
L
Linus Torvalds 已提交
636

T
Thomas Winischhofer 已提交
637
	switch(vbflags & VB_DISPTYPE_DISP2) {
L
Linus Torvalds 已提交
638

T
Thomas Winischhofer 已提交
639 640
	case CRT2_LCD:
		xres = ivideo->lcdxres; yres = ivideo->lcdyres;
L
Linus Torvalds 已提交
641

T
Thomas Winischhofer 已提交
642 643 644 645 646 647 648
		if((ivideo->SiS_Pr.SiS_CustomT != CUT_PANEL848) &&
		   (ivideo->SiS_Pr.SiS_CustomT != CUT_PANEL856)) {
			if(sisbios_mode[myindex].xres > xres)
				return -1;
			if(myres > yres)
				return -1;
		}
L
Linus Torvalds 已提交
649

T
Thomas Winischhofer 已提交
650 651 652 653 654 655 656 657 658 659 660
		if(ivideo->sisfb_fstn) {
			if(sisbios_mode[myindex].xres == 320) {
				if(myres == 240) {
					switch(sisbios_mode[myindex].mode_no[1]) {
						case 0x50: myindex = MODE_FSTN_8;  break;
						case 0x56: myindex = MODE_FSTN_16; break;
						case 0x53: return -1;
					}
				}
			}
		}
L
Linus Torvalds 已提交
661

T
Thomas Winischhofer 已提交
662 663 664 665 666 667
		if(SiS_GetModeID_LCD(ivideo->sisvga_engine, vbflags, sisbios_mode[myindex].xres,
			 	sisbios_mode[myindex].yres, 0, ivideo->sisfb_fstn,
			 	ivideo->SiS_Pr.SiS_CustomT, xres, yres, ivideo->vbflags2) < 0x14) {
			return -1;
		}
		break;
L
Linus Torvalds 已提交
668

T
Thomas Winischhofer 已提交
669 670 671 672 673 674
	case CRT2_TV:
		if(SiS_GetModeID_TV(ivideo->sisvga_engine, vbflags, sisbios_mode[myindex].xres,
				sisbios_mode[myindex].yres, 0, ivideo->vbflags2) < 0x14) {
			return -1;
		}
		break;
L
Linus Torvalds 已提交
675

T
Thomas Winischhofer 已提交
676 677 678 679 680 681
	case CRT2_VGA:
		if(SiS_GetModeID_VGA2(ivideo->sisvga_engine, vbflags, sisbios_mode[myindex].xres,
				sisbios_mode[myindex].yres, 0, ivideo->vbflags2) < 0x14) {
			return -1;
		}
		break;
L
Linus Torvalds 已提交
682 683
	}

T
Thomas Winischhofer 已提交
684
	return myindex;
L
Linus Torvalds 已提交
685 686 687 688 689 690
}

static u8
sisfb_search_refresh_rate(struct sis_video_info *ivideo, unsigned int rate, int mode_idx)
{
	int i = 0;
T
Thomas Winischhofer 已提交
691 692
	u16 xres = sisbios_mode[mode_idx].xres;
	u16 yres = sisbios_mode[mode_idx].yres;
L
Linus Torvalds 已提交
693 694 695 696 697 698 699 700 701 702 703 704 705

	ivideo->rate_idx = 0;
	while((sisfb_vrate[i].idx != 0) && (sisfb_vrate[i].xres <= xres)) {
		if((sisfb_vrate[i].xres == xres) && (sisfb_vrate[i].yres == yres)) {
			if(sisfb_vrate[i].refresh == rate) {
				ivideo->rate_idx = sisfb_vrate[i].idx;
				break;
			} else if(sisfb_vrate[i].refresh > rate) {
				if((sisfb_vrate[i].refresh - rate) <= 3) {
					DPRINTK("sisfb: Adjusting rate from %d up to %d\n",
						rate, sisfb_vrate[i].refresh);
					ivideo->rate_idx = sisfb_vrate[i].idx;
					ivideo->refresh_rate = sisfb_vrate[i].refresh;
R
Roel Kluin 已提交
706 707
				} else if((sisfb_vrate[i].idx != 1) &&
						((rate - sisfb_vrate[i-1].refresh) <= 2)) {
L
Linus Torvalds 已提交
708 709 710 711
					DPRINTK("sisfb: Adjusting rate from %d down to %d\n",
						rate, sisfb_vrate[i-1].refresh);
					ivideo->rate_idx = sisfb_vrate[i-1].idx;
					ivideo->refresh_rate = sisfb_vrate[i-1].refresh;
T
Thomas Winischhofer 已提交
712
				}
L
Linus Torvalds 已提交
713 714 715 716
				break;
			} else if((rate - sisfb_vrate[i].refresh) <= 2) {
				DPRINTK("sisfb: Adjusting rate from %d down to %d\n",
						rate, sisfb_vrate[i].refresh);
T
Thomas Winischhofer 已提交
717 718 719
				ivideo->rate_idx = sisfb_vrate[i].idx;
				break;
			}
L
Linus Torvalds 已提交
720 721 722 723 724 725 726 727 728 729 730 731
		}
		i++;
	}
	if(ivideo->rate_idx > 0) {
		return ivideo->rate_idx;
	} else {
		printk(KERN_INFO "sisfb: Unsupported rate %d for %dx%d\n",
				rate, xres, yres);
		return 0;
	}
}

732
static bool
L
Linus Torvalds 已提交
733 734
sisfb_bridgeisslave(struct sis_video_info *ivideo)
{
T
Thomas Winischhofer 已提交
735
	unsigned char P1_00;
L
Linus Torvalds 已提交
736

T
Thomas Winischhofer 已提交
737
	if(!(ivideo->vbflags2 & VB2_VIDEOBRIDGE))
738
		return false;
L
Linus Torvalds 已提交
739

740
	P1_00 = SiS_GetReg(SISPART1, 0x00);
T
Thomas Winischhofer 已提交
741 742
	if( ((ivideo->sisvga_engine == SIS_300_VGA) && (P1_00 & 0xa0) == 0x20) ||
	    ((ivideo->sisvga_engine == SIS_315_VGA) && (P1_00 & 0x50) == 0x10) ) {
743
		return true;
T
Thomas Winischhofer 已提交
744
	} else {
745
		return false;
T
Thomas Winischhofer 已提交
746
	}
L
Linus Torvalds 已提交
747 748
}

749
static bool
L
Linus Torvalds 已提交
750 751
sisfballowretracecrt1(struct sis_video_info *ivideo)
{
T
Thomas Winischhofer 已提交
752
	u8 temp;
L
Linus Torvalds 已提交
753

754
	temp = SiS_GetReg(SISCR, 0x17);
T
Thomas Winischhofer 已提交
755
	if(!(temp & 0x80))
756
		return false;
L
Linus Torvalds 已提交
757

758
	temp = SiS_GetReg(SISSR, 0x1f);
T
Thomas Winischhofer 已提交
759
	if(temp & 0xc0)
760
		return false;
L
Linus Torvalds 已提交
761

762
	return true;
L
Linus Torvalds 已提交
763 764
}

765
static bool
L
Linus Torvalds 已提交
766 767
sisfbcheckvretracecrt1(struct sis_video_info *ivideo)
{
T
Thomas Winischhofer 已提交
768
	if(!sisfballowretracecrt1(ivideo))
769
		return false;
L
Linus Torvalds 已提交
770

771
	if (SiS_GetRegByte(SISINPSTAT) & 0x08)
772
		return true;
T
Thomas Winischhofer 已提交
773
	else
774
		return false;
L
Linus Torvalds 已提交
775 776 777 778 779
}

static void
sisfbwaitretracecrt1(struct sis_video_info *ivideo)
{
T
Thomas Winischhofer 已提交
780
	int watchdog;
L
Linus Torvalds 已提交
781

T
Thomas Winischhofer 已提交
782 783
	if(!sisfballowretracecrt1(ivideo))
		return;
L
Linus Torvalds 已提交
784

T
Thomas Winischhofer 已提交
785
	watchdog = 65536;
786
	while ((!(SiS_GetRegByte(SISINPSTAT) & 0x08)) && --watchdog);
T
Thomas Winischhofer 已提交
787
	watchdog = 65536;
788
	while ((SiS_GetRegByte(SISINPSTAT) & 0x08) && --watchdog);
L
Linus Torvalds 已提交
789 790
}

791
static bool
L
Linus Torvalds 已提交
792 793
sisfbcheckvretracecrt2(struct sis_video_info *ivideo)
{
T
Thomas Winischhofer 已提交
794
	unsigned char temp, reg;
L
Linus Torvalds 已提交
795

T
Thomas Winischhofer 已提交
796 797 798
	switch(ivideo->sisvga_engine) {
	case SIS_300_VGA: reg = 0x25; break;
	case SIS_315_VGA: reg = 0x30; break;
799
	default:	  return false;
T
Thomas Winischhofer 已提交
800
	}
L
Linus Torvalds 已提交
801

802
	temp = SiS_GetReg(SISPART1, reg);
T
Thomas Winischhofer 已提交
803
	if(temp & 0x02)
804
		return true;
T
Thomas Winischhofer 已提交
805
	else
806
		return false;
L
Linus Torvalds 已提交
807 808
}

809
static bool
L
Linus Torvalds 已提交
810 811
sisfb_CheckVBRetrace(struct sis_video_info *ivideo)
{
T
Thomas Winischhofer 已提交
812 813 814 815 816 817
	if(ivideo->currentvbflags & VB_DISPTYPE_DISP2) {
		if(!sisfb_bridgeisslave(ivideo)) {
			return sisfbcheckvretracecrt2(ivideo);
		}
	}
	return sisfbcheckvretracecrt1(ivideo);
L
Linus Torvalds 已提交
818 819 820 821 822
}

static u32
sisfb_setupvbblankflags(struct sis_video_info *ivideo, u32 *vcount, u32 *hcount)
{
T
Thomas Winischhofer 已提交
823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
	u8 idx, reg1, reg2, reg3, reg4;
	u32 ret = 0;

	(*vcount) = (*hcount) = 0;

	if((ivideo->currentvbflags & VB_DISPTYPE_DISP2) && (!(sisfb_bridgeisslave(ivideo)))) {

		ret |= (FB_VBLANK_HAVE_VSYNC  |
			FB_VBLANK_HAVE_HBLANK |
			FB_VBLANK_HAVE_VBLANK |
			FB_VBLANK_HAVE_VCOUNT |
			FB_VBLANK_HAVE_HCOUNT);
		switch(ivideo->sisvga_engine) {
			case SIS_300_VGA: idx = 0x25; break;
			default:
			case SIS_315_VGA: idx = 0x30; break;
		}
840 841 842 843
		reg1 = SiS_GetReg(SISPART1, (idx+0)); /* 30 */
		reg2 = SiS_GetReg(SISPART1, (idx+1)); /* 31 */
		reg3 = SiS_GetReg(SISPART1, (idx+2)); /* 32 */
		reg4 = SiS_GetReg(SISPART1, (idx+3)); /* 33 */
T
Thomas Winischhofer 已提交
844 845 846 847 848 849 850 851 852 853 854 855
		if(reg1 & 0x01) ret |= FB_VBLANK_VBLANKING;
		if(reg1 & 0x02) ret |= FB_VBLANK_VSYNCING;
		if(reg4 & 0x80) ret |= FB_VBLANK_HBLANKING;
		(*vcount) = reg3 | ((reg4 & 0x70) << 4);
		(*hcount) = reg2 | ((reg4 & 0x0f) << 8);

	} else if(sisfballowretracecrt1(ivideo)) {

		ret |= (FB_VBLANK_HAVE_VSYNC  |
			FB_VBLANK_HAVE_VBLANK |
			FB_VBLANK_HAVE_VCOUNT |
			FB_VBLANK_HAVE_HCOUNT);
856
		reg1 = SiS_GetRegByte(SISINPSTAT);
T
Thomas Winischhofer 已提交
857 858
		if(reg1 & 0x08) ret |= FB_VBLANK_VSYNCING;
		if(reg1 & 0x01) ret |= FB_VBLANK_VBLANKING;
859 860 861 862
		reg1 = SiS_GetReg(SISCR, 0x20);
		reg1 = SiS_GetReg(SISCR, 0x1b);
		reg2 = SiS_GetReg(SISCR, 0x1c);
		reg3 = SiS_GetReg(SISCR, 0x1d);
T
Thomas Winischhofer 已提交
863 864 865 866 867
		(*vcount) = reg2 | ((reg3 & 0x07) << 8);
		(*hcount) = (reg1 | ((reg3 & 0x10) << 4)) << 3;
	}

	return ret;
L
Linus Torvalds 已提交
868 869 870 871 872
}

static int
sisfb_myblank(struct sis_video_info *ivideo, int blank)
{
T
Thomas Winischhofer 已提交
873
	u8 sr01, sr11, sr1f, cr63=0, p2_0, p1_13;
874
	bool backlight = true;
T
Thomas Winischhofer 已提交
875 876 877 878 879 880 881 882 883

	switch(blank) {
		case FB_BLANK_UNBLANK:	/* on */
			sr01  = 0x00;
			sr11  = 0x00;
			sr1f  = 0x00;
			cr63  = 0x00;
			p2_0  = 0x20;
			p1_13 = 0x00;
884
			backlight = true;
T
Thomas Winischhofer 已提交
885 886 887 888 889 890 891 892
			break;
		case FB_BLANK_NORMAL:	/* blank */
			sr01  = 0x20;
			sr11  = 0x00;
			sr1f  = 0x00;
			cr63  = 0x00;
			p2_0  = 0x20;
			p1_13 = 0x00;
893
			backlight = true;
T
Thomas Winischhofer 已提交
894 895 896 897 898 899 900 901
			break;
		case FB_BLANK_VSYNC_SUSPEND:	/* no vsync */
			sr01  = 0x20;
			sr11  = 0x08;
			sr1f  = 0x80;
			cr63  = 0x40;
			p2_0  = 0x40;
			p1_13 = 0x80;
902
			backlight = false;
T
Thomas Winischhofer 已提交
903 904 905 906 907 908 909 910
			break;
		case FB_BLANK_HSYNC_SUSPEND:	/* no hsync */
			sr01  = 0x20;
			sr11  = 0x08;
			sr1f  = 0x40;
			cr63  = 0x40;
			p2_0  = 0x80;
			p1_13 = 0x40;
911
			backlight = false;
T
Thomas Winischhofer 已提交
912 913 914 915 916 917 918 919
			break;
		case FB_BLANK_POWERDOWN:	/* off */
			sr01  = 0x20;
			sr11  = 0x08;
			sr1f  = 0xc0;
			cr63  = 0x40;
			p2_0  = 0xc0;
			p1_13 = 0xc0;
920
			backlight = false;
T
Thomas Winischhofer 已提交
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
			break;
		default:
			return 1;
	}

	if(ivideo->currentvbflags & VB_DISPTYPE_CRT1) {

		if( (!ivideo->sisfb_thismonitor.datavalid) ||
		    ((ivideo->sisfb_thismonitor.datavalid) &&
		     (ivideo->sisfb_thismonitor.feature & 0xe0))) {

			if(ivideo->sisvga_engine == SIS_315_VGA) {
				setSISIDXREG(SISCR, ivideo->SiS_Pr.SiS_MyCR63, 0xbf, cr63);
			}

			if(!(sisfb_bridgeisslave(ivideo))) {
				setSISIDXREG(SISSR, 0x01, ~0x20, sr01);
				setSISIDXREG(SISSR, 0x1f, 0x3f, sr1f);
			}
		}

	}

	if(ivideo->currentvbflags & CRT2_LCD) {

		if(ivideo->vbflags2 & VB2_SISLVDSBRIDGE) {
			if(backlight) {
				SiS_SiS30xBLOn(&ivideo->SiS_Pr);
			} else {
				SiS_SiS30xBLOff(&ivideo->SiS_Pr);
			}
		} else if(ivideo->sisvga_engine == SIS_315_VGA) {
#ifdef CONFIG_FB_SIS_315
			if(ivideo->vbflags2 & VB2_CHRONTEL) {
				if(backlight) {
					SiS_Chrontel701xBLOn(&ivideo->SiS_Pr);
				} else {
					SiS_Chrontel701xBLOff(&ivideo->SiS_Pr);
				}
			}
#endif
		}

		if(((ivideo->sisvga_engine == SIS_300_VGA) &&
		    (ivideo->vbflags2 & (VB2_301|VB2_30xBDH|VB2_LVDS))) ||
		   ((ivideo->sisvga_engine == SIS_315_VGA) &&
		    ((ivideo->vbflags2 & (VB2_LVDS | VB2_CHRONTEL)) == VB2_LVDS))) {
			setSISIDXREG(SISSR, 0x11, ~0x0c, sr11);
		}

		if(ivideo->sisvga_engine == SIS_300_VGA) {
			if((ivideo->vbflags2 & VB2_30xB) &&
			   (!(ivideo->vbflags2 & VB2_30xBDH))) {
				setSISIDXREG(SISPART1, 0x13, 0x3f, p1_13);
			}
		} else if(ivideo->sisvga_engine == SIS_315_VGA) {
			if((ivideo->vbflags2 & VB2_30xB) &&
			   (!(ivideo->vbflags2 & VB2_30xBDH))) {
				setSISIDXREG(SISPART2, 0x00, 0x1f, p2_0);
			}
		}

	} else if(ivideo->currentvbflags & CRT2_VGA) {

		if(ivideo->vbflags2 & VB2_30xB) {
			setSISIDXREG(SISPART2, 0x00, 0x1f, p2_0);
		}

	}

	return 0;
}

/* ------------- Callbacks from init.c/init301.c  -------------- */

#ifdef CONFIG_FB_SIS_300
unsigned int
sisfb_read_nbridge_pci_dword(struct SiS_Private *SiS_Pr, int reg)
{
   struct sis_video_info *ivideo = (struct sis_video_info *)SiS_Pr->ivideo;
   u32 val = 0;

   pci_read_config_dword(ivideo->nbridge, reg, &val);
   return (unsigned int)val;
}

void
sisfb_write_nbridge_pci_dword(struct SiS_Private *SiS_Pr, int reg, unsigned int val)
{
   struct sis_video_info *ivideo = (struct sis_video_info *)SiS_Pr->ivideo;

   pci_write_config_dword(ivideo->nbridge, reg, (u32)val);
}

unsigned int
sisfb_read_lpc_pci_dword(struct SiS_Private *SiS_Pr, int reg)
{
   struct sis_video_info *ivideo = (struct sis_video_info *)SiS_Pr->ivideo;
   u32 val = 0;

   if(!ivideo->lpcdev) return 0;

   pci_read_config_dword(ivideo->lpcdev, reg, &val);
   return (unsigned int)val;
}
#endif

#ifdef CONFIG_FB_SIS_315
void
sisfb_write_nbridge_pci_byte(struct SiS_Private *SiS_Pr, int reg, unsigned char val)
{
   struct sis_video_info *ivideo = (struct sis_video_info *)SiS_Pr->ivideo;

   pci_write_config_byte(ivideo->nbridge, reg, (u8)val);
L
Linus Torvalds 已提交
1035 1036
}

T
Thomas Winischhofer 已提交
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
unsigned int
sisfb_read_mio_pci_word(struct SiS_Private *SiS_Pr, int reg)
{
   struct sis_video_info *ivideo = (struct sis_video_info *)SiS_Pr->ivideo;
   u16 val = 0;

   if(!ivideo->lpcdev) return 0;

   pci_read_config_word(ivideo->lpcdev, reg, &val);
   return (unsigned int)val;
}
#endif

L
Linus Torvalds 已提交
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
/* ----------- FBDev related routines for all series ----------- */

static int
sisfb_get_cmap_len(const struct fb_var_screeninfo *var)
{
	return (var->bits_per_pixel == 8) ? 256 : 16;
}

static void
sisfb_set_vparms(struct sis_video_info *ivideo)
{
T
Thomas Winischhofer 已提交
1061
	switch(ivideo->video_bpp) {
L
Linus Torvalds 已提交
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
	case 8:
		ivideo->DstColor = 0x0000;
		ivideo->SiS310_AccelDepth = 0x00000000;
		ivideo->video_cmap_len = 256;
		break;
	case 16:
		ivideo->DstColor = 0x8000;
		ivideo->SiS310_AccelDepth = 0x00010000;
		ivideo->video_cmap_len = 16;
		break;
	case 32:
		ivideo->DstColor = 0xC000;
		ivideo->SiS310_AccelDepth = 0x00020000;
		ivideo->video_cmap_len = 16;
		break;
	default:
		ivideo->video_cmap_len = 16;
		printk(KERN_ERR "sisfb: Unsupported depth %d", ivideo->video_bpp);
		ivideo->accel = 0;
T
Thomas Winischhofer 已提交
1081
	}
L
Linus Torvalds 已提交
1082 1083 1084 1085 1086
}

static int
sisfb_calc_maxyres(struct sis_video_info *ivideo, struct fb_var_screeninfo *var)
{
T
Thomas Winischhofer 已提交
1087
	int maxyres = ivideo->sisfb_mem / (var->xres_virtual * (var->bits_per_pixel >> 3));
L
Linus Torvalds 已提交
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108

	if(maxyres > 32767) maxyres = 32767;

	return maxyres;
}

static void
sisfb_calc_pitch(struct sis_video_info *ivideo, struct fb_var_screeninfo *var)
{
	ivideo->video_linelength = var->xres_virtual * (var->bits_per_pixel >> 3);
	ivideo->scrnpitchCRT1 = ivideo->video_linelength;
	if(!(ivideo->currentvbflags & CRT1_LCDA)) {
		if((var->vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) {
			ivideo->scrnpitchCRT1 <<= 1;
		}
	}
}

static void
sisfb_set_pitch(struct sis_video_info *ivideo)
{
1109
	bool isslavemode = false;
L
Linus Torvalds 已提交
1110 1111 1112
	unsigned short HDisplay1 = ivideo->scrnpitchCRT1 >> 3;
	unsigned short HDisplay2 = ivideo->video_linelength >> 3;

1113
	if(sisfb_bridgeisslave(ivideo)) isslavemode = true;
L
Linus Torvalds 已提交
1114

T
Thomas Winischhofer 已提交
1115 1116 1117 1118
	/* We need to set pitch for CRT1 if bridge is in slave mode, too */
	if((ivideo->currentvbflags & VB_DISPTYPE_DISP1) || (isslavemode)) {
		outSISIDXREG(SISCR,0x13,(HDisplay1 & 0xFF));
		setSISIDXREG(SISSR,0x0E,0xF0,(HDisplay1 >> 8));
L
Linus Torvalds 已提交
1119 1120
	}

T
Thomas Winischhofer 已提交
1121 1122
	/* We must not set the pitch for CRT2 if bridge is in slave mode */
	if((ivideo->currentvbflags & VB_DISPTYPE_DISP2) && (!isslavemode)) {
L
Linus Torvalds 已提交
1123
		orSISIDXREG(SISPART1,ivideo->CRT2_write_enable,0x01);
T
Thomas Winischhofer 已提交
1124 1125 1126
		outSISIDXREG(SISPART1,0x07,(HDisplay2 & 0xFF));
		setSISIDXREG(SISPART1,0x09,0xF0,(HDisplay2 >> 8));
	}
L
Linus Torvalds 已提交
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
}

static void
sisfb_bpp_to_var(struct sis_video_info *ivideo, struct fb_var_screeninfo *var)
{
	ivideo->video_cmap_len = sisfb_get_cmap_len(var);

	switch(var->bits_per_pixel) {
	case 8:
		var->red.offset = var->green.offset = var->blue.offset = 0;
1137
		var->red.length = var->green.length = var->blue.length = 8;
L
Linus Torvalds 已提交
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
		break;
	case 16:
		var->red.offset = 11;
		var->red.length = 5;
		var->green.offset = 5;
		var->green.length = 6;
		var->blue.offset = 0;
		var->blue.length = 5;
		var->transp.offset = 0;
		var->transp.length = 0;
		break;
	case 32:
		var->red.offset = 16;
		var->red.length = 8;
		var->green.offset = 8;
		var->green.length = 8;
		var->blue.offset = 0;
		var->blue.length = 8;
		var->transp.offset = 24;
		var->transp.length = 8;
		break;
	}
}

T
Thomas Winischhofer 已提交
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
static int
sisfb_set_mode(struct sis_video_info *ivideo, int clrscrn)
{
	unsigned short modeno = ivideo->mode_no;

	/* >=2.6.12's fbcon clears the screen anyway */
	modeno |= 0x80;

	outSISIDXREG(SISSR, IND_SIS_PASSWORD, SIS_PASSWORD);

	sisfb_pre_setmode(ivideo);

1174
	if(!SiSSetMode(&ivideo->SiS_Pr, modeno)) {
T
Thomas Winischhofer 已提交
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
		printk(KERN_ERR "sisfb: Setting mode[0x%x] failed\n", ivideo->mode_no);
		return -EINVAL;
	}

	outSISIDXREG(SISSR, IND_SIS_PASSWORD, SIS_PASSWORD);

	sisfb_post_setmode(ivideo);

	return 0;
}


L
Linus Torvalds 已提交
1187 1188 1189 1190 1191 1192
static int
sisfb_do_set_var(struct fb_var_screeninfo *var, int isactive, struct fb_info *info)
{
	struct sis_video_info *ivideo = (struct sis_video_info *)info->par;
	unsigned int htotal = 0, vtotal = 0;
	unsigned int drate = 0, hrate = 0;
T
Thomas Winischhofer 已提交
1193
	int found_mode = 0, ret;
L
Linus Torvalds 已提交
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
	int old_mode;
	u32 pixclock;

	htotal = var->left_margin + var->xres + var->right_margin + var->hsync_len;

	vtotal = var->upper_margin + var->lower_margin + var->vsync_len;

	pixclock = var->pixclock;

	if((var->vmode & FB_VMODE_MASK) == FB_VMODE_NONINTERLACED) {
		vtotal += var->yres;
		vtotal <<= 1;
	} else if((var->vmode & FB_VMODE_MASK) == FB_VMODE_DOUBLE) {
		vtotal += var->yres;
		vtotal <<= 2;
	} else if((var->vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) {
		vtotal += var->yres;
		vtotal <<= 1;
	} else 	vtotal += var->yres;

	if(!(htotal) || !(vtotal)) {
		DPRINTK("sisfb: Invalid 'var' information\n");
		return -EINVAL;
	}

	if(pixclock && htotal && vtotal) {
T
Thomas Winischhofer 已提交
1220 1221 1222
		drate = 1000000000 / pixclock;
		hrate = (drate * 1000) / htotal;
		ivideo->refresh_rate = (unsigned int) (hrate * 2 / vtotal);
L
Linus Torvalds 已提交
1223
	} else {
T
Thomas Winischhofer 已提交
1224
		ivideo->refresh_rate = 60;
L
Linus Torvalds 已提交
1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
	}

	old_mode = ivideo->sisfb_mode_idx;
	ivideo->sisfb_mode_idx = 0;

	while( (sisbios_mode[ivideo->sisfb_mode_idx].mode_no[0] != 0) &&
	       (sisbios_mode[ivideo->sisfb_mode_idx].xres <= var->xres) ) {
		if( (sisbios_mode[ivideo->sisfb_mode_idx].xres == var->xres) &&
		    (sisbios_mode[ivideo->sisfb_mode_idx].yres == var->yres) &&
		    (sisbios_mode[ivideo->sisfb_mode_idx].bpp == var->bits_per_pixel)) {
			ivideo->mode_no = sisbios_mode[ivideo->sisfb_mode_idx].mode_no[ivideo->mni];
			found_mode = 1;
			break;
		}
		ivideo->sisfb_mode_idx++;
	}

	if(found_mode) {
		ivideo->sisfb_mode_idx = sisfb_validate_mode(ivideo,
				ivideo->sisfb_mode_idx, ivideo->currentvbflags);
	} else {
		ivideo->sisfb_mode_idx = -1;
	}

       	if(ivideo->sisfb_mode_idx < 0) {
		printk(KERN_ERR "sisfb: Mode %dx%dx%d not supported\n", var->xres,
		       var->yres, var->bits_per_pixel);
		ivideo->sisfb_mode_idx = old_mode;
		return -EINVAL;
	}

A
Adrian Bunk 已提交
1256 1257
	ivideo->mode_no = sisbios_mode[ivideo->sisfb_mode_idx].mode_no[ivideo->mni];

L
Linus Torvalds 已提交
1258 1259 1260 1261 1262 1263
	if(sisfb_search_refresh_rate(ivideo, ivideo->refresh_rate, ivideo->sisfb_mode_idx) == 0) {
		ivideo->rate_idx = sisbios_mode[ivideo->sisfb_mode_idx].rate_idx;
		ivideo->refresh_rate = 60;
	}

	if(isactive) {
T
Thomas Winischhofer 已提交
1264 1265 1266
		/* If acceleration to be used? Need to know
		 * before pre/post_set_mode()
		 */
L
Linus Torvalds 已提交
1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
		ivideo->accel = 0;
#if defined(FBINFO_HWACCEL_DISABLED) && defined(FBINFO_HWACCEL_XPAN)
#ifdef STUPID_ACCELF_TEXT_SHIT
		if(var->accel_flags & FB_ACCELF_TEXT) {
			info->flags &= ~FBINFO_HWACCEL_DISABLED;
		} else {
			info->flags |= FBINFO_HWACCEL_DISABLED;
		}
#endif
		if(!(info->flags & FBINFO_HWACCEL_DISABLED)) ivideo->accel = -1;
#else
		if(var->accel_flags & FB_ACCELF_TEXT) ivideo->accel = -1;
#endif

T
Thomas Winischhofer 已提交
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
		if((ret = sisfb_set_mode(ivideo, 1))) {
			return ret;
		}

		ivideo->video_bpp    = sisbios_mode[ivideo->sisfb_mode_idx].bpp;
		ivideo->video_width  = sisbios_mode[ivideo->sisfb_mode_idx].xres;
		ivideo->video_height = sisbios_mode[ivideo->sisfb_mode_idx].yres;

		sisfb_calc_pitch(ivideo, var);
		sisfb_set_pitch(ivideo);

L
Linus Torvalds 已提交
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
		sisfb_set_vparms(ivideo);

		ivideo->current_width = ivideo->video_width;
		ivideo->current_height = ivideo->video_height;
		ivideo->current_bpp = ivideo->video_bpp;
		ivideo->current_htotal = htotal;
		ivideo->current_vtotal = vtotal;
		ivideo->current_linelength = ivideo->video_linelength;
		ivideo->current_pixclock = var->pixclock;
		ivideo->current_refresh_rate = ivideo->refresh_rate;
T
Thomas Winischhofer 已提交
1302
		ivideo->sisfb_lastrates[ivideo->mode_no] = ivideo->refresh_rate;
L
Linus Torvalds 已提交
1303 1304 1305 1306 1307
	}

	return 0;
}

T
Thomas Winischhofer 已提交
1308 1309
static void
sisfb_set_base_CRT1(struct sis_video_info *ivideo, unsigned int base)
L
Linus Torvalds 已提交
1310 1311 1312
{
	outSISIDXREG(SISSR, IND_SIS_PASSWORD, SIS_PASSWORD);

T
Thomas Winischhofer 已提交
1313
	outSISIDXREG(SISCR, 0x0D, base & 0xFF);
L
Linus Torvalds 已提交
1314 1315 1316 1317 1318
	outSISIDXREG(SISCR, 0x0C, (base >> 8) & 0xFF);
	outSISIDXREG(SISSR, 0x0D, (base >> 16) & 0xFF);
	if(ivideo->sisvga_engine == SIS_315_VGA) {
		setSISIDXREG(SISSR, 0x37, 0xFE, (base >> 24) & 0x01);
	}
T
Thomas Winischhofer 已提交
1319 1320 1321 1322 1323 1324
}

static void
sisfb_set_base_CRT2(struct sis_video_info *ivideo, unsigned int base)
{
	if(ivideo->currentvbflags & VB_DISPTYPE_DISP2) {
L
Linus Torvalds 已提交
1325
		orSISIDXREG(SISPART1, ivideo->CRT2_write_enable, 0x01);
T
Thomas Winischhofer 已提交
1326 1327 1328
		outSISIDXREG(SISPART1, 0x06, (base & 0xFF));
		outSISIDXREG(SISPART1, 0x05, ((base >> 8) & 0xFF));
		outSISIDXREG(SISPART1, 0x04, ((base >> 16) & 0xFF));
L
Linus Torvalds 已提交
1329 1330 1331
		if(ivideo->sisvga_engine == SIS_315_VGA) {
			setSISIDXREG(SISPART1, 0x02, 0x7F, ((base >> 24) & 0x01) << 7);
		}
T
Thomas Winischhofer 已提交
1332
	}
L
Linus Torvalds 已提交
1333 1334
}

T
Thomas Winischhofer 已提交
1335 1336
static int
sisfb_pan_var(struct sis_video_info *ivideo, struct fb_var_screeninfo *var)
L
Linus Torvalds 已提交
1337
{
T
Thomas Winischhofer 已提交
1338 1339 1340 1341 1342 1343
	if(var->xoffset > (var->xres_virtual - var->xres)) {
		return -EINVAL;
	}
	if(var->yoffset > (var->yres_virtual - var->yres)) {
		return -EINVAL;
	}
L
Linus Torvalds 已提交
1344

T
Thomas Winischhofer 已提交
1345
	ivideo->current_base = (var->yoffset * var->xres_virtual) + var->xoffset;
L
Linus Torvalds 已提交
1346

T
Thomas Winischhofer 已提交
1347 1348 1349
	/* calculate base bpp dep. */
	switch(var->bits_per_pixel) {
	case 32:
L
Linus Torvalds 已提交
1350
		break;
T
Thomas Winischhofer 已提交
1351 1352
	case 16:
		ivideo->current_base >>= 1;
L
Linus Torvalds 已提交
1353
		break;
T
Thomas Winischhofer 已提交
1354 1355 1356
	case 8:
	default:
		ivideo->current_base >>= 2;
L
Linus Torvalds 已提交
1357 1358 1359
		break;
	}

T
Thomas Winischhofer 已提交
1360
	ivideo->current_base += (ivideo->video_offset >> 2);
L
Linus Torvalds 已提交
1361

T
Thomas Winischhofer 已提交
1362 1363
	sisfb_set_base_CRT1(ivideo, ivideo->current_base);
	sisfb_set_base_CRT2(ivideo, ivideo->current_base);
L
Linus Torvalds 已提交
1364

T
Thomas Winischhofer 已提交
1365 1366
	return 0;
}
L
Linus Torvalds 已提交
1367

T
Thomas Winischhofer 已提交
1368 1369 1370 1371
static int
sisfb_open(struct fb_info *info, int user)
{
	return 0;
L
Linus Torvalds 已提交
1372 1373 1374
}

static int
T
Thomas Winischhofer 已提交
1375
sisfb_release(struct fb_info *info, int user)
L
Linus Torvalds 已提交
1376 1377 1378 1379 1380 1381
{
	return 0;
}

static int
sisfb_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue,
T
Thomas Winischhofer 已提交
1382
		unsigned transp, struct fb_info *info)
L
Linus Torvalds 已提交
1383 1384 1385
{
	struct sis_video_info *ivideo = (struct sis_video_info *)info->par;

T
Thomas Winischhofer 已提交
1386 1387
	if(regno >= sisfb_get_cmap_len(&info->var))
		return 1;
L
Linus Torvalds 已提交
1388

T
Thomas Winischhofer 已提交
1389
	switch(info->var.bits_per_pixel) {
L
Linus Torvalds 已提交
1390
	case 8:
1391 1392 1393 1394
		SiS_SetRegByte(SISDACA, regno);
		SiS_SetRegByte(SISDACD, (red >> 10));
		SiS_SetRegByte(SISDACD, (green >> 10));
		SiS_SetRegByte(SISDACD, (blue >> 10));
L
Linus Torvalds 已提交
1395
		if(ivideo->currentvbflags & VB_DISPTYPE_DISP2) {
1396 1397 1398 1399
			SiS_SetRegByte(SISDAC2A, regno);
			SiS_SetRegByte(SISDAC2D, (red >> 8));
			SiS_SetRegByte(SISDAC2D, (green >> 8));
			SiS_SetRegByte(SISDAC2D, (blue >> 8));
L
Linus Torvalds 已提交
1400 1401 1402
		}
		break;
	case 16:
1403 1404 1405
		if (regno >= 16)
			break;

T
Thomas Winischhofer 已提交
1406 1407 1408 1409
		((u32 *)(info->pseudo_palette))[regno] =
				(red & 0xf800)          |
				((green & 0xfc00) >> 5) |
				((blue & 0xf800) >> 11);
L
Linus Torvalds 已提交
1410 1411
		break;
	case 32:
1412 1413 1414
		if (regno >= 16)
			break;

T
Thomas Winischhofer 已提交
1415
		red >>= 8;
L
Linus Torvalds 已提交
1416
		green >>= 8;
T
Thomas Winischhofer 已提交
1417 1418 1419
		blue >>= 8;
		((u32 *)(info->pseudo_palette))[regno] =
				(red << 16) | (green << 8) | (blue);
L
Linus Torvalds 已提交
1420 1421 1422 1423 1424 1425
		break;
	}
	return 0;
}

static int
T
Thomas Winischhofer 已提交
1426
sisfb_set_par(struct fb_info *info)
L
Linus Torvalds 已提交
1427
{
T
Thomas Winischhofer 已提交
1428
	int err;
L
Linus Torvalds 已提交
1429

T
Thomas Winischhofer 已提交
1430 1431
	if((err = sisfb_do_set_var(&info->var, 1, info)))
		return err;
L
Linus Torvalds 已提交
1432

T
Thomas Winischhofer 已提交
1433
	sisfb_get_fix(&info->fix, -1, info);
A
Adrian Bunk 已提交
1434

L
Linus Torvalds 已提交
1435 1436 1437 1438
	return 0;
}

static int
T
Thomas Winischhofer 已提交
1439
sisfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
L
Linus Torvalds 已提交
1440 1441
{
	struct sis_video_info *ivideo = (struct sis_video_info *)info->par;
T
Thomas Winischhofer 已提交
1442 1443 1444 1445
	unsigned int htotal = 0, vtotal = 0, myrateindex = 0;
	unsigned int drate = 0, hrate = 0, maxyres;
	int found_mode = 0;
	int refresh_rate, search_idx, tidx;
1446
	bool recalc_clock = false;
T
Thomas Winischhofer 已提交
1447
	u32 pixclock;
L
Linus Torvalds 已提交
1448

T
Thomas Winischhofer 已提交
1449
	htotal = var->left_margin + var->xres + var->right_margin + var->hsync_len;
L
Linus Torvalds 已提交
1450

T
Thomas Winischhofer 已提交
1451
	vtotal = var->upper_margin + var->lower_margin + var->vsync_len;
L
Linus Torvalds 已提交
1452

T
Thomas Winischhofer 已提交
1453
	pixclock = var->pixclock;
L
Linus Torvalds 已提交
1454

T
Thomas Winischhofer 已提交
1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465
	if((var->vmode & FB_VMODE_MASK) == FB_VMODE_NONINTERLACED) {
		vtotal += var->yres;
		vtotal <<= 1;
	} else if((var->vmode & FB_VMODE_MASK) == FB_VMODE_DOUBLE) {
		vtotal += var->yres;
		vtotal <<= 2;
	} else if((var->vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) {
		vtotal += var->yres;
		vtotal <<= 1;
	} else
		vtotal += var->yres;
L
Linus Torvalds 已提交
1466

T
Thomas Winischhofer 已提交
1467 1468
	if(!(htotal) || !(vtotal)) {
		SISFAIL("sisfb: no valid timing data");
L
Linus Torvalds 已提交
1469 1470
	}

T
Thomas Winischhofer 已提交
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
	search_idx = 0;
	while( (sisbios_mode[search_idx].mode_no[0] != 0) &&
	       (sisbios_mode[search_idx].xres <= var->xres) ) {
		if( (sisbios_mode[search_idx].xres == var->xres) &&
		    (sisbios_mode[search_idx].yres == var->yres) &&
		    (sisbios_mode[search_idx].bpp == var->bits_per_pixel)) {
			if((tidx = sisfb_validate_mode(ivideo, search_idx,
						ivideo->currentvbflags)) > 0) {
				found_mode = 1;
				search_idx = tidx;
				break;
			}
		}
		search_idx++;
L
Linus Torvalds 已提交
1485 1486
	}

T
Thomas Winischhofer 已提交
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
	if(!found_mode) {
		search_idx = 0;
		while(sisbios_mode[search_idx].mode_no[0] != 0) {
		   if( (var->xres <= sisbios_mode[search_idx].xres) &&
		       (var->yres <= sisbios_mode[search_idx].yres) &&
		       (var->bits_per_pixel == sisbios_mode[search_idx].bpp) ) {
			if((tidx = sisfb_validate_mode(ivideo,search_idx,
						ivideo->currentvbflags)) > 0) {
				found_mode = 1;
				search_idx = tidx;
				break;
			}
		   }
		   search_idx++;
		}
		if(found_mode) {
			printk(KERN_DEBUG
				"sisfb: Adapted from %dx%dx%d to %dx%dx%d\n",
				var->xres, var->yres, var->bits_per_pixel,
				sisbios_mode[search_idx].xres,
				sisbios_mode[search_idx].yres,
				var->bits_per_pixel);
			var->xres = sisbios_mode[search_idx].xres;
			var->yres = sisbios_mode[search_idx].yres;
		} else {
			printk(KERN_ERR
				"sisfb: Failed to find supported mode near %dx%dx%d\n",
				var->xres, var->yres, var->bits_per_pixel);
			return -EINVAL;
		}
	}
L
Linus Torvalds 已提交
1518

T
Thomas Winischhofer 已提交
1519 1520 1521 1522 1523
	if( ((ivideo->vbflags2 & VB2_LVDS) ||
	     ((ivideo->vbflags2 & VB2_30xBDH) && (ivideo->currentvbflags & CRT2_LCD))) &&
	    (var->bits_per_pixel == 8) ) {
		/* Slave modes on LVDS and 301B-DH */
		refresh_rate = 60;
1524
		recalc_clock = true;
T
Thomas Winischhofer 已提交
1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544
	} else if( (ivideo->current_htotal == htotal) &&
		   (ivideo->current_vtotal == vtotal) &&
		   (ivideo->current_pixclock == pixclock) ) {
		/* x=x & y=y & c=c -> assume depth change */
		drate = 1000000000 / pixclock;
		hrate = (drate * 1000) / htotal;
		refresh_rate = (unsigned int) (hrate * 2 / vtotal);
	} else if( ( (ivideo->current_htotal != htotal) ||
		     (ivideo->current_vtotal != vtotal) ) &&
		   (ivideo->current_pixclock == var->pixclock) ) {
		/* x!=x | y!=y & c=c -> invalid pixclock */
		if(ivideo->sisfb_lastrates[sisbios_mode[search_idx].mode_no[ivideo->mni]]) {
			refresh_rate =
				ivideo->sisfb_lastrates[sisbios_mode[search_idx].mode_no[ivideo->mni]];
		} else if(ivideo->sisfb_parm_rate != -1) {
			/* Sic, sisfb_parm_rate - want to know originally desired rate here */
			refresh_rate = ivideo->sisfb_parm_rate;
		} else {
			refresh_rate = 60;
		}
1545
		recalc_clock = true;
T
Thomas Winischhofer 已提交
1546 1547 1548 1549 1550 1551
	} else if((pixclock) && (htotal) && (vtotal)) {
		drate = 1000000000 / pixclock;
		hrate = (drate * 1000) / htotal;
		refresh_rate = (unsigned int) (hrate * 2 / vtotal);
	} else if(ivideo->current_refresh_rate) {
		refresh_rate = ivideo->current_refresh_rate;
1552
		recalc_clock = true;
T
Thomas Winischhofer 已提交
1553 1554
	} else {
		refresh_rate = 60;
1555
		recalc_clock = true;
T
Thomas Winischhofer 已提交
1556
	}
L
Linus Torvalds 已提交
1557

T
Thomas Winischhofer 已提交
1558
	myrateindex = sisfb_search_refresh_rate(ivideo, refresh_rate, search_idx);
L
Linus Torvalds 已提交
1559

T
Thomas Winischhofer 已提交
1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
	/* Eventually recalculate timing and clock */
	if(recalc_clock) {
		if(!myrateindex) myrateindex = sisbios_mode[search_idx].rate_idx;
		var->pixclock = (u32) (1000000000 / sisfb_mode_rate_to_dclock(&ivideo->SiS_Pr,
						sisbios_mode[search_idx].mode_no[ivideo->mni],
						myrateindex));
		sisfb_mode_rate_to_ddata(&ivideo->SiS_Pr,
					sisbios_mode[search_idx].mode_no[ivideo->mni],
					myrateindex, var);
		if((var->vmode & FB_VMODE_MASK) == FB_VMODE_DOUBLE) {
			var->pixclock <<= 1;
		}
	}
L
Linus Torvalds 已提交
1573

T
Thomas Winischhofer 已提交
1574 1575 1576 1577 1578 1579 1580
	if(ivideo->sisfb_thismonitor.datavalid) {
		if(!sisfb_verify_rate(ivideo, &ivideo->sisfb_thismonitor, search_idx,
				myrateindex, refresh_rate)) {
			printk(KERN_INFO
				"sisfb: WARNING: Refresh rate exceeds monitor specs!\n");
		}
	}
L
Linus Torvalds 已提交
1581

T
Thomas Winischhofer 已提交
1582 1583
	/* Adapt RGB settings */
	sisfb_bpp_to_var(ivideo, var);
L
Linus Torvalds 已提交
1584

T
Thomas Winischhofer 已提交
1585 1586 1587
	/* Sanity check for offsets */
	if(var->xoffset < 0) var->xoffset = 0;
	if(var->yoffset < 0) var->yoffset = 0;
L
Linus Torvalds 已提交
1588

T
Thomas Winischhofer 已提交
1589 1590
	if(var->xres > var->xres_virtual)
		var->xres_virtual = var->xres;
L
Linus Torvalds 已提交
1591

T
Thomas Winischhofer 已提交
1592 1593 1594 1595
	if(ivideo->sisfb_ypan) {
		maxyres = sisfb_calc_maxyres(ivideo, var);
		if(ivideo->sisfb_max) {
			var->yres_virtual = maxyres;
L
Linus Torvalds 已提交
1596
		} else {
T
Thomas Winischhofer 已提交
1597 1598 1599
			if(var->yres_virtual > maxyres) {
				var->yres_virtual = maxyres;
			}
L
Linus Torvalds 已提交
1600
		}
T
Thomas Winischhofer 已提交
1601 1602
		if(var->yres_virtual <= var->yres) {
			var->yres_virtual = var->yres;
L
Linus Torvalds 已提交
1603 1604
		}
	} else {
T
Thomas Winischhofer 已提交
1605 1606 1607 1608 1609
		if(var->yres != var->yres_virtual) {
			var->yres_virtual = var->yres;
		}
		var->xoffset = 0;
		var->yoffset = 0;
L
Linus Torvalds 已提交
1610 1611 1612 1613
	}

	/* Truncate offsets to maximum if too high */
	if(var->xoffset > var->xres_virtual - var->xres) {
T
Thomas Winischhofer 已提交
1614
		var->xoffset = var->xres_virtual - var->xres - 1;
L
Linus Torvalds 已提交
1615 1616 1617
	}

	if(var->yoffset > var->yres_virtual - var->yres) {
T
Thomas Winischhofer 已提交
1618
		var->yoffset = var->yres_virtual - var->yres - 1;
L
Linus Torvalds 已提交
1619
	}
T
Thomas Winischhofer 已提交
1620

L
Linus Torvalds 已提交
1621
	/* Set everything else to 0 */
T
Thomas Winischhofer 已提交
1622 1623 1624 1625 1626 1627
	var->red.msb_right =
		var->green.msb_right =
		var->blue.msb_right =
		var->transp.offset =
		var->transp.length =
		var->transp.msb_right = 0;
L
Linus Torvalds 已提交
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637

	return 0;
}

static int
sisfb_pan_display(struct fb_var_screeninfo *var, struct fb_info* info)
{
	struct sis_video_info *ivideo = (struct sis_video_info *)info->par;
	int err;

T
Thomas Winischhofer 已提交
1638
	if(var->xoffset > (var->xres_virtual - var->xres))
L
Linus Torvalds 已提交
1639
		return -EINVAL;
T
Thomas Winischhofer 已提交
1640 1641

	if(var->yoffset > (var->yres_virtual - var->yres))
L
Linus Torvalds 已提交
1642 1643
		return -EINVAL;

T
Thomas Winischhofer 已提交
1644 1645
	if(var->vmode & FB_VMODE_YWRAP)
		return -EINVAL;
L
Linus Torvalds 已提交
1646 1647

	if(var->xoffset + info->var.xres > info->var.xres_virtual ||
T
Thomas Winischhofer 已提交
1648
	   var->yoffset + info->var.yres > info->var.yres_virtual)
L
Linus Torvalds 已提交
1649 1650
		return -EINVAL;

T
Thomas Winischhofer 已提交
1651 1652
	if((err = sisfb_pan_var(ivideo, var)) < 0)
		return err;
L
Linus Torvalds 已提交
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664

	info->var.xoffset = var->xoffset;
	info->var.yoffset = var->yoffset;

	return 0;
}

static int
sisfb_blank(int blank, struct fb_info *info)
{
	struct sis_video_info *ivideo = (struct sis_video_info *)info->par;

T
Thomas Winischhofer 已提交
1665
	return sisfb_myblank(ivideo, blank);
L
Linus Torvalds 已提交
1666 1667 1668 1669
}

/* ----------- FBDev related routines for all series ---------- */

1670 1671
static int	sisfb_ioctl(struct fb_info *info, unsigned int cmd,
			    unsigned long arg)
L
Linus Torvalds 已提交
1672 1673
{
	struct sis_video_info	*ivideo = (struct sis_video_info *)info->par;
T
Thomas Winischhofer 已提交
1674 1675
	struct sis_memreq	sismemreq;
	struct fb_vblank	sisvbblank;
L
Linus Torvalds 已提交
1676 1677 1678 1679 1680 1681
	u32			gpu32 = 0;
#ifndef __user
#define __user
#endif
	u32 __user 		*argp = (u32 __user *)arg;

T
Thomas Winischhofer 已提交
1682
	switch(cmd) {
L
Linus Torvalds 已提交
1683
	   case FBIO_ALLOC:
T
Thomas Winischhofer 已提交
1684
		if(!capable(CAP_SYS_RAWIO))
L
Linus Torvalds 已提交
1685
			return -EPERM;
T
Thomas Winischhofer 已提交
1686 1687 1688 1689

		if(copy_from_user(&sismemreq, (void __user *)arg, sizeof(sismemreq)))
			return -EFAULT;

L
Linus Torvalds 已提交
1690
		sis_malloc(&sismemreq);
T
Thomas Winischhofer 已提交
1691

L
Linus Torvalds 已提交
1692 1693
		if(copy_to_user((void __user *)arg, &sismemreq, sizeof(sismemreq))) {
			sis_free((u32)sismemreq.offset);
T
Thomas Winischhofer 已提交
1694
			return -EFAULT;
L
Linus Torvalds 已提交
1695 1696 1697 1698
		}
		break;

	   case FBIO_FREE:
T
Thomas Winischhofer 已提交
1699
		if(!capable(CAP_SYS_RAWIO))
L
Linus Torvalds 已提交
1700
			return -EPERM;
T
Thomas Winischhofer 已提交
1701 1702

		if(get_user(gpu32, argp))
L
Linus Torvalds 已提交
1703
			return -EFAULT;
T
Thomas Winischhofer 已提交
1704

L
Linus Torvalds 已提交
1705 1706 1707 1708
		sis_free(gpu32);
		break;

	   case FBIOGET_VBLANK:
1709 1710 1711

		memset(&sisvbblank, 0, sizeof(struct fb_vblank));

L
Linus Torvalds 已提交
1712 1713
		sisvbblank.count = 0;
		sisvbblank.flags = sisfb_setupvbblankflags(ivideo, &sisvbblank.vcount, &sisvbblank.hcount);
T
Thomas Winischhofer 已提交
1714 1715

		if(copy_to_user((void __user *)arg, &sisvbblank, sizeof(sisvbblank)))
L
Linus Torvalds 已提交
1716
			return -EFAULT;
T
Thomas Winischhofer 已提交
1717

L
Linus Torvalds 已提交
1718 1719 1720
		break;

	   case SISFB_GET_INFO_SIZE:
T
Thomas Winischhofer 已提交
1721
		return put_user(sizeof(struct sisfb_info), argp);
L
Linus Torvalds 已提交
1722 1723

	   case SISFB_GET_INFO_OLD:
T
Thomas Winischhofer 已提交
1724 1725 1726
		if(ivideo->warncount++ < 10)
			printk(KERN_INFO
				"sisfb: Deprecated ioctl call received - update your application!\n");
L
Linus Torvalds 已提交
1727
	   case SISFB_GET_INFO:  /* For communication with X driver */
T
Thomas Winischhofer 已提交
1728 1729 1730 1731 1732 1733 1734 1735
		ivideo->sisfb_infoblock.sisfb_id         = SISFB_ID;
		ivideo->sisfb_infoblock.sisfb_version    = VER_MAJOR;
		ivideo->sisfb_infoblock.sisfb_revision   = VER_MINOR;
		ivideo->sisfb_infoblock.sisfb_patchlevel = VER_LEVEL;
		ivideo->sisfb_infoblock.chip_id = ivideo->chip_id;
		ivideo->sisfb_infoblock.sisfb_pci_vendor = ivideo->chip_vendor;
		ivideo->sisfb_infoblock.memory = ivideo->video_size / 1024;
		ivideo->sisfb_infoblock.heapstart = ivideo->heapstart / 1024;
L
Linus Torvalds 已提交
1736
		if(ivideo->modechanged) {
T
Thomas Winischhofer 已提交
1737
			ivideo->sisfb_infoblock.fbvidmode = ivideo->mode_no;
L
Linus Torvalds 已提交
1738
		} else {
T
Thomas Winischhofer 已提交
1739
			ivideo->sisfb_infoblock.fbvidmode = ivideo->modeprechange;
L
Linus Torvalds 已提交
1740
		}
T
Thomas Winischhofer 已提交
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773
		ivideo->sisfb_infoblock.sisfb_caps = ivideo->caps;
		ivideo->sisfb_infoblock.sisfb_tqlen = ivideo->cmdQueueSize / 1024;
		ivideo->sisfb_infoblock.sisfb_pcibus = ivideo->pcibus;
		ivideo->sisfb_infoblock.sisfb_pcislot = ivideo->pcislot;
		ivideo->sisfb_infoblock.sisfb_pcifunc = ivideo->pcifunc;
		ivideo->sisfb_infoblock.sisfb_lcdpdc = ivideo->detectedpdc;
		ivideo->sisfb_infoblock.sisfb_lcdpdca = ivideo->detectedpdca;
		ivideo->sisfb_infoblock.sisfb_lcda = ivideo->detectedlcda;
		ivideo->sisfb_infoblock.sisfb_vbflags = ivideo->vbflags;
		ivideo->sisfb_infoblock.sisfb_currentvbflags = ivideo->currentvbflags;
		ivideo->sisfb_infoblock.sisfb_scalelcd = ivideo->SiS_Pr.UsePanelScaler;
		ivideo->sisfb_infoblock.sisfb_specialtiming = ivideo->SiS_Pr.SiS_CustomT;
		ivideo->sisfb_infoblock.sisfb_haveemi = ivideo->SiS_Pr.HaveEMI ? 1 : 0;
		ivideo->sisfb_infoblock.sisfb_haveemilcd = ivideo->SiS_Pr.HaveEMILCD ? 1 : 0;
		ivideo->sisfb_infoblock.sisfb_emi30 = ivideo->SiS_Pr.EMI_30;
		ivideo->sisfb_infoblock.sisfb_emi31 = ivideo->SiS_Pr.EMI_31;
		ivideo->sisfb_infoblock.sisfb_emi32 = ivideo->SiS_Pr.EMI_32;
		ivideo->sisfb_infoblock.sisfb_emi33 = ivideo->SiS_Pr.EMI_33;
		ivideo->sisfb_infoblock.sisfb_tvxpos = (u16)(ivideo->tvxpos + 32);
		ivideo->sisfb_infoblock.sisfb_tvypos = (u16)(ivideo->tvypos + 32);
		ivideo->sisfb_infoblock.sisfb_heapsize = ivideo->sisfb_heap_size / 1024;
		ivideo->sisfb_infoblock.sisfb_videooffset = ivideo->video_offset;
		ivideo->sisfb_infoblock.sisfb_curfstn = ivideo->curFSTN;
		ivideo->sisfb_infoblock.sisfb_curdstn = ivideo->curDSTN;
		ivideo->sisfb_infoblock.sisfb_vbflags2 = ivideo->vbflags2;
		ivideo->sisfb_infoblock.sisfb_can_post = ivideo->sisfb_can_post ? 1 : 0;
		ivideo->sisfb_infoblock.sisfb_card_posted = ivideo->sisfb_card_posted ? 1 : 0;
		ivideo->sisfb_infoblock.sisfb_was_boot_device = ivideo->sisfb_was_boot_device ? 1 : 0;

		if(copy_to_user((void __user *)arg, &ivideo->sisfb_infoblock,
						sizeof(ivideo->sisfb_infoblock)))
			return -EFAULT;

L
Linus Torvalds 已提交
1774 1775 1776
	        break;

	   case SISFB_GET_VBRSTATUS_OLD:
T
Thomas Winischhofer 已提交
1777 1778 1779
		if(ivideo->warncount++ < 10)
			printk(KERN_INFO
				"sisfb: Deprecated ioctl call received - update your application!\n");
L
Linus Torvalds 已提交
1780
	   case SISFB_GET_VBRSTATUS:
T
Thomas Winischhofer 已提交
1781
		if(sisfb_CheckVBRetrace(ivideo))
L
Linus Torvalds 已提交
1782
			return put_user((u32)1, argp);
T
Thomas Winischhofer 已提交
1783
		else
L
Linus Torvalds 已提交
1784 1785 1786
			return put_user((u32)0, argp);

	   case SISFB_GET_AUTOMAXIMIZE_OLD:
T
Thomas Winischhofer 已提交
1787 1788 1789
		if(ivideo->warncount++ < 10)
			printk(KERN_INFO
				"sisfb: Deprecated ioctl call received - update your application!\n");
L
Linus Torvalds 已提交
1790
	   case SISFB_GET_AUTOMAXIMIZE:
T
Thomas Winischhofer 已提交
1791 1792 1793 1794
		if(ivideo->sisfb_max)
			return put_user((u32)1, argp);
		else
			return put_user((u32)0, argp);
L
Linus Torvalds 已提交
1795 1796

	   case SISFB_SET_AUTOMAXIMIZE_OLD:
T
Thomas Winischhofer 已提交
1797 1798 1799
		if(ivideo->warncount++ < 10)
			printk(KERN_INFO
				"sisfb: Deprecated ioctl call received - update your application!\n");
L
Linus Torvalds 已提交
1800
	   case SISFB_SET_AUTOMAXIMIZE:
T
Thomas Winischhofer 已提交
1801
		if(get_user(gpu32, argp))
L
Linus Torvalds 已提交
1802
			return -EFAULT;
T
Thomas Winischhofer 已提交
1803

L
Linus Torvalds 已提交
1804 1805 1806 1807
		ivideo->sisfb_max = (gpu32) ? 1 : 0;
		break;

	   case SISFB_SET_TVPOSOFFSET:
T
Thomas Winischhofer 已提交
1808
		if(get_user(gpu32, argp))
L
Linus Torvalds 已提交
1809
			return -EFAULT;
T
Thomas Winischhofer 已提交
1810

L
Linus Torvalds 已提交
1811 1812 1813 1814 1815
		sisfb_set_TVxposoffset(ivideo, ((int)(gpu32 >> 16)) - 32);
		sisfb_set_TVyposoffset(ivideo, ((int)(gpu32 & 0xffff)) - 32);
		break;

	   case SISFB_GET_TVPOSOFFSET:
T
Thomas Winischhofer 已提交
1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
		return put_user((u32)(((ivideo->tvxpos+32)<<16)|((ivideo->tvypos+32)&0xffff)),
							argp);

	   case SISFB_COMMAND:
		if(copy_from_user(&ivideo->sisfb_command, (void __user *)arg,
							sizeof(struct sisfb_cmd)))
			return -EFAULT;

		sisfb_handle_command(ivideo, &ivideo->sisfb_command);

		if(copy_to_user((void __user *)arg, &ivideo->sisfb_command,
							sizeof(struct sisfb_cmd)))
			return -EFAULT;

		break;
L
Linus Torvalds 已提交
1831 1832

	   case SISFB_SET_LOCK:
T
Thomas Winischhofer 已提交
1833
		if(get_user(gpu32, argp))
L
Linus Torvalds 已提交
1834
			return -EFAULT;
T
Thomas Winischhofer 已提交
1835

L
Linus Torvalds 已提交
1836 1837 1838 1839
		ivideo->sisfblocked = (gpu32) ? 1 : 0;
		break;

	   default:
T
Thomas Winischhofer 已提交
1840
#ifdef SIS_NEW_CONFIG_COMPAT
L
Linus Torvalds 已提交
1841
		return -ENOIOCTLCMD;
T
Thomas Winischhofer 已提交
1842 1843 1844
#else
		return -EINVAL;
#endif
L
Linus Torvalds 已提交
1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855
	}
	return 0;
}

static int
sisfb_get_fix(struct fb_fix_screeninfo *fix, int con, struct fb_info *info)
{
	struct sis_video_info *ivideo = (struct sis_video_info *)info->par;

	memset(fix, 0, sizeof(struct fb_fix_screeninfo));

D
Dan Carpenter 已提交
1856
	strlcpy(fix->id, ivideo->myid, sizeof(fix->id));
L
Linus Torvalds 已提交
1857

1858
	mutex_lock(&info->mm_lock);
T
Thomas Winischhofer 已提交
1859
	fix->smem_start  = ivideo->video_base + ivideo->video_offset;
L
Linus Torvalds 已提交
1860
	fix->smem_len    = ivideo->sisfb_mem;
1861
	mutex_unlock(&info->mm_lock);
L
Linus Torvalds 已提交
1862 1863 1864 1865 1866 1867 1868 1869 1870 1871
	fix->type        = FB_TYPE_PACKED_PIXELS;
	fix->type_aux    = 0;
	fix->visual      = (ivideo->video_bpp == 8) ? FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
	fix->xpanstep    = 1;
	fix->ypanstep 	 = (ivideo->sisfb_ypan) ? 1 : 0;
	fix->ywrapstep   = 0;
	fix->line_length = ivideo->video_linelength;
	fix->mmio_start  = ivideo->mmio_base;
	fix->mmio_len    = ivideo->mmio_size;
	if(ivideo->sisvga_engine == SIS_300_VGA) {
T
Thomas Winischhofer 已提交
1872 1873 1874 1875 1876 1877 1878 1879 1880
		fix->accel = FB_ACCEL_SIS_GLAMOUR;
	} else if((ivideo->chip == SIS_330) ||
		  (ivideo->chip == SIS_760) ||
		  (ivideo->chip == SIS_761)) {
		fix->accel = FB_ACCEL_SIS_XABRE;
	} else if(ivideo->chip == XGI_20) {
		fix->accel = FB_ACCEL_XGI_VOLARI_Z;
	} else if(ivideo->chip >= XGI_40) {
		fix->accel = FB_ACCEL_XGI_VOLARI_V;
L
Linus Torvalds 已提交
1881
	} else {
T
Thomas Winischhofer 已提交
1882
		fix->accel = FB_ACCEL_SIS_GLAMOUR_2;
L
Linus Torvalds 已提交
1883 1884 1885 1886 1887 1888 1889 1890
	}

	return 0;
}

/* ----------------  fb_ops structures ----------------- */

static struct fb_ops sisfb_ops = {
T
Thomas Winischhofer 已提交
1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903
	.owner		= THIS_MODULE,
	.fb_open	= sisfb_open,
	.fb_release	= sisfb_release,
	.fb_check_var	= sisfb_check_var,
	.fb_set_par	= sisfb_set_par,
	.fb_setcolreg	= sisfb_setcolreg,
	.fb_pan_display	= sisfb_pan_display,
	.fb_blank	= sisfb_blank,
	.fb_fillrect	= fbcon_sis_fillrect,
	.fb_copyarea	= fbcon_sis_copyarea,
	.fb_imageblit	= cfb_imageblit,
	.fb_sync	= fbcon_sis_sync,
#ifdef SIS_NEW_CONFIG_COMPAT
1904
	.fb_compat_ioctl= sisfb_ioctl,
L
Linus Torvalds 已提交
1905
#endif
T
Thomas Winischhofer 已提交
1906
	.fb_ioctl	= sisfb_ioctl
L
Linus Torvalds 已提交
1907 1908 1909 1910
};

/* ---------------- Chip generation dependent routines ---------------- */

T
Thomas Winischhofer 已提交
1911 1912
static struct pci_dev * __devinit
sisfb_get_northbridge(int basechipid)
L
Linus Torvalds 已提交
1913 1914 1915
{
	struct pci_dev *pdev = NULL;
	int nbridgenum, nbridgeidx, i;
T
Thomas Winischhofer 已提交
1916
	static const unsigned short nbridgeids[] = {
L
Linus Torvalds 已提交
1917 1918 1919 1920 1921 1922 1923
		PCI_DEVICE_ID_SI_540,	/* for SiS 540 VGA */
		PCI_DEVICE_ID_SI_630,	/* for SiS 630/730 VGA */
		PCI_DEVICE_ID_SI_730,
		PCI_DEVICE_ID_SI_550,   /* for SiS 550 VGA */
		PCI_DEVICE_ID_SI_650,   /* for SiS 650/651/740 VGA */
		PCI_DEVICE_ID_SI_651,
		PCI_DEVICE_ID_SI_740,
T
Thomas Winischhofer 已提交
1924
		PCI_DEVICE_ID_SI_661,	/* for SiS 661/741/660/760/761 VGA */
L
Linus Torvalds 已提交
1925 1926
		PCI_DEVICE_ID_SI_741,
		PCI_DEVICE_ID_SI_660,
T
Thomas Winischhofer 已提交
1927 1928
		PCI_DEVICE_ID_SI_760,
		PCI_DEVICE_ID_SI_761
L
Linus Torvalds 已提交
1929 1930
	};

T
Thomas Winischhofer 已提交
1931
	switch(basechipid) {
L
Linus Torvalds 已提交
1932 1933 1934 1935 1936 1937 1938
#ifdef CONFIG_FB_SIS_300
	case SIS_540:	nbridgeidx = 0; nbridgenum = 1; break;
	case SIS_630:	nbridgeidx = 1; nbridgenum = 2; break;
#endif
#ifdef CONFIG_FB_SIS_315
	case SIS_550:   nbridgeidx = 3; nbridgenum = 1; break;
	case SIS_650:	nbridgeidx = 4; nbridgenum = 3; break;
T
Thomas Winischhofer 已提交
1939
	case SIS_660:	nbridgeidx = 7; nbridgenum = 5; break;
L
Linus Torvalds 已提交
1940 1941 1942 1943
#endif
	default:	return NULL;
	}
	for(i = 0; i < nbridgenum; i++) {
1944
		if((pdev = pci_get_device(PCI_VENDOR_ID_SI,
T
Thomas Winischhofer 已提交
1945 1946
				nbridgeids[nbridgeidx+i], NULL)))
			break;
L
Linus Torvalds 已提交
1947 1948 1949 1950
	}
	return pdev;
}

T
Thomas Winischhofer 已提交
1951 1952
static int __devinit
sisfb_get_dram_size(struct sis_video_info *ivideo)
L
Linus Torvalds 已提交
1953 1954 1955 1956 1957 1958
{
#if defined(CONFIG_FB_SIS_300) || defined(CONFIG_FB_SIS_315)
	u8 reg;
#endif

	ivideo->video_size = 0;
T
Thomas Winischhofer 已提交
1959
	ivideo->UMAsize = ivideo->LFBsize = 0;
L
Linus Torvalds 已提交
1960 1961 1962 1963

	switch(ivideo->chip) {
#ifdef CONFIG_FB_SIS_300
	case SIS_300:
1964
		reg = SiS_GetReg(SISSR, 0x14);
L
Linus Torvalds 已提交
1965 1966 1967 1968 1969
		ivideo->video_size = ((reg & 0x3F) + 1) << 20;
		break;
	case SIS_540:
	case SIS_630:
	case SIS_730:
T
Thomas Winischhofer 已提交
1970 1971 1972
		if(!ivideo->nbridge)
			return -1;
		pci_read_config_byte(ivideo->nbridge, 0x63, &reg);
L
Linus Torvalds 已提交
1973 1974 1975 1976 1977 1978 1979
		ivideo->video_size = 1 << (((reg & 0x70) >> 4) + 21);
		break;
#endif
#ifdef CONFIG_FB_SIS_315
	case SIS_315H:
	case SIS_315PRO:
	case SIS_315:
1980
		reg = SiS_GetReg(SISSR, 0x14);
L
Linus Torvalds 已提交
1981 1982 1983 1984
		ivideo->video_size = (1 << ((reg & 0xf0) >> 4)) << 20;
		switch((reg >> 2) & 0x03) {
		case 0x01:
		case 0x03:
T
Thomas Winischhofer 已提交
1985 1986
			ivideo->video_size <<= 1;
			break;
L
Linus Torvalds 已提交
1987
		case 0x02:
T
Thomas Winischhofer 已提交
1988
			ivideo->video_size += (ivideo->video_size/2);
L
Linus Torvalds 已提交
1989
		}
T
Thomas Winischhofer 已提交
1990
		break;
L
Linus Torvalds 已提交
1991
	case SIS_330:
1992
		reg = SiS_GetReg(SISSR, 0x14);
L
Linus Torvalds 已提交
1993 1994
		ivideo->video_size = (1 << ((reg & 0xf0) >> 4)) << 20;
		if(reg & 0x0c) ivideo->video_size <<= 1;
T
Thomas Winischhofer 已提交
1995
		break;
L
Linus Torvalds 已提交
1996 1997 1998
	case SIS_550:
	case SIS_650:
	case SIS_740:
1999
		reg = SiS_GetReg(SISSR, 0x14);
L
Linus Torvalds 已提交
2000 2001 2002 2003
		ivideo->video_size = (((reg & 0x3f) + 1) << 2) << 20;
		break;
	case SIS_661:
	case SIS_741:
2004
		reg = SiS_GetReg(SISCR, 0x79);
L
Linus Torvalds 已提交
2005
		ivideo->video_size = (1 << ((reg & 0xf0) >> 4)) << 20;
T
Thomas Winischhofer 已提交
2006
		break;
L
Linus Torvalds 已提交
2007 2008
	case SIS_660:
	case SIS_760:
T
Thomas Winischhofer 已提交
2009
	case SIS_761:
2010
		reg = SiS_GetReg(SISCR, 0x79);
L
Linus Torvalds 已提交
2011
		reg = (reg & 0xf0) >> 4;
T
Thomas Winischhofer 已提交
2012 2013 2014 2015
		if(reg)	{
			ivideo->video_size = (1 << reg) << 20;
			ivideo->UMAsize = ivideo->video_size;
		}
2016
		reg = SiS_GetReg(SISCR, 0x78);
L
Linus Torvalds 已提交
2017 2018
		reg &= 0x30;
		if(reg) {
T
Thomas Winischhofer 已提交
2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029
			if(reg == 0x10) {
				ivideo->LFBsize = (32 << 20);
			} else {
				ivideo->LFBsize = (64 << 20);
			}
			ivideo->video_size += ivideo->LFBsize;
		}
		break;
	case SIS_340:
	case XGI_20:
	case XGI_40:
2030
		reg = SiS_GetReg(SISSR, 0x14);
T
Thomas Winischhofer 已提交
2031 2032 2033 2034 2035 2036 2037 2038 2039
		ivideo->video_size = (1 << ((reg & 0xf0) >> 4)) << 20;
		if(ivideo->chip != XGI_20) {
			reg = (reg & 0x0c) >> 2;
			if(ivideo->revision_id == 2) {
				if(reg & 0x01) reg = 0x02;
				else	       reg = 0x00;
			}
			if(reg == 0x02)		ivideo->video_size <<= 1;
			else if(reg == 0x03)	ivideo->video_size <<= 2;
L
Linus Torvalds 已提交
2040
		}
T
Thomas Winischhofer 已提交
2041
		break;
L
Linus Torvalds 已提交
2042 2043 2044 2045 2046 2047 2048 2049 2050
#endif
	default:
		return -1;
	}
	return 0;
}

/* -------------- video bridge device detection --------------- */

T
Thomas Winischhofer 已提交
2051 2052
static void __devinit
sisfb_detect_VB_connect(struct sis_video_info *ivideo)
L
Linus Torvalds 已提交
2053 2054 2055
{
	u8 cr32, temp;

T
Thomas Winischhofer 已提交
2056 2057 2058 2059 2060 2061
	/* No CRT2 on XGI Z7 */
	if(ivideo->chip == XGI_20) {
		ivideo->sisfb_crt1off = 0;
		return;
	}

L
Linus Torvalds 已提交
2062 2063
#ifdef CONFIG_FB_SIS_300
	if(ivideo->sisvga_engine == SIS_300_VGA) {
2064
		temp = SiS_GetReg(SISSR, 0x17);
L
Linus Torvalds 已提交
2065 2066 2067
		if((temp & 0x0F) && (ivideo->chip != SIS_300)) {
			/* PAL/NTSC is stored on SR16 on such machines */
			if(!(ivideo->vbflags & (TV_PAL | TV_NTSC | TV_PALM | TV_PALN))) {
2068
				temp = SiS_GetReg(SISSR, 0x16);
L
Linus Torvalds 已提交
2069 2070 2071 2072 2073 2074 2075 2076 2077
				if(temp & 0x20)
					ivideo->vbflags |= TV_PAL;
				else
					ivideo->vbflags |= TV_NTSC;
			}
		}
	}
#endif

2078
	cr32 = SiS_GetReg(SISCR, 0x32);
L
Linus Torvalds 已提交
2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102

	if(cr32 & SIS_CRT1) {
		ivideo->sisfb_crt1off = 0;
	} else {
		ivideo->sisfb_crt1off = (cr32 & 0xDF) ? 1 : 0;
	}

	ivideo->vbflags &= ~(CRT2_TV | CRT2_LCD | CRT2_VGA);

	if(cr32 & SIS_VB_TV)   ivideo->vbflags |= CRT2_TV;
	if(cr32 & SIS_VB_LCD)  ivideo->vbflags |= CRT2_LCD;
	if(cr32 & SIS_VB_CRT2) ivideo->vbflags |= CRT2_VGA;

	/* Check given parms for hardware compatibility.
	 * (Cannot do this in the search_xx routines since we don't
	 * know what hardware we are running on then)
	 */

	if(ivideo->chip != SIS_550) {
	   ivideo->sisfb_dstn = ivideo->sisfb_fstn = 0;
	}

	if(ivideo->sisfb_tvplug != -1) {
	   if( (ivideo->sisvga_engine != SIS_315_VGA) ||
T
Thomas Winischhofer 已提交
2103
	       (!(ivideo->vbflags2 & VB2_SISYPBPRBRIDGE)) ) {
L
Linus Torvalds 已提交
2104
	      if(ivideo->sisfb_tvplug & TV_YPBPR) {
T
Thomas Winischhofer 已提交
2105
		 ivideo->sisfb_tvplug = -1;
L
Linus Torvalds 已提交
2106 2107 2108 2109 2110 2111
		 printk(KERN_ERR "sisfb: YPbPr not supported\n");
	      }
	   }
	}
	if(ivideo->sisfb_tvplug != -1) {
	   if( (ivideo->sisvga_engine != SIS_315_VGA) ||
T
Thomas Winischhofer 已提交
2112
	       (!(ivideo->vbflags2 & VB2_SISHIVISIONBRIDGE)) ) {
L
Linus Torvalds 已提交
2113
	      if(ivideo->sisfb_tvplug & TV_HIVISION) {
T
Thomas Winischhofer 已提交
2114
		 ivideo->sisfb_tvplug = -1;
L
Linus Torvalds 已提交
2115 2116 2117 2118 2119
		 printk(KERN_ERR "sisfb: HiVision not supported\n");
	      }
	   }
	}
	if(ivideo->sisfb_tvstd != -1) {
T
Thomas Winischhofer 已提交
2120 2121 2122
	   if( (!(ivideo->vbflags2 & VB2_SISBRIDGE)) &&
	       (!((ivideo->sisvga_engine == SIS_315_VGA) &&
			(ivideo->vbflags2 & VB2_CHRONTEL))) ) {
2123
	      if(ivideo->sisfb_tvstd & (TV_PALM | TV_PALN | TV_NTSCJ)) {
T
Thomas Winischhofer 已提交
2124 2125
		 ivideo->sisfb_tvstd = -1;
		 printk(KERN_ERR "sisfb: PALM/PALN/NTSCJ not supported\n");
L
Linus Torvalds 已提交
2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136
	      }
	   }
	}

	/* Detect/set TV plug & type */
	if(ivideo->sisfb_tvplug != -1) {
		ivideo->vbflags |= ivideo->sisfb_tvplug;
	} else {
		if(cr32 & SIS_VB_YPBPR)     	 ivideo->vbflags |= (TV_YPBPR|TV_YPBPR525I); /* default: 480i */
		else if(cr32 & SIS_VB_HIVISION)  ivideo->vbflags |= TV_HIVISION;
		else if(cr32 & SIS_VB_SCART)     ivideo->vbflags |= TV_SCART;
T
Thomas Winischhofer 已提交
2137
		else {
L
Linus Torvalds 已提交
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153
			if(cr32 & SIS_VB_SVIDEO)    ivideo->vbflags |= TV_SVIDEO;
			if(cr32 & SIS_VB_COMPOSITE) ivideo->vbflags |= TV_AVIDEO;
		}
	}

	if(!(ivideo->vbflags & (TV_YPBPR | TV_HIVISION))) {
	    if(ivideo->sisfb_tvstd != -1) {
	       ivideo->vbflags &= ~(TV_NTSC | TV_PAL | TV_PALM | TV_PALN | TV_NTSCJ);
	       ivideo->vbflags |= ivideo->sisfb_tvstd;
	    }
	    if(ivideo->vbflags & TV_SCART) {
	       ivideo->vbflags &= ~(TV_NTSC | TV_PALM | TV_PALN | TV_NTSCJ);
	       ivideo->vbflags |= TV_PAL;
	    }
	    if(!(ivideo->vbflags & (TV_PAL | TV_NTSC | TV_PALM | TV_PALN | TV_NTSCJ))) {
		if(ivideo->sisvga_engine == SIS_300_VGA) {
2154
			temp = SiS_GetReg(SISSR, 0x38);
L
Linus Torvalds 已提交
2155 2156 2157
			if(temp & 0x01) ivideo->vbflags |= TV_PAL;
			else		ivideo->vbflags |= TV_NTSC;
		} else if((ivideo->chip <= SIS_315PRO) || (ivideo->chip >= SIS_330)) {
2158
			temp = SiS_GetReg(SISSR, 0x38);
L
Linus Torvalds 已提交
2159 2160
			if(temp & 0x01) ivideo->vbflags |= TV_PAL;
			else		ivideo->vbflags |= TV_NTSC;
T
Thomas Winischhofer 已提交
2161
		} else {
2162
			temp = SiS_GetReg(SISCR, 0x79);
L
Linus Torvalds 已提交
2163 2164
			if(temp & 0x20)	ivideo->vbflags |= TV_PAL;
			else		ivideo->vbflags |= TV_NTSC;
T
Thomas Winischhofer 已提交
2165
		}
L
Linus Torvalds 已提交
2166 2167 2168 2169
	    }
	}

	/* Copy forceCRT1 option to CRT1off if option is given */
T
Thomas Winischhofer 已提交
2170 2171
	if(ivideo->sisfb_forcecrt1 != -1) {
	   ivideo->sisfb_crt1off = (ivideo->sisfb_forcecrt1) ? 0 : 1;
L
Linus Torvalds 已提交
2172 2173 2174 2175 2176
	}
}

/* ------------------ Sensing routines ------------------ */

2177
static bool __devinit
T
Thomas Winischhofer 已提交
2178
sisfb_test_DDC1(struct sis_video_info *ivideo)
L
Linus Torvalds 已提交
2179 2180 2181 2182 2183 2184
{
    unsigned short old;
    int count = 48;

    old = SiS_ReadDDC1Bit(&ivideo->SiS_Pr);
    do {
T
Thomas Winischhofer 已提交
2185
	if(old != SiS_ReadDDC1Bit(&ivideo->SiS_Pr)) break;
L
Linus Torvalds 已提交
2186
    } while(count--);
2187
    return (count != -1);
L
Linus Torvalds 已提交
2188 2189
}

T
Thomas Winischhofer 已提交
2190 2191
static void __devinit
sisfb_sense_crt1(struct sis_video_info *ivideo)
L
Linus Torvalds 已提交
2192
{
2193
    bool mustwait = false;
L
Linus Torvalds 已提交
2194 2195 2196 2197 2198 2199 2200
    u8  sr1F, cr17;
#ifdef CONFIG_FB_SIS_315
    u8  cr63=0;
#endif
    u16 temp = 0xffff;
    int i;

2201
    sr1F = SiS_GetReg(SISSR, 0x1F);
L
Linus Torvalds 已提交
2202 2203
    orSISIDXREG(SISSR,0x1F,0x04);
    andSISIDXREG(SISSR,0x1F,0x3F);
2204
    if(sr1F & 0xc0) mustwait = true;
L
Linus Torvalds 已提交
2205 2206 2207

#ifdef CONFIG_FB_SIS_315
    if(ivideo->sisvga_engine == SIS_315_VGA) {
2208
       cr63 = SiS_GetReg(SISCR, ivideo->SiS_Pr.SiS_MyCR63);
L
Linus Torvalds 已提交
2209 2210 2211 2212 2213
       cr63 &= 0x40;
       andSISIDXREG(SISCR,ivideo->SiS_Pr.SiS_MyCR63,0xBF);
    }
#endif

2214
    cr17 = SiS_GetReg(SISCR, 0x17);
L
Linus Torvalds 已提交
2215 2216 2217
    cr17 &= 0x80;
    if(!cr17) {
       orSISIDXREG(SISCR,0x17,0x80);
2218
       mustwait = true;
L
Linus Torvalds 已提交
2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235
       outSISIDXREG(SISSR, 0x00, 0x01);
       outSISIDXREG(SISSR, 0x00, 0x03);
    }

    if(mustwait) {
       for(i=0; i < 10; i++) sisfbwaitretracecrt1(ivideo);
    }

#ifdef CONFIG_FB_SIS_315
    if(ivideo->chip >= SIS_330) {
       andSISIDXREG(SISCR,0x32,~0x20);
       if(ivideo->chip >= SIS_340) {
          outSISIDXREG(SISCR, 0x57, 0x4a);
       } else {
          outSISIDXREG(SISCR, 0x57, 0x5f);
       }
       orSISIDXREG(SISCR, 0x53, 0x02);
2236 2237 2238
	while ((SiS_GetRegByte(SISINPSTAT)) & 0x01)    break;
	while (!((SiS_GetRegByte(SISINPSTAT)) & 0x01)) break;
	if ((SiS_GetRegByte(SISMISCW)) & 0x10) temp = 1;
L
Linus Torvalds 已提交
2239 2240 2241 2242 2243 2244 2245 2246
       andSISIDXREG(SISCR, 0x53, 0xfd);
       andSISIDXREG(SISCR, 0x57, 0x00);
    }
#endif

    if(temp == 0xffff) {
       i = 3;
       do {
T
Thomas Winischhofer 已提交
2247 2248
	  temp = SiS_HandleDDC(&ivideo->SiS_Pr, ivideo->vbflags,
		ivideo->sisvga_engine, 0, 0, NULL, ivideo->vbflags2);
L
Linus Torvalds 已提交
2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271
       } while(((temp == 0) || (temp == 0xffff)) && i--);

       if((temp == 0) || (temp == 0xffff)) {
          if(sisfb_test_DDC1(ivideo)) temp = 1;
       }
    }

    if((temp) && (temp != 0xffff)) {
       orSISIDXREG(SISCR,0x32,0x20);
    }

#ifdef CONFIG_FB_SIS_315
    if(ivideo->sisvga_engine == SIS_315_VGA) {
       setSISIDXREG(SISCR,ivideo->SiS_Pr.SiS_MyCR63,0xBF,cr63);
    }
#endif

    setSISIDXREG(SISCR,0x17,0x7F,cr17);

    outSISIDXREG(SISSR,0x1F,sr1F);
}

/* Determine and detect attached devices on SiS30x */
T
Thomas Winischhofer 已提交
2272 2273 2274 2275 2276 2277 2278 2279
static void __devinit
SiS_SenseLCD(struct sis_video_info *ivideo)
{
	unsigned char buffer[256];
	unsigned short temp, realcrtno, i;
	u8 reg, cr37 = 0, paneltype = 0;
	u16 xres, yres;

2280
	ivideo->SiS_Pr.PanelSelfDetected = false;
T
Thomas Winischhofer 已提交
2281 2282 2283 2284 2285 2286 2287 2288

	/* LCD detection only for TMDS bridges */
	if(!(ivideo->vbflags2 & VB2_SISTMDSBRIDGE))
		return;
	if(ivideo->vbflags2 & VB2_30xBDH)
		return;

	/* If LCD already set up by BIOS, skip it */
2289
	reg = SiS_GetReg(SISCR, 0x32);
T
Thomas Winischhofer 已提交
2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356
	if(reg & 0x08)
		return;

	realcrtno = 1;
	if(ivideo->SiS_Pr.DDCPortMixup)
		realcrtno = 0;

	/* Check DDC capabilities */
	temp = SiS_HandleDDC(&ivideo->SiS_Pr, ivideo->vbflags, ivideo->sisvga_engine,
				realcrtno, 0, &buffer[0], ivideo->vbflags2);

	if((!temp) || (temp == 0xffff) || (!(temp & 0x02)))
		return;

	/* Read DDC data */
	i = 3;  /* Number of retrys */
	do {
		temp = SiS_HandleDDC(&ivideo->SiS_Pr, ivideo->vbflags,
				ivideo->sisvga_engine, realcrtno, 1,
				&buffer[0], ivideo->vbflags2);
	} while((temp) && i--);

	if(temp)
		return;

	/* No digital device */
	if(!(buffer[0x14] & 0x80))
		return;

	/* First detailed timing preferred timing? */
	if(!(buffer[0x18] & 0x02))
		return;

	xres = buffer[0x38] | ((buffer[0x3a] & 0xf0) << 4);
	yres = buffer[0x3b] | ((buffer[0x3d] & 0xf0) << 4);

	switch(xres) {
		case 1024:
			if(yres == 768)
				paneltype = 0x02;
			break;
		case 1280:
			if(yres == 1024)
				paneltype = 0x03;
			break;
		case 1600:
			if((yres == 1200) && (ivideo->vbflags2 & VB2_30xC))
				paneltype = 0x0b;
			break;
	}

	if(!paneltype)
		return;

	if(buffer[0x23])
		cr37 |= 0x10;

	if((buffer[0x47] & 0x18) == 0x18)
		cr37 |= ((((buffer[0x47] & 0x06) ^ 0x06) << 5) | 0x20);
	else
		cr37 |= 0xc0;

	outSISIDXREG(SISCR, 0x36, paneltype);
	cr37 &= 0xf1;
	setSISIDXREG(SISCR, 0x37, 0x0c, cr37);
	orSISIDXREG(SISCR, 0x32, 0x08);

2357
	ivideo->SiS_Pr.PanelSelfDetected = true;
T
Thomas Winischhofer 已提交
2358 2359 2360 2361
}

static int __devinit
SISDoSense(struct sis_video_info *ivideo, u16 type, u16 test)
L
Linus Torvalds 已提交
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374
{
    int temp, mytest, result, i, j;

    for(j = 0; j < 10; j++) {
       result = 0;
       for(i = 0; i < 3; i++) {
          mytest = test;
          outSISIDXREG(SISPART4,0x11,(type & 0x00ff));
          temp = (type >> 8) | (mytest & 0x00ff);
          setSISIDXREG(SISPART4,0x10,0xe0,temp);
          SiS_DDC2Delay(&ivideo->SiS_Pr, 0x1500);
          mytest >>= 8;
          mytest &= 0x7f;
2375
	   temp = SiS_GetReg(SISPART4, 0x03);
L
Linus Torvalds 已提交
2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386
          temp ^= 0x0e;
          temp &= mytest;
          if(temp == mytest) result++;
#if 1
	  outSISIDXREG(SISPART4,0x11,0x00);
	  andSISIDXREG(SISPART4,0x10,0xe0);
	  SiS_DDC2Delay(&ivideo->SiS_Pr, 0x1000);
#endif
       }
       if((result == 0) || (result >= 2)) break;
    }
T
Thomas Winischhofer 已提交
2387
    return result;
L
Linus Torvalds 已提交
2388 2389
}

T
Thomas Winischhofer 已提交
2390 2391
static void __devinit
SiS_Sense30x(struct sis_video_info *ivideo)
L
Linus Torvalds 已提交
2392 2393 2394 2395 2396 2397 2398 2399 2400
{
    u8  backupP4_0d,backupP2_00,backupP2_4d,backupSR_1e,biosflag=0;
    u16 svhs=0, svhs_c=0;
    u16 cvbs=0, cvbs_c=0;
    u16 vga2=0, vga2_c=0;
    int myflag, result;
    char stdstr[] = "sisfb: Detected";
    char tvstr[]  = "TV connected to";

T
Thomas Winischhofer 已提交
2401
    if(ivideo->vbflags2 & VB2_301) {
L
Linus Torvalds 已提交
2402
       svhs = 0x00b9; cvbs = 0x00b3; vga2 = 0x00d1;
2403
       myflag = SiS_GetReg(SISPART4, 0x01);
L
Linus Torvalds 已提交
2404 2405 2406
       if(myflag & 0x04) {
	  svhs = 0x00dd; cvbs = 0x00ee; vga2 = 0x00fd;
       }
T
Thomas Winischhofer 已提交
2407
    } else if(ivideo->vbflags2 & (VB2_301B | VB2_302B)) {
L
Linus Torvalds 已提交
2408
       svhs = 0x016b; cvbs = 0x0174; vga2 = 0x0190;
T
Thomas Winischhofer 已提交
2409
    } else if(ivideo->vbflags2 & (VB2_301LV | VB2_302LV)) {
L
Linus Torvalds 已提交
2410
       svhs = 0x0200; cvbs = 0x0100;
T
Thomas Winischhofer 已提交
2411
    } else if(ivideo->vbflags2 & (VB2_301C | VB2_302ELV | VB2_307T | VB2_307LV)) {
L
Linus Torvalds 已提交
2412
       svhs = 0x016b; cvbs = 0x0110; vga2 = 0x0190;
T
Thomas Winischhofer 已提交
2413 2414
    } else
       return;
L
Linus Torvalds 已提交
2415 2416

    vga2_c = 0x0e08; svhs_c = 0x0404; cvbs_c = 0x0804;
T
Thomas Winischhofer 已提交
2417
    if(ivideo->vbflags & (VB2_301LV|VB2_302LV|VB2_302ELV|VB2_307LV)) {
L
Linus Torvalds 已提交
2418 2419
       svhs_c = 0x0408; cvbs_c = 0x0808;
    }
T
Thomas Winischhofer 已提交
2420

L
Linus Torvalds 已提交
2421
    biosflag = 2;
T
Thomas Winischhofer 已提交
2422 2423 2424 2425 2426 2427 2428 2429 2430
    if(ivideo->haveXGIROM) {
       biosflag = ivideo->bios_abase[0x58] & 0x03;
    } else if(ivideo->newrom) {
       if(ivideo->bios_abase[0x5d] & 0x04) biosflag |= 0x01;
    } else if(ivideo->sisvga_engine == SIS_300_VGA) {
       if(ivideo->bios_abase) {
          biosflag = ivideo->bios_abase[0xfe] & 0x03;
       }
    }
L
Linus Torvalds 已提交
2431 2432

    if(ivideo->chip == SIS_300) {
2433
       myflag = SiS_GetReg(SISSR, 0x3b);
L
Linus Torvalds 已提交
2434 2435 2436
       if(!(myflag & 0x01)) vga2 = vga2_c = 0;
    }

T
Thomas Winischhofer 已提交
2437 2438 2439 2440
    if(!(ivideo->vbflags2 & VB2_SISVGA2BRIDGE)) {
       vga2 = vga2_c = 0;
    }

2441
    backupSR_1e = SiS_GetReg(SISSR, 0x1e);
L
Linus Torvalds 已提交
2442 2443
    orSISIDXREG(SISSR,0x1e,0x20);

2444
    backupP4_0d = SiS_GetReg(SISPART4, 0x0d);
T
Thomas Winischhofer 已提交
2445
    if(ivideo->vbflags2 & VB2_30xC) {
L
Linus Torvalds 已提交
2446 2447 2448 2449 2450 2451
       setSISIDXREG(SISPART4,0x0d,~0x07,0x01);
    } else {
       orSISIDXREG(SISPART4,0x0d,0x04);
    }
    SiS_DDC2Delay(&ivideo->SiS_Pr, 0x2000);

2452
    backupP2_00 = SiS_GetReg(SISPART2, 0x00);
L
Linus Torvalds 已提交
2453 2454
    outSISIDXREG(SISPART2,0x00,((backupP2_00 | 0x1c) & 0xfc));

2455
    backupP2_4d = SiS_GetReg(SISPART2, 0x4d);
T
Thomas Winischhofer 已提交
2456
    if(ivideo->vbflags2 & VB2_SISYPBPRBRIDGE) {
L
Linus Torvalds 已提交
2457 2458 2459
       outSISIDXREG(SISPART2,0x4d,(backupP2_4d & ~0x10));
    }

T
Thomas Winischhofer 已提交
2460
    if(!(ivideo->vbflags2 & VB2_30xCLV)) {
L
Linus Torvalds 已提交
2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
       SISDoSense(ivideo, 0, 0);
    }

    andSISIDXREG(SISCR, 0x32, ~0x14);

    if(vga2_c || vga2) {
       if(SISDoSense(ivideo, vga2, vga2_c)) {
          if(biosflag & 0x01) {
	     printk(KERN_INFO "%s %s SCART output\n", stdstr, tvstr);
	     orSISIDXREG(SISCR, 0x32, 0x04);
	  } else {
	     printk(KERN_INFO "%s secondary VGA connection\n", stdstr);
	     orSISIDXREG(SISCR, 0x32, 0x10);
	  }
       }
    }

    andSISIDXREG(SISCR, 0x32, 0x3f);

T
Thomas Winischhofer 已提交
2480
    if(ivideo->vbflags2 & VB2_30xCLV) {
L
Linus Torvalds 已提交
2481 2482 2483
       orSISIDXREG(SISPART4,0x0d,0x04);
    }

T
Thomas Winischhofer 已提交
2484
    if((ivideo->sisvga_engine == SIS_315_VGA) && (ivideo->vbflags2 & VB2_SISYPBPRBRIDGE)) {
L
Linus Torvalds 已提交
2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516
       outSISIDXREG(SISPART2,0x4d,(backupP2_4d | 0x10));
       SiS_DDC2Delay(&ivideo->SiS_Pr, 0x2000);
       if((result = SISDoSense(ivideo, svhs, 0x0604))) {
          if((result = SISDoSense(ivideo, cvbs, 0x0804))) {
	     printk(KERN_INFO "%s %s YPbPr component output\n", stdstr, tvstr);
	     orSISIDXREG(SISCR,0x32,0x80);
	  }
       }
       outSISIDXREG(SISPART2,0x4d,backupP2_4d);
    }

    andSISIDXREG(SISCR, 0x32, ~0x03);

    if(!(ivideo->vbflags & TV_YPBPR)) {
       if((result = SISDoSense(ivideo, svhs, svhs_c))) {
          printk(KERN_INFO "%s %s SVIDEO output\n", stdstr, tvstr);
          orSISIDXREG(SISCR, 0x32, 0x02);
       }
       if((biosflag & 0x02) || (!result)) {
          if(SISDoSense(ivideo, cvbs, cvbs_c)) {
	     printk(KERN_INFO "%s %s COMPOSITE output\n", stdstr, tvstr);
	     orSISIDXREG(SISCR, 0x32, 0x01);
          }
       }
    }

    SISDoSense(ivideo, 0, 0);

    outSISIDXREG(SISPART2,0x00,backupP2_00);
    outSISIDXREG(SISPART4,0x0d,backupP4_0d);
    outSISIDXREG(SISSR,0x1e,backupSR_1e);

T
Thomas Winischhofer 已提交
2517
    if(ivideo->vbflags2 & VB2_30xCLV) {
2518
	biosflag = SiS_GetReg(SISPART2, 0x00);
L
Linus Torvalds 已提交
2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530
       if(biosflag & 0x20) {
          for(myflag = 2; myflag > 0; myflag--) {
	     biosflag ^= 0x20;
	     outSISIDXREG(SISPART2,0x00,biosflag);
	  }
       }
    }

    outSISIDXREG(SISPART2,0x00,backupP2_00);
}

/* Determine and detect attached TV's on Chrontel */
T
Thomas Winischhofer 已提交
2531 2532
static void __devinit
SiS_SenseCh(struct sis_video_info *ivideo)
L
Linus Torvalds 已提交
2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552
{
#if defined(CONFIG_FB_SIS_300) || defined(CONFIG_FB_SIS_315)
    u8 temp1, temp2;
    char stdstr[] = "sisfb: Chrontel: Detected TV connected to";
#endif
#ifdef CONFIG_FB_SIS_300
    unsigned char test[3];
    int i;
#endif

    if(ivideo->chip < SIS_315H) {

#ifdef CONFIG_FB_SIS_300
       ivideo->SiS_Pr.SiS_IF_DEF_CH70xx = 1;		/* Chrontel 700x */
       SiS_SetChrontelGPIO(&ivideo->SiS_Pr, 0x9c);	/* Set general purpose IO for Chrontel communication */
       SiS_DDC2Delay(&ivideo->SiS_Pr, 1000);
       temp1 = SiS_GetCH700x(&ivideo->SiS_Pr, 0x25);
       /* See Chrontel TB31 for explanation */
       temp2 = SiS_GetCH700x(&ivideo->SiS_Pr, 0x0e);
       if(((temp2 & 0x07) == 0x01) || (temp2 & 0x04)) {
T
Thomas Winischhofer 已提交
2553
	  SiS_SetCH700x(&ivideo->SiS_Pr, 0x0e, 0x0b);
L
Linus Torvalds 已提交
2554 2555 2556 2557 2558 2559 2560 2561 2562
	  SiS_DDC2Delay(&ivideo->SiS_Pr, 300);
       }
       temp2 = SiS_GetCH700x(&ivideo->SiS_Pr, 0x25);
       if(temp2 != temp1) temp1 = temp2;

       if((temp1 >= 0x22) && (temp1 <= 0x50)) {
	   /* Read power status */
	   temp1 = SiS_GetCH700x(&ivideo->SiS_Pr, 0x0e);
	   if((temp1 & 0x03) != 0x03) {
T
Thomas Winischhofer 已提交
2563 2564
		/* Power all outputs */
		SiS_SetCH700x(&ivideo->SiS_Pr, 0x0e,0x0b);
L
Linus Torvalds 已提交
2565 2566 2567 2568
		SiS_DDC2Delay(&ivideo->SiS_Pr, 300);
	   }
	   /* Sense connected TV devices */
	   for(i = 0; i < 3; i++) {
T
Thomas Winischhofer 已提交
2569
	       SiS_SetCH700x(&ivideo->SiS_Pr, 0x10, 0x01);
L
Linus Torvalds 已提交
2570
	       SiS_DDC2Delay(&ivideo->SiS_Pr, 0x96);
T
Thomas Winischhofer 已提交
2571
	       SiS_SetCH700x(&ivideo->SiS_Pr, 0x10, 0x00);
L
Linus Torvalds 已提交
2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583
	       SiS_DDC2Delay(&ivideo->SiS_Pr, 0x96);
	       temp1 = SiS_GetCH700x(&ivideo->SiS_Pr, 0x10);
	       if(!(temp1 & 0x08))       test[i] = 0x02;
	       else if(!(temp1 & 0x02))  test[i] = 0x01;
	       else                      test[i] = 0;
	       SiS_DDC2Delay(&ivideo->SiS_Pr, 0x96);
	   }

	   if(test[0] == test[1])      temp1 = test[0];
	   else if(test[0] == test[2]) temp1 = test[0];
	   else if(test[1] == test[2]) temp1 = test[1];
	   else {
T
Thomas Winischhofer 已提交
2584
		printk(KERN_INFO
L
Linus Torvalds 已提交
2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598
			"sisfb: TV detection unreliable - test results varied\n");
		temp1 = test[2];
	   }
	   if(temp1 == 0x02) {
		printk(KERN_INFO "%s SVIDEO output\n", stdstr);
		ivideo->vbflags |= TV_SVIDEO;
		orSISIDXREG(SISCR, 0x32, 0x02);
		andSISIDXREG(SISCR, 0x32, ~0x05);
	   } else if (temp1 == 0x01) {
		printk(KERN_INFO "%s CVBS output\n", stdstr);
		ivideo->vbflags |= TV_AVIDEO;
		orSISIDXREG(SISCR, 0x32, 0x01);
		andSISIDXREG(SISCR, 0x32, ~0x06);
	   } else {
T
Thomas Winischhofer 已提交
2599
		SiS_SetCH70xxANDOR(&ivideo->SiS_Pr, 0x0e, 0x01, 0xF8);
L
Linus Torvalds 已提交
2600 2601 2602
		andSISIDXREG(SISCR, 0x32, ~0x07);
	   }
       } else if(temp1 == 0) {
T
Thomas Winischhofer 已提交
2603
	  SiS_SetCH70xxANDOR(&ivideo->SiS_Pr, 0x0e, 0x01, 0xF8);
L
Linus Torvalds 已提交
2604 2605 2606 2607 2608 2609 2610 2611 2612 2613
	  andSISIDXREG(SISCR, 0x32, ~0x07);
       }
       /* Set general purpose IO for Chrontel communication */
       SiS_SetChrontelGPIO(&ivideo->SiS_Pr, 0x00);
#endif

    } else {

#ifdef CONFIG_FB_SIS_315
	ivideo->SiS_Pr.SiS_IF_DEF_CH70xx = 2;		/* Chrontel 7019 */
T
Thomas Winischhofer 已提交
2614 2615
	temp1 = SiS_GetCH701x(&ivideo->SiS_Pr, 0x49);
	SiS_SetCH701x(&ivideo->SiS_Pr, 0x49, 0x20);
L
Linus Torvalds 已提交
2616 2617 2618
	SiS_DDC2Delay(&ivideo->SiS_Pr, 0x96);
	temp2 = SiS_GetCH701x(&ivideo->SiS_Pr, 0x20);
	temp2 |= 0x01;
T
Thomas Winischhofer 已提交
2619
	SiS_SetCH701x(&ivideo->SiS_Pr, 0x20, temp2);
L
Linus Torvalds 已提交
2620 2621
	SiS_DDC2Delay(&ivideo->SiS_Pr, 0x96);
	temp2 ^= 0x01;
T
Thomas Winischhofer 已提交
2622
	SiS_SetCH701x(&ivideo->SiS_Pr, 0x20, temp2);
L
Linus Torvalds 已提交
2623 2624
	SiS_DDC2Delay(&ivideo->SiS_Pr, 0x96);
	temp2 = SiS_GetCH701x(&ivideo->SiS_Pr, 0x20);
T
Thomas Winischhofer 已提交
2625 2626
	SiS_SetCH701x(&ivideo->SiS_Pr, 0x49, temp1);
	temp1 = 0;
L
Linus Torvalds 已提交
2627 2628 2629 2630 2631 2632 2633 2634 2635 2636
	if(temp2 & 0x02) temp1 |= 0x01;
	if(temp2 & 0x10) temp1 |= 0x01;
	if(temp2 & 0x04) temp1 |= 0x02;
	if( (temp1 & 0x01) && (temp1 & 0x02) ) temp1 = 0x04;
	switch(temp1) {
	case 0x01:
	     printk(KERN_INFO "%s CVBS output\n", stdstr);
	     ivideo->vbflags |= TV_AVIDEO;
	     orSISIDXREG(SISCR, 0x32, 0x01);
	     andSISIDXREG(SISCR, 0x32, ~0x06);
T
Thomas Winischhofer 已提交
2637
	     break;
L
Linus Torvalds 已提交
2638 2639 2640 2641 2642
	case 0x02:
	     printk(KERN_INFO "%s SVIDEO output\n", stdstr);
	     ivideo->vbflags |= TV_SVIDEO;
	     orSISIDXREG(SISCR, 0x32, 0x02);
	     andSISIDXREG(SISCR, 0x32, ~0x05);
T
Thomas Winischhofer 已提交
2643
	     break;
L
Linus Torvalds 已提交
2644 2645 2646 2647
	case 0x04:
	     printk(KERN_INFO "%s SCART output\n", stdstr);
	     orSISIDXREG(SISCR, 0x32, 0x04);
	     andSISIDXREG(SISCR, 0x32, ~0x03);
T
Thomas Winischhofer 已提交
2648
	     break;
L
Linus Torvalds 已提交
2649 2650 2651 2652 2653 2654 2655
	default:
	     andSISIDXREG(SISCR, 0x32, ~0x07);
	}
#endif
    }
}

T
Thomas Winischhofer 已提交
2656 2657
static void __devinit
sisfb_get_VB_type(struct sis_video_info *ivideo)
L
Linus Torvalds 已提交
2658
{
T
Thomas Winischhofer 已提交
2659 2660 2661 2662
	char stdstr[]    = "sisfb: Detected";
	char bridgestr[] = "video bridge";
	u8 vb_chipid;
	u8 reg;
L
Linus Torvalds 已提交
2663

T
Thomas Winischhofer 已提交
2664 2665 2666
	/* No CRT2 on XGI Z7 */
	if(ivideo->chip == XGI_20)
		return;
L
Linus Torvalds 已提交
2667

2668
	vb_chipid = SiS_GetReg(SISPART4, 0x00);
T
Thomas Winischhofer 已提交
2669 2670
	switch(vb_chipid) {
	case 0x01:
2671
		reg = SiS_GetReg(SISPART4, 0x01);
T
Thomas Winischhofer 已提交
2672 2673 2674 2675 2676 2677 2678
		if(reg < 0xb0) {
			ivideo->vbflags |= VB_301;	/* Deprecated */
			ivideo->vbflags2 |= VB2_301;
			printk(KERN_INFO "%s SiS301 %s\n", stdstr, bridgestr);
		} else if(reg < 0xc0) {
			ivideo->vbflags |= VB_301B;	/* Deprecated */
			ivideo->vbflags2 |= VB2_301B;
2679
			reg = SiS_GetReg(SISPART4, 0x23);
T
Thomas Winischhofer 已提交
2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
			if(!(reg & 0x02)) {
			   ivideo->vbflags |= VB_30xBDH;	/* Deprecated */
			   ivideo->vbflags2 |= VB2_30xBDH;
			   printk(KERN_INFO "%s SiS301B-DH %s\n", stdstr, bridgestr);
			} else {
			   printk(KERN_INFO "%s SiS301B %s\n", stdstr, bridgestr);
			}
		} else if(reg < 0xd0) {
			ivideo->vbflags |= VB_301C;	/* Deprecated */
			ivideo->vbflags2 |= VB2_301C;
			printk(KERN_INFO "%s SiS301C %s\n", stdstr, bridgestr);
		} else if(reg < 0xe0) {
			ivideo->vbflags |= VB_301LV;	/* Deprecated */
			ivideo->vbflags2 |= VB2_301LV;
			printk(KERN_INFO "%s SiS301LV %s\n", stdstr, bridgestr);
		} else if(reg <= 0xe1) {
2696
			reg = SiS_GetReg(SISPART4, 0x39);
T
Thomas Winischhofer 已提交
2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717
			if(reg == 0xff) {
			   ivideo->vbflags |= VB_302LV;	/* Deprecated */
			   ivideo->vbflags2 |= VB2_302LV;
			   printk(KERN_INFO "%s SiS302LV %s\n", stdstr, bridgestr);
			} else {
			   ivideo->vbflags |= VB_301C;	/* Deprecated */
			   ivideo->vbflags2 |= VB2_301C;
			   printk(KERN_INFO "%s SiS301C(P4) %s\n", stdstr, bridgestr);
#if 0
			   ivideo->vbflags |= VB_302ELV;	/* Deprecated */
			   ivideo->vbflags2 |= VB2_302ELV;
			   printk(KERN_INFO "%s SiS302ELV %s\n", stdstr, bridgestr);
#endif
			}
		}
		break;
	case 0x02:
		ivideo->vbflags |= VB_302B;	/* Deprecated */
		ivideo->vbflags2 |= VB2_302B;
		printk(KERN_INFO "%s SiS302B %s\n", stdstr, bridgestr);
		break;
L
Linus Torvalds 已提交
2718 2719
	}

T
Thomas Winischhofer 已提交
2720
	if((!(ivideo->vbflags2 & VB2_VIDEOBRIDGE)) && (ivideo->chip != SIS_300)) {
2721
		reg = SiS_GetReg(SISCR, 0x37);
T
Thomas Winischhofer 已提交
2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761
		reg &= SIS_EXTERNAL_CHIP_MASK;
		reg >>= 1;
		if(ivideo->sisvga_engine == SIS_300_VGA) {
#ifdef CONFIG_FB_SIS_300
			switch(reg) {
			   case SIS_EXTERNAL_CHIP_LVDS:
				ivideo->vbflags |= VB_LVDS;	/* Deprecated */
				ivideo->vbflags2 |= VB2_LVDS;
				break;
			   case SIS_EXTERNAL_CHIP_TRUMPION:
				ivideo->vbflags |= (VB_LVDS | VB_TRUMPION);	/* Deprecated */
				ivideo->vbflags2 |= (VB2_LVDS | VB2_TRUMPION);
				break;
			   case SIS_EXTERNAL_CHIP_CHRONTEL:
				ivideo->vbflags |= VB_CHRONTEL;	/* Deprecated */
				ivideo->vbflags2 |= VB2_CHRONTEL;
				break;
			   case SIS_EXTERNAL_CHIP_LVDS_CHRONTEL:
				ivideo->vbflags |= (VB_LVDS | VB_CHRONTEL);	/* Deprecated */
				ivideo->vbflags2 |= (VB2_LVDS | VB2_CHRONTEL);
				break;
			}
			if(ivideo->vbflags2 & VB2_CHRONTEL) ivideo->chronteltype = 1;
#endif
		} else if(ivideo->chip < SIS_661) {
#ifdef CONFIG_FB_SIS_315
			switch (reg) {
			   case SIS310_EXTERNAL_CHIP_LVDS:
				ivideo->vbflags |= VB_LVDS;	/* Deprecated */
				ivideo->vbflags2 |= VB2_LVDS;
				break;
			   case SIS310_EXTERNAL_CHIP_LVDS_CHRONTEL:
				ivideo->vbflags |= (VB_LVDS | VB_CHRONTEL);	/* Deprecated */
				ivideo->vbflags2 |= (VB2_LVDS | VB2_CHRONTEL);
				break;
			}
			if(ivideo->vbflags2 & VB2_CHRONTEL) ivideo->chronteltype = 2;
#endif
		} else if(ivideo->chip >= SIS_661) {
#ifdef CONFIG_FB_SIS_315
2762
			reg = SiS_GetReg(SISCR, 0x38);
T
Thomas Winischhofer 已提交
2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806
			reg >>= 5;
			switch(reg) {
			   case 0x02:
				ivideo->vbflags |= VB_LVDS;	/* Deprecated */
				ivideo->vbflags2 |= VB2_LVDS;
				break;
			   case 0x03:
				ivideo->vbflags |= (VB_LVDS | VB_CHRONTEL);	/* Deprecated */
				ivideo->vbflags2 |= (VB2_LVDS | VB2_CHRONTEL);
				break;
			   case 0x04:
				ivideo->vbflags |= (VB_LVDS | VB_CONEXANT);	/* Deprecated */
				ivideo->vbflags2 |= (VB2_LVDS | VB2_CONEXANT);
				break;
			}
			if(ivideo->vbflags2 & VB2_CHRONTEL) ivideo->chronteltype = 2;
#endif
		}
		if(ivideo->vbflags2 & VB2_LVDS) {
		   printk(KERN_INFO "%s LVDS transmitter\n", stdstr);
		}
		if((ivideo->sisvga_engine == SIS_300_VGA) && (ivideo->vbflags2 & VB2_TRUMPION)) {
		   printk(KERN_INFO "%s Trumpion Zurac LCD scaler\n", stdstr);
		}
		if(ivideo->vbflags2 & VB2_CHRONTEL) {
		   printk(KERN_INFO "%s Chrontel TV encoder\n", stdstr);
		}
		if((ivideo->chip >= SIS_661) && (ivideo->vbflags2 & VB2_CONEXANT)) {
		   printk(KERN_INFO "%s Conexant external device\n", stdstr);
		}
	}

	if(ivideo->vbflags2 & VB2_SISBRIDGE) {
		SiS_SenseLCD(ivideo);
		SiS_Sense30x(ivideo);
	} else if(ivideo->vbflags2 & VB2_CHRONTEL) {
		SiS_SenseCh(ivideo);
	}
}

/* ---------- Engine initialization routines ------------ */

static void
sisfb_engine_init(struct sis_video_info *ivideo)
L
Linus Torvalds 已提交
2807 2808
{

T
Thomas Winischhofer 已提交
2809
	/* Initialize command queue (we use MMIO only) */
L
Linus Torvalds 已提交
2810

T
Thomas Winischhofer 已提交
2811
	/* BEFORE THIS IS CALLED, THE ENGINES *MUST* BE SYNC'ED */
L
Linus Torvalds 已提交
2812

T
Thomas Winischhofer 已提交
2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824
	ivideo->caps &= ~(TURBO_QUEUE_CAP    |
			  MMIO_CMD_QUEUE_CAP |
			  VM_CMD_QUEUE_CAP   |
			  AGP_CMD_QUEUE_CAP);

#ifdef CONFIG_FB_SIS_300
	if(ivideo->sisvga_engine == SIS_300_VGA) {
		u32 tqueue_pos;
		u8 tq_state;

		tqueue_pos = (ivideo->video_size - ivideo->cmdQueueSize) / (64 * 1024);

2825
		tq_state = SiS_GetReg(SISSR, IND_SIS_TURBOQUEUE_SET);
T
Thomas Winischhofer 已提交
2826 2827 2828 2829 2830 2831 2832 2833 2834 2835
		tq_state |= 0xf0;
		tq_state &= 0xfc;
		tq_state |= (u8)(tqueue_pos >> 8);
		outSISIDXREG(SISSR, IND_SIS_TURBOQUEUE_SET, tq_state);

		outSISIDXREG(SISSR, IND_SIS_TURBOQUEUE_ADR, (u8)(tqueue_pos & 0xff));

		ivideo->caps |= TURBO_QUEUE_CAP;
	}
#endif
L
Linus Torvalds 已提交
2836 2837

#ifdef CONFIG_FB_SIS_315
T
Thomas Winischhofer 已提交
2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884
	if(ivideo->sisvga_engine == SIS_315_VGA) {
		u32 tempq = 0, templ;
		u8  temp;

		if(ivideo->chip == XGI_20) {
			switch(ivideo->cmdQueueSize) {
			case (64 * 1024):
				temp = SIS_CMD_QUEUE_SIZE_Z7_64k;
				break;
			case (128 * 1024):
			default:
				temp = SIS_CMD_QUEUE_SIZE_Z7_128k;
			}
		} else {
			switch(ivideo->cmdQueueSize) {
			case (4 * 1024 * 1024):
				temp = SIS_CMD_QUEUE_SIZE_4M;
				break;
			case (2 * 1024 * 1024):
				temp = SIS_CMD_QUEUE_SIZE_2M;
				break;
			case (1 * 1024 * 1024):
				temp = SIS_CMD_QUEUE_SIZE_1M;
				break;
			default:
			case (512 * 1024):
				temp = SIS_CMD_QUEUE_SIZE_512k;
			}
		}

		outSISIDXREG(SISSR, IND_SIS_CMDQUEUE_THRESHOLD, COMMAND_QUEUE_THRESHOLD);
		outSISIDXREG(SISSR, IND_SIS_CMDQUEUE_SET, SIS_CMD_QUEUE_RESET);

		if((ivideo->chip >= XGI_40) && ivideo->modechanged) {
			/* Must disable dual pipe on XGI_40. Can't do
			 * this in MMIO mode, because it requires
			 * setting/clearing a bit in the MMIO fire trigger
			 * register.
			 */
			if(!((templ = MMIO_IN32(ivideo->mmio_vbase, 0x8240)) & (1 << 10))) {

				MMIO_OUT32(ivideo->mmio_vbase, Q_WRITE_PTR, 0);

				outSISIDXREG(SISSR, IND_SIS_CMDQUEUE_SET, (temp | SIS_VRAM_CMDQUEUE_ENABLE));

				tempq = MMIO_IN32(ivideo->mmio_vbase, Q_READ_PTR);
				MMIO_OUT32(ivideo->mmio_vbase, Q_WRITE_PTR, tempq);
L
Linus Torvalds 已提交
2885

T
Thomas Winischhofer 已提交
2886 2887
				tempq = (u32)(ivideo->video_size - ivideo->cmdQueueSize);
				MMIO_OUT32(ivideo->mmio_vbase, Q_BASE_ADDR, tempq);
L
Linus Torvalds 已提交
2888

T
Thomas Winischhofer 已提交
2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923
				writel(0x16800000 + 0x8240, ivideo->video_vbase + tempq);
				writel(templ | (1 << 10), ivideo->video_vbase + tempq + 4);
				writel(0x168F0000, ivideo->video_vbase + tempq + 8);
				writel(0x168F0000, ivideo->video_vbase + tempq + 12);

				MMIO_OUT32(ivideo->mmio_vbase, Q_WRITE_PTR, (tempq + 16));

				sisfb_syncaccel(ivideo);

				outSISIDXREG(SISSR, IND_SIS_CMDQUEUE_SET, SIS_CMD_QUEUE_RESET);

			}
		}

		tempq = MMIO_IN32(ivideo->mmio_vbase, MMIO_QUEUE_READPORT);
		MMIO_OUT32(ivideo->mmio_vbase, MMIO_QUEUE_WRITEPORT, tempq);

		temp |= (SIS_MMIO_CMD_ENABLE | SIS_CMD_AUTO_CORR);
		outSISIDXREG(SISSR, IND_SIS_CMDQUEUE_SET, temp);

		tempq = (u32)(ivideo->video_size - ivideo->cmdQueueSize);
		MMIO_OUT32(ivideo->mmio_vbase, MMIO_QUEUE_PHYBASE, tempq);

		ivideo->caps |= MMIO_CMD_QUEUE_CAP;
	}
#endif

	ivideo->engineok = 1;
}

static void __devinit
sisfb_detect_lcd_type(struct sis_video_info *ivideo)
{
	u8 reg;
	int i;
L
Linus Torvalds 已提交
2924

2925
	reg = SiS_GetReg(SISCR, 0x36);
T
Thomas Winischhofer 已提交
2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939
	reg &= 0x0f;
	if(ivideo->sisvga_engine == SIS_300_VGA) {
		ivideo->CRT2LCDType = sis300paneltype[reg];
	} else if(ivideo->chip >= SIS_661) {
		ivideo->CRT2LCDType = sis661paneltype[reg];
	} else {
		ivideo->CRT2LCDType = sis310paneltype[reg];
		if((ivideo->chip == SIS_550) && (sisfb_fstn)) {
			if((ivideo->CRT2LCDType != LCD_320x240_2) &&
			   (ivideo->CRT2LCDType != LCD_320x240_3)) {
				ivideo->CRT2LCDType = LCD_320x240;
			}
		}
	}
L
Linus Torvalds 已提交
2940

T
Thomas Winischhofer 已提交
2941 2942 2943 2944 2945 2946 2947
	if(ivideo->CRT2LCDType == LCD_UNKNOWN) {
		/* For broken BIOSes: Assume 1024x768, RGB18 */
		ivideo->CRT2LCDType = LCD_1024x768;
		setSISIDXREG(SISCR,0x36,0xf0,0x02);
		setSISIDXREG(SISCR,0x37,0xee,0x01);
		printk(KERN_DEBUG "sisfb: Invalid panel ID (%02x), assuming 1024x768, RGB18\n", reg);
	}
L
Linus Torvalds 已提交
2948

T
Thomas Winischhofer 已提交
2949 2950 2951 2952 2953 2954 2955 2956
	for(i = 0; i < SIS_LCD_NUMBER; i++) {
		if(ivideo->CRT2LCDType == sis_lcd_data[i].lcdtype) {
			ivideo->lcdxres = sis_lcd_data[i].xres;
			ivideo->lcdyres = sis_lcd_data[i].yres;
			ivideo->lcddefmodeidx = sis_lcd_data[i].default_mode_idx;
			break;
		}
	}
L
Linus Torvalds 已提交
2957

T
Thomas Winischhofer 已提交
2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968
#ifdef CONFIG_FB_SIS_300
	if(ivideo->SiS_Pr.SiS_CustomT == CUT_BARCO1366) {
		ivideo->lcdxres = 1360; ivideo->lcdyres = 1024;
		ivideo->lcddefmodeidx = DEFAULT_MODE_1360;
	} else if(ivideo->SiS_Pr.SiS_CustomT == CUT_PANEL848) {
		ivideo->lcdxres =  848; ivideo->lcdyres =  480;
		ivideo->lcddefmodeidx = DEFAULT_MODE_848;
	} else if(ivideo->SiS_Pr.SiS_CustomT == CUT_PANEL856) {
		ivideo->lcdxres =  856; ivideo->lcdyres =  480;
		ivideo->lcddefmodeidx = DEFAULT_MODE_856;
	}
L
Linus Torvalds 已提交
2969 2970
#endif

T
Thomas Winischhofer 已提交
2971 2972 2973 2974 2975 2976 2977
	printk(KERN_DEBUG "sisfb: Detected %dx%d flat panel\n",
			ivideo->lcdxres, ivideo->lcdyres);
}

static void __devinit
sisfb_save_pdc_emi(struct sis_video_info *ivideo)
{
L
Linus Torvalds 已提交
2978
#ifdef CONFIG_FB_SIS_300
T
Thomas Winischhofer 已提交
2979 2980 2981 2982
	/* Save the current PanelDelayCompensation if the LCD is currently used */
	if(ivideo->sisvga_engine == SIS_300_VGA) {
		if(ivideo->vbflags2 & (VB2_LVDS | VB2_30xBDH)) {
			int tmp;
2983
			tmp = SiS_GetReg(SISCR, 0x30);
T
Thomas Winischhofer 已提交
2984 2985
			if(tmp & 0x20) {
				/* Currently on LCD? If yes, read current pdc */
2986
				ivideo->detectedpdc = SiS_GetReg(SISPART1, 0x13);
T
Thomas Winischhofer 已提交
2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005
				ivideo->detectedpdc &= 0x3c;
				if(ivideo->SiS_Pr.PDC == -1) {
					/* Let option override detection */
					ivideo->SiS_Pr.PDC = ivideo->detectedpdc;
				}
				printk(KERN_INFO "sisfb: Detected LCD PDC 0x%02x\n",
					ivideo->detectedpdc);
			}
			if((ivideo->SiS_Pr.PDC != -1) &&
			   (ivideo->SiS_Pr.PDC != ivideo->detectedpdc)) {
				printk(KERN_INFO "sisfb: Using LCD PDC 0x%02x\n",
					ivideo->SiS_Pr.PDC);
			}
		}
	}
#endif

#ifdef CONFIG_FB_SIS_315
	if(ivideo->sisvga_engine == SIS_315_VGA) {
L
Linus Torvalds 已提交
3006

T
Thomas Winischhofer 已提交
3007 3008 3009
		/* Try to find about LCDA */
		if(ivideo->vbflags2 & VB2_SISLCDABRIDGE) {
			int tmp;
3010
			tmp = SiS_GetReg(SISPART1, 0x13);
T
Thomas Winischhofer 已提交
3011
			if(tmp & 0x04) {
3012
				ivideo->SiS_Pr.SiS_UseLCDA = true;
T
Thomas Winischhofer 已提交
3013 3014 3015
				ivideo->detectedlcda = 0x03;
			}
		}
L
Linus Torvalds 已提交
3016

T
Thomas Winischhofer 已提交
3017 3018 3019
		/* Save PDC */
		if(ivideo->vbflags2 & VB2_SISLVDSBRIDGE) {
			int tmp;
3020
			tmp = SiS_GetReg(SISCR, 0x30);
T
Thomas Winischhofer 已提交
3021 3022 3023
			if((tmp & 0x20) || (ivideo->detectedlcda != 0xff)) {
				/* Currently on LCD? If yes, read current pdc */
				u8 pdc;
3024
				pdc = SiS_GetReg(SISPART1, 0x2D);
T
Thomas Winischhofer 已提交
3025 3026
				ivideo->detectedpdc  = (pdc & 0x0f) << 1;
				ivideo->detectedpdca = (pdc & 0xf0) >> 3;
3027
				pdc = SiS_GetReg(SISPART1, 0x35);
T
Thomas Winischhofer 已提交
3028
				ivideo->detectedpdc |= ((pdc >> 7) & 0x01);
3029
				pdc = SiS_GetReg(SISPART1, 0x20);
T
Thomas Winischhofer 已提交
3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059
				ivideo->detectedpdca |= ((pdc >> 6) & 0x01);
				if(ivideo->newrom) {
					/* New ROM invalidates other PDC resp. */
					if(ivideo->detectedlcda != 0xff) {
						ivideo->detectedpdc = 0xff;
					} else {
						ivideo->detectedpdca = 0xff;
					}
				}
				if(ivideo->SiS_Pr.PDC == -1) {
					if(ivideo->detectedpdc != 0xff) {
						ivideo->SiS_Pr.PDC = ivideo->detectedpdc;
					}
				}
				if(ivideo->SiS_Pr.PDCA == -1) {
					if(ivideo->detectedpdca != 0xff) {
						ivideo->SiS_Pr.PDCA = ivideo->detectedpdca;
					}
				}
				if(ivideo->detectedpdc != 0xff) {
					printk(KERN_INFO
						"sisfb: Detected LCD PDC 0x%02x (for LCD=CRT2)\n",
						ivideo->detectedpdc);
				}
				if(ivideo->detectedpdca != 0xff) {
					printk(KERN_INFO
						"sisfb: Detected LCD PDC1 0x%02x (for LCD=CRT1)\n",
						ivideo->detectedpdca);
				}
			}
L
Linus Torvalds 已提交
3060

T
Thomas Winischhofer 已提交
3061 3062
			/* Save EMI */
			if(ivideo->vbflags2 & VB2_SISEMIBRIDGE) {
3063 3064 3065 3066
				ivideo->SiS_Pr.EMI_30 = SiS_GetReg(SISPART4, 0x30);
				ivideo->SiS_Pr.EMI_31 = SiS_GetReg(SISPART4, 0x31);
				ivideo->SiS_Pr.EMI_32 = SiS_GetReg(SISPART4, 0x32);
				ivideo->SiS_Pr.EMI_33 = SiS_GetReg(SISPART4, 0x33);
3067
				ivideo->SiS_Pr.HaveEMI = true;
T
Thomas Winischhofer 已提交
3068
				if((tmp & 0x20) || (ivideo->detectedlcda != 0xff)) {
3069
					ivideo->SiS_Pr.HaveEMILCD = true;
T
Thomas Winischhofer 已提交
3070 3071 3072
				}
			}
		}
L
Linus Torvalds 已提交
3073

T
Thomas Winischhofer 已提交
3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086
		/* Let user override detected PDCs (all bridges) */
		if(ivideo->vbflags2 & VB2_30xBLV) {
			if((ivideo->SiS_Pr.PDC != -1) &&
			   (ivideo->SiS_Pr.PDC != ivideo->detectedpdc)) {
				printk(KERN_INFO "sisfb: Using LCD PDC 0x%02x (for LCD=CRT2)\n",
					ivideo->SiS_Pr.PDC);
			}
			if((ivideo->SiS_Pr.PDCA != -1) &&
			   (ivideo->SiS_Pr.PDCA != ivideo->detectedpdca)) {
				printk(KERN_INFO "sisfb: Using LCD PDC1 0x%02x (for LCD=CRT1)\n",
				 ivideo->SiS_Pr.PDCA);
			}
		}
L
Linus Torvalds 已提交
3087

T
Thomas Winischhofer 已提交
3088
	}
L
Linus Torvalds 已提交
3089
#endif
T
Thomas Winischhofer 已提交
3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162
}

/* -------------------- Memory manager routines ---------------------- */

static u32 __devinit
sisfb_getheapstart(struct sis_video_info *ivideo)
{
	u32 ret = ivideo->sisfb_parm_mem * 1024;
	u32 maxoffs = ivideo->video_size - ivideo->hwcursor_size - ivideo->cmdQueueSize;
	u32 def;

	/* Calculate heap start = end of memory for console
	 *
	 * CCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDHHHHQQQQQQQQQQ
	 * C = console, D = heap, H = HWCursor, Q = cmd-queue
	 *
	 * On 76x in UMA+LFB mode, the layout is as follows:
	 * DDDDDDDDDDDCCCCCCCCCCCCCCCCCCCCCCCCHHHHQQQQQQQQQQQ
	 * where the heap is the entire UMA area, eventually
	 * into the LFB area if the given mem parameter is
	 * higher than the size of the UMA memory.
	 *
	 * Basically given by "mem" parameter
	 *
	 * maximum = videosize - cmd_queue - hwcursor
	 *           (results in a heap of size 0)
	 * default = SiS 300: depends on videosize
	 *           SiS 315/330/340/XGI: 32k below max
	 */

	if(ivideo->sisvga_engine == SIS_300_VGA) {
		if(ivideo->video_size > 0x1000000) {
			def = 0xc00000;
		} else if(ivideo->video_size > 0x800000) {
			def = 0x800000;
		} else {
			def = 0x400000;
		}
	} else if(ivideo->UMAsize && ivideo->LFBsize) {
		ret = def = 0;
	} else {
		def = maxoffs - 0x8000;
	}

	/* Use default for secondary card for now (FIXME) */
	if((!ret) || (ret > maxoffs) || (ivideo->cardnumber != 0))
		ret = def;

	return ret;
}

static u32 __devinit
sisfb_getheapsize(struct sis_video_info *ivideo)
{
	u32 max = ivideo->video_size - ivideo->hwcursor_size - ivideo->cmdQueueSize;
	u32 ret = 0;

	if(ivideo->UMAsize && ivideo->LFBsize) {
		if( (!ivideo->sisfb_parm_mem)			||
		    ((ivideo->sisfb_parm_mem * 1024) > max)	||
		    ((max - (ivideo->sisfb_parm_mem * 1024)) < ivideo->UMAsize) ) {
			ret = ivideo->UMAsize;
			max -= ivideo->UMAsize;
		} else {
			ret = max - (ivideo->sisfb_parm_mem * 1024);
			max = ivideo->sisfb_parm_mem * 1024;
		}
		ivideo->video_offset = ret;
		ivideo->sisfb_mem = max;
	} else {
		ret = max - ivideo->heapstart;
		ivideo->sisfb_mem = ivideo->heapstart;
	}
L
Linus Torvalds 已提交
3163

T
Thomas Winischhofer 已提交
3164 3165
	return ret;
}
L
Linus Torvalds 已提交
3166

T
Thomas Winischhofer 已提交
3167 3168 3169 3170
static int __devinit
sisfb_heap_init(struct sis_video_info *ivideo)
{
	struct SIS_OH *poh;
L
Linus Torvalds 已提交
3171

T
Thomas Winischhofer 已提交
3172 3173 3174 3175 3176 3177 3178
	ivideo->video_offset = 0;
	if(ivideo->sisfb_parm_mem) {
		if( (ivideo->sisfb_parm_mem < (2 * 1024 * 1024)) ||
		    (ivideo->sisfb_parm_mem > ivideo->video_size) ) {
			ivideo->sisfb_parm_mem = 0;
		}
	}
L
Linus Torvalds 已提交
3179

T
Thomas Winischhofer 已提交
3180 3181
	ivideo->heapstart = sisfb_getheapstart(ivideo);
	ivideo->sisfb_heap_size = sisfb_getheapsize(ivideo);
L
Linus Torvalds 已提交
3182

T
Thomas Winischhofer 已提交
3183 3184
	ivideo->sisfb_heap_start = ivideo->video_vbase + ivideo->heapstart;
	ivideo->sisfb_heap_end   = ivideo->sisfb_heap_start + ivideo->sisfb_heap_size;
L
Linus Torvalds 已提交
3185

T
Thomas Winischhofer 已提交
3186 3187
	printk(KERN_INFO "sisfb: Memory heap starting at %dK, size %dK\n",
		(int)(ivideo->heapstart / 1024), (int)(ivideo->sisfb_heap_size / 1024));
L
Linus Torvalds 已提交
3188

T
Thomas Winischhofer 已提交
3189
	ivideo->sisfb_heap.vinfo = ivideo;
L
Linus Torvalds 已提交
3190

T
Thomas Winischhofer 已提交
3191 3192
	ivideo->sisfb_heap.poha_chain = NULL;
	ivideo->sisfb_heap.poh_freelist = NULL;
L
Linus Torvalds 已提交
3193

T
Thomas Winischhofer 已提交
3194 3195 3196
	poh = sisfb_poh_new_node(&ivideo->sisfb_heap);
	if(poh == NULL)
		return 1;
L
Linus Torvalds 已提交
3197

T
Thomas Winischhofer 已提交
3198 3199 3200 3201
	poh->poh_next = &ivideo->sisfb_heap.oh_free;
	poh->poh_prev = &ivideo->sisfb_heap.oh_free;
	poh->size = ivideo->sisfb_heap_size;
	poh->offset = ivideo->heapstart;
L
Linus Torvalds 已提交
3202

T
Thomas Winischhofer 已提交
3203 3204 3205 3206
	ivideo->sisfb_heap.oh_free.poh_next = poh;
	ivideo->sisfb_heap.oh_free.poh_prev = poh;
	ivideo->sisfb_heap.oh_free.size = 0;
	ivideo->sisfb_heap.max_freesize = poh->size;
L
Linus Torvalds 已提交
3207

T
Thomas Winischhofer 已提交
3208 3209 3210
	ivideo->sisfb_heap.oh_used.poh_next = &ivideo->sisfb_heap.oh_used;
	ivideo->sisfb_heap.oh_used.poh_prev = &ivideo->sisfb_heap.oh_used;
	ivideo->sisfb_heap.oh_used.size = SENTINEL;
L
Linus Torvalds 已提交
3211

T
Thomas Winischhofer 已提交
3212 3213 3214 3215 3216 3217
	if(ivideo->cardnumber == 0) {
		/* For the first card, make this heap the "global" one
		 * for old DRM (which could handle only one card)
		 */
		sisfb_heap = &ivideo->sisfb_heap;
	}
L
Linus Torvalds 已提交
3218

T
Thomas Winischhofer 已提交
3219
	return 0;
L
Linus Torvalds 已提交
3220 3221
}

T
Thomas Winischhofer 已提交
3222 3223
static struct SIS_OH *
sisfb_poh_new_node(struct SIS_HEAP *memheap)
L
Linus Torvalds 已提交
3224
{
T
Thomas Winischhofer 已提交
3225 3226 3227 3228
	struct SIS_OHALLOC	*poha;
	struct SIS_OH		*poh;
	unsigned long		cOhs;
	int			i;
L
Linus Torvalds 已提交
3229

T
Thomas Winischhofer 已提交
3230
	if(memheap->poh_freelist == NULL) {
L
Linus Torvalds 已提交
3231
		poha = kmalloc(SIS_OH_ALLOC_SIZE, GFP_KERNEL);
T
Thomas Winischhofer 已提交
3232 3233
		if(!poha)
			return NULL;
L
Linus Torvalds 已提交
3234

T
Thomas Winischhofer 已提交
3235 3236
		poha->poha_next = memheap->poha_chain;
		memheap->poha_chain = poha;
L
Linus Torvalds 已提交
3237

T
Thomas Winischhofer 已提交
3238
		cOhs = (SIS_OH_ALLOC_SIZE - sizeof(struct SIS_OHALLOC)) / sizeof(struct SIS_OH) + 1;
L
Linus Torvalds 已提交
3239 3240 3241 3242 3243 3244 3245 3246

		poh = &poha->aoh[0];
		for(i = cOhs - 1; i != 0; i--) {
			poh->poh_next = poh + 1;
			poh = poh + 1;
		}

		poh->poh_next = NULL;
T
Thomas Winischhofer 已提交
3247
		memheap->poh_freelist = &poha->aoh[0];
L
Linus Torvalds 已提交
3248 3249
	}

T
Thomas Winischhofer 已提交
3250 3251
	poh = memheap->poh_freelist;
	memheap->poh_freelist = poh->poh_next;
L
Linus Torvalds 已提交
3252

T
Thomas Winischhofer 已提交
3253
	return poh;
L
Linus Torvalds 已提交
3254 3255
}

T
Thomas Winischhofer 已提交
3256 3257
static struct SIS_OH *
sisfb_poh_allocate(struct SIS_HEAP *memheap, u32 size)
L
Linus Torvalds 已提交
3258
{
T
Thomas Winischhofer 已提交
3259 3260 3261
	struct SIS_OH	*pohThis;
	struct SIS_OH	*pohRoot;
	int		bAllocated = 0;
L
Linus Torvalds 已提交
3262

T
Thomas Winischhofer 已提交
3263
	if(size > memheap->max_freesize) {
L
Linus Torvalds 已提交
3264 3265
		DPRINTK("sisfb: Can't allocate %dk video memory\n",
			(unsigned int) size / 1024);
T
Thomas Winischhofer 已提交
3266
		return NULL;
L
Linus Torvalds 已提交
3267 3268
	}

T
Thomas Winischhofer 已提交
3269
	pohThis = memheap->oh_free.poh_next;
L
Linus Torvalds 已提交
3270

T
Thomas Winischhofer 已提交
3271 3272
	while(pohThis != &memheap->oh_free) {
		if(size <= pohThis->size) {
L
Linus Torvalds 已提交
3273 3274 3275 3276 3277 3278 3279 3280 3281
			bAllocated = 1;
			break;
		}
		pohThis = pohThis->poh_next;
	}

	if(!bAllocated) {
		DPRINTK("sisfb: Can't allocate %dk video memory\n",
			(unsigned int) size / 1024);
T
Thomas Winischhofer 已提交
3282
		return NULL;
L
Linus Torvalds 已提交
3283 3284 3285 3286 3287 3288
	}

	if(size == pohThis->size) {
		pohRoot = pohThis;
		sisfb_delete_node(pohThis);
	} else {
T
Thomas Winischhofer 已提交
3289 3290 3291
		pohRoot = sisfb_poh_new_node(memheap);
		if(pohRoot == NULL)
			return NULL;
L
Linus Torvalds 已提交
3292 3293 3294 3295 3296 3297 3298 3299

		pohRoot->offset = pohThis->offset;
		pohRoot->size = size;

		pohThis->offset += size;
		pohThis->size -= size;
	}

T
Thomas Winischhofer 已提交
3300
	memheap->max_freesize -= size;
L
Linus Torvalds 已提交
3301

T
Thomas Winischhofer 已提交
3302
	pohThis = &memheap->oh_used;
L
Linus Torvalds 已提交
3303 3304
	sisfb_insert_node(pohThis, pohRoot);

T
Thomas Winischhofer 已提交
3305
	return pohRoot;
L
Linus Torvalds 已提交
3306 3307 3308
}

static void
T
Thomas Winischhofer 已提交
3309
sisfb_delete_node(struct SIS_OH *poh)
L
Linus Torvalds 已提交
3310
{
T
Thomas Winischhofer 已提交
3311 3312
	poh->poh_prev->poh_next = poh->poh_next;
	poh->poh_next->poh_prev = poh->poh_prev;
L
Linus Torvalds 已提交
3313 3314 3315
}

static void
T
Thomas Winischhofer 已提交
3316
sisfb_insert_node(struct SIS_OH *pohList, struct SIS_OH *poh)
L
Linus Torvalds 已提交
3317
{
T
Thomas Winischhofer 已提交
3318
	struct SIS_OH *pohTemp = pohList->poh_next;
L
Linus Torvalds 已提交
3319 3320 3321 3322 3323 3324 3325 3326

	pohList->poh_next = poh;
	pohTemp->poh_prev = poh;

	poh->poh_prev = pohList;
	poh->poh_next = pohTemp;
}

T
Thomas Winischhofer 已提交
3327 3328
static struct SIS_OH *
sisfb_poh_free(struct SIS_HEAP *memheap, u32 base)
L
Linus Torvalds 已提交
3329
{
T
Thomas Winischhofer 已提交
3330 3331 3332 3333 3334 3335 3336
	struct SIS_OH *pohThis;
	struct SIS_OH *poh_freed;
	struct SIS_OH *poh_prev;
	struct SIS_OH *poh_next;
	u32    ulUpper;
	u32    ulLower;
	int    foundNode = 0;
L
Linus Torvalds 已提交
3337

T
Thomas Winischhofer 已提交
3338
	poh_freed = memheap->oh_used.poh_next;
L
Linus Torvalds 已提交
3339

T
Thomas Winischhofer 已提交
3340
	while(poh_freed != &memheap->oh_used) {
L
Linus Torvalds 已提交
3341 3342 3343 3344 3345 3346 3347 3348
		if(poh_freed->offset == base) {
			foundNode = 1;
			break;
		}

		poh_freed = poh_freed->poh_next;
	}

T
Thomas Winischhofer 已提交
3349 3350
	if(!foundNode)
		return NULL;
L
Linus Torvalds 已提交
3351

T
Thomas Winischhofer 已提交
3352
	memheap->max_freesize += poh_freed->size;
L
Linus Torvalds 已提交
3353 3354 3355 3356 3357

	poh_prev = poh_next = NULL;
	ulUpper = poh_freed->offset + poh_freed->size;
	ulLower = poh_freed->offset;

T
Thomas Winischhofer 已提交
3358
	pohThis = memheap->oh_free.poh_next;
L
Linus Torvalds 已提交
3359

T
Thomas Winischhofer 已提交
3360
	while(pohThis != &memheap->oh_free) {
L
Linus Torvalds 已提交
3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373
		if(pohThis->offset == ulUpper) {
			poh_next = pohThis;
		} else if((pohThis->offset + pohThis->size) == ulLower) {
			poh_prev = pohThis;
		}
		pohThis = pohThis->poh_next;
	}

	sisfb_delete_node(poh_freed);

	if(poh_prev && poh_next) {
		poh_prev->size += (poh_freed->size + poh_next->size);
		sisfb_delete_node(poh_next);
T
Thomas Winischhofer 已提交
3374 3375 3376
		sisfb_free_node(memheap, poh_freed);
		sisfb_free_node(memheap, poh_next);
		return poh_prev;
L
Linus Torvalds 已提交
3377 3378 3379 3380
	}

	if(poh_prev) {
		poh_prev->size += poh_freed->size;
T
Thomas Winischhofer 已提交
3381 3382
		sisfb_free_node(memheap, poh_freed);
		return poh_prev;
L
Linus Torvalds 已提交
3383 3384 3385 3386 3387
	}

	if(poh_next) {
		poh_next->size += poh_freed->size;
		poh_next->offset = poh_freed->offset;
T
Thomas Winischhofer 已提交
3388 3389
		sisfb_free_node(memheap, poh_freed);
		return poh_next;
L
Linus Torvalds 已提交
3390 3391
	}

T
Thomas Winischhofer 已提交
3392
	sisfb_insert_node(&memheap->oh_free, poh_freed);
L
Linus Torvalds 已提交
3393

T
Thomas Winischhofer 已提交
3394
	return poh_freed;
L
Linus Torvalds 已提交
3395 3396 3397
}

static void
T
Thomas Winischhofer 已提交
3398
sisfb_free_node(struct SIS_HEAP *memheap, struct SIS_OH *poh)
L
Linus Torvalds 已提交
3399
{
T
Thomas Winischhofer 已提交
3400 3401
	if(poh == NULL)
		return;
L
Linus Torvalds 已提交
3402

T
Thomas Winischhofer 已提交
3403 3404
	poh->poh_next = memheap->poh_freelist;
	memheap->poh_freelist = poh;
L
Linus Torvalds 已提交
3405 3406
}

T
Thomas Winischhofer 已提交
3407 3408
static void
sis_int_malloc(struct sis_video_info *ivideo, struct sis_memreq *req)
L
Linus Torvalds 已提交
3409
{
T
Thomas Winischhofer 已提交
3410
	struct SIS_OH *poh = NULL;
L
Linus Torvalds 已提交
3411

T
Thomas Winischhofer 已提交
3412 3413
	if((ivideo) && (ivideo->sisfb_id == SISFB_ID) && (!ivideo->havenoheap))
		poh = sisfb_poh_allocate(&ivideo->sisfb_heap, (u32)req->size);
L
Linus Torvalds 已提交
3414 3415

	if(poh == NULL) {
T
Thomas Winischhofer 已提交
3416 3417
		req->offset = req->size = 0;
		DPRINTK("sisfb: Video RAM allocation failed\n");
L
Linus Torvalds 已提交
3418
	} else {
T
Thomas Winischhofer 已提交
3419 3420 3421 3422
		req->offset = poh->offset;
		req->size = poh->size;
		DPRINTK("sisfb: Video RAM allocation succeeded: 0x%lx\n",
			(poh->offset + ivideo->video_vbase));
L
Linus Torvalds 已提交
3423 3424 3425
	}
}

T
Thomas Winischhofer 已提交
3426 3427 3428 3429 3430 3431 3432 3433 3434 3435
void
sis_malloc(struct sis_memreq *req)
{
	struct sis_video_info *ivideo = sisfb_heap->vinfo;

	if(&ivideo->sisfb_heap == sisfb_heap)
		sis_int_malloc(ivideo, req);
	else
		req->offset = req->size = 0;
}
L
Linus Torvalds 已提交
3436 3437

void
T
Thomas Winischhofer 已提交
3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448
sis_malloc_new(struct pci_dev *pdev, struct sis_memreq *req)
{
	struct sis_video_info *ivideo = pci_get_drvdata(pdev);

	sis_int_malloc(ivideo, req);
}

/* sis_free: u32 because "base" is offset inside video ram, can never be >4GB */

static void
sis_int_free(struct sis_video_info *ivideo, u32 base)
L
Linus Torvalds 已提交
3449
{
T
Thomas Winischhofer 已提交
3450
	struct SIS_OH *poh;
L
Linus Torvalds 已提交
3451

T
Thomas Winischhofer 已提交
3452 3453
	if((!ivideo) || (ivideo->sisfb_id != SISFB_ID) || (ivideo->havenoheap))
		return;
L
Linus Torvalds 已提交
3454

T
Thomas Winischhofer 已提交
3455
	poh = sisfb_poh_free(&ivideo->sisfb_heap, base);
L
Linus Torvalds 已提交
3456 3457 3458 3459 3460 3461 3462

	if(poh == NULL) {
		DPRINTK("sisfb: sisfb_poh_free() failed at base 0x%x\n",
			(unsigned int) base);
	}
}

T
Thomas Winischhofer 已提交
3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478
void
sis_free(u32 base)
{
	struct sis_video_info *ivideo = sisfb_heap->vinfo;

	sis_int_free(ivideo, base);
}

void
sis_free_new(struct pci_dev *pdev, u32 base)
{
	struct sis_video_info *ivideo = pci_get_drvdata(pdev);

	sis_int_free(ivideo, base);
}

L
Linus Torvalds 已提交
3479 3480
/* --------------------- SetMode routines ------------------------- */

T
Thomas Winischhofer 已提交
3481 3482 3483 3484 3485 3486 3487 3488 3489 3490
static void
sisfb_check_engine_and_sync(struct sis_video_info *ivideo)
{
	u8 cr30, cr31;

	/* Check if MMIO and engines are enabled,
	 * and sync in case they are. Can't use
	 * ivideo->accel here, as this might have
	 * been changed before this is called.
	 */
3491 3492
	cr30 = SiS_GetReg(SISSR, IND_SIS_PCI_ADDRESS_SET);
	cr31 = SiS_GetReg(SISSR, IND_SIS_MODULE_ENABLE);
T
Thomas Winischhofer 已提交
3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509
	/* MMIO and 2D/3D engine enabled? */
	if((cr30 & SIS_MEM_MAP_IO_ENABLE) && (cr31 & 0x42)) {
#ifdef CONFIG_FB_SIS_300
		if(ivideo->sisvga_engine == SIS_300_VGA) {
			/* Don't care about TurboQueue. It's
			 * enough to know that the engines
			 * are enabled
			 */
			sisfb_syncaccel(ivideo);
		}
#endif
#ifdef CONFIG_FB_SIS_315
		if(ivideo->sisvga_engine == SIS_315_VGA) {
			/* Check that any queue mode is
			 * enabled, and that the queue
			 * is not in the state of "reset"
			 */
3510
			cr30 = SiS_GetReg(SISSR, 0x26);
T
Thomas Winischhofer 已提交
3511 3512 3513 3514 3515 3516 3517 3518
			if((cr30 & 0xe0) && (!(cr30 & 0x01))) {
				sisfb_syncaccel(ivideo);
			}
		}
#endif
	}
}

L
Linus Torvalds 已提交
3519 3520 3521 3522 3523 3524 3525 3526
static void
sisfb_pre_setmode(struct sis_video_info *ivideo)
{
	u8 cr30 = 0, cr31 = 0, cr33 = 0, cr35 = 0, cr38 = 0;
	int tvregnum = 0;

	ivideo->currentvbflags &= (VB_VIDEOBRIDGE | VB_DISPTYPE_DISP2);

T
Thomas Winischhofer 已提交
3527 3528
	outSISIDXREG(SISSR, 0x05, 0x86);

3529
	cr31 = SiS_GetReg(SISCR, 0x31);
L
Linus Torvalds 已提交
3530 3531 3532 3533 3534 3535 3536 3537
	cr31 &= ~0x60;
	cr31 |= 0x04;

	cr33 = ivideo->rate_idx & 0x0F;

#ifdef CONFIG_FB_SIS_315
	if(ivideo->sisvga_engine == SIS_315_VGA) {
	   if(ivideo->chip >= SIS_661) {
3538
	      cr38 = SiS_GetReg(SISCR, 0x38);
L
Linus Torvalds 已提交
3539 3540 3541
	      cr38 &= ~0x07;  /* Clear LCDA/DualEdge and YPbPr bits */
	   } else {
	      tvregnum = 0x38;
3542
	      cr38 = SiS_GetReg(SISCR, tvregnum);
L
Linus Torvalds 已提交
3543 3544 3545 3546 3547 3548 3549
	      cr38 &= ~0x3b;  /* Clear LCDA/DualEdge and YPbPr bits */
	   }
	}
#endif
#ifdef CONFIG_FB_SIS_300
	if(ivideo->sisvga_engine == SIS_300_VGA) {
	   tvregnum = 0x35;
3550
	   cr38 = SiS_GetReg(SISCR, tvregnum);
L
Linus Torvalds 已提交
3551 3552 3553
	}
#endif

3554 3555
	SiS_SetEnableDstn(&ivideo->SiS_Pr, false);
	SiS_SetEnableFstn(&ivideo->SiS_Pr, false);
T
Thomas Winischhofer 已提交
3556
	ivideo->curFSTN = ivideo->curDSTN = 0;
L
Linus Torvalds 已提交
3557 3558 3559 3560 3561

	switch(ivideo->currentvbflags & VB_DISPTYPE_DISP2) {

	   case CRT2_TV:
	      cr38 &= ~0xc0;   /* Clear PAL-M / PAL-N bits */
T
Thomas Winischhofer 已提交
3562
	      if((ivideo->vbflags & TV_YPBPR) && (ivideo->vbflags2 & VB2_SISYPBPRBRIDGE)) {
L
Linus Torvalds 已提交
3563
#ifdef CONFIG_FB_SIS_315
T
Thomas Winischhofer 已提交
3564 3565 3566
		 if(ivideo->chip >= SIS_661) {
		    cr38 |= 0x04;
		    if(ivideo->vbflags & TV_YPBPR525P)       cr35 |= 0x20;
L
Linus Torvalds 已提交
3567 3568 3569 3570 3571
		    else if(ivideo->vbflags & TV_YPBPR750P)  cr35 |= 0x40;
		    else if(ivideo->vbflags & TV_YPBPR1080I) cr35 |= 0x60;
		    cr30 |= SIS_SIMULTANEOUS_VIEW_ENABLE;
		    cr35 &= ~0x01;
		    ivideo->currentvbflags |= (TV_YPBPR | (ivideo->vbflags & TV_YPBPRALL));
T
Thomas Winischhofer 已提交
3572 3573
		 } else if(ivideo->sisvga_engine == SIS_315_VGA) {
		    cr30 |= (0x80 | SIS_SIMULTANEOUS_VIEW_ENABLE);
L
Linus Torvalds 已提交
3574
		    cr38 |= 0x08;
T
Thomas Winischhofer 已提交
3575
		    if(ivideo->vbflags & TV_YPBPR525P)       cr38 |= 0x10;
L
Linus Torvalds 已提交
3576 3577 3578 3579
		    else if(ivideo->vbflags & TV_YPBPR750P)  cr38 |= 0x20;
		    else if(ivideo->vbflags & TV_YPBPR1080I) cr38 |= 0x30;
		    cr31 &= ~0x01;
		    ivideo->currentvbflags |= (TV_YPBPR | (ivideo->vbflags & TV_YPBPRALL));
T
Thomas Winischhofer 已提交
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589
		 }
#endif
	      } else if((ivideo->vbflags & TV_HIVISION) &&
				(ivideo->vbflags2 & VB2_SISHIVISIONBRIDGE)) {
		 if(ivideo->chip >= SIS_661) {
		    cr38 |= 0x04;
		    cr35 |= 0x60;
		 } else {
		    cr30 |= 0x80;
		 }
L
Linus Torvalds 已提交
3590
		 cr30 |= SIS_SIMULTANEOUS_VIEW_ENABLE;
T
Thomas Winischhofer 已提交
3591 3592
		 cr31 |= 0x01;
		 cr35 |= 0x01;
L
Linus Torvalds 已提交
3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610
		 ivideo->currentvbflags |= TV_HIVISION;
	      } else if(ivideo->vbflags & TV_SCART) {
		 cr30 = (SIS_VB_OUTPUT_SCART | SIS_SIMULTANEOUS_VIEW_ENABLE);
		 cr31 |= 0x01;
		 cr35 |= 0x01;
		 ivideo->currentvbflags |= TV_SCART;
	      } else {
		 if(ivideo->vbflags & TV_SVIDEO) {
		    cr30 = (SIS_VB_OUTPUT_SVIDEO | SIS_SIMULTANEOUS_VIEW_ENABLE);
		    ivideo->currentvbflags |= TV_SVIDEO;
		 }
		 if(ivideo->vbflags & TV_AVIDEO) {
		    cr30 = (SIS_VB_OUTPUT_COMPOSITE | SIS_SIMULTANEOUS_VIEW_ENABLE);
		    ivideo->currentvbflags |= TV_AVIDEO;
		 }
	      }
	      cr31 |= SIS_DRIVER_MODE;

T
Thomas Winischhofer 已提交
3611 3612
	      if(ivideo->vbflags & (TV_AVIDEO | TV_SVIDEO)) {
		 if(ivideo->vbflags & TV_PAL) {
L
Linus Torvalds 已提交
3613 3614 3615 3616 3617 3618 3619 3620
		    cr31 |= 0x01; cr35 |= 0x01;
		    ivideo->currentvbflags |= TV_PAL;
		    if(ivideo->vbflags & TV_PALM) {
		       cr38 |= 0x40; cr35 |= 0x04;
		       ivideo->currentvbflags |= TV_PALM;
		    } else if(ivideo->vbflags & TV_PALN) {
		       cr38 |= 0x80; cr35 |= 0x08;
		       ivideo->currentvbflags |= TV_PALN;
T
Thomas Winischhofer 已提交
3621 3622
		    }
		 } else {
L
Linus Torvalds 已提交
3623 3624 3625 3626 3627
		    cr31 &= ~0x01; cr35 &= ~0x01;
		    ivideo->currentvbflags |= TV_NTSC;
		    if(ivideo->vbflags & TV_NTSCJ) {
		       cr38 |= 0x40; cr35 |= 0x02;
		       ivideo->currentvbflags |= TV_NTSCJ;
T
Thomas Winischhofer 已提交
3628
		    }
L
Linus Torvalds 已提交
3629 3630 3631 3632 3633 3634 3635 3636 3637
		 }
	      }
	      break;

	   case CRT2_LCD:
	      cr30  = (SIS_VB_OUTPUT_LCD | SIS_SIMULTANEOUS_VIEW_ENABLE);
	      cr31 |= SIS_DRIVER_MODE;
	      SiS_SetEnableDstn(&ivideo->SiS_Pr, ivideo->sisfb_dstn);
	      SiS_SetEnableFstn(&ivideo->SiS_Pr, ivideo->sisfb_fstn);
T
Thomas Winischhofer 已提交
3638 3639
	      ivideo->curFSTN = ivideo->sisfb_fstn;
	      ivideo->curDSTN = ivideo->sisfb_dstn;
L
Linus Torvalds 已提交
3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672
	      break;

	   case CRT2_VGA:
	      cr30 = (SIS_VB_OUTPUT_CRT2 | SIS_SIMULTANEOUS_VIEW_ENABLE);
	      cr31 |= SIS_DRIVER_MODE;
	      if(ivideo->sisfb_nocrt2rate) {
		 cr33 |= (sisbios_mode[ivideo->sisfb_mode_idx].rate_idx << 4);
	      } else {
		 cr33 |= ((ivideo->rate_idx & 0x0F) << 4);
	      }
	      break;

	   default:	/* disable CRT2 */
	      cr30 = 0x00;
	      cr31 |= (SIS_DRIVER_MODE | SIS_VB_OUTPUT_DISABLE);
	}

	outSISIDXREG(SISCR, 0x30, cr30);
	outSISIDXREG(SISCR, 0x33, cr33);

	if(ivideo->chip >= SIS_661) {
#ifdef CONFIG_FB_SIS_315
	   cr31 &= ~0x01;                          /* Clear PAL flag (now in CR35) */
	   setSISIDXREG(SISCR, 0x35, ~0x10, cr35); /* Leave overscan bit alone */
	   cr38 &= 0x07;                           /* Use only LCDA and HiVision/YPbPr bits */
	   setSISIDXREG(SISCR, 0x38, 0xf8, cr38);
#endif
	} else if(ivideo->chip != SIS_300) {
	   outSISIDXREG(SISCR, tvregnum, cr38);
	}
	outSISIDXREG(SISCR, 0x31, cr31);

	ivideo->SiS_Pr.SiS_UseOEM = ivideo->sisfb_useoem;
T
Thomas Winischhofer 已提交
3673 3674

	sisfb_check_engine_and_sync(ivideo);
L
Linus Torvalds 已提交
3675 3676 3677 3678 3679 3680 3681
}

/* Fix SR11 for 661 and later */
#ifdef CONFIG_FB_SIS_315
static void
sisfb_fixup_SR11(struct sis_video_info *ivideo)
{
T
Thomas Winischhofer 已提交
3682 3683 3684
	u8  tmpreg;

	if(ivideo->chip >= SIS_661) {
3685
		tmpreg = SiS_GetReg(SISSR, 0x11);
T
Thomas Winischhofer 已提交
3686
		if(tmpreg & 0x20) {
3687
			tmpreg = SiS_GetReg(SISSR, 0x3e);
T
Thomas Winischhofer 已提交
3688 3689
			tmpreg = (tmpreg + 1) & 0xff;
			outSISIDXREG(SISSR,0x3e,tmpreg);
3690
			tmpreg = SiS_GetReg(SISSR, 0x11);
T
Thomas Winischhofer 已提交
3691 3692 3693 3694 3695
		}
		if(tmpreg & 0xf0) {
			andSISIDXREG(SISSR,0x11,0x0f);
		}
	}
L
Linus Torvalds 已提交
3696 3697 3698
}
#endif

T
Thomas Winischhofer 已提交
3699 3700
static void
sisfb_set_TVxposoffset(struct sis_video_info *ivideo, int val)
L
Linus Torvalds 已提交
3701
{
T
Thomas Winischhofer 已提交
3702 3703 3704
	if(val > 32) val = 32;
	if(val < -32) val = -32;
	ivideo->tvxpos = val;
L
Linus Torvalds 已提交
3705

T
Thomas Winischhofer 已提交
3706 3707
	if(ivideo->sisfblocked) return;
	if(!ivideo->modechanged) return;
L
Linus Torvalds 已提交
3708

T
Thomas Winischhofer 已提交
3709
	if(ivideo->currentvbflags & CRT2_TV) {
L
Linus Torvalds 已提交
3710

T
Thomas Winischhofer 已提交
3711
		if(ivideo->vbflags2 & VB2_CHRONTEL) {
L
Linus Torvalds 已提交
3712

T
Thomas Winischhofer 已提交
3713
			int x = ivideo->tvx;
L
Linus Torvalds 已提交
3714

T
Thomas Winischhofer 已提交
3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754
			switch(ivideo->chronteltype) {
			case 1:
				x += val;
				if(x < 0) x = 0;
				outSISIDXREG(SISSR,0x05,0x86);
				SiS_SetCH700x(&ivideo->SiS_Pr, 0x0a, (x & 0xff));
				SiS_SetCH70xxANDOR(&ivideo->SiS_Pr, 0x08, ((x & 0x0100) >> 7), 0xFD);
				break;
			case 2:
				/* Not supported by hardware */
				break;
			}

		} else if(ivideo->vbflags2 & VB2_SISBRIDGE) {

			u8 p2_1f,p2_20,p2_2b,p2_42,p2_43;
			unsigned short temp;

			p2_1f = ivideo->p2_1f;
			p2_20 = ivideo->p2_20;
			p2_2b = ivideo->p2_2b;
			p2_42 = ivideo->p2_42;
			p2_43 = ivideo->p2_43;

			temp = p2_1f | ((p2_20 & 0xf0) << 4);
			temp += (val * 2);
			p2_1f = temp & 0xff;
			p2_20 = (temp & 0xf00) >> 4;
			p2_2b = ((p2_2b & 0x0f) + (val * 2)) & 0x0f;
			temp = p2_43 | ((p2_42 & 0xf0) << 4);
			temp += (val * 2);
			p2_43 = temp & 0xff;
			p2_42 = (temp & 0xf00) >> 4;
			outSISIDXREG(SISPART2,0x1f,p2_1f);
			setSISIDXREG(SISPART2,0x20,0x0F,p2_20);
			setSISIDXREG(SISPART2,0x2b,0xF0,p2_2b);
			setSISIDXREG(SISPART2,0x42,0x0F,p2_42);
			outSISIDXREG(SISPART2,0x43,p2_43);
		}
	}
L
Linus Torvalds 已提交
3755 3756
}

T
Thomas Winischhofer 已提交
3757 3758
static void
sisfb_set_TVyposoffset(struct sis_video_info *ivideo, int val)
L
Linus Torvalds 已提交
3759
{
T
Thomas Winischhofer 已提交
3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804
	if(val > 32) val = 32;
	if(val < -32) val = -32;
	ivideo->tvypos = val;

	if(ivideo->sisfblocked) return;
	if(!ivideo->modechanged) return;

	if(ivideo->currentvbflags & CRT2_TV) {

		if(ivideo->vbflags2 & VB2_CHRONTEL) {

			int y = ivideo->tvy;

			switch(ivideo->chronteltype) {
			case 1:
				y -= val;
				if(y < 0) y = 0;
				outSISIDXREG(SISSR,0x05,0x86);
				SiS_SetCH700x(&ivideo->SiS_Pr, 0x0b, (y & 0xff));
				SiS_SetCH70xxANDOR(&ivideo->SiS_Pr, 0x08, ((y & 0x0100) >> 8), 0xFE);
				break;
			case 2:
				/* Not supported by hardware */
				break;
			}

		} else if(ivideo->vbflags2 & VB2_SISBRIDGE) {

			char p2_01, p2_02;
			val /= 2;
			p2_01 = ivideo->p2_01;
			p2_02 = ivideo->p2_02;

			p2_01 += val;
			p2_02 += val;
			if(!(ivideo->currentvbflags & (TV_HIVISION | TV_YPBPR))) {
				while((p2_01 <= 0) || (p2_02 <= 0)) {
					p2_01 += 2;
					p2_02 += 2;
				}
			}
			outSISIDXREG(SISPART2,0x01,p2_01);
			outSISIDXREG(SISPART2,0x02,p2_02);
		}
	}
L
Linus Torvalds 已提交
3805 3806 3807 3808 3809
}

static void
sisfb_post_setmode(struct sis_video_info *ivideo)
{
3810 3811
	bool crt1isoff = false;
	bool doit = true;
L
Linus Torvalds 已提交
3812 3813 3814 3815 3816 3817 3818
#if defined(CONFIG_FB_SIS_300) || defined(CONFIG_FB_SIS_315)
	u8 reg;
#endif
#ifdef CONFIG_FB_SIS_315
	u8 reg1;
#endif

T
Thomas Winischhofer 已提交
3819
	outSISIDXREG(SISSR, 0x05, 0x86);
L
Linus Torvalds 已提交
3820 3821 3822 3823 3824 3825

#ifdef CONFIG_FB_SIS_315
	sisfb_fixup_SR11(ivideo);
#endif

	/* Now we actually HAVE changed the display mode */
T
Thomas Winischhofer 已提交
3826
	ivideo->modechanged = 1;
L
Linus Torvalds 已提交
3827 3828

	/* We can't switch off CRT1 if bridge is in slave mode */
T
Thomas Winischhofer 已提交
3829
	if(ivideo->vbflags2 & VB2_VIDEOBRIDGE) {
3830
		if(sisfb_bridgeisslave(ivideo)) doit = false;
T
Thomas Winischhofer 已提交
3831 3832
	} else
		ivideo->sisfb_crt1off = 0;
L
Linus Torvalds 已提交
3833 3834 3835

#ifdef CONFIG_FB_SIS_300
	if(ivideo->sisvga_engine == SIS_300_VGA) {
T
Thomas Winischhofer 已提交
3836
		if((ivideo->sisfb_crt1off) && (doit)) {
3837
			crt1isoff = true;
T
Thomas Winischhofer 已提交
3838 3839
			reg = 0x00;
		} else {
3840
			crt1isoff = false;
T
Thomas Winischhofer 已提交
3841 3842 3843
			reg = 0x80;
		}
		setSISIDXREG(SISCR, 0x17, 0x7f, reg);
L
Linus Torvalds 已提交
3844 3845 3846 3847
	}
#endif
#ifdef CONFIG_FB_SIS_315
	if(ivideo->sisvga_engine == SIS_315_VGA) {
T
Thomas Winischhofer 已提交
3848
		if((ivideo->sisfb_crt1off) && (doit)) {
3849
			crt1isoff = true;
T
Thomas Winischhofer 已提交
3850 3851 3852
			reg  = 0x40;
			reg1 = 0xc0;
		} else {
3853
			crt1isoff = false;
T
Thomas Winischhofer 已提交
3854 3855 3856 3857 3858
			reg  = 0x00;
			reg1 = 0x00;
		}
		setSISIDXREG(SISCR, ivideo->SiS_Pr.SiS_MyCR63, ~0x40, reg);
		setSISIDXREG(SISSR, 0x1f, ~0xc0, reg1);
L
Linus Torvalds 已提交
3859 3860 3861 3862
	}
#endif

	if(crt1isoff) {
T
Thomas Winischhofer 已提交
3863 3864
		ivideo->currentvbflags &= ~VB_DISPTYPE_CRT1;
		ivideo->currentvbflags |= VB_SINGLE_MODE;
L
Linus Torvalds 已提交
3865
	} else {
T
Thomas Winischhofer 已提交
3866 3867 3868 3869 3870 3871
		ivideo->currentvbflags |= VB_DISPTYPE_CRT1;
		if(ivideo->currentvbflags & VB_DISPTYPE_CRT2) {
			ivideo->currentvbflags |= VB_MIRROR_MODE;
		} else {
			ivideo->currentvbflags |= VB_SINGLE_MODE;
		}
L
Linus Torvalds 已提交
3872 3873
	}

T
Thomas Winischhofer 已提交
3874
	andSISIDXREG(SISSR, IND_SIS_RAMDAC_CONTROL, ~0x04);
L
Linus Torvalds 已提交
3875 3876

	if(ivideo->currentvbflags & CRT2_TV) {
T
Thomas Winischhofer 已提交
3877
		if(ivideo->vbflags2 & VB2_SISBRIDGE) {
3878 3879 3880 3881 3882 3883 3884
			ivideo->p2_1f = SiS_GetReg(SISPART2, 0x1f);
			ivideo->p2_20 = SiS_GetReg(SISPART2, 0x20);
			ivideo->p2_2b = SiS_GetReg(SISPART2, 0x2b);
			ivideo->p2_42 = SiS_GetReg(SISPART2, 0x42);
			ivideo->p2_43 = SiS_GetReg(SISPART2, 0x43);
			ivideo->p2_01 = SiS_GetReg(SISPART2, 0x01);
			ivideo->p2_02 = SiS_GetReg(SISPART2, 0x02);
T
Thomas Winischhofer 已提交
3885 3886 3887 3888 3889 3890 3891 3892
		} else if(ivideo->vbflags2 & VB2_CHRONTEL) {
			if(ivideo->chronteltype == 1) {
				ivideo->tvx = SiS_GetCH700x(&ivideo->SiS_Pr, 0x0a);
				ivideo->tvx |= (((SiS_GetCH700x(&ivideo->SiS_Pr, 0x08) & 0x02) >> 1) << 8);
				ivideo->tvy = SiS_GetCH700x(&ivideo->SiS_Pr, 0x0b);
				ivideo->tvy |= ((SiS_GetCH700x(&ivideo->SiS_Pr, 0x08) & 0x01) << 8);
			}
		}
L
Linus Torvalds 已提交
3893 3894 3895
	}

	if(ivideo->tvxpos) {
T
Thomas Winischhofer 已提交
3896
		sisfb_set_TVxposoffset(ivideo, ivideo->tvxpos);
L
Linus Torvalds 已提交
3897 3898
	}
	if(ivideo->tvypos) {
T
Thomas Winischhofer 已提交
3899
		sisfb_set_TVyposoffset(ivideo, ivideo->tvypos);
L
Linus Torvalds 已提交
3900 3901
	}

T
Thomas Winischhofer 已提交
3902 3903
	/* Eventually sync engines */
	sisfb_check_engine_and_sync(ivideo);
L
Linus Torvalds 已提交
3904

T
Thomas Winischhofer 已提交
3905 3906 3907 3908 3909 3910 3911
	/* (Re-)Initialize chip engines */
	if(ivideo->accel) {
		sisfb_engine_init(ivideo);
	} else {
		ivideo->engineok = 0;
	}
}
L
Linus Torvalds 已提交
3912

T
Thomas Winischhofer 已提交
3913 3914 3915 3916 3917
static int
sisfb_reset_mode(struct sis_video_info *ivideo)
{
	if(sisfb_set_mode(ivideo, 0))
		return 1;
L
Linus Torvalds 已提交
3918

T
Thomas Winischhofer 已提交
3919 3920 3921
	sisfb_set_pitch(ivideo);
	sisfb_set_base_CRT1(ivideo, ivideo->current_base);
	sisfb_set_base_CRT2(ivideo, ivideo->current_base);
L
Linus Torvalds 已提交
3922

T
Thomas Winischhofer 已提交
3923 3924 3925 3926 3927 3928 3929
	return 0;
}

static void
sisfb_handle_command(struct sis_video_info *ivideo, struct sisfb_cmd *sisfb_command)
{
	int mycrt1off;
L
Linus Torvalds 已提交
3930

T
Thomas Winischhofer 已提交
3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961
	switch(sisfb_command->sisfb_cmd) {
	case SISFB_CMD_GETVBFLAGS:
		if(!ivideo->modechanged) {
			sisfb_command->sisfb_result[0] = SISFB_CMD_ERR_EARLY;
		} else {
			sisfb_command->sisfb_result[0] = SISFB_CMD_ERR_OK;
			sisfb_command->sisfb_result[1] = ivideo->currentvbflags;
			sisfb_command->sisfb_result[2] = ivideo->vbflags2;
		}
		break;
	case SISFB_CMD_SWITCHCRT1:
		/* arg[0]: 0 = off, 1 = on, 99 = query */
		if(!ivideo->modechanged) {
			sisfb_command->sisfb_result[0] = SISFB_CMD_ERR_EARLY;
		} else if(sisfb_command->sisfb_arg[0] == 99) {
			/* Query */
			sisfb_command->sisfb_result[1] = ivideo->sisfb_crt1off ? 0 : 1;
			sisfb_command->sisfb_result[0] = SISFB_CMD_ERR_OK;
		} else if(ivideo->sisfblocked) {
			sisfb_command->sisfb_result[0] = SISFB_CMD_ERR_LOCKED;
		} else if((!(ivideo->currentvbflags & CRT2_ENABLE)) &&
					(sisfb_command->sisfb_arg[0] == 0)) {
			sisfb_command->sisfb_result[0] = SISFB_CMD_ERR_NOCRT2;
		} else {
			sisfb_command->sisfb_result[0] = SISFB_CMD_ERR_OK;
			mycrt1off = sisfb_command->sisfb_arg[0] ? 0 : 1;
			if( ((ivideo->currentvbflags & VB_DISPTYPE_CRT1) && mycrt1off) ||
			    ((!(ivideo->currentvbflags & VB_DISPTYPE_CRT1)) && !mycrt1off) ) {
				ivideo->sisfb_crt1off = mycrt1off;
				if(sisfb_reset_mode(ivideo)) {
					sisfb_command->sisfb_result[0] = SISFB_CMD_ERR_OTHER;
L
Linus Torvalds 已提交
3962 3963
				}
			}
T
Thomas Winischhofer 已提交
3964
			sisfb_command->sisfb_result[1] = ivideo->sisfb_crt1off ? 0 : 1;
L
Linus Torvalds 已提交
3965
		}
T
Thomas Winischhofer 已提交
3966 3967 3968 3969 3970 3971
		break;
	/* more to come */
	default:
		sisfb_command->sisfb_result[0] = SISFB_CMD_ERR_UNKNOWN;
		printk(KERN_ERR "sisfb: Unknown command 0x%x\n",
			sisfb_command->sisfb_cmd);
L
Linus Torvalds 已提交
3972 3973 3974 3975
	}
}

#ifndef MODULE
A
Adrian Bunk 已提交
3976
static int __init sisfb_setup(char *options)
L
Linus Torvalds 已提交
3977 3978 3979
{
	char *this_opt;

T
Thomas Winischhofer 已提交
3980
	sisfb_setdefaultparms();
L
Linus Torvalds 已提交
3981

T
Thomas Winischhofer 已提交
3982
	if(!options || !(*options))
L
Linus Torvalds 已提交
3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995
		return 0;

	while((this_opt = strsep(&options, ",")) != NULL) {

		if(!(*this_opt)) continue;

		if(!strnicmp(this_opt, "off", 3)) {
			sisfb_off = 1;
		} else if(!strnicmp(this_opt, "forcecrt2type:", 14)) {
			/* Need to check crt2 type first for fstn/dstn */
			sisfb_search_crt2type(this_opt + 14);
		} else if(!strnicmp(this_opt, "tvmode:",7)) {
			sisfb_search_tvstd(this_opt + 7);
T
Thomas Winischhofer 已提交
3996 3997
		} else if(!strnicmp(this_opt, "tvstandard:",11)) {
			sisfb_search_tvstd(this_opt + 11);
L
Linus Torvalds 已提交
3998
		} else if(!strnicmp(this_opt, "mode:", 5)) {
3999
			sisfb_search_mode(this_opt + 5, false);
L
Linus Torvalds 已提交
4000
		} else if(!strnicmp(this_opt, "vesa:", 5)) {
4001
			sisfb_search_vesamode(simple_strtoul(this_opt + 5, NULL, 0), false);
L
Linus Torvalds 已提交
4002 4003 4004 4005
		} else if(!strnicmp(this_opt, "rate:", 5)) {
			sisfb_parm_rate = simple_strtoul(this_opt + 5, NULL, 0);
		} else if(!strnicmp(this_opt, "forcecrt1:", 10)) {
			sisfb_forcecrt1 = (int)simple_strtoul(this_opt + 10, NULL, 0);
T
Thomas Winischhofer 已提交
4006 4007
		} else if(!strnicmp(this_opt, "mem:",4)) {
			sisfb_parm_mem = simple_strtoul(this_opt + 4, NULL, 0);
L
Linus Torvalds 已提交
4008
		} else if(!strnicmp(this_opt, "pdc:", 4)) {
T
Thomas Winischhofer 已提交
4009
			sisfb_pdc = simple_strtoul(this_opt + 4, NULL, 0);
L
Linus Torvalds 已提交
4010
		} else if(!strnicmp(this_opt, "pdc1:", 5)) {
T
Thomas Winischhofer 已提交
4011
			sisfb_pdca = simple_strtoul(this_opt + 5, NULL, 0);
L
Linus Torvalds 已提交
4012 4013 4014 4015 4016
		} else if(!strnicmp(this_opt, "noaccel", 7)) {
			sisfb_accel = 0;
		} else if(!strnicmp(this_opt, "accel", 5)) {
			sisfb_accel = -1;
		} else if(!strnicmp(this_opt, "noypan", 6)) {
T
Thomas Winischhofer 已提交
4017
			sisfb_ypan = 0;
L
Linus Torvalds 已提交
4018
		} else if(!strnicmp(this_opt, "ypan", 4)) {
T
Thomas Winischhofer 已提交
4019
			sisfb_ypan = -1;
L
Linus Torvalds 已提交
4020
		} else if(!strnicmp(this_opt, "nomax", 5)) {
T
Thomas Winischhofer 已提交
4021
			sisfb_max = 0;
L
Linus Torvalds 已提交
4022
		} else if(!strnicmp(this_opt, "max", 3)) {
T
Thomas Winischhofer 已提交
4023
			sisfb_max = -1;
L
Linus Torvalds 已提交
4024 4025 4026 4027 4028 4029
		} else if(!strnicmp(this_opt, "userom:", 7)) {
			sisfb_userom = (int)simple_strtoul(this_opt + 7, NULL, 0);
		} else if(!strnicmp(this_opt, "useoem:", 7)) {
			sisfb_useoem = (int)simple_strtoul(this_opt + 7, NULL, 0);
		} else if(!strnicmp(this_opt, "nocrt2rate", 10)) {
			sisfb_nocrt2rate = 1;
T
Thomas Winischhofer 已提交
4030 4031 4032 4033
		} else if(!strnicmp(this_opt, "scalelcd:", 9)) {
			unsigned long temp = 2;
			temp = simple_strtoul(this_opt + 9, NULL, 0);
			if((temp == 0) || (temp == 1)) {
L
Linus Torvalds 已提交
4034
			   sisfb_scalelcd = temp ^ 1;
T
Thomas Winischhofer 已提交
4035
			}
L
Linus Torvalds 已提交
4036
		} else if(!strnicmp(this_opt, "tvxposoffset:", 13)) {
T
Thomas Winischhofer 已提交
4037 4038 4039
			int temp = 0;
			temp = (int)simple_strtol(this_opt + 13, NULL, 0);
			if((temp >= -32) && (temp <= 32)) {
L
Linus Torvalds 已提交
4040
			   sisfb_tvxposoffset = temp;
T
Thomas Winischhofer 已提交
4041
			}
L
Linus Torvalds 已提交
4042
		} else if(!strnicmp(this_opt, "tvyposoffset:", 13)) {
T
Thomas Winischhofer 已提交
4043 4044 4045
			int temp = 0;
			temp = (int)simple_strtol(this_opt + 13, NULL, 0);
			if((temp >= -32) && (temp <= 32)) {
L
Linus Torvalds 已提交
4046
			   sisfb_tvyposoffset = temp;
T
Thomas Winischhofer 已提交
4047
			}
L
Linus Torvalds 已提交
4048 4049 4050
		} else if(!strnicmp(this_opt, "specialtiming:", 14)) {
			sisfb_search_specialtiming(this_opt + 14);
		} else if(!strnicmp(this_opt, "lvdshl:", 7)) {
T
Thomas Winischhofer 已提交
4051 4052 4053
			int temp = 4;
			temp = simple_strtoul(this_opt + 7, NULL, 0);
			if((temp >= 0) && (temp <= 3)) {
L
Linus Torvalds 已提交
4054
			   sisfb_lvdshl = temp;
T
Thomas Winischhofer 已提交
4055
			}
L
Linus Torvalds 已提交
4056
		} else if(this_opt[0] >= '0' && this_opt[0] <= '9') {
4057
			sisfb_search_mode(this_opt, true);
L
Linus Torvalds 已提交
4058
#if !defined(__i386__) && !defined(__x86_64__)
T
Thomas Winischhofer 已提交
4059 4060
		} else if(!strnicmp(this_opt, "resetcard", 9)) {
			sisfb_resetcard = 1;
L
Linus Torvalds 已提交
4061
	        } else if(!strnicmp(this_opt, "videoram:", 9)) {
T
Thomas Winischhofer 已提交
4062
			sisfb_videoram = simple_strtoul(this_opt + 9, NULL, 0);
L
Linus Torvalds 已提交
4063 4064 4065 4066 4067 4068 4069
#endif
		} else {
			printk(KERN_INFO "sisfb: Invalid option %s\n", this_opt);
		}

	}

T
Thomas Winischhofer 已提交
4070 4071 4072 4073 4074
	return 0;
}
#endif

static int __devinit
A
Adrian Bunk 已提交
4075
sisfb_check_rom(void __iomem *rom_base, struct sis_video_info *ivideo)
T
Thomas Winischhofer 已提交
4076
{
A
Adrian Bunk 已提交
4077
	void __iomem *rom;
T
Thomas Winischhofer 已提交
4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105
	int romptr;

	if((readb(rom_base) != 0x55) || (readb(rom_base + 1) != 0xaa))
		return 0;

	romptr = (readb(rom_base + 0x18) | (readb(rom_base + 0x19) << 8));
	if(romptr > (0x10000 - 8))
		return 0;

	rom = rom_base + romptr;

	if((readb(rom)     != 'P') || (readb(rom + 1) != 'C') ||
	   (readb(rom + 2) != 'I') || (readb(rom + 3) != 'R'))
		return 0;

	if((readb(rom + 4) | (readb(rom + 5) << 8)) != ivideo->chip_vendor)
		return 0;

	if((readb(rom + 6) | (readb(rom + 7) << 8)) != ivideo->chip_id)
		return 0;

	return 1;
}

static unsigned char * __devinit
sisfb_find_rom(struct pci_dev *pdev)
{
	struct sis_video_info *ivideo = pci_get_drvdata(pdev);
A
Adrian Bunk 已提交
4106
	void __iomem *rom_base;
T
Thomas Winischhofer 已提交
4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133
	unsigned char *myrombase = NULL;
	size_t romsize;

	/* First, try the official pci ROM functions (except
	 * on integrated chipsets which have no ROM).
	 */

	if(!ivideo->nbridge) {

		if((rom_base = pci_map_rom(pdev, &romsize))) {

			if(sisfb_check_rom(rom_base, ivideo)) {

				if((myrombase = vmalloc(65536))) {
					memcpy_fromio(myrombase, rom_base,
							(romsize > 65536) ? 65536 : romsize);
				}
			}
			pci_unmap_rom(pdev, rom_base);
		}
	}

	if(myrombase) return myrombase;

	/* Otherwise do it the conventional way. */

#if defined(__i386__) || defined(__x86_64__)
4134 4135
	{
		u32 temp;
T
Thomas Winischhofer 已提交
4136

4137
		for (temp = 0x000c0000; temp < 0x000f0000; temp += 0x00001000) {
T
Thomas Winischhofer 已提交
4138

4139 4140 4141
			rom_base = ioremap(temp, 65536);
			if (!rom_base)
				continue;
T
Thomas Winischhofer 已提交
4142

4143 4144 4145 4146
			if (!sisfb_check_rom(rom_base, ivideo)) {
				iounmap(rom_base);
				continue;
			}
T
Thomas Winischhofer 已提交
4147

4148 4149
			if ((myrombase = vmalloc(65536)))
				memcpy_fromio(myrombase, rom_base, 65536);
T
Thomas Winischhofer 已提交
4150

4151 4152
			iounmap(rom_base);
			break;
T
Thomas Winischhofer 已提交
4153

4154
		}
T
Thomas Winischhofer 已提交
4155

4156
	}
T
Thomas Winischhofer 已提交
4157 4158 4159 4160 4161 4162 4163 4164 4165
#endif

	return myrombase;
}

static void __devinit
sisfb_post_map_vram(struct sis_video_info *ivideo, unsigned int *mapsize,
			unsigned int min)
{
4166 4167 4168
	if (*mapsize < (min << 20))
		return;

T
Thomas Winischhofer 已提交
4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191
	ivideo->video_vbase = ioremap(ivideo->video_base, (*mapsize));

	if(!ivideo->video_vbase) {
		printk(KERN_ERR
			"sisfb: Unable to map maximum video RAM for size detection\n");
		(*mapsize) >>= 1;
		while((!(ivideo->video_vbase = ioremap(ivideo->video_base, (*mapsize))))) {
			(*mapsize) >>= 1;
			if((*mapsize) < (min << 20))
				break;
		}
		if(ivideo->video_vbase) {
			printk(KERN_ERR
				"sisfb: Video RAM size detection limited to %dMB\n",
				(int)((*mapsize) >> 20));
		}
	}
}

#ifdef CONFIG_FB_SIS_300
static int __devinit
sisfb_post_300_buswidth(struct sis_video_info *ivideo)
{
A
Adrian Bunk 已提交
4192
	void __iomem *FBAddress = ivideo->video_vbase;
T
Thomas Winischhofer 已提交
4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208
	unsigned short temp;
	unsigned char reg;
	int i, j;

	andSISIDXREG(SISSR, 0x15, 0xFB);
	orSISIDXREG(SISSR, 0x15, 0x04);
	outSISIDXREG(SISSR, 0x13, 0x00);
	outSISIDXREG(SISSR, 0x14, 0xBF);

	for(i = 0; i < 2; i++) {
		temp = 0x1234;
		for(j = 0; j < 4; j++) {
			writew(temp, FBAddress);
			if(readw(FBAddress) == temp)
				break;
			orSISIDXREG(SISSR, 0x3c, 0x01);
4209 4210
			reg = SiS_GetReg(SISSR, 0x05);
			reg = SiS_GetReg(SISSR, 0x05);
T
Thomas Winischhofer 已提交
4211
			andSISIDXREG(SISSR, 0x3c, 0xfe);
4212 4213
			reg = SiS_GetReg(SISSR, 0x05);
			reg = SiS_GetReg(SISSR, 0x05);
T
Thomas Winischhofer 已提交
4214 4215 4216 4217 4218 4219 4220 4221 4222
			temp++;
		}
	}

	writel(0x01234567L, FBAddress);
	writel(0x456789ABL, (FBAddress + 4));
	writel(0x89ABCDEFL, (FBAddress + 8));
	writel(0xCDEF0123L, (FBAddress + 12));

4223
	reg = SiS_GetReg(SISSR, 0x3b);
T
Thomas Winischhofer 已提交
4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239
	if(reg & 0x01) {
		if(readl((FBAddress + 12)) == 0xCDEF0123L)
			return 4;	/* Channel A 128bit */
	}

	if(readl((FBAddress + 4)) == 0x456789ABL)
		return 2;		/* Channel B 64bit */

	return 1;			/* 32bit */
}

static int __devinit
sisfb_post_300_rwtest(struct sis_video_info *ivideo, int iteration, int buswidth,
			int PseudoRankCapacity, int PseudoAdrPinCount,
			unsigned int mapsize)
{
A
Adrian Bunk 已提交
4240
	void __iomem *FBAddr = ivideo->video_vbase;
T
Thomas Winischhofer 已提交
4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364
	unsigned short sr14;
	unsigned int k, RankCapacity, PageCapacity, BankNumHigh, BankNumMid;
	unsigned int PhysicalAdrOtherPage, PhysicalAdrHigh, PhysicalAdrHalfPage;
	static const unsigned short SiS_DRAMType[17][5] = {
		{0x0C,0x0A,0x02,0x40,0x39},
		{0x0D,0x0A,0x01,0x40,0x48},
		{0x0C,0x09,0x02,0x20,0x35},
		{0x0D,0x09,0x01,0x20,0x44},
		{0x0C,0x08,0x02,0x10,0x31},
		{0x0D,0x08,0x01,0x10,0x40},
		{0x0C,0x0A,0x01,0x20,0x34},
		{0x0C,0x09,0x01,0x08,0x32},
		{0x0B,0x08,0x02,0x08,0x21},
		{0x0C,0x08,0x01,0x08,0x30},
		{0x0A,0x08,0x02,0x04,0x11},
		{0x0B,0x0A,0x01,0x10,0x28},
		{0x09,0x08,0x02,0x02,0x01},
		{0x0B,0x09,0x01,0x08,0x24},
		{0x0B,0x08,0x01,0x04,0x20},
		{0x0A,0x08,0x01,0x02,0x10},
		{0x09,0x08,0x01,0x01,0x00}
	};

	 for(k = 0; k <= 16; k++) {

		RankCapacity = buswidth * SiS_DRAMType[k][3];

		if(RankCapacity != PseudoRankCapacity)
			continue;

		if((SiS_DRAMType[k][2] + SiS_DRAMType[k][0]) > PseudoAdrPinCount)
			continue;

		BankNumHigh = RankCapacity * 16 * iteration - 1;
		if(iteration == 3) {             /* Rank No */
			BankNumMid  = RankCapacity * 16 - 1;
		} else {
			BankNumMid  = RankCapacity * 16 * iteration / 2 - 1;
		}

		PageCapacity = (1 << SiS_DRAMType[k][1]) * buswidth * 4;
		PhysicalAdrHigh = BankNumHigh;
		PhysicalAdrHalfPage = (PageCapacity / 2 + PhysicalAdrHigh) % PageCapacity;
		PhysicalAdrOtherPage = PageCapacity * SiS_DRAMType[k][2] + PhysicalAdrHigh;

		andSISIDXREG(SISSR, 0x15, 0xFB); /* Test */
		orSISIDXREG(SISSR, 0x15, 0x04);  /* Test */
		sr14 = (SiS_DRAMType[k][3] * buswidth) - 1;
		if(buswidth == 4)      sr14 |= 0x80;
		else if(buswidth == 2) sr14 |= 0x40;
		outSISIDXREG(SISSR, 0x13, SiS_DRAMType[k][4]);
		outSISIDXREG(SISSR, 0x14, sr14);

		BankNumHigh <<= 16;
		BankNumMid <<= 16;

		if((BankNumHigh + PhysicalAdrHigh      >= mapsize) ||
		   (BankNumMid  + PhysicalAdrHigh      >= mapsize) ||
		   (BankNumHigh + PhysicalAdrHalfPage  >= mapsize) ||
		   (BankNumHigh + PhysicalAdrOtherPage >= mapsize))
			continue;

		/* Write data */
		writew(((unsigned short)PhysicalAdrHigh),
				(FBAddr + BankNumHigh + PhysicalAdrHigh));
		writew(((unsigned short)BankNumMid),
				(FBAddr + BankNumMid  + PhysicalAdrHigh));
		writew(((unsigned short)PhysicalAdrHalfPage),
				(FBAddr + BankNumHigh + PhysicalAdrHalfPage));
		writew(((unsigned short)PhysicalAdrOtherPage),
				(FBAddr + BankNumHigh + PhysicalAdrOtherPage));

		/* Read data */
		if(readw(FBAddr + BankNumHigh + PhysicalAdrHigh) == PhysicalAdrHigh)
			return 1;
	}

	return 0;
}

static void __devinit
sisfb_post_300_ramsize(struct pci_dev *pdev, unsigned int mapsize)
{
	struct	sis_video_info *ivideo = pci_get_drvdata(pdev);
	int	i, j, buswidth;
	int	PseudoRankCapacity, PseudoAdrPinCount;

	buswidth = sisfb_post_300_buswidth(ivideo);

	for(i = 6; i >= 0; i--) {
		PseudoRankCapacity = 1 << i;
		for(j = 4; j >= 1; j--) {
			PseudoAdrPinCount = 15 - j;
			if((PseudoRankCapacity * j) <= 64) {
				if(sisfb_post_300_rwtest(ivideo,
						j,
						buswidth,
						PseudoRankCapacity,
						PseudoAdrPinCount,
						mapsize))
					return;
			}
		}
	}
}

static void __devinit
sisfb_post_sis300(struct pci_dev *pdev)
{
	struct sis_video_info *ivideo = pci_get_drvdata(pdev);
	unsigned char *bios = ivideo->SiS_Pr.VirtualRomBase;
	u8  reg, v1, v2, v3, v4, v5, v6, v7, v8;
	u16 index, rindex, memtype = 0;
	unsigned int mapsize;

	if(!ivideo->SiS_Pr.UseROM)
		bios = NULL;

	outSISIDXREG(SISSR, 0x05, 0x86);

	if(bios) {
		if(bios[0x52] & 0x80) {
			memtype = bios[0x52];
		} else {
4365
			memtype = SiS_GetReg(SISSR, 0x3a);
T
Thomas Winischhofer 已提交
4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461
		}
		memtype &= 0x07;
	}

	v3 = 0x80; v6 = 0x80;
	if(ivideo->revision_id <= 0x13) {
		v1 = 0x44; v2 = 0x42;
		v4 = 0x44; v5 = 0x42;
	} else {
		v1 = 0x68; v2 = 0x43; /* Assume 125Mhz MCLK */
		v4 = 0x68; v5 = 0x43; /* Assume 125Mhz ECLK */
		if(bios) {
			index = memtype * 5;
			rindex = index + 0x54;
			v1 = bios[rindex++];
			v2 = bios[rindex++];
			v3 = bios[rindex++];
			rindex = index + 0x7c;
			v4 = bios[rindex++];
			v5 = bios[rindex++];
			v6 = bios[rindex++];
		}
	}
	outSISIDXREG(SISSR, 0x28, v1);
	outSISIDXREG(SISSR, 0x29, v2);
	outSISIDXREG(SISSR, 0x2a, v3);
	outSISIDXREG(SISSR, 0x2e, v4);
	outSISIDXREG(SISSR, 0x2f, v5);
	outSISIDXREG(SISSR, 0x30, v6);

	v1 = 0x10;
	if(bios)
		v1 = bios[0xa4];
	outSISIDXREG(SISSR, 0x07, v1);       /* DAC speed */

	outSISIDXREG(SISSR, 0x11, 0x0f);     /* DDC, power save */

	v1 = 0x01; v2 = 0x43; v3 = 0x1e; v4 = 0x2a;
	v5 = 0x06; v6 = 0x00; v7 = 0x00; v8 = 0x00;
	if(bios) {
		memtype += 0xa5;
		v1 = bios[memtype];
		v2 = bios[memtype + 8];
		v3 = bios[memtype + 16];
		v4 = bios[memtype + 24];
		v5 = bios[memtype + 32];
		v6 = bios[memtype + 40];
		v7 = bios[memtype + 48];
		v8 = bios[memtype + 56];
	}
	if(ivideo->revision_id >= 0x80)
		v3 &= 0xfd;
	outSISIDXREG(SISSR, 0x15, v1);       /* Ram type (assuming 0, BIOS 0xa5 step 8) */
	outSISIDXREG(SISSR, 0x16, v2);
	outSISIDXREG(SISSR, 0x17, v3);
	outSISIDXREG(SISSR, 0x18, v4);
	outSISIDXREG(SISSR, 0x19, v5);
	outSISIDXREG(SISSR, 0x1a, v6);
	outSISIDXREG(SISSR, 0x1b, v7);
	outSISIDXREG(SISSR, 0x1c, v8);	   /* ---- */
	andSISIDXREG(SISSR, 0x15 ,0xfb);
	orSISIDXREG(SISSR, 0x15, 0x04);
	if(bios) {
		if(bios[0x53] & 0x02) {
			orSISIDXREG(SISSR, 0x19, 0x20);
		}
	}
	v1 = 0x04;			   /* DAC pedestal (BIOS 0xe5) */
	if(ivideo->revision_id >= 0x80)
		v1 |= 0x01;
	outSISIDXREG(SISSR, 0x1f, v1);
	outSISIDXREG(SISSR, 0x20, 0xa4);     /* linear & relocated io & disable a0000 */
	v1 = 0xf6; v2 = 0x0d; v3 = 0x00;
	if(bios) {
		v1 = bios[0xe8];
		v2 = bios[0xe9];
		v3 = bios[0xea];
	}
	outSISIDXREG(SISSR, 0x23, v1);
	outSISIDXREG(SISSR, 0x24, v2);
	outSISIDXREG(SISSR, 0x25, v3);
	outSISIDXREG(SISSR, 0x21, 0x84);
	outSISIDXREG(SISSR, 0x22, 0x00);
	outSISIDXREG(SISCR, 0x37, 0x00);
	orSISIDXREG(SISPART1, 0x24, 0x01);   /* unlock crt2 */
	outSISIDXREG(SISPART1, 0x00, 0x00);
	v1 = 0x40; v2 = 0x11;
	if(bios) {
		v1 = bios[0xec];
		v2 = bios[0xeb];
	}
	outSISIDXREG(SISPART1, 0x02, v1);

	if(ivideo->revision_id >= 0x80)
		v2 &= ~0x01;

4462
	reg = SiS_GetReg(SISPART4, 0x00);
T
Thomas Winischhofer 已提交
4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475
	if((reg == 1) || (reg == 2)) {
		outSISIDXREG(SISCR, 0x37, 0x02);
		outSISIDXREG(SISPART2, 0x00, 0x1c);
		v4 = 0x00; v5 = 0x00; v6 = 0x10;
		if(ivideo->SiS_Pr.UseROM) {
			v4 = bios[0xf5];
			v5 = bios[0xf6];
			v6 = bios[0xf7];
		}
		outSISIDXREG(SISPART4, 0x0d, v4);
		outSISIDXREG(SISPART4, 0x0e, v5);
		outSISIDXREG(SISPART4, 0x10, v6);
		outSISIDXREG(SISPART4, 0x0f, 0x3f);
4476
		reg = SiS_GetReg(SISPART4, 0x01);
T
Thomas Winischhofer 已提交
4477
		if(reg >= 0xb0) {
4478
			reg = SiS_GetReg(SISPART4, 0x23);
T
Thomas Winischhofer 已提交
4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489
			reg &= 0x20;
			reg <<= 1;
			outSISIDXREG(SISPART4, 0x23, reg);
		}
	} else {
		v2 &= ~0x10;
	}
	outSISIDXREG(SISSR, 0x32, v2);

	andSISIDXREG(SISPART1, 0x24, 0xfe);  /* Lock CRT2 */

4490
	reg = SiS_GetReg(SISSR, 0x16);
T
Thomas Winischhofer 已提交
4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501
	reg &= 0xc3;
	outSISIDXREG(SISCR, 0x35, reg);
	outSISIDXREG(SISCR, 0x83, 0x00);
#if !defined(__i386__) && !defined(__x86_64__)
	if(sisfb_videoram) {
		outSISIDXREG(SISSR, 0x13, 0x28);  /* ? */
		reg = ((sisfb_videoram >> 10) - 1) | 0x40;
		outSISIDXREG(SISSR, 0x14, reg);
	} else {
#endif
		/* Need to map max FB size for finding out about RAM size */
4502
		mapsize = ivideo->video_size;
T
Thomas Winischhofer 已提交
4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520
		sisfb_post_map_vram(ivideo, &mapsize, 4);

		if(ivideo->video_vbase) {
			sisfb_post_300_ramsize(pdev, mapsize);
			iounmap(ivideo->video_vbase);
		} else {
			printk(KERN_DEBUG
				"sisfb: Failed to map memory for size detection, assuming 8MB\n");
			outSISIDXREG(SISSR, 0x13, 0x28);  /* ? */
			outSISIDXREG(SISSR, 0x14, 0x47);  /* 8MB, 64bit default */
		}
#if !defined(__i386__) && !defined(__x86_64__)
	}
#endif
	if(bios) {
		v1 = bios[0xe6];
		v2 = bios[0xe7];
	} else {
4521
		reg = SiS_GetReg(SISSR, 0x3a);
T
Thomas Winischhofer 已提交
4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536
		if((reg & 0x30) == 0x30) {
			v1 = 0x04; /* PCI */
			v2 = 0x92;
		} else {
			v1 = 0x14; /* AGP */
			v2 = 0xb2;
		}
	}
	outSISIDXREG(SISSR, 0x21, v1);
	outSISIDXREG(SISSR, 0x22, v2);

	/* Sense CRT1 */
	sisfb_sense_crt1(ivideo);

	/* Set default mode, don't clear screen */
4537 4538 4539
	ivideo->SiS_Pr.SiS_UseOEM = false;
	SiS_SetEnableDstn(&ivideo->SiS_Pr, false);
	SiS_SetEnableFstn(&ivideo->SiS_Pr, false);
T
Thomas Winischhofer 已提交
4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572
	ivideo->curFSTN = ivideo->curDSTN = 0;
	ivideo->SiS_Pr.VideoMemorySize = 8 << 20;
	SiSSetMode(&ivideo->SiS_Pr, 0x2e | 0x80);

	outSISIDXREG(SISSR, 0x05, 0x86);

	/* Display off */
	orSISIDXREG(SISSR, 0x01, 0x20);

	/* Save mode number in CR34 */
	outSISIDXREG(SISCR, 0x34, 0x2e);

	/* Let everyone know what the current mode is */
	ivideo->modeprechange = 0x2e;
}
#endif

#ifdef CONFIG_FB_SIS_315
#if 0
static void __devinit
sisfb_post_sis315330(struct pci_dev *pdev)
{
	/* TODO */
}
#endif

static void __devinit
sisfb_post_xgi_delay(struct sis_video_info *ivideo, int delay)
{
	unsigned int i;
	u8 reg;

	for(i = 0; i <= (delay * 10 * 36); i++) {
4573
		reg = SiS_GetReg(SISSR, 0x05);
T
Thomas Winischhofer 已提交
4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585
		reg++;
	}
}

static int __devinit
sisfb_find_host_bridge(struct sis_video_info *ivideo, struct pci_dev *mypdev,
				unsigned short pcivendor)
{
	struct pci_dev *pdev = NULL;
	unsigned short temp;
	int ret = 0;

4586
	while((pdev = pci_get_class(PCI_CLASS_BRIDGE_HOST, pdev))) {
T
Thomas Winischhofer 已提交
4587 4588 4589
		temp = pdev->vendor;
		if(temp == pcivendor) {
			ret = 1;
4590
			pci_dev_put(pdev);
T
Thomas Winischhofer 已提交
4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667
			break;
		}
	}

	return ret;
}

static int __devinit
sisfb_post_xgi_rwtest(struct sis_video_info *ivideo, int starta,
			unsigned int enda, unsigned int mapsize)
{
	unsigned int pos;
	int i;

	writel(0, ivideo->video_vbase);

	for(i = starta; i <= enda; i++) {
		pos = 1 << i;
		if(pos < mapsize)
			writel(pos, ivideo->video_vbase + pos);
	}

	sisfb_post_xgi_delay(ivideo, 150);

	if(readl(ivideo->video_vbase) != 0)
		return 0;

	for(i = starta; i <= enda; i++) {
		pos = 1 << i;
		if(pos < mapsize) {
			if(readl(ivideo->video_vbase + pos) != pos)
				return 0;
		} else
			return 0;
	}

	return 1;
}

static void __devinit
sisfb_post_xgi_ramsize(struct sis_video_info *ivideo)
{
	unsigned int buswidth, ranksize, channelab, mapsize;
	int i, j, k, l;
	u8 reg, sr14;
	static const u8 dramsr13[12 * 5] = {
		0x02, 0x0e, 0x0b, 0x80, 0x5d,
		0x02, 0x0e, 0x0a, 0x40, 0x59,
		0x02, 0x0d, 0x0b, 0x40, 0x4d,
		0x02, 0x0e, 0x09, 0x20, 0x55,
		0x02, 0x0d, 0x0a, 0x20, 0x49,
		0x02, 0x0c, 0x0b, 0x20, 0x3d,
		0x02, 0x0e, 0x08, 0x10, 0x51,
		0x02, 0x0d, 0x09, 0x10, 0x45,
		0x02, 0x0c, 0x0a, 0x10, 0x39,
		0x02, 0x0d, 0x08, 0x08, 0x41,
		0x02, 0x0c, 0x09, 0x08, 0x35,
		0x02, 0x0c, 0x08, 0x04, 0x31
	};
	static const u8 dramsr13_4[4 * 5] = {
		0x02, 0x0d, 0x09, 0x40, 0x45,
		0x02, 0x0c, 0x09, 0x20, 0x35,
		0x02, 0x0c, 0x08, 0x10, 0x31,
		0x02, 0x0b, 0x08, 0x08, 0x21
	};

	/* Enable linear mode, disable 0xa0000 address decoding */
	/* We disable a0000 address decoding, because
	 * - if running on x86, if the card is disabled, it means
	 *   that another card is in the system. We don't want
	 *   to interphere with that primary card's textmode.
	 * - if running on non-x86, there usually is no VGA window
	 *   at a0000.
	 */
	orSISIDXREG(SISSR, 0x20, (0x80 | 0x04));

	/* Need to map max FB size for finding out about RAM size */
4668
	mapsize = ivideo->video_size;
T
Thomas Winischhofer 已提交
4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686
	sisfb_post_map_vram(ivideo, &mapsize, 32);

	if(!ivideo->video_vbase) {
		printk(KERN_ERR "sisfb: Unable to detect RAM size. Setting default.\n");
		outSISIDXREG(SISSR, 0x13, 0x35);
		outSISIDXREG(SISSR, 0x14, 0x41);
		/* TODO */
		return;
	}

	/* Non-interleaving */
	outSISIDXREG(SISSR, 0x15, 0x00);
	/* No tiling */
	outSISIDXREG(SISSR, 0x1c, 0x00);

	if(ivideo->chip == XGI_20) {

		channelab = 1;
4687
		reg = SiS_GetReg(SISCR, 0x97);
T
Thomas Winischhofer 已提交
4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739
		if(!(reg & 0x01)) {	/* Single 32/16 */
			buswidth = 32;
			outSISIDXREG(SISSR, 0x13, 0xb1);
			outSISIDXREG(SISSR, 0x14, 0x52);
			sisfb_post_xgi_delay(ivideo, 1);
			sr14 = 0x02;
			if(sisfb_post_xgi_rwtest(ivideo, 23, 24, mapsize))
				goto bail_out;

			outSISIDXREG(SISSR, 0x13, 0x31);
			outSISIDXREG(SISSR, 0x14, 0x42);
			sisfb_post_xgi_delay(ivideo, 1);
			if(sisfb_post_xgi_rwtest(ivideo, 23, 23, mapsize))
				goto bail_out;

			buswidth = 16;
			outSISIDXREG(SISSR, 0x13, 0xb1);
			outSISIDXREG(SISSR, 0x14, 0x41);
			sisfb_post_xgi_delay(ivideo, 1);
			sr14 = 0x01;
			if(sisfb_post_xgi_rwtest(ivideo, 22, 23, mapsize))
				goto bail_out;
			else
				outSISIDXREG(SISSR, 0x13, 0x31);
		} else {		/* Dual 16/8 */
			buswidth = 16;
			outSISIDXREG(SISSR, 0x13, 0xb1);
			outSISIDXREG(SISSR, 0x14, 0x41);
			sisfb_post_xgi_delay(ivideo, 1);
			sr14 = 0x01;
			if(sisfb_post_xgi_rwtest(ivideo, 22, 23, mapsize))
				goto bail_out;

			outSISIDXREG(SISSR, 0x13, 0x31);
			outSISIDXREG(SISSR, 0x14, 0x31);
			sisfb_post_xgi_delay(ivideo, 1);
			if(sisfb_post_xgi_rwtest(ivideo, 22, 22, mapsize))
				goto bail_out;

			buswidth = 8;
			outSISIDXREG(SISSR, 0x13, 0xb1);
			outSISIDXREG(SISSR, 0x14, 0x30);
			sisfb_post_xgi_delay(ivideo, 1);
			sr14 = 0x00;
			if(sisfb_post_xgi_rwtest(ivideo, 21, 22, mapsize))
				goto bail_out;
			else
				outSISIDXREG(SISSR, 0x13, 0x31);
		}

	} else {	/* XGI_40 */

4740
		reg = SiS_GetReg(SISCR, 0x97);
T
Thomas Winischhofer 已提交
4741
		if(!(reg & 0x10)) {
4742
			reg = SiS_GetReg(SISSR, 0x39);
T
Thomas Winischhofer 已提交
4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848
			reg >>= 1;
		}

		if(reg & 0x01) {	/* DDRII */
			buswidth = 32;
			if(ivideo->revision_id == 2) {
				channelab = 2;
				outSISIDXREG(SISSR, 0x13, 0xa1);
				outSISIDXREG(SISSR, 0x14, 0x44);
				sr14 = 0x04;
				sisfb_post_xgi_delay(ivideo, 1);
				if(sisfb_post_xgi_rwtest(ivideo, 23, 24, mapsize))
					goto bail_out;

				outSISIDXREG(SISSR, 0x13, 0x21);
				outSISIDXREG(SISSR, 0x14, 0x34);
				if(sisfb_post_xgi_rwtest(ivideo, 22, 23, mapsize))
					goto bail_out;

				channelab = 1;
				outSISIDXREG(SISSR, 0x13, 0xa1);
				outSISIDXREG(SISSR, 0x14, 0x40);
				sr14 = 0x00;
				if(sisfb_post_xgi_rwtest(ivideo, 22, 23, mapsize))
					goto bail_out;

				outSISIDXREG(SISSR, 0x13, 0x21);
				outSISIDXREG(SISSR, 0x14, 0x30);
			} else {
				channelab = 3;
				outSISIDXREG(SISSR, 0x13, 0xa1);
				outSISIDXREG(SISSR, 0x14, 0x4c);
				sr14 = 0x0c;
				sisfb_post_xgi_delay(ivideo, 1);
				if(sisfb_post_xgi_rwtest(ivideo, 23, 25, mapsize))
					goto bail_out;

				channelab = 2;
				outSISIDXREG(SISSR, 0x14, 0x48);
				sisfb_post_xgi_delay(ivideo, 1);
				sr14 = 0x08;
				if(sisfb_post_xgi_rwtest(ivideo, 23, 24, mapsize))
					goto bail_out;

				outSISIDXREG(SISSR, 0x13, 0x21);
				outSISIDXREG(SISSR, 0x14, 0x3c);
				sr14 = 0x0c;

				if(sisfb_post_xgi_rwtest(ivideo, 23, 24, mapsize)) {
					channelab = 3;
				} else {
					channelab = 2;
					outSISIDXREG(SISSR, 0x14, 0x38);
					sr14 = 0x08;
				}
			}
			sisfb_post_xgi_delay(ivideo, 1);

		} else {	/* DDR */

			buswidth = 64;
			if(ivideo->revision_id == 2) {
				channelab = 1;
				outSISIDXREG(SISSR, 0x13, 0xa1);
				outSISIDXREG(SISSR, 0x14, 0x52);
				sisfb_post_xgi_delay(ivideo, 1);
				sr14 = 0x02;
				if(sisfb_post_xgi_rwtest(ivideo, 23, 24, mapsize))
					goto bail_out;

				outSISIDXREG(SISSR, 0x13, 0x21);
				outSISIDXREG(SISSR, 0x14, 0x42);
			} else {
				channelab = 2;
				outSISIDXREG(SISSR, 0x13, 0xa1);
				outSISIDXREG(SISSR, 0x14, 0x5a);
				sisfb_post_xgi_delay(ivideo, 1);
				sr14 = 0x0a;
				if(sisfb_post_xgi_rwtest(ivideo, 24, 25, mapsize))
					goto bail_out;

				outSISIDXREG(SISSR, 0x13, 0x21);
				outSISIDXREG(SISSR, 0x14, 0x4a);
			}
			sisfb_post_xgi_delay(ivideo, 1);

		}
	}

bail_out:
	setSISIDXREG(SISSR, 0x14, 0xf0, sr14);
	sisfb_post_xgi_delay(ivideo, 1);

	j = (ivideo->chip == XGI_20) ? 5 : 9;
	k = (ivideo->chip == XGI_20) ? 12 : 4;

	for(i = 0; i < k; i++) {

		reg = (ivideo->chip == XGI_20) ?
				dramsr13[(i * 5) + 4] : dramsr13_4[(i * 5) + 4];
		setSISIDXREG(SISSR, 0x13, 0x80, reg);
		sisfb_post_xgi_delay(ivideo, 50);

		ranksize = (ivideo->chip == XGI_20) ?
				dramsr13[(i * 5) + 3] : dramsr13_4[(i * 5) + 3];

4849
		reg = SiS_GetReg(SISSR, 0x13);
T
Thomas Winischhofer 已提交
4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876
		if(reg & 0x80) ranksize <<= 1;

		if(ivideo->chip == XGI_20) {
			if(buswidth == 16)      ranksize <<= 1;
			else if(buswidth == 32) ranksize <<= 2;
		} else {
			if(buswidth == 64)      ranksize <<= 1;
		}

		reg = 0;
		l = channelab;
		if(l == 3) l = 4;
		if((ranksize * l) <= 256) {
			while((ranksize >>= 1)) reg += 0x10;
		}

		if(!reg) continue;

		setSISIDXREG(SISSR, 0x14, 0x0f, (reg & 0xf0));
		sisfb_post_xgi_delay(ivideo, 1);

		if(sisfb_post_xgi_rwtest(ivideo, j, ((reg >> 4) + channelab - 2 + 20), mapsize))
			break;
	}

	iounmap(ivideo->video_vbase);
}
L
Linus Torvalds 已提交
4877

T
Thomas Winischhofer 已提交
4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902
static void __devinit
sisfb_post_xgi_setclocks(struct sis_video_info *ivideo, u8 regb)
{
	u8 v1, v2, v3;
	int index;
	static const u8 cs90[8 * 3] = {
		0x16, 0x01, 0x01,
		0x3e, 0x03, 0x01,
		0x7c, 0x08, 0x01,
		0x79, 0x06, 0x01,
		0x29, 0x01, 0x81,
		0x5c, 0x23, 0x01,
		0x5c, 0x23, 0x01,
		0x5c, 0x23, 0x01
	};
	static const u8 csb8[8 * 3] = {
		0x5c, 0x23, 0x01,
		0x29, 0x01, 0x01,
		0x7c, 0x08, 0x01,
		0x79, 0x06, 0x01,
		0x29, 0x01, 0x81,
		0x5c, 0x23, 0x01,
		0x5c, 0x23, 0x01,
		0x5c, 0x23, 0x01
	};
L
Linus Torvalds 已提交
4903

T
Thomas Winischhofer 已提交
4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931
	regb = 0;  /* ! */

	index = regb * 3;
	v1 = cs90[index]; v2 = cs90[index + 1]; v3 = cs90[index + 2];
	if(ivideo->haveXGIROM) {
		v1 = ivideo->bios_abase[0x90 + index];
		v2 = ivideo->bios_abase[0x90 + index + 1];
		v3 = ivideo->bios_abase[0x90 + index + 2];
	}
	outSISIDXREG(SISSR, 0x28, v1);
	outSISIDXREG(SISSR, 0x29, v2);
	outSISIDXREG(SISSR, 0x2a, v3);
	sisfb_post_xgi_delay(ivideo, 0x43);
	sisfb_post_xgi_delay(ivideo, 0x43);
	sisfb_post_xgi_delay(ivideo, 0x43);
	index = regb * 3;
	v1 = csb8[index]; v2 = csb8[index + 1]; v3 = csb8[index + 2];
	if(ivideo->haveXGIROM) {
		v1 = ivideo->bios_abase[0xb8 + index];
		v2 = ivideo->bios_abase[0xb8 + index + 1];
		v3 = ivideo->bios_abase[0xb8 + index + 2];
	}
	outSISIDXREG(SISSR, 0x2e, v1);
	outSISIDXREG(SISSR, 0x2f, v2);
	outSISIDXREG(SISSR, 0x30, v3);
	sisfb_post_xgi_delay(ivideo, 0x43);
	sisfb_post_xgi_delay(ivideo, 0x43);
	sisfb_post_xgi_delay(ivideo, 0x43);
L
Linus Torvalds 已提交
4932 4933
}

T
Thomas Winischhofer 已提交
4934 4935
static int __devinit
sisfb_post_xgi(struct pci_dev *pdev)
L
Linus Torvalds 已提交
4936 4937
{
	struct sis_video_info *ivideo = pci_get_drvdata(pdev);
T
Thomas Winischhofer 已提交
4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998
	unsigned char *bios = ivideo->bios_abase;
	struct pci_dev *mypdev = NULL;
	const u8 *ptr, *ptr2;
	u8 v1, v2, v3, v4, v5, reg, ramtype;
	u32 rega, regb, regd;
	int i, j, k, index;
	static const u8 cs78[3] = { 0xf6, 0x0d, 0x00 };
	static const u8 cs76[2] = { 0xa3, 0xfb };
	static const u8 cs7b[3] = { 0xc0, 0x11, 0x00 };
	static const u8 cs158[8] = {
		0x88, 0xaa, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00
	};
	static const u8 cs160[8] = {
		0x44, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00
	};
	static const u8 cs168[8] = {
		0x48, 0x78, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00
	};
	static const u8 cs128[3 * 8] = {
		0x90, 0x28, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x77, 0x44, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x77, 0x44, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00
	};
	static const u8 cs148[2 * 8] = {
		0x55, 0x55, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
	};
	static const u8 cs31a[8 * 4] = {
		0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
		0xaa, 0xaa, 0xaa, 0xaa, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
	};
	static const u8 cs33a[8 * 4] = {
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
	};
	static const u8 cs45a[8 * 2] = {
		0x00, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
	};
	static const u8 cs170[7 * 8] = {
		0x54, 0x32, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x54, 0x43, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x0a, 0x05, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x44, 0x34, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x10, 0x0a, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x11, 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x05, 0x05, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00
	};
	static const u8 cs1a8[3 * 8] = {
		0xf0, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x05, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
	};
	static const u8 cs100[2 * 8] = {
		0xc4, 0x04, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00,
		0xc4, 0x04, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00
	};
L
Linus Torvalds 已提交
4999

T
Thomas Winischhofer 已提交
5000
	/* VGA enable */
5001
	reg = SiS_GetRegByte(SISVGAENABLE) | 0x01;
5002
	SiS_SetRegByte(SISVGAENABLE, reg);
L
Linus Torvalds 已提交
5003

T
Thomas Winischhofer 已提交
5004
	/* Misc */
5005
	reg = SiS_GetRegByte(SISMISCR) | 0x01;
5006
	SiS_SetRegByte(SISMISCW, reg);
L
Linus Torvalds 已提交
5007

T
Thomas Winischhofer 已提交
5008 5009
	/* Unlock SR */
	outSISIDXREG(SISSR, 0x05, 0x86);
5010
	reg = SiS_GetReg(SISSR, 0x05);
T
Thomas Winischhofer 已提交
5011 5012
	if(reg != 0xa1)
		return 0;
L
Linus Torvalds 已提交
5013

T
Thomas Winischhofer 已提交
5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024
	/* Clear some regs */
	for(i = 0; i < 0x22; i++) {
		if(0x06 + i == 0x20) continue;
		outSISIDXREG(SISSR, 0x06 + i, 0x00);
	}
	for(i = 0; i < 0x0b; i++) {
		outSISIDXREG(SISSR, 0x31 + i, 0x00);
	}
	for(i = 0; i < 0x10; i++) {
		outSISIDXREG(SISCR, 0x30 + i, 0x00);
	}
L
Linus Torvalds 已提交
5025

T
Thomas Winischhofer 已提交
5026 5027 5028 5029 5030 5031 5032
	ptr = cs78;
	if(ivideo->haveXGIROM) {
		ptr = (const u8 *)&bios[0x78];
	}
	for(i = 0; i < 3; i++) {
		outSISIDXREG(SISSR, 0x23 + i, ptr[i]);
	}
L
Linus Torvalds 已提交
5033

T
Thomas Winischhofer 已提交
5034 5035 5036 5037 5038 5039 5040
	ptr = cs76;
	if(ivideo->haveXGIROM) {
		ptr = (const u8 *)&bios[0x76];
	}
	for(i = 0; i < 2; i++) {
		outSISIDXREG(SISSR, 0x21 + i, ptr[i]);
	}
L
Linus Torvalds 已提交
5041

T
Thomas Winischhofer 已提交
5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052
	v1 = 0x18; v2 = 0x00;
	if(ivideo->haveXGIROM) {
		v1 = bios[0x74];
		v2 = bios[0x75];
	}
	outSISIDXREG(SISSR, 0x07, v1);
	outSISIDXREG(SISSR, 0x11, 0x0f);
	outSISIDXREG(SISSR, 0x1f, v2);
	/* PCI linear mode, RelIO enabled, A0000 decoding disabled */
	outSISIDXREG(SISSR, 0x20, 0x80 | 0x20 | 0x04);
	outSISIDXREG(SISSR, 0x27, 0x74);
L
Linus Torvalds 已提交
5053

T
Thomas Winischhofer 已提交
5054 5055 5056 5057 5058 5059 5060
	ptr = cs7b;
	if(ivideo->haveXGIROM) {
		ptr = (const u8 *)&bios[0x7b];
	}
	for(i = 0; i < 3; i++) {
		outSISIDXREG(SISSR, 0x31 + i, ptr[i]);
	}
L
Linus Torvalds 已提交
5061

T
Thomas Winischhofer 已提交
5062 5063 5064 5065 5066 5067 5068 5069 5070
	if(ivideo->chip == XGI_40) {
		if(ivideo->revision_id == 2) {
			setSISIDXREG(SISSR, 0x3b, 0x3f, 0xc0);
		}
		outSISIDXREG(SISCR, 0x7d, 0xfe);
		outSISIDXREG(SISCR, 0x7e, 0x0f);
	}
	if(ivideo->revision_id == 0) {	/* 40 *and* 20? */
		andSISIDXREG(SISCR, 0x58, 0xd7);
5071
		reg = SiS_GetReg(SISCR, 0xcb);
T
Thomas Winischhofer 已提交
5072 5073 5074 5075
		if(reg & 0x20) {
			setSISIDXREG(SISCR, 0x58, 0xd7, (reg & 0x10) ? 0x08 : 0x20); /* =0x28 Z7 ? */
		}
	}
L
Linus Torvalds 已提交
5076

T
Thomas Winischhofer 已提交
5077 5078
	reg = (ivideo->chip == XGI_40) ? 0x20 : 0x00;
	setSISIDXREG(SISCR, 0x38, 0x1f, reg);
L
Linus Torvalds 已提交
5079

T
Thomas Winischhofer 已提交
5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097
	if(ivideo->chip == XGI_20) {
		outSISIDXREG(SISSR, 0x36, 0x70);
	} else {
		outSISIDXREG(SISVID, 0x00, 0x86);
		outSISIDXREG(SISVID, 0x32, 0x00);
		outSISIDXREG(SISVID, 0x30, 0x00);
		outSISIDXREG(SISVID, 0x32, 0x01);
		outSISIDXREG(SISVID, 0x30, 0x00);
		andSISIDXREG(SISVID, 0x2f, 0xdf);
		andSISIDXREG(SISCAP, 0x00, 0x3f);

		outSISIDXREG(SISPART1, 0x2f, 0x01);
		outSISIDXREG(SISPART1, 0x00, 0x00);
		outSISIDXREG(SISPART1, 0x02, bios[0x7e]);
		outSISIDXREG(SISPART1, 0x2e, 0x08);
		andSISIDXREG(SISPART1, 0x35, 0x7f);
		andSISIDXREG(SISPART1, 0x50, 0xfe);

5098
		reg = SiS_GetReg(SISPART4, 0x00);
T
Thomas Winischhofer 已提交
5099 5100 5101 5102 5103 5104 5105
		if(reg == 1 || reg == 2) {
			outSISIDXREG(SISPART2, 0x00, 0x1c);
			outSISIDXREG(SISPART4, 0x0d, bios[0x7f]);
			outSISIDXREG(SISPART4, 0x0e, bios[0x80]);
			outSISIDXREG(SISPART4, 0x10, bios[0x81]);
			andSISIDXREG(SISPART4, 0x0f, 0x3f);

5106
			reg = SiS_GetReg(SISPART4, 0x01);
T
Thomas Winischhofer 已提交
5107
			if((reg & 0xf0) >= 0xb0) {
5108
				reg = SiS_GetReg(SISPART4, 0x23);
T
Thomas Winischhofer 已提交
5109 5110 5111 5112 5113 5114
				if(reg & 0x20) reg |= 0x40;
				outSISIDXREG(SISPART4, 0x23, reg);
				reg = (reg & 0x20) ? 0x02 : 0x00;
				setSISIDXREG(SISPART1, 0x1e, 0xfd, reg);
			}
		}
L
Linus Torvalds 已提交
5115

T
Thomas Winischhofer 已提交
5116 5117
		v1 = bios[0x77];

5118
		reg = SiS_GetReg(SISSR, 0x3b);
T
Thomas Winischhofer 已提交
5119
		if(reg & 0x02) {
5120
			reg = SiS_GetReg(SISSR, 0x3a);
T
Thomas Winischhofer 已提交
5121 5122
			v2 = (reg & 0x30) >> 3;
			if(!(v2 & 0x04)) v2 ^= 0x02;
5123
			reg = SiS_GetReg(SISSR, 0x39);
T
Thomas Winischhofer 已提交
5124 5125 5126
			if(reg & 0x80) v2 |= 0x80;
			v2 |= 0x01;

5127 5128
			if((mypdev = pci_get_device(PCI_VENDOR_ID_SI, 0x0730, NULL))) {
				pci_dev_put(mypdev);
T
Thomas Winischhofer 已提交
5129 5130 5131 5132 5133
				if(((v2 & 0x06) == 2) || ((v2 & 0x06) == 4))
					v2 &= 0xf9;
				v2 |= 0x08;
				v1 &= 0xfe;
			} else {
5134
				mypdev = pci_get_device(PCI_VENDOR_ID_SI, 0x0735, NULL);
T
Thomas Winischhofer 已提交
5135
				if(!mypdev)
5136
					mypdev = pci_get_device(PCI_VENDOR_ID_SI, 0x0645, NULL);
T
Thomas Winischhofer 已提交
5137
				if(!mypdev)
5138
					mypdev = pci_get_device(PCI_VENDOR_ID_SI, 0x0650, NULL);
T
Thomas Winischhofer 已提交
5139 5140 5141 5142 5143
				if(mypdev) {
					pci_read_config_dword(mypdev, 0x94, &regd);
					regd &= 0xfffffeff;
					pci_write_config_dword(mypdev, 0x94, regd);
					v1 &= 0xfe;
5144
					pci_dev_put(mypdev);
T
Thomas Winischhofer 已提交
5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160
				} else if(sisfb_find_host_bridge(ivideo, pdev, PCI_VENDOR_ID_SI)) {
					v1 &= 0xfe;
				} else if(sisfb_find_host_bridge(ivideo, pdev, 0x1106) ||
					  sisfb_find_host_bridge(ivideo, pdev, 0x1022) ||
					  sisfb_find_host_bridge(ivideo, pdev, 0x700e) ||
					  sisfb_find_host_bridge(ivideo, pdev, 0x10de)) {
					if((v2 & 0x06) == 4)
						v2 ^= 0x06;
					v2 |= 0x08;
				}
			}
			setSISIDXREG(SISCR, 0x5f, 0xf0, v2);
		}
		outSISIDXREG(SISSR, 0x22, v1);

		if(ivideo->revision_id == 2) {
5161 5162
			v1 = SiS_GetReg(SISSR, 0x3b);
			v2 = SiS_GetReg(SISSR, 0x3a);
T
Thomas Winischhofer 已提交
5163 5164 5165 5166
			regd = bios[0x90 + 3] | (bios[0x90 + 4] << 8);
			if( (!(v1 & 0x02)) && (v2 & 0x30) && (regd < 0xcf) )
				setSISIDXREG(SISCR, 0x5f, 0xf1, 0x01);

5167
			if((mypdev = pci_get_device(0x10de, 0x01e0, NULL))) {
T
Thomas Winischhofer 已提交
5168 5169 5170 5171 5172
				/* TODO: set CR5f &0xf1 | 0x01 for version 6570
				 * of nforce 2 ROM
				 */
				if(0)
					setSISIDXREG(SISCR, 0x5f, 0xf1, 0x01);
5173
				pci_dev_put(mypdev);
T
Thomas Winischhofer 已提交
5174 5175
			}
		}
L
Linus Torvalds 已提交
5176

T
Thomas Winischhofer 已提交
5177
		v1 = 0x30;
5178 5179
		reg = SiS_GetReg(SISSR, 0x3b);
		v2 = SiS_GetReg(SISCR, 0x5f);
T
Thomas Winischhofer 已提交
5180 5181 5182
		if((!(reg & 0x02)) && (v2 & 0x0e))
			v1 |= 0x08;
		outSISIDXREG(SISSR, 0x27, v1);
L
Linus Torvalds 已提交
5183

T
Thomas Winischhofer 已提交
5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208
		if(bios[0x64] & 0x01) {
			setSISIDXREG(SISCR, 0x5f, 0xf0, bios[0x64]);
		}

		v1 = bios[0x4f7];
		pci_read_config_dword(pdev, 0x50, &regd);
		regd = (regd >> 20) & 0x0f;
		if(regd == 1) {
			v1 &= 0xfc;
			orSISIDXREG(SISCR, 0x5f, 0x08);
		}
		outSISIDXREG(SISCR, 0x48, v1);

		setSISIDXREG(SISCR, 0x47, 0x04, bios[0x4f6] & 0xfb);
		setSISIDXREG(SISCR, 0x49, 0xf0, bios[0x4f8] & 0x0f);
		setSISIDXREG(SISCR, 0x4a, 0x60, bios[0x4f9] & 0x9f);
		setSISIDXREG(SISCR, 0x4b, 0x08, bios[0x4fa] & 0xf7);
		setSISIDXREG(SISCR, 0x4c, 0x80, bios[0x4fb] & 0x7f);
		outSISIDXREG(SISCR, 0x70, bios[0x4fc]);
		setSISIDXREG(SISCR, 0x71, 0xf0, bios[0x4fd] & 0x0f);
		outSISIDXREG(SISCR, 0x74, 0xd0);
		setSISIDXREG(SISCR, 0x74, 0xcf, bios[0x4fe] & 0x30);
		setSISIDXREG(SISCR, 0x75, 0xe0, bios[0x4ff] & 0x1f);
		setSISIDXREG(SISCR, 0x76, 0xe0, bios[0x500] & 0x1f);
		v1 = bios[0x501];
5209
		if((mypdev = pci_get_device(0x8086, 0x2530, NULL))) {
T
Thomas Winischhofer 已提交
5210
			v1 = 0xf0;
5211
			pci_dev_put(mypdev);
T
Thomas Winischhofer 已提交
5212 5213
		}
		outSISIDXREG(SISCR, 0x77, v1);
L
Linus Torvalds 已提交
5214 5215
	}

T
Thomas Winischhofer 已提交
5216
	/* RAM type */
L
Linus Torvalds 已提交
5217

T
Thomas Winischhofer 已提交
5218
	regb = 0;	/* ! */
L
Linus Torvalds 已提交
5219

T
Thomas Winischhofer 已提交
5220 5221 5222
	v1 = 0xff;
	if(ivideo->haveXGIROM) {
		v1 = bios[0x140 + regb];
L
Linus Torvalds 已提交
5223
	}
T
Thomas Winischhofer 已提交
5224
	outSISIDXREG(SISCR, 0x6d, v1);
L
Linus Torvalds 已提交
5225

T
Thomas Winischhofer 已提交
5226 5227 5228
	ptr = cs128;
	if(ivideo->haveXGIROM) {
		ptr = (const u8 *)&bios[0x128];
L
Linus Torvalds 已提交
5229
	}
T
Thomas Winischhofer 已提交
5230 5231
	for(i = 0, j = 0; i < 3; i++, j += 8) {
		outSISIDXREG(SISCR, 0x68 + i, ptr[j + regb]);
L
Linus Torvalds 已提交
5232 5233
	}

T
Thomas Winischhofer 已提交
5234 5235 5236 5237 5238 5239
	ptr  = cs31a;
	ptr2 = cs33a;
	if(ivideo->haveXGIROM) {
		index = (ivideo->chip == XGI_20) ? 0x31a : 0x3a6;
		ptr  = (const u8 *)&bios[index];
		ptr2 = (const u8 *)&bios[index + 0x20];
L
Linus Torvalds 已提交
5240
	}
T
Thomas Winischhofer 已提交
5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255
	for(i = 0; i < 2; i++) {
		if(i == 0) {
			regd = le32_to_cpu(((u32 *)ptr)[regb]);
			rega = 0x6b;
		} else {
			regd = le32_to_cpu(((u32 *)ptr2)[regb]);
			rega = 0x6e;
		}
		reg = 0x00;
		for(j = 0; j < 16; j++) {
			reg &= 0xf3;
			if(regd & 0x01) reg |= 0x04;
			if(regd & 0x02) reg |= 0x08;
			regd >>= 2;
			outSISIDXREG(SISCR, rega, reg);
5256 5257
			reg = SiS_GetReg(SISCR, rega);
			reg = SiS_GetReg(SISCR, rega);
T
Thomas Winischhofer 已提交
5258 5259
			reg += 0x10;
		}
L
Linus Torvalds 已提交
5260
	}
T
Thomas Winischhofer 已提交
5261 5262 5263 5264 5265 5266 5267

	andSISIDXREG(SISCR, 0x6e, 0xfc);

	ptr  = NULL;
	if(ivideo->haveXGIROM) {
		index = (ivideo->chip == XGI_20) ? 0x35a : 0x3e6;
		ptr  = (const u8 *)&bios[index];
L
Linus Torvalds 已提交
5268
	}
T
Thomas Winischhofer 已提交
5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284
	for(i = 0; i < 4; i++) {
		setSISIDXREG(SISCR, 0x6e, 0xfc, i);
		reg = 0x00;
		for(j = 0; j < 2; j++) {
			regd = 0;
			if(ptr) {
				regd = le32_to_cpu(((u32 *)ptr)[regb * 8]);
				ptr += 4;
			}
			/* reg = 0x00; */
			for(k = 0; k < 16; k++) {
				reg &= 0xfc;
				if(regd & 0x01) reg |= 0x01;
				if(regd & 0x02) reg |= 0x02;
				regd >>= 2;
				outSISIDXREG(SISCR, 0x6f, reg);
5285 5286
				reg = SiS_GetReg(SISCR, 0x6f);
				reg = SiS_GetReg(SISCR, 0x6f);
T
Thomas Winischhofer 已提交
5287 5288 5289
				reg += 0x08;
			}
		}
L
Linus Torvalds 已提交
5290
	}
T
Thomas Winischhofer 已提交
5291 5292 5293 5294

	ptr  = cs148;
	if(ivideo->haveXGIROM) {
		ptr  = (const u8 *)&bios[0x148];
L
Linus Torvalds 已提交
5295
	}
T
Thomas Winischhofer 已提交
5296 5297
	for(i = 0, j = 0; i < 2; i++, j += 8) {
		outSISIDXREG(SISCR, 0x80 + i, ptr[j + regb]);
L
Linus Torvalds 已提交
5298 5299
	}

T
Thomas Winischhofer 已提交
5300
	andSISIDXREG(SISCR, 0x89, 0x8f);
L
Linus Torvalds 已提交
5301

T
Thomas Winischhofer 已提交
5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314
	ptr  = cs45a;
	if(ivideo->haveXGIROM) {
		index = (ivideo->chip == XGI_20) ? 0x45a : 0x4e6;
		ptr  = (const u8 *)&bios[index];
	}
	regd = le16_to_cpu(((const u16 *)ptr)[regb]);
	reg = 0x80;
	for(i = 0; i < 5; i++) {
		reg &= 0xfc;
		if(regd & 0x01) reg |= 0x01;
		if(regd & 0x02) reg |= 0x02;
		regd >>= 2;
		outSISIDXREG(SISCR, 0x89, reg);
5315 5316
		reg = SiS_GetReg(SISCR, 0x89);
		reg = SiS_GetReg(SISCR, 0x89);
T
Thomas Winischhofer 已提交
5317 5318
		reg += 0x10;
	}
L
Linus Torvalds 已提交
5319

T
Thomas Winischhofer 已提交
5320 5321 5322 5323 5324 5325
	v1 = 0xb5; v2 = 0x20; v3 = 0xf0; v4 = 0x13;
	if(ivideo->haveXGIROM) {
		v1 = bios[0x118 + regb];
		v2 = bios[0xf8 + regb];
		v3 = bios[0x120 + regb];
		v4 = bios[0x1ca];
L
Linus Torvalds 已提交
5326
	}
T
Thomas Winischhofer 已提交
5327 5328 5329 5330 5331 5332 5333 5334
	outSISIDXREG(SISCR, 0x45, v1 & 0x0f);
	outSISIDXREG(SISCR, 0x99, (v1 >> 4) & 0x07);
	orSISIDXREG(SISCR, 0x40, v1 & 0x80);
	outSISIDXREG(SISCR, 0x41, v2);

	ptr  = cs170;
	if(ivideo->haveXGIROM) {
		ptr  = (const u8 *)&bios[0x170];
L
Linus Torvalds 已提交
5335
	}
T
Thomas Winischhofer 已提交
5336 5337
	for(i = 0, j = 0; i < 7; i++, j += 8) {
		outSISIDXREG(SISCR, 0x90 + i, ptr[j + regb]);
L
Linus Torvalds 已提交
5338 5339
	}

T
Thomas Winischhofer 已提交
5340 5341 5342 5343 5344 5345 5346 5347
	outSISIDXREG(SISCR, 0x59, v3);

	ptr  = cs1a8;
	if(ivideo->haveXGIROM) {
		ptr  = (const u8 *)&bios[0x1a8];
	}
	for(i = 0, j = 0; i < 3; i++, j += 8) {
		outSISIDXREG(SISCR, 0xc3 + i, ptr[j + regb]);
L
Linus Torvalds 已提交
5348 5349
	}

T
Thomas Winischhofer 已提交
5350 5351 5352 5353 5354 5355 5356
	ptr  = cs100;
	if(ivideo->haveXGIROM) {
		ptr  = (const u8 *)&bios[0x100];
	}
	for(i = 0, j = 0; i < 2; i++, j += 8) {
		outSISIDXREG(SISCR, 0x8a + i, ptr[j + regb]);
	}
L
Linus Torvalds 已提交
5357

T
Thomas Winischhofer 已提交
5358
	outSISIDXREG(SISCR, 0xcf, v4);
L
Linus Torvalds 已提交
5359

T
Thomas Winischhofer 已提交
5360 5361
	outSISIDXREG(SISCR, 0x83, 0x09);
	outSISIDXREG(SISCR, 0x87, 0x00);
L
Linus Torvalds 已提交
5362

T
Thomas Winischhofer 已提交
5363 5364 5365 5366 5367 5368
	if(ivideo->chip == XGI_40) {
		if( (ivideo->revision_id == 1) ||
		    (ivideo->revision_id == 2) ) {
			outSISIDXREG(SISCR, 0x8c, 0x87);
		}
	}
L
Linus Torvalds 已提交
5369

T
Thomas Winischhofer 已提交
5370 5371
	outSISIDXREG(SISSR, 0x17, 0x00);
	outSISIDXREG(SISSR, 0x1a, 0x87);
L
Linus Torvalds 已提交
5372

T
Thomas Winischhofer 已提交
5373 5374 5375
	if(ivideo->chip == XGI_20) {
		outSISIDXREG(SISSR, 0x15, 0x00);
		outSISIDXREG(SISSR, 0x1c, 0x00);
L
Linus Torvalds 已提交
5376 5377
	}

T
Thomas Winischhofer 已提交
5378 5379 5380 5381 5382 5383 5384 5385
	ramtype = 0x00; v1 = 0x10;
	if(ivideo->haveXGIROM) {
		ramtype = bios[0x62];
		v1 = bios[0x1d2];
	}
	if(!(ramtype & 0x80)) {
		if(ivideo->chip == XGI_20) {
			outSISIDXREG(SISCR, 0x97, v1);
5386
			reg = SiS_GetReg(SISCR, 0x97);
T
Thomas Winischhofer 已提交
5387 5388 5389 5390
			if(reg & 0x10) {
				ramtype = (reg & 0x01) << 1;
			}
		} else {
5391
			reg = SiS_GetReg(SISSR, 0x39);
T
Thomas Winischhofer 已提交
5392 5393
			ramtype = reg & 0x02;
			if(!(ramtype)) {
5394
				reg = SiS_GetReg(SISSR, 0x3a);
T
Thomas Winischhofer 已提交
5395 5396 5397
				ramtype = (reg >> 1) & 0x01;
			}
		}
L
Linus Torvalds 已提交
5398
	}
T
Thomas Winischhofer 已提交
5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420
	ramtype &= 0x07;

	regb = 0;	/* ! */

	switch(ramtype) {
	case 0:
		sisfb_post_xgi_setclocks(ivideo, regb);
		if((ivideo->chip == XGI_20) ||
		   (ivideo->revision_id == 1)   ||
		   (ivideo->revision_id == 2)) {
			v1 = cs158[regb]; v2 = cs160[regb]; v3 = cs168[regb];
			if(ivideo->haveXGIROM) {
				v1 = bios[regb + 0x158];
				v2 = bios[regb + 0x160];
				v3 = bios[regb + 0x168];
			}
			outSISIDXREG(SISCR, 0x82, v1);
			outSISIDXREG(SISCR, 0x85, v2);
			outSISIDXREG(SISCR, 0x86, v3);
		} else {
			outSISIDXREG(SISCR, 0x82, 0x88);
			outSISIDXREG(SISCR, 0x86, 0x00);
5421
			reg = SiS_GetReg(SISCR, 0x86);
T
Thomas Winischhofer 已提交
5422
			outSISIDXREG(SISCR, 0x86, 0x88);
5423
			reg = SiS_GetReg(SISCR, 0x86);
T
Thomas Winischhofer 已提交
5424 5425 5426
			outSISIDXREG(SISCR, 0x86, bios[regb + 0x168]);
			outSISIDXREG(SISCR, 0x82, 0x77);
			outSISIDXREG(SISCR, 0x85, 0x00);
5427
			reg = SiS_GetReg(SISCR, 0x85);
T
Thomas Winischhofer 已提交
5428
			outSISIDXREG(SISCR, 0x85, 0x88);
5429
			reg = SiS_GetReg(SISCR, 0x85);
T
Thomas Winischhofer 已提交
5430 5431 5432 5433 5434 5435 5436 5437
			outSISIDXREG(SISCR, 0x85, bios[regb + 0x160]);
			outSISIDXREG(SISCR, 0x82, bios[regb + 0x158]);
		}
		if(ivideo->chip == XGI_40) {
			outSISIDXREG(SISCR, 0x97, 0x00);
		}
		outSISIDXREG(SISCR, 0x98, 0x01);
		outSISIDXREG(SISCR, 0x9a, 0x02);
L
Linus Torvalds 已提交
5438

T
Thomas Winischhofer 已提交
5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489
		outSISIDXREG(SISSR, 0x18, 0x01);
		if((ivideo->chip == XGI_20) ||
		   (ivideo->revision_id == 2)) {
			outSISIDXREG(SISSR, 0x19, 0x40);
		} else {
			outSISIDXREG(SISSR, 0x19, 0x20);
		}
		outSISIDXREG(SISSR, 0x16, 0x00);
		outSISIDXREG(SISSR, 0x16, 0x80);
		if((ivideo->chip == XGI_20) || (bios[0x1cb] != 0x0c)) {
			sisfb_post_xgi_delay(ivideo, 0x43);
			sisfb_post_xgi_delay(ivideo, 0x43);
			sisfb_post_xgi_delay(ivideo, 0x43);
			outSISIDXREG(SISSR, 0x18, 0x00);
			if((ivideo->chip == XGI_20) ||
			   (ivideo->revision_id == 2)) {
				outSISIDXREG(SISSR, 0x19, 0x40);
			} else {
				outSISIDXREG(SISSR, 0x19, 0x20);
			}
		} else if((ivideo->chip == XGI_40) && (bios[0x1cb] == 0x0c)) {
			/* outSISIDXREG(SISSR, 0x16, 0x0c); */ /* ? */
		}
		outSISIDXREG(SISSR, 0x16, 0x00);
		outSISIDXREG(SISSR, 0x16, 0x80);
		sisfb_post_xgi_delay(ivideo, 4);
		v1 = 0x31; v2 = 0x03; v3 = 0x83; v4 = 0x03; v5 = 0x83;
		if(ivideo->haveXGIROM) {
			v1 = bios[0xf0];
			index = (ivideo->chip == XGI_20) ? 0x4b2 : 0x53e;
			v2 = bios[index];
			v3 = bios[index + 1];
			v4 = bios[index + 2];
			v5 = bios[index + 3];
		}
		outSISIDXREG(SISSR, 0x18, v1);
		outSISIDXREG(SISSR, 0x19, ((ivideo->chip == XGI_20) ? 0x02 : 0x01));
		outSISIDXREG(SISSR, 0x16, v2);
		outSISIDXREG(SISSR, 0x16, v3);
		sisfb_post_xgi_delay(ivideo, 0x43);
		outSISIDXREG(SISSR, 0x1b, 0x03);
		sisfb_post_xgi_delay(ivideo, 0x22);
		outSISIDXREG(SISSR, 0x18, v1);
		outSISIDXREG(SISSR, 0x19, 0x00);
		outSISIDXREG(SISSR, 0x16, v4);
		outSISIDXREG(SISSR, 0x16, v5);
		outSISIDXREG(SISSR, 0x1b, 0x00);
		break;
	case 1:
		outSISIDXREG(SISCR, 0x82, 0x77);
		outSISIDXREG(SISCR, 0x86, 0x00);
5490
		reg = SiS_GetReg(SISCR, 0x86);
T
Thomas Winischhofer 已提交
5491
		outSISIDXREG(SISCR, 0x86, 0x88);
5492
		reg = SiS_GetReg(SISCR, 0x86);
T
Thomas Winischhofer 已提交
5493 5494 5495 5496 5497 5498 5499 5500 5501
		v1 = cs168[regb]; v2 = cs160[regb]; v3 = cs158[regb];
		if(ivideo->haveXGIROM) {
			v1 = bios[regb + 0x168];
			v2 = bios[regb + 0x160];
			v3 = bios[regb + 0x158];
		}
		outSISIDXREG(SISCR, 0x86, v1);
		outSISIDXREG(SISCR, 0x82, 0x77);
		outSISIDXREG(SISCR, 0x85, 0x00);
5502
		reg = SiS_GetReg(SISCR, 0x85);
T
Thomas Winischhofer 已提交
5503
		outSISIDXREG(SISCR, 0x85, 0x88);
5504
		reg = SiS_GetReg(SISCR, 0x85);
T
Thomas Winischhofer 已提交
5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554
		outSISIDXREG(SISCR, 0x85, v2);
		outSISIDXREG(SISCR, 0x82, v3);
		outSISIDXREG(SISCR, 0x98, 0x01);
		outSISIDXREG(SISCR, 0x9a, 0x02);

		outSISIDXREG(SISSR, 0x28, 0x64);
		outSISIDXREG(SISSR, 0x29, 0x63);
		sisfb_post_xgi_delay(ivideo, 15);
		outSISIDXREG(SISSR, 0x18, 0x00);
		outSISIDXREG(SISSR, 0x19, 0x20);
		outSISIDXREG(SISSR, 0x16, 0x00);
		outSISIDXREG(SISSR, 0x16, 0x80);
		outSISIDXREG(SISSR, 0x18, 0xc5);
		outSISIDXREG(SISSR, 0x19, 0x23);
		outSISIDXREG(SISSR, 0x16, 0x00);
		outSISIDXREG(SISSR, 0x16, 0x80);
		sisfb_post_xgi_delay(ivideo, 1);
		outSISIDXREG(SISCR, 0x97,0x11);
		sisfb_post_xgi_setclocks(ivideo, regb);
		sisfb_post_xgi_delay(ivideo, 0x46);
		outSISIDXREG(SISSR, 0x18, 0xc5);
		outSISIDXREG(SISSR, 0x19, 0x23);
		outSISIDXREG(SISSR, 0x16, 0x00);
		outSISIDXREG(SISSR, 0x16, 0x80);
		sisfb_post_xgi_delay(ivideo, 1);
		outSISIDXREG(SISSR, 0x1b, 0x04);
		sisfb_post_xgi_delay(ivideo, 1);
		outSISIDXREG(SISSR, 0x1b, 0x00);
		sisfb_post_xgi_delay(ivideo, 1);
		v1 = 0x31;
		if(ivideo->haveXGIROM) {
			v1 = bios[0xf0];
		}
		outSISIDXREG(SISSR, 0x18, v1);
		outSISIDXREG(SISSR, 0x19, 0x06);
		outSISIDXREG(SISSR, 0x16, 0x04);
		outSISIDXREG(SISSR, 0x16, 0x84);
		sisfb_post_xgi_delay(ivideo, 1);
		break;
	default:
		sisfb_post_xgi_setclocks(ivideo, regb);
		if((ivideo->chip == XGI_40) &&
		   ((ivideo->revision_id == 1) ||
		    (ivideo->revision_id == 2))) {
			outSISIDXREG(SISCR, 0x82, bios[regb + 0x158]);
			outSISIDXREG(SISCR, 0x85, bios[regb + 0x160]);
			outSISIDXREG(SISCR, 0x86, bios[regb + 0x168]);
		} else {
			outSISIDXREG(SISCR, 0x82, 0x88);
			outSISIDXREG(SISCR, 0x86, 0x00);
5555
			reg = SiS_GetReg(SISCR, 0x86);
T
Thomas Winischhofer 已提交
5556 5557 5558
			outSISIDXREG(SISCR, 0x86, 0x88);
			outSISIDXREG(SISCR, 0x82, 0x77);
			outSISIDXREG(SISCR, 0x85, 0x00);
5559
			reg = SiS_GetReg(SISCR, 0x85);
T
Thomas Winischhofer 已提交
5560
			outSISIDXREG(SISCR, 0x85, 0x88);
5561
			reg = SiS_GetReg(SISCR, 0x85);
T
Thomas Winischhofer 已提交
5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578
			v1 = cs160[regb]; v2 = cs158[regb];
			if(ivideo->haveXGIROM) {
				v1 = bios[regb + 0x160];
				v2 = bios[regb + 0x158];
			}
			outSISIDXREG(SISCR, 0x85, v1);
			outSISIDXREG(SISCR, 0x82, v2);
		}
		if(ivideo->chip == XGI_40) {
			outSISIDXREG(SISCR, 0x97, 0x11);
		}
		if((ivideo->chip == XGI_40) && (ivideo->revision_id == 2)) {
			outSISIDXREG(SISCR, 0x98, 0x01);
		} else {
			outSISIDXREG(SISCR, 0x98, 0x03);
		}
		outSISIDXREG(SISCR, 0x9a, 0x02);
L
Linus Torvalds 已提交
5579

T
Thomas Winischhofer 已提交
5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627
		if(ivideo->chip == XGI_40) {
			outSISIDXREG(SISSR, 0x18, 0x01);
		} else {
			outSISIDXREG(SISSR, 0x18, 0x00);
		}
		outSISIDXREG(SISSR, 0x19, 0x40);
		outSISIDXREG(SISSR, 0x16, 0x00);
		outSISIDXREG(SISSR, 0x16, 0x80);
		if((ivideo->chip == XGI_40) && (bios[0x1cb] != 0x0c)) {
			sisfb_post_xgi_delay(ivideo, 0x43);
			sisfb_post_xgi_delay(ivideo, 0x43);
			sisfb_post_xgi_delay(ivideo, 0x43);
			outSISIDXREG(SISSR, 0x18, 0x00);
			outSISIDXREG(SISSR, 0x19, 0x40);
			outSISIDXREG(SISSR, 0x16, 0x00);
			outSISIDXREG(SISSR, 0x16, 0x80);
		}
		sisfb_post_xgi_delay(ivideo, 4);
		v1 = 0x31;
		if(ivideo->haveXGIROM) {
			v1 = bios[0xf0];
		}
		outSISIDXREG(SISSR, 0x18, v1);
		outSISIDXREG(SISSR, 0x19, 0x01);
		if(ivideo->chip == XGI_40) {
			outSISIDXREG(SISSR, 0x16, bios[0x53e]);
			outSISIDXREG(SISSR, 0x16, bios[0x53f]);
		} else {
			outSISIDXREG(SISSR, 0x16, 0x05);
			outSISIDXREG(SISSR, 0x16, 0x85);
		}
		sisfb_post_xgi_delay(ivideo, 0x43);
		if(ivideo->chip == XGI_40) {
			outSISIDXREG(SISSR, 0x1b, 0x01);
		} else {
			outSISIDXREG(SISSR, 0x1b, 0x03);
		}
		sisfb_post_xgi_delay(ivideo, 0x22);
		outSISIDXREG(SISSR, 0x18, v1);
		outSISIDXREG(SISSR, 0x19, 0x00);
		if(ivideo->chip == XGI_40) {
			outSISIDXREG(SISSR, 0x16, bios[0x540]);
			outSISIDXREG(SISSR, 0x16, bios[0x541]);
		} else {
			outSISIDXREG(SISSR, 0x16, 0x05);
			outSISIDXREG(SISSR, 0x16, 0x85);
		}
		outSISIDXREG(SISSR, 0x1b, 0x00);
L
Linus Torvalds 已提交
5628 5629
	}

T
Thomas Winischhofer 已提交
5630 5631 5632 5633
	regb = 0;	/* ! */
	v1 = 0x03;
	if(ivideo->haveXGIROM) {
		v1 = bios[0x110 + regb];
L
Linus Torvalds 已提交
5634
	}
T
Thomas Winischhofer 已提交
5635
	outSISIDXREG(SISSR, 0x1b, v1);
L
Linus Torvalds 已提交
5636

T
Thomas Winischhofer 已提交
5637 5638 5639 5640 5641
	/* RAM size */
	v1 = 0x00; v2 = 0x00;
	if(ivideo->haveXGIROM) {
		v1 = bios[0x62];
		v2 = bios[0x63];
L
Linus Torvalds 已提交
5642
	}
T
Thomas Winischhofer 已提交
5643 5644 5645
	regb = 0;	/* ! */
	regd = 1 << regb;
	if((v1 & 0x40) && (v2 & regd) && ivideo->haveXGIROM) {
L
Linus Torvalds 已提交
5646

T
Thomas Winischhofer 已提交
5647 5648
		outSISIDXREG(SISSR, 0x13, bios[regb + 0xe0]);
		outSISIDXREG(SISSR, 0x14, bios[regb + 0xe0 + 8]);
L
Linus Torvalds 已提交
5649

T
Thomas Winischhofer 已提交
5650
	} else {
L
Linus Torvalds 已提交
5651

T
Thomas Winischhofer 已提交
5652
		/* Set default mode, don't clear screen */
5653 5654 5655
		ivideo->SiS_Pr.SiS_UseOEM = false;
		SiS_SetEnableDstn(&ivideo->SiS_Pr, false);
		SiS_SetEnableFstn(&ivideo->SiS_Pr, false);
T
Thomas Winischhofer 已提交
5656 5657 5658
		ivideo->curFSTN = ivideo->curDSTN = 0;
		ivideo->SiS_Pr.VideoMemorySize = 8 << 20;
		SiSSetMode(&ivideo->SiS_Pr, 0x2e | 0x80);
L
Linus Torvalds 已提交
5659

T
Thomas Winischhofer 已提交
5660
		outSISIDXREG(SISSR, 0x05, 0x86);
L
Linus Torvalds 已提交
5661

T
Thomas Winischhofer 已提交
5662 5663 5664 5665 5666
		/* Disable read-cache */
		andSISIDXREG(SISSR, 0x21, 0xdf);
		sisfb_post_xgi_ramsize(ivideo);
		/* Enable read-cache */
		orSISIDXREG(SISSR, 0x21, 0x20);
L
Linus Torvalds 已提交
5667

T
Thomas Winischhofer 已提交
5668
	}
L
Linus Torvalds 已提交
5669

T
Thomas Winischhofer 已提交
5670 5671 5672
#if 0
	printk(KERN_DEBUG "-----------------\n");
	for(i = 0; i < 0xff; i++) {
5673
		reg = SiS_GetReg(SISCR, i);
T
Thomas Winischhofer 已提交
5674 5675 5676
		printk(KERN_DEBUG "CR%02x(%x) = 0x%02x\n", i, SISCR, reg);
	}
	for(i = 0; i < 0x40; i++) {
5677
		reg = SiS_GetReg(SISSR, i);
T
Thomas Winischhofer 已提交
5678 5679 5680 5681
		printk(KERN_DEBUG "SR%02x(%x) = 0x%02x\n", i, SISSR, reg);
	}
	printk(KERN_DEBUG "-----------------\n");
#endif
L
Linus Torvalds 已提交
5682

T
Thomas Winischhofer 已提交
5683 5684 5685
	/* Sense CRT1 */
	if(ivideo->chip == XGI_20) {
		orSISIDXREG(SISCR, 0x32, 0x20);
L
Linus Torvalds 已提交
5686
	} else {
5687
		reg = SiS_GetReg(SISPART4, 0x00);
T
Thomas Winischhofer 已提交
5688 5689 5690 5691 5692
		if((reg == 1) || (reg == 2)) {
			sisfb_sense_crt1(ivideo);
		} else {
			orSISIDXREG(SISCR, 0x32, 0x20);
		}
L
Linus Torvalds 已提交
5693 5694
	}

T
Thomas Winischhofer 已提交
5695
	/* Set default mode, don't clear screen */
5696 5697 5698
	ivideo->SiS_Pr.SiS_UseOEM = false;
	SiS_SetEnableDstn(&ivideo->SiS_Pr, false);
	SiS_SetEnableFstn(&ivideo->SiS_Pr, false);
T
Thomas Winischhofer 已提交
5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713
	ivideo->curFSTN = ivideo->curDSTN = 0;
	SiSSetMode(&ivideo->SiS_Pr, 0x2e | 0x80);

	outSISIDXREG(SISSR, 0x05, 0x86);

	/* Display off */
	orSISIDXREG(SISSR, 0x01, 0x20);

	/* Save mode number in CR34 */
	outSISIDXREG(SISCR, 0x34, 0x2e);

	/* Let everyone know what the current mode is */
	ivideo->modeprechange = 0x2e;

	if(ivideo->chip == XGI_40) {
5714 5715
		reg = SiS_GetReg(SISCR, 0xca);
		v1 = SiS_GetReg(SISCR, 0xcc);
T
Thomas Winischhofer 已提交
5716 5717 5718 5719 5720
		if((reg & 0x10) && (!(v1 & 0x04))) {
			printk(KERN_ERR
				"sisfb: Please connect power to the card.\n");
			return 0;
		}
L
Linus Torvalds 已提交
5721 5722
	}

T
Thomas Winischhofer 已提交
5723
	return 1;
L
Linus Torvalds 已提交
5724 5725 5726
}
#endif

T
Thomas Winischhofer 已提交
5727 5728
static int __devinit
sisfb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
L
Linus Torvalds 已提交
5729
{
T
Thomas Winischhofer 已提交
5730 5731 5732
	struct sisfb_chip_info	*chipinfo = &sisfb_chip_info[ent->driver_data];
	struct sis_video_info	*ivideo = NULL;
	struct fb_info		*sis_fb_info = NULL;
L
Linus Torvalds 已提交
5733 5734
	u16 reg16;
	u8  reg;
T
Thomas Winischhofer 已提交
5735
	int i, ret;
L
Linus Torvalds 已提交
5736

T
Thomas Winischhofer 已提交
5737 5738
	if(sisfb_off)
		return -ENXIO;
L
Linus Torvalds 已提交
5739 5740

	sis_fb_info = framebuffer_alloc(sizeof(*ivideo), &pdev->dev);
T
Thomas Winischhofer 已提交
5741 5742
	if(!sis_fb_info)
		return -ENOMEM;
L
Linus Torvalds 已提交
5743 5744 5745 5746

	ivideo = (struct sis_video_info *)sis_fb_info->par;
	ivideo->memyselfandi = sis_fb_info;

T
Thomas Winischhofer 已提交
5747 5748
	ivideo->sisfb_id = SISFB_ID;

L
Linus Torvalds 已提交
5749
	if(card_list == NULL) {
T
Thomas Winischhofer 已提交
5750
		ivideo->cardnumber = 0;
L
Linus Torvalds 已提交
5751
	} else {
T
Thomas Winischhofer 已提交
5752 5753
		struct sis_video_info *countvideo = card_list;
		ivideo->cardnumber = 1;
5754
		while((countvideo = countvideo->next) != NULL)
T
Thomas Winischhofer 已提交
5755
			ivideo->cardnumber++;
L
Linus Torvalds 已提交
5756 5757 5758 5759 5760 5761
	}

	strncpy(ivideo->myid, chipinfo->chip_name, 30);

	ivideo->warncount = 0;
	ivideo->chip_id = pdev->device;
T
Thomas Winischhofer 已提交
5762
	ivideo->chip_vendor = pdev->vendor;
5763
	ivideo->revision_id = pdev->revision;
T
Thomas Winischhofer 已提交
5764
	ivideo->SiS_Pr.ChipRevision = ivideo->revision_id;
L
Linus Torvalds 已提交
5765
	pci_read_config_word(pdev, PCI_COMMAND, &reg16);
T
Thomas Winischhofer 已提交
5766
	ivideo->sisvga_enabled = reg16 & 0x01;
L
Linus Torvalds 已提交
5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788
	ivideo->pcibus = pdev->bus->number;
	ivideo->pcislot = PCI_SLOT(pdev->devfn);
	ivideo->pcifunc = PCI_FUNC(pdev->devfn);
	ivideo->subsysvendor = pdev->subsystem_vendor;
	ivideo->subsysdevice = pdev->subsystem_device;

#ifndef MODULE
	if(sisfb_mode_idx == -1) {
		sisfb_get_vga_mode_from_kernel();
	}
#endif

	ivideo->chip = chipinfo->chip;
	ivideo->sisvga_engine = chipinfo->vgaengine;
	ivideo->hwcursor_size = chipinfo->hwcursor_size;
	ivideo->CRT2_write_enable = chipinfo->CRT2_write_enable;
	ivideo->mni = chipinfo->mni;

	ivideo->detectedpdc  = 0xff;
	ivideo->detectedpdca = 0xff;
	ivideo->detectedlcda = 0xff;

5789
	ivideo->sisfb_thismonitor.datavalid = false;
L
Linus Torvalds 已提交
5790

T
Thomas Winischhofer 已提交
5791 5792 5793 5794 5795
	ivideo->current_base = 0;

	ivideo->engineok = 0;

	ivideo->sisfb_was_boot_device = 0;
A
Adrian Bunk 已提交
5796

T
Thomas Winischhofer 已提交
5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807
	if(pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW) {
		if(ivideo->sisvga_enabled)
			ivideo->sisfb_was_boot_device = 1;
		else {
			printk(KERN_DEBUG "sisfb: PCI device is disabled, "
				"but marked as boot video device ???\n");
			printk(KERN_DEBUG "sisfb: I will not accept this "
				"as the primary VGA device\n");
		}
	}

L
Linus Torvalds 已提交
5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829
	ivideo->sisfb_parm_mem = sisfb_parm_mem;
	ivideo->sisfb_accel = sisfb_accel;
	ivideo->sisfb_ypan = sisfb_ypan;
	ivideo->sisfb_max = sisfb_max;
	ivideo->sisfb_userom = sisfb_userom;
	ivideo->sisfb_useoem = sisfb_useoem;
	ivideo->sisfb_mode_idx = sisfb_mode_idx;
	ivideo->sisfb_parm_rate = sisfb_parm_rate;
	ivideo->sisfb_crt1off = sisfb_crt1off;
	ivideo->sisfb_forcecrt1 = sisfb_forcecrt1;
	ivideo->sisfb_crt2type = sisfb_crt2type;
	ivideo->sisfb_crt2flags = sisfb_crt2flags;
	/* pdc(a), scalelcd, special timing, lvdshl handled below */
	ivideo->sisfb_dstn = sisfb_dstn;
	ivideo->sisfb_fstn = sisfb_fstn;
	ivideo->sisfb_tvplug = sisfb_tvplug;
	ivideo->sisfb_tvstd = sisfb_tvstd;
	ivideo->tvxpos = sisfb_tvxposoffset;
	ivideo->tvypos = sisfb_tvyposoffset;
	ivideo->sisfb_nocrt2rate = sisfb_nocrt2rate;
	ivideo->refresh_rate = 0;
	if(ivideo->sisfb_parm_rate != -1) {
T
Thomas Winischhofer 已提交
5830
		ivideo->refresh_rate = ivideo->sisfb_parm_rate;
L
Linus Torvalds 已提交
5831 5832 5833 5834 5835 5836 5837 5838
	}

	ivideo->SiS_Pr.UsePanelScaler = sisfb_scalelcd;
	ivideo->SiS_Pr.CenterScreen = -1;
	ivideo->SiS_Pr.SiS_CustomT = sisfb_specialtiming;
	ivideo->SiS_Pr.LVDSHL = sisfb_lvdshl;

	ivideo->SiS_Pr.SiS_Backup70xx = 0xff;
T
Thomas Winischhofer 已提交
5839
	ivideo->SiS_Pr.SiS_CHOverScan = -1;
5840 5841 5842 5843 5844 5845
	ivideo->SiS_Pr.SiS_ChSW = false;
	ivideo->SiS_Pr.SiS_UseLCDA = false;
	ivideo->SiS_Pr.HaveEMI = false;
	ivideo->SiS_Pr.HaveEMILCD = false;
	ivideo->SiS_Pr.OverruleEMI = false;
	ivideo->SiS_Pr.SiS_SensibleSR11 = false;
L
Linus Torvalds 已提交
5846 5847 5848
	ivideo->SiS_Pr.SiS_MyCR63 = 0x63;
	ivideo->SiS_Pr.PDC  = -1;
	ivideo->SiS_Pr.PDCA = -1;
5849
	ivideo->SiS_Pr.DDCPortMixup = false;
L
Linus Torvalds 已提交
5850 5851
#ifdef CONFIG_FB_SIS_315
	if(ivideo->chip >= SIS_330) {
T
Thomas Winischhofer 已提交
5852 5853
		ivideo->SiS_Pr.SiS_MyCR63 = 0x53;
		if(ivideo->chip >= SIS_661) {
5854
			ivideo->SiS_Pr.SiS_SensibleSR11 = true;
T
Thomas Winischhofer 已提交
5855
		}
L
Linus Torvalds 已提交
5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867
	}
#endif

	memcpy(&ivideo->default_var, &my_default_var, sizeof(my_default_var));

	pci_set_drvdata(pdev, ivideo);

	/* Patch special cases */
	if((ivideo->nbridge = sisfb_get_northbridge(ivideo->chip))) {
		switch(ivideo->nbridge->device) {
#ifdef CONFIG_FB_SIS_300
		case PCI_DEVICE_ID_SI_730:
T
Thomas Winischhofer 已提交
5868
			ivideo->chip = SIS_730;
L
Linus Torvalds 已提交
5869
			strcpy(ivideo->myid, "SiS 730");
T
Thomas Winischhofer 已提交
5870
			break;
L
Linus Torvalds 已提交
5871 5872 5873 5874 5875 5876 5877
#endif
#ifdef CONFIG_FB_SIS_315
		case PCI_DEVICE_ID_SI_651:
			/* ivideo->chip is ok */
			strcpy(ivideo->myid, "SiS 651");
			break;
		case PCI_DEVICE_ID_SI_740:
T
Thomas Winischhofer 已提交
5878
			ivideo->chip = SIS_740;
L
Linus Torvalds 已提交
5879 5880 5881
			strcpy(ivideo->myid, "SiS 740");
			break;
		case PCI_DEVICE_ID_SI_661:
T
Thomas Winischhofer 已提交
5882
			ivideo->chip = SIS_661;
L
Linus Torvalds 已提交
5883 5884 5885
			strcpy(ivideo->myid, "SiS 661");
			break;
		case PCI_DEVICE_ID_SI_741:
T
Thomas Winischhofer 已提交
5886
			ivideo->chip = SIS_741;
L
Linus Torvalds 已提交
5887 5888 5889
			strcpy(ivideo->myid, "SiS 741");
			break;
		case PCI_DEVICE_ID_SI_760:
T
Thomas Winischhofer 已提交
5890
			ivideo->chip = SIS_760;
L
Linus Torvalds 已提交
5891 5892
			strcpy(ivideo->myid, "SiS 760");
			break;
T
Thomas Winischhofer 已提交
5893 5894 5895 5896
		case PCI_DEVICE_ID_SI_761:
			ivideo->chip = SIS_761;
			strcpy(ivideo->myid, "SiS 761");
			break;
L
Linus Torvalds 已提交
5897
#endif
T
Thomas Winischhofer 已提交
5898 5899
		default:
			break;
L
Linus Torvalds 已提交
5900 5901 5902
		}
	}

T
Thomas Winischhofer 已提交
5903 5904 5905
	ivideo->SiS_Pr.ChipType = ivideo->chip;

	ivideo->SiS_Pr.ivideo = (void *)ivideo;
L
Linus Torvalds 已提交
5906 5907

#ifdef CONFIG_FB_SIS_315
T
Thomas Winischhofer 已提交
5908 5909 5910
	if((ivideo->SiS_Pr.ChipType == SIS_315PRO) ||
	   (ivideo->SiS_Pr.ChipType == SIS_315)) {
		ivideo->SiS_Pr.ChipType = SIS_315H;
L
Linus Torvalds 已提交
5911 5912 5913
	}
#endif

T
Thomas Winischhofer 已提交
5914 5915
	if(!ivideo->sisvga_enabled) {
		if(pci_enable_device(pdev)) {
5916
			if(ivideo->nbridge) pci_dev_put(ivideo->nbridge);
T
Thomas Winischhofer 已提交
5917
			pci_set_drvdata(pdev, NULL);
5918
			framebuffer_release(sis_fb_info);
T
Thomas Winischhofer 已提交
5919 5920 5921 5922
			return -EIO;
		}
	}

L
Linus Torvalds 已提交
5923
	ivideo->video_base = pci_resource_start(pdev, 0);
5924
	ivideo->video_size = pci_resource_len(pdev, 0);
L
Linus Torvalds 已提交
5925 5926
	ivideo->mmio_base  = pci_resource_start(pdev, 1);
	ivideo->mmio_size  = pci_resource_len(pdev, 1);
T
Thomas Winischhofer 已提交
5927 5928
	ivideo->SiS_Pr.RelIO = pci_resource_start(pdev, 2) + 0x30;
	ivideo->SiS_Pr.IOAddress = ivideo->vga_base = ivideo->SiS_Pr.RelIO;
L
Linus Torvalds 已提交
5929

T
Thomas Winischhofer 已提交
5930
	SiSRegInit(&ivideo->SiS_Pr, ivideo->SiS_Pr.IOAddress);
L
Linus Torvalds 已提交
5931 5932 5933 5934

#ifdef CONFIG_FB_SIS_300
	/* Find PCI systems for Chrontel/GPIO communication setup */
	if(ivideo->chip == SIS_630) {
T
Thomas Winischhofer 已提交
5935 5936 5937 5938
		i = 0;
        	do {
			if(mychswtable[i].subsysVendor == ivideo->subsysvendor &&
			   mychswtable[i].subsysCard   == ivideo->subsysdevice) {
5939
				ivideo->SiS_Pr.SiS_ChSW = true;
T
Thomas Winischhofer 已提交
5940 5941 5942 5943
				printk(KERN_DEBUG "sisfb: Identified [%s %s] "
					"requiring Chrontel/GPIO setup\n",
					mychswtable[i].vendorName,
					mychswtable[i].cardName);
5944
				ivideo->lpcdev = pci_get_device(PCI_VENDOR_ID_SI, 0x0008, NULL);
T
Thomas Winischhofer 已提交
5945 5946 5947 5948 5949 5950 5951 5952 5953
				break;
			}
			i++;
		} while(mychswtable[i].subsysVendor != 0);
	}
#endif

#ifdef CONFIG_FB_SIS_315
	if((ivideo->chip == SIS_760) && (ivideo->nbridge)) {
5954
		ivideo->lpcdev = pci_get_slot(ivideo->nbridge->bus, (2 << 3));
L
Linus Torvalds 已提交
5955 5956 5957
	}
#endif

T
Thomas Winischhofer 已提交
5958
	outSISIDXREG(SISSR, 0x05, 0x86);
L
Linus Torvalds 已提交
5959

T
Thomas Winischhofer 已提交
5960
	if( (!ivideo->sisvga_enabled)
L
Linus Torvalds 已提交
5961
#if !defined(__i386__) && !defined(__x86_64__)
T
Thomas Winischhofer 已提交
5962
			      || (sisfb_resetcard)
L
Linus Torvalds 已提交
5963
#endif
T
Thomas Winischhofer 已提交
5964 5965 5966 5967
						   ) {
		for(i = 0x30; i <= 0x3f; i++) {
			outSISIDXREG(SISCR, i, 0x00);
		}
L
Linus Torvalds 已提交
5968 5969 5970 5971
	}

	/* Find out about current video mode */
	ivideo->modeprechange = 0x03;
5972
	reg = SiS_GetReg(SISCR, 0x34);
L
Linus Torvalds 已提交
5973 5974
	if(reg & 0x7f) {
		ivideo->modeprechange = reg & 0x7f;
T
Thomas Winischhofer 已提交
5975
	} else if(ivideo->sisvga_enabled) {
L
Linus Torvalds 已提交
5976
#if defined(__i386__) || defined(__x86_64__)
A
Adrian Bunk 已提交
5977
		unsigned char __iomem *tt = ioremap(0x400, 0x100);
L
Linus Torvalds 已提交
5978
		if(tt) {
T
Thomas Winischhofer 已提交
5979 5980
			ivideo->modeprechange = readb(tt + 0x49);
			iounmap(tt);
L
Linus Torvalds 已提交
5981 5982 5983 5984
		}
#endif
	}

T
Thomas Winischhofer 已提交
5985
	/* Search and copy ROM image */
L
Linus Torvalds 已提交
5986
	ivideo->bios_abase = NULL;
T
Thomas Winischhofer 已提交
5987
	ivideo->SiS_Pr.VirtualRomBase = NULL;
5988 5989
	ivideo->SiS_Pr.UseROM = false;
	ivideo->haveXGIROM = ivideo->SiS_Pr.SiS_XGIROM = false;
L
Linus Torvalds 已提交
5990
	if(ivideo->sisfb_userom) {
T
Thomas Winischhofer 已提交
5991 5992
		ivideo->SiS_Pr.VirtualRomBase = sisfb_find_rom(pdev);
		ivideo->bios_abase = ivideo->SiS_Pr.VirtualRomBase;
5993
		ivideo->SiS_Pr.UseROM = (bool)(ivideo->SiS_Pr.VirtualRomBase);
T
Thomas Winischhofer 已提交
5994 5995 5996
		printk(KERN_INFO "sisfb: Video ROM %sfound\n",
			ivideo->SiS_Pr.UseROM ? "" : "not ");
		if((ivideo->SiS_Pr.UseROM) && (ivideo->chip >= XGI_20)) {
5997 5998
		   ivideo->SiS_Pr.UseROM = false;
		   ivideo->haveXGIROM = ivideo->SiS_Pr.SiS_XGIROM = true;
T
Thomas Winischhofer 已提交
5999 6000
		   if( (ivideo->revision_id == 2) &&
		       (!(ivideo->bios_abase[0x1d1] & 0x01)) ) {
6001
			ivideo->SiS_Pr.DDCPortMixup = true;
T
Thomas Winischhofer 已提交
6002 6003
		   }
		}
L
Linus Torvalds 已提交
6004
	} else {
T
Thomas Winischhofer 已提交
6005
		printk(KERN_INFO "sisfb: Video ROM usage disabled\n");
L
Linus Torvalds 已提交
6006 6007
	}

T
Thomas Winischhofer 已提交
6008
	/* Find systems for special custom timing */
L
Linus Torvalds 已提交
6009
	if(ivideo->SiS_Pr.SiS_CustomT == CUT_NONE) {
T
Thomas Winischhofer 已提交
6010
		sisfb_detect_custom_timing(ivideo);
L
Linus Torvalds 已提交
6011 6012
	}

T
Thomas Winischhofer 已提交
6013 6014
	/* POST card in case this has not been done by the BIOS */
	if( (!ivideo->sisvga_enabled)
L
Linus Torvalds 已提交
6015
#if !defined(__i386__) && !defined(__x86_64__)
T
Thomas Winischhofer 已提交
6016
			     || (sisfb_resetcard)
L
Linus Torvalds 已提交
6017
#endif
T
Thomas Winischhofer 已提交
6018 6019 6020
						 ) {
#ifdef CONFIG_FB_SIS_300
		if(ivideo->sisvga_engine == SIS_300_VGA) {
L
Linus Torvalds 已提交
6021 6022
			if(ivideo->chip == SIS_300) {
				sisfb_post_sis300(pdev);
T
Thomas Winischhofer 已提交
6023
				ivideo->sisfb_can_post = 1;
L
Linus Torvalds 已提交
6024 6025 6026 6027 6028
			}
		}
#endif

#ifdef CONFIG_FB_SIS_315
T
Thomas Winischhofer 已提交
6029 6030 6031
		if(ivideo->sisvga_engine == SIS_315_VGA) {
			int result = 1;
		/*	if((ivideo->chip == SIS_315H)   ||
L
Linus Torvalds 已提交
6032 6033 6034 6035
			   (ivideo->chip == SIS_315)    ||
			   (ivideo->chip == SIS_315PRO) ||
			   (ivideo->chip == SIS_330)) {
				sisfb_post_sis315330(pdev);
T
Thomas Winischhofer 已提交
6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049
			} else */ if(ivideo->chip == XGI_20) {
				result = sisfb_post_xgi(pdev);
				ivideo->sisfb_can_post = 1;
			} else if((ivideo->chip == XGI_40) && ivideo->haveXGIROM) {
				result = sisfb_post_xgi(pdev);
				ivideo->sisfb_can_post = 1;
			} else {
				printk(KERN_INFO "sisfb: Card is not "
					"POSTed and sisfb can't do this either.\n");
			}
			if(!result) {
				printk(KERN_ERR "sisfb: Failed to POST card\n");
				ret = -ENODEV;
				goto error_3;
L
Linus Torvalds 已提交
6050 6051 6052
			}
		}
#endif
T
Thomas Winischhofer 已提交
6053
	}
L
Linus Torvalds 已提交
6054

T
Thomas Winischhofer 已提交
6055 6056 6057
	ivideo->sisfb_card_posted = 1;

	/* Find out about RAM size */
L
Linus Torvalds 已提交
6058
	if(sisfb_get_dram_size(ivideo)) {
T
Thomas Winischhofer 已提交
6059 6060 6061
		printk(KERN_INFO "sisfb: Fatal error: Unable to determine VRAM size.\n");
		ret = -ENODEV;
		goto error_3;
L
Linus Torvalds 已提交
6062 6063
	}

T
Thomas Winischhofer 已提交
6064 6065

	/* Enable PCI addressing and MMIO */
L
Linus Torvalds 已提交
6066 6067
	if((ivideo->sisfb_mode_idx < 0) ||
	   ((sisbios_mode[ivideo->sisfb_mode_idx].mode_no[ivideo->mni]) != 0xFF)) {
T
Thomas Winischhofer 已提交
6068 6069 6070 6071
		/* Enable PCI_LINEAR_ADDRESSING and MMIO_ENABLE  */
		orSISIDXREG(SISSR, IND_SIS_PCI_ADDRESS_SET, (SIS_PCI_ADDR_ENABLE | SIS_MEM_MAP_IO_ENABLE));
		/* Enable 2D accelerator engine */
		orSISIDXREG(SISSR, IND_SIS_MODULE_ENABLE, SIS_ENABLE_2D);
L
Linus Torvalds 已提交
6072 6073 6074
	}

	if(sisfb_pdc != 0xff) {
T
Thomas Winischhofer 已提交
6075 6076 6077 6078 6079
		if(ivideo->sisvga_engine == SIS_300_VGA)
			sisfb_pdc &= 0x3c;
		else
			sisfb_pdc &= 0x1f;
		ivideo->SiS_Pr.PDC = sisfb_pdc;
L
Linus Torvalds 已提交
6080 6081 6082
	}
#ifdef CONFIG_FB_SIS_315
	if(ivideo->sisvga_engine == SIS_315_VGA) {
T
Thomas Winischhofer 已提交
6083 6084
		if(sisfb_pdca != 0xff)
			ivideo->SiS_Pr.PDCA = sisfb_pdca & 0x1f;
L
Linus Torvalds 已提交
6085 6086 6087 6088
	}
#endif

	if(!request_mem_region(ivideo->video_base, ivideo->video_size, "sisfb FB")) {
T
Thomas Winischhofer 已提交
6089 6090
		printk(KERN_ERR "sisfb: Fatal error: Unable to reserve %dMB framebuffer memory\n",
				(int)(ivideo->video_size >> 20));
L
Linus Torvalds 已提交
6091
		printk(KERN_ERR "sisfb: Is there another framebuffer driver active?\n");
T
Thomas Winischhofer 已提交
6092 6093
		ret = -ENODEV;
		goto error_3;
L
Linus Torvalds 已提交
6094 6095 6096 6097
	}

	if(!request_mem_region(ivideo->mmio_base, ivideo->mmio_size, "sisfb MMIO")) {
		printk(KERN_ERR "sisfb: Fatal error: Unable to reserve MMIO region\n");
T
Thomas Winischhofer 已提交
6098 6099
		ret = -ENODEV;
		goto error_2;
L
Linus Torvalds 已提交
6100 6101 6102
	}

	ivideo->video_vbase = ioremap(ivideo->video_base, ivideo->video_size);
T
Thomas Winischhofer 已提交
6103
	ivideo->SiS_Pr.VideoMemoryAddress = ivideo->video_vbase;
L
Linus Torvalds 已提交
6104
	if(!ivideo->video_vbase) {
T
Thomas Winischhofer 已提交
6105 6106 6107
		printk(KERN_ERR "sisfb: Fatal error: Unable to map framebuffer memory\n");
		ret = -ENODEV;
		goto error_1;
L
Linus Torvalds 已提交
6108 6109 6110 6111
	}

	ivideo->mmio_vbase = ioremap(ivideo->mmio_base, ivideo->mmio_size);
	if(!ivideo->mmio_vbase) {
T
Thomas Winischhofer 已提交
6112 6113 6114 6115 6116 6117 6118
		printk(KERN_ERR "sisfb: Fatal error: Unable to map MMIO region\n");
		ret = -ENODEV;
error_0:	iounmap(ivideo->video_vbase);
error_1:	release_mem_region(ivideo->video_base, ivideo->video_size);
error_2:	release_mem_region(ivideo->mmio_base, ivideo->mmio_size);
error_3:	vfree(ivideo->bios_abase);
		if(ivideo->lpcdev)
6119
			pci_dev_put(ivideo->lpcdev);
T
Thomas Winischhofer 已提交
6120
		if(ivideo->nbridge)
6121
			pci_dev_put(ivideo->nbridge);
L
Linus Torvalds 已提交
6122
		pci_set_drvdata(pdev, NULL);
T
Thomas Winischhofer 已提交
6123 6124
		if(!ivideo->sisvga_enabled)
			pci_disable_device(pdev);
6125
		framebuffer_release(sis_fb_info);
T
Thomas Winischhofer 已提交
6126
		return ret;
L
Linus Torvalds 已提交
6127 6128
	}

T
Thomas Winischhofer 已提交
6129 6130 6131 6132 6133 6134 6135
	printk(KERN_INFO "sisfb: Video RAM at 0x%lx, mapped to 0x%lx, size %ldk\n",
		ivideo->video_base, (unsigned long)ivideo->video_vbase, ivideo->video_size / 1024);

	if(ivideo->video_offset) {
		printk(KERN_INFO "sisfb: Viewport offset %ldk\n",
			ivideo->video_offset / 1024);
	}
L
Linus Torvalds 已提交
6136 6137

	printk(KERN_INFO "sisfb: MMIO at 0x%lx, mapped to 0x%lx, size %ldk\n",
T
Thomas Winischhofer 已提交
6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150
		ivideo->mmio_base, (unsigned long)ivideo->mmio_vbase, ivideo->mmio_size / 1024);


	/* Determine the size of the command queue */
	if(ivideo->sisvga_engine == SIS_300_VGA) {
		ivideo->cmdQueueSize = TURBO_QUEUE_AREA_SIZE;
	} else {
		if(ivideo->chip == XGI_20) {
			ivideo->cmdQueueSize = COMMAND_QUEUE_AREA_SIZE_Z7;
		} else {
			ivideo->cmdQueueSize = COMMAND_QUEUE_AREA_SIZE;
		}
	}
L
Linus Torvalds 已提交
6151

T
Thomas Winischhofer 已提交
6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164
	/* Engines are no longer initialized here; this is
	 * now done after the first mode-switch (if the
	 * submitted var has its acceleration flags set).
	 */

	/* Calculate the base of the (unused) hw cursor */
	ivideo->hwcursor_vbase = ivideo->video_vbase
				 + ivideo->video_size
				 - ivideo->cmdQueueSize
				 - ivideo->hwcursor_size;
	ivideo->caps |= HW_CURSOR_CAP;

	/* Initialize offscreen memory manager */
L
Linus Torvalds 已提交
6165 6166 6167 6168 6169
	if((ivideo->havenoheap = sisfb_heap_init(ivideo))) {
		printk(KERN_WARNING "sisfb: Failed to initialize offscreen memory heap\n");
	}

	/* Used for clearing the screen only, therefore respect our mem limit */
T
Thomas Winischhofer 已提交
6170 6171
	ivideo->SiS_Pr.VideoMemoryAddress += ivideo->video_offset;
	ivideo->SiS_Pr.VideoMemorySize = ivideo->sisfb_mem;
L
Linus Torvalds 已提交
6172

T
Thomas Winischhofer 已提交
6173
	ivideo->mtrr = -1;
L
Linus Torvalds 已提交
6174 6175 6176 6177 6178 6179

	ivideo->vbflags = 0;
	ivideo->lcddefmodeidx = DEFAULT_LCDMODE;
	ivideo->tvdefmodeidx  = DEFAULT_TVMODE;
	ivideo->defmodeidx    = DEFAULT_MODE;

T
Thomas Winischhofer 已提交
6180 6181 6182 6183 6184 6185
	ivideo->newrom = 0;
	if(ivideo->chip < XGI_20) {
		if(ivideo->bios_abase) {
			ivideo->newrom = SiSDetermineROMLayout661(&ivideo->SiS_Pr);
		}
	}
L
Linus Torvalds 已提交
6186 6187 6188 6189 6190 6191 6192 6193

	if((ivideo->sisfb_mode_idx < 0) ||
	   ((sisbios_mode[ivideo->sisfb_mode_idx].mode_no[ivideo->mni]) != 0xFF)) {

		sisfb_sense_crt1(ivideo);

		sisfb_get_VB_type(ivideo);

T
Thomas Winischhofer 已提交
6194
		if(ivideo->vbflags2 & VB2_VIDEOBRIDGE) {
L
Linus Torvalds 已提交
6195 6196 6197 6198 6199
			sisfb_detect_VB_connect(ivideo);
		}

		ivideo->currentvbflags = ivideo->vbflags & (VB_VIDEOBRIDGE | TV_STANDARD);

T
Thomas Winischhofer 已提交
6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229
		/* Decide on which CRT2 device to use */
		if(ivideo->vbflags2 & VB2_VIDEOBRIDGE) {
			if(ivideo->sisfb_crt2type != -1) {
				if((ivideo->sisfb_crt2type == CRT2_LCD) &&
				   (ivideo->vbflags & CRT2_LCD)) {
					ivideo->currentvbflags |= CRT2_LCD;
				} else if(ivideo->sisfb_crt2type != CRT2_LCD) {
					ivideo->currentvbflags |= ivideo->sisfb_crt2type;
				}
			} else {
				/* Chrontel 700x TV detection often unreliable, therefore
				 * use a different default order on such machines
				 */
				if((ivideo->sisvga_engine == SIS_300_VGA) &&
				   (ivideo->vbflags2 & VB2_CHRONTEL)) {
					if(ivideo->vbflags & CRT2_LCD)
						ivideo->currentvbflags |= CRT2_LCD;
					else if(ivideo->vbflags & CRT2_TV)
						ivideo->currentvbflags |= CRT2_TV;
					else if(ivideo->vbflags & CRT2_VGA)
						ivideo->currentvbflags |= CRT2_VGA;
				} else {
					if(ivideo->vbflags & CRT2_TV)
						ivideo->currentvbflags |= CRT2_TV;
					else if(ivideo->vbflags & CRT2_LCD)
						ivideo->currentvbflags |= CRT2_LCD;
					else if(ivideo->vbflags & CRT2_VGA)
						ivideo->currentvbflags |= CRT2_VGA;
				}
			}
L
Linus Torvalds 已提交
6230 6231 6232
		}

		if(ivideo->vbflags & CRT2_LCD) {
T
Thomas Winischhofer 已提交
6233
			sisfb_detect_lcd_type(ivideo);
L
Linus Torvalds 已提交
6234 6235
		}

T
Thomas Winischhofer 已提交
6236
		sisfb_save_pdc_emi(ivideo);
L
Linus Torvalds 已提交
6237 6238

		if(!ivideo->sisfb_crt1off) {
T
Thomas Winischhofer 已提交
6239
			sisfb_handle_ddc(ivideo, &ivideo->sisfb_thismonitor, 0);
L
Linus Torvalds 已提交
6240
		} else {
T
Thomas Winischhofer 已提交
6241 6242 6243 6244
			if((ivideo->vbflags2 & VB2_SISTMDSBRIDGE) &&
			   (ivideo->vbflags & (CRT2_VGA | CRT2_LCD))) {
				sisfb_handle_ddc(ivideo, &ivideo->sisfb_thismonitor, 1);
			}
L
Linus Torvalds 已提交
6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275
		}

		if(ivideo->sisfb_mode_idx >= 0) {
			int bu = ivideo->sisfb_mode_idx;
			ivideo->sisfb_mode_idx = sisfb_validate_mode(ivideo,
					ivideo->sisfb_mode_idx, ivideo->currentvbflags);
			if(bu != ivideo->sisfb_mode_idx) {
				printk(KERN_ERR "Mode %dx%dx%d failed validation\n",
					sisbios_mode[bu].xres,
					sisbios_mode[bu].yres,
					sisbios_mode[bu].bpp);
			}
		}

		if(ivideo->sisfb_mode_idx < 0) {
			switch(ivideo->currentvbflags & VB_DISPTYPE_DISP2) {
			   case CRT2_LCD:
				ivideo->sisfb_mode_idx = ivideo->lcddefmodeidx;
				break;
			   case CRT2_TV:
				ivideo->sisfb_mode_idx = ivideo->tvdefmodeidx;
				break;
			   default:
				ivideo->sisfb_mode_idx = ivideo->defmodeidx;
				break;
			}
		}

		ivideo->mode_no = sisbios_mode[ivideo->sisfb_mode_idx].mode_no[ivideo->mni];

		if(ivideo->refresh_rate != 0) {
T
Thomas Winischhofer 已提交
6276 6277
			sisfb_search_refresh_rate(ivideo, ivideo->refresh_rate,
						ivideo->sisfb_mode_idx);
L
Linus Torvalds 已提交
6278 6279 6280 6281 6282 6283 6284 6285
		}

		if(ivideo->rate_idx == 0) {
			ivideo->rate_idx = sisbios_mode[ivideo->sisfb_mode_idx].rate_idx;
			ivideo->refresh_rate = 60;
		}

		if(ivideo->sisfb_thismonitor.datavalid) {
T
Thomas Winischhofer 已提交
6286 6287 6288 6289 6290 6291
			if(!sisfb_verify_rate(ivideo, &ivideo->sisfb_thismonitor,
						ivideo->sisfb_mode_idx,
						ivideo->rate_idx,
						ivideo->refresh_rate)) {
				printk(KERN_INFO "sisfb: WARNING: Refresh rate "
							"exceeds monitor specs!\n");
L
Linus Torvalds 已提交
6292 6293 6294 6295 6296 6297 6298 6299 6300 6301
			}
		}

		ivideo->video_bpp = sisbios_mode[ivideo->sisfb_mode_idx].bpp;
		ivideo->video_width = sisbios_mode[ivideo->sisfb_mode_idx].xres;
		ivideo->video_height = sisbios_mode[ivideo->sisfb_mode_idx].yres;

		sisfb_set_vparms(ivideo);

		printk(KERN_INFO "sisfb: Default mode is %dx%dx%d (%dHz)\n",
T
Thomas Winischhofer 已提交
6302
			ivideo->video_width, ivideo->video_height, ivideo->video_bpp,
L
Linus Torvalds 已提交
6303 6304
			ivideo->refresh_rate);

T
Thomas Winischhofer 已提交
6305
		/* Set up the default var according to chosen default display mode */
L
Linus Torvalds 已提交
6306 6307 6308 6309 6310
		ivideo->default_var.xres = ivideo->default_var.xres_virtual = ivideo->video_width;
		ivideo->default_var.yres = ivideo->default_var.yres_virtual = ivideo->video_height;
		ivideo->default_var.bits_per_pixel = ivideo->video_bpp;

		sisfb_bpp_to_var(ivideo, &ivideo->default_var);
T
Thomas Winischhofer 已提交
6311

L
Linus Torvalds 已提交
6312
		ivideo->default_var.pixclock = (u32) (1000000000 /
T
Thomas Winischhofer 已提交
6313 6314 6315 6316 6317 6318 6319 6320
			sisfb_mode_rate_to_dclock(&ivideo->SiS_Pr, ivideo->mode_no, ivideo->rate_idx));

		if(sisfb_mode_rate_to_ddata(&ivideo->SiS_Pr, ivideo->mode_no,
						ivideo->rate_idx, &ivideo->default_var)) {
			if((ivideo->default_var.vmode & FB_VMODE_MASK) == FB_VMODE_DOUBLE) {
				ivideo->default_var.pixclock <<= 1;
			}
		}
L
Linus Torvalds 已提交
6321 6322

		if(ivideo->sisfb_ypan) {
T
Thomas Winischhofer 已提交
6323 6324 6325 6326 6327 6328
			/* Maximize regardless of sisfb_max at startup */
			ivideo->default_var.yres_virtual =
				sisfb_calc_maxyres(ivideo, &ivideo->default_var);
			if(ivideo->default_var.yres_virtual < ivideo->default_var.yres) {
				ivideo->default_var.yres_virtual = ivideo->default_var.yres;
			}
L
Linus Torvalds 已提交
6329 6330 6331 6332 6333 6334
		}

		sisfb_calc_pitch(ivideo, &ivideo->default_var);

		ivideo->accel = 0;
		if(ivideo->sisfb_accel) {
T
Thomas Winischhofer 已提交
6335
			ivideo->accel = -1;
L
Linus Torvalds 已提交
6336
#ifdef STUPID_ACCELF_TEXT_SHIT
T
Thomas Winischhofer 已提交
6337
			ivideo->default_var.accel_flags |= FB_ACCELF_TEXT;
L
Linus Torvalds 已提交
6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353
#endif
		}
		sisfb_initaccel(ivideo);

#if defined(FBINFO_HWACCEL_DISABLED) && defined(FBINFO_HWACCEL_XPAN)
		sis_fb_info->flags = FBINFO_DEFAULT 		|
				     FBINFO_HWACCEL_YPAN 	|
				     FBINFO_HWACCEL_XPAN 	|
				     FBINFO_HWACCEL_COPYAREA 	|
				     FBINFO_HWACCEL_FILLRECT 	|
				     ((ivideo->accel) ? 0 : FBINFO_HWACCEL_DISABLED);
#else
		sis_fb_info->flags = FBINFO_FLAG_DEFAULT;
#endif
		sis_fb_info->var = ivideo->default_var;
		sis_fb_info->fix = ivideo->sisfb_fix;
T
Thomas Winischhofer 已提交
6354
		sis_fb_info->screen_base = ivideo->video_vbase + ivideo->video_offset;
L
Linus Torvalds 已提交
6355 6356
		sis_fb_info->fbops = &sisfb_ops;
		sis_fb_info->pseudo_palette = ivideo->pseudo_palette;
T
Thomas Winischhofer 已提交
6357

L
Linus Torvalds 已提交
6358 6359
		fb_alloc_cmap(&sis_fb_info->cmap, 256 , 0);

T
Thomas Winischhofer 已提交
6360
		printk(KERN_DEBUG "sisfb: Initial vbflags 0x%x\n", (int)ivideo->vbflags);
L
Linus Torvalds 已提交
6361 6362 6363 6364

#ifdef CONFIG_MTRR
		ivideo->mtrr = mtrr_add(ivideo->video_base, ivideo->video_size,
					MTRR_TYPE_WRCOMB, 1);
T
Thomas Winischhofer 已提交
6365
		if(ivideo->mtrr < 0) {
L
Linus Torvalds 已提交
6366 6367 6368 6369 6370 6371
			printk(KERN_DEBUG "sisfb: Failed to add MTRRs\n");
		}
#endif

		if(register_framebuffer(sis_fb_info) < 0) {
			printk(KERN_ERR "sisfb: Fatal error: Failed to register framebuffer\n");
T
Thomas Winischhofer 已提交
6372
			ret = -EINVAL;
L
Linus Torvalds 已提交
6373
			iounmap(ivideo->mmio_vbase);
T
Thomas Winischhofer 已提交
6374
			goto error_0;
L
Linus Torvalds 已提交
6375 6376 6377 6378 6379 6380 6381 6382 6383
		}

		ivideo->registered = 1;

		/* Enlist us */
		ivideo->next = card_list;
		card_list = ivideo;

		printk(KERN_INFO "sisfb: 2D acceleration is %s, y-panning %s\n",
T
Thomas Winischhofer 已提交
6384 6385 6386 6387 6388
			ivideo->sisfb_accel ? "enabled" : "disabled",
			ivideo->sisfb_ypan  ?
				(ivideo->sisfb_max ? "enabled (auto-max)" :
						"enabled (no auto-max)") :
									"disabled");
L
Linus Torvalds 已提交
6389 6390


T
Thomas Winischhofer 已提交
6391
		printk(KERN_INFO "fb%d: %s frame buffer device version %d.%d.%d\n",
6392
			sis_fb_info->node, ivideo->myid, VER_MAJOR, VER_MINOR, VER_LEVEL);
L
Linus Torvalds 已提交
6393

T
Thomas Winischhofer 已提交
6394
		printk(KERN_INFO "sisfb: Copyright (C) 2001-2005 Thomas Winischhofer\n");
L
Linus Torvalds 已提交
6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406

	}	/* if mode = "none" */

	return 0;
}

/*****************************************************/
/*                PCI DEVICE HANDLING                */
/*****************************************************/

static void __devexit sisfb_remove(struct pci_dev *pdev)
{
T
Thomas Winischhofer 已提交
6407 6408 6409 6410 6411
	struct sis_video_info	*ivideo = pci_get_drvdata(pdev);
	struct fb_info		*sis_fb_info = ivideo->memyselfandi;
	int			registered = ivideo->registered;
	int			modechanged = ivideo->modechanged;

L
Linus Torvalds 已提交
6412 6413
	/* Unmap */
	iounmap(ivideo->mmio_vbase);
T
Thomas Winischhofer 已提交
6414
	iounmap(ivideo->video_vbase);
L
Linus Torvalds 已提交
6415 6416 6417 6418 6419

	/* Release mem regions */
	release_mem_region(ivideo->video_base, ivideo->video_size);
	release_mem_region(ivideo->mmio_base, ivideo->mmio_size);

T
Thomas Winischhofer 已提交
6420 6421 6422
	vfree(ivideo->bios_abase);

	if(ivideo->lpcdev)
6423
		pci_dev_put(ivideo->lpcdev);
T
Thomas Winischhofer 已提交
6424 6425

	if(ivideo->nbridge)
6426
		pci_dev_put(ivideo->nbridge);
T
Thomas Winischhofer 已提交
6427

L
Linus Torvalds 已提交
6428 6429
#ifdef CONFIG_MTRR
	/* Release MTRR region */
T
Thomas Winischhofer 已提交
6430
	if(ivideo->mtrr >= 0)
L
Linus Torvalds 已提交
6431 6432 6433
		mtrr_del(ivideo->mtrr, ivideo->video_base, ivideo->video_size);
#endif

T
Thomas Winischhofer 已提交
6434 6435 6436 6437 6438 6439 6440 6441
	pci_set_drvdata(pdev, NULL);

	/* If device was disabled when starting, disable
	 * it when quitting.
	 */
	if(!ivideo->sisvga_enabled)
		pci_disable_device(pdev);

L
Linus Torvalds 已提交
6442 6443 6444 6445 6446 6447
	/* Unregister the framebuffer */
	if(ivideo->registered) {
		unregister_framebuffer(sis_fb_info);
		framebuffer_release(sis_fb_info);
	}

T
Thomas Winischhofer 已提交
6448
	/* OK, our ivideo is gone for good from here. */
L
Linus Torvalds 已提交
6449 6450 6451 6452 6453 6454 6455 6456

	/* TODO: Restore the initial mode
	 * This sounds easy but is as good as impossible
	 * on many machines with SiS chip and video bridge
	 * since text modes are always set up differently
	 * from machine to machine. Depends on the type
	 * of integration between chipset and bridge.
	 */
T
Thomas Winischhofer 已提交
6457 6458 6459
	if(registered && modechanged)
		printk(KERN_INFO
			"sisfb: Restoring of text mode not supported yet\n");
L
Linus Torvalds 已提交
6460 6461 6462 6463 6464
};

static struct pci_driver sisfb_driver = {
	.name		= "sisfb",
	.id_table 	= sisfb_pci_table,
T
Thomas Winischhofer 已提交
6465
	.probe		= sisfb_probe,
L
Linus Torvalds 已提交
6466 6467 6468
	.remove 	= __devexit_p(sisfb_remove)
};

A
Adrian Bunk 已提交
6469
static int __init sisfb_init(void)
L
Linus Torvalds 已提交
6470 6471 6472 6473 6474 6475
{
#ifndef MODULE
	char *options = NULL;

	if(fb_get_options("sisfb", &options))
		return -ENODEV;
T
Thomas Winischhofer 已提交
6476

L
Linus Torvalds 已提交
6477 6478
	sisfb_setup(options);
#endif
T
Thomas Winischhofer 已提交
6479
	return pci_register_driver(&sisfb_driver);
L
Linus Torvalds 已提交
6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491
}

#ifndef MODULE
module_init(sisfb_init);
#endif

/*****************************************************/
/*                      MODULE                       */
/*****************************************************/

#ifdef MODULE

T
Thomas Winischhofer 已提交
6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535
static char		*mode = NULL;
static int		vesa = -1;
static unsigned int	rate = 0;
static unsigned int	crt1off = 1;
static unsigned int	mem = 0;
static char		*forcecrt2type = NULL;
static int		forcecrt1 = -1;
static int		pdc = -1;
static int		pdc1 = -1;
static int		noaccel = -1;
static int		noypan  = -1;
static int		nomax = -1;
static int		userom = -1;
static int		useoem = -1;
static char		*tvstandard = NULL;
static int		nocrt2rate = 0;
static int		scalelcd = -1;
static char		*specialtiming = NULL;
static int		lvdshl = -1;
static int		tvxposoffset = 0, tvyposoffset = 0;
#if !defined(__i386__) && !defined(__x86_64__)
static int		resetcard = 0;
static int		videoram = 0;
#endif

static int __init sisfb_init_module(void)
{
	sisfb_setdefaultparms();

	if(rate)
		sisfb_parm_rate = rate;

	if((scalelcd == 0) || (scalelcd == 1))
		sisfb_scalelcd = scalelcd ^ 1;

	/* Need to check crt2 type first for fstn/dstn */

	if(forcecrt2type)
		sisfb_search_crt2type(forcecrt2type);

	if(tvstandard)
		sisfb_search_tvstd(tvstandard);

	if(mode)
6536
		sisfb_search_mode(mode, false);
T
Thomas Winischhofer 已提交
6537
	else if(vesa != -1)
6538
		sisfb_search_vesamode(vesa, false);
T
Thomas Winischhofer 已提交
6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588

	sisfb_crt1off = (crt1off == 0) ? 1 : 0;

	sisfb_forcecrt1 = forcecrt1;
	if(forcecrt1 == 1)
		sisfb_crt1off = 0;
	else if(forcecrt1 == 0)
		sisfb_crt1off = 1;

	if(noaccel == 1)
		sisfb_accel = 0;
	else if(noaccel == 0)
		sisfb_accel = 1;

	if(noypan == 1)
		sisfb_ypan = 0;
	else if(noypan == 0)
		sisfb_ypan = 1;

	if(nomax == 1)
		sisfb_max = 0;
	else if(nomax == 0)
		sisfb_max = 1;

	if(mem)
		sisfb_parm_mem = mem;

	if(userom != -1)
		sisfb_userom = userom;

	if(useoem != -1)
		sisfb_useoem = useoem;

        if(pdc != -1)
		sisfb_pdc  = (pdc  & 0x7f);

	if(pdc1 != -1)
		sisfb_pdca = (pdc1 & 0x1f);

	sisfb_nocrt2rate = nocrt2rate;

	if(specialtiming)
		sisfb_search_specialtiming(specialtiming);

	if((lvdshl >= 0) && (lvdshl <= 3))
		sisfb_lvdshl = lvdshl;

	sisfb_tvxposoffset = tvxposoffset;
	sisfb_tvyposoffset = tvyposoffset;

L
Linus Torvalds 已提交
6589
#if !defined(__i386__) && !defined(__x86_64__)
T
Thomas Winischhofer 已提交
6590 6591 6592
	sisfb_resetcard = (resetcard) ? 1 : 0;
	if(videoram)
		sisfb_videoram = videoram;
L
Linus Torvalds 已提交
6593 6594
#endif

T
Thomas Winischhofer 已提交
6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607
	return sisfb_init();
}

static void __exit sisfb_remove_module(void)
{
	pci_unregister_driver(&sisfb_driver);
	printk(KERN_DEBUG "sisfb: Module unloaded\n");
}

module_init(sisfb_init_module);
module_exit(sisfb_remove_module);

MODULE_DESCRIPTION("SiS 300/540/630/730/315/55x/65x/661/74x/330/76x/34x, XGI V3XT/V5/V8/Z7 framebuffer device driver");
L
Linus Torvalds 已提交
6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Thomas Winischhofer <thomas@winischhofer.net>, Others");

module_param(mem, int, 0);
module_param(noaccel, int, 0);
module_param(noypan, int, 0);
module_param(nomax, int, 0);
module_param(userom, int, 0);
module_param(useoem, int, 0);
module_param(mode, charp, 0);
module_param(vesa, int, 0);
module_param(rate, int, 0);
module_param(forcecrt1, int, 0);
module_param(forcecrt2type, charp, 0);
module_param(scalelcd, int, 0);
module_param(pdc, int, 0);
module_param(pdc1, int, 0);
module_param(specialtiming, charp, 0);
module_param(lvdshl, int, 0);
module_param(tvstandard, charp, 0);
module_param(tvxposoffset, int, 0);
module_param(tvyposoffset, int, 0);
module_param(nocrt2rate, int, 0);
#if !defined(__i386__) && !defined(__x86_64__)
module_param(resetcard, int, 0);
module_param(videoram, int, 0);
#endif

T
Thomas Winischhofer 已提交
6636 6637 6638 6639 6640 6641 6642
MODULE_PARM_DESC(mem,
	"\nDetermines the beginning of the video memory heap in KB. This heap is used\n"
	  "for video RAM management for eg. DRM/DRI. On 300 series, the default depends\n"
	  "on the amount of video RAM available. If 8MB of video RAM or less is available,\n"
	  "the heap starts at 4096KB, if between 8 and 16MB are available at 8192KB,\n"
	  "otherwise at 12288KB. On 315/330/340 series, the heap size is 32KB by default.\n"
	  "The value is to be specified without 'KB'.\n");
L
Linus Torvalds 已提交
6643 6644

MODULE_PARM_DESC(noaccel,
T
Thomas Winischhofer 已提交
6645
	"\nIf set to anything other than 0, 2D acceleration will be disabled.\n"
L
Linus Torvalds 已提交
6646 6647 6648
	  "(default: 0)\n");

MODULE_PARM_DESC(noypan,
T
Thomas Winischhofer 已提交
6649 6650
	"\nIf set to anything other than 0, y-panning will be disabled and scrolling\n"
	  "will be performed by redrawing the screen. (default: 0)\n");
L
Linus Torvalds 已提交
6651 6652

MODULE_PARM_DESC(nomax,
T
Thomas Winischhofer 已提交
6653
	"\nIf y-panning is enabled, sisfb will by default use the entire available video\n"
L
Linus Torvalds 已提交
6654 6655 6656 6657 6658 6659
	  "memory for the virtual screen in order to optimize scrolling performance. If\n"
	  "this is set to anything other than 0, sisfb will not do this and thereby \n"
	  "enable the user to positively specify a virtual Y size of the screen using\n"
	  "fbset. (default: 0)\n");

MODULE_PARM_DESC(mode,
T
Thomas Winischhofer 已提交
6660 6661
	"\nSelects the desired default display mode in the format XxYxDepth,\n"
	 "eg. 1024x768x16. Other formats supported include XxY-Depth and\n"
L
Linus Torvalds 已提交
6662 6663 6664 6665
	 "XxY-Depth@Rate. If the parameter is only one (decimal or hexadecimal)\n"
	 "number, it will be interpreted as a VESA mode number. (default: 800x600x8)\n");

MODULE_PARM_DESC(vesa,
T
Thomas Winischhofer 已提交
6666 6667
	"\nSelects the desired default display mode by VESA defined mode number, eg.\n"
	 "0x117 (default: 0x0103)\n");
L
Linus Torvalds 已提交
6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695

MODULE_PARM_DESC(rate,
	"\nSelects the desired vertical refresh rate for CRT1 (external VGA) in Hz.\n"
	  "If the mode is specified in the format XxY-Depth@Rate, this parameter\n"
	  "will be ignored (default: 60)\n");

MODULE_PARM_DESC(forcecrt1,
	"\nNormally, the driver autodetects whether or not CRT1 (external VGA) is \n"
	  "connected. With this option, the detection can be overridden (1=CRT1 ON,\n"
	  "0=CRT1 OFF) (default: [autodetected])\n");

MODULE_PARM_DESC(forcecrt2type,
	"\nIf this option is omitted, the driver autodetects CRT2 output devices, such as\n"
	  "LCD, TV or secondary VGA. With this option, this autodetection can be\n"
	  "overridden. Possible parameters are LCD, TV, VGA or NONE. NONE disables CRT2.\n"
	  "On systems with a SiS video bridge, parameters SVIDEO, COMPOSITE or SCART can\n"
	  "be used instead of TV to override the TV detection. Furthermore, on systems\n"
	  "with a SiS video bridge, SVIDEO+COMPOSITE, HIVISION, YPBPR480I, YPBPR480P,\n"
	  "YPBPR720P and YPBPR1080I are understood. However, whether or not these work\n"
	  "depends on the very hardware in use. (default: [autodetected])\n");

MODULE_PARM_DESC(scalelcd,
	"\nSetting this to 1 will force the driver to scale the LCD image to the panel's\n"
	  "native resolution. Setting it to 0 will disable scaling; LVDS panels will\n"
	  "show black bars around the image, TMDS panels will probably do the scaling\n"
	  "themselves. Default: 1 on LVDS panels, 0 on TMDS panels\n");

MODULE_PARM_DESC(pdc,
T
Thomas Winischhofer 已提交
6696
	"\nThis is for manually selecting the LCD panel delay compensation. The driver\n"
L
Linus Torvalds 已提交
6697 6698
	  "should detect this correctly in most cases; however, sometimes this is not\n"
	  "possible. If you see 'small waves' on the LCD, try setting this to 4, 32 or 24\n"
T
Thomas Winischhofer 已提交
6699 6700 6701
	  "on a 300 series chipset; 6 on other chipsets. If the problem persists, try\n"
	  "other values (on 300 series: between 4 and 60 in steps of 4; otherwise: any\n"
	  "value from 0 to 31). (default: autodetected, if LCD is active during start)\n");
L
Linus Torvalds 已提交
6702 6703 6704

#ifdef CONFIG_FB_SIS_315
MODULE_PARM_DESC(pdc1,
T
Thomas Winischhofer 已提交
6705
	"\nThis is same as pdc, but for LCD-via CRT1. Hence, this is for the 315/330/340\n"
L
Linus Torvalds 已提交
6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736
	  "series only. (default: autodetected if LCD is in LCD-via-CRT1 mode during\n"
	  "startup) - Note: currently, this has no effect because LCD-via-CRT1 is not\n"
	  "implemented yet.\n");
#endif

MODULE_PARM_DESC(specialtiming,
	"\nPlease refer to documentation for more information on this option.\n");

MODULE_PARM_DESC(lvdshl,
	"\nPlease refer to documentation for more information on this option.\n");

MODULE_PARM_DESC(tvstandard,
	"\nThis allows overriding the BIOS default for the TV standard. Valid choices are\n"
	  "pal, ntsc, palm and paln. (default: [auto; pal or ntsc only])\n");

MODULE_PARM_DESC(tvxposoffset,
	"\nRelocate TV output horizontally. Possible parameters: -32 through 32.\n"
	  "Default: 0\n");

MODULE_PARM_DESC(tvyposoffset,
	"\nRelocate TV output vertically. Possible parameters: -32 through 32.\n"
	  "Default: 0\n");

MODULE_PARM_DESC(nocrt2rate,
	"\nSetting this to 1 will force the driver to use the default refresh rate for\n"
	  "CRT2 if CRT2 type is VGA. (default: 0, use same rate as CRT1)\n");

#if !defined(__i386__) && !defined(__x86_64__)
#ifdef CONFIG_FB_SIS_300
MODULE_PARM_DESC(resetcard,
	"\nSet this to 1 in order to reset (POST) the card on non-x86 machines where\n"
T
Thomas Winischhofer 已提交
6737 6738
	  "the BIOS did not POST the card (only supported for SiS 300/305 and XGI cards\n"
	  "currently). Default: 0\n");
L
Linus Torvalds 已提交
6739 6740 6741 6742

MODULE_PARM_DESC(videoram,
	"\nSet this to the amount of video RAM (in kilobyte) the card has. Required on\n"
	  "some non-x86 architectures where the memory auto detection fails. Only\n"
T
Thomas Winischhofer 已提交
6743
	  "relevant if resetcard is set, too. SiS300/305 only. Default: [auto-detect]\n");
L
Linus Torvalds 已提交
6744 6745 6746 6747 6748
#endif
#endif

#endif 	   /*  /MODULE  */

T
Thomas Winischhofer 已提交
6749
/* _GPL only for new symbols. */
L
Linus Torvalds 已提交
6750 6751
EXPORT_SYMBOL(sis_malloc);
EXPORT_SYMBOL(sis_free);
T
Thomas Winischhofer 已提交
6752 6753 6754
EXPORT_SYMBOL_GPL(sis_malloc_new);
EXPORT_SYMBOL_GPL(sis_free_new);

L
Linus Torvalds 已提交
6755 6756