chipset_enable.c 63.3 KB
Newer Older
1
/*
2
 * This file is part of the flashrom project.
3
 *
4
 * Copyright (C) 2000 Silicon Integrated System Corporation
5
 * Copyright (C) 2005-2009 coresystems GmbH
6
 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
7
 * Copyright (C) 2007,2008,2009 Carl-Daniel Hailfinger
8
 * Copyright (C) 2009 Kontron Modular Computers GmbH
Helge Wagner's avatar
Helge Wagner committed
9
 * Copyright (C) 2011, 2012 Stefan Tauner
10
 *
11 12 13
 * 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.
14
 *
15 16 17 18 19 20 21 22 23 24 25 26
 * 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.
27 28
 */

29 30
#define _LARGEFILE64_SOURCE

31
#include <stdlib.h>
32
#include <string.h>
33
#include <unistd.h>
34 35
#include <inttypes.h>
#include <errno.h>
36
#include "flash.h"
37
#include "programmer.h"
38
#include "hwaccess.h"
39

Michael Karcher's avatar
Michael Karcher committed
40 41
#define NOT_DONE_YET 1

42 43
#if defined(__i386__) || defined(__x86_64__)

44
static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
45 46 47
{
	uint8_t tmp;

48 49 50 51
	/*
	 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
	 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
	 */
52 53
	tmp = pci_read_byte(dev, 0x47);
	tmp |= 0x46;
54
	rpci_write_byte(dev, 0x47, tmp);
55 56 57 58

	return 0;
}

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
static int enable_flash_rdc_r8610(struct pci_dev *dev, const char *name)
{
	uint8_t tmp;

	/* enable ROMCS for writes */
	tmp = pci_read_byte(dev, 0x43);
	tmp |= 0x80;
	pci_write_byte(dev, 0x43, tmp);

	/* read the bootstrapping register */
	tmp = pci_read_byte(dev, 0x40) & 0x3;
	switch (tmp) {
	case 3:
		internal_buses_supported = BUS_FWH;
		break;
	case 2:
		internal_buses_supported = BUS_LPC;
		break;
	default:
		internal_buses_supported = BUS_PARALLEL;
		break;
	}

	return 0;
}

85 86 87 88 89 90
static int enable_flash_sis85c496(struct pci_dev *dev, const char *name)
{
	uint8_t tmp;

	tmp = pci_read_byte(dev, 0xd0);
	tmp |= 0xf8;
91
	rpci_write_byte(dev, 0xd0, tmp);
92 93 94 95 96 97

	return 0;
}

static int enable_flash_sis_mapping(struct pci_dev *dev, const char *name)
{
98
	#define SIS_MAPREG 0x40
99 100 101 102
	uint8_t new, newer;

	/* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
	/* This is 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
103
	new = pci_read_byte(dev, SIS_MAPREG);
104 105
	new &= (~0x04); /* No idea why we clear bit 2. */
	new |= 0xb; /* 0x3 for some chipsets, bit 7 seems to be don't care. */
106 107 108 109 110 111
	rpci_write_byte(dev, SIS_MAPREG, new);
	newer = pci_read_byte(dev, SIS_MAPREG);
	if (newer != new) { /* FIXME: share this with other code? */
		msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
			  SIS_MAPREG, new, name);
		msg_pinfo("Stuck at 0x%02x.\n", newer);
112 113 114 115 116 117 118 119
		return -1;
	}
	return 0;
}

static struct pci_dev *find_southbridge(uint16_t vendor, const char *name)
{
	struct pci_dev *sbdev;
120

121 122 123 124 125 126
	sbdev = pci_dev_find_vendorclass(vendor, 0x0601);
	if (!sbdev)
		sbdev = pci_dev_find_vendorclass(vendor, 0x0680);
	if (!sbdev)
		sbdev = pci_dev_find_vendorclass(vendor, 0x0000);
	if (!sbdev)
127
		msg_perr("No southbridge found for %s!\n", name);
128
	if (sbdev)
129
		msg_pdbg("Found southbridge %04x:%04x at %02x:%02x:%01x\n",
130 131
			 sbdev->vendor_id, sbdev->device_id,
			 sbdev->bus, sbdev->dev, sbdev->func);
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
	return sbdev;
}

static int enable_flash_sis501(struct pci_dev *dev, const char *name)
{
	uint8_t tmp;
	int ret = 0;
	struct pci_dev *sbdev;

	sbdev = find_southbridge(dev->vendor_id, name);
	if (!sbdev)
		return -1;

	ret = enable_flash_sis_mapping(sbdev, name);

	tmp = sio_read(0x22, 0x80);
	tmp &= (~0x20);
	tmp |= 0x4;
	sio_write(0x22, 0x80, tmp);

	tmp = sio_read(0x22, 0x70);
	tmp &= (~0x20);
	tmp |= 0x4;
	sio_write(0x22, 0x70, tmp);
	
	return ret;
}

static int enable_flash_sis5511(struct pci_dev *dev, const char *name)
{
	uint8_t tmp;
	int ret = 0;
	struct pci_dev *sbdev;

	sbdev = find_southbridge(dev->vendor_id, name);
	if (!sbdev)
		return -1;

	ret = enable_flash_sis_mapping(sbdev, name);

	tmp = sio_read(0x22, 0x50);
	tmp &= (~0x20);
	tmp |= 0x4;
	sio_write(0x22, 0x50, tmp);

	return ret;
}

180
static int enable_flash_sis5x0(struct pci_dev *dev, const char *name, uint8_t dis_mask, uint8_t en_mask)
181
{
182
	#define SIS_REG 0x45
183 184 185 186 187 188 189 190 191 192
	uint8_t new, newer;
	int ret = 0;
	struct pci_dev *sbdev;

	sbdev = find_southbridge(dev->vendor_id, name);
	if (!sbdev)
		return -1;

	ret = enable_flash_sis_mapping(sbdev, name);

193 194 195 196 197 198 199 200
	new = pci_read_byte(sbdev, SIS_REG);
	new &= (~dis_mask);
	new |= en_mask;
	rpci_write_byte(sbdev, SIS_REG, new);
	newer = pci_read_byte(sbdev, SIS_REG);
	if (newer != new) { /* FIXME: share this with other code? */
		msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", SIS_REG, new, name);
		msg_pinfo("Stuck at 0x%02x\n", newer);
201 202 203 204 205 206
		ret = -1;
	}

	return ret;
}

207
static int enable_flash_sis530(struct pci_dev *dev, const char *name)
208
{
209 210
	return enable_flash_sis5x0(dev, name, 0x20, 0x04);
}
211

212 213 214
static int enable_flash_sis540(struct pci_dev *dev, const char *name)
{
	return enable_flash_sis5x0(dev, name, 0x80, 0x40);
215
}
216

217 218 219 220 221 222
/* 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
 */
223
static int enable_flash_piix4(struct pci_dev *dev, const char *name)
224 225
{
	uint16_t old, new;
226
	uint16_t xbcs = 0x4e;	/* X-Bus Chip Select register. */
227

228
	internal_buses_supported = BUS_PARALLEL;
229

230 231 232
	old = pci_read_word(dev, xbcs);

	/* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
233
	 *            FFF00000-FFF7FFFF are forwarded to ISA).
234
	 *            Note: This bit is reserved on PIIX/PIIX3/MPIIX.
235 236 237 238 239 240 241 242 243
	 * 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).
	 */
244 245 246
	if (dev->device_id == 0x122e || dev->device_id == 0x7000
	    || dev->device_id == 0x1234)
		new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */
247 248
	else
		new = old | 0x02c4;
249 250 251 252

	if (new == old)
		return 0;

253
	rpci_write_word(dev, xbcs, new);
254

255 256
	if (pci_read_word(dev, xbcs) != new) { /* FIXME: share this with other code? */
		msg_pinfo("Setting register 0x%04x to 0x%04x on %s failed (WARNING ONLY).\n", xbcs, new, name);
257 258
		return -1;
	}
Uwe Hermann's avatar
Uwe Hermann committed
259

260 261 262
	return 0;
}

263 264 265 266
/* Handle BIOS_CNTL (aka. BCR). Disable locks and enable writes. The register can either be in PCI config space
 * at the offset given by 'bios_cntl' or at the memory-mapped address 'addr'.
 *
 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, in Poulsbo, Tunnel Creek and other Atom
Stefan Tauner's avatar
Stefan Tauner committed
267
 * chipsets/SoCs it is even 32b, but just treating it as 8 bit wide seems to work fine in practice. */
268 269
static int enable_flash_ich_bios_cntl_common(enum ich_chipset ich_generation, void *addr,
					     struct pci_dev *dev, uint8_t bios_cntl)
270
{
271
	uint8_t old, new, wanted;
272

Stefan Tauner's avatar
Stefan Tauner committed
273 274 275 276 277 278 279
	switch (ich_generation) {
	case CHIPSET_ICH_UNKNOWN:
		return ERROR_FATAL;
	/* Non-SPI-capable */
	case CHIPSET_ICH:
	case CHIPSET_ICH2345:
		break;
280 281
	/* Some Atom chipsets are special: The second byte of BIOS_CNTL (D9h) contains a prefetch bit similar to
	 * what other SPI-capable chipsets have at DCh. Others like Bay Trail use a memmapped register.
Stefan Tauner's avatar
Stefan Tauner committed
282 283 284 285 286 287 288 289 290 291
	 * The Tunnel Creek datasheet contains a lot of details about the SPI controller, among other things it
	 * mentions that the prefetching and caching does only happen for direct memory reads.
	 * Therefore - at least for Tunnel Creek - it should not matter to flashrom because we use the
	 * programmed access only and not memory mapping. */
	case CHIPSET_TUNNEL_CREEK:
	case CHIPSET_POULSBO:
	case CHIPSET_CENTERTON:
		old = pci_read_byte(dev, bios_cntl + 1);
		msg_pdbg("BIOS Prefetch Enable: %sabled, ", (old & 1) ? "en" : "dis");
		break;
292
	case CHIPSET_BAYTRAIL:
Stefan Tauner's avatar
Stefan Tauner committed
293 294
	case CHIPSET_ICH7:
	default: /* Future version might behave the same */
295 296 297 298
		if (ich_generation == CHIPSET_BAYTRAIL)
			old = (mmio_readl(addr) >> 2) & 0x3;
		else
			old = (pci_read_byte(dev, bios_cntl) >> 2) & 0x3;
Stefan Tauner's avatar
Stefan Tauner committed
299 300 301 302 303 304 305 306
		msg_pdbg("SPI Read Configuration: ");
		if (old == 3)
			msg_pdbg("invalid prefetching/caching settings, ");
		else
			msg_pdbg("prefetching %sabled, caching %sabled, ",
				     (old & 0x2) ? "en" : "dis",
				     (old & 0x1) ? "dis" : "en");
	}
307

308 309 310 311 312
	if (ich_generation == CHIPSET_BAYTRAIL)
		wanted = old = mmio_readl(addr);
	else
		wanted = old = pci_read_byte(dev, bios_cntl);

313 314 315 316 317
	/*
	 * Quote from the 6 Series datasheet (Document Number: 324645-004):
	 * "Bit 5: SMM BIOS Write Protect Disable (SMM_BWP)
	 * 1 = BIOS region SMM protection is enabled.
	 * The BIOS Region is not writable unless all processors are in SMM."
318
	 * In earlier chipsets this bit is reserved.
319 320 321
	 *
	 * Try to unset it in any case.
	 * It won't hurt and makes sense in some cases according to Stefan Reinauer.
Stefan Tauner's avatar
Stefan Tauner committed
322 323 324
	 *
	 * At least in Centerton aforementioned bit is located at bit 7. It is unspecified in all other Atom
	 * and Desktop chipsets before Ibex Peak/5 Series, but we reset bit 5 anyway.
325
	 */
Stefan Tauner's avatar
Stefan Tauner committed
326 327 328 329 330 331 332 333 334 335
	int smm_bwp_bit;
	if (ich_generation == CHIPSET_CENTERTON)
		smm_bwp_bit = 7;
	else
		smm_bwp_bit = 5;
	wanted &= ~(1 << smm_bwp_bit);

	/* Tunnel Creek has a cache disable at bit 2 of the lowest BIOS_CNTL byte. */
	if (ich_generation == CHIPSET_TUNNEL_CREEK)
		wanted |= (1 << 2);
336

Stefan Tauner's avatar
Stefan Tauner committed
337 338
	wanted |= (1 << 0); /* Set BIOS Write Enable */
	wanted &= ~(1 << 1); /* Disable lock (futile) */
339 340 341

	/* Only write the register if it's necessary */
	if (wanted != old) {
342 343 344 345 346 347 348
		if (ich_generation == CHIPSET_BAYTRAIL) {
			rmmio_writel(wanted, addr);
			new = mmio_readl(addr);
		} else {
			rpci_write_byte(dev, bios_cntl, wanted);
			new = pci_read_byte(dev, bios_cntl);
		}
349 350 351 352 353 354
	} else
		new = old;

	msg_pdbg("\nBIOS_CNTL = 0x%02x: ", new);
	msg_pdbg("BIOS Lock Enable: %sabled, ", (new & (1 << 1)) ? "en" : "dis");
	msg_pdbg("BIOS Write Enable: %sabled\n", (new & (1 << 0)) ? "en" : "dis");
Stefan Tauner's avatar
Stefan Tauner committed
355
	if (new & (1 << smm_bwp_bit))
Stefan Tauner's avatar
Stefan Tauner committed
356
		msg_pwarn("Warning: BIOS region SMM protection is enabled!\n");
Ronald G. Minnich's avatar
Ronald G. Minnich committed
357

358
	if (new != wanted)
Stefan Tauner's avatar
Stefan Tauner committed
359 360
		msg_pwarn("Warning: Setting Bios Control at 0x%x from 0x%02x to 0x%02x failed.\n"
			  "New value is 0x%02x.\n", bios_cntl, old, wanted, new);
Ronald G. Minnich's avatar
Ronald G. Minnich committed
361

Stefan Tauner's avatar
Stefan Tauner committed
362
	/* Return an error if we could not set the write enable only. */
363
	if (!(new & (1 << 0)))
Ronald G. Minnich's avatar
Ronald G. Minnich committed
364
		return -1;
Uwe Hermann's avatar
Uwe Hermann committed
365

Ronald G. Minnich's avatar
Ronald G. Minnich committed
366 367 368
	return 0;
}

