chipset_enable.c 18.3 KB
Newer Older
1
/*
2
 * This file is part of the flashrom project.
3
 *
4 5 6
 * Copyright (C) 2000 Silicon Integrated System Corporation
 * Copyright (C) 2005-2007 coresystems GmbH <stepan@coresystems.de>
 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
7
 *
8 9 10
 * 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; version 2 of the License.
11
 *
12 13 14 15 16 17 18 19 20 21 22 23
 * 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 */

/*
 * Contains the chipset specific flash enables.
24 25
 */

26 27
#define _LARGEFILE64_SOURCE

28 29 30
#include <stdio.h>
#include <pci/pci.h>
#include <stdlib.h>
31 32
#include <sys/types.h>
#include <sys/stat.h>
33
#include <sys/mman.h>
34 35
#include <fcntl.h>
#include <unistd.h>
36
#include "flash.h"
37

38
static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
39 40 41
{
	uint8_t tmp;

42 43 44 45
	/*
	 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
	 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
	 */
46 47 48 49 50 51 52
	tmp = pci_read_byte(dev, 0x47);
	tmp |= 0x46;
	pci_write_byte(dev, 0x47, tmp);

	return 0;
}

53
static int enable_flash_sis630(struct pci_dev *dev, const char *name)
54
{
55
	uint8_t b;
56

57
	/* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
58 59
	b = pci_read_byte(dev, 0x40);
	pci_write_byte(dev, 0x40, b | 0xb);
60 61

	/* Flash write enable on SiS 540/630. */
62 63
	b = pci_read_byte(dev, 0x45);
	pci_write_byte(dev, 0x45, b | 0x40);
64

65 66 67
	/* The same thing on SiS 950 Super I/O side... */

	/* First probe for Super I/O on config port 0x2e. */
68 69 70 71 72 73
	outb(0x87, 0x2e);
	outb(0x01, 0x2e);
	outb(0x55, 0x2e);
	outb(0x55, 0x2e);

	if (inb(0x2f) != 0x87) {
74
		/* If that failed, try config port 0x4e. */
75 76 77 78 79 80 81 82 83 84 85 86 87
		outb(0x87, 0x4e);
		outb(0x01, 0x4e);
		outb(0x55, 0x4e);
		outb(0xaa, 0x4e);
		if (inb(0x4f) != 0x87) {
			printf("Can not access SiS 950\n");
			return -1;
		}
		outb(0x24, 0x4e);
		b = inb(0x4f) | 0xfc;
		outb(0x24, 0x4e);
		outb(b, 0x4f);
		outb(0x02, 0x4e);
88
		outb(0x02, 0x4f);
89 90 91 92 93 94 95 96 97 98 99 100 101 102
	}

	outb(0x24, 0x2e);
	printf("2f is %#x\n", inb(0x2f));
	b = inb(0x2f) | 0xfc;
	outb(0x24, 0x2e);
	outb(b, 0x2f);

	outb(0x02, 0x2e);
	outb(0x02, 0x2f);

	return 0;
}

103 104 105 106 107 108
/* Datasheet:
 *   - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
 *   - URL: http://www.intel.com/design/intarch/datashts/290562.htm
 *   - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
 *   - Order Number: 290562-001
 */
109
static int enable_flash_piix4(struct pci_dev *dev, const char *name)
110 111
{
	uint16_t old, new;
112
	uint16_t xbcs = 0x4e;	/* X-Bus Chip Select register. */
113 114 115 116

	old = pci_read_word(dev, xbcs);

	/* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
117 118 119 120 121 122 123 124 125 126
	 *            FFF00000-FFF7FFFF are forwarded to ISA).
	 * Set bit 7: Extended BIOS Enable (PCI master accesses to
	 *            FFF80000-FFFDFFFF are forwarded to ISA).
	 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
	 *            the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
	 *            of 1 Mbyte, or the aliases at the top of 4 Gbyte
	 *            (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
	 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
	 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
	 */
127 128 129 130 131 132 133 134 135 136 137
	new = old | 0x2c4;

	if (new == old)
		return 0;

	pci_write_word(dev, xbcs, new);

	if (pci_read_word(dev, xbcs) != new) {
		printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
		return -1;
	}
Uwe Hermann's avatar
Uwe Hermann committed
138

139 140 141
	return 0;
}

142
/*
143 144
 * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet"
 * http://download.intel.com/design/chipsets/datashts/30701303.pdf
145 146 147
 */
