blob: 15e5df4ca2f9e057850ace88c4a233fc16012006 [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ollie Lho184a4042005-11-26 21:55:36 +00003 *
Uwe Hermannd1107642007-08-29 17:52:32 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2005-2007 coresystems GmbH <stepan@coresystems.de>
6 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
Ollie Lho184a4042005-11-26 21:55:36 +00007 *
Uwe Hermannd1107642007-08-29 17:52:32 +00008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
Ollie Lho184a4042005-11-26 21:55:36 +000011 *
Uwe Hermannd1107642007-08-29 17:52:32 +000012 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/*
23 * Contains the chipset specific flash enables.
Ollie Lho184a4042005-11-26 21:55:36 +000024 */
25
Lane Brooksd54958a2007-11-13 16:45:22 +000026#define _LARGEFILE64_SOURCE
27
Ollie Lhocbbf1252004-03-17 22:22:08 +000028#include <stdlib.h>
Lane Brooksd54958a2007-11-13 16:45:22 +000029#include <sys/types.h>
30#include <sys/stat.h>
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +000031#include <sys/mman.h>
Lane Brooksd54958a2007-11-13 16:45:22 +000032#include <fcntl.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000033#include "flash.h"
Stefan Reinauer86de2832006-03-31 11:26:55 +000034
Stefan Reinauer9a6d1762008-12-03 21:24:40 +000035unsigned long flashbase = 0;
36
Stefan Reinauer2cb94e12008-06-30 23:45:22 +000037/**
38 * flashrom defaults to LPC flash devices. If a known SPI controller is found
39 * and the SPI strappings are set, this will be overwritten by the probing code.
40 *
41 * Eventually, this will become an array when multiple flash support works.
42 */
43
44flashbus_t flashbus = BUS_TYPE_LPC;
45void *spibar = NULL;
46
FENG yu ningc05a2952008-12-08 18:16:58 +000047extern int ichspi_lock;
48
Uwe Hermann372eeb52007-12-04 21:49:06 +000049static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
Luc Verhaegen6b141752007-05-20 16:16:13 +000050{
51 uint8_t tmp;
52
Uwe Hermann372eeb52007-12-04 21:49:06 +000053 /*
54 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
55 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
56 */
Luc Verhaegen6b141752007-05-20 16:16:13 +000057 tmp = pci_read_byte(dev, 0x47);
58 tmp |= 0x46;
59 pci_write_byte(dev, 0x47, tmp);
60
61 return 0;
62}
63
Uwe Hermann372eeb52007-12-04 21:49:06 +000064static int enable_flash_sis630(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +000065{
Uwe Hermann372eeb52007-12-04 21:49:06 +000066 uint8_t b;
Ollie Lhocbbf1252004-03-17 22:22:08 +000067
Uwe Hermann372eeb52007-12-04 21:49:06 +000068 /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000069 b = pci_read_byte(dev, 0x40);
70 pci_write_byte(dev, 0x40, b | 0xb);
Uwe Hermann372eeb52007-12-04 21:49:06 +000071
72 /* Flash write enable on SiS 540/630. */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000073 b = pci_read_byte(dev, 0x45);
74 pci_write_byte(dev, 0x45, b | 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +000075
Uwe Hermann372eeb52007-12-04 21:49:06 +000076 /* The same thing on SiS 950 Super I/O side... */
77
78 /* First probe for Super I/O on config port 0x2e. */
Andriy Gapon65c1b862008-05-22 13:22:45 +000079 OUTB(0x87, 0x2e);
80 OUTB(0x01, 0x2e);
81 OUTB(0x55, 0x2e);
82 OUTB(0x55, 0x2e);
Ollie Lhocbbf1252004-03-17 22:22:08 +000083
Andriy Gapon65c1b862008-05-22 13:22:45 +000084 if (INB(0x2f) != 0x87) {
Uwe Hermann372eeb52007-12-04 21:49:06 +000085 /* If that failed, try config port 0x4e. */
Andriy Gapon65c1b862008-05-22 13:22:45 +000086 OUTB(0x87, 0x4e);
87 OUTB(0x01, 0x4e);
88 OUTB(0x55, 0x4e);
89 OUTB(0xaa, 0x4e);
90 if (INB(0x4f) != 0x87) {
Ollie Lhocbbf1252004-03-17 22:22:08 +000091 printf("Can not access SiS 950\n");
92 return -1;
93 }
Andriy Gapon65c1b862008-05-22 13:22:45 +000094 OUTB(0x24, 0x4e);
95 b = INB(0x4f) | 0xfc;
96 OUTB(0x24, 0x4e);
97 OUTB(b, 0x4f);
98 OUTB(0x02, 0x4e);
99 OUTB(0x02, 0x4f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000100 }
101
Andriy Gapon65c1b862008-05-22 13:22:45 +0000102 OUTB(0x24, 0x2e);
103 printf("2f is %#x\n", INB(0x2f));
104 b = INB(0x2f) | 0xfc;
105 OUTB(0x24, 0x2e);
106 OUTB(b, 0x2f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000107
Andriy Gapon65c1b862008-05-22 13:22:45 +0000108 OUTB(0x02, 0x2e);
109 OUTB(0x02, 0x2f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000110
111 return 0;
112}
113
Uwe Hermann987942d2006-11-07 11:16:21 +0000114/* Datasheet:
115 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
116 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
117 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
118 * - Order Number: 290562-001
119 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000120static int enable_flash_piix4(struct pci_dev *dev, const char *name)
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000121{
122 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000123 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000124
125 old = pci_read_word(dev, xbcs);
126
127 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000128 * FFF00000-FFF7FFFF are forwarded to ISA).
Uwe Hermannc556d322008-10-28 11:50:05 +0000129 * Note: This bit is reserved on PIIX/PIIX3/MPIIX.
Uwe Hermanna7e05482007-05-09 10:17:44 +0000130 * Set bit 7: Extended BIOS Enable (PCI master accesses to
131 * FFF80000-FFFDFFFF are forwarded to ISA).
132 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
133 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
134 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
135 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
136 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
137 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
138 */
Uwe Hermannc556d322008-10-28 11:50:05 +0000139 if (dev->device_id == 0x122e || dev->device_id == 0x7000
140 || dev->device_id == 0x1234)
141 new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */
Uwe Hermann87203452008-10-26 18:40:42 +0000142 else
143 new = old | 0x02c4;
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000144
145 if (new == old)
146 return 0;
147
148 pci_write_word(dev, xbcs, new);
149
150 if (pci_read_word(dev, xbcs) != new) {
151 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
152 return -1;
153 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000154
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000155 return 0;
156}
157
Uwe Hermann372eeb52007-12-04 21:49:06 +0000158/*
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000159 * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet"
160 * http://download.intel.com/design/chipsets/datashts/30701303.pdf
Uwe Hermann372eeb52007-12-04 21:49:06 +0000161 */
162static int enable_flash_ich(struct pci_dev *dev, const char *name,
163 int bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000164{
Ollie Lho184a4042005-11-26 21:55:36 +0000165 uint8_t old, new;
Stefan Reinauereb366472006-09-06 15:48:48 +0000166
Uwe Hermann372eeb52007-12-04 21:49:06 +0000167 /*
168 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
Uwe Hermanna7e05482007-05-09 10:17:44 +0000169 * just treating it as 8 bit wide seems to work fine in practice.
Stefan Reinauereb366472006-09-06 15:48:48 +0000170 */
Stefan Reinauer86de2832006-03-31 11:26:55 +0000171 old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000172
Uwe Hermann793bdcd2008-05-22 22:47:04 +0000173 printf_debug("\nBIOS Lock Enable: %sabled, ",
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000174 (old & (1 << 1)) ? "en" : "dis");
175 printf_debug("BIOS Write Enable: %sabled, ",
176 (old & (1 << 0)) ? "en" : "dis");
177 printf_debug("BIOS_CNTL is 0x%x\n", old);
178
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000179 new = old | 1;
180
181 if (new == old)
182 return 0;
183
Stefan Reinauer86de2832006-03-31 11:26:55 +0000184 pci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000185
Stefan Reinauer86de2832006-03-31 11:26:55 +0000186 if (pci_read_byte(dev, bios_cntl) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000187 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", bios_cntl, new, name);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000188 return -1;
189 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000190
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000191 return 0;
192}
193
Uwe Hermann372eeb52007-12-04 21:49:06 +0000194static int enable_flash_ich_4e(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000195{
Stefan Reinauereb366472006-09-06 15:48:48 +0000196 return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000197}
198
Uwe Hermann372eeb52007-12-04 21:49:06 +0000199static int enable_flash_ich_dc(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000200{
Stefan Reinauereb366472006-09-06 15:48:48 +0000201 return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000202}
203
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000204#define ICH_STRAP_RSVD 0x00
205#define ICH_STRAP_SPI 0x01
206#define ICH_STRAP_PCI 0x02
207#define ICH_STRAP_LPC 0x03
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000208
Uwe Hermann394131e2008-10-18 21:14:13 +0000209static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name)
210{
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000211 uint32_t mmio_base;
212
213 mmio_base = (pci_read_long(dev, 0xbc)) << 8;
214 printf_debug("MMIO base at = 0x%x\n", mmio_base);
Stefan Reinauer0593f212009-01-26 01:10:48 +0000215 spibar = physmap("VT8237S MMIO registers", mmio_base, 0x70);
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000216
Uwe Hermann394131e2008-10-18 21:14:13 +0000217 printf_debug("0x6c: 0x%04x (CLOCK/DEBUG)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000218 mmio_readw(spibar + 0x6c));
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000219
220 flashbus = BUS_TYPE_VIA_SPI;
Rudolf Marek0c2029f2009-02-01 18:40:50 +0000221 ich_init_opcodes();
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000222
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000223 return 0;
224}
225
Uwe Hermann394131e2008-10-18 21:14:13 +0000226static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name,
227 int ich_generation)
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000228{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000229 int ret, i;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000230 uint8_t old, new, bbs, buc;
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000231 uint16_t spibar_offset, tmp2;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000232 uint32_t tmp, gcs;
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000233 void *rcrb;
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000234 //TODO: These names are incorrect for EP80579. For that, the solution would look like the commented line
235 //static const char *straps_names[] = {"SPI", "reserved", "reserved", "LPC" };
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000236 static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" };
Uwe Hermann394131e2008-10-18 21:14:13 +0000237
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000238 /* Enable Flash Writes */
239 ret = enable_flash_ich_dc(dev, name);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000240
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000241 /* Get physical address of Root Complex Register Block */
242 tmp = pci_read_long(dev, 0xf0) & 0xffffc000;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000243 printf_debug("\nRoot Complex Register Block address = 0x%x\n", tmp);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000244
245 /* Map RCBA to virtual memory */
Stefan Reinauer0593f212009-01-26 01:10:48 +0000246 rcrb = physmap("ICH RCRB", tmp, 0x4000);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000247
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000248 gcs = mmio_readl(rcrb + 0x3410);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000249 printf_debug("GCS = 0x%x: ", gcs);
250 printf_debug("BIOS Interface Lock-Down: %sabled, ",
251 (gcs & 0x1) ? "en" : "dis");
252 bbs = (gcs >> 10) & 0x3;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000253 printf_debug("BOOT BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000254
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000255 buc = mmio_readb(rcrb + 0x3414);
Uwe Hermann394131e2008-10-18 21:14:13 +0000256 printf_debug("Top Swap : %s\n",
257 (buc & 1) ? "enabled (A16 inverted)" : "not enabled");
Stefan Reinauera9424d52008-06-27 16:28:34 +0000258
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000259 /* It seems the ICH7 does not support SPI and LPC chips at the same
260 * time. At least not with our current code. So we prevent searching
261 * on ICH7 when the southbridge is strapped to LPC
262 */
263
264 if (ich_generation == 7 && bbs == ICH_STRAP_LPC) {
265 /* No further SPI initialization required */
266 return ret;
267 }
268
269 switch (ich_generation) {
270 case 7:
271 flashbus = BUS_TYPE_ICH7_SPI;
272 spibar_offset = 0x3020;
273 break;
274 case 8:
275 flashbus = BUS_TYPE_ICH9_SPI;
276 spibar_offset = 0x3020;
277 break;
278 case 9:
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000279 case 10:
Uwe Hermann394131e2008-10-18 21:14:13 +0000280 default: /* Future version might behave the same */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000281 flashbus = BUS_TYPE_ICH9_SPI;
282 spibar_offset = 0x3800;
283 break;
284 }
285
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000286 /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000287 printf_debug("SPIBAR = 0x%x + 0x%04x\n", tmp, spibar_offset);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000288
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000289 /* Assign Virtual Address */
Uwe Hermann394131e2008-10-18 21:14:13 +0000290 spibar = rcrb + spibar_offset;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000291
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000292 switch (flashbus) {
293 case BUS_TYPE_ICH7_SPI:
Uwe Hermann394131e2008-10-18 21:14:13 +0000294 printf_debug("0x00: 0x%04x (SPIS)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000295 mmio_readw(spibar + 0));
Uwe Hermann394131e2008-10-18 21:14:13 +0000296 printf_debug("0x02: 0x%04x (SPIC)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000297 mmio_readw(spibar + 2));
Uwe Hermann394131e2008-10-18 21:14:13 +0000298 printf_debug("0x04: 0x%08x (SPIA)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000299 mmio_readl(spibar + 4));
Uwe Hermann394131e2008-10-18 21:14:13 +0000300 for (i = 0; i < 8; i++) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000301 int offs;
302 offs = 8 + (i * 8);
Uwe Hermann394131e2008-10-18 21:14:13 +0000303 printf_debug("0x%02x: 0x%08x (SPID%d)\n", offs,
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000304 mmio_readl(spibar + offs), i);
Uwe Hermann394131e2008-10-18 21:14:13 +0000305 printf_debug("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000306 mmio_readl(spibar + offs + 4), i);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000307 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000308 printf_debug("0x50: 0x%08x (BBAR)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000309 mmio_readl(spibar + 0x50));
Uwe Hermann394131e2008-10-18 21:14:13 +0000310 printf_debug("0x54: 0x%04x (PREOP)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000311 mmio_readw(spibar + 0x54));
Uwe Hermann394131e2008-10-18 21:14:13 +0000312 printf_debug("0x56: 0x%04x (OPTYPE)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000313 mmio_readw(spibar + 0x56));
Uwe Hermann394131e2008-10-18 21:14:13 +0000314 printf_debug("0x58: 0x%08x (OPMENU)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000315 mmio_readl(spibar + 0x58));
Uwe Hermann394131e2008-10-18 21:14:13 +0000316 printf_debug("0x5c: 0x%08x (OPMENU+4)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000317 mmio_readl(spibar + 0x5c));
Uwe Hermann394131e2008-10-18 21:14:13 +0000318 for (i = 0; i < 4; i++) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000319 int offs;
320 offs = 0x60 + (i * 4);
Uwe Hermann394131e2008-10-18 21:14:13 +0000321 printf_debug("0x%02x: 0x%08x (PBR%d)\n", offs,
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000322 mmio_readl(spibar + offs), i);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000323 }
324 printf_debug("\n");
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000325 if (mmio_readw(spibar) & (1 << 15)) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000326 printf("WARNING: SPI Configuration Lockdown activated.\n");
FENG yu ningc05a2952008-12-08 18:16:58 +0000327 ichspi_lock = 1;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000328 }
FENG yu ningf041e9b2008-12-15 02:32:11 +0000329 ich_init_opcodes();
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000330 break;
331 case BUS_TYPE_ICH9_SPI:
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000332 tmp2 = mmio_readw(spibar + 4);
FENG yu ning37179b82009-01-18 06:39:32 +0000333 printf_debug("0x04: 0x%04x (HSFS)\n", tmp2);
334 printf_debug("FLOCKDN %i, ", (tmp2 >> 15 & 1));
335 printf_debug("FDV %i, ", (tmp2 >> 14) & 1);
336 printf_debug("FDOPSS %i, ", (tmp2 >> 13) & 1);
337 printf_debug("SCIP %i, ", (tmp2 >> 5) & 1);
338 printf_debug("BERASE %i, ", (tmp2 >> 3) & 3);
339 printf_debug("AEL %i, ", (tmp2 >> 2) & 1);
340 printf_debug("FCERR %i, ", (tmp2 >> 1) & 1);
341 printf_debug("FDONE %i\n", (tmp2 >> 0) & 1);
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000342
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000343 tmp = mmio_readl(spibar + 0x50);
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000344 printf_debug("0x50: 0x%08x (FRAP)\n", tmp);
345 printf_debug("BMWAG %i, ", (tmp >> 24) & 0xff);
346 printf_debug("BMRAG %i, ", (tmp >> 16) & 0xff);
347 printf_debug("BRWA %i, ", (tmp >> 8) & 0xff);
348 printf_debug("BRRA %i\n", (tmp >> 0) & 0xff);
349
350 printf_debug("0x54: 0x%08x (FREG0)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000351 mmio_readl(spibar + 0x54));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000352 printf_debug("0x58: 0x%08x (FREG1)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000353 mmio_readl(spibar + 0x58));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000354 printf_debug("0x5C: 0x%08x (FREG2)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000355 mmio_readl(spibar + 0x5C));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000356 printf_debug("0x60: 0x%08x (FREG3)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000357 mmio_readl(spibar + 0x60));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000358 printf_debug("0x64: 0x%08x (FREG4)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000359 mmio_readl(spibar + 0x64));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000360 printf_debug("0x74: 0x%08x (PR0)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000361 mmio_readl(spibar + 0x74));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000362 printf_debug("0x78: 0x%08x (PR1)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000363 mmio_readl(spibar + 0x78));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000364 printf_debug("0x7C: 0x%08x (PR2)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000365 mmio_readl(spibar + 0x7C));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000366 printf_debug("0x80: 0x%08x (PR3)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000367 mmio_readl(spibar + 0x80));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000368 printf_debug("0x84: 0x%08x (PR4)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000369 mmio_readl(spibar + 0x84));
FENG yu ning37179b82009-01-18 06:39:32 +0000370 printf_debug("0x90: 0x%08x (SSFS, SSFC)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000371 mmio_readl(spibar + 0x90));
FENG yu ning37179b82009-01-18 06:39:32 +0000372 printf_debug("0x94: 0x%04x (PREOP)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000373 mmio_readw(spibar + 0x94));
FENG yu ning37179b82009-01-18 06:39:32 +0000374 printf_debug("0x96: 0x%04x (OPTYPE)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000375 mmio_readw(spibar + 0x96));
FENG yu ning37179b82009-01-18 06:39:32 +0000376 printf_debug("0x98: 0x%08x (OPMENU)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000377 mmio_readl(spibar + 0x98));
FENG yu ning37179b82009-01-18 06:39:32 +0000378 printf_debug("0x9C: 0x%08x (OPMENU+4)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000379 mmio_readl(spibar + 0x9C));
FENG yu ning37179b82009-01-18 06:39:32 +0000380 printf_debug("0xA0: 0x%08x (BBAR)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000381 mmio_readl(spibar + 0xA0));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000382 printf_debug("0xB0: 0x%08x (FDOC)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000383 mmio_readl(spibar + 0xB0));
FENG yu ning37179b82009-01-18 06:39:32 +0000384 if (tmp2 & (1 << 15)) {
385 printf("WARNING: SPI Configuration Lockdown activated.\n");
386 ichspi_lock = 1;
387 }
Peter Stugee8a3e4c2008-12-22 14:12:08 +0000388 ich_init_opcodes();
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000389 break;
390 default:
391 /* Nothing */
392 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000393 }
394
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000395 old = pci_read_byte(dev, 0xdc);
396 printf_debug("SPI Read Configuration: ");
397 new = (old >> 2) & 0x3;
398 switch (new) {
399 case 0:
400 case 1:
401 case 2:
402 printf_debug("prefetching %sabled, caching %sabled, ",
Uwe Hermann394131e2008-10-18 21:14:13 +0000403 (new & 0x2) ? "en" : "dis",
404 (new & 0x1) ? "dis" : "en");
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000405 break;
406 default:
407 printf_debug("invalid prefetching/caching settings, ");
408 break;
409 }
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000410
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000411 return ret;
412}
Stefan Reinauera9424d52008-06-27 16:28:34 +0000413
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000414static int enable_flash_ich7(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000415{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000416 return enable_flash_ich_dc_spi(dev, name, 7);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000417}
418
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000419static int enable_flash_ich8(struct pci_dev *dev, const char *name)
420{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000421 return enable_flash_ich_dc_spi(dev, name, 8);
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000422}
423
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000424static int enable_flash_ich9(struct pci_dev *dev, const char *name)
425{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000426 return enable_flash_ich_dc_spi(dev, name, 9);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000427}
428
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000429static int enable_flash_ich10(struct pci_dev *dev, const char *name)
430{
431 return enable_flash_ich_dc_spi(dev, name, 10);
432}
433
Uwe Hermann372eeb52007-12-04 21:49:06 +0000434static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000435{
Ollie Lho184a4042005-11-26 21:55:36 +0000436 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000437
Uwe Hermann394131e2008-10-18 21:14:13 +0000438 /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF */
Bari Ari9477c4e2008-04-29 13:46:38 +0000439 pci_write_byte(dev, 0x41, 0x7f);
440
Uwe Hermannffec5f32007-08-23 16:08:21 +0000441 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000442 val = pci_read_byte(dev, 0x40);
443 val |= 0x10;
444 pci_write_byte(dev, 0x40, val);
445
446 if (pci_read_byte(dev, 0x40) != val) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000447 printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000448 name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000449 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000450 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000451
Uwe Hermanna7e05482007-05-09 10:17:44 +0000452 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000453}
454
Uwe Hermann372eeb52007-12-04 21:49:06 +0000455static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000456{
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000457 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000458
Uwe Hermann394131e2008-10-18 21:14:13 +0000459#define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
460#define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000461
Uwe Hermann394131e2008-10-18 21:14:13 +0000462#define LOWER_ROM_ADDRESS_RANGE (1 << 0)
463#define ROM_WRITE_ENABLE (1 << 1)
464#define UPPER_ROM_ADDRESS_RANGE (1 << 2)
465#define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000466
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000467 /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and
468 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB.
469 * Make the configured ROM areas writable.
470 */
471 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
472 reg8 |= LOWER_ROM_ADDRESS_RANGE;
473 reg8 |= UPPER_ROM_ADDRESS_RANGE;
474 reg8 |= ROM_WRITE_ENABLE;
475 pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000476
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000477 /* Set positive decode on ROM. */
478 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
479 reg8 |= BIOS_ROM_POSITIVE_DECODE;
480 pci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000481
Ollie Lhocbbf1252004-03-17 22:22:08 +0000482 return 0;
483}
484
Mart Raudseppe1344da2008-02-08 10:10:57 +0000485/**
486 * Geode systems write protect the BIOS via RCONFs (cache settings similar
487 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. Reading and
488 * writing to MSRs, however requires instructions rdmsr/wrmsr, which are
489 * ring0 privileged instructions so only the kernel can do the read/write.
490 * This function, therefore, requires that the msr kernel module be loaded
491 * to access these instructions from user space using device /dev/cpu/0/msr.
492 *
493 * This hard-coded location could have potential problems on SMP machines
494 * since it assumes cpu0, but it is safe on the Geode which is not SMP.
495 *
496 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
497 * To enable write to NOR Boot flash for the benefit of systems that have such
498 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
499 *
500 * This is probably not portable beyond Linux.
501 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000502static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
Lane Brooksd54958a2007-11-13 16:45:22 +0000503{
Uwe Hermann394131e2008-10-18 21:14:13 +0000504#define MSR_RCONF_DEFAULT 0x1808
505#define MSR_NORF_CTL 0x51400018
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000506
Lane Brooksd54958a2007-11-13 16:45:22 +0000507 int fd_msr;
508 unsigned char buf[8];
Lane Brooksd54958a2007-11-13 16:45:22 +0000509
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000510 fd_msr = open("/dev/cpu/0/msr", O_RDWR);
Bertrand Jacquinb452a912009-05-05 21:08:36 +0000511 if (fd_msr == -1) {
Peter Stuge7725fa82009-05-06 13:38:55 +0000512 perror("open(/dev/cpu/0/msr)");
513 printf("Cannot operate on MSR. Did you run 'modprobe msr'?\n");
Lane Brooksd54958a2007-11-13 16:45:22 +0000514 return -1;
515 }
Mart Raudseppe1344da2008-02-08 10:10:57 +0000516
517 if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
518 perror("lseek64");
519 close(fd_msr);
520 return -1;
521 }
522
523 if (read(fd_msr, buf, 8) != 8) {
Mart Raudsepp3697ac72008-02-11 14:32:45 +0000524 perror("read msr");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000525 close(fd_msr);
526 return -1;
527 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000528
Lane Brooksd54958a2007-11-13 16:45:22 +0000529 if (buf[7] != 0x22) {
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000530 buf[7] &= 0xfb;
Uwe Hermann394131e2008-10-18 21:14:13 +0000531 if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT,
532 SEEK_SET) == -1) {
Mart Raudseppe1344da2008-02-08 10:10:57 +0000533 perror("lseek64");
534 close(fd_msr);
535 return -1;
536 }
537
Lane Brooksd54958a2007-11-13 16:45:22 +0000538 if (write(fd_msr, buf, 8) < 0) {
539 perror("msr write");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000540 close(fd_msr);
Lane Brooksd54958a2007-11-13 16:45:22 +0000541 return -1;
542 }
Lane Brooksd54958a2007-11-13 16:45:22 +0000543 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000544
Mart Raudseppe1344da2008-02-08 10:10:57 +0000545 if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
546 perror("lseek64");
547 close(fd_msr);
548 return -1;
549 }
550
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000551 if (read(fd_msr, buf, 8) != 8) {
552 perror("read msr");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000553 close(fd_msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000554 return -1;
555 }
556
557 /* Raise WE_CS3 bit. */
558 buf[0] |= 0x08;
559
Mart Raudseppe1344da2008-02-08 10:10:57 +0000560 if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
561 perror("lseek64");
562 close(fd_msr);
563 return -1;
564 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000565 if (write(fd_msr, buf, 8) < 0) {
566 perror("msr write");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000567 close(fd_msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000568 return -1;
569 }
570
571 close(fd_msr);
572
Uwe Hermann394131e2008-10-18 21:14:13 +0000573#undef MSR_RCONF_DEFAULT
574#undef MSR_NORF_CTL
Lane Brooksd54958a2007-11-13 16:45:22 +0000575 return 0;
576}
577
Uwe Hermann372eeb52007-12-04 21:49:06 +0000578static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000579{
Ollie Lho184a4042005-11-26 21:55:36 +0000580 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000581
Ollie Lhocbbf1252004-03-17 22:22:08 +0000582 pci_write_byte(dev, 0x52, 0xee);
583
584 new = pci_read_byte(dev, 0x52);
585
586 if (new != 0xee) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000587 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x52, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000588 return -1;
589 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000590
Ollie Lhocbbf1252004-03-17 22:22:08 +0000591 return 0;
592}
593
Uwe Hermann372eeb52007-12-04 21:49:06 +0000594static int enable_flash_sis5595(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000595{
Ollie Lho184a4042005-11-26 21:55:36 +0000596 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000597
Ollie Lhocbbf1252004-03-17 22:22:08 +0000598 new = pci_read_byte(dev, 0x45);
599
Uwe Hermann372eeb52007-12-04 21:49:06 +0000600 new &= (~0x20); /* Clear bit 5. */
601 new |= 0x4; /* Set bit 2. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000602
603 pci_write_byte(dev, 0x45, new);
604
605 newer = pci_read_byte(dev, 0x45);
606 if (newer != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000607 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000608 printf("Stuck at 0x%x\n", newer);
609 return -1;
610 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000611
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000612 /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
Uwe Hermann394131e2008-10-18 21:14:13 +0000613 new = pci_read_byte(dev, 0x40);
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000614 new &= 0xFB;
615 new |= 0x3;
Uwe Hermann394131e2008-10-18 21:14:13 +0000616 pci_write_byte(dev, 0x40, new);
617 newer = pci_read_byte(dev, 0x40);
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000618 if (newer != new) {
619 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name);
620 printf("Stuck at 0x%x\n", newer);
621 return -1;
622 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000623 return 0;
624}
625
Uwe Hermann190f8492008-10-25 18:03:50 +0000626/* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000627static int enable_flash_amd8111(struct pci_dev *dev, const char *name)
Ollie Lho761bf1b2004-03-20 16:46:10 +0000628{
Ollie Lho184a4042005-11-26 21:55:36 +0000629 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000630
Uwe Hermann372eeb52007-12-04 21:49:06 +0000631 /* Enable decoding at 0xffb00000 to 0xffffffff. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000632 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000633 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000634 if (new != old) {
635 pci_write_byte(dev, 0x43, new);
636 if (pci_read_byte(dev, 0x43) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000637 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x43, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000638 }
639 }
640
Uwe Hermann190f8492008-10-25 18:03:50 +0000641 /* Enable 'ROM write' bit. */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000642 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000643 new = old | 0x01;
644 if (new == old)
645 return 0;
646 pci_write_byte(dev, 0x40, new);
647
648 if (pci_read_byte(dev, 0x40) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000649 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000650 return -1;
651 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000652
Ollie Lhocbbf1252004-03-17 22:22:08 +0000653 return 0;
654}
655
Marc Jones3af487d2008-10-15 17:50:29 +0000656static int enable_flash_sb600(struct pci_dev *dev, const char *name)
657{
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000658 uint32_t tmp, prot;
Marc Jones3af487d2008-10-15 17:50:29 +0000659 uint8_t reg;
Carl-Daniel Hailfingerdbfa0292009-05-10 14:11:07 +0000660 struct pci_dev *smbus_dev;
661 int has_spi = 1;
Marc Jones3af487d2008-10-15 17:50:29 +0000662
Jason Wanga3f04be2008-11-28 21:36:51 +0000663 /* Clear ROM protect 0-3. */
664 for (reg = 0x50; reg < 0x60; reg += 4) {
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000665 prot = pci_read_long(dev, reg);
666 /* No protection flags for this region?*/
667 if ((prot & 0x3) == 0)
668 continue;
669 printf_debug("SB600 %s%sprotected from %u to %u\n",
670 (prot & 0x1) ? "write " : "",
671 (prot & 0x2) ? "read " : "",
672 (prot & 0xfffffc00),
673 (prot & 0xfffffc00) + ((prot & 0x3ff) << 8));
674 prot &= 0xfffffffc;
675 pci_write_byte(dev, reg, prot);
676 prot = pci_read_long(dev, reg);
Carl-Daniel Hailfinger9bb88ac2009-05-06 13:51:44 +0000677 if (prot & 0x3)
Peter Stuge19997ae2009-05-06 15:05:39 +0000678 printf("SB600 %s%sunprotect failed from %u to %u\n",
Carl-Daniel Hailfinger9bb88ac2009-05-06 13:51:44 +0000679 (prot & 0x1) ? "write " : "",
680 (prot & 0x2) ? "read " : "",
681 (prot & 0xfffffc00),
682 (prot & 0xfffffc00) + ((prot & 0x3ff) << 8));
Jason Wanga3f04be2008-11-28 21:36:51 +0000683 }
684
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000685 /* Read SPI_BaseAddr */
686 tmp = pci_read_long(dev, 0xa0);
687 tmp &= 0xfffffff0; /* remove low 4 bits (reserved) */
688 printf_debug("SPI base address is at 0x%x\n", tmp);
689
Carl-Daniel Hailfingerdbfa0292009-05-10 14:11:07 +0000690 /* If the BAR has address 0, it is unlikely SPI is used. */
691 if (!tmp)
692 has_spi = 0;
693
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000694 /* Physical memory can only be mapped at page (4k) boundaries */
695 sb600_spibar = physmap("SB600 SPI registers", tmp & 0xfffff000, 0x1000);
696 /* The low bits of the SPI base address are used as offset into the mapped page */
697 sb600_spibar += tmp & 0xfff;
698
Carl-Daniel Hailfingerdbfa0292009-05-10 14:11:07 +0000699 /* Look for the SMBus device. */
700 smbus_dev = pci_dev_find(0x1002, 0x4385);
701
702 if (!smbus_dev) {
703 fprintf(stderr, "ERROR: SMBus device not found. Not enabling SPI.\n");
704 has_spi = 0;
705 } else {
706 /* Note about the bit tests below: If a bit is zero, the GPIO is SPI. */
707 /* GPIO11/SPI_DO and GPIO12/SPI_DI status */
708 reg = pci_read_byte(smbus_dev, 0xAB);
709 reg &= 0xC0;
710 printf_debug("GPIO11 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_DO");
711 printf_debug("GPIO12 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_DI");
712 if (reg != 0x00)
713 has_spi = 0;
714 /* GPIO31/SPI_HOLD and GPIO32/SPI_CS status */
715 reg = pci_read_byte(smbus_dev, 0x83);
716 reg &= 0xC0;
717 printf_debug("GPIO31 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_HOLD");
718 printf_debug("GPIO32 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_CS");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000719 /* SPI_HOLD is not used on all boards, filter it out. */
720 if ((reg & 0x80) != 0x00)
Carl-Daniel Hailfingerdbfa0292009-05-10 14:11:07 +0000721 has_spi = 0;
722 /* GPIO47/SPI_CLK status */
723 reg = pci_read_byte(smbus_dev, 0xA7);
724 reg &= 0x40;
725 printf_debug("GPIO47 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_CLK");
726 if (reg != 0x00)
727 has_spi = 0;
728 }
729
730 if (has_spi)
731 flashbus = BUS_TYPE_SB600_SPI;
Jason Wanga3f04be2008-11-28 21:36:51 +0000732
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000733 /* Read ROM strap override register. */
734 OUTB(0x8f, 0xcd6);
735 reg = INB(0xcd7);
736 reg &= 0x0e;
737 printf_debug("ROM strap override is %sactive", (reg & 0x02) ? "" : "not ");
738 if (reg & 0x02) {
739 switch ((reg & 0x0c) >> 2) {
740 case 0x00:
741 printf_debug(": LPC");
742 break;
743 case 0x01:
744 printf_debug(": PCI");
745 break;
746 case 0x02:
747 printf_debug(": FWH");
748 break;
749 case 0x03:
750 printf_debug(": SPI");
751 break;
752 }
753 }
754 printf_debug("\n");
755
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000756 /* Force enable SPI ROM in SB600 PM register.
757 * If we enable SPI ROM here, we have to disable it after we leave.
Zheng Bao284a6002009-05-04 22:33:50 +0000758 * But how can we know which ROM we are going to handle? So we have
759 * to trade off. We only access LPC ROM if we boot via LPC ROM. And
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000760 * only SPI ROM if we boot via SPI ROM. If you want to access SPI on
761 * boards with LPC straps, you have to use the code below.
Zheng Bao284a6002009-05-04 22:33:50 +0000762 */
763 /*
Jason Wanga3f04be2008-11-28 21:36:51 +0000764 OUTB(0x8f, 0xcd6);
765 OUTB(0x0e, 0xcd7);
Zheng Bao284a6002009-05-04 22:33:50 +0000766 */
Marc Jones3af487d2008-10-15 17:50:29 +0000767
768 return 0;
769}
770
Uwe Hermann372eeb52007-12-04 21:49:06 +0000771static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu952dfce2005-07-06 17:13:46 +0000772{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000773 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000774
Uwe Hermanna7e05482007-05-09 10:17:44 +0000775 old = pci_read_byte(dev, 0x88);
776 new = old | 0xc0;
777 if (new != old) {
778 pci_write_byte(dev, 0x88, new);
779 if (pci_read_byte(dev, 0x88) != new) {
780 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
781 }
782 }
Yinghai Lu952dfce2005-07-06 17:13:46 +0000783
Uwe Hermanna7e05482007-05-09 10:17:44 +0000784 old = pci_read_byte(dev, 0x6d);
785 new = old | 0x01;
786 if (new == old)
787 return 0;
788 pci_write_byte(dev, 0x6d, new);
789
790 if (pci_read_byte(dev, 0x6d) != new) {
791 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
792 return -1;
793 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000794
Uwe Hermanna7e05482007-05-09 10:17:44 +0000795 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000796}
797
Uwe Hermann372eeb52007-12-04 21:49:06 +0000798/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
799static int enable_flash_sb400(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000800{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000801 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000802 struct pci_dev *smbusdev;
803
Uwe Hermann372eeb52007-12-04 21:49:06 +0000804 /* Look for the SMBus device. */
Carl-Daniel Hailfingerf6e3efb2009-05-06 00:35:31 +0000805 smbusdev = pci_dev_find(0x1002, 0x4372);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000806
Uwe Hermanna7e05482007-05-09 10:17:44 +0000807 if (!smbusdev) {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000808 fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n");
Stefan Reinauer86de2832006-03-31 11:26:55 +0000809 exit(1);
810 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000811
Uwe Hermann372eeb52007-12-04 21:49:06 +0000812 /* Enable some SMBus stuff. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000813 tmp = pci_read_byte(smbusdev, 0x79);
814 tmp |= 0x01;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000815 pci_write_byte(smbusdev, 0x79, tmp);
816
Uwe Hermann372eeb52007-12-04 21:49:06 +0000817 /* Change southbridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000818 tmp = pci_read_byte(dev, 0x48);
819 tmp |= 0x21;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000820 pci_write_byte(dev, 0x48, tmp);
821
Uwe Hermann372eeb52007-12-04 21:49:06 +0000822 /* Now become a bit silly. */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000823 tmp = INB(0xc6f);
824 OUTB(tmp, 0xeb);
825 OUTB(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000826 tmp |= 0x40;
Andriy Gapon65c1b862008-05-22 13:22:45 +0000827 OUTB(tmp, 0xc6f);
828 OUTB(tmp, 0xeb);
829 OUTB(tmp, 0xeb);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000830
831 return 0;
832}
833
Uwe Hermann372eeb52007-12-04 21:49:06 +0000834static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
Yinghai Luca782972007-01-22 20:21:17 +0000835{
Uwe Hermann372eeb52007-12-04 21:49:06 +0000836 uint8_t old, new, byte;
837 uint16_t word;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000838
Uwe Hermann372eeb52007-12-04 21:49:06 +0000839 /* Set the 0-16 MB enable bits. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000840 byte = pci_read_byte(dev, 0x88);
841 byte |= 0xff; /* 256K */
842 pci_write_byte(dev, 0x88, byte);
843 byte = pci_read_byte(dev, 0x8c);
844 byte |= 0xff; /* 1M */
845 pci_write_byte(dev, 0x8c, byte);
846 word = pci_read_word(dev, 0x90);
Carl-Daniel Hailfingerdca0ab12007-10-17 22:30:07 +0000847 word |= 0x7fff; /* 16M */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000848 pci_write_word(dev, 0x90, word);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000849
Uwe Hermanna7e05482007-05-09 10:17:44 +0000850 old = pci_read_byte(dev, 0x6d);
851 new = old | 0x01;
852 if (new == old)
853 return 0;
854 pci_write_byte(dev, 0x6d, new);
Yinghai Luca782972007-01-22 20:21:17 +0000855
Uwe Hermanna7e05482007-05-09 10:17:44 +0000856 if (pci_read_byte(dev, 0x6d) != new) {
Uwe Hermann394131e2008-10-18 21:14:13 +0000857 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000858 return -1;
859 }
Yinghai Luca782972007-01-22 20:21:17 +0000860
861 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000862}
863
Uwe Hermann372eeb52007-12-04 21:49:06 +0000864static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000865{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000866 uint8_t byte;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000867
Uwe Hermanne823ee02007-06-05 15:02:18 +0000868 /* Set the 4MB enable bit. */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000869 byte = pci_read_byte(dev, 0x41);
870 byte |= 0x0e;
871 pci_write_byte(dev, 0x41, byte);
872
873 byte = pci_read_byte(dev, 0x43);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000874 byte |= (1 << 4);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000875 pci_write_byte(dev, 0x43, byte);
876
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000877 return 0;
878}
879
Stefan Reinauer9a6d1762008-12-03 21:24:40 +0000880/**
881 * Usually on the x86 architectures (and on other PC-like platforms like some
882 * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD
883 * Elan SC520 only a small piece of the system flash is mapped there, but the
884 * complete flash is mapped somewhere below 1G. The position can be determined
885 * by the BOOTCS PAR register.
886 */
887static int get_flashbase_sc520(struct pci_dev *dev, const char *name)
888{
889 int i, bootcs_found = 0;
890 uint32_t parx = 0;
891 void *mmcr;
892
893 /* 1. Map MMCR */
Stefan Reinauer0593f212009-01-26 01:10:48 +0000894 mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize());
Stefan Reinauer9a6d1762008-12-03 21:24:40 +0000895
896 /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for
897 * BOOTCS region (PARx[31:29] = 100b)e
898 */
899 for (i = 0x88; i <= 0xc4; i += 4) {
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000900 parx = mmio_readl(mmcr + i);
Stefan Reinauer9a6d1762008-12-03 21:24:40 +0000901 if ((parx >> 29) == 4) {
902 bootcs_found = 1;
903 break; /* BOOTCS found */
904 }
905 }
906
907 /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0]
908 * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0]
909 */
910 if (bootcs_found) {
911 if (parx & (1 << 25)) {
912 parx &= (1 << 14) - 1; /* Mask [13:0] */
913 flashbase = parx << 16;
914 } else {
915 parx &= (1 << 18) - 1; /* Mask [17:0] */
916 flashbase = parx << 12;
917 }
918 } else {
919 printf("AMD Elan SC520 detected, but no BOOTCS. Assuming flash at 4G\n");
920 }
921
922 /* 4. Clean up */
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000923 munmap(mmcr, getpagesize());
Stefan Reinauer9a6d1762008-12-03 21:24:40 +0000924 return 0;
925}
926
Uwe Hermannb0039912009-05-07 13:24:49 +0000927#define OK 0
928#define NT 1 /* Not tested */
929
Uwe Hermann4179d292009-05-08 17:50:51 +0000930/* Please keep this list alphabetically sorted by vendor/device. */
Uwe Hermann05fab752009-05-16 23:42:17 +0000931const struct penable chipset_enables[] = {
Uwe Hermann4179d292009-05-08 17:50:51 +0000932 {0x10B9, 0x1533, OK, "ALi", "M1533", enable_flash_ali_m1533},
933 {0x1022, 0x7440, OK, "AMD", "AMD-768", enable_flash_amd8111},
934 {0x1022, 0x7468, OK, "AMD", "AMD8111", enable_flash_amd8111},
935 {0x1078, 0x0100, OK, "AMD", "CS5530(A)", enable_flash_cs5530},
936 {0x1022, 0x2080, OK, "AMD", "CS5536", enable_flash_cs5536},
937 {0x1022, 0x3000, OK, "AMD", "Elan SC520", get_flashbase_sc520},
938 {0x1002, 0x438D, OK, "AMD", "SB600", enable_flash_sb600},
939 {0x1002, 0x439d, OK, "AMD", "SB700", enable_flash_sb600},
940 {0x100b, 0x0510, NT, "AMD", "SC1100", enable_flash_sc1100},
941 {0x1002, 0x4377, OK, "ATI", "SB400", enable_flash_sb400},
942 {0x1166, 0x0205, OK, "Broadcom", "HT-1000", enable_flash_ht1000},
Uwe Hermannb0039912009-05-07 13:24:49 +0000943 {0x8086, 0x7198, OK, "Intel", "440MX", enable_flash_piix4},
Uwe Hermann4179d292009-05-08 17:50:51 +0000944 {0x8086, 0x25a1, OK, "Intel", "6300ESB", enable_flash_ich_4e},
945 {0x8086, 0x2670, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich_dc},
946 {0x8086, 0x5031, OK, "Intel", "EP80579", enable_flash_ich7},
Uwe Hermannb0039912009-05-07 13:24:49 +0000947 {0x8086, 0x2420, OK, "Intel", "ICH0", enable_flash_ich_4e},
Uwe Hermann4179d292009-05-08 17:50:51 +0000948 {0x8086, 0x3a18, OK, "Intel", "ICH10", enable_flash_ich10},
949 {0x8086, 0x3a1a, OK, "Intel", "ICH10D", enable_flash_ich10},
950 {0x8086, 0x3a14, OK, "Intel", "ICH10DO", enable_flash_ich10},
951 {0x8086, 0x3a16, OK, "Intel", "ICH10R", enable_flash_ich10},
Uwe Hermannb0039912009-05-07 13:24:49 +0000952 {0x8086, 0x2440, OK, "Intel", "ICH2", enable_flash_ich_4e},
953 {0x8086, 0x244c, OK, "Intel", "ICH2-M", enable_flash_ich_4e},
Uwe Hermannb0039912009-05-07 13:24:49 +0000954 {0x8086, 0x248c, OK, "Intel", "ICH3-M", enable_flash_ich_4e},
Uwe Hermann4179d292009-05-08 17:50:51 +0000955 {0x8086, 0x2480, OK, "Intel", "ICH3-S", enable_flash_ich_4e},
Uwe Hermannb0039912009-05-07 13:24:49 +0000956 {0x8086, 0x24c0, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich_4e},
957 {0x8086, 0x24cc, OK, "Intel", "ICH4-M", enable_flash_ich_4e},
958 {0x8086, 0x24d0, OK, "Intel", "ICH5/ICH5R", enable_flash_ich_4e},
Uwe Hermannb0039912009-05-07 13:24:49 +0000959 {0x8086, 0x2640, OK, "Intel", "ICH6/ICH6R", enable_flash_ich_dc},
960 {0x8086, 0x2641, OK, "Intel", "ICH6-M", enable_flash_ich_dc},
Uwe Hermannb0039912009-05-07 13:24:49 +0000961 {0x8086, 0x27b0, OK, "Intel", "ICH7DH", enable_flash_ich7},
962 {0x8086, 0x27b8, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7},
963 {0x8086, 0x27b9, OK, "Intel", "ICH7M", enable_flash_ich7},
964 {0x8086, 0x27bd, OK, "Intel", "ICH7MDH", enable_flash_ich7},
Uwe Hermann4179d292009-05-08 17:50:51 +0000965 {0x8086, 0x2410, OK, "Intel", "ICH", enable_flash_ich_4e},
Uwe Hermannb0039912009-05-07 13:24:49 +0000966 {0x8086, 0x2812, OK, "Intel", "ICH8DH", enable_flash_ich8},
967 {0x8086, 0x2814, OK, "Intel", "ICH8DO", enable_flash_ich8},
Uwe Hermann4179d292009-05-08 17:50:51 +0000968 {0x8086, 0x2810, OK, "Intel", "ICH8/ICH8R", enable_flash_ich8},
Uwe Hermannb0039912009-05-07 13:24:49 +0000969 {0x8086, 0x2815, OK, "Intel", "ICH8M", enable_flash_ich8},
Uwe Hermann4179d292009-05-08 17:50:51 +0000970 {0x8086, 0x2811, OK, "Intel", "ICH8M-E", enable_flash_ich8},
971 {0x8086, 0x2918, OK, "Intel", "ICH9", enable_flash_ich9},
Uwe Hermannb0039912009-05-07 13:24:49 +0000972 {0x8086, 0x2912, OK, "Intel", "ICH9DH", enable_flash_ich9},
973 {0x8086, 0x2914, OK, "Intel", "ICH9DO", enable_flash_ich9},
Uwe Hermannb0039912009-05-07 13:24:49 +0000974 {0x8086, 0x2919, OK, "Intel", "ICH9M", enable_flash_ich9},
Uwe Hermann4179d292009-05-08 17:50:51 +0000975 {0x8086, 0x2917, OK, "Intel", "ICH9M-E", enable_flash_ich9},
976 {0x8086, 0x2916, OK, "Intel", "ICH9R", enable_flash_ich9},
977 {0x8086, 0x1234, NT, "Intel", "MPIIX", enable_flash_piix4},
978 {0x8086, 0x7000, OK, "Intel", "PIIX3", enable_flash_piix4},
979 {0x8086, 0x7110, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4},
980 {0x8086, 0x122e, OK, "Intel", "PIIX", enable_flash_piix4},
Uwe Hermannb0039912009-05-07 13:24:49 +0000981 {0x10de, 0x0050, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */
982 {0x10de, 0x0051, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */
Uwe Hermanneac10162008-03-13 18:52:51 +0000983 /* Slave, should not be here, to fix known bug for A01. */
Uwe Hermannb0039912009-05-07 13:24:49 +0000984 {0x10de, 0x00d3, OK, "NVIDIA", "CK804", enable_flash_ck804},
985 {0x10de, 0x0260, NT, "NVIDIA", "MCP51", enable_flash_ck804},
986 {0x10de, 0x0261, NT, "NVIDIA", "MCP51", enable_flash_ck804},
987 {0x10de, 0x0262, NT, "NVIDIA", "MCP51", enable_flash_ck804},
988 {0x10de, 0x0263, NT, "NVIDIA", "MCP51", enable_flash_ck804},
989 {0x10de, 0x0360, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/
990 {0x10de, 0x0361, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
991 {0x10de, 0x0362, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
992 {0x10de, 0x0363, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
993 {0x10de, 0x0364, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
994 {0x10de, 0x0365, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
995 {0x10de, 0x0366, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
996 {0x10de, 0x0367, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */
997 {0x10de, 0x0548, OK, "NVIDIA", "MCP67", enable_flash_mcp55},
Uwe Hermann4179d292009-05-08 17:50:51 +0000998 {0x1039, 0x0008, OK, "SiS", "SiS5595", enable_flash_sis5595},
999 {0x1039, 0x0630, NT, "SiS", "SiS630", enable_flash_sis630},
1000 {0x1106, 0x8324, OK, "VIA", "CX700", enable_flash_vt823x},
1001 {0x1106, 0x8231, NT, "VIA", "VT8231", enable_flash_vt823x},
1002 {0x1106, 0x3177, OK, "VIA", "VT8235", enable_flash_vt823x},
1003 {0x1106, 0x3227, OK, "VIA", "VT8237", enable_flash_vt823x},
1004 {0x1106, 0x3337, OK, "VIA", "VT8237A", enable_flash_vt823x},
1005 {0x1106, 0x3372, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi},
1006 {0x1106, 0x0586, OK, "VIA", "VT82C586A/B", enable_flash_amd8111},
1007 {0x1106, 0x0686, NT, "VIA", "VT82C686A/B", enable_flash_amd8111},
Uwe Hermann05fab752009-05-16 23:42:17 +00001008
1009 {},
Ollie Lhocbbf1252004-03-17 22:22:08 +00001010};
Ollie Lho761bf1b2004-03-20 16:46:10 +00001011
Uwe Hermanne5ac1642008-03-12 11:54:51 +00001012void print_supported_chipsets(void)
1013{
1014 int i;
1015
1016 printf("\nSupported chipsets:\n\n");
1017
Uwe Hermann05fab752009-05-16 23:42:17 +00001018 for (i = 0; chipset_enables[i].vendor_name != NULL; i++) {
1019 printf("%s %s [%04x:%04x]%s\n", chipset_enables[i].vendor_name,
1020 chipset_enables[i].device_name,
1021 chipset_enables[i].vendor_id,
1022 chipset_enables[i].device_id,
1023 (chipset_enables[i].status == OK) ? "" : " (untested)");
1024 }
Uwe Hermanne5ac1642008-03-12 11:54:51 +00001025}
1026
Uwe Hermanna7e05482007-05-09 10:17:44 +00001027int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001028{
Uwe Hermanna7e05482007-05-09 10:17:44 +00001029 struct pci_dev *dev = 0;
Uwe Hermann372eeb52007-12-04 21:49:06 +00001030 int ret = -2; /* Nothing! */
Uwe Hermanna7e05482007-05-09 10:17:44 +00001031 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001032
Uwe Hermann372eeb52007-12-04 21:49:06 +00001033 /* Now let's try to find the chipset we have... */
Uwe Hermann05fab752009-05-16 23:42:17 +00001034 for (i = 0; chipset_enables[i].vendor_name != NULL; i++) {
1035 dev = pci_dev_find(chipset_enables[i].vendor_id,
1036 chipset_enables[i].device_id);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001037 if (dev)
1038 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001039 }
1040
Uwe Hermanna7e05482007-05-09 10:17:44 +00001041 if (dev) {
Uwe Hermannb0039912009-05-07 13:24:49 +00001042 printf("Found chipset \"%s %s\", enabling flash write... ",
Uwe Hermann05fab752009-05-16 23:42:17 +00001043 chipset_enables[i].vendor_name,
1044 chipset_enables[i].device_name);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001045
Uwe Hermann05fab752009-05-16 23:42:17 +00001046 ret = chipset_enables[i].doit(dev,
1047 chipset_enables[i].device_name);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001048 if (ret)
Uwe Hermanna502dce2007-10-17 23:55:15 +00001049 printf("FAILED!\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +00001050 else
Uwe Hermannac309342007-10-10 17:42:20 +00001051 printf("OK.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +00001052 }
1053
1054 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001055}