369 370 371 372 373 374 375 376 377 378 379
static int enable_flash_ich_bios_cntl_config_space(struct pci_dev *dev, enum ich_chipset ich_generation,
						   uint8_t bios_cntl)
{
	return enable_flash_ich_bios_cntl_common(ich_generation, NULL, dev, bios_cntl);
}

static int enable_flash_ich_bios_cntl_memmapped(enum ich_chipset ich_generation, void *addr)
{
	return enable_flash_ich_bios_cntl_common(ich_generation, addr, NULL, 0);
}

Stefan Tauner's avatar
Stefan Tauner committed
380
static int enable_flash_ich_fwh_decode(struct pci_dev *dev, enum ich_chipset ich_generation)
Stefan Reinauer's avatar
Stefan Reinauer committed
381
{
Stefan Tauner's avatar
Stefan Tauner committed
382 383
	uint8_t fwh_sel1 = 0, fwh_sel2 = 0, fwh_dec_en_lo = 0, fwh_dec_en_hi = 0; /* silence compilers */
	bool implemented = 0;
384
	void *ilb = NULL; /* Only for Baytrail */
Stefan Tauner's avatar
Stefan Tauner committed
385 386 387 388 389 390
	switch (ich_generation) {
	case CHIPSET_ICH:
		/* FIXME: Unlike later chipsets, ICH and ICH-0 do only support mapping of the top-most 4MB
		 * and therefore do only feature FWH_DEC_EN (E3h, different default too) and FWH_SEL (E8h). */
		break;
	case CHIPSET_ICH2345:
391 392 393 394
		fwh_sel1 = 0xe8;
		fwh_sel2 = 0xee;
		fwh_dec_en_lo = 0xf0;
		fwh_dec_en_hi = 0xe3;
Stefan Tauner's avatar
Stefan Tauner committed
395 396 397 398 399 400 401 402 403 404
		implemented = 1;
		break;
	case CHIPSET_POULSBO:
	case CHIPSET_TUNNEL_CREEK:
		/* FIXME: Similar to ICH and ICH-0, Tunnel Creek and Poulsbo do only feature one register each,
		 * FWH_DEC_EN (D7h) and FWH_SEL (D0h). */
		break;
	case CHIPSET_CENTERTON:
		/* FIXME: Similar to above FWH_DEC_EN (D4h) and FWH_SEL (D0h). */
		break;
405 406 407 408 409 410 411 412 413 414 415 416 417
	case CHIPSET_BAYTRAIL: {
		uint32_t ilb_base = pci_read_long(dev, 0x50) & 0xfffffe00; /* bits 31:9 */
		if (ilb_base == 0) {
			msg_perr("Error: Invalid ILB_BASE_ADDRESS\n");
			return ERROR_FATAL;
		}
		ilb = rphysmap("BYT IBASE", ilb_base, 512);
		fwh_sel1 = 0x18;
		fwh_dec_en_lo = 0xd8;
		fwh_dec_en_hi = 0xd9;
		implemented = 1;
		break;
	}
Stefan Tauner's avatar
Stefan Tauner committed
418 419 420 421 422 423 424 425 426
	case CHIPSET_ICH6:
	case CHIPSET_ICH7:
	default: /* Future version might behave the same */
		fwh_sel1 = 0xd0;
		fwh_sel2 = 0xd4;
		fwh_dec_en_lo = 0xd8;
		fwh_dec_en_hi = 0xd9;
		implemented = 1;
		break;
427
	}
428

Stefan Tauner's avatar
Stefan Tauner committed
429
	char *idsel = extract_programmer_param("fwh_idsel");
430
	if (idsel && strlen(idsel)) {
Stefan Tauner's avatar
Stefan Tauner committed
431 432 433 434
		if (!implemented) {
			msg_perr("Error: fwh_idsel= specified, but (yet) unsupported on this chipset.\n");
			goto idsel_garbage_out;
		}
435 436
		errno = 0;
		/* Base 16, nothing else makes sense. */
Stefan Tauner's avatar
Stefan Tauner committed
437
		uint64_t fwh_idsel = (uint64_t)strtoull(idsel, NULL, 16);
438
		if (errno) {
Stefan Tauner's avatar
Stefan Tauner committed
439
			msg_perr("Error: fwh_idsel= specified, but value could not be converted.\n");
440 441
			goto idsel_garbage_out;
		}
442 443 444 445
		uint64_t fwh_mask = 0xffffffff;
		if (fwh_sel2 > 0)
			fwh_mask |= (0xffffULL << 32);
		if (fwh_idsel & ~fwh_mask) {
Stefan Tauner's avatar
Stefan Tauner committed
446
			msg_perr("Error: fwh_idsel= specified, but value had unused bits set.\n");
447 448
			goto idsel_garbage_out;
		}
449 450 451 452 453
		uint64_t fwh_idsel_old;
		if (ich_generation == CHIPSET_BAYTRAIL) {
			fwh_idsel_old = mmio_readl(ilb + fwh_sel1);
			rmmio_writel(fwh_idsel, ilb + fwh_sel1);
		} else {
454
			fwh_idsel_old = (uint64_t)pci_read_long(dev, fwh_sel1) << 16;
455 456 457 458 459 460
			rpci_write_long(dev, fwh_sel1, (fwh_idsel >> 16) & 0xffffffff);
			if (fwh_sel2 > 0) {
				fwh_idsel_old |= pci_read_word(dev, fwh_sel2);
				rpci_write_word(dev, fwh_sel2, fwh_idsel & 0xffff);
			}
		}
461
		msg_pdbg("Setting IDSEL from 0x%012" PRIx64 " to 0x%012" PRIx64 " for top 16 MB.\n",
Stefan Tauner's avatar
Stefan Tauner committed
462
			 fwh_idsel_old, fwh_idsel);
463
		/* FIXME: Decode settings are not changed. */
464
	} else if (idsel) {
465
		msg_perr("Error: fwh_idsel= specified, but no value given.\n");
466
idsel_garbage_out:
467
		free(idsel);
468
		return ERROR_FATAL;
469
	}
470
	free(idsel);
471

Stefan Tauner's avatar
Stefan Tauner committed
472
	if (!implemented) {
473
		msg_pdbg2("FWH IDSEL handling is not implemented on this chipset.\n");
Stefan Tauner's avatar
Stefan Tauner committed
474 475 476
		return 0;
	}

477 478 479 480 481
	/* Ignore all legacy ranges below 1 MB.
	 * We currently only support flashing the chip which responds to
	 * IDSEL=0. To support IDSEL!=0, flashbase and decode size calculations
	 * have to be adjusted.
	 */
Stefan Tauner's avatar
Stefan Tauner committed
482 483
	int max_decode_fwh_idsel = 0, max_decode_fwh_decode = 0;
	bool contiguous = 1;
484 485 486 487 488 489
	uint32_t fwh_conf;
	if (ich_generation == CHIPSET_BAYTRAIL)
		fwh_conf = mmio_readl(ilb + fwh_sel1);
	else
		fwh_conf = pci_read_long(dev, fwh_sel1);

Stefan Tauner's avatar
Stefan Tauner committed
490
	int i;
491
	/* FWH_SEL1 */
492
	for (i = 7; i >= 0; i--) {
Stefan Tauner's avatar
Stefan Tauner committed
493
		int tmp = (fwh_conf >> (i * 4)) & 0xf;
494
		msg_pdbg("0x%08x/0x%08x FWH IDSEL: 0x%x\n",
495 496 497
			 (0x1ff8 + i) * 0x80000,
			 (0x1ff0 + i) * 0x80000,
			 tmp);
498 499 500 501 502 503
		if ((tmp == 0) && contiguous) {
			max_decode_fwh_idsel = (8 - i) * 0x80000;
		} else {
			contiguous = 0;
		}
	}
504 505 506 507 508 509 510 511 512 513 514 515 516 517
	if (fwh_sel2 > 0) {
		/* FWH_SEL2 */
		fwh_conf = pci_read_word(dev, fwh_sel2);
		for (i = 3; i >= 0; i--) {
			int tmp = (fwh_conf >> (i * 4)) & 0xf;
			msg_pdbg("0x%08x/0x%08x FWH IDSEL: 0x%x\n",
				 (0xff4 + i) * 0x100000,
				 (0xff0 + i) * 0x100000,
				 tmp);
			if ((tmp == 0) && contiguous) {
				max_decode_fwh_idsel = (8 - i) * 0x100000;
			} else {
				contiguous = 0;
			}
518 519 520
		}
	}
	contiguous = 1;
521
	/* FWH_DEC_EN1 */
522 523 524
	fwh_conf = pci_read_byte(dev, fwh_dec_en_hi);
	fwh_conf <<= 8;
	fwh_conf |= pci_read_byte(dev, fwh_dec_en_lo);
525
	for (i = 7; i >= 0; i--) {
Stefan Tauner's avatar
Stefan Tauner committed
526
		int tmp = (fwh_conf >> (i + 0x8)) & 0x1;
527
		msg_pdbg("0x%08x/0x%08x FWH decode %sabled\n",
528 529 530
			 (0x1ff8 + i) * 0x80000,
			 (0x1ff0 + i) * 0x80000,
			 tmp ? "en" : "dis");
Michael Karcher's avatar
Michael Karcher committed
531
		if ((tmp == 1) && contiguous) {
532 533 534 535 536 537
			max_decode_fwh_decode = (8 - i) * 0x80000;
		} else {
			contiguous = 0;
		}
	}
	for (i = 3; i >= 0; i--) {
Stefan Tauner's avatar
Stefan Tauner committed
538
		int tmp = (fwh_conf >> i) & 0x1;
539
		msg_pdbg("0x%08x/0x%08x FWH decode %sabled\n",
540 541 542
			 (0xff4 + i) * 0x100000,
			 (0xff0 + i) * 0x100000,
			 tmp ? "en" : "dis");
Michael Karcher's avatar
Michael Karcher committed
543
		if ((tmp == 1) && contiguous) {
544 545 546 547
			max_decode_fwh_decode = (8 - i) * 0x100000;
		} else {
			contiguous = 0;
		}
548
	}
549
	max_rom_decode.fwh = min(max_decode_fwh_idsel, max_decode_fwh_decode);
550
	msg_pdbg("Maximum FWH chip size: 0x%x bytes\n", max_rom_decode.fwh);
551

552 553 554
	return 0;
}

