blob: 3b3ab3d702440c0ffdb939a5d37231f3e6816461 [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
Stefan Reinauer8fa64812009-08-12 09:27:45 +00005 * Copyright (C) 2005-2009 coresystems GmbH
Uwe Hermannd1107642007-08-29 17:52:32 +00006 * 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>
Uwe Hermanne8ba5382009-05-22 11:37:27 +000029#include <string.h>
Lane Brooksd54958a2007-11-13 16:45:22 +000030#include <sys/types.h>
31#include <sys/stat.h>
32#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/**
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +000038 * flashrom defaults to Parallel/LPC/FWH flash devices. If a known host
39 * controller is found, the init routine sets the buses_supported bitfield to
40 * contain the supported buses for that controller.
Stefan Reinauer2cb94e12008-06-30 23:45:22 +000041 */
42
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +000043enum chipbustype buses_supported = CHIP_BUSTYPE_NONSPI;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +000044
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +000045/**
46 * Programmers supporting multiple buses can have differing size limits on
47 * each bus. Store the limits for each bus in a common struct.
48 */
49struct decode_sizes max_rom_decode = {
50 .parallel = 0xffffffff,
51 .lpc = 0xffffffff,
52 .fwh = 0xffffffff,
53 .spi = 0xffffffff
54};
55
FENG yu ningc05a2952008-12-08 18:16:58 +000056extern int ichspi_lock;
57
Uwe Hermann372eeb52007-12-04 21:49:06 +000058static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
Luc Verhaegen6b141752007-05-20 16:16:13 +000059{
60 uint8_t tmp;
61
Uwe Hermann372eeb52007-12-04 21:49:06 +000062 /*
63 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
64 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
65 */
Luc Verhaegen6b141752007-05-20 16:16:13 +000066 tmp = pci_read_byte(dev, 0x47);
67 tmp |= 0x46;
68 pci_write_byte(dev, 0x47, tmp);
69
70 return 0;
71}
72
Uwe Hermann372eeb52007-12-04 21:49:06 +000073static int enable_flash_sis630(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +000074{
Uwe Hermann372eeb52007-12-04 21:49:06 +000075 uint8_t b;
Ollie Lhocbbf1252004-03-17 22:22:08 +000076
Uwe Hermann372eeb52007-12-04 21:49:06 +000077 /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000078 b = pci_read_byte(dev, 0x40);
79 pci_write_byte(dev, 0x40, b | 0xb);
Uwe Hermann372eeb52007-12-04 21:49:06 +000080
81 /* Flash write enable on SiS 540/630. */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000082 b = pci_read_byte(dev, 0x45);
83 pci_write_byte(dev, 0x45, b | 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +000084
Uwe Hermann372eeb52007-12-04 21:49:06 +000085 /* The same thing on SiS 950 Super I/O side... */
86
87 /* First probe for Super I/O on config port 0x2e. */
Andriy Gapon65c1b862008-05-22 13:22:45 +000088 OUTB(0x87, 0x2e);
89 OUTB(0x01, 0x2e);
90 OUTB(0x55, 0x2e);
91 OUTB(0x55, 0x2e);
Ollie Lhocbbf1252004-03-17 22:22:08 +000092
Andriy Gapon65c1b862008-05-22 13:22:45 +000093 if (INB(0x2f) != 0x87) {
Uwe Hermann372eeb52007-12-04 21:49:06 +000094 /* If that failed, try config port 0x4e. */
Andriy Gapon65c1b862008-05-22 13:22:45 +000095 OUTB(0x87, 0x4e);
96 OUTB(0x01, 0x4e);
97 OUTB(0x55, 0x4e);
98 OUTB(0xaa, 0x4e);
99 if (INB(0x4f) != 0x87) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000100 printf("Can not access SiS 950\n");
101 return -1;
102 }
Andriy Gapon65c1b862008-05-22 13:22:45 +0000103 OUTB(0x24, 0x4e);
104 b = INB(0x4f) | 0xfc;
105 OUTB(0x24, 0x4e);
106 OUTB(b, 0x4f);
107 OUTB(0x02, 0x4e);
108 OUTB(0x02, 0x4f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000109 }
110
Andriy Gapon65c1b862008-05-22 13:22:45 +0000111 OUTB(0x24, 0x2e);
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000112 printf_debug("2f is %#x\n", INB(0x2f));
Andriy Gapon65c1b862008-05-22 13:22:45 +0000113 b = INB(0x2f) | 0xfc;
114 OUTB(0x24, 0x2e);
115 OUTB(b, 0x2f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000116
Andriy Gapon65c1b862008-05-22 13:22:45 +0000117 OUTB(0x02, 0x2e);
118 OUTB(0x02, 0x2f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000119
120 return 0;
121}
122
Uwe Hermann987942d2006-11-07 11:16:21 +0000123/* Datasheet:
124 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
125 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
126 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
127 * - Order Number: 290562-001
128 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000129static int enable_flash_piix4(struct pci_dev *dev, const char *name)
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000130{
131 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000132 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000133
134 old = pci_read_word(dev, xbcs);
135
136 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000137 * FFF00000-FFF7FFFF are forwarded to ISA).
Uwe Hermannc556d322008-10-28 11:50:05 +0000138 * Note: This bit is reserved on PIIX/PIIX3/MPIIX.
Uwe Hermanna7e05482007-05-09 10:17:44 +0000139 * Set bit 7: Extended BIOS Enable (PCI master accesses to
140 * FFF80000-FFFDFFFF are forwarded to ISA).
141 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
142 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
143 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
144 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
145 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
146 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
147 */
Uwe Hermannc556d322008-10-28 11:50:05 +0000148 if (dev->device_id == 0x122e || dev->device_id == 0x7000
149 || dev->device_id == 0x1234)
150 new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */
Uwe Hermann87203452008-10-26 18:40:42 +0000151 else
152 new = old | 0x02c4;
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000153
154 if (new == old)
155 return 0;
156
157 pci_write_word(dev, xbcs, new);
158
159 if (pci_read_word(dev, xbcs) != new) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000160 printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000161 return -1;
162 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000163
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000164 return 0;
165}
166
Uwe Hermann372eeb52007-12-04 21:49:06 +0000167/*
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000168 * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet"
169 * http://download.intel.com/design/chipsets/datashts/30701303.pdf
Uwe Hermann372eeb52007-12-04 21:49:06 +0000170 */
171static int enable_flash_ich(struct pci_dev *dev, const char *name,
172 int bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000173{
Ollie Lho184a4042005-11-26 21:55:36 +0000174 uint8_t old, new;
Stefan Reinauereb366472006-09-06 15:48:48 +0000175
Uwe Hermann372eeb52007-12-04 21:49:06 +0000176 /*
177 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
Uwe Hermanna7e05482007-05-09 10:17:44 +0000178 * just treating it as 8 bit wide seems to work fine in practice.
Stefan Reinauereb366472006-09-06 15:48:48 +0000179 */
Stefan Reinauer86de2832006-03-31 11:26:55 +0000180 old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000181
Uwe Hermann793bdcd2008-05-22 22:47:04 +0000182 printf_debug("\nBIOS Lock Enable: %sabled, ",
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000183 (old & (1 << 1)) ? "en" : "dis");
184 printf_debug("BIOS Write Enable: %sabled, ",
185 (old & (1 << 0)) ? "en" : "dis");
186 printf_debug("BIOS_CNTL is 0x%x\n", old);
187
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000188 new = old | 1;
189
190 if (new == old)
191 return 0;
192
Stefan Reinauer86de2832006-03-31 11:26:55 +0000193 pci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000194
Stefan Reinauer86de2832006-03-31 11:26:55 +0000195 if (pci_read_byte(dev, bios_cntl) != new) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000196 printf_debug("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 +0000197 return -1;
198 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000199
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000200 return 0;
201}
202
Uwe Hermann372eeb52007-12-04 21:49:06 +0000203static int enable_flash_ich_4e(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000204{
Carl-Daniel Hailfinger4c7ea382009-08-10 23:30:45 +0000205 /*
206 * Note: ICH5 has registers similar to FWH_SEL1, FWH_SEL2 and
207 * FWH_DEC_EN1, but they are called FB_SEL1, FB_SEL2, FB_DEC_EN1 and
208 * FB_DEC_EN2.
209 */
Stefan Reinauereb366472006-09-06 15:48:48 +0000210 return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000211}
212
Uwe Hermann372eeb52007-12-04 21:49:06 +0000213static int enable_flash_ich_dc(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000214{
Carl-Daniel Hailfinger4c7ea382009-08-10 23:30:45 +0000215 uint32_t fwh_conf;
216 int i;
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000217 char *idsel = NULL;
Carl-Daniel Hailfinger4c7ea382009-08-10 23:30:45 +0000218
219 /* Ignore all legacy ranges below 1 MB. */
220 /* FWH_SEL1 */
221 fwh_conf = pci_read_long(dev, 0xd0);
222 for (i = 7; i >= 0; i--)
223 printf_debug("\n0x%08x/0x%08x FWH IDSEL: 0x%x",
224 (0x1ff8 + i) * 0x80000,
225 (0x1ff0 + i) * 0x80000,
226 (fwh_conf >> (i * 4)) & 0xf);
227 /* FWH_SEL2 */
228 fwh_conf = pci_read_word(dev, 0xd4);
229 for (i = 3; i >= 0; i--)
230 printf_debug("\n0x%08x/0x%08x FWH IDSEL: 0x%x",
231 (0xff4 + i) * 0x100000,
232 (0xff0 + i) * 0x100000,
233 (fwh_conf >> (i * 4)) & 0xf);
234 /* FWH_DEC_EN1 */
235 fwh_conf = pci_read_word(dev, 0xd8);
236 for (i = 7; i >= 0; i--)
237 printf_debug("\n0x%08x/0x%08x FWH decode %sabled",
238 (0x1ff8 + i) * 0x80000,
239 (0x1ff0 + i) * 0x80000,
240 (fwh_conf >> (i + 0x8)) & 0x1 ? "en" : "dis");
241 for (i = 3; i >= 0; i--)
242 printf_debug("\n0x%08x/0x%08x FWH decode %sabled",
243 (0xff4 + i) * 0x100000,
244 (0xff0 + i) * 0x100000,
245 (fwh_conf >> i) & 0x1 ? "en" : "dis");
246
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000247 if (programmer_param)
248 idsel = strstr(programmer_param, "fwh_idsel=");
249
250 if (idsel) {
251 idsel += strlen("fwh_idsel=");
252 fwh_conf = (uint32_t)strtoul(idsel, NULL, 0);
253
254 /* FIXME: Need to undo this on shutdown. */
255 printf("\nSetting IDSEL=0x%x for top 16 MB", fwh_conf);
256 pci_write_long(dev, 0xd0, fwh_conf);
257 pci_write_word(dev, 0xd4, fwh_conf);
258 }
259
Stefan Reinauereb366472006-09-06 15:48:48 +0000260 return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000261}
262
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000263#define ICH_STRAP_RSVD 0x00
264#define ICH_STRAP_SPI 0x01
265#define ICH_STRAP_PCI 0x02
266#define ICH_STRAP_LPC 0x03
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000267
Uwe Hermann394131e2008-10-18 21:14:13 +0000268static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name)
269{
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000270 uint32_t mmio_base;
271
272 mmio_base = (pci_read_long(dev, 0xbc)) << 8;
273 printf_debug("MMIO base at = 0x%x\n", mmio_base);
Stefan Reinauer0593f212009-01-26 01:10:48 +0000274 spibar = physmap("VT8237S MMIO registers", mmio_base, 0x70);
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000275
Uwe Hermann394131e2008-10-18 21:14:13 +0000276 printf_debug("0x6c: 0x%04x (CLOCK/DEBUG)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000277 mmio_readw(spibar + 0x6c));
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000278
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000279 /* Not sure if it speaks all these bus protocols. */
280 buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_SPI;
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000281 spi_controller = SPI_CONTROLLER_VIA;
Rudolf Marek0c2029f2009-02-01 18:40:50 +0000282 ich_init_opcodes();
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000283
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000284 return 0;
285}
286
Uwe Hermann394131e2008-10-18 21:14:13 +0000287static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name,
288 int ich_generation)
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000289{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000290 int ret, i;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000291 uint8_t old, new, bbs, buc;
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000292 uint16_t spibar_offset, tmp2;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000293 uint32_t tmp, gcs;
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000294 void *rcrb;
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000295 //TODO: These names are incorrect for EP80579. For that, the solution would look like the commented line
296 //static const char *straps_names[] = {"SPI", "reserved", "reserved", "LPC" };
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000297 static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" };
Uwe Hermann394131e2008-10-18 21:14:13 +0000298
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000299 /* Enable Flash Writes */
300 ret = enable_flash_ich_dc(dev, name);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000301
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000302 /* Get physical address of Root Complex Register Block */
303 tmp = pci_read_long(dev, 0xf0) & 0xffffc000;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000304 printf_debug("\nRoot Complex Register Block address = 0x%x\n", tmp);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000305
306 /* Map RCBA to virtual memory */
Stefan Reinauer0593f212009-01-26 01:10:48 +0000307 rcrb = physmap("ICH RCRB", tmp, 0x4000);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000308
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000309 gcs = mmio_readl(rcrb + 0x3410);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000310 printf_debug("GCS = 0x%x: ", gcs);
311 printf_debug("BIOS Interface Lock-Down: %sabled, ",
312 (gcs & 0x1) ? "en" : "dis");
313 bbs = (gcs >> 10) & 0x3;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000314 printf_debug("BOOT BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000315
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000316 buc = mmio_readb(rcrb + 0x3414);
Uwe Hermann394131e2008-10-18 21:14:13 +0000317 printf_debug("Top Swap : %s\n",
318 (buc & 1) ? "enabled (A16 inverted)" : "not enabled");
Stefan Reinauera9424d52008-06-27 16:28:34 +0000319
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000320 /* It seems the ICH7 does not support SPI and LPC chips at the same
321 * time. At least not with our current code. So we prevent searching
322 * on ICH7 when the southbridge is strapped to LPC
323 */
324
325 if (ich_generation == 7 && bbs == ICH_STRAP_LPC) {
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000326 /* Not sure if it speaks LPC as well. */
327 buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000328 /* No further SPI initialization required */
329 return ret;
330 }
331
332 switch (ich_generation) {
333 case 7:
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000334 buses_supported = CHIP_BUSTYPE_SPI;
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000335 spi_controller = SPI_CONTROLLER_ICH7;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000336 spibar_offset = 0x3020;
337 break;
338 case 8:
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000339 /* Not sure if it speaks LPC as well. */
340 buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_SPI;
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000341 spi_controller = SPI_CONTROLLER_ICH9;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000342 spibar_offset = 0x3020;
343 break;
344 case 9:
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000345 case 10:
Uwe Hermann394131e2008-10-18 21:14:13 +0000346 default: /* Future version might behave the same */
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000347 /* Not sure if it speaks LPC as well. */
348 buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_SPI;
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000349 spi_controller = SPI_CONTROLLER_ICH9;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000350 spibar_offset = 0x3800;
351 break;
352 }
353
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000354 /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000355 printf_debug("SPIBAR = 0x%x + 0x%04x\n", tmp, spibar_offset);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000356
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000357 /* Assign Virtual Address */
Uwe Hermann394131e2008-10-18 21:14:13 +0000358 spibar = rcrb + spibar_offset;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000359
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000360 switch (spi_controller) {
361 case SPI_CONTROLLER_ICH7:
Uwe Hermann394131e2008-10-18 21:14:13 +0000362 printf_debug("0x00: 0x%04x (SPIS)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000363 mmio_readw(spibar + 0));
Uwe Hermann394131e2008-10-18 21:14:13 +0000364 printf_debug("0x02: 0x%04x (SPIC)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000365 mmio_readw(spibar + 2));
Uwe Hermann394131e2008-10-18 21:14:13 +0000366 printf_debug("0x04: 0x%08x (SPIA)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000367 mmio_readl(spibar + 4));
Uwe Hermann394131e2008-10-18 21:14:13 +0000368 for (i = 0; i < 8; i++) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000369 int offs;
370 offs = 8 + (i * 8);
Uwe Hermann394131e2008-10-18 21:14:13 +0000371 printf_debug("0x%02x: 0x%08x (SPID%d)\n", offs,
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000372 mmio_readl(spibar + offs), i);
Uwe Hermann394131e2008-10-18 21:14:13 +0000373 printf_debug("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000374 mmio_readl(spibar + offs + 4), i);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000375 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000376 printf_debug("0x50: 0x%08x (BBAR)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000377 mmio_readl(spibar + 0x50));
Uwe Hermann394131e2008-10-18 21:14:13 +0000378 printf_debug("0x54: 0x%04x (PREOP)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000379 mmio_readw(spibar + 0x54));
Uwe Hermann394131e2008-10-18 21:14:13 +0000380 printf_debug("0x56: 0x%04x (OPTYPE)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000381 mmio_readw(spibar + 0x56));
Uwe Hermann394131e2008-10-18 21:14:13 +0000382 printf_debug("0x58: 0x%08x (OPMENU)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000383 mmio_readl(spibar + 0x58));
Uwe Hermann394131e2008-10-18 21:14:13 +0000384 printf_debug("0x5c: 0x%08x (OPMENU+4)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000385 mmio_readl(spibar + 0x5c));
Uwe Hermann394131e2008-10-18 21:14:13 +0000386 for (i = 0; i < 4; i++) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000387 int offs;
388 offs = 0x60 + (i * 4);
Uwe Hermann394131e2008-10-18 21:14:13 +0000389 printf_debug("0x%02x: 0x%08x (PBR%d)\n", offs,
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000390 mmio_readl(spibar + offs), i);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000391 }
392 printf_debug("\n");
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000393 if (mmio_readw(spibar) & (1 << 15)) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000394 printf("WARNING: SPI Configuration Lockdown activated.\n");
FENG yu ningc05a2952008-12-08 18:16:58 +0000395 ichspi_lock = 1;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000396 }
FENG yu ningf041e9b2008-12-15 02:32:11 +0000397 ich_init_opcodes();
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000398 break;
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000399 case SPI_CONTROLLER_ICH9:
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000400 tmp2 = mmio_readw(spibar + 4);
FENG yu ning37179b82009-01-18 06:39:32 +0000401 printf_debug("0x04: 0x%04x (HSFS)\n", tmp2);
402 printf_debug("FLOCKDN %i, ", (tmp2 >> 15 & 1));
403 printf_debug("FDV %i, ", (tmp2 >> 14) & 1);
404 printf_debug("FDOPSS %i, ", (tmp2 >> 13) & 1);
405 printf_debug("SCIP %i, ", (tmp2 >> 5) & 1);
406 printf_debug("BERASE %i, ", (tmp2 >> 3) & 3);
407 printf_debug("AEL %i, ", (tmp2 >> 2) & 1);
408 printf_debug("FCERR %i, ", (tmp2 >> 1) & 1);
409 printf_debug("FDONE %i\n", (tmp2 >> 0) & 1);
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000410
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000411 tmp = mmio_readl(spibar + 0x50);
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000412 printf_debug("0x50: 0x%08x (FRAP)\n", tmp);
413 printf_debug("BMWAG %i, ", (tmp >> 24) & 0xff);
414 printf_debug("BMRAG %i, ", (tmp >> 16) & 0xff);
415 printf_debug("BRWA %i, ", (tmp >> 8) & 0xff);
416 printf_debug("BRRA %i\n", (tmp >> 0) & 0xff);
417
418 printf_debug("0x54: 0x%08x (FREG0)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000419 mmio_readl(spibar + 0x54));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000420 printf_debug("0x58: 0x%08x (FREG1)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000421 mmio_readl(spibar + 0x58));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000422 printf_debug("0x5C: 0x%08x (FREG2)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000423 mmio_readl(spibar + 0x5C));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000424 printf_debug("0x60: 0x%08x (FREG3)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000425 mmio_readl(spibar + 0x60));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000426 printf_debug("0x64: 0x%08x (FREG4)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000427 mmio_readl(spibar + 0x64));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000428 printf_debug("0x74: 0x%08x (PR0)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000429 mmio_readl(spibar + 0x74));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000430 printf_debug("0x78: 0x%08x (PR1)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000431 mmio_readl(spibar + 0x78));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000432 printf_debug("0x7C: 0x%08x (PR2)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000433 mmio_readl(spibar + 0x7C));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000434 printf_debug("0x80: 0x%08x (PR3)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000435 mmio_readl(spibar + 0x80));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000436 printf_debug("0x84: 0x%08x (PR4)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000437 mmio_readl(spibar + 0x84));
FENG yu ning37179b82009-01-18 06:39:32 +0000438 printf_debug("0x90: 0x%08x (SSFS, SSFC)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000439 mmio_readl(spibar + 0x90));
FENG yu ning37179b82009-01-18 06:39:32 +0000440 printf_debug("0x94: 0x%04x (PREOP)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000441 mmio_readw(spibar + 0x94));
FENG yu ning37179b82009-01-18 06:39:32 +0000442 printf_debug("0x96: 0x%04x (OPTYPE)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000443 mmio_readw(spibar + 0x96));
FENG yu ning37179b82009-01-18 06:39:32 +0000444 printf_debug("0x98: 0x%08x (OPMENU)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000445 mmio_readl(spibar + 0x98));
FENG yu ning37179b82009-01-18 06:39:32 +0000446 printf_debug("0x9C: 0x%08x (OPMENU+4)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000447 mmio_readl(spibar + 0x9C));
FENG yu ning37179b82009-01-18 06:39:32 +0000448 printf_debug("0xA0: 0x%08x (BBAR)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000449 mmio_readl(spibar + 0xA0));
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000450 printf_debug("0xB0: 0x%08x (FDOC)\n",
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000451 mmio_readl(spibar + 0xB0));
FENG yu ning37179b82009-01-18 06:39:32 +0000452 if (tmp2 & (1 << 15)) {
453 printf("WARNING: SPI Configuration Lockdown activated.\n");
454 ichspi_lock = 1;
455 }
Peter Stugee8a3e4c2008-12-22 14:12:08 +0000456 ich_init_opcodes();
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000457 break;
458 default:
459 /* Nothing */
460 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000461 }
462
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000463 old = pci_read_byte(dev, 0xdc);
464 printf_debug("SPI Read Configuration: ");
465 new = (old >> 2) & 0x3;
466 switch (new) {
467 case 0:
468 case 1:
469 case 2:
470 printf_debug("prefetching %sabled, caching %sabled, ",
Uwe Hermann394131e2008-10-18 21:14:13 +0000471 (new & 0x2) ? "en" : "dis",
472 (new & 0x1) ? "dis" : "en");
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000473 break;
474 default:
475 printf_debug("invalid prefetching/caching settings, ");
476 break;
477 }
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000478
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000479 return ret;
480}
Stefan Reinauera9424d52008-06-27 16:28:34 +0000481
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000482static int enable_flash_ich7(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000483{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000484 return enable_flash_ich_dc_spi(dev, name, 7);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000485}
486
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000487static int enable_flash_ich8(struct pci_dev *dev, const char *name)
488{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000489 return enable_flash_ich_dc_spi(dev, name, 8);
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000490}
491
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000492static int enable_flash_ich9(struct pci_dev *dev, const char *name)
493{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000494 return enable_flash_ich_dc_spi(dev, name, 9);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000495}
496
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000497static int enable_flash_ich10(struct pci_dev *dev, const char *name)
498{
499 return enable_flash_ich_dc_spi(dev, name, 10);
500}
501
Uwe Hermann372eeb52007-12-04 21:49:06 +0000502static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000503{
Ollie Lho184a4042005-11-26 21:55:36 +0000504 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000505
Uwe Hermann394131e2008-10-18 21:14:13 +0000506 /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF */
Bari Ari9477c4e2008-04-29 13:46:38 +0000507 pci_write_byte(dev, 0x41, 0x7f);
508
Uwe Hermannffec5f32007-08-23 16:08:21 +0000509 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000510 val = pci_read_byte(dev, 0x40);
511 val |= 0x10;
512 pci_write_byte(dev, 0x40, val);
513
514 if (pci_read_byte(dev, 0x40) != val) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000515 printf("\nWARNING: Failed to enable flash write on \"%s\"\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000516 name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000517 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000518 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000519
Uwe Hermanna7e05482007-05-09 10:17:44 +0000520 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000521}
522
Uwe Hermann372eeb52007-12-04 21:49:06 +0000523static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000524{
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000525 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000526
Uwe Hermann394131e2008-10-18 21:14:13 +0000527#define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
528#define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000529
Uwe Hermann394131e2008-10-18 21:14:13 +0000530#define LOWER_ROM_ADDRESS_RANGE (1 << 0)
531#define ROM_WRITE_ENABLE (1 << 1)
532#define UPPER_ROM_ADDRESS_RANGE (1 << 2)
533#define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000534
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000535 /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and
536 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB.
537 * Make the configured ROM areas writable.
538 */
539 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
540 reg8 |= LOWER_ROM_ADDRESS_RANGE;
541 reg8 |= UPPER_ROM_ADDRESS_RANGE;
542 reg8 |= ROM_WRITE_ENABLE;
543 pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000544
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000545 /* Set positive decode on ROM. */
546 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
547 reg8 |= BIOS_ROM_POSITIVE_DECODE;
548 pci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000549
Ollie Lhocbbf1252004-03-17 22:22:08 +0000550 return 0;
551}
552
Mart Raudseppe1344da2008-02-08 10:10:57 +0000553/**
554 * Geode systems write protect the BIOS via RCONFs (cache settings similar
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000555 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22.
Mart Raudseppe1344da2008-02-08 10:10:57 +0000556 *
557 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
558 * To enable write to NOR Boot flash for the benefit of systems that have such
559 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
Mart Raudseppe1344da2008-02-08 10:10:57 +0000560 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000561static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
Lane Brooksd54958a2007-11-13 16:45:22 +0000562{
Uwe Hermann394131e2008-10-18 21:14:13 +0000563#define MSR_RCONF_DEFAULT 0x1808
564#define MSR_NORF_CTL 0x51400018
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000565
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000566 msr_t msr;
Lane Brooksd54958a2007-11-13 16:45:22 +0000567
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000568 /* Geode only has a single core */
569 if (setup_cpu_msr(0))
Lane Brooksd54958a2007-11-13 16:45:22 +0000570 return -1;
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000571
572 msr = rdmsr(MSR_RCONF_DEFAULT);
573 if ((msr.hi >> 24) != 0x22) {
574 msr.hi &= 0xfbffffff;
575 wrmsr(MSR_RCONF_DEFAULT, msr);
Lane Brooksd54958a2007-11-13 16:45:22 +0000576 }
Mart Raudseppe1344da2008-02-08 10:10:57 +0000577
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000578 msr = rdmsr(MSR_NORF_CTL);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000579 /* Raise WE_CS3 bit. */
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000580 msr.lo |= 0x08;
581 wrmsr(MSR_NORF_CTL, msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000582
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000583 cleanup_cpu_msr();
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000584
Uwe Hermann394131e2008-10-18 21:14:13 +0000585#undef MSR_RCONF_DEFAULT
586#undef MSR_NORF_CTL
Lane Brooksd54958a2007-11-13 16:45:22 +0000587 return 0;
588}
589
Uwe Hermann372eeb52007-12-04 21:49:06 +0000590static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000591{
Ollie Lho184a4042005-11-26 21:55:36 +0000592 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000593
Ollie Lhocbbf1252004-03-17 22:22:08 +0000594 pci_write_byte(dev, 0x52, 0xee);
595
596 new = pci_read_byte(dev, 0x52);
597
598 if (new != 0xee) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000599 printf_debug("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 +0000600 return -1;
601 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000602
Ollie Lhocbbf1252004-03-17 22:22:08 +0000603 return 0;
604}
605
Uwe Hermann372eeb52007-12-04 21:49:06 +0000606static int enable_flash_sis5595(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000607{
Ollie Lho184a4042005-11-26 21:55:36 +0000608 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000609
Ollie Lhocbbf1252004-03-17 22:22:08 +0000610 new = pci_read_byte(dev, 0x45);
611
Uwe Hermann372eeb52007-12-04 21:49:06 +0000612 new &= (~0x20); /* Clear bit 5. */
613 new |= 0x4; /* Set bit 2. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000614
615 pci_write_byte(dev, 0x45, new);
616
617 newer = pci_read_byte(dev, 0x45);
618 if (newer != new) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000619 printf_debug("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name);
620 printf_debug("Stuck at 0x%x\n", newer);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000621 return -1;
622 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000623
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000624 /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
Uwe Hermann394131e2008-10-18 21:14:13 +0000625 new = pci_read_byte(dev, 0x40);
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000626 new &= 0xFB;
627 new |= 0x3;
Uwe Hermann394131e2008-10-18 21:14:13 +0000628 pci_write_byte(dev, 0x40, new);
629 newer = pci_read_byte(dev, 0x40);
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000630 if (newer != new) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000631 printf_debug("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name);
632 printf_debug("Stuck at 0x%x\n", newer);
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000633 return -1;
634 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000635 return 0;
636}
637
Uwe Hermann190f8492008-10-25 18:03:50 +0000638/* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000639static int enable_flash_amd8111(struct pci_dev *dev, const char *name)
Ollie Lho761bf1b2004-03-20 16:46:10 +0000640{
Ollie Lho184a4042005-11-26 21:55:36 +0000641 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000642
Uwe Hermann372eeb52007-12-04 21:49:06 +0000643 /* Enable decoding at 0xffb00000 to 0xffffffff. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000644 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000645 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000646 if (new != old) {
647 pci_write_byte(dev, 0x43, new);
648 if (pci_read_byte(dev, 0x43) != new) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000649 printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x43, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000650 }
651 }
652
Uwe Hermann190f8492008-10-25 18:03:50 +0000653 /* Enable 'ROM write' bit. */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000654 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000655 new = old | 0x01;
656 if (new == old)
657 return 0;
658 pci_write_byte(dev, 0x40, new);
659
660 if (pci_read_byte(dev, 0x40) != new) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000661 printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000662 return -1;
663 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000664
Ollie Lhocbbf1252004-03-17 22:22:08 +0000665 return 0;
666}
667
Marc Jones3af487d2008-10-15 17:50:29 +0000668static int enable_flash_sb600(struct pci_dev *dev, const char *name)
669{
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000670 uint32_t tmp, prot;
Marc Jones3af487d2008-10-15 17:50:29 +0000671 uint8_t reg;
Carl-Daniel Hailfingerdbfa0292009-05-10 14:11:07 +0000672 struct pci_dev *smbus_dev;
673 int has_spi = 1;
Marc Jones3af487d2008-10-15 17:50:29 +0000674
Jason Wanga3f04be2008-11-28 21:36:51 +0000675 /* Clear ROM protect 0-3. */
676 for (reg = 0x50; reg < 0x60; reg += 4) {
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000677 prot = pci_read_long(dev, reg);
678 /* No protection flags for this region?*/
679 if ((prot & 0x3) == 0)
680 continue;
681 printf_debug("SB600 %s%sprotected from %u to %u\n",
682 (prot & 0x1) ? "write " : "",
683 (prot & 0x2) ? "read " : "",
684 (prot & 0xfffffc00),
685 (prot & 0xfffffc00) + ((prot & 0x3ff) << 8));
686 prot &= 0xfffffffc;
687 pci_write_byte(dev, reg, prot);
688 prot = pci_read_long(dev, reg);
Carl-Daniel Hailfinger9bb88ac2009-05-06 13:51:44 +0000689 if (prot & 0x3)
Peter Stuge19997ae2009-05-06 15:05:39 +0000690 printf("SB600 %s%sunprotect failed from %u to %u\n",
Carl-Daniel Hailfinger9bb88ac2009-05-06 13:51:44 +0000691 (prot & 0x1) ? "write " : "",
692 (prot & 0x2) ? "read " : "",
693 (prot & 0xfffffc00),
694 (prot & 0xfffffc00) + ((prot & 0x3ff) << 8));
Jason Wanga3f04be2008-11-28 21:36:51 +0000695 }
696
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000697 /* Read SPI_BaseAddr */
698 tmp = pci_read_long(dev, 0xa0);
Carl-Daniel Hailfingerf8555e22009-07-23 01:36:08 +0000699 tmp &= 0xffffffe0; /* remove bits 4-0 (reserved) */
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000700 printf_debug("SPI base address is at 0x%x\n", tmp);
701
Carl-Daniel Hailfingerdbfa0292009-05-10 14:11:07 +0000702 /* If the BAR has address 0, it is unlikely SPI is used. */
703 if (!tmp)
704 has_spi = 0;
705
Carl-Daniel Hailfingerf8555e22009-07-23 01:36:08 +0000706 if (has_spi) {
707 /* Physical memory has to be mapped at page (4k) boundaries. */
708 sb600_spibar = physmap("SB600 SPI registers", tmp & 0xfffff000,
709 0x1000);
710 /* The low bits of the SPI base address are used as offset into
711 * the mapped page.
712 */
713 sb600_spibar += tmp & 0xfff;
714
715 tmp = pci_read_long(dev, 0xa0);
716 printf_debug("AltSpiCSEnable=%i, SpiRomEnable=%i, "
717 "AbortEnable=%i\n", tmp & 0x1, (tmp & 0x2) >> 1,
718 (tmp & 0x4) >> 2);
719 tmp = (pci_read_byte(dev, 0xba) & 0x4) >> 2;
720 printf_debug("PrefetchEnSPIFromIMC=%i, ", tmp);
721
722 tmp = pci_read_byte(dev, 0xbb);
723 printf_debug("PrefetchEnSPIFromHost=%i, SpiOpEnInLpcMode=%i\n",
724 tmp & 0x1, (tmp & 0x20) >> 5);
725 tmp = mmio_readl(sb600_spibar);
726 printf_debug("SpiArbEnable=%i, SpiAccessMacRomEn=%i, "
727 "SpiHostAccessRomEn=%i, ArbWaitCount=%i, "
728 "SpiBridgeDisable=%i, DropOneClkOnRd=%i\n",
729 (tmp >> 19) & 0x1, (tmp >> 22) & 0x1,
730 (tmp >> 23) & 0x1, (tmp >> 24) & 0x7,
731 (tmp >> 27) & 0x1, (tmp >> 28) & 0x1);
732 }
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000733
Carl-Daniel Hailfingerdbfa0292009-05-10 14:11:07 +0000734 /* Look for the SMBus device. */
735 smbus_dev = pci_dev_find(0x1002, 0x4385);
736
Carl-Daniel Hailfingerf8555e22009-07-23 01:36:08 +0000737 if (has_spi && !smbus_dev) {
Carl-Daniel Hailfingerdbfa0292009-05-10 14:11:07 +0000738 fprintf(stderr, "ERROR: SMBus device not found. Not enabling SPI.\n");
739 has_spi = 0;
Carl-Daniel Hailfingerf8555e22009-07-23 01:36:08 +0000740 }
741 if (has_spi) {
Carl-Daniel Hailfingerdbfa0292009-05-10 14:11:07 +0000742 /* Note about the bit tests below: If a bit is zero, the GPIO is SPI. */
743 /* GPIO11/SPI_DO and GPIO12/SPI_DI status */
744 reg = pci_read_byte(smbus_dev, 0xAB);
745 reg &= 0xC0;
746 printf_debug("GPIO11 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_DO");
747 printf_debug("GPIO12 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_DI");
748 if (reg != 0x00)
749 has_spi = 0;
750 /* GPIO31/SPI_HOLD and GPIO32/SPI_CS status */
751 reg = pci_read_byte(smbus_dev, 0x83);
752 reg &= 0xC0;
753 printf_debug("GPIO31 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_HOLD");
754 printf_debug("GPIO32 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_CS");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000755 /* SPI_HOLD is not used on all boards, filter it out. */
756 if ((reg & 0x80) != 0x00)
Carl-Daniel Hailfingerdbfa0292009-05-10 14:11:07 +0000757 has_spi = 0;
758 /* GPIO47/SPI_CLK status */
759 reg = pci_read_byte(smbus_dev, 0xA7);
760 reg &= 0x40;
761 printf_debug("GPIO47 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_CLK");
762 if (reg != 0x00)
763 has_spi = 0;
764 }
765
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000766 buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH;
767 if (has_spi) {
768 buses_supported |= CHIP_BUSTYPE_SPI;
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000769 spi_controller = SPI_CONTROLLER_SB600;
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000770 }
Jason Wanga3f04be2008-11-28 21:36:51 +0000771
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000772 /* Read ROM strap override register. */
773 OUTB(0x8f, 0xcd6);
774 reg = INB(0xcd7);
775 reg &= 0x0e;
776 printf_debug("ROM strap override is %sactive", (reg & 0x02) ? "" : "not ");
777 if (reg & 0x02) {
778 switch ((reg & 0x0c) >> 2) {
779 case 0x00:
780 printf_debug(": LPC");
781 break;
782 case 0x01:
783 printf_debug(": PCI");
784 break;
785 case 0x02:
786 printf_debug(": FWH");
787 break;
788 case 0x03:
789 printf_debug(": SPI");
790 break;
791 }
792 }
793 printf_debug("\n");
794
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000795 /* Force enable SPI ROM in SB600 PM register.
796 * If we enable SPI ROM here, we have to disable it after we leave.
Zheng Bao284a6002009-05-04 22:33:50 +0000797 * But how can we know which ROM we are going to handle? So we have
798 * to trade off. We only access LPC ROM if we boot via LPC ROM. And
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000799 * only SPI ROM if we boot via SPI ROM. If you want to access SPI on
800 * boards with LPC straps, you have to use the code below.
Zheng Bao284a6002009-05-04 22:33:50 +0000801 */
802 /*
Jason Wanga3f04be2008-11-28 21:36:51 +0000803 OUTB(0x8f, 0xcd6);
804 OUTB(0x0e, 0xcd7);
Zheng Bao284a6002009-05-04 22:33:50 +0000805 */
Marc Jones3af487d2008-10-15 17:50:29 +0000806
807 return 0;
808}
809
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000810static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name)
811{
Uwe Hermanne9d04d42009-06-02 19:54:22 +0000812 uint8_t tmp;
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000813
Uwe Hermanne9d04d42009-06-02 19:54:22 +0000814 pci_write_byte(dev, 0x92, 0);
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000815
Uwe Hermanne9d04d42009-06-02 19:54:22 +0000816 tmp = pci_read_byte(dev, 0x6d);
817 tmp |= 0x01;
818 pci_write_byte(dev, 0x6d, tmp);
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000819
Uwe Hermanne9d04d42009-06-02 19:54:22 +0000820 return 0;
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000821}
822
Uwe Hermann372eeb52007-12-04 21:49:06 +0000823static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu952dfce2005-07-06 17:13:46 +0000824{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000825 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000826
Uwe Hermanna7e05482007-05-09 10:17:44 +0000827 old = pci_read_byte(dev, 0x88);
828 new = old | 0xc0;
829 if (new != old) {
830 pci_write_byte(dev, 0x88, new);
831 if (pci_read_byte(dev, 0x88) != new) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000832 printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000833 }
834 }
Yinghai Lu952dfce2005-07-06 17:13:46 +0000835
Uwe Hermanna7e05482007-05-09 10:17:44 +0000836 old = pci_read_byte(dev, 0x6d);
837 new = old | 0x01;
838 if (new == old)
839 return 0;
840 pci_write_byte(dev, 0x6d, new);
841
842 if (pci_read_byte(dev, 0x6d) != new) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000843 printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000844 return -1;
845 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000846
Uwe Hermanna7e05482007-05-09 10:17:44 +0000847 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000848}
849
Uwe Hermann372eeb52007-12-04 21:49:06 +0000850/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
851static int enable_flash_sb400(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000852{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000853 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000854 struct pci_dev *smbusdev;
855
Uwe Hermann372eeb52007-12-04 21:49:06 +0000856 /* Look for the SMBus device. */
Carl-Daniel Hailfingerf6e3efb2009-05-06 00:35:31 +0000857 smbusdev = pci_dev_find(0x1002, 0x4372);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000858
Uwe Hermanna7e05482007-05-09 10:17:44 +0000859 if (!smbusdev) {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000860 fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n");
Stefan Reinauer86de2832006-03-31 11:26:55 +0000861 exit(1);
862 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000863
Uwe Hermann372eeb52007-12-04 21:49:06 +0000864 /* Enable some SMBus stuff. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000865 tmp = pci_read_byte(smbusdev, 0x79);
866 tmp |= 0x01;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000867 pci_write_byte(smbusdev, 0x79, tmp);
868
Uwe Hermann372eeb52007-12-04 21:49:06 +0000869 /* Change southbridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000870 tmp = pci_read_byte(dev, 0x48);
871 tmp |= 0x21;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000872 pci_write_byte(dev, 0x48, tmp);
873
Uwe Hermann372eeb52007-12-04 21:49:06 +0000874 /* Now become a bit silly. */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000875 tmp = INB(0xc6f);
876 OUTB(tmp, 0xeb);
877 OUTB(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000878 tmp |= 0x40;
Andriy Gapon65c1b862008-05-22 13:22:45 +0000879 OUTB(tmp, 0xc6f);
880 OUTB(tmp, 0xeb);
881 OUTB(tmp, 0xeb);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000882
883 return 0;
884}
885
Uwe Hermann372eeb52007-12-04 21:49:06 +0000886static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
Yinghai Luca782972007-01-22 20:21:17 +0000887{
Uwe Hermann372eeb52007-12-04 21:49:06 +0000888 uint8_t old, new, byte;
889 uint16_t word;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000890
Uwe Hermann372eeb52007-12-04 21:49:06 +0000891 /* Set the 0-16 MB enable bits. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000892 byte = pci_read_byte(dev, 0x88);
893 byte |= 0xff; /* 256K */
894 pci_write_byte(dev, 0x88, byte);
895 byte = pci_read_byte(dev, 0x8c);
896 byte |= 0xff; /* 1M */
897 pci_write_byte(dev, 0x8c, byte);
898 word = pci_read_word(dev, 0x90);
Carl-Daniel Hailfingerdca0ab12007-10-17 22:30:07 +0000899 word |= 0x7fff; /* 16M */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000900 pci_write_word(dev, 0x90, word);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000901
Uwe Hermanna7e05482007-05-09 10:17:44 +0000902 old = pci_read_byte(dev, 0x6d);
903 new = old | 0x01;
904 if (new == old)
905 return 0;
906 pci_write_byte(dev, 0x6d, new);
Yinghai Luca782972007-01-22 20:21:17 +0000907
Uwe Hermanna7e05482007-05-09 10:17:44 +0000908 if (pci_read_byte(dev, 0x6d) != new) {
Stefan Reinauer630c79d2009-08-11 12:15:39 +0000909 printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000910 return -1;
911 }
Yinghai Luca782972007-01-22 20:21:17 +0000912
913 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000914}
915
Uwe Hermann372eeb52007-12-04 21:49:06 +0000916static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000917{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000918 uint8_t byte;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000919
Uwe Hermanne823ee02007-06-05 15:02:18 +0000920 /* Set the 4MB enable bit. */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000921 byte = pci_read_byte(dev, 0x41);
922 byte |= 0x0e;
923 pci_write_byte(dev, 0x41, byte);
924
925 byte = pci_read_byte(dev, 0x43);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000926 byte |= (1 << 4);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000927 pci_write_byte(dev, 0x43, byte);
928
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000929 return 0;
930}
931
Stefan Reinauer9a6d1762008-12-03 21:24:40 +0000932/**
933 * Usually on the x86 architectures (and on other PC-like platforms like some
934 * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD
935 * Elan SC520 only a small piece of the system flash is mapped there, but the
936 * complete flash is mapped somewhere below 1G. The position can be determined
937 * by the BOOTCS PAR register.
938 */
939static int get_flashbase_sc520(struct pci_dev *dev, const char *name)
940{
941 int i, bootcs_found = 0;
942 uint32_t parx = 0;
943 void *mmcr;
944
945 /* 1. Map MMCR */
Stefan Reinauer0593f212009-01-26 01:10:48 +0000946 mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize());
Stefan Reinauer9a6d1762008-12-03 21:24:40 +0000947
948 /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for
949 * BOOTCS region (PARx[31:29] = 100b)e
950 */
951 for (i = 0x88; i <= 0xc4; i += 4) {
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000952 parx = mmio_readl(mmcr + i);
Stefan Reinauer9a6d1762008-12-03 21:24:40 +0000953 if ((parx >> 29) == 4) {
954 bootcs_found = 1;
955 break; /* BOOTCS found */
956 }
957 }
958
959 /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0]
960 * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0]
961 */
962 if (bootcs_found) {
963 if (parx & (1 << 25)) {
964 parx &= (1 << 14) - 1; /* Mask [13:0] */
965 flashbase = parx << 16;
966 } else {
967 parx &= (1 << 18) - 1; /* Mask [17:0] */
968 flashbase = parx << 12;
969 }
970 } else {
971 printf("AMD Elan SC520 detected, but no BOOTCS. Assuming flash at 4G\n");
972 }
973
974 /* 4. Clean up */
Carl-Daniel Hailfingerbe726812009-08-09 12:44:08 +0000975 physunmap(mmcr, getpagesize());
Stefan Reinauer9a6d1762008-12-03 21:24:40 +0000976 return 0;
977}
978
Uwe Hermann4179d292009-05-08 17:50:51 +0000979/* Please keep this list alphabetically sorted by vendor/device. */
Uwe Hermann05fab752009-05-16 23:42:17 +0000980const struct penable chipset_enables[] = {
Uwe Hermann4179d292009-05-08 17:50:51 +0000981 {0x10B9, 0x1533, OK, "ALi", "M1533", enable_flash_ali_m1533},
982 {0x1022, 0x7440, OK, "AMD", "AMD-768", enable_flash_amd8111},
983 {0x1022, 0x7468, OK, "AMD", "AMD8111", enable_flash_amd8111},
984 {0x1078, 0x0100, OK, "AMD", "CS5530(A)", enable_flash_cs5530},
985 {0x1022, 0x2080, OK, "AMD", "CS5536", enable_flash_cs5536},
Nils Jacobse715c7b2009-09-23 02:09:23 +0000986 {0x1022, 0x2090, OK, "AMD", "CS5536", enable_flash_cs5536},
Uwe Hermann4179d292009-05-08 17:50:51 +0000987 {0x1022, 0x3000, OK, "AMD", "Elan SC520", get_flashbase_sc520},
988 {0x1002, 0x438D, OK, "AMD", "SB600", enable_flash_sb600},
Carl-Daniel Hailfinger174962d2009-09-01 22:13:42 +0000989 {0x1002, 0x439d, OK, "AMD", "SB700/SB710/SB750", enable_flash_sb600},
Uwe Hermann4179d292009-05-08 17:50:51 +0000990 {0x100b, 0x0510, NT, "AMD", "SC1100", enable_flash_sc1100},
991 {0x1002, 0x4377, OK, "ATI", "SB400", enable_flash_sb400},
992 {0x1166, 0x0205, OK, "Broadcom", "HT-1000", enable_flash_ht1000},
Uwe Hermannb0039912009-05-07 13:24:49 +0000993 {0x8086, 0x7198, OK, "Intel", "440MX", enable_flash_piix4},
Uwe Hermann4179d292009-05-08 17:50:51 +0000994 {0x8086, 0x25a1, OK, "Intel", "6300ESB", enable_flash_ich_4e},
995 {0x8086, 0x2670, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich_dc},
996 {0x8086, 0x5031, OK, "Intel", "EP80579", enable_flash_ich7},
Uwe Hermannb0039912009-05-07 13:24:49 +0000997 {0x8086, 0x2420, OK, "Intel", "ICH0", enable_flash_ich_4e},
Uwe Hermann4179d292009-05-08 17:50:51 +0000998 {0x8086, 0x3a18, OK, "Intel", "ICH10", enable_flash_ich10},
999 {0x8086, 0x3a1a, OK, "Intel", "ICH10D", enable_flash_ich10},
1000 {0x8086, 0x3a14, OK, "Intel", "ICH10DO", enable_flash_ich10},
1001 {0x8086, 0x3a16, OK, "Intel", "ICH10R", enable_flash_ich10},
Uwe Hermannb0039912009-05-07 13:24:49 +00001002 {0x8086, 0x2440, OK, "Intel", "ICH2", enable_flash_ich_4e},
1003 {0x8086, 0x244c, OK, "Intel", "ICH2-M", enable_flash_ich_4e},
Uwe Hermannb0039912009-05-07 13:24:49 +00001004 {0x8086, 0x248c, OK, "Intel", "ICH3-M", enable_flash_ich_4e},
Uwe Hermann4179d292009-05-08 17:50:51 +00001005 {0x8086, 0x2480, OK, "Intel", "ICH3-S", enable_flash_ich_4e},
Uwe Hermannb0039912009-05-07 13:24:49 +00001006 {0x8086, 0x24c0, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich_4e},
1007 {0x8086, 0x24cc, OK, "Intel", "ICH4-M", enable_flash_ich_4e},
1008 {0x8086, 0x24d0, OK, "Intel", "ICH5/ICH5R", enable_flash_ich_4e},
Uwe Hermannb0039912009-05-07 13:24:49 +00001009 {0x8086, 0x2640, OK, "Intel", "ICH6/ICH6R", enable_flash_ich_dc},
1010 {0x8086, 0x2641, OK, "Intel", "ICH6-M", enable_flash_ich_dc},
Uwe Hermannb0039912009-05-07 13:24:49 +00001011 {0x8086, 0x27b0, OK, "Intel", "ICH7DH", enable_flash_ich7},
1012 {0x8086, 0x27b8, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7},
1013 {0x8086, 0x27b9, OK, "Intel", "ICH7M", enable_flash_ich7},
1014 {0x8086, 0x27bd, OK, "Intel", "ICH7MDH", enable_flash_ich7},
Uwe Hermann4179d292009-05-08 17:50:51 +00001015 {0x8086, 0x2410, OK, "Intel", "ICH", enable_flash_ich_4e},
Uwe Hermannb0039912009-05-07 13:24:49 +00001016 {0x8086, 0x2812, OK, "Intel", "ICH8DH", enable_flash_ich8},
1017 {0x8086, 0x2814, OK, "Intel", "ICH8DO", enable_flash_ich8},
Uwe Hermann4179d292009-05-08 17:50:51 +00001018 {0x8086, 0x2810, OK, "Intel", "ICH8/ICH8R", enable_flash_ich8},
Uwe Hermannb0039912009-05-07 13:24:49 +00001019 {0x8086, 0x2815, OK, "Intel", "ICH8M", enable_flash_ich8},
Uwe Hermann4179d292009-05-08 17:50:51 +00001020 {0x8086, 0x2811, OK, "Intel", "ICH8M-E", enable_flash_ich8},
1021 {0x8086, 0x2918, OK, "Intel", "ICH9", enable_flash_ich9},
Uwe Hermannb0039912009-05-07 13:24:49 +00001022 {0x8086, 0x2912, OK, "Intel", "ICH9DH", enable_flash_ich9},
1023 {0x8086, 0x2914, OK, "Intel", "ICH9DO", enable_flash_ich9},
Uwe Hermannb0039912009-05-07 13:24:49 +00001024 {0x8086, 0x2919, OK, "Intel", "ICH9M", enable_flash_ich9},
Uwe Hermann4179d292009-05-08 17:50:51 +00001025 {0x8086, 0x2917, OK, "Intel", "ICH9M-E", enable_flash_ich9},
1026 {0x8086, 0x2916, OK, "Intel", "ICH9R", enable_flash_ich9},
Carl-Daniel Hailfinger95baaad2009-08-21 17:26:13 +00001027 {0x8086, 0x2910, OK, "Intel", "ICH9 Engineering Sample", enable_flash_ich9},
Uwe Hermann4179d292009-05-08 17:50:51 +00001028 {0x8086, 0x1234, NT, "Intel", "MPIIX", enable_flash_piix4},
1029 {0x8086, 0x7000, OK, "Intel", "PIIX3", enable_flash_piix4},
1030 {0x8086, 0x7110, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4},
1031 {0x8086, 0x122e, OK, "Intel", "PIIX", enable_flash_piix4},
Luc Verhaegenaad7e672009-10-06 11:32:21 +00001032 {0x10de, 0x0030, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2},
Uwe Hermannb0039912009-05-07 13:24:49 +00001033 {0x10de, 0x0050, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */
1034 {0x10de, 0x0051, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */
Luc Verhaegen90e8e612009-05-26 09:48:28 +00001035 {0x10de, 0x0060, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2},
Uwe Hermanneac10162008-03-13 18:52:51 +00001036 /* Slave, should not be here, to fix known bug for A01. */
Uwe Hermannb0039912009-05-07 13:24:49 +00001037 {0x10de, 0x00d3, OK, "NVIDIA", "CK804", enable_flash_ck804},
1038 {0x10de, 0x0260, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1039 {0x10de, 0x0261, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1040 {0x10de, 0x0262, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1041 {0x10de, 0x0263, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1042 {0x10de, 0x0360, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/
1043 {0x10de, 0x0361, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1044 {0x10de, 0x0362, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1045 {0x10de, 0x0363, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1046 {0x10de, 0x0364, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1047 {0x10de, 0x0365, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1048 {0x10de, 0x0366, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1049 {0x10de, 0x0367, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */
1050 {0x10de, 0x0548, OK, "NVIDIA", "MCP67", enable_flash_mcp55},
Uwe Hermann4179d292009-05-08 17:50:51 +00001051 {0x1039, 0x0008, OK, "SiS", "SiS5595", enable_flash_sis5595},
1052 {0x1039, 0x0630, NT, "SiS", "SiS630", enable_flash_sis630},
1053 {0x1106, 0x8324, OK, "VIA", "CX700", enable_flash_vt823x},
1054 {0x1106, 0x8231, NT, "VIA", "VT8231", enable_flash_vt823x},
Mateusz Murawskie6abef02009-06-18 12:42:46 +00001055 {0x1106, 0x3074, NT, "VIA", "VT8233", enable_flash_vt823x},
Uwe Hermann4179d292009-05-08 17:50:51 +00001056 {0x1106, 0x3177, OK, "VIA", "VT8235", enable_flash_vt823x},
1057 {0x1106, 0x3227, OK, "VIA", "VT8237", enable_flash_vt823x},
1058 {0x1106, 0x3337, OK, "VIA", "VT8237A", enable_flash_vt823x},
1059 {0x1106, 0x3372, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi},
Arjan Koers8dfea832009-06-15 00:03:37 +00001060 {0x1106, 0x8353, OK, "VIA", "VX800", enable_flash_vt8237s_spi},
Uwe Hermann3e0774d2009-09-25 01:05:06 +00001061 {0x1106, 0x0596, OK, "VIA", "VT82C596", enable_flash_amd8111},
Uwe Hermann4179d292009-05-08 17:50:51 +00001062 {0x1106, 0x0586, OK, "VIA", "VT82C586A/B", enable_flash_amd8111},
1063 {0x1106, 0x0686, NT, "VIA", "VT82C686A/B", enable_flash_amd8111},
Uwe Hermann05fab752009-05-16 23:42:17 +00001064
1065 {},
Ollie Lhocbbf1252004-03-17 22:22:08 +00001066};
Ollie Lho761bf1b2004-03-20 16:46:10 +00001067
Uwe Hermanna7e05482007-05-09 10:17:44 +00001068int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001069{
Uwe Hermanna7e05482007-05-09 10:17:44 +00001070 struct pci_dev *dev = 0;
Uwe Hermann372eeb52007-12-04 21:49:06 +00001071 int ret = -2; /* Nothing! */
Uwe Hermanna7e05482007-05-09 10:17:44 +00001072 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001073
Uwe Hermann372eeb52007-12-04 21:49:06 +00001074 /* Now let's try to find the chipset we have... */
Uwe Hermann05fab752009-05-16 23:42:17 +00001075 for (i = 0; chipset_enables[i].vendor_name != NULL; i++) {
1076 dev = pci_dev_find(chipset_enables[i].vendor_id,
1077 chipset_enables[i].device_id);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001078 if (dev)
1079 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001080 }
1081
Uwe Hermanna7e05482007-05-09 10:17:44 +00001082 if (dev) {
Uwe Hermannb0039912009-05-07 13:24:49 +00001083 printf("Found chipset \"%s %s\", enabling flash write... ",
Uwe Hermann05fab752009-05-16 23:42:17 +00001084 chipset_enables[i].vendor_name,
1085 chipset_enables[i].device_name);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001086
Uwe Hermann05fab752009-05-16 23:42:17 +00001087 ret = chipset_enables[i].doit(dev,
1088 chipset_enables[i].device_name);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001089 if (ret)
Uwe Hermanna502dce2007-10-17 23:55:15 +00001090 printf("FAILED!\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +00001091 else
Uwe Hermannac309342007-10-10 17:42:20 +00001092 printf("OK.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +00001093 }
Uwe Hermann1432a602009-06-28 23:26:37 +00001094 printf("This chipset supports the following protocols: %s.\n",
Uwe Hermann9899cad2009-06-28 21:47:57 +00001095 flashbuses_to_text(buses_supported));
Uwe Hermanna7e05482007-05-09 10:17:44 +00001096
1097 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001098}