blob: 86c731b0dfe789797bafdfb8254dd57c37608865 [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
Stefan Reinauer2cb94e12008-06-30 23:45:22 +000038/**
39 * flashrom defaults to LPC flash devices. If a known SPI controller is found
40 * and the SPI strappings are set, this will be overwritten by the probing code.
41 *
42 * Eventually, this will become an array when multiple flash support works.
43 */
44
45flashbus_t flashbus = BUS_TYPE_LPC;
46void *spibar = NULL;
47
Uwe Hermann372eeb52007-12-04 21:49:06 +000048static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
Luc Verhaegen6b141752007-05-20 16:16:13 +000049{
50 uint8_t tmp;
51
Uwe Hermann372eeb52007-12-04 21:49:06 +000052 /*
53 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
54 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
55 */
Luc Verhaegen6b141752007-05-20 16:16:13 +000056 tmp = pci_read_byte(dev, 0x47);
57 tmp |= 0x46;
58 pci_write_byte(dev, 0x47, tmp);
59
60 return 0;
61}
62
Uwe Hermann372eeb52007-12-04 21:49:06 +000063static int enable_flash_sis630(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +000064{
Uwe Hermann372eeb52007-12-04 21:49:06 +000065 uint8_t b;
Ollie Lhocbbf1252004-03-17 22:22:08 +000066
Uwe Hermann372eeb52007-12-04 21:49:06 +000067 /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000068 b = pci_read_byte(dev, 0x40);
69 pci_write_byte(dev, 0x40, b | 0xb);
Uwe Hermann372eeb52007-12-04 21:49:06 +000070
71 /* Flash write enable on SiS 540/630. */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000072 b = pci_read_byte(dev, 0x45);
73 pci_write_byte(dev, 0x45, b | 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +000074
Uwe Hermann372eeb52007-12-04 21:49:06 +000075 /* The same thing on SiS 950 Super I/O side... */
76
77 /* First probe for Super I/O on config port 0x2e. */
Andriy Gapon65c1b862008-05-22 13:22:45 +000078 OUTB(0x87, 0x2e);
79 OUTB(0x01, 0x2e);
80 OUTB(0x55, 0x2e);
81 OUTB(0x55, 0x2e);
Ollie Lhocbbf1252004-03-17 22:22:08 +000082
Andriy Gapon65c1b862008-05-22 13:22:45 +000083 if (INB(0x2f) != 0x87) {
Uwe Hermann372eeb52007-12-04 21:49:06 +000084 /* If that failed, try config port 0x4e. */
Andriy Gapon65c1b862008-05-22 13:22:45 +000085 OUTB(0x87, 0x4e);
86 OUTB(0x01, 0x4e);
87 OUTB(0x55, 0x4e);
88 OUTB(0xaa, 0x4e);
89 if (INB(0x4f) != 0x87) {
Ollie Lhocbbf1252004-03-17 22:22:08 +000090 printf("Can not access SiS 950\n");
91 return -1;
92 }
Andriy Gapon65c1b862008-05-22 13:22:45 +000093 OUTB(0x24, 0x4e);
94 b = INB(0x4f) | 0xfc;
95 OUTB(0x24, 0x4e);
96 OUTB(b, 0x4f);
97 OUTB(0x02, 0x4e);
98 OUTB(0x02, 0x4f);
Ollie Lhocbbf1252004-03-17 22:22:08 +000099 }
100
Andriy Gapon65c1b862008-05-22 13:22:45 +0000101 OUTB(0x24, 0x2e);
102 printf("2f is %#x\n", INB(0x2f));
103 b = INB(0x2f) | 0xfc;
104 OUTB(0x24, 0x2e);
105 OUTB(b, 0x2f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000106
Andriy Gapon65c1b862008-05-22 13:22:45 +0000107 OUTB(0x02, 0x2e);
108 OUTB(0x02, 0x2f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000109
110 return 0;
111}
112
Uwe Hermann987942d2006-11-07 11:16:21 +0000113/* Datasheet:
114 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
115 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
116 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
117 * - Order Number: 290562-001
118 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000119static int enable_flash_piix4(struct pci_dev *dev, const char *name)
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000120{
121 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000122 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000123
124 old = pci_read_word(dev, xbcs);
125
126 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000127 * FFF00000-FFF7FFFF are forwarded to ISA).
128 * Set bit 7: Extended BIOS Enable (PCI master accesses to
129 * FFF80000-FFFDFFFF are forwarded to ISA).
130 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
131 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
132 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
133 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
134 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
135 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
136 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000137 new = old | 0x02c4;
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000138
139 if (new == old)
140 return 0;
141
142 pci_write_word(dev, xbcs, new);
143
144 if (pci_read_word(dev, xbcs) != new) {
145 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
146 return -1;
147 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000148
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000149 return 0;
150}
151
Uwe Hermann372eeb52007-12-04 21:49:06 +0000152/*
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000153 * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet"
154 * http://download.intel.com/design/chipsets/datashts/30701303.pdf
Uwe Hermann372eeb52007-12-04 21:49:06 +0000155 */
156static int enable_flash_ich(struct pci_dev *dev, const char *name,
157 int bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000158{
Ollie Lho184a4042005-11-26 21:55:36 +0000159 uint8_t old, new;
Stefan Reinauereb366472006-09-06 15:48:48 +0000160
Uwe Hermann372eeb52007-12-04 21:49:06 +0000161 /*
162 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
Uwe Hermanna7e05482007-05-09 10:17:44 +0000163 * just treating it as 8 bit wide seems to work fine in practice.
Stefan Reinauereb366472006-09-06 15:48:48 +0000164 */
Stefan Reinauer86de2832006-03-31 11:26:55 +0000165 old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000166
Uwe Hermann793bdcd2008-05-22 22:47:04 +0000167 printf_debug("\nBIOS Lock Enable: %sabled, ",
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000168 (old & (1 << 1)) ? "en" : "dis");
169 printf_debug("BIOS Write Enable: %sabled, ",
170 (old & (1 << 0)) ? "en" : "dis");
171 printf_debug("BIOS_CNTL is 0x%x\n", old);
172
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000173 new = old | 1;
174
175 if (new == old)
176 return 0;
177
Stefan Reinauer86de2832006-03-31 11:26:55 +0000178 pci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000179
Stefan Reinauer86de2832006-03-31 11:26:55 +0000180 if (pci_read_byte(dev, bios_cntl) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000181 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 +0000182 return -1;
183 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000184
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000185 return 0;
186}
187
Uwe Hermann372eeb52007-12-04 21:49:06 +0000188static int enable_flash_ich_4e(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000189{
Stefan Reinauereb366472006-09-06 15:48:48 +0000190 return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000191}
192
Uwe Hermann372eeb52007-12-04 21:49:06 +0000193static int enable_flash_ich_dc(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000194{
Stefan Reinauereb366472006-09-06 15:48:48 +0000195 return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000196}
197
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000198#define ICH_STRAP_RSVD 0x00
199#define ICH_STRAP_SPI 0x01
200#define ICH_STRAP_PCI 0x02
201#define ICH_STRAP_LPC 0x03
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000202
Uwe Hermann394131e2008-10-18 21:14:13 +0000203static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name)
204{
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000205 uint32_t mmio_base;
206
207 mmio_base = (pci_read_long(dev, 0xbc)) << 8;
208 printf_debug("MMIO base at = 0x%x\n", mmio_base);
Uwe Hermann394131e2008-10-18 21:14:13 +0000209 spibar = mmap(NULL, 0x70, PROT_READ | PROT_WRITE, MAP_SHARED,
210 fd_mem, mmio_base);
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000211
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000212 if (spibar == MAP_FAILED) {
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000213 perror("Can't mmap memory using " MEM_DEV);
214 exit(1);
215 }
216
Uwe Hermann394131e2008-10-18 21:14:13 +0000217 printf_debug("0x6c: 0x%04x (CLOCK/DEBUG)\n",
218 *(uint16_t *) (spibar + 0x6c));
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000219
220 flashbus = BUS_TYPE_VIA_SPI;
221
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000222 return 0;
223}
224
Uwe Hermann394131e2008-10-18 21:14:13 +0000225static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name,
226 int ich_generation)
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000227{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000228 int ret, i;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000229 uint8_t old, new, bbs, buc;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000230 uint16_t spibar_offset;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000231 uint32_t tmp, gcs;
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000232 void *rcrb;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000233 static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" };
Uwe Hermann394131e2008-10-18 21:14:13 +0000234
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000235 /* Enable Flash Writes */
236 ret = enable_flash_ich_dc(dev, name);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000237
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000238 /* Get physical address of Root Complex Register Block */
239 tmp = pci_read_long(dev, 0xf0) & 0xffffc000;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000240 printf_debug("\nRoot Complex Register Block address = 0x%x\n", tmp);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000241
242 /* Map RCBA to virtual memory */
Uwe Hermann394131e2008-10-18 21:14:13 +0000243 rcrb = mmap(0, 0x4000, PROT_READ | PROT_WRITE, MAP_SHARED, fd_mem,
244 (off_t) tmp);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000245 if (rcrb == MAP_FAILED) {
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000246 perror("Can't mmap memory using " MEM_DEV);
247 exit(1);
248 }
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000249
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000250 gcs = *(volatile uint32_t *)(rcrb + 0x3410);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000251 printf_debug("GCS = 0x%x: ", gcs);
252 printf_debug("BIOS Interface Lock-Down: %sabled, ",
253 (gcs & 0x1) ? "en" : "dis");
254 bbs = (gcs >> 10) & 0x3;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000255 printf_debug("BOOT BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000256
Stefan Reinauera9424d52008-06-27 16:28:34 +0000257 buc = *(volatile uint8_t *)(rcrb + 0x3414);
Uwe Hermann394131e2008-10-18 21:14:13 +0000258 printf_debug("Top Swap : %s\n",
259 (buc & 1) ? "enabled (A16 inverted)" : "not enabled");
Stefan Reinauera9424d52008-06-27 16:28:34 +0000260
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000261 /* It seems the ICH7 does not support SPI and LPC chips at the same
262 * time. At least not with our current code. So we prevent searching
263 * on ICH7 when the southbridge is strapped to LPC
264 */
265
266 if (ich_generation == 7 && bbs == ICH_STRAP_LPC) {
267 /* No further SPI initialization required */
268 return ret;
269 }
270
271 switch (ich_generation) {
272 case 7:
273 flashbus = BUS_TYPE_ICH7_SPI;
274 spibar_offset = 0x3020;
275 break;
276 case 8:
277 flashbus = BUS_TYPE_ICH9_SPI;
278 spibar_offset = 0x3020;
279 break;
280 case 9:
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000281 case 10:
Uwe Hermann394131e2008-10-18 21:14:13 +0000282 default: /* Future version might behave the same */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000283 flashbus = BUS_TYPE_ICH9_SPI;
284 spibar_offset = 0x3800;
285 break;
286 }
287
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000288 /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000289 printf_debug("SPIBAR = 0x%x + 0x%04x\n", tmp, spibar_offset);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000290
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000291 /* Assign Virtual Address */
Uwe Hermann394131e2008-10-18 21:14:13 +0000292 spibar = rcrb + spibar_offset;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000293
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000294 switch (flashbus) {
295 case BUS_TYPE_ICH7_SPI:
Uwe Hermann394131e2008-10-18 21:14:13 +0000296 printf_debug("0x00: 0x%04x (SPIS)\n",
297 *(uint16_t *) (spibar + 0));
298 printf_debug("0x02: 0x%04x (SPIC)\n",
299 *(uint16_t *) (spibar + 2));
300 printf_debug("0x04: 0x%08x (SPIA)\n",
301 *(uint32_t *) (spibar + 4));
302 for (i = 0; i < 8; i++) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000303 int offs;
304 offs = 8 + (i * 8);
Uwe Hermann394131e2008-10-18 21:14:13 +0000305 printf_debug("0x%02x: 0x%08x (SPID%d)\n", offs,
306 *(uint32_t *) (spibar + offs), i);
307 printf_debug("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
308 *(uint32_t *) (spibar + offs + 4), i);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000309 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000310 printf_debug("0x50: 0x%08x (BBAR)\n",
311 *(uint32_t *) (spibar + 0x50));
312 printf_debug("0x54: 0x%04x (PREOP)\n",
313 *(uint16_t *) (spibar + 0x54));
314 printf_debug("0x56: 0x%04x (OPTYPE)\n",
315 *(uint16_t *) (spibar + 0x56));
316 printf_debug("0x58: 0x%08x (OPMENU)\n",
317 *(uint32_t *) (spibar + 0x58));
318 printf_debug("0x5c: 0x%08x (OPMENU+4)\n",
319 *(uint32_t *) (spibar + 0x5c));
320 for (i = 0; i < 4; i++) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000321 int offs;
322 offs = 0x60 + (i * 4);
Uwe Hermann394131e2008-10-18 21:14:13 +0000323 printf_debug("0x%02x: 0x%08x (PBR%d)\n", offs,
324 *(uint32_t *) (spibar + offs), i);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000325 }
326 printf_debug("\n");
Uwe Hermann394131e2008-10-18 21:14:13 +0000327 if ((*(uint16_t *) spibar) & (1 << 15)) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000328 printf("WARNING: SPI Configuration Lockdown activated.\n");
329 }
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000330 break;
331 case BUS_TYPE_ICH9_SPI:
332 /* TODO: Add dumping function for ICH8/ICH9, or drop the
333 * whole SPIBAR dumping from chipset_enable.c - There's
334 * inteltool for this task already.
335 */
336 break;
337 default:
338 /* Nothing */
339 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000340 }
341
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000342 old = pci_read_byte(dev, 0xdc);
343 printf_debug("SPI Read Configuration: ");
344 new = (old >> 2) & 0x3;
345 switch (new) {
346 case 0:
347 case 1:
348 case 2:
349 printf_debug("prefetching %sabled, caching %sabled, ",
Uwe Hermann394131e2008-10-18 21:14:13 +0000350 (new & 0x2) ? "en" : "dis",
351 (new & 0x1) ? "dis" : "en");
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000352 break;
353 default:
354 printf_debug("invalid prefetching/caching settings, ");
355 break;
356 }
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000357
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000358 return ret;
359}
Stefan Reinauera9424d52008-06-27 16:28:34 +0000360
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000361static int enable_flash_ich7(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000362{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000363 return enable_flash_ich_dc_spi(dev, name, 7);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000364}
365
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000366static int enable_flash_ich8(struct pci_dev *dev, const char *name)
367{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000368 return enable_flash_ich_dc_spi(dev, name, 8);
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000369}
370
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000371static int enable_flash_ich9(struct pci_dev *dev, const char *name)
372{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000373 return enable_flash_ich_dc_spi(dev, name, 9);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000374}
375
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000376static int enable_flash_ich10(struct pci_dev *dev, const char *name)
377{
378 return enable_flash_ich_dc_spi(dev, name, 10);
379}
380
Uwe Hermann372eeb52007-12-04 21:49:06 +0000381static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000382{
Ollie Lho184a4042005-11-26 21:55:36 +0000383 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000384
Uwe Hermann394131e2008-10-18 21:14:13 +0000385 /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF */
Bari Ari9477c4e2008-04-29 13:46:38 +0000386 pci_write_byte(dev, 0x41, 0x7f);
387
Uwe Hermannffec5f32007-08-23 16:08:21 +0000388 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000389 val = pci_read_byte(dev, 0x40);
390 val |= 0x10;
391 pci_write_byte(dev, 0x40, val);
392
393 if (pci_read_byte(dev, 0x40) != val) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000394 printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000395 name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000396 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000397 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000398
Uwe Hermanna7e05482007-05-09 10:17:44 +0000399 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000400}
401
Uwe Hermann372eeb52007-12-04 21:49:06 +0000402static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000403{
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000404 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000405
Uwe Hermann394131e2008-10-18 21:14:13 +0000406#define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
407#define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000408
Uwe Hermann394131e2008-10-18 21:14:13 +0000409#define LOWER_ROM_ADDRESS_RANGE (1 << 0)
410#define ROM_WRITE_ENABLE (1 << 1)
411#define UPPER_ROM_ADDRESS_RANGE (1 << 2)
412#define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000413
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000414 /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and
415 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB.
416 * Make the configured ROM areas writable.
417 */
418 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
419 reg8 |= LOWER_ROM_ADDRESS_RANGE;
420 reg8 |= UPPER_ROM_ADDRESS_RANGE;
421 reg8 |= ROM_WRITE_ENABLE;
422 pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000423
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000424 /* Set positive decode on ROM. */
425 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
426 reg8 |= BIOS_ROM_POSITIVE_DECODE;
427 pci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000428
Ollie Lhocbbf1252004-03-17 22:22:08 +0000429 return 0;
430}
431
Mart Raudseppe1344da2008-02-08 10:10:57 +0000432/**
433 * Geode systems write protect the BIOS via RCONFs (cache settings similar
434 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. Reading and
435 * writing to MSRs, however requires instructions rdmsr/wrmsr, which are
436 * ring0 privileged instructions so only the kernel can do the read/write.
437 * This function, therefore, requires that the msr kernel module be loaded
438 * to access these instructions from user space using device /dev/cpu/0/msr.
439 *
440 * This hard-coded location could have potential problems on SMP machines
441 * since it assumes cpu0, but it is safe on the Geode which is not SMP.
442 *
443 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
444 * To enable write to NOR Boot flash for the benefit of systems that have such
445 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
446 *
447 * This is probably not portable beyond Linux.
448 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000449static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
Lane Brooksd54958a2007-11-13 16:45:22 +0000450{
Uwe Hermann394131e2008-10-18 21:14:13 +0000451#define MSR_RCONF_DEFAULT 0x1808
452#define MSR_NORF_CTL 0x51400018
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000453
Lane Brooksd54958a2007-11-13 16:45:22 +0000454 int fd_msr;
455 unsigned char buf[8];
Lane Brooksd54958a2007-11-13 16:45:22 +0000456
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000457 fd_msr = open("/dev/cpu/0/msr", O_RDWR);
Lane Brooksd54958a2007-11-13 16:45:22 +0000458 if (!fd_msr) {
459 perror("open msr");
460 return -1;
461 }
Mart Raudseppe1344da2008-02-08 10:10:57 +0000462
463 if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
464 perror("lseek64");
Mart Raudsepp3697ac72008-02-11 14:32:45 +0000465 printf("Cannot operate on MSR. Did you run 'modprobe msr'?\n");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000466 close(fd_msr);
467 return -1;
468 }
469
470 if (read(fd_msr, buf, 8) != 8) {
Mart Raudsepp3697ac72008-02-11 14:32:45 +0000471 perror("read msr");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000472 close(fd_msr);
473 return -1;
474 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000475
Lane Brooksd54958a2007-11-13 16:45:22 +0000476 if (buf[7] != 0x22) {
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000477 buf[7] &= 0xfb;
Uwe Hermann394131e2008-10-18 21:14:13 +0000478 if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT,
479 SEEK_SET) == -1) {
Mart Raudseppe1344da2008-02-08 10:10:57 +0000480 perror("lseek64");
481 close(fd_msr);
482 return -1;
483 }
484
Lane Brooksd54958a2007-11-13 16:45:22 +0000485 if (write(fd_msr, buf, 8) < 0) {
486 perror("msr write");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000487 close(fd_msr);
Lane Brooksd54958a2007-11-13 16:45:22 +0000488 return -1;
489 }
Lane Brooksd54958a2007-11-13 16:45:22 +0000490 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000491
Mart Raudseppe1344da2008-02-08 10:10:57 +0000492 if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
493 perror("lseek64");
494 close(fd_msr);
495 return -1;
496 }
497
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000498 if (read(fd_msr, buf, 8) != 8) {
499 perror("read msr");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000500 close(fd_msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000501 return -1;
502 }
503
504 /* Raise WE_CS3 bit. */
505 buf[0] |= 0x08;
506
Mart Raudseppe1344da2008-02-08 10:10:57 +0000507 if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
508 perror("lseek64");
509 close(fd_msr);
510 return -1;
511 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000512 if (write(fd_msr, buf, 8) < 0) {
513 perror("msr write");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000514 close(fd_msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000515 return -1;
516 }
517
518 close(fd_msr);
519
Uwe Hermann394131e2008-10-18 21:14:13 +0000520#undef MSR_RCONF_DEFAULT
521#undef MSR_NORF_CTL
Lane Brooksd54958a2007-11-13 16:45:22 +0000522 return 0;
523}
524
Uwe Hermann372eeb52007-12-04 21:49:06 +0000525static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000526{
Ollie Lho184a4042005-11-26 21:55:36 +0000527 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000528
Ollie Lhocbbf1252004-03-17 22:22:08 +0000529 pci_write_byte(dev, 0x52, 0xee);
530
531 new = pci_read_byte(dev, 0x52);
532
533 if (new != 0xee) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000534 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 +0000535 return -1;
536 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000537
Ollie Lhocbbf1252004-03-17 22:22:08 +0000538 return 0;
539}
540
Uwe Hermann372eeb52007-12-04 21:49:06 +0000541static int enable_flash_sis5595(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000542{
Ollie Lho184a4042005-11-26 21:55:36 +0000543 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000544
Ollie Lhocbbf1252004-03-17 22:22:08 +0000545 new = pci_read_byte(dev, 0x45);
546
Uwe Hermann372eeb52007-12-04 21:49:06 +0000547 new &= (~0x20); /* Clear bit 5. */
548 new |= 0x4; /* Set bit 2. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000549
550 pci_write_byte(dev, 0x45, new);
551
552 newer = pci_read_byte(dev, 0x45);
553 if (newer != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000554 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 +0000555 printf("Stuck at 0x%x\n", newer);
556 return -1;
557 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000558
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000559 /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
Uwe Hermann394131e2008-10-18 21:14:13 +0000560 new = pci_read_byte(dev, 0x40);
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000561 new &= 0xFB;
562 new |= 0x3;
Uwe Hermann394131e2008-10-18 21:14:13 +0000563 pci_write_byte(dev, 0x40, new);
564 newer = pci_read_byte(dev, 0x40);
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000565 if (newer != new) {
566 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name);
567 printf("Stuck at 0x%x\n", newer);
568 return -1;
569 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000570 return 0;
571}
572
Uwe Hermann372eeb52007-12-04 21:49:06 +0000573static int enable_flash_amd8111(struct pci_dev *dev, const char *name)
Ollie Lho761bf1b2004-03-20 16:46:10 +0000574{
Ollie Lho184a4042005-11-26 21:55:36 +0000575 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000576
Uwe Hermann372eeb52007-12-04 21:49:06 +0000577 /* Enable decoding at 0xffb00000 to 0xffffffff. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000578 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000579 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000580 if (new != old) {
581 pci_write_byte(dev, 0x43, new);
582 if (pci_read_byte(dev, 0x43) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000583 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 +0000584 }
585 }
586
Ollie Lho761bf1b2004-03-20 16:46:10 +0000587 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000588 new = old | 0x01;
589 if (new == old)
590 return 0;
591 pci_write_byte(dev, 0x40, new);
592
593 if (pci_read_byte(dev, 0x40) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000594 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 +0000595 return -1;
596 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000597
Ollie Lhocbbf1252004-03-17 22:22:08 +0000598 return 0;
599}
600
Marc Jones3af487d2008-10-15 17:50:29 +0000601static int enable_flash_sb600(struct pci_dev *dev, const char *name)
602{
603 uint32_t old, new;
604 uint8_t reg;
605
606 /* Clear ROM Protect 0-3 */
Uwe Hermann394131e2008-10-18 21:14:13 +0000607 for (reg = 0x50; reg < 0x60; reg += 4) {
Marc Jones3af487d2008-10-15 17:50:29 +0000608 old = pci_read_long(dev, reg);
609 new = old & 0xFFFFFFFC;
610 if (new != old) {
611 pci_write_byte(dev, reg, new);
612 if (pci_read_long(dev, reg) != new) {
613 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x50, new, name);
614 }
615 }
616 }
617
618 return 0;
619}
620
Uwe Hermann372eeb52007-12-04 21:49:06 +0000621static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu952dfce2005-07-06 17:13:46 +0000622{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000623 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000624
Uwe Hermanna7e05482007-05-09 10:17:44 +0000625 old = pci_read_byte(dev, 0x88);
626 new = old | 0xc0;
627 if (new != old) {
628 pci_write_byte(dev, 0x88, new);
629 if (pci_read_byte(dev, 0x88) != new) {
630 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
631 }
632 }
Yinghai Lu952dfce2005-07-06 17:13:46 +0000633
Uwe Hermanna7e05482007-05-09 10:17:44 +0000634 old = pci_read_byte(dev, 0x6d);
635 new = old | 0x01;
636 if (new == old)
637 return 0;
638 pci_write_byte(dev, 0x6d, new);
639
640 if (pci_read_byte(dev, 0x6d) != new) {
641 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
642 return -1;
643 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000644
Uwe Hermanna7e05482007-05-09 10:17:44 +0000645 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000646}
647
Uwe Hermann372eeb52007-12-04 21:49:06 +0000648/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
649static int enable_flash_sb400(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000650{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000651 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000652 struct pci_filter f;
653 struct pci_dev *smbusdev;
654
Uwe Hermann372eeb52007-12-04 21:49:06 +0000655 /* Look for the SMBus device. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000656 pci_filter_init((struct pci_access *)0, &f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000657 f.vendor = 0x1002;
658 f.device = 0x4372;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000659
Stefan Reinauer86de2832006-03-31 11:26:55 +0000660 for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
Uwe Hermann394131e2008-10-18 21:14:13 +0000661 if (pci_filter_match(&f, smbusdev))
Stefan Reinauer86de2832006-03-31 11:26:55 +0000662 break;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000663 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000664
Uwe Hermanna7e05482007-05-09 10:17:44 +0000665 if (!smbusdev) {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000666 fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n");
Stefan Reinauer86de2832006-03-31 11:26:55 +0000667 exit(1);
668 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000669
Uwe Hermann372eeb52007-12-04 21:49:06 +0000670 /* Enable some SMBus stuff. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000671 tmp = pci_read_byte(smbusdev, 0x79);
672 tmp |= 0x01;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000673 pci_write_byte(smbusdev, 0x79, tmp);
674
Uwe Hermann372eeb52007-12-04 21:49:06 +0000675 /* Change southbridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000676 tmp = pci_read_byte(dev, 0x48);
677 tmp |= 0x21;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000678 pci_write_byte(dev, 0x48, tmp);
679
Uwe Hermann372eeb52007-12-04 21:49:06 +0000680 /* Now become a bit silly. */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000681 tmp = INB(0xc6f);
682 OUTB(tmp, 0xeb);
683 OUTB(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000684 tmp |= 0x40;
Andriy Gapon65c1b862008-05-22 13:22:45 +0000685 OUTB(tmp, 0xc6f);
686 OUTB(tmp, 0xeb);
687 OUTB(tmp, 0xeb);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000688
689 return 0;
690}
691
Uwe Hermann372eeb52007-12-04 21:49:06 +0000692static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
Yinghai Luca782972007-01-22 20:21:17 +0000693{
Uwe Hermann372eeb52007-12-04 21:49:06 +0000694 uint8_t old, new, byte;
695 uint16_t word;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000696
Uwe Hermann372eeb52007-12-04 21:49:06 +0000697 /* Set the 0-16 MB enable bits. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000698 byte = pci_read_byte(dev, 0x88);
699 byte |= 0xff; /* 256K */
700 pci_write_byte(dev, 0x88, byte);
701 byte = pci_read_byte(dev, 0x8c);
702 byte |= 0xff; /* 1M */
703 pci_write_byte(dev, 0x8c, byte);
704 word = pci_read_word(dev, 0x90);
Carl-Daniel Hailfingerdca0ab12007-10-17 22:30:07 +0000705 word |= 0x7fff; /* 16M */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000706 pci_write_word(dev, 0x90, word);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000707
Uwe Hermanna7e05482007-05-09 10:17:44 +0000708 old = pci_read_byte(dev, 0x6d);
709 new = old | 0x01;
710 if (new == old)
711 return 0;
712 pci_write_byte(dev, 0x6d, new);
Yinghai Luca782972007-01-22 20:21:17 +0000713
Uwe Hermanna7e05482007-05-09 10:17:44 +0000714 if (pci_read_byte(dev, 0x6d) != new) {
Uwe Hermann394131e2008-10-18 21:14:13 +0000715 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000716 return -1;
717 }
Yinghai Luca782972007-01-22 20:21:17 +0000718
719 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000720}
721
Uwe Hermann372eeb52007-12-04 21:49:06 +0000722static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000723{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000724 uint8_t byte;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000725
Uwe Hermanne823ee02007-06-05 15:02:18 +0000726 /* Set the 4MB enable bit. */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000727 byte = pci_read_byte(dev, 0x41);
728 byte |= 0x0e;
729 pci_write_byte(dev, 0x41, byte);
730
731 byte = pci_read_byte(dev, 0x43);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000732 byte |= (1 << 4);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000733 pci_write_byte(dev, 0x43, byte);
734
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000735 return 0;
736}
737
Ollie Lhocbbf1252004-03-17 22:22:08 +0000738typedef struct penable {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000739 uint16_t vendor, device;
740 const char *name;
741 int (*doit) (struct pci_dev *dev, const char *name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000742} FLASH_ENABLE;
743
Uwe Hermann372eeb52007-12-04 21:49:06 +0000744static const FLASH_ENABLE enables[] = {
Uwe Hermanneac10162008-03-13 18:52:51 +0000745 {0x1039, 0x0630, "SiS630", enable_flash_sis630},
746 {0x8086, 0x7110, "Intel PIIX4/4E/4M", enable_flash_piix4},
747 {0x8086, 0x7198, "Intel 440MX", enable_flash_piix4},
748 {0x8086, 0x2410, "Intel ICH", enable_flash_ich_4e},
749 {0x8086, 0x2420, "Intel ICH0", enable_flash_ich_4e},
750 {0x8086, 0x2440, "Intel ICH2", enable_flash_ich_4e},
751 {0x8086, 0x244c, "Intel ICH2-M", enable_flash_ich_4e},
752 {0x8086, 0x2480, "Intel ICH3-S", enable_flash_ich_4e},
753 {0x8086, 0x248c, "Intel ICH3-M", enable_flash_ich_4e},
754 {0x8086, 0x24c0, "Intel ICH4/ICH4-L", enable_flash_ich_4e},
755 {0x8086, 0x24cc, "Intel ICH4-M", enable_flash_ich_4e},
756 {0x8086, 0x24d0, "Intel ICH5/ICH5R", enable_flash_ich_4e},
Claus Gindharta00e2a02008-05-14 12:22:38 +0000757 {0x8086, 0x25a1, "Intel 6300ESB", enable_flash_ich_4e},
Uwe Hermanneac10162008-03-13 18:52:51 +0000758 {0x8086, 0x2640, "Intel ICH6/ICH6R", enable_flash_ich_dc},
759 {0x8086, 0x2641, "Intel ICH6-M", enable_flash_ich_dc},
Ed Swierkcd2ed472008-08-20 20:31:41 +0000760 {0x8086, 0x5031, "Intel EP80579", enable_flash_ich_dc},
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000761 {0x8086, 0x27b0, "Intel ICH7DH", enable_flash_ich7},
762 {0x8086, 0x27b8, "Intel ICH7/ICH7R", enable_flash_ich7},
763 {0x8086, 0x27b9, "Intel ICH7M", enable_flash_ich7},
764 {0x8086, 0x27bd, "Intel ICH7MDH", enable_flash_ich7},
765 {0x8086, 0x2810, "Intel ICH8/ICH8R", enable_flash_ich8},
766 {0x8086, 0x2811, "Intel ICH8M-E", enable_flash_ich8},
767 {0x8086, 0x2812, "Intel ICH8DH", enable_flash_ich8},
768 {0x8086, 0x2814, "Intel ICH8DO", enable_flash_ich8},
769 {0x8086, 0x2815, "Intel ICH8M", enable_flash_ich8},
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000770 {0x8086, 0x2912, "Intel ICH9DH", enable_flash_ich9},
771 {0x8086, 0x2914, "Intel ICH9DO", enable_flash_ich9},
772 {0x8086, 0x2916, "Intel ICH9R", enable_flash_ich9},
773 {0x8086, 0x2917, "Intel ICH9M-E", enable_flash_ich9},
774 {0x8086, 0x2918, "Intel ICH9", enable_flash_ich9},
775 {0x8086, 0x2919, "Intel ICH9M", enable_flash_ich9},
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000776 {0x8086, 0x3a14, "Intel ICH10DO", enable_flash_ich10},
777 {0x8086, 0x3a16, "Intel ICH10R", enable_flash_ich10},
778 {0x8086, 0x3a18, "Intel ICH10", enable_flash_ich10},
779 {0x8086, 0x3a1a, "Intel ICH10D", enable_flash_ich10},
Uwe Hermanneac10162008-03-13 18:52:51 +0000780 {0x1106, 0x8231, "VIA VT8231", enable_flash_vt823x},
781 {0x1106, 0x3177, "VIA VT8235", enable_flash_vt823x},
782 {0x1106, 0x3227, "VIA VT8237", enable_flash_vt823x},
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000783 {0x1106, 0x3372, "VIA VT8237S", enable_flash_vt8237s_spi},
Uwe Hermanneac10162008-03-13 18:52:51 +0000784 {0x1106, 0x8324, "VIA CX700", enable_flash_vt823x},
785 {0x1106, 0x0686, "VIA VT82C686", enable_flash_amd8111},
786 {0x1078, 0x0100, "AMD CS5530(A)", enable_flash_cs5530},
787 {0x100b, 0x0510, "AMD SC1100", enable_flash_sc1100},
788 {0x1039, 0x0008, "SiS5595", enable_flash_sis5595},
789 {0x1022, 0x2080, "AMD CS5536", enable_flash_cs5536},
790 {0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
Marc Jones3af487d2008-10-15 17:50:29 +0000791 {0x1002, 0x438D, "ATI(AMD) SB600", enable_flash_sb600},
Uwe Hermanneac10162008-03-13 18:52:51 +0000792 {0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533},
793 {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, /* LPC */
794 {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, /* Pro */
795 /* Slave, should not be here, to fix known bug for A01. */
796 {0x10de, 0x00d3, "NVIDIA CK804", enable_flash_ck804},
797 {0x10de, 0x0260, "NVIDIA MCP51", enable_flash_ck804},
798 {0x10de, 0x0261, "NVIDIA MCP51", enable_flash_ck804},
799 {0x10de, 0x0262, "NVIDIA MCP51", enable_flash_ck804},
800 {0x10de, 0x0263, "NVIDIA MCP51", enable_flash_ck804},
801 {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, /* M57SLI*/
802 {0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
803 {0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
804 {0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
805 {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
806 {0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
807 {0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
808 {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, /* Pro */
Stefan Reinauer7f274642008-07-05 09:48:30 +0000809 {0x10de, 0x0548, "NVIDIA MCP67", enable_flash_mcp55},
Uwe Hermanneac10162008-03-13 18:52:51 +0000810 {0x1002, 0x4377, "ATI SB400", enable_flash_sb400},
811 {0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000812};
Ollie Lho761bf1b2004-03-20 16:46:10 +0000813
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000814void print_supported_chipsets(void)
815{
816 int i;
817
818 printf("\nSupported chipsets:\n\n");
819
820 for (i = 0; i < ARRAY_SIZE(enables); i++)
821 printf("%s (%04x:%04x)\n", enables[i].name,
822 enables[i].vendor, enables[i].device);
823}
824
Uwe Hermanna7e05482007-05-09 10:17:44 +0000825int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000826{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000827 struct pci_dev *dev = 0;
Uwe Hermann372eeb52007-12-04 21:49:06 +0000828 int ret = -2; /* Nothing! */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000829 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000830
Uwe Hermann372eeb52007-12-04 21:49:06 +0000831 /* Now let's try to find the chipset we have... */
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000832 for (i = 0; i < ARRAY_SIZE(enables); i++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000833 dev = pci_dev_find(enables[i].vendor, enables[i].device);
834 if (dev)
835 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000836 }
837
Uwe Hermanna7e05482007-05-09 10:17:44 +0000838 if (dev) {
Uwe Hermanna502dce2007-10-17 23:55:15 +0000839 printf("Found chipset \"%s\", enabling flash write... ",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000840 enables[i].name);
841
842 ret = enables[i].doit(dev, enables[i].name);
843 if (ret)
Uwe Hermanna502dce2007-10-17 23:55:15 +0000844 printf("FAILED!\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000845 else
Uwe Hermannac309342007-10-10 17:42:20 +0000846 printf("OK.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000847 }
848
849 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000850}