Stefan Tauner's avatar
Stefan Tauner committed
555
static int enable_flash_ich_fwh(struct pci_dev *dev, enum ich_chipset ich_generation, uint8_t bios_cntl)
556
{
557 558 559
	int err;

	/* Configure FWH IDSEL decoder maps. */
Stefan Tauner's avatar
Stefan Tauner committed
560
	if ((err = enable_flash_ich_fwh_decode(dev, ich_generation)) != 0)
561 562
		return err;

563
	internal_buses_supported = BUS_FWH;
564
	return enable_flash_ich_bios_cntl_config_space(dev, ich_generation, bios_cntl);
565 566
}

Stefan Tauner's avatar
Stefan Tauner committed
567
static int enable_flash_ich0(struct pci_dev *dev, const char *name)
568
{
Stefan Tauner's avatar
Stefan Tauner committed
569
	return enable_flash_ich_fwh(dev, CHIPSET_ICH, 0x4e);
570 571
}

Stefan Tauner's avatar
Stefan Tauner committed
572
static int enable_flash_ich2345(struct pci_dev *dev, const char *name)
573
{
Stefan Tauner's avatar
Stefan Tauner committed
574
	return enable_flash_ich_fwh(dev, CHIPSET_ICH2345, 0x4e);
Stefan Reinauer's avatar
Stefan Reinauer committed
575 576
}

577 578
static int enable_flash_ich6(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
579
	return enable_flash_ich_fwh(dev, CHIPSET_ICH6, 0xdc);
580 581
}

582 583
static int enable_flash_poulsbo(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
584
	return enable_flash_ich_fwh(dev, CHIPSET_POULSBO, 0xd8);
585 586
}

587
static void enable_flash_ich_handle_gcs(struct pci_dev *dev, enum ich_chipset ich_generation, uint32_t gcs, bool top_swap)
588
{
589 590 591
	msg_pdbg("GCS = 0x%x: ", gcs);
	msg_pdbg("BIOS Interface Lock-Down: %sabled, ", (gcs & 0x1) ? "en" : "dis");

592 593
	static const char *const straps_names_EP80579[] = { "SPI", "reserved", "reserved", "LPC" };
	static const char *const straps_names_ich7_nm10[] = { "reserved", "SPI", "PCI", "LPC" };
Stefan Tauner's avatar
Stefan Tauner committed
594
	static const char *const straps_names_tunnel_creek[] = { "SPI", "LPC" };
595
	static const char *const straps_names_ich8910[] = { "SPI", "SPI", "PCI", "LPC" };
596
	static const char *const straps_names_pch567[] = { "LPC", "reserved", "PCI", "SPI" };
597
	static const char *const straps_names_pch89_baytrail[] = { "LPC", "reserved", "reserved", "SPI" };
Stefan Tauner's avatar
Stefan Tauner committed
598
	static const char *const straps_names_pch8_lp[] = { "SPI", "LPC" };
599 600
	static const char *const straps_names_unknown[] = { "unknown", "unknown", "unknown", "unknown" };

Stefan Tauner's avatar
Stefan Tauner committed
601
	const char *const *straps_names;
602
	switch (ich_generation) {
603
	case CHIPSET_ICH7:
604 605 606
		/* EP80579 may need further changes, but this is the least
		 * intrusive way to get correct BOOT Strap printing without
		 * changing the rest of its code path). */
Stefan Tauner's avatar
Stefan Tauner committed
607
		if (dev->device_id == 0x5031)
608 609 610 611
			straps_names = straps_names_EP80579;
		else
			straps_names = straps_names_ich7_nm10;
		break;
612 613 614
	case CHIPSET_ICH8:
	case CHIPSET_ICH9:
	case CHIPSET_ICH10:
615 616
		straps_names = straps_names_ich8910;
		break;
Stefan Tauner's avatar
Stefan Tauner committed
617 618 619
	case CHIPSET_TUNNEL_CREEK:
		straps_names = straps_names_tunnel_creek;
		break;
620 621
	case CHIPSET_5_SERIES_IBEX_PEAK:
	case CHIPSET_6_SERIES_COUGAR_POINT:
622 623
	case CHIPSET_7_SERIES_PANTHER_POINT:
		straps_names = straps_names_pch567;
624
		break;
625
	case CHIPSET_8_SERIES_LYNX_POINT:
626
	case CHIPSET_9_SERIES_WILDCAT_POINT:
627
	case CHIPSET_BAYTRAIL:
628
		straps_names = straps_names_pch89_baytrail;
629 630 631 632 633
		break;
	case CHIPSET_8_SERIES_LYNX_POINT_LP:
		straps_names = straps_names_pch8_lp;
		break;
	case CHIPSET_8_SERIES_WELLSBURG: // FIXME: check datasheet
Stefan Tauner's avatar
Stefan Tauner committed
634
	case CHIPSET_CENTERTON: // FIXME: Datasheet does not mention GCS at all
635 636
		straps_names = straps_names_unknown;
		break;
637
	default:
Stefan Tauner's avatar
Stefan Tauner committed
638
		msg_gerr("%s: unknown ICH generation. Please report!\n", __func__);
639 640 641
		straps_names = straps_names_unknown;
		break;
	}
642

Stefan Tauner's avatar
Stefan Tauner committed
643
	uint8_t bbs;
644
	switch (ich_generation) {
Stefan Tauner's avatar
Stefan Tauner committed
645 646 647
	case CHIPSET_TUNNEL_CREEK:
		bbs = (gcs >> 1) & 0x1;
		break;
648
	case CHIPSET_8_SERIES_LYNX_POINT_LP:
649
		/* Lynx Point LP uses a single bit for BBS */
650 651 652
		bbs = (gcs >> 10) & 0x1;
		break;
	default:
653
		/* Other chipsets use two bits for BBS */
654 655 656
		bbs = (gcs >> 10) & 0x3;
		break;
	}
657
	msg_pdbg("Boot BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]);
658

659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
	/* Centerton has its TS bit in [GPE0BLK] + 0x30 while the exact location for Tunnel Creek is unknown. */
	if (ich_generation != CHIPSET_TUNNEL_CREEK && ich_generation != CHIPSET_CENTERTON)
		msg_pdbg("Top Swap: %s\n", (top_swap) ? "enabled (A16(+) inverted)" : "not enabled");
}

static int enable_flash_ich_spi(struct pci_dev *dev, enum ich_chipset ich_generation, uint8_t bios_cntl)
{

	/* Get physical address of Root Complex Register Block */
	uint32_t rcra = pci_read_long(dev, 0xf0) & 0xffffc000;
	msg_pdbg("Root Complex Register Block address = 0x%x\n", rcra);

	/* Map RCBA to virtual memory */
	void *rcrb = rphysmap("ICH RCRB", rcra, 0x4000);
	if (rcrb == ERROR_PTR)
		return ERROR_FATAL;

	enable_flash_ich_handle_gcs(dev, ich_generation, mmio_readl(rcrb + 0x3410), mmio_readb(rcrb + 0x3414));
Stefan Reinauer's avatar
Stefan Reinauer committed
677

Stefan Tauner's avatar
Stefan Tauner committed
678 679 680 681 682 683 684 685
	/* Handle FWH-related parameters and initialization */
	int ret_fwh = enable_flash_ich_fwh(dev, ich_generation, bios_cntl);
	if (ret_fwh == ERROR_FATAL)
		return ret_fwh;

	/* SPIBAR is at RCRB+0x3020 for ICH[78], Tunnel Creek and Centerton, and RCRB+0x3800 for ICH9. */
	uint16_t spibar_offset;
	switch (ich_generation) {
686
	case CHIPSET_BAYTRAIL:
Stefan Tauner's avatar
Stefan Tauner committed
687 688 689 690 691 692 693 694 695 696 697 698
	case CHIPSET_ICH_UNKNOWN:
		return ERROR_FATAL;
	case CHIPSET_ICH7:
	case CHIPSET_ICH8:
	case CHIPSET_TUNNEL_CREEK:
	case CHIPSET_CENTERTON:
		spibar_offset = 0x3020;
		break;
	case CHIPSET_ICH9:
	default:		/* Future version might behave the same */
		spibar_offset = 0x3800;
		break;
Stefan Reinauer's avatar
Stefan Reinauer committed
699
	}
Stefan Tauner's avatar
Stefan Tauner committed
700 701
	msg_pdbg("SPIBAR = 0x%0*" PRIxPTR " + 0x%04x\n", PRIxPTR_WIDTH, (uintptr_t)rcrb, spibar_offset);
	void *spibar = rcrb + spibar_offset;
Stefan Reinauer's avatar
Stefan Reinauer committed
702

703
	/* This adds BUS_SPI */
Stefan Tauner's avatar
Stefan Tauner committed
704
	int ret_spi = ich_init_spi(dev, spibar, ich_generation);
705 706 707
	if (ret_spi == ERROR_FATAL)
		return ret_spi;
	
Stefan Tauner's avatar
Stefan Tauner committed
708 709
	if (ret_fwh || ret_spi)
		return ERROR_NONFATAL;
710

Stefan Tauner's avatar
Stefan Tauner committed
711 712 713 714 715 716 717 718 719 720 721
	return 0;
}

static int enable_flash_tunnelcreek(struct pci_dev *dev, const char *name)
{
	return enable_flash_ich_spi(dev, CHIPSET_TUNNEL_CREEK, 0xd8);
}

static int enable_flash_s12x0(struct pci_dev *dev, const char *name)
{
	return enable_flash_ich_spi(dev, CHIPSET_CENTERTON, 0xd8);
722
}
Stefan Reinauer's avatar
Stefan Reinauer committed
723

724
static int enable_flash_ich7(struct pci_dev *dev, const char *name)
725
{
Stefan Tauner's avatar
Stefan Tauner committed
726
	return enable_flash_ich_spi(dev, CHIPSET_ICH7, 0xdc);
727 728
}

729 730
static int enable_flash_ich8(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
731
	return enable_flash_ich_spi(dev, CHIPSET_ICH8, 0xdc);
732 733
}

734 735
static int enable_flash_ich9(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
736
	return enable_flash_ich_spi(dev, CHIPSET_ICH9, 0xdc);
737 738
}

Carl-Daniel Hailfinger's avatar
Carl-Daniel Hailfinger committed
739 740
static int enable_flash_ich10(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
741
	return enable_flash_ich_spi(dev, CHIPSET_ICH10, 0xdc);
Carl-Daniel Hailfinger's avatar
Carl-Daniel Hailfinger committed
742 743
}

744 745 746
/* Ibex Peak aka. 5 series & 3400 series */
static int enable_flash_pch5(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
747
	return enable_flash_ich_spi(dev, CHIPSET_5_SERIES_IBEX_PEAK, 0xdc);
748 749 750 751 752
}

/* Cougar Point aka. 6 series & c200 series */
static int enable_flash_pch6(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
753
	return enable_flash_ich_spi(dev, CHIPSET_6_SERIES_COUGAR_POINT, 0xdc);
754 755
}

756 757 758
/* Panther Point aka. 7 series */
static int enable_flash_pch7(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
759
	return enable_flash_ich_spi(dev, CHIPSET_7_SERIES_PANTHER_POINT, 0xdc);
760 761 762 763 764
}

/* Lynx Point aka. 8 series */
static int enable_flash_pch8(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
765
	return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_LYNX_POINT, 0xdc);
766 767
}