static int enable_flash_ich(struct pci_dev *dev, const char *name,
			    int bios_cntl)
148
{
149
	uint8_t old, new;
150

151 152
	/*
	 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
153
	 * just treating it as 8 bit wide seems to work fine in practice.
154
	 */
Stefan Reinauer's avatar
Stefan Reinauer committed
155
	old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich's avatar
Ronald G. Minnich committed
156

157 158 159 160 161 162
	printf_debug("BIOS Lock Enable: %sabled, ",
		     (old & (1 << 1)) ? "en" : "dis");
	printf_debug("BIOS Write Enable: %sabled, ",
		     (old & (1 << 0)) ? "en" : "dis");
	printf_debug("BIOS_CNTL is 0x%x\n", old);

Ronald G. Minnich's avatar
Ronald G. Minnich committed
163 164 165 166 167
	new = old | 1;

	if (new == old)
		return 0;

Stefan Reinauer's avatar
Stefan Reinauer committed
168
	pci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich's avatar
Ronald G. Minnich committed
169

Stefan Reinauer's avatar
Stefan Reinauer committed
170
	if (pci_read_byte(dev, bios_cntl) != new) {
171
		printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", bios_cntl, new, name);
Ronald G. Minnich's avatar
Ronald G. Minnich committed
172 173
		return -1;
	}
Uwe Hermann's avatar
Uwe Hermann committed
174

Ronald G. Minnich's avatar
Ronald G. Minnich committed
175 176 177
	return 0;
}

178
static int enable_flash_ich_4e(struct pci_dev *dev, const char *name)
Stefan Reinauer's avatar
Stefan Reinauer committed
179
{
180
	return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer's avatar
Stefan Reinauer committed
181 182
}

183
static int enable_flash_ich_dc(struct pci_dev *dev, const char *name)
Stefan Reinauer's avatar
Stefan Reinauer committed
184
{
185
	return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer's avatar
Stefan Reinauer committed
186 187
}

188 189 190
void *ich_spibar = NULL;

static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name, unsigned long spibar)
191 192 193
{
	uint8_t old, new, bbs;
	uint32_t tmp, gcs;
194
	void *rcrb;
195

196
	/* Read the Root Complex Base Address Register (RCBA) */
197
	tmp = pci_read_long(dev, 0xf0);
198
	/* Calculate the Root Complex Register Block address */
199
	tmp &= 0xffffc000;
200
	printf_debug("Root Complex Register Block address = 0x%x\n", tmp);
201
	rcrb = mmap(0, 0x4000, PROT_READ | PROT_WRITE, MAP_SHARED, fd_mem, (off_t)tmp);
202
	if (rcrb == MAP_FAILED) {
203 204 205 206
		perror("Can't mmap memory using " MEM_DEV);
		exit(1);
	}
	printf_debug("GCS address = 0x%x\n", tmp + 0x3410);
207
	gcs = *(volatile uint32_t *)(rcrb + 0x3410);
208 209 210 211 212 213
	printf_debug("GCS = 0x%x: ", gcs);
	printf_debug("BIOS Interface Lock-Down: %sabled, ",
		     (gcs & 0x1) ? "en" : "dis");
	bbs = (gcs >> 10) & 0x3;
	printf_debug("BOOT BIOS Straps: 0x%x (%s)\n",	bbs,
		     (bbs == 0x3) ? "LPC" : ((bbs == 0x2) ? "PCI" : "SPI"));
214 215 216

	/* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
	printf_debug("SPIBAR = 0x%lx\n", tmp + spibar);
217
	/* TODO: Dump the SPI config regs */
218
	ich_spibar =  rcrb + spibar;
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236

	old = pci_read_byte(dev, 0xdc);
	printf_debug("SPI Read Configuration: ");
	new = (old >> 2) & 0x3;
	switch (new) {
	case 0:
	case 1:
	case 2:
		printf_debug("prefetching %sabled, caching %sabled, ",
			(new & 0x2) ? "en" : "dis", (new & 0x1) ? "dis" : "en");
		break;
	default:
		printf_debug("invalid prefetching/caching settings, ");
		break;
	}
	return enable_flash_ich_dc(dev, name);
}

237 238 239 240 241 242 243 244 245 246 247 248 249
static int enable_flash_ich78(struct pci_dev *dev, const char *name)
{
	return enable_flash_ich_dc_spi(dev, name, 0x3020);
}

