blob: 1d0c006444fa008f69e4383665581d6dc14ee290 [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 <stdio.h>
29#include <pci/pci.h>
30#include <stdlib.h>
Lane Brooksd54958a2007-11-13 16:45:22 +000031#include <sys/types.h>
32#include <sys/stat.h>
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +000033#include <sys/mman.h>
Lane Brooksd54958a2007-11-13 16:45:22 +000034#include <fcntl.h>
35#include <unistd.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000036#include "flash.h"
Stefan Reinauer86de2832006-03-31 11:26:55 +000037
Uwe Hermann372eeb52007-12-04 21:49:06 +000038static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
Luc Verhaegen6b141752007-05-20 16:16:13 +000039{
40 uint8_t tmp;
41
Uwe Hermann372eeb52007-12-04 21:49:06 +000042 /*
43 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
44 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
45 */
Luc Verhaegen6b141752007-05-20 16:16:13 +000046 tmp = pci_read_byte(dev, 0x47);
47 tmp |= 0x46;
48 pci_write_byte(dev, 0x47, tmp);
49
50 return 0;
51}
52
Uwe Hermann372eeb52007-12-04 21:49:06 +000053static int enable_flash_sis630(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +000054{
Uwe Hermann372eeb52007-12-04 21:49:06 +000055 uint8_t b;
Ollie Lhocbbf1252004-03-17 22:22:08 +000056
Uwe Hermann372eeb52007-12-04 21:49:06 +000057 /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000058 b = pci_read_byte(dev, 0x40);
59 pci_write_byte(dev, 0x40, b | 0xb);
Uwe Hermann372eeb52007-12-04 21:49:06 +000060
61 /* Flash write enable on SiS 540/630. */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000062 b = pci_read_byte(dev, 0x45);
63 pci_write_byte(dev, 0x45, b | 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +000064
Uwe Hermann372eeb52007-12-04 21:49:06 +000065 /* The same thing on SiS 950 Super I/O side... */
66
67 /* First probe for Super I/O on config port 0x2e. */
Andriy Gapon65c1b862008-05-22 13:22:45 +000068 OUTB(0x87, 0x2e);
69 OUTB(0x01, 0x2e);
70 OUTB(0x55, 0x2e);
71 OUTB(0x55, 0x2e);
Ollie Lhocbbf1252004-03-17 22:22:08 +000072
Andriy Gapon65c1b862008-05-22 13:22:45 +000073 if (INB(0x2f) != 0x87) {
Uwe Hermann372eeb52007-12-04 21:49:06 +000074 /* If that failed, try config port 0x4e. */
Andriy Gapon65c1b862008-05-22 13:22:45 +000075 OUTB(0x87, 0x4e);
76 OUTB(0x01, 0x4e);
77 OUTB(0x55, 0x4e);
78 OUTB(0xaa, 0x4e);
79 if (INB(0x4f) != 0x87) {
Ollie Lhocbbf1252004-03-17 22:22:08 +000080 printf("Can not access SiS 950\n");
81 return -1;
82 }
Andriy Gapon65c1b862008-05-22 13:22:45 +000083 OUTB(0x24, 0x4e);
84 b = INB(0x4f) | 0xfc;
85 OUTB(0x24, 0x4e);
86 OUTB(b, 0x4f);
87 OUTB(0x02, 0x4e);
88 OUTB(0x02, 0x4f);
Ollie Lhocbbf1252004-03-17 22:22:08 +000089 }
90
Andriy Gapon65c1b862008-05-22 13:22:45 +000091 OUTB(0x24, 0x2e);
92 printf("2f is %#x\n", INB(0x2f));
93 b = INB(0x2f) | 0xfc;
94 OUTB(0x24, 0x2e);
95 OUTB(b, 0x2f);
Ollie Lhocbbf1252004-03-17 22:22:08 +000096
Andriy Gapon65c1b862008-05-22 13:22:45 +000097 OUTB(0x02, 0x2e);
98 OUTB(0x02, 0x2f);
Ollie Lhocbbf1252004-03-17 22:22:08 +000099
100 return 0;
101}
102
Uwe Hermann987942d2006-11-07 11:16:21 +0000103/* Datasheet:
104 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
105 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
106 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
107 * - Order Number: 290562-001
108 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000109static int enable_flash_piix4(struct pci_dev *dev, const char *name)
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000110{
111 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000112 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000113
114 old = pci_read_word(dev, xbcs);
115
116 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000117 * FFF00000-FFF7FFFF are forwarded to ISA).
118 * Set bit 7: Extended BIOS Enable (PCI master accesses to
119 * FFF80000-FFFDFFFF are forwarded to ISA).
120 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
121 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
122 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
123 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
124 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
125 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
126 */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000127 new = old | 0x2c4;
128
129 if (new == old)
130 return 0;
131
132 pci_write_word(dev, xbcs, new);
133
134 if (pci_read_word(dev, xbcs) != new) {
135 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
136 return -1;
137 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000138
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000139 return 0;
140}
141
Uwe Hermann372eeb52007-12-04 21:49:06 +0000142/*
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000143 * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet"
144 * http://download.intel.com/design/chipsets/datashts/30701303.pdf
Uwe Hermann372eeb52007-12-04 21:49:06 +0000145 */
146static int enable_flash_ich(struct pci_dev *dev, const char *name,
147 int bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000148{
Ollie Lho184a4042005-11-26 21:55:36 +0000149 uint8_t old, new;
Stefan Reinauereb366472006-09-06 15:48:48 +0000150
Uwe Hermann372eeb52007-12-04 21:49:06 +0000151 /*
152 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
Uwe Hermanna7e05482007-05-09 10:17:44 +0000153 * just treating it as 8 bit wide seems to work fine in practice.
Stefan Reinauereb366472006-09-06 15:48:48 +0000154 */
Stefan Reinauer86de2832006-03-31 11:26:55 +0000155 old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000156
Uwe Hermann793bdcd2008-05-22 22:47:04 +0000157 printf_debug("\nBIOS Lock Enable: %sabled, ",
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000158 (old & (1 << 1)) ? "en" : "dis");
159 printf_debug("BIOS Write Enable: %sabled, ",
160 (old & (1 << 0)) ? "en" : "dis");
161 printf_debug("BIOS_CNTL is 0x%x\n", old);
162
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000163 new = old | 1;
164
165 if (new == old)
166 return 0;
167
Stefan Reinauer86de2832006-03-31 11:26:55 +0000168 pci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000169
Stefan Reinauer86de2832006-03-31 11:26:55 +0000170 if (pci_read_byte(dev, bios_cntl) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000171 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 +0000172 return -1;
173 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000174
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000175 return 0;
176}
177
Uwe Hermann372eeb52007-12-04 21:49:06 +0000178static int enable_flash_ich_4e(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000179{
Stefan Reinauereb366472006-09-06 15:48:48 +0000180 return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000181}
182
Uwe Hermann372eeb52007-12-04 21:49:06 +0000183static int enable_flash_ich_dc(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000184{
Stefan Reinauereb366472006-09-06 15:48:48 +0000185 return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000186}
187
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000188void *ich_spibar = NULL;
189
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000190static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name) {
191 uint32_t mmio_base;
192
193 mmio_base = (pci_read_long(dev, 0xbc)) << 8;
194 printf_debug("MMIO base at = 0x%x\n", mmio_base);
195 ich_spibar = mmap(NULL, 0x70, PROT_READ | PROT_WRITE, MAP_SHARED,
196 fd_mem, mmio_base);
197
198 if (ich_spibar == MAP_FAILED) {
199 perror("Can't mmap memory using " MEM_DEV);
200 exit(1);
201 }
202
203 printf_debug("0x6c: 0x%04x (CLOCK/DEBUG)\n", *(uint16_t *)(ich_spibar + 0x6c));
204 viaspi_detected = 1;
205 return 0;
206}
207
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000208static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name, unsigned long spibar)
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000209{
Stefan Reinauera9424d52008-06-27 16:28:34 +0000210 uint8_t old, new, bbs, buc;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000211 uint32_t tmp, gcs;
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000212 void *rcrb;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000213
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000214 /* Read the Root Complex Base Address Register (RCBA) */
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000215 tmp = pci_read_long(dev, 0xf0);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000216
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000217 /* Calculate the Root Complex Register Block address */
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000218 tmp &= 0xffffc000;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000219 printf_debug("\nRoot Complex Register Block address = 0x%x\n", tmp);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000220 rcrb = mmap(0, 0x4000, PROT_READ | PROT_WRITE, MAP_SHARED, fd_mem, (off_t)tmp);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000221 if (rcrb == MAP_FAILED) {
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000222 perror("Can't mmap memory using " MEM_DEV);
223 exit(1);
224 }
225 printf_debug("GCS address = 0x%x\n", tmp + 0x3410);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000226 gcs = *(volatile uint32_t *)(rcrb + 0x3410);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000227 printf_debug("GCS = 0x%x: ", gcs);
228 printf_debug("BIOS Interface Lock-Down: %sabled, ",
229 (gcs & 0x1) ? "en" : "dis");
230 bbs = (gcs >> 10) & 0x3;
231 printf_debug("BOOT BIOS Straps: 0x%x (%s)\n", bbs,
232 (bbs == 0x3) ? "LPC" : ((bbs == 0x2) ? "PCI" : "SPI"));
Peter Stuge7e2c0792008-06-29 01:30:41 +0000233 if (bbs >= 2)
234 ich7_detected = 0;
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000235
Stefan Reinauera9424d52008-06-27 16:28:34 +0000236 buc = *(volatile uint8_t *)(rcrb + 0x3414);
237 printf_debug("Top Swap : %s\n", (buc & 1)?"enabled (A16 inverted)":"not enabled");
238
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000239 /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000240 printf_debug("SPIBAR = 0x%x + 0x%04x\n", tmp, (uint16_t)spibar);
241
242 // Assign Virtual Address
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000243 ich_spibar = rcrb + spibar;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000244
Stefan Reinauera9424d52008-06-27 16:28:34 +0000245 if (ich7_detected) {
246 int i;
247 printf_debug("0x00: 0x%04x (SPIS)\n", *(uint16_t *)(ich_spibar + 0));
248 printf_debug("0x02: 0x%04x (SPIC)\n", *(uint16_t *)(ich_spibar + 2));
249 printf_debug("0x04: 0x%08x (SPIA)\n", *(uint32_t *)(ich_spibar + 4));
250 for (i=0; i < 8; i++) {
251 int offs;
252 offs = 8 + (i * 8);
253 printf_debug("0x%02x: 0x%08x (SPID%d)\n", offs, *(uint32_t *)(ich_spibar + offs), i);
254 printf_debug("0x%02x: 0x%08x (SPID%d+4)\n", offs+4, *(uint32_t *)(ich_spibar + offs +4), i);
255 }
256 printf_debug("0x50: 0x%08x (BBAR)\n", *(uint32_t *)(ich_spibar + 0x50));
257 printf_debug("0x54: 0x%04x (PREOP)\n", *(uint16_t *)(ich_spibar + 0x54));
258 printf_debug("0x56: 0x%04x (OPTYPE)\n", *(uint16_t *)(ich_spibar + 0x56));
259 printf_debug("0x58: 0x%08x (OPMENU)\n", *(uint32_t *)(ich_spibar + 0x58));
260 printf_debug("0x5c: 0x%08x (OPMENU+4)\n", *(uint32_t *)(ich_spibar + 0x5c));
261 for (i=0; i < 4; i++) {
262 int offs;
263 offs = 0x60 + (i * 4);
264 printf_debug("0x%02x: 0x%08x (PBR%d)\n", offs, *(uint32_t *)(ich_spibar + offs), i);
265 }
266 printf_debug("\n");
267 if ( (*(uint16_t *)ich_spibar) & (1 << 15)) {
268 printf("WARNING: SPI Configuration Lockdown activated.\n");
269 }
270 }
271
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000272 old = pci_read_byte(dev, 0xdc);
273 printf_debug("SPI Read Configuration: ");
274 new = (old >> 2) & 0x3;
275 switch (new) {
276 case 0:
277 case 1:
278 case 2:
279 printf_debug("prefetching %sabled, caching %sabled, ",
280 (new & 0x2) ? "en" : "dis", (new & 0x1) ? "dis" : "en");
281 break;
282 default:
283 printf_debug("invalid prefetching/caching settings, ");
284 break;
285 }
286 return enable_flash_ich_dc(dev, name);
287}
288
Stefan Reinauera9424d52008-06-27 16:28:34 +0000289/* Flag for ICH7 SPI register block */
290int ich7_detected = 0;
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000291int viaspi_detected = 0;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000292
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000293static int enable_flash_ich7(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000294{
Stefan Reinauera9424d52008-06-27 16:28:34 +0000295 ich7_detected = 1;
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000296 return enable_flash_ich_dc_spi(dev, name, 0x3020);
297}
298
Stefan Reinauera9424d52008-06-27 16:28:34 +0000299/* Flag for ICH8/ICH9 SPI register block */
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000300int ich9_detected = 0;
301
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000302static int enable_flash_ich8(struct pci_dev *dev, const char *name)
303{
304 ich9_detected = 1;
305 return enable_flash_ich_dc_spi(dev, name, 0x3020);
306}
307
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000308static int enable_flash_ich9(struct pci_dev *dev, const char *name)
309{
310 ich9_detected = 1;
311 return enable_flash_ich_dc_spi(dev, name, 0x3800);
312}
313
Uwe Hermann372eeb52007-12-04 21:49:06 +0000314static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000315{
Ollie Lho184a4042005-11-26 21:55:36 +0000316 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000317
Bari Ari9477c4e2008-04-29 13:46:38 +0000318 /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF*/
319 pci_write_byte(dev, 0x41, 0x7f);
320
Uwe Hermannffec5f32007-08-23 16:08:21 +0000321 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000322 val = pci_read_byte(dev, 0x40);
323 val |= 0x10;
324 pci_write_byte(dev, 0x40, val);
325
326 if (pci_read_byte(dev, 0x40) != val) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000327 printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000328 name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000329 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000330 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000331
Uwe Hermanna7e05482007-05-09 10:17:44 +0000332 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000333}
334
Uwe Hermann372eeb52007-12-04 21:49:06 +0000335static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000336{
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000337 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000338
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000339 #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
340 #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000341
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000342 #define LOWER_ROM_ADDRESS_RANGE (1 << 0)
343 #define ROM_WRITE_ENABLE (1 << 1)
344 #define UPPER_ROM_ADDRESS_RANGE (1 << 2)
345 #define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000346
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000347 /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and
348 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB.
349 * Make the configured ROM areas writable.
350 */
351 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
352 reg8 |= LOWER_ROM_ADDRESS_RANGE;
353 reg8 |= UPPER_ROM_ADDRESS_RANGE;
354 reg8 |= ROM_WRITE_ENABLE;
355 pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000356
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000357 /* Set positive decode on ROM. */
358 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
359 reg8 |= BIOS_ROM_POSITIVE_DECODE;
360 pci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000361
Ollie Lhocbbf1252004-03-17 22:22:08 +0000362 return 0;
363}
364
Mart Raudseppe1344da2008-02-08 10:10:57 +0000365/**
366 * Geode systems write protect the BIOS via RCONFs (cache settings similar
367 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. Reading and
368 * writing to MSRs, however requires instructions rdmsr/wrmsr, which are
369 * ring0 privileged instructions so only the kernel can do the read/write.
370 * This function, therefore, requires that the msr kernel module be loaded
371 * to access these instructions from user space using device /dev/cpu/0/msr.
372 *
373 * This hard-coded location could have potential problems on SMP machines
374 * since it assumes cpu0, but it is safe on the Geode which is not SMP.
375 *
376 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
377 * To enable write to NOR Boot flash for the benefit of systems that have such
378 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
379 *
380 * This is probably not portable beyond Linux.
381 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000382static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
Lane Brooksd54958a2007-11-13 16:45:22 +0000383{
Mart Raudseppe1344da2008-02-08 10:10:57 +0000384 #define MSR_RCONF_DEFAULT 0x1808
385 #define MSR_NORF_CTL 0x51400018
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000386
Lane Brooksd54958a2007-11-13 16:45:22 +0000387 int fd_msr;
388 unsigned char buf[8];
Lane Brooksd54958a2007-11-13 16:45:22 +0000389
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000390 fd_msr = open("/dev/cpu/0/msr", O_RDWR);
Lane Brooksd54958a2007-11-13 16:45:22 +0000391 if (!fd_msr) {
392 perror("open msr");
393 return -1;
394 }
Mart Raudseppe1344da2008-02-08 10:10:57 +0000395
396 if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
397 perror("lseek64");
Mart Raudsepp3697ac72008-02-11 14:32:45 +0000398 printf("Cannot operate on MSR. Did you run 'modprobe msr'?\n");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000399 close(fd_msr);
400 return -1;
401 }
402
403 if (read(fd_msr, buf, 8) != 8) {
Mart Raudsepp3697ac72008-02-11 14:32:45 +0000404 perror("read msr");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000405 close(fd_msr);
406 return -1;
407 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000408
Lane Brooksd54958a2007-11-13 16:45:22 +0000409 if (buf[7] != 0x22) {
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000410 buf[7] &= 0xfb;
Mart Raudseppe1344da2008-02-08 10:10:57 +0000411 if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
412 perror("lseek64");
413 close(fd_msr);
414 return -1;
415 }
416
Lane Brooksd54958a2007-11-13 16:45:22 +0000417 if (write(fd_msr, buf, 8) < 0) {
418 perror("msr write");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000419 close(fd_msr);
Lane Brooksd54958a2007-11-13 16:45:22 +0000420 return -1;
421 }
Lane Brooksd54958a2007-11-13 16:45:22 +0000422 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000423
Mart Raudseppe1344da2008-02-08 10:10:57 +0000424 if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
425 perror("lseek64");
426 close(fd_msr);
427 return -1;
428 }
429
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000430 if (read(fd_msr, buf, 8) != 8) {
431 perror("read msr");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000432 close(fd_msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000433 return -1;
434 }
435
436 /* Raise WE_CS3 bit. */
437 buf[0] |= 0x08;
438
Mart Raudseppe1344da2008-02-08 10:10:57 +0000439 if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
440 perror("lseek64");
441 close(fd_msr);
442 return -1;
443 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000444 if (write(fd_msr, buf, 8) < 0) {
445 perror("msr write");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000446 close(fd_msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000447 return -1;
448 }
449
450 close(fd_msr);
451
Mart Raudseppe1344da2008-02-08 10:10:57 +0000452 #undef MSR_RCONF_DEFAULT
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000453 #undef MSR_NORF_CTL
Lane Brooksd54958a2007-11-13 16:45:22 +0000454 return 0;
455}
456
Uwe Hermann372eeb52007-12-04 21:49:06 +0000457static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000458{
Ollie Lho184a4042005-11-26 21:55:36 +0000459 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000460
Ollie Lhocbbf1252004-03-17 22:22:08 +0000461 pci_write_byte(dev, 0x52, 0xee);
462
463 new = pci_read_byte(dev, 0x52);
464
465 if (new != 0xee) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000466 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 +0000467 return -1;
468 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000469
Ollie Lhocbbf1252004-03-17 22:22:08 +0000470 return 0;
471}
472
Uwe Hermann372eeb52007-12-04 21:49:06 +0000473static int enable_flash_sis5595(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000474{
Ollie Lho184a4042005-11-26 21:55:36 +0000475 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000476
Ollie Lhocbbf1252004-03-17 22:22:08 +0000477 new = pci_read_byte(dev, 0x45);
478
Uwe Hermann372eeb52007-12-04 21:49:06 +0000479 new &= (~0x20); /* Clear bit 5. */
480 new |= 0x4; /* Set bit 2. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000481
482 pci_write_byte(dev, 0x45, new);
483
484 newer = pci_read_byte(dev, 0x45);
485 if (newer != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000486 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 +0000487 printf("Stuck at 0x%x\n", newer);
488 return -1;
489 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000490
Ollie Lhocbbf1252004-03-17 22:22:08 +0000491 return 0;
492}
493
Uwe Hermann372eeb52007-12-04 21:49:06 +0000494static int enable_flash_amd8111(struct pci_dev *dev, const char *name)
Ollie Lho761bf1b2004-03-20 16:46:10 +0000495{
Ollie Lho184a4042005-11-26 21:55:36 +0000496 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000497
Uwe Hermann372eeb52007-12-04 21:49:06 +0000498 /* Enable decoding at 0xffb00000 to 0xffffffff. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000499 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000500 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000501 if (new != old) {
502 pci_write_byte(dev, 0x43, new);
503 if (pci_read_byte(dev, 0x43) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000504 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 +0000505 }
506 }
507
Ollie Lho761bf1b2004-03-20 16:46:10 +0000508 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000509 new = old | 0x01;
510 if (new == old)
511 return 0;
512 pci_write_byte(dev, 0x40, new);
513
514 if (pci_read_byte(dev, 0x40) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000515 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 +0000516 return -1;
517 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000518
Ollie Lhocbbf1252004-03-17 22:22:08 +0000519 return 0;
520}
521
Uwe Hermann372eeb52007-12-04 21:49:06 +0000522static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu952dfce2005-07-06 17:13:46 +0000523{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000524 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000525
Uwe Hermanna7e05482007-05-09 10:17:44 +0000526 old = pci_read_byte(dev, 0x88);
527 new = old | 0xc0;
528 if (new != old) {
529 pci_write_byte(dev, 0x88, new);
530 if (pci_read_byte(dev, 0x88) != new) {
531 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
532 }
533 }
Yinghai Lu952dfce2005-07-06 17:13:46 +0000534
Uwe Hermanna7e05482007-05-09 10:17:44 +0000535 old = pci_read_byte(dev, 0x6d);
536 new = old | 0x01;
537 if (new == old)
538 return 0;
539 pci_write_byte(dev, 0x6d, new);
540
541 if (pci_read_byte(dev, 0x6d) != new) {
542 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
543 return -1;
544 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000545
Uwe Hermanna7e05482007-05-09 10:17:44 +0000546 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000547}
548
Uwe Hermann372eeb52007-12-04 21:49:06 +0000549/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
550static int enable_flash_sb400(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000551{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000552 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000553 struct pci_filter f;
554 struct pci_dev *smbusdev;
555
Uwe Hermann372eeb52007-12-04 21:49:06 +0000556 /* Look for the SMBus device. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000557 pci_filter_init((struct pci_access *)0, &f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000558 f.vendor = 0x1002;
559 f.device = 0x4372;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000560
Stefan Reinauer86de2832006-03-31 11:26:55 +0000561 for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
562 if (pci_filter_match(&f, smbusdev)) {
563 break;
564 }
565 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000566
Uwe Hermanna7e05482007-05-09 10:17:44 +0000567 if (!smbusdev) {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000568 fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n");
Stefan Reinauer86de2832006-03-31 11:26:55 +0000569 exit(1);
570 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000571
Uwe Hermann372eeb52007-12-04 21:49:06 +0000572 /* Enable some SMBus stuff. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000573 tmp = pci_read_byte(smbusdev, 0x79);
574 tmp |= 0x01;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000575 pci_write_byte(smbusdev, 0x79, tmp);
576
Uwe Hermann372eeb52007-12-04 21:49:06 +0000577 /* Change southbridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000578 tmp = pci_read_byte(dev, 0x48);
579 tmp |= 0x21;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000580 pci_write_byte(dev, 0x48, tmp);
581
Uwe Hermann372eeb52007-12-04 21:49:06 +0000582 /* Now become a bit silly. */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000583 tmp = INB(0xc6f);
584 OUTB(tmp, 0xeb);
585 OUTB(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000586 tmp |= 0x40;
Andriy Gapon65c1b862008-05-22 13:22:45 +0000587 OUTB(tmp, 0xc6f);
588 OUTB(tmp, 0xeb);
589 OUTB(tmp, 0xeb);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000590
591 return 0;
592}
593
Uwe Hermann372eeb52007-12-04 21:49:06 +0000594static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
Yinghai Luca782972007-01-22 20:21:17 +0000595{
Uwe Hermann372eeb52007-12-04 21:49:06 +0000596 uint8_t old, new, byte;
597 uint16_t word;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000598
Uwe Hermann372eeb52007-12-04 21:49:06 +0000599 /* Set the 0-16 MB enable bits. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000600 byte = pci_read_byte(dev, 0x88);
601 byte |= 0xff; /* 256K */
602 pci_write_byte(dev, 0x88, byte);
603 byte = pci_read_byte(dev, 0x8c);
604 byte |= 0xff; /* 1M */
605 pci_write_byte(dev, 0x8c, byte);
606 word = pci_read_word(dev, 0x90);
Carl-Daniel Hailfingerdca0ab12007-10-17 22:30:07 +0000607 word |= 0x7fff; /* 16M */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000608 pci_write_word(dev, 0x90, word);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000609
Uwe Hermanna7e05482007-05-09 10:17:44 +0000610 old = pci_read_byte(dev, 0x6d);
611 new = old | 0x01;
612 if (new == old)
613 return 0;
614 pci_write_byte(dev, 0x6d, new);
Yinghai Luca782972007-01-22 20:21:17 +0000615
Uwe Hermanna7e05482007-05-09 10:17:44 +0000616 if (pci_read_byte(dev, 0x6d) != new) {
617 printf
618 ("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
619 0x6d, new, name);
620 return -1;
621 }
Yinghai Luca782972007-01-22 20:21:17 +0000622
623 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000624}
625
Uwe Hermann372eeb52007-12-04 21:49:06 +0000626static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000627{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000628 uint8_t byte;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000629
Uwe Hermanne823ee02007-06-05 15:02:18 +0000630 /* Set the 4MB enable bit. */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000631 byte = pci_read_byte(dev, 0x41);
632 byte |= 0x0e;
633 pci_write_byte(dev, 0x41, byte);
634
635 byte = pci_read_byte(dev, 0x43);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000636 byte |= (1 << 4);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000637 pci_write_byte(dev, 0x43, byte);
638
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000639 return 0;
640}
641
Ollie Lhocbbf1252004-03-17 22:22:08 +0000642typedef struct penable {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000643 uint16_t vendor, device;
644 const char *name;
645 int (*doit) (struct pci_dev *dev, const char *name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000646} FLASH_ENABLE;
647
Uwe Hermann372eeb52007-12-04 21:49:06 +0000648static const FLASH_ENABLE enables[] = {
Uwe Hermanneac10162008-03-13 18:52:51 +0000649 {0x1039, 0x0630, "SiS630", enable_flash_sis630},
650 {0x8086, 0x7110, "Intel PIIX4/4E/4M", enable_flash_piix4},
651 {0x8086, 0x7198, "Intel 440MX", enable_flash_piix4},
652 {0x8086, 0x2410, "Intel ICH", enable_flash_ich_4e},
653 {0x8086, 0x2420, "Intel ICH0", enable_flash_ich_4e},
654 {0x8086, 0x2440, "Intel ICH2", enable_flash_ich_4e},
655 {0x8086, 0x244c, "Intel ICH2-M", enable_flash_ich_4e},
656 {0x8086, 0x2480, "Intel ICH3-S", enable_flash_ich_4e},
657 {0x8086, 0x248c, "Intel ICH3-M", enable_flash_ich_4e},
658 {0x8086, 0x24c0, "Intel ICH4/ICH4-L", enable_flash_ich_4e},
659 {0x8086, 0x24cc, "Intel ICH4-M", enable_flash_ich_4e},
660 {0x8086, 0x24d0, "Intel ICH5/ICH5R", enable_flash_ich_4e},
Claus Gindharta00e2a02008-05-14 12:22:38 +0000661 {0x8086, 0x25a1, "Intel 6300ESB", enable_flash_ich_4e},
Uwe Hermanneac10162008-03-13 18:52:51 +0000662 {0x8086, 0x2640, "Intel ICH6/ICH6R", enable_flash_ich_dc},
663 {0x8086, 0x2641, "Intel ICH6-M", enable_flash_ich_dc},
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000664 {0x8086, 0x27b0, "Intel ICH7DH", enable_flash_ich7},
665 {0x8086, 0x27b8, "Intel ICH7/ICH7R", enable_flash_ich7},
666 {0x8086, 0x27b9, "Intel ICH7M", enable_flash_ich7},
667 {0x8086, 0x27bd, "Intel ICH7MDH", enable_flash_ich7},
668 {0x8086, 0x2810, "Intel ICH8/ICH8R", enable_flash_ich8},
669 {0x8086, 0x2811, "Intel ICH8M-E", enable_flash_ich8},
670 {0x8086, 0x2812, "Intel ICH8DH", enable_flash_ich8},
671 {0x8086, 0x2814, "Intel ICH8DO", enable_flash_ich8},
672 {0x8086, 0x2815, "Intel ICH8M", enable_flash_ich8},
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000673 {0x8086, 0x2912, "Intel ICH9DH", enable_flash_ich9},
674 {0x8086, 0x2914, "Intel ICH9DO", enable_flash_ich9},
675 {0x8086, 0x2916, "Intel ICH9R", enable_flash_ich9},
676 {0x8086, 0x2917, "Intel ICH9M-E", enable_flash_ich9},
677 {0x8086, 0x2918, "Intel ICH9", enable_flash_ich9},
678 {0x8086, 0x2919, "Intel ICH9M", enable_flash_ich9},
Uwe Hermanneac10162008-03-13 18:52:51 +0000679 {0x1106, 0x8231, "VIA VT8231", enable_flash_vt823x},
680 {0x1106, 0x3177, "VIA VT8235", enable_flash_vt823x},
681 {0x1106, 0x3227, "VIA VT8237", enable_flash_vt823x},
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000682 {0x1106, 0x3372, "VIA VT8237S", enable_flash_vt8237s_spi},
Uwe Hermanneac10162008-03-13 18:52:51 +0000683 {0x1106, 0x8324, "VIA CX700", enable_flash_vt823x},
684 {0x1106, 0x0686, "VIA VT82C686", enable_flash_amd8111},
685 {0x1078, 0x0100, "AMD CS5530(A)", enable_flash_cs5530},
686 {0x100b, 0x0510, "AMD SC1100", enable_flash_sc1100},
687 {0x1039, 0x0008, "SiS5595", enable_flash_sis5595},
688 {0x1022, 0x2080, "AMD CS5536", enable_flash_cs5536},
689 {0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
690 {0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533},
691 {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, /* LPC */
692 {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, /* Pro */
693 /* Slave, should not be here, to fix known bug for A01. */
694 {0x10de, 0x00d3, "NVIDIA CK804", enable_flash_ck804},
695 {0x10de, 0x0260, "NVIDIA MCP51", enable_flash_ck804},
696 {0x10de, 0x0261, "NVIDIA MCP51", enable_flash_ck804},
697 {0x10de, 0x0262, "NVIDIA MCP51", enable_flash_ck804},
698 {0x10de, 0x0263, "NVIDIA MCP51", enable_flash_ck804},
699 {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, /* M57SLI*/
700 {0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
701 {0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
702 {0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
703 {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
704 {0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
705 {0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
706 {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, /* Pro */
707 {0x1002, 0x4377, "ATI SB400", enable_flash_sb400},
708 {0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000709};
Ollie Lho761bf1b2004-03-20 16:46:10 +0000710
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000711void print_supported_chipsets(void)
712{
713 int i;
714
715 printf("\nSupported chipsets:\n\n");
716
717 for (i = 0; i < ARRAY_SIZE(enables); i++)
718 printf("%s (%04x:%04x)\n", enables[i].name,
719 enables[i].vendor, enables[i].device);
720}
721
Uwe Hermanna7e05482007-05-09 10:17:44 +0000722int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000723{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000724 struct pci_dev *dev = 0;
Uwe Hermann372eeb52007-12-04 21:49:06 +0000725 int ret = -2; /* Nothing! */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000726 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000727
Uwe Hermann372eeb52007-12-04 21:49:06 +0000728 /* Now let's try to find the chipset we have... */
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000729 for (i = 0; i < ARRAY_SIZE(enables); i++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000730 dev = pci_dev_find(enables[i].vendor, enables[i].device);
731 if (dev)
732 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000733 }
734
Uwe Hermanna7e05482007-05-09 10:17:44 +0000735 if (dev) {
Uwe Hermanna502dce2007-10-17 23:55:15 +0000736 printf("Found chipset \"%s\", enabling flash write... ",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000737 enables[i].name);
738
739 ret = enables[i].doit(dev, enables[i].name);
740 if (ret)
Uwe Hermanna502dce2007-10-17 23:55:15 +0000741 printf("FAILED!\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000742 else
Uwe Hermannac309342007-10-10 17:42:20 +0000743 printf("OK.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000744 }
745
746 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000747}