Stefan Tauner's avatar
Stefan Tauner committed
768
/* Lynx Point LP aka. 8 series low-power */
769 770
static int enable_flash_pch8_lp(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
771
	return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_LYNX_POINT_LP, 0xdc);
772 773 774 775 776
}

/* Wellsburg (for Haswell-EP Xeons) */
static int enable_flash_pch8_wb(struct pci_dev *dev, const char *name)
{
Stefan Tauner's avatar
Stefan Tauner committed
777
	return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_WELLSBURG, 0xdc);
778 779
}

780 781 782 783 784 785
/* Wildcat Point */
static int enable_flash_pch9(struct pci_dev *dev, const char *name)
{
	return enable_flash_ich_spi(dev, CHIPSET_9_SERIES_WILDCAT_POINT, 0xdc);
}

786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
/* Silvermont architecture: Bay Trail(-T/-I), Avoton/Rangeley.
 * These have a distinctly different behavior compared to other Intel chipsets and hence are handled separately.
 *
 * Differences include:
 *	- RCBA at LPC config 0xF0 too but mapped range is only 4 B long instead of 16 kB.
 *	- GCS at [RCRB] + 0 (instead of [RCRB] + 0x3410).
 *	- TS (Top Swap) in GCS (instead of [RCRB] + 0x3414).
 *	- SPIBAR (coined SBASE) at LPC config 0x54 (instead of [RCRB] + 0x3800).
 *	- BIOS_CNTL (coined BCR) at [SPIBAR] + 0xFC (instead of LPC config 0xDC).
 */
static int enable_flash_silvermont(struct pci_dev *dev, const char *name)
{
	enum ich_chipset ich_generation = CHIPSET_BAYTRAIL;

	/* Get physical address of Root Complex Register Block */
	uint32_t rcba = pci_read_long(dev, 0xf0) & 0xfffffc00;
	msg_pdbg("Root Complex Register Block address = 0x%x\n", rcba);

	/* Handle GCS (in RCRB) */
	void *rcrb = physmap("BYT RCRB", rcba, 4);
	uint32_t gcs = mmio_readl(rcrb + 0);
	enable_flash_ich_handle_gcs(dev, ich_generation, gcs, gcs & 0x2);
	physunmap(rcrb, 4);

	/* Handle fwh_idsel parameter */
	int ret_fwh = enable_flash_ich_fwh_decode(dev, ich_generation);
	if (ret_fwh == ERROR_FATAL)
		return ret_fwh;

	internal_buses_supported = BUS_FWH;

	/* Get physical address of SPI Base Address and map it */
	uint32_t sbase = pci_read_long(dev, 0x54) & 0xfffffe00;
	msg_pdbg("SPI_BASE_ADDRESS = 0x%x\n", sbase);
	void *spibar = rphysmap("BYT SBASE", sbase, 512); /* Last defined address on Bay Trail is 0x100 */

	/* Enable Flash Writes.
	 * Silvermont-based: BCR at SBASE + 0xFC (some bits of BCR are also accessible via BC at IBASE + 0x1C).
	 */
	enable_flash_ich_bios_cntl_memmapped(ich_generation, spibar + 0xFC);

	int ret_spi = ich_init_spi(dev, spibar, ich_generation);
	if (ret_spi == ERROR_FATAL)
		return ret_spi;

	if (ret_fwh || ret_spi)
		return ERROR_NONFATAL;

	return 0;
}

Michael Karcher's avatar
Michael Karcher committed
837 838 839 840 841
static int via_no_byte_merge(struct pci_dev *dev, const char *name)
{
	uint8_t val;

	val = pci_read_byte(dev, 0x71);
842
	if (val & 0x40) {
Michael Karcher's avatar
Michael Karcher committed
843 844
		msg_pdbg("Disabling byte merging\n");
		val &= ~0x40;
845
		rpci_write_byte(dev, 0x71, val);
Michael Karcher's avatar
Michael Karcher committed
846 847 848 849
	}
	return NOT_DONE_YET;	/* need to find south bridge, too */
}

850
static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
851
{
852
	uint8_t val;
853

854
	/* Enable ROM decode range (1MB) FFC00000 - FFFFFFFF. */
855
	rpci_write_byte(dev, 0x41, 0x7f);
856

Uwe Hermann's avatar
Uwe Hermann committed
857
	/* ROM write enable */
858 859
	val = pci_read_byte(dev, 0x40);
	val |= 0x10;
860
	rpci_write_byte(dev, 0x40, val);
861 862

	if (pci_read_byte(dev, 0x40) != val) {
Stefan Tauner's avatar
Stefan Tauner committed
863
		msg_pwarn("\nWarning: Failed to enable flash write on \"%s\"\n", name);
864
		return -1;
865
	}
866

Helge Wagner's avatar
Helge Wagner committed
867
	if (dev->device_id == 0x3227) { /* VT8237/VT8237R */
868 869 870 871
		/* All memory cycles, not just ROM ones, go to LPC. */
		val = pci_read_byte(dev, 0x59);
		val &= ~0x80;
		rpci_write_byte(dev, 0x59, val);
872 873
	}

874
	return 0;
875 876
}

Helge Wagner's avatar
Helge Wagner committed
877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904
static int enable_flash_vt_vx(struct pci_dev *dev, const char *name)
{
	struct pci_dev *south_north = pci_dev_find(0x1106, 0xa353);
	if (south_north == NULL) {
		msg_perr("Could not find South-North Module Interface Control device!\n");
		return ERROR_FATAL;
	}

	msg_pdbg("Strapped to ");
	if ((pci_read_byte(south_north, 0x56) & 0x01) == 0) {
		msg_pdbg("LPC.\n");
		return enable_flash_vt823x(dev, name);
	}
	msg_pdbg("SPI.\n");

	uint32_t mmio_base;
	void *mmio_base_physmapped;
	uint32_t spi_cntl;
	#define SPI_CNTL_LEN 0x08
	uint32_t spi0_mm_base = 0;
	switch(dev->device_id) {
		case 0x8353: /* VX800/VX820 */
			spi0_mm_base = pci_read_long(dev, 0xbc) << 8;
			break;
		case 0x8409: /* VX855/VX875 */
		case 0x8410: /* VX900 */
			mmio_base = pci_read_long(dev, 0xbc) << 8;
			mmio_base_physmapped = physmap("VIA VX MMIO register", mmio_base, SPI_CNTL_LEN);
Stefan Tauner's avatar
Stefan Tauner committed
905
			if (mmio_base_physmapped == ERROR_PTR)
Helge Wagner's avatar
Helge Wagner committed
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937
				return ERROR_FATAL;

			/* Offset 0 - Bit 0 holds SPI Bus0 Enable Bit. */
			spi_cntl = mmio_readl(mmio_base_physmapped) + 0x00;
			if ((spi_cntl & 0x01) == 0) {
				msg_pdbg ("SPI Bus0 disabled!\n");
				physunmap(mmio_base_physmapped, SPI_CNTL_LEN);
				return ERROR_FATAL;
			}
			/* Offset 1-3 has  SPI Bus Memory Map Base Address: */
			spi0_mm_base = spi_cntl & 0xFFFFFF00;

			/* Offset 4 - Bit 0 holds SPI Bus1 Enable Bit. */
			spi_cntl = mmio_readl(mmio_base_physmapped) + 0x04;
			if ((spi_cntl & 0x01) == 1)
				msg_pdbg2("SPI Bus1 is enabled too.\n");

			physunmap(mmio_base_physmapped, SPI_CNTL_LEN);
			break;
		default:
			msg_perr("%s: Unsupported chipset %x:%x!\n", __func__, dev->vendor_id, dev->device_id);
			return ERROR_FATAL;
	}

	return via_init_spi(dev, spi0_mm_base);
}

static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name)
{
	return via_init_spi(dev, pci_read_long(dev, 0xbc) << 8);
}

938
static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
939
{
940
	uint8_t reg8;
941

942 943
#define DECODE_CONTROL_REG2		0x5b	/* F0 index 0x5b */
#define ROM_AT_LOGIC_CONTROL_REG	0x52	/* F0 index 0x52 */
944 945
#define CS5530_RESET_CONTROL_REG	0x44	/* F0 index 0x44 */
#define CS5530_USB_SHADOW_REG		0x43	/* F0 index 0x43 */
946

947 948 949 950
#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)
951 952 953
#define CS5530_ISA_MASTER		(1 << 7)
#define CS5530_ENABLE_SA2320		(1 << 2)
#define CS5530_ENABLE_SA20		(1 << 6)
954

955
	internal_buses_supported = BUS_PARALLEL;
956 957
	/* Decode 0x000E0000-0x000FFFFF (128 kB), not just 64 kB, and
	 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 kB.
958 959
	 * FIXME: Should we really touch the low mapping below 1 MB? Flashrom
	 * ignores that region completely.
960 961 962 963 964 965
	 * 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;
966
	rpci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
967

968 969 970
	/* Set positive decode on ROM. */
	reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
	reg8 |= BIOS_ROM_POSITIVE_DECODE;
971
	rpci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
972

973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990
	reg8 = pci_read_byte(dev, CS5530_RESET_CONTROL_REG);
	if (reg8 & CS5530_ISA_MASTER) {
		/* We have A0-A23 available. */
		max_rom_decode.parallel = 16 * 1024 * 1024;
	} else {
		reg8 = pci_read_byte(dev, CS5530_USB_SHADOW_REG);
		if (reg8 & CS5530_ENABLE_SA2320) {
			/* We have A0-19, A20-A23 available. */
			max_rom_decode.parallel = 16 * 1024 * 1024;
		} else if (reg8 & CS5530_ENABLE_SA20) {
			/* We have A0-19, A20 available. */
			max_rom_decode.parallel = 2 * 1024 * 1024;
		} else {
			/* A20 and above are not active. */
			max_rom_decode.parallel = 1024 * 1024;
		}
	}

991 992 993
	return 0;
}

994
/*
995
 * Geode systems write protect the BIOS via RCONFs (cache settings similar
996
 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. 
997 998 999 1000 1001
 *
 * 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).
 */
1002
static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
1003
{
1004 1005
#define MSR_RCONF_DEFAULT	0x1808
#define MSR_NORF_CTL		0x51400018
1006

1007
	msr_t msr;
1008

1009 1010
	/* Geode only has a single core */
	if (setup_cpu_msr(0))
1011
		return -1;
1012

1013 1014 1015 1016
	msr = rdmsr(MSR_RCONF_DEFAULT);
	if ((msr.hi >> 24) != 0x22) {
		msr.hi &= 0xfbffffff;
		wrmsr(MSR_RCONF_DEFAULT, msr);
1017 1018
	}

1019
	msr = rdmsr(MSR_NORF_CTL);
1020
	/* Raise WE_CS3 bit. */
1021 1022
	msr.lo |= 0x08;
	wrmsr(MSR_NORF_CTL, msr);
1023

1024
	cleanup_cpu_msr();
1025

1026 1027
#undef MSR_RCONF_DEFAULT
#undef MSR_NORF_CTL
1028 1029 1030
	return 0;
}

1031
static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
1032
{
1033
	#define SC_REG 0x52
1034
	uint8_t new;
1035

1036
	rpci_write_byte(dev, SC_REG, 0xee);
1037

1038
	new = pci_read_byte(dev, SC_REG);
1039

1040 1041
	if (new != 0xee) { /* FIXME: share this with other code? */
		msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", SC_REG, new, name);
1042 1043
		return -1;
	}
Uwe Hermann's avatar
Uwe Hermann committed
1044

1045 1046 1047
	return 0;
}