int ich9_detected = 0;

static int enable_flash_ich9(struct pci_dev *dev, const char *name)
{
	ich9_detected = 1;
	return enable_flash_ich_dc_spi(dev, name, 0x3800);
}

250
static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
251
{
252
	uint8_t val;
253

254 255 256
	/* enable ROM decode range (1MB) FFC00000 - FFFFFFFF*/
	pci_write_byte(dev, 0x41, 0x7f);

Uwe Hermann's avatar
Uwe Hermann committed
257
	/* ROM write enable */
258 259 260 261 262
	val = pci_read_byte(dev, 0x40);
	val |= 0x10;
	pci_write_byte(dev, 0x40, val);

	if (pci_read_byte(dev, 0x40) != val) {
263
		printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n",
264
		       name);
265
		return -1;
266
	}
267

268
	return 0;
269 270
}

271
static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
272
{
273
	uint8_t reg8;
274

275 276
	#define DECODE_CONTROL_REG2		0x5b	/* F0 index 0x5b */
	#define ROM_AT_LOGIC_CONTROL_REG	0x52	/* F0 index 0x52 */
277

278 279 280 281
	#define LOWER_ROM_ADDRESS_RANGE		(1 << 0)
	#define ROM_WRITE_ENABLE		(1 << 1)
	#define UPPER_ROM_ADDRESS_RANGE		(1 << 2)
	#define BIOS_ROM_POSITIVE_DECODE	(1 << 5)
282

283 284 285 286 287 288 289 290 291
	/* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and
	 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB.
	 * Make the configured ROM areas writable.
	 */
	reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
	reg8 |= LOWER_ROM_ADDRESS_RANGE;
	reg8 |= UPPER_ROM_ADDRESS_RANGE;
	reg8 |= ROM_WRITE_ENABLE;
	pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
292

293 294 295 296
	/* Set positive decode on ROM. */
	reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
	reg8 |= BIOS_ROM_POSITIVE_DECODE;
	pci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
297

298 299 300
	return 0;
}

301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
/**
 * Geode systems write protect the BIOS via RCONFs (cache settings similar
 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. Reading and
 * writing to MSRs, however requires instructions rdmsr/wrmsr, which are
 * ring0 privileged instructions so only the kernel can do the read/write.
 * This function, therefore, requires that the msr kernel module be loaded
 * to access these instructions from user space using device /dev/cpu/0/msr.
 *
 * This hard-coded location could have potential problems on SMP machines
 * since it assumes cpu0, but it is safe on the Geode which is not SMP.
 *
 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
 * To enable write to NOR Boot flash for the benefit of systems that have such
 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
 *
 * This is probably not portable beyond Linux.
 */
318
static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
319
{
320 321
	#define MSR_RCONF_DEFAULT	0x1808
	#define MSR_NORF_CTL		0x51400018
322

323 324 325
	int fd_msr;
	unsigned char buf[8];

326
	fd_msr = open("/dev/cpu/0/msr", O_RDWR);
327 328 329 330
	if (!fd_msr) {
		perror("open msr");
		return -1;
	}
331 332 333

	if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
		perror("lseek64");
334
		printf("Cannot operate on MSR. Did you run 'modprobe msr'?\n");
335 336 337 338 339
		close(fd_msr);
		return -1;
	}

	if (read(fd_msr, buf, 8) != 8) {
340
		perror("read msr");
341 342 343
		close(fd_msr);
		return -1;
	}
344

345
	if (buf[7] != 0x22) {
346
		buf[7] &= 0xfb;
347 348 349 350 351 352
		if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
			perror("lseek64");
			close(fd_msr);
			return -1;
		}

353 354
		if (write(fd_msr, buf, 8) < 0) {
			perror("msr write");
355
			close(fd_msr);
356 357 358
			return -1;
		}
	}
359

360 361 362 363 364 365
	if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
		perror("lseek64");
		close(fd_msr);
		return -1;
	}

366 367
	if (read(fd_msr, buf, 8) != 8) {
		perror("read msr");
368
		close(fd_msr);
369 370 371 372 373 374
		return -1;
	}

	/* Raise WE_CS3 bit. */
	buf[0] |= 0x08;

375 376 377 378 379
	if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
		perror("lseek64");
		close(fd_msr);
		return -1;
	}
380 381
	if (write(fd_msr, buf, 8) < 0) {
		perror("msr write");
382
		close(fd_msr);
383 384 385 386 387
		return -1;
	}

	close(fd_msr);

388
	#undef MSR_RCONF_DEFAULT
389
	#undef MSR_NORF_CTL
390 391 392
	return 0;
}

393
static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
394
{
395
	uint8_t new;
396

397 398 399 400 401
	pci_write_byte(dev, 0x52, 0xee);

	new = pci_read_byte(dev, 0x52);

	if (new != 0xee) {
402
		printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x52, new, name);
403 404
		return -1;
	}
Uwe Hermann's avatar
Uwe Hermann committed
405

406 407 408
	return 0;
}

409
static int enable_flash_sis5595(struct pci_dev *dev, const char *name)
410
{
411
	uint8_t new, newer;
412

413 414
	new = pci_read_byte(dev, 0x45);

415 416
	new &= (~0x20);		/* Clear bit 5. */
	new |= 0x4;		/* Set bit 2. */
417 418 419 420 421

	pci_write_byte(dev, 0x45, new);

	newer = pci_read_byte(dev, 0x45);
	if (newer != new) {
422
		printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name);
423 424 425
		printf("Stuck at 0x%x\n", newer);
		return -1;
	}
Uwe Hermann's avatar
Uwe Hermann committed
426

427 428 429
	return 0;
}

430
static int enable_flash_amd8111(struct pci_dev *dev, const char *name)
431
{
432
	uint8_t old, new;
433

434
	/* Enable decoding at 0xffb00000 to 0xffffffff. */
435
	old = pci_read_byte(dev, 0x43);
436
	new = old | 0xC0;
437 438 439
	if (new != old) {
		pci_write_byte(dev, 0x43, new);
		if (pci_read_byte(dev, 0x43) != new) {
440
			printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x43, new, name);
441 442 443
		}
	}

444
	old = pci_read_byte(dev, 0x40);
445 446 447 448 449 450
	new = old | 0x01;
	if (new == old)
		return 0;
	pci_write_byte(dev, 0x40, new);

	if (pci_read_byte(dev, 0x40) != new) {
451
		printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name);
452 453
		return -1;
	}
Uwe Hermann's avatar
Uwe Hermann committed
454

455 456 457
	return 0;
}

458
static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu's avatar
Yinghai Lu committed
459
{
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
	uint8_t old, new;

	old = pci_read_byte(dev, 0x88);
	new = old | 0xc0;
	if (new != old) {
		pci_write_byte(dev, 0x88, new);
		if (pci_read_byte(dev, 0x88) != new) {
			printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
		}
	}

	old = pci_read_byte(dev, 0x6d);
	new = old | 0x01;
	if (new == old)
		return 0;
	pci_write_byte(dev, 0x6d, new);

	if (pci_read_byte(dev, 0x6d) != new) {
		printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
		return -1;
	}
Uwe Hermann's avatar
Uwe Hermann committed
481

482
	return 0;
Yinghai Lu's avatar
Yinghai Lu committed
483 484
}

485 486
/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
static int enable_flash_sb400(struct pci_dev *dev, const char *name)
Stefan Reinauer's avatar
Stefan Reinauer committed
487
{
488
	uint8_t tmp;
Stefan Reinauer's avatar
Stefan Reinauer committed
489 490 491
	struct pci_filter f;
	struct pci_dev *smbusdev;

492
	/* Look for the SMBus device. */
493
	pci_filter_init((struct pci_access *)0, &f);
Stefan Reinauer's avatar
Stefan Reinauer committed
494 495
	f.vendor = 0x1002;
	f.device = 0x4372;
496

Stefan Reinauer's avatar
Stefan Reinauer committed
497 498 499 500 501
	for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
		if (pci_filter_match(&f, smbusdev)) {
			break;
		}
	}
502

503
	if (!smbusdev) {
504
		fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n");
Stefan Reinauer's avatar
Stefan Reinauer committed
505 506
		exit(1);
	}
507

508
	/* Enable some SMBus stuff. */
509 510
	tmp = pci_read_byte(smbusdev, 0x79);
	tmp |= 0x01;
Stefan Reinauer's avatar
Stefan Reinauer committed
511 512
	pci_write_byte(smbusdev, 0x79, tmp);

513
	/* Change southbridge. */
514 515
	tmp = pci_read_byte(dev, 0x48);
	tmp |= 0x21;
Stefan Reinauer's avatar
Stefan Reinauer committed
516 517
	pci_write_byte(dev, 0x48, tmp);