1048 1049 1050 1051 1052 1053 1054 1055 1056
/* Works for AMD-768, AMD-8111, VIA VT82C586A/B, VIA VT82C596, VIA VT82C686A/B.
 *
 * ROM decode control register matrix
 * 	AMD-768			AMD-8111	VT82C586A/B		VT82C596		VT82C686A/B
 * 7	FFC0_0000h–FFFF_FFFFh	<-		FFFE0000h-FFFEFFFFh	<-			<-
 * 6	FFB0_0000h–FFBF_FFFFh	<-		FFF80000h-FFFDFFFFh	<-			<-
 * 5	00E8...			<-		<-			FFF00000h-FFF7FFFFh	<-
 */
static int enable_flash_amd_via(struct pci_dev *dev, const char *name, uint8_t decode_val)
1057
{
1058 1059
	#define AMD_MAPREG 0x43
	#define AMD_ENREG 0x40
1060
	uint8_t old, new;
1061

1062
	old = pci_read_byte(dev, AMD_MAPREG);
1063
	new = old | decode_val;
1064
	if (new != old) {
1065 1066
		rpci_write_byte(dev, AMD_MAPREG, new);
		if (pci_read_byte(dev, AMD_MAPREG) != new) {
1067
			msg_pwarn("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
1068
				  AMD_MAPREG, new, name);
1069 1070
		} else
			msg_pdbg("Changed ROM decode range to 0x%02x successfully.\n", new);
1071 1072
	}

1073
	/* Enable 'ROM write' bit. */
1074
	old = pci_read_byte(dev, AMD_ENREG);
1075 1076 1077
	new = old | 0x01;
	if (new == old)
		return 0;
1078
	rpci_write_byte(dev, AMD_ENREG, new);
1079

1080
	if (pci_read_byte(dev, AMD_ENREG) != new) {
1081
		msg_pwarn("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
1082
			  AMD_ENREG, new, name);
1083
		return ERROR_NONFATAL;
1084
	}
1085
	msg_pdbg2("Set ROM enable bit successfully.\n");
Uwe Hermann's avatar
Uwe Hermann committed
1086

1087 1088 1089
	return 0;
}

1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
static int enable_flash_amd_768_8111(struct pci_dev *dev, const char *name)
{
	/* Enable decoding of 0xFFB00000 to 0xFFFFFFFF (5 MB). */
	max_rom_decode.lpc = 5 * 1024 * 1024;
	return enable_flash_amd_via(dev, name, 0xC0);
}

static int enable_flash_vt82c586(struct pci_dev *dev, const char *name)
{
	/* Enable decoding of 0xFFF80000 to 0xFFFFFFFF. (512 kB) */
	max_rom_decode.parallel = 512 * 1024;
	return enable_flash_amd_via(dev, name, 0xC0);
}

/* Works for VT82C686A/B too. */
static int enable_flash_vt82c596(struct pci_dev *dev, const char *name)
{
1107
	/* Enable decoding of 0xFFF00000 to 0xFFFFFFFF. (1 MB) */
1108 1109 1110 1111
	max_rom_decode.parallel = 1024 * 1024;
	return enable_flash_amd_via(dev, name, 0xE0);
}

1112 1113
static int enable_flash_sb600(struct pci_dev *dev, const char *name)
{
1114
	uint32_t prot;
1115
	uint8_t reg;
1116
	int ret;
1117

1118
	/* Clear ROM protect 0-3. */
1119
	for (reg = 0x50; reg < 0x60; reg += 4) {
1120 1121 1122 1123
		prot = pci_read_long(dev, reg);
		/* No protection flags for this region?*/
		if ((prot & 0x3) == 0)
			continue;
1124
		msg_pdbg("Chipset %s%sprotected flash from 0x%08x to 0x%08x, unlocking...",
1125
			  (prot & 0x2) ? "read " : "",
1126
			  (prot & 0x1) ? "write " : "",
1127 1128
			  (prot & 0xfffff800),
			  (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
1129
		prot &= 0xfffffffc;
1130
		rpci_write_byte(dev, reg, prot);
1131
		prot = pci_read_long(dev, reg);
1132 1133
		if ((prot & 0x3) != 0) {
			msg_perr("Disabling %s%sprotection of flash addresses from 0x%08x to 0x%08x failed.\n",
1134
				 (prot & 0x2) ? "read " : "",
1135
				 (prot & 0x1) ? "write " : "",
1136 1137
				 (prot & 0xfffff800),
				 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
1138 1139 1140
			continue;
		}
		msg_pdbg("done.\n");
1141 1142
	}

1143
	internal_buses_supported = BUS_LPC | BUS_FWH;
1144 1145

	ret = sb600_probe_spi(dev);
1146

1147 1148 1149 1150
	/* Read ROM strap override register. */
	OUTB(0x8f, 0xcd6);
	reg = INB(0xcd7);
	reg &= 0x0e;
1151
	msg_pdbg("ROM strap override is %sactive", (reg & 0x02) ? "" : "not ");
1152 1153 1154
	if (reg & 0x02) {
		switch ((reg & 0x0c) >> 2) {
		case 0x00:
1155
			msg_pdbg(": LPC");
1156 1157
			break;
		case 0x01:
1158
			msg_pdbg(": PCI");
1159 1160
			break;
		case 0x02:
1161
			msg_pdbg(": FWH");
1162 1163
			break;
		case 0x03:
1164
			msg_pdbg(": SPI");
1165 1166 1167
			break;
		}
	}
1168
	msg_pdbg("\n");
1169

1170 1171
	/* Force enable SPI ROM in SB600 PM register.
	 * If we enable SPI ROM here, we have to disable it after we leave.
1172 1173
	 * But how can we know which ROM we are going to handle? So we have
	 * to trade off. We only access LPC ROM if we boot via LPC ROM. And
1174 1175
	 * only SPI ROM if we boot via SPI ROM. If you want to access SPI on
	 * boards with LPC straps, you have to use the code below.
1176 1177
	 */
	/*
1178 1179
	OUTB(0x8f, 0xcd6);
	OUTB(0x0e, 0xcd7);
1180
	*/
1181

1182
	return ret;
1183 1184
}

1185 1186
/* sets bit 0 in 0x6d */
static int enable_flash_nvidia_common(struct pci_dev *dev, const char *name)
Luc Verhaegen's avatar
Luc Verhaegen committed
1187
{
1188
	uint8_t old, new;
Luc Verhaegen's avatar
Luc Verhaegen committed
1189

1190 1191 1192 1193
	old = pci_read_byte(dev, 0x6d);
	new = old | 0x01;
	if (new == old)
		return 0;
Luc Verhaegen's avatar
Luc Verhaegen committed
1194

1195 1196 1197 1198 1199
	rpci_write_byte(dev, 0x6d, new);
	if (pci_read_byte(dev, 0x6d) != new) {
		msg_pinfo("Setting register 0x6d to 0x%02x on %s failed.\n", new, name);
		return 1;
	}
1200
	return 0;
Luc Verhaegen's avatar
Luc Verhaegen committed
1201 1202
}

1203 1204 1205 1206 1207 1208 1209 1210 1211
static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name)
{
	rpci_write_byte(dev, 0x92, 0);
	if (enable_flash_nvidia_common(dev, name))
		return ERROR_NONFATAL;
	else
		return 0;
}

1212
static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu's avatar
Yinghai Lu committed
1213
{
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
	uint32_t segctrl;
	uint8_t reg, old, new;
	unsigned int err = 0;

	/* 0x8A is special: it is a single byte and only one nibble is touched. */
	reg = 0x8A;
	segctrl = pci_read_byte(dev, reg);
	if ((segctrl & 0x3) != 0x0) {
		if ((segctrl & 0xC) != 0x0) {
			msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg);
			err++;
		} else {
			msg_pdbg("Unlocking protection in register 0x%02x... ", reg);
			rpci_write_byte(dev, reg, segctrl & 0xF0);

			segctrl = pci_read_byte(dev, reg);
			if ((segctrl & 0x3) != 0x0) {
				msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%x).\n",
					  reg, segctrl);
				err++;
			} else
				msg_pdbg("OK\n");
		}
	}
1238

1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
	for (reg = 0x8C; reg <= 0x94; reg += 4) {
		segctrl = pci_read_long(dev, reg);
		if ((segctrl & 0x33333333) == 0x00000000) {
			/* reads and writes are unlocked */
			continue;
		}
		if ((segctrl & 0xCCCCCCCC) != 0x00000000) {
			msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg);
			err++;
			continue;
		}
		msg_pdbg("Unlocking protection in register 0x%02x... ", reg);
		rpci_write_long(dev, reg, 0x00000000);

		segctrl = pci_read_long(dev, reg);
		if ((segctrl & 0x33333333) != 0x00000000) {
			msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%08x).\n",
				  reg, segctrl);
			err++;
		} else
			msg_pdbg("OK\n");
	}

	if (err > 0) {
		msg_pinfo("%d locks could not be disabled, disabling writes (reads may also fail).\n", err);
		programmer_may_write = 0;
1265 1266
	}

1267 1268 1269
	reg = 0x88;
	old = pci_read_byte(dev, reg);
	new = old | 0xC0;
1270
	if (new != old) {
1271
		rpci_write_byte(dev, reg, new);
1272 1273
		if (pci_read_byte(dev, reg) != new) { /* FIXME: share this with other code? */
			msg_pinfo("Setting register 0x%02x to 0x%02x on %s failed.\n", reg, new, name);
1274
			err++;
1275 1276 1277
		}
	}

1278
	if (enable_flash_nvidia_common(dev, name))
1279 1280 1281
		err++;

	if (err > 0)
1282 1283
		return ERROR_NONFATAL;
	else
1284
		return 0;
Yinghai Lu's avatar
Yinghai Lu committed
1285 1286
}

1287 1288 1289 1290
static int enable_flash_osb4(struct pci_dev *dev, const char *name)
{
	uint8_t tmp;

1291
	internal_buses_supported = BUS_PARALLEL;
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303

	tmp = INB(0xc06);
	tmp |= 0x1;
	OUTB(tmp, 0xc06);

	tmp = INB(0xc6f);
	tmp |= 0x40;
	OUTB(tmp, 0xc6f);

	return 0;
}

1304 1305
/* 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
1306
{
1307
	uint8_t tmp;
Stefan Reinauer's avatar
Stefan Reinauer committed
1308 1309
	struct pci_dev *smbusdev;

1310
	/* Look for the SMBus device. */
1311
	smbusdev = pci_dev_find(0x1002, 0x4372);
1312

1313
	if (!smbusdev) {
1314
		msg_perr("ERROR: SMBus device not found. Aborting.\n");
1315
		return ERROR_FATAL;
Stefan Reinauer's avatar
Stefan Reinauer committed
1316
	}
1317

1318
	/* Enable some SMBus stuff. */
1319 1320
	tmp = pci_read_byte(smbusdev, 0x79);
	tmp |= 0x01;
1321
	rpci_write_byte(smbusdev, 0x79, tmp);
Stefan Reinauer's avatar
Stefan Reinauer committed
1322

1323
	/* Change southbridge. */
1324 1325
	tmp = pci_read_byte(dev, 0x48);
	tmp |= 0x21;
1326
	rpci_write_byte(dev, 0x48, tmp);
Stefan Reinauer's avatar
Stefan Reinauer committed
1327

1328
	/* Now become a bit silly. */
1329 1330 1331
	tmp = INB(0xc6f);
	OUTB(tmp, 0xeb);
	OUTB(tmp, 0xeb);
1332
	tmp |= 0x40;
1333 1334 1335
	OUTB(tmp, 0xc6f);
	OUTB(tmp, 0xeb);
	OUTB(tmp, 0xeb);
Stefan Reinauer's avatar
Stefan Reinauer committed
1336 1337 1338 1339

	return 0;
}