518
	/* Now become a bit silly. */
519 520
	tmp = inb(0xc6f);
	outb(tmp, 0xeb);
Stefan Reinauer's avatar
Stefan Reinauer committed
521
	outb(tmp, 0xeb);
522
	tmp |= 0x40;
Stefan Reinauer's avatar
Stefan Reinauer committed
523 524 525 526 527 528 529
	outb(tmp, 0xc6f);
	outb(tmp, 0xeb);
	outb(tmp, 0xeb);

	return 0;
}

530
static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
531
{
532 533
	uint8_t old, new, byte;
	uint16_t word;
534

535
	/* Set the 0-16 MB enable bits. */
536 537 538 539 540 541 542
	byte = pci_read_byte(dev, 0x88);
	byte |= 0xff;		/* 256K */
	pci_write_byte(dev, 0x88, byte);
	byte = pci_read_byte(dev, 0x8c);
	byte |= 0xff;		/* 1M */
	pci_write_byte(dev, 0x8c, byte);
	word = pci_read_word(dev, 0x90);
543
	word |= 0x7fff;		/* 16M */
544 545 546 547 548 549 550 551 552 553 554 555 556 557
	pci_write_word(dev, 0x90, word);

	old = pci_read_byte(dev, 0x6d);
	new = old | 0x01;
	if (new == old)
		return 0;
	pci_write_byte(dev, 0x6d, new);

	if (pci_read_byte(dev, 0x6d) != new) {
		printf
		    ("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
		     0x6d, new, name);
		return -1;
	}
558 559 560 561

	return 0;
}

562
static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
563
{
564
	uint8_t byte;
565

566
	/* Set the 4MB enable bit. */
567 568 569 570 571
	byte = pci_read_byte(dev, 0x41);
	byte |= 0x0e;
	pci_write_byte(dev, 0x41, byte);

	byte = pci_read_byte(dev, 0x43);
Uwe Hermann's avatar
Uwe Hermann committed
572
	byte |= (1 << 4);
573 574 575 576 577
	pci_write_byte(dev, 0x43, byte);

	return 0;
}

578
typedef struct penable {
579 580 581
	uint16_t vendor, device;
	const char *name;
	int (*doit) (struct pci_dev *dev, const char *name);
582 583
} FLASH_ENABLE;

584
static const FLASH_ENABLE enables[] = {
585 586 587 588 589 590 591 592 593 594 595 596
	{0x1039, 0x0630, "SiS630",		enable_flash_sis630},
	{0x8086, 0x7110, "Intel PIIX4/4E/4M",	enable_flash_piix4},
	{0x8086, 0x7198, "Intel 440MX",		enable_flash_piix4},
	{0x8086, 0x2410, "Intel ICH",		enable_flash_ich_4e},
	{0x8086, 0x2420, "Intel ICH0",		enable_flash_ich_4e},
	{0x8086, 0x2440, "Intel ICH2",		enable_flash_ich_4e},
	{0x8086, 0x244c, "Intel ICH2-M",	enable_flash_ich_4e},
	{0x8086, 0x2480, "Intel ICH3-S",	enable_flash_ich_4e},
	{0x8086, 0x248c, "Intel ICH3-M",	enable_flash_ich_4e},
	{0x8086, 0x24c0, "Intel ICH4/ICH4-L",	enable_flash_ich_4e},
	{0x8086, 0x24cc, "Intel ICH4-M",	enable_flash_ich_4e},
	{0x8086, 0x24d0, "Intel ICH5/ICH5R",	enable_flash_ich_4e},
597
	{0x8086, 0x25a1, "Intel 6300ESB",	enable_flash_ich_4e},
598 599
	{0x8086, 0x2640, "Intel ICH6/ICH6R",	enable_flash_ich_dc},
	{0x8086, 0x2641, "Intel ICH6-M",	enable_flash_ich_dc},
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
	{0x8086, 0x27b0, "Intel ICH7DH",	enable_flash_ich78},
	{0x8086, 0x27b8, "Intel ICH7/ICH7R",	enable_flash_ich78},
	{0x8086, 0x27b9, "Intel ICH7M",		enable_flash_ich78},
	{0x8086, 0x27bd, "Intel ICH7MDH",	enable_flash_ich78},
	{0x8086, 0x2810, "Intel ICH8/ICH8R",	enable_flash_ich78},
	{0x8086, 0x2811, "Intel ICH8M-E",	enable_flash_ich78},
	{0x8086, 0x2812, "Intel ICH8DH",	enable_flash_ich78},
	{0x8086, 0x2814, "Intel ICH8DO",	enable_flash_ich78},
	{0x8086, 0x2815, "Intel ICH8M",		enable_flash_ich78},
	{0x8086, 0x2912, "Intel ICH9DH",	enable_flash_ich9},
	{0x8086, 0x2914, "Intel ICH9DO",	enable_flash_ich9},
	{0x8086, 0x2916, "Intel ICH9R",		enable_flash_ich9},
	{0x8086, 0x2917, "Intel ICH9M-E",	enable_flash_ich9},
	{0x8086, 0x2918, "Intel ICH9",		enable_flash_ich9},
	{0x8086, 0x2919, "Intel ICH9M",		enable_flash_ich9},
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
	{0x1106, 0x8231, "VIA VT8231",		enable_flash_vt823x},
	{0x1106, 0x3177, "VIA VT8235",		enable_flash_vt823x},
	{0x1106, 0x3227, "VIA VT8237",		enable_flash_vt823x},
	{0x1106, 0x8324, "VIA CX700",		enable_flash_vt823x},
	{0x1106, 0x0686, "VIA VT82C686",	enable_flash_amd8111},
	{0x1078, 0x0100, "AMD CS5530(A)",	enable_flash_cs5530},
	{0x100b, 0x0510, "AMD SC1100",		enable_flash_sc1100},
	{0x1039, 0x0008, "SiS5595",		enable_flash_sis5595},
	{0x1022, 0x2080, "AMD CS5536",		enable_flash_cs5536},
	{0x1022, 0x7468, "AMD8111",		enable_flash_amd8111},
	{0x10B9, 0x1533, "ALi M1533",		enable_flash_ali_m1533},
	{0x10de, 0x0050, "NVIDIA CK804",	enable_flash_ck804}, /* LPC */
	{0x10de, 0x0051, "NVIDIA CK804",	enable_flash_ck804}, /* Pro */
	/* Slave, should not be here, to fix known bug for A01. */
	{0x10de, 0x00d3, "NVIDIA CK804",	enable_flash_ck804},
	{0x10de, 0x0260, "NVIDIA MCP51",	enable_flash_ck804},
	{0x10de, 0x0261, "NVIDIA MCP51",	enable_flash_ck804},
	{0x10de, 0x0262, "NVIDIA MCP51",	enable_flash_ck804},
	{0x10de, 0x0263, "NVIDIA MCP51",	enable_flash_ck804},
	{0x10de, 0x0360, "NVIDIA MCP55",	enable_flash_mcp55}, /* M57SLI*/
	{0x10de, 0x0361, "NVIDIA MCP55",	enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0362, "NVIDIA MCP55",	enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0363, "NVIDIA MCP55",	enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0364, "NVIDIA MCP55",	enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0365, "NVIDIA MCP55",	enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0366, "NVIDIA MCP55",	enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0367, "NVIDIA MCP55",	enable_flash_mcp55}, /* Pro */
	{0x1002, 0x4377, "ATI SB400",		enable_flash_sb400},
	{0x1166, 0x0205, "Broadcom HT-1000",	enable_flash_ht1000},
644
};
645

646 647 648 649 650 651 652 653 654 655 656
void print_supported_chipsets(void)
{
	int i;

	printf("\nSupported chipsets:\n\n");

	for (i = 0; i < ARRAY_SIZE(enables); i++)
		printf("%s (%04x:%04x)\n", enables[i].name,
		       enables[i].vendor, enables[i].device);
}

657
int chipset_flash_enable(void)
658
{
659
	struct pci_dev *dev = 0;
660
	int ret = -2;		/* Nothing! */
661
	int i;
662

663
	/* Now let's try to find the chipset we have... */
664
	for (i = 0; i < ARRAY_SIZE(enables); i++) {
665 666 667 668 669 670
		dev = pci_dev_find(enables[i].vendor, enables[i].device);
		if (dev)
			break;
	}

	if (dev) {
671
		printf("Found chipset \"%s\", enabling flash write... ",
672 673 674 675
		       enables[i].name);

		ret = enables[i].doit(dev, enables[i].name);
		if (ret)
676
			printf("FAILED!\n");
677
		else
Uwe Hermann's avatar
Uwe Hermann committed
678
			printf("OK.\n");
679 680
	}

681
	return ret;
682
}