1340
static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
1341
{
1342
	uint8_t val;
1343
	uint16_t wordval;
1344

1345
	/* Set the 0-16 MB enable bits. */
1346 1347
	val = pci_read_byte(dev, 0x88);
	val |= 0xff;		/* 256K */
1348
	rpci_write_byte(dev, 0x88, val);
1349 1350
	val = pci_read_byte(dev, 0x8c);
	val |= 0xff;		/* 1M */
1351
	rpci_write_byte(dev, 0x8c, val);
1352 1353
	wordval = pci_read_word(dev, 0x90);
	wordval |= 0x7fff;	/* 16M */
1354
	rpci_write_word(dev, 0x90, wordval);
1355

1356 1357 1358
	if (enable_flash_nvidia_common(dev, name))
		return ERROR_NONFATAL;
	else
1359
		return 0;
1360 1361
}

1362
/*
1363 1364 1365
 * The MCP6x/MCP7x code is based on cleanroom reverse engineering.
 * It is assumed that LPC chips need the MCP55 code and SPI chips need the
 * code provided in enable_flash_mcp6x_7x_common.
1366
 */
1367
static int enable_flash_mcp6x_7x(struct pci_dev *dev, const char *name)
1368
{
1369
	int ret = 0, want_spi = 0;
1370
	uint8_t val;
1371 1372

	/* dev is the ISA bridge. No idea what the stuff below does. */
1373
	val = pci_read_byte(dev, 0x8a);
1374
	msg_pdbg("ISA/LPC bridge reg 0x8a contents: 0x%02x, bit 6 is %i, bit 5 "
1375
		 "is %i\n", val, (val >> 6) & 0x1, (val >> 5) & 0x1);
1376

1377
	switch ((val >> 5) & 0x3) {
1378
	case 0x0:
1379
		ret = enable_flash_mcp55(dev, name);
1380
		internal_buses_supported = BUS_LPC;
1381
		msg_pdbg("Flash bus type is LPC\n");
1382 1383
		break;
	case 0x2:
1384 1385 1386 1387
		want_spi = 1;
		/* SPI is added in mcp6x_spi_init if it works.
		 * Do we really want to disable LPC in this case?
		 */
1388
		internal_buses_supported = BUS_NONE;
1389
		msg_pdbg("Flash bus type is SPI\n");
1390 1391
		break;
	default:
1392
		/* Should not happen. */
1393
		internal_buses_supported = BUS_NONE;
1394 1395 1396 1397 1398
		msg_pwarn("Flash bus type is unknown (none)\n");
		msg_pinfo("Please send the log files created by \"flashrom -p internal -o logfile\" to \n"
			  "flashrom@flashrom.org with \"your board name: flashrom -V\" as the subject to\n"
			  "help us finish support for your chipset. Thanks.\n");
		return ERROR_NONFATAL;
1399 1400 1401
	}

	/* Force enable SPI and disable LPC? Not a good idea. */
1402
#if 0
1403 1404
	val |= (1 << 6);
	val &= ~(1 << 5);
1405
	rpci_write_byte(dev, 0x8a, val);
1406 1407
#endif

1408
	if (mcp6x_spi_init(want_spi))
1409
		ret = 1;
1410

1411
	return ret;
1412 1413
}

1414
static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
1415
{
1416
	uint8_t val;
1417

1418
	/* Set the 4MB enable bit. */
1419 1420
	val = pci_read_byte(dev, 0x41);
	val |= 0x0e;
1421
	rpci_write_byte(dev, 0x41, val);
1422

1423 1424
	val = pci_read_byte(dev, 0x43);
	val |= (1 << 4);
1425
	rpci_write_byte(dev, 0x43, val);
1426 1427 1428 1429

	return 0;
}

1430
/*
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
 * Usually on the x86 architectures (and on other PC-like platforms like some
 * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD
 * Elan SC520 only a small piece of the system flash is mapped there, but the
 * complete flash is mapped somewhere below 1G. The position can be determined
 * by the BOOTCS PAR register.
 */
static int get_flashbase_sc520(struct pci_dev *dev, const char *name)
{
	int i, bootcs_found = 0;
	uint32_t parx = 0;
	void *mmcr;

	/* 1. Map MMCR */
1444
	mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize());
1445 1446
	if (mmcr == ERROR_PTR)
		return ERROR_FATAL;
1447 1448 1449 1450 1451

	/* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for
	 *    BOOTCS region (PARx[31:29] = 100b)e
	 */
	for (i = 0x88; i <= 0xc4; i += 4) {
1452
		parx = mmio_readl(mmcr + i);
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
		if ((parx >> 29) == 4) {
			bootcs_found = 1;
			break; /* BOOTCS found */
		}
	}

	/* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0]
	 *    PARx[25] = 0b --> flashbase[29:12] = PARx[17:0]
	 */
	if (bootcs_found) {
		if (parx & (1 << 25)) {
			parx &= (1 << 14) - 1; /* Mask [13:0] */
			flashbase = parx << 16;
		} else {
			parx &= (1 << 18) - 1; /* Mask [17:0] */
			flashbase = parx << 12;
		}
	} else {
1471
		msg_pinfo("AMD Elan SC520 detected, but no BOOTCS. "
Carl-Daniel Hailfinger's avatar
Carl-Daniel Hailfinger committed
1472
			  "Assuming flash at 4G.\n");
1473 1474 1475
	}

	/* 4. Clean up */
1476
	physunmap(mmcr, getpagesize());
1477 1478 1479
	return 0;
}

1480 1481
#endif

1482
/* Please keep this list numerically sorted by vendor/device ID. */
Uwe Hermann's avatar
Uwe Hermann committed
1483
const struct penable chipset_enables[] = {
1484
#if defined(__i386__) || defined(__x86_64__)
1485 1486 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 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
	{0x1002, 0x4377, OK,  "ATI", "SB400",				enable_flash_sb400},
	{0x1002, 0x438d, OK,  "AMD", "SB600",				enable_flash_sb600},
	{0x1002, 0x439d, OK,  "AMD", "SB7x0/SB8x0/SB9x0",		enable_flash_sb600},
	{0x100b, 0x0510, NT,  "AMD", "SC1100",				enable_flash_sc1100},
	{0x1022, 0x2080, OK,  "AMD", "CS5536",				enable_flash_cs5536},
	{0x1022, 0x2090, OK,  "AMD", "CS5536",				enable_flash_cs5536},
	{0x1022, 0x3000, OK,  "AMD", "Elan SC520",			get_flashbase_sc520},
	{0x1022, 0x7440, OK,  "AMD", "AMD-768",				enable_flash_amd_768_8111},
	{0x1022, 0x7468, OK,  "AMD", "AMD-8111",			enable_flash_amd_768_8111},
	{0x1022, 0x780e, OK,  "AMD", "FCH",				enable_flash_sb600},
	{0x1039, 0x0406, NT,  "SiS", "501/5101/5501",			enable_flash_sis501},
	{0x1039, 0x0496, NT,  "SiS", "85C496+497",			enable_flash_sis85c496},
	{0x1039, 0x0530, OK,  "SiS", "530",				enable_flash_sis530},
	{0x1039, 0x0540, NT,  "SiS", "540",				enable_flash_sis540},
	{0x1039, 0x0620, NT,  "SiS", "620",				enable_flash_sis530},
	{0x1039, 0x0630, NT,  "SiS", "630",				enable_flash_sis540},
	{0x1039, 0x0635, NT,  "SiS", "635",				enable_flash_sis540},
	{0x1039, 0x0640, NT,  "SiS", "640",				enable_flash_sis540},
	{0x1039, 0x0645, NT,  "SiS", "645",				enable_flash_sis540},
	{0x1039, 0x0646, OK,  "SiS", "645DX",				enable_flash_sis540},
	{0x1039, 0x0648, OK,  "SiS", "648",				enable_flash_sis540},
	{0x1039, 0x0650, OK,  "SiS", "650",				enable_flash_sis540},
	{0x1039, 0x0651, OK,  "SiS", "651",				enable_flash_sis540},
	{0x1039, 0x0655, NT,  "SiS", "655",				enable_flash_sis540},
	{0x1039, 0x0661, OK,  "SiS", "661",				enable_flash_sis540},
	{0x1039, 0x0730, OK,  "SiS", "730",				enable_flash_sis540},
	{0x1039, 0x0733, NT,  "SiS", "733",				enable_flash_sis540},
	{0x1039, 0x0735, OK,  "SiS", "735",				enable_flash_sis540},
	{0x1039, 0x0740, NT,  "SiS", "740",				enable_flash_sis540},
	{0x1039, 0x0741, OK,  "SiS", "741",				enable_flash_sis540},
	{0x1039, 0x0745, OK,  "SiS", "745",				enable_flash_sis540},
	{0x1039, 0x0746, NT,  "SiS", "746",				enable_flash_sis540},
	{0x1039, 0x0748, NT,  "SiS", "748",				enable_flash_sis540},
	{0x1039, 0x0755, OK,  "SiS", "755",				enable_flash_sis540},
	{0x1039, 0x5511, NT,  "SiS", "5511",				enable_flash_sis5511},
	{0x1039, 0x5571, NT,  "SiS", "5571",				enable_flash_sis530},
	{0x1039, 0x5591, NT,  "SiS", "5591/5592",			enable_flash_sis530},
	{0x1039, 0x5596, NT,  "SiS", "5596",				enable_flash_sis5511},
	{0x1039, 0x5597, NT,  "SiS", "5597/5598/5581/5120",		enable_flash_sis530},
	{0x1039, 0x5600, NT,  "SiS", "600",				enable_flash_sis530},
	{0x1078, 0x0100, OK,  "AMD", "CS5530(A)",			enable_flash_cs5530},
	{0x10b9, 0x1533, OK,  "ALi", "M1533",				enable_flash_ali_m1533},
	{0x10de, 0x0030, OK,  "NVIDIA", "nForce4/MCP4",			enable_flash_nvidia_nforce2},
	{0x10de, 0x0050, OK,  "NVIDIA", "CK804",			enable_flash_ck804}, /* LPC */
	{0x10de, 0x0051, OK,  "NVIDIA", "CK804",			enable_flash_ck804}, /* Pro */
	{0x10de, 0x0060, OK,  "NVIDIA", "NForce2",			enable_flash_nvidia_nforce2},
	{0x10de, 0x00e0, OK,  "NVIDIA", "NForce3",			enable_flash_nvidia_nforce2},
1532
	/* Slave, should not be here, to fix known bug for A01. */
1533 1534 1535 1536 1537 1538
	{0x10de, 0x00d3, OK,  "NVIDIA", "CK804",			enable_flash_ck804},
	{0x10de, 0x0260, OK,  "NVIDIA", "MCP51",			enable_flash_ck804},
	{0x10de, 0x0261, OK,  "NVIDIA", "MCP51",			enable_flash_ck804},
	{0x10de, 0x0262, NT,  "NVIDIA", "MCP51",			enable_flash_ck804},
	{0x10de, 0x0263, NT,  "NVIDIA", "MCP51",			enable_flash_ck804},
	{0x10de, 0x0360, OK,  "NVIDIA", "MCP55",			enable_flash_mcp55}, /* M57SLI*/
1539 1540 1541 1542 1543 1544 1545
	/* 10de:0361 is present in Tyan S2915 OEM systems, but not connected to
	 * the flash chip. Instead, 10de:0364 is connected to the flash chip.
	 * Until we have PCI device class matching or some fallback mechanism,
	 * this is needed to get flashrom working on Tyan S2915 and maybe other
	 * dual-MCP55 boards.
	 */
#if 0
1546
	{0x10de, 0x0361, NT,  "NVIDIA", "MCP55",			enable_flash_mcp55}, /* LPC */
1547
#endif
1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569
	{0x10de, 0x0362, OK,  "NVIDIA", "MCP55",			enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0363, OK,  "NVIDIA", "MCP55",			enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0364, OK,  "NVIDIA", "MCP55",			enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0365, OK,  "NVIDIA", "MCP55",			enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0366, OK,  "NVIDIA", "MCP55",			enable_flash_mcp55}, /* LPC */
	{0x10de, 0x0367, OK,  "NVIDIA", "MCP55",			enable_flash_mcp55}, /* Pro */
	{0x10de, 0x03e0, OK,  "NVIDIA", "MCP61",			enable_flash_mcp6x_7x},
	{0x10de, 0x03e1, OK,  "NVIDIA", "MCP61",			enable_flash_mcp6x_7x},
	{0x10de, 0x03e3, NT,  "NVIDIA", "MCP61",			enable_flash_mcp6x_7x},
	{0x10de, 0x0440, NT,  "NVIDIA", "MCP65",			enable_flash_mcp6x_7x},
	{0x10de, 0x0441, NT,  "NVIDIA", "MCP65",			enable_flash_mcp6x_7x},
	{0x10de, 0x0442, NT,  "NVIDIA", "MCP65",			enable_flash_mcp6x_7x},
	{0x10de, 0x0443, NT,  "NVIDIA", "MCP65",			enable_flash_mcp6x_7x},
	{0x10de, 0x0548, OK,  "NVIDIA", "MCP67",			enable_flash_mcp6x_7x},
	{0x10de, 0x075c, OK,  "NVIDIA", "MCP78S",			enable_flash_mcp6x_7x},
	{0x10de, 0x075d, OK,  "NVIDIA", "MCP78S",			enable_flash_mcp6x_7x},
	{0x10de, 0x07d7, OK,  "NVIDIA", "MCP73",			enable_flash_mcp6x_7x},
	{0x10de, 0x0aac, OK,  "NVIDIA", "MCP79",			enable_flash_mcp6x_7x},
	{0x10de, 0x0aad, NT,  "NVIDIA", "MCP79",			enable_flash_mcp6x_7x},
	{0x10de, 0x0aae, NT,  "NVIDIA", "MCP79",			enable_flash_mcp6x_7x},
	{0x10de, 0x0aaf, NT,  "NVIDIA", "MCP79",			enable_flash_mcp6x_7x},
	{0x10de, 0x0d80, NT,  "NVIDIA", "MCP89",			enable_flash_mcp6x_7x},
Michael Karcher's avatar
Michael Karcher committed
1570
	/* VIA northbridges */
1571 1572 1573 1574 1575 1576
	{0x1106, 0x0585, NT,  "VIA", "VT82C585VPX",			via_no_byte_merge},
	{0x1106, 0x0595, NT,  "VIA", "VT82C595",			via_no_byte_merge},
	{0x1106, 0x0597, NT,  "VIA", "VT82C597",			via_no_byte_merge},
	{0x1106, 0x0601, NT,  "VIA", "VT8601/VT8601A",			via_no_byte_merge},
	{0x1106, 0x0691, OK,  "VIA", "VT82C69x",			via_no_byte_merge},
	{0x1106, 0x8601, NT,  "VIA", "VT8601T",				via_no_byte_merge},
Michael Karcher's avatar
Michael Karcher committed
1577
	/* VIA southbridges */
1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595
	{0x1106, 0x0586, OK,  "VIA", "VT82C586A/B",			enable_flash_vt82c586},
	{0x1106, 0x0596, OK,  "VIA", "VT82C596",			enable_flash_vt82c596},
	{0x1106, 0x0686, OK,  "VIA", "VT82C686A/B",			enable_flash_vt82c596},
	{0x1106, 0x3074, OK,  "VIA", "VT8233",				enable_flash_vt823x},
	{0x1106, 0x3147, OK,  "VIA", "VT8233A",				enable_flash_vt823x},
	{0x1106, 0x3177, OK,  "VIA", "VT8235",				enable_flash_vt823x},
	{0x1106, 0x3227, OK,  "VIA", "VT8237(R)",			enable_flash_vt823x},
	{0x1106, 0x3337, OK,  "VIA", "VT8237A",				enable_flash_vt823x},
	{0x1106, 0x3372, OK,  "VIA", "VT8237S",				enable_flash_vt8237s_spi},
	{0x1106, 0x8231, NT,  "VIA", "VT8231",				enable_flash_vt823x},
	{0x1106, 0x8324, OK,  "VIA", "CX700",				enable_flash_vt823x},
	{0x1106, 0x8353, NT,  "VIA", "VX800/VX820",			enable_flash_vt_vx},
	{0x1106, 0x8409, NT,  "VIA", "VX855/VX875",			enable_flash_vt_vx},
	{0x1106, 0x8410, NT,  "VIA", "VX900",				enable_flash_vt_vx},
	{0x1166, 0x0200, OK,  "Broadcom", "OSB4",			enable_flash_osb4},
	{0x1166, 0x0205, OK,  "Broadcom", "HT-1000",			enable_flash_ht1000},
	{0x17f3, 0x6030, OK,  "RDC", "R8610/R3210",			enable_flash_rdc_r8610},
	{0x8086, 0x0c60, NT,  "Intel", "S12x0",				enable_flash_s12x0},
1596
	{0x8086, 0x0f1c, OK,  "Intel", "Bay Trail",			enable_flash_silvermont},
1597 1598 1599
	{0x8086, 0x0f1d, NT,  "Intel", "Bay Trail",			enable_flash_silvermont},
	{0x8086, 0x0f1e, NT,  "Intel", "Bay Trail",			enable_flash_silvermont},
	{0x8086, 0x0f1f, NT,  "Intel", "Bay Trail",			enable_flash_silvermont},
1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
	{0x8086, 0x122e, OK,  "Intel", "PIIX",				enable_flash_piix4},
	{0x8086, 0x1234, NT,  "Intel", "MPIIX",				enable_flash_piix4},
	{0x8086, 0x1c44, DEP, "Intel", "Z68",				enable_flash_pch6},
	{0x8086, 0x1c46, DEP, "Intel", "P67",				enable_flash_pch6},
	{0x8086, 0x1c47, NT,  "Intel", "UM67",				enable_flash_pch6},
	{0x8086, 0x1c49, NT,  "Intel", "HM65",				enable_flash_pch6},
	{0x8086, 0x1c4a, DEP, "Intel", "H67",				enable_flash_pch6},
	{0x8086, 0x1c4b, NT,  "Intel", "HM67",				enable_flash_pch6},
	{0x8086, 0x1c4c, NT,  "Intel", "Q65",				enable_flash_pch6},
	{0x8086, 0x1c4d, NT,  "Intel", "QS67",				enable_flash_pch6},
	{0x8086, 0x1c4e, NT,  "Intel", "Q67",				enable_flash_pch6},
	{0x8086, 0x1c4f, DEP, "Intel", "QM67",				enable_flash_pch6},
	{0x8086, 0x1c50, NT,  "Intel", "B65",				enable_flash_pch6},
	{0x8086, 0x1c52, NT,  "Intel", "C202",				enable_flash_pch6},
	{0x8086, 0x1c54, DEP, "Intel", "C204",				enable_flash_pch6},
	{0x8086, 0x1c56, NT,  "Intel", "C206",				enable_flash_pch6},
	{0x8086, 0x1c5c, DEP, "Intel", "H61",				enable_flash_pch6},
	{0x8086, 0x1d40, DEP, "Intel", "C60x/X79",			enable_flash_pch6},
	{0x8086, 0x1d41, DEP, "Intel", "C60x/X79",			enable_flash_pch6},
	{0x8086, 0x1e44, DEP, "Intel", "Z77",				enable_flash_pch7},
	{0x8086, 0x1e46, NT,  "Intel", "Z75",				enable_flash_pch7},
	{0x8086, 0x1e47, NT,  "Intel", "Q77",				enable_flash_pch7},
	{0x8086, 0x1e48, NT,  "Intel", "Q75",				enable_flash_pch7},
	{0x8086, 0x1e49, DEP, "Intel", "B75",				enable_flash_pch7},
	{0x8086, 0x1e4a, DEP, "Intel", "H77",				enable_flash_pch7},
	{0x8086, 0x1e53, NT,  "Intel", "C216",				enable_flash_pch7},
	{0x8086, 0x1e55, DEP, "Intel", "QM77",				enable_flash_pch7},
	{0x8086, 0x1e56, NT,  "Intel", "QS77",				enable_flash_pch7},
	{0x8086, 0x1e57, DEP, "Intel", "HM77",				enable_flash_pch7},
	{0x8086, 0x1e58, NT,  "Intel", "UM77",				enable_flash_pch7},
	{0x8086, 0x1e59, NT,  "Intel", "HM76",				enable_flash_pch7},
	{0x8086, 0x1e5d, NT,  "Intel", "HM75",				enable_flash_pch7},
	{0x8086, 0x1e5e, NT,  "Intel", "HM70",				enable_flash_pch7},
	{0x8086, 0x1e5f, DEP, "Intel", "NM70",				enable_flash_pch7},
1634 1635 1636 1637
	{0x8086, 0x1f38, NT,  "Intel", "Avoton/Rangeley",		enable_flash_silvermont},
	{0x8086, 0x1f39, NT,  "Intel", "Avoton/Rangeley",		enable_flash_silvermont},
	{0x8086, 0x1f3a, NT,  "Intel", "Avoton/Rangeley",		enable_flash_silvermont},
	{0x8086, 0x1f3b, NT,  "Intel", "Avoton/Rangeley",		enable_flash_silvermont},
1638
	{0x8086, 0x229c, NT,  "Intel", "Braswell",			enable_flash_silvermont},
1639
	{0x8086, 0x2310, NT,  "Intel", "DH89xxCC (Cave Creek)",		enable_flash_pch7},
1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700
	{0x8086, 0x2390, NT,  "Intel", "Coleto Creek",			enable_flash_pch7},
	{0x8086, 0x2410, OK,  "Intel", "ICH",				enable_flash_ich0},
	{0x8086, 0x2420, OK,  "Intel", "ICH0",				enable_flash_ich0},
	{0x8086, 0x2440, OK,  "Intel", "ICH2",				enable_flash_ich2345},
	{0x8086, 0x244c, OK,  "Intel", "ICH2-M",			enable_flash_ich2345},
	{0x8086, 0x2450, NT,  "Intel", "C-ICH",				enable_flash_ich2345},
	{0x8086, 0x2480, OK,  "Intel", "ICH3-S",			enable_flash_ich2345},
	{0x8086, 0x248c, OK,  "Intel", "ICH3-M",			enable_flash_ich2345},
	{0x8086, 0x24c0, OK,  "Intel", "ICH4/ICH4-L",			enable_flash_ich2345},
	{0x8086, 0x24cc, OK,  "Intel", "ICH4-M",			enable_flash_ich2345},
	{0x8086, 0x24d0, OK,  "Intel", "ICH5/ICH5R",			enable_flash_ich2345},
	{0x8086, 0x25a1, OK,  "Intel", "6300ESB",			enable_flash_ich2345},
	{0x8086, 0x2640, OK,  "Intel", "ICH6/ICH6R",			enable_flash_ich6},
	{0x8086, 0x2641, OK,  "Intel", "ICH6-M",			enable_flash_ich6},
	{0x8086, 0x2642, NT,  "Intel", "ICH6W/ICH6RW",			enable_flash_ich6},
	{0x8086, 0x2670, OK,  "Intel", "631xESB/632xESB/3100",		enable_flash_ich6},
	{0x8086, 0x27b0, OK,  "Intel", "ICH7DH",			enable_flash_ich7},
	{0x8086, 0x27b8, OK,  "Intel", "ICH7/ICH7R",			enable_flash_ich7},
	{0x8086, 0x27b9, OK,  "Intel", "ICH7M",				enable_flash_ich7},
	{0x8086, 0x27bc, OK,  "Intel", "NM10",				enable_flash_ich7},
	{0x8086, 0x27bd, OK,  "Intel", "ICH7MDH",			enable_flash_ich7},
	{0x8086, 0x2810, DEP, "Intel", "ICH8/ICH8R",			enable_flash_ich8},
	{0x8086, 0x2811, DEP, "Intel", "ICH8M-E",			enable_flash_ich8},
	{0x8086, 0x2812, DEP, "Intel", "ICH8DH",			enable_flash_ich8},
	{0x8086, 0x2814, DEP, "Intel", "ICH8DO",			enable_flash_ich8},
	{0x8086, 0x2815, DEP, "Intel", "ICH8M",				enable_flash_ich8},
	{0x8086, 0x2910, DEP, "Intel", "ICH9 Eng. Sample",		enable_flash_ich9},
	{0x8086, 0x2912, DEP, "Intel", "ICH9DH",			enable_flash_ich9},
	{0x8086, 0x2914, DEP, "Intel", "ICH9DO",			enable_flash_ich9},
	{0x8086, 0x2916, DEP, "Intel", "ICH9R",				enable_flash_ich9},
	{0x8086, 0x2917, DEP, "Intel", "ICH9M-E",			enable_flash_ich9},
	{0x8086, 0x2918, DEP, "Intel", "ICH9",				enable_flash_ich9},
	{0x8086, 0x2919, DEP, "Intel", "ICH9M",				enable_flash_ich9},
	{0x8086, 0x3a10, NT,  "Intel", "ICH10R Eng. Sample",		enable_flash_ich10},
	{0x8086, 0x3a14, DEP, "Intel", "ICH10DO",			enable_flash_ich10},
	{0x8086, 0x3a16, DEP, "Intel", "ICH10R",			enable_flash_ich10},
	{0x8086, 0x3a18, DEP, "Intel", "ICH10",				enable_flash_ich10},
	{0x8086, 0x3a1a, DEP, "Intel", "ICH10D",			enable_flash_ich10},
	{0x8086, 0x3a1e, NT,  "Intel", "ICH10 Eng. Sample",		enable_flash_ich10},
	{0x8086, 0x3b00, NT,  "Intel", "3400 Desktop",			enable_flash_pch5},
	{0x8086, 0x3b01, NT,  "Intel", "3400 Mobile",			enable_flash_pch5},
	{0x8086, 0x3b02, NT,  "Intel", "P55",				enable_flash_pch5},
	{0x8086, 0x3b03, NT,  "Intel", "PM55",				enable_flash_pch5},
	{0x8086, 0x3b06, DEP, "Intel", "H55",				enable_flash_pch5},
	{0x8086, 0x3b07, DEP, "Intel", "QM57",				enable_flash_pch5},
	{0x8086, 0x3b08, NT,  "Intel", "H57",				enable_flash_pch5},
	{0x8086, 0x3b09, NT,  "Intel", "HM55",				enable_flash_pch5},
	{0x8086, 0x3b0a, NT,  "Intel", "Q57",				enable_flash_pch5},
	{0x8086, 0x3b0b, NT,  "Intel", "HM57",				enable_flash_pch5},
	{0x8086, 0x3b0d, NT,  "Intel", "3400 Mobile SFF",		enable_flash_pch5},
	{0x8086, 0x3b0e, NT,  "Intel", "B55",				enable_flash_pch5},
	{0x8086, 0x3b0f, DEP, "Intel", "QS57",				enable_flash_pch5},
	{0x8086, 0x3b12, NT,  "Intel", "3400",				enable_flash_pch5},
	{0x8086, 0x3b14, DEP, "Intel", "3420",				enable_flash_pch5},
	{0x8086, 0x3b16, NT,  "Intel", "3450",				enable_flash_pch5},
	{0x8086, 0x3b1e, NT,  "Intel", "B55",				enable_flash_pch5},
	{0x8086, 0x5031, OK,  "Intel", "EP80579",			enable_flash_ich7},
	{0x8086, 0x7000, OK,  "Intel", "PIIX3",				enable_flash_piix4},
	{0x8086, 0x7110, OK,  "Intel", "PIIX4/4E/4M",			enable_flash_piix4},
	{0x8086, 0x7198, OK,  "Intel", "440MX",				enable_flash_piix4},
	{0x8086, 0x8119, OK,  "Intel", "SCH Poulsbo",			enable_flash_poulsbo},
1701
	{0x8086, 0x8186, OK,  "Intel", "Atom E6xx(T) (Tunnel Creek)",	enable_flash_tunnelcreek},
1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
	{0x8086, 0x8c40, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c41, NT,  "Intel", "Lynx Point Mobile Eng. Sample",	enable_flash_pch8},
	{0x8086, 0x8c42, NT,  "Intel", "Lynx Point Desktop Eng. Sample",enable_flash_pch8},
	{0x8086, 0x8c43, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c44, DEP, "Intel", "Z87",				enable_flash_pch8},
	{0x8086, 0x8c45, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c46, NT,  "Intel", "Z85",				enable_flash_pch8},
	{0x8086, 0x8c47, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c48, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c49, NT,  "Intel", "HM86",				enable_flash_pch8},
	{0x8086, 0x8c4a, DEP, "Intel", "H87",				enable_flash_pch8},
	{0x8086, 0x8c4b, DEP, "Intel", "HM87",				enable_flash_pch8},
	{0x8086, 0x8c4c, NT,  "Intel", "Q85",				enable_flash_pch8},
	{0x8086, 0x8c4d, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c4e, NT,  "Intel", "Q87",				enable_flash_pch8},
	{0x8086, 0x8c4f, NT,  "Intel", "QM87",				enable_flash_pch8},
	{0x8086, 0x8c50, DEP, "Intel", "B85",				enable_flash_pch8},
	{0x8086, 0x8c51, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c52, NT,  "Intel", "C222",				enable_flash_pch8},
	{0x8086, 0x8c53, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c54, NT,  "Intel", "C224",				enable_flash_pch8},
	{0x8086, 0x8c55, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c56, NT,  "Intel", "C226",				enable_flash_pch8},
	{0x8086, 0x8c57, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c58, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c59, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c5a, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c5b, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c5c, NT,  "Intel", "H81",				enable_flash_pch8},
	{0x8086, 0x8c5d, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c5e, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
	{0x8086, 0x8c5f, NT,  "Intel", "Lynx Point",			enable_flash_pch8},
1734 1735 1736 1737 1738 1739 1740 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
	{0x8086, 0x8cc1, NT,  "Intel", "9 Series",			enable_flash_pch9},
	{0x8086, 0x8cc2, NT,  "Intel", "9 Series Engineering Sample",	enable_flash_pch9},
	{0x8086, 0x8cc3, NT,  "Intel", "9 Series",			enable_flash_pch9},
	{0x8086, 0x8cc4, NT,  "Intel", "Z97",				enable_flash_pch9},
	{0x8086, 0x8cc6, NT,  "Intel", "H97",				enable_flash_pch9},
	{0x8086, 0x8d40, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d41, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d42, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d43, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d44, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d45, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d46, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d47, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d48, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d49, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d4a, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d4b, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d4c, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d4d, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d4e, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d4f, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d50, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d51, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d52, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d53, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d54, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d55, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d56, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d57, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d58, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d59, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d5a, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d5b, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d5c, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d5d, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d5e, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
	{0x8086, 0x8d5f, NT,  "Intel", "C610/X99 (Wellsburg)",		enable_flash_pch8_wb},
1771 1772 1773 1774
	{0x8086, 0x9c41, NT,  "Intel", "Lynx Point LP Eng. Sample",	enable_flash_pch8_lp},
	{0x8086, 0x9c43, NT,  "Intel", "Lynx Point LP Premium",		enable_flash_pch8_lp},
	{0x8086, 0x9c45, NT,  "Intel", "Lynx Point LP Mainstream",	enable_flash_pch8_lp},
	{0x8086, 0x9c47, NT,  "Intel", "Lynx Point LP Value",		enable_flash_pch8_lp},
1775 1776 1777 1778 1779 1780 1781 1782
	{0x8086, 0x9cc1, NT,  "Intel", "Haswell U Sample",		enable_flash_pch9},
	{0x8086, 0x9cc2, NT,  "Intel", "Broadwell U Sample",		enable_flash_pch9},
	{0x8086, 0x9cc3, NT,  "Intel", "Broadwell U Premium",		enable_flash_pch9},
	{0x8086, 0x9cc5, NT,  "Intel", "Broadwell U Base",		enable_flash_pch9},
	{0x8086, 0x9cc6, NT,  "Intel", "Broadwell Y Sample",		enable_flash_pch9},
	{0x8086, 0x9cc7, NT,  "Intel", "Broadwell Y Premium",		enable_flash_pch9},
	{0x8086, 0x9cc9, NT,  "Intel", "Broadwell Y Base",		enable_flash_pch9},
	{0x8086, 0x9ccb, NT,  "Intel", "Broadwell H",			enable_flash_pch9},
1783
#endif
Carl-Daniel Hailfinger's avatar
Carl-Daniel Hailfinger committed
1784
	{0},
1785
};
1786

1787
int chipset_flash_enable(void)
1788
{
1789
	struct pci_dev *dev = NULL;
1790
	int ret = -2;		/* Nothing! */
1791
	int i;
1792

1793
	/* Now let's try to find the chipset we have... */
Uwe Hermann's avatar
Uwe Hermann committed
1794 1795 1796
	for (i = 0; chipset_enables[i].vendor_name != NULL; i++) {
		dev = pci_dev_find(chipset_enables[i].vendor_id,
				   chipset_enables[i].device_id);
Michael Karcher's avatar
Michael Karcher committed
1797 1798 1799
		if (!dev)
			continue;
		if (ret != -2) {
Stefan Tauner's avatar
Stefan Tauner committed
1800
			msg_pwarn("Warning: unexpected second chipset match: "
1801 1802 1803
				    "\"%s %s\"\n"
				  "ignoring, please report lspci and board URL "
				    "to flashrom@flashrom.org\n"
Stefan Reinauer's avatar
Stefan Reinauer committed
1804
				  "with \'CHIPSET: your board name\' in the "
1805
				    "subject line.\n",
Michael Karcher's avatar
Michael Karcher committed
1806 1807 1808 1809
				chipset_enables[i].vendor_name,
					chipset_enables[i].device_name);
			continue;
		}
1810 1811 1812
		msg_pinfo("Found chipset \"%s %s\"",
			  chipset_enables[i].vendor_name,
			  chipset_enables[i].device_name);
1813
		msg_pdbg(" with PCI ID %04x:%04x",
1814 1815
			 chipset_enables[i].vendor_id,
			 chipset_enables[i].device_id);
1816
		msg_pinfo(".\n");
1817 1818

		if (chipset_enables[i].status == NT) {
1819
			msg_pinfo("This chipset is marked as untested. If "
1820
				  "you are using an up-to-date version\nof "
1821 1822 1823 1824 1825
				  "flashrom *and* were (not) able to "
				  "successfully update your firmware with it,\n"
				  "then please email a report to "
				  "flashrom@flashrom.org including a verbose "
				  "(-V) log.\nThank you!\n");
1826 1827
		}
		msg_pinfo("Enabling flash write... ");
Uwe Hermann's avatar
Uwe Hermann committed
1828 1829
		ret = chipset_enables[i].doit(dev,
					      chipset_enables[i].device_name);
Michael Karcher's avatar
Michael Karcher committed
1830 1831 1832 1833
		if (ret == NOT_DONE_YET) {
			ret = -2;
			msg_pinfo("OK - searching further chips.\n");
		} else if (ret < 0)
1834
			msg_pinfo("FAILED!\n");
1835
		else if (ret == 0)
1836
			msg_pinfo("OK.\n");
1837
		else if (ret == ERROR_NONFATAL)
1838
			msg_pinfo("PROBLEMS, continuing anyway\n");
1839 1840 1841 1842
		if (ret == ERROR_FATAL) {
			msg_perr("FATAL ERROR!\n");
			return ret;
		}
1843
	}
Michael Karcher's avatar
Michael Karcher committed
1844

1845
	return ret;
1846
}