blob: e8297d6db7425645cdbd369e7cbda74923defc7e [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 Reinauer9a6d1762008-12-03 21:24:40 +000038unsigned long flashbase = 0;
39
Stefan Reinauer2cb94e12008-06-30 23:45:22 +000040/**
41 * flashrom defaults to LPC flash devices. If a known SPI controller is found
42 * and the SPI strappings are set, this will be overwritten by the probing code.
43 *
44 * Eventually, this will become an array when multiple flash support works.
45 */
46
47flashbus_t flashbus = BUS_TYPE_LPC;
48void *spibar = NULL;
49
Uwe Hermann372eeb52007-12-04 21:49:06 +000050static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
Luc Verhaegen6b141752007-05-20 16:16:13 +000051{
52 uint8_t tmp;
53
Uwe Hermann372eeb52007-12-04 21:49:06 +000054 /*
55 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
56 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
57 */
Luc Verhaegen6b141752007-05-20 16:16:13 +000058 tmp = pci_read_byte(dev, 0x47);
59 tmp |= 0x46;
60 pci_write_byte(dev, 0x47, tmp);
61
62 return 0;
63}
64
Uwe Hermann372eeb52007-12-04 21:49:06 +000065static int enable_flash_sis630(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +000066{
Uwe Hermann372eeb52007-12-04 21:49:06 +000067 uint8_t b;
Ollie Lhocbbf1252004-03-17 22:22:08 +000068
Uwe Hermann372eeb52007-12-04 21:49:06 +000069 /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000070 b = pci_read_byte(dev, 0x40);
71 pci_write_byte(dev, 0x40, b | 0xb);
Uwe Hermann372eeb52007-12-04 21:49:06 +000072
73 /* Flash write enable on SiS 540/630. */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000074 b = pci_read_byte(dev, 0x45);
75 pci_write_byte(dev, 0x45, b | 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +000076
Uwe Hermann372eeb52007-12-04 21:49:06 +000077 /* The same thing on SiS 950 Super I/O side... */
78
79 /* First probe for Super I/O on config port 0x2e. */
Andriy Gapon65c1b862008-05-22 13:22:45 +000080 OUTB(0x87, 0x2e);
81 OUTB(0x01, 0x2e);
82 OUTB(0x55, 0x2e);
83 OUTB(0x55, 0x2e);
Ollie Lhocbbf1252004-03-17 22:22:08 +000084
Andriy Gapon65c1b862008-05-22 13:22:45 +000085 if (INB(0x2f) != 0x87) {
Uwe Hermann372eeb52007-12-04 21:49:06 +000086 /* If that failed, try config port 0x4e. */
Andriy Gapon65c1b862008-05-22 13:22:45 +000087 OUTB(0x87, 0x4e);
88 OUTB(0x01, 0x4e);
89 OUTB(0x55, 0x4e);
90 OUTB(0xaa, 0x4e);
91 if (INB(0x4f) != 0x87) {
Ollie Lhocbbf1252004-03-17 22:22:08 +000092 printf("Can not access SiS 950\n");
93 return -1;
94 }
Andriy Gapon65c1b862008-05-22 13:22:45 +000095 OUTB(0x24, 0x4e);
96 b = INB(0x4f) | 0xfc;
97 OUTB(0x24, 0x4e);
98 OUTB(b, 0x4f);
99 OUTB(0x02, 0x4e);
100 OUTB(0x02, 0x4f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000101 }
102
Andriy Gapon65c1b862008-05-22 13:22:45 +0000103 OUTB(0x24, 0x2e);
104 printf("2f is %#x\n", INB(0x2f));
105 b = INB(0x2f) | 0xfc;
106 OUTB(0x24, 0x2e);
107 OUTB(b, 0x2f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000108
Andriy Gapon65c1b862008-05-22 13:22:45 +0000109 OUTB(0x02, 0x2e);
110 OUTB(0x02, 0x2f);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000111
112 return 0;
113}
114
Uwe Hermann987942d2006-11-07 11:16:21 +0000115/* Datasheet:
116 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
117 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
118 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
119 * - Order Number: 290562-001
120 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000121static int enable_flash_piix4(struct pci_dev *dev, const char *name)
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000122{
123 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000124 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000125
126 old = pci_read_word(dev, xbcs);
127
128 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000129 * FFF00000-FFF7FFFF are forwarded to ISA).
Uwe Hermannc556d322008-10-28 11:50:05 +0000130 * Note: This bit is reserved on PIIX/PIIX3/MPIIX.
Uwe Hermanna7e05482007-05-09 10:17:44 +0000131 * Set bit 7: Extended BIOS Enable (PCI master accesses to
132 * FFF80000-FFFDFFFF are forwarded to ISA).
133 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
134 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
135 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
136 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
137 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
138 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
139 */
Uwe Hermannc556d322008-10-28 11:50:05 +0000140 if (dev->device_id == 0x122e || dev->device_id == 0x7000
141 || dev->device_id == 0x1234)
142 new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */
Uwe Hermann87203452008-10-26 18:40:42 +0000143 else
144 new = old | 0x02c4;
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000145
146 if (new == old)
147 return 0;
148
149 pci_write_word(dev, xbcs, new);
150
151 if (pci_read_word(dev, xbcs) != new) {
152 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
153 return -1;
154 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000155
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000156 return 0;
157}
158
Uwe Hermann372eeb52007-12-04 21:49:06 +0000159/*
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000160 * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet"
161 * http://download.intel.com/design/chipsets/datashts/30701303.pdf
Uwe Hermann372eeb52007-12-04 21:49:06 +0000162 */
163static int enable_flash_ich(struct pci_dev *dev, const char *name,
164 int bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000165{
Ollie Lho184a4042005-11-26 21:55:36 +0000166 uint8_t old, new;
Stefan Reinauereb366472006-09-06 15:48:48 +0000167
Uwe Hermann372eeb52007-12-04 21:49:06 +0000168 /*
169 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
Uwe Hermanna7e05482007-05-09 10:17:44 +0000170 * just treating it as 8 bit wide seems to work fine in practice.
Stefan Reinauereb366472006-09-06 15:48:48 +0000171 */
Stefan Reinauer86de2832006-03-31 11:26:55 +0000172 old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000173
Uwe Hermann793bdcd2008-05-22 22:47:04 +0000174 printf_debug("\nBIOS Lock Enable: %sabled, ",
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000175 (old & (1 << 1)) ? "en" : "dis");
176 printf_debug("BIOS Write Enable: %sabled, ",
177 (old & (1 << 0)) ? "en" : "dis");
178 printf_debug("BIOS_CNTL is 0x%x\n", old);
179
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000180 new = old | 1;
181
182 if (new == old)
183 return 0;
184
Stefan Reinauer86de2832006-03-31 11:26:55 +0000185 pci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000186
Stefan Reinauer86de2832006-03-31 11:26:55 +0000187 if (pci_read_byte(dev, bios_cntl) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000188 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 +0000189 return -1;
190 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000191
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000192 return 0;
193}
194
Uwe Hermann372eeb52007-12-04 21:49:06 +0000195static int enable_flash_ich_4e(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000196{
Stefan Reinauereb366472006-09-06 15:48:48 +0000197 return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000198}
199
Uwe Hermann372eeb52007-12-04 21:49:06 +0000200static int enable_flash_ich_dc(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000201{
Stefan Reinauereb366472006-09-06 15:48:48 +0000202 return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000203}
204
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000205#define ICH_STRAP_RSVD 0x00
206#define ICH_STRAP_SPI 0x01
207#define ICH_STRAP_PCI 0x02
208#define ICH_STRAP_LPC 0x03
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000209
Uwe Hermann394131e2008-10-18 21:14:13 +0000210static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name)
211{
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000212 uint32_t mmio_base;
213
214 mmio_base = (pci_read_long(dev, 0xbc)) << 8;
215 printf_debug("MMIO base at = 0x%x\n", mmio_base);
Uwe Hermann394131e2008-10-18 21:14:13 +0000216 spibar = mmap(NULL, 0x70, PROT_READ | PROT_WRITE, MAP_SHARED,
217 fd_mem, mmio_base);
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000218
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000219 if (spibar == MAP_FAILED) {
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000220 perror("Can't mmap memory using " MEM_DEV);
221 exit(1);
222 }
223
Uwe Hermann394131e2008-10-18 21:14:13 +0000224 printf_debug("0x6c: 0x%04x (CLOCK/DEBUG)\n",
225 *(uint16_t *) (spibar + 0x6c));
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000226
227 flashbus = BUS_TYPE_VIA_SPI;
228
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000229 return 0;
230}
231
Uwe Hermann394131e2008-10-18 21:14:13 +0000232static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name,
233 int ich_generation)
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000234{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000235 int ret, i;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000236 uint8_t old, new, bbs, buc;
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000237 uint16_t spibar_offset, tmp2;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000238 uint32_t tmp, gcs;
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000239 void *rcrb;
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000240 //TODO: These names are incorrect for EP80579. For that, the solution would look like the commented line
241 //static const char *straps_names[] = {"SPI", "reserved", "reserved", "LPC" };
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000242 static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" };
Uwe Hermann394131e2008-10-18 21:14:13 +0000243
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000244 /* Enable Flash Writes */
245 ret = enable_flash_ich_dc(dev, name);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000246
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000247 /* Get physical address of Root Complex Register Block */
248 tmp = pci_read_long(dev, 0xf0) & 0xffffc000;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000249 printf_debug("\nRoot Complex Register Block address = 0x%x\n", tmp);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000250
251 /* Map RCBA to virtual memory */
Uwe Hermann394131e2008-10-18 21:14:13 +0000252 rcrb = mmap(0, 0x4000, PROT_READ | PROT_WRITE, MAP_SHARED, fd_mem,
253 (off_t) tmp);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000254 if (rcrb == MAP_FAILED) {
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000255 perror("Can't mmap memory using " MEM_DEV);
256 exit(1);
257 }
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000258
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000259 gcs = *(volatile uint32_t *)(rcrb + 0x3410);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000260 printf_debug("GCS = 0x%x: ", gcs);
261 printf_debug("BIOS Interface Lock-Down: %sabled, ",
262 (gcs & 0x1) ? "en" : "dis");
263 bbs = (gcs >> 10) & 0x3;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000264 printf_debug("BOOT BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000265
Stefan Reinauera9424d52008-06-27 16:28:34 +0000266 buc = *(volatile uint8_t *)(rcrb + 0x3414);
Uwe Hermann394131e2008-10-18 21:14:13 +0000267 printf_debug("Top Swap : %s\n",
268 (buc & 1) ? "enabled (A16 inverted)" : "not enabled");
Stefan Reinauera9424d52008-06-27 16:28:34 +0000269
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000270 /* It seems the ICH7 does not support SPI and LPC chips at the same
271 * time. At least not with our current code. So we prevent searching
272 * on ICH7 when the southbridge is strapped to LPC
273 */
274
275 if (ich_generation == 7 && bbs == ICH_STRAP_LPC) {
276 /* No further SPI initialization required */
277 return ret;
278 }
279
280 switch (ich_generation) {
281 case 7:
282 flashbus = BUS_TYPE_ICH7_SPI;
283 spibar_offset = 0x3020;
284 break;
285 case 8:
286 flashbus = BUS_TYPE_ICH9_SPI;
287 spibar_offset = 0x3020;
288 break;
289 case 9:
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000290 case 10:
Uwe Hermann394131e2008-10-18 21:14:13 +0000291 default: /* Future version might behave the same */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000292 flashbus = BUS_TYPE_ICH9_SPI;
293 spibar_offset = 0x3800;
294 break;
295 }
296
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000297 /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000298 printf_debug("SPIBAR = 0x%x + 0x%04x\n", tmp, spibar_offset);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000299
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000300 /* Assign Virtual Address */
Uwe Hermann394131e2008-10-18 21:14:13 +0000301 spibar = rcrb + spibar_offset;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000302
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000303 switch (flashbus) {
304 case BUS_TYPE_ICH7_SPI:
Uwe Hermann394131e2008-10-18 21:14:13 +0000305 printf_debug("0x00: 0x%04x (SPIS)\n",
306 *(uint16_t *) (spibar + 0));
307 printf_debug("0x02: 0x%04x (SPIC)\n",
308 *(uint16_t *) (spibar + 2));
309 printf_debug("0x04: 0x%08x (SPIA)\n",
310 *(uint32_t *) (spibar + 4));
311 for (i = 0; i < 8; i++) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000312 int offs;
313 offs = 8 + (i * 8);
Uwe Hermann394131e2008-10-18 21:14:13 +0000314 printf_debug("0x%02x: 0x%08x (SPID%d)\n", offs,
315 *(uint32_t *) (spibar + offs), i);
316 printf_debug("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
317 *(uint32_t *) (spibar + offs + 4), i);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000318 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000319 printf_debug("0x50: 0x%08x (BBAR)\n",
320 *(uint32_t *) (spibar + 0x50));
321 printf_debug("0x54: 0x%04x (PREOP)\n",
322 *(uint16_t *) (spibar + 0x54));
323 printf_debug("0x56: 0x%04x (OPTYPE)\n",
324 *(uint16_t *) (spibar + 0x56));
325 printf_debug("0x58: 0x%08x (OPMENU)\n",
326 *(uint32_t *) (spibar + 0x58));
327 printf_debug("0x5c: 0x%08x (OPMENU+4)\n",
328 *(uint32_t *) (spibar + 0x5c));
329 for (i = 0; i < 4; i++) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000330 int offs;
331 offs = 0x60 + (i * 4);
Uwe Hermann394131e2008-10-18 21:14:13 +0000332 printf_debug("0x%02x: 0x%08x (PBR%d)\n", offs,
333 *(uint32_t *) (spibar + offs), i);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000334 }
335 printf_debug("\n");
Uwe Hermann394131e2008-10-18 21:14:13 +0000336 if ((*(uint16_t *) spibar) & (1 << 15)) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000337 printf("WARNING: SPI Configuration Lockdown activated.\n");
338 }
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000339 break;
340 case BUS_TYPE_ICH9_SPI:
Carl-Daniel Hailfingerd3b0e392008-11-03 00:20:22 +0000341 tmp2 = *(uint16_t *) (spibar + 0);
342 printf_debug("0x00: 0x%04x (HSFS)\n", tmp2);
343 printf_debug("FLOCKDN %i, ", (tmp >> 15 & 1));
344 printf_debug("FDV %i, ", (tmp >> 14) & 1);
345 printf_debug("FDOPSS %i, ", (tmp >> 13) & 1);
346 printf_debug("SCIP %i, ", (tmp >> 5) & 1);
347 printf_debug("BERASE %i, ", (tmp >> 3) & 3);
348 printf_debug("AEL %i, ", (tmp >> 2) & 1);
349 printf_debug("FCERR %i, ", (tmp >> 1) & 1);
350 printf_debug("FDONE %i\n", (tmp >> 0) & 1);
351
352 tmp = *(uint32_t *) (spibar + 0x50);
353 printf_debug("0x50: 0x%08x (FRAP)\n", tmp);
354 printf_debug("BMWAG %i, ", (tmp >> 24) & 0xff);
355 printf_debug("BMRAG %i, ", (tmp >> 16) & 0xff);
356 printf_debug("BRWA %i, ", (tmp >> 8) & 0xff);
357 printf_debug("BRRA %i\n", (tmp >> 0) & 0xff);
358
359 printf_debug("0x54: 0x%08x (FREG0)\n",
360 *(uint32_t *) (spibar + 0x54));
361 printf_debug("0x58: 0x%08x (FREG1)\n",
362 *(uint32_t *) (spibar + 0x58));
363 printf_debug("0x5C: 0x%08x (FREG2)\n",
364 *(uint32_t *) (spibar + 0x5C));
365 printf_debug("0x60: 0x%08x (FREG3)\n",
366 *(uint32_t *) (spibar + 0x60));
367 printf_debug("0x64: 0x%08x (FREG4)\n",
368 *(uint32_t *) (spibar + 0x64));
369 printf_debug("0x74: 0x%08x (PR0)\n",
370 *(uint32_t *) (spibar + 0x74));
371 printf_debug("0x78: 0x%08x (PR1)\n",
372 *(uint32_t *) (spibar + 0x78));
373 printf_debug("0x7C: 0x%08x (PR2)\n",
374 *(uint32_t *) (spibar + 0x7C));
375 printf_debug("0x80: 0x%08x (PR3)\n",
376 *(uint32_t *) (spibar + 0x80));
377 printf_debug("0x84: 0x%08x (PR4)\n",
378 *(uint32_t *) (spibar + 0x84));
379 /* printf_debug("0xA0: 0x%08x (BBAR)\n",
380 *(uint32_t *) (spibar + 0xA0)); ICH10 only? */
381 printf_debug("0xB0: 0x%08x (FDOC)\n",
382 *(uint32_t *) (spibar + 0xB0));
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000383 break;
384 default:
385 /* Nothing */
386 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000387 }
388
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000389 old = pci_read_byte(dev, 0xdc);
390 printf_debug("SPI Read Configuration: ");
391 new = (old >> 2) & 0x3;
392 switch (new) {
393 case 0:
394 case 1:
395 case 2:
396 printf_debug("prefetching %sabled, caching %sabled, ",
Uwe Hermann394131e2008-10-18 21:14:13 +0000397 (new & 0x2) ? "en" : "dis",
398 (new & 0x1) ? "dis" : "en");
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000399 break;
400 default:
401 printf_debug("invalid prefetching/caching settings, ");
402 break;
403 }
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000404
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000405 return ret;
406}
Stefan Reinauera9424d52008-06-27 16:28:34 +0000407
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000408static int enable_flash_ich7(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000409{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000410 return enable_flash_ich_dc_spi(dev, name, 7);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000411}
412
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000413static int enable_flash_ich8(struct pci_dev *dev, const char *name)
414{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000415 return enable_flash_ich_dc_spi(dev, name, 8);
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000416}
417
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000418static int enable_flash_ich9(struct pci_dev *dev, const char *name)
419{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000420 return enable_flash_ich_dc_spi(dev, name, 9);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000421}
422
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000423static int enable_flash_ich10(struct pci_dev *dev, const char *name)
424{
425 return enable_flash_ich_dc_spi(dev, name, 10);
426}
427
Uwe Hermann372eeb52007-12-04 21:49:06 +0000428static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000429{
Ollie Lho184a4042005-11-26 21:55:36 +0000430 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000431
Uwe Hermann394131e2008-10-18 21:14:13 +0000432 /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF */
Bari Ari9477c4e2008-04-29 13:46:38 +0000433 pci_write_byte(dev, 0x41, 0x7f);
434
Uwe Hermannffec5f32007-08-23 16:08:21 +0000435 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000436 val = pci_read_byte(dev, 0x40);
437 val |= 0x10;
438 pci_write_byte(dev, 0x40, val);
439
440 if (pci_read_byte(dev, 0x40) != val) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000441 printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000442 name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000443 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000444 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000445
Uwe Hermanna7e05482007-05-09 10:17:44 +0000446 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000447}
448
Uwe Hermann372eeb52007-12-04 21:49:06 +0000449static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000450{
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000451 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000452
Uwe Hermann394131e2008-10-18 21:14:13 +0000453#define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
454#define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000455
Uwe Hermann394131e2008-10-18 21:14:13 +0000456#define LOWER_ROM_ADDRESS_RANGE (1 << 0)
457#define ROM_WRITE_ENABLE (1 << 1)
458#define UPPER_ROM_ADDRESS_RANGE (1 << 2)
459#define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000460
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000461 /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and
462 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB.
463 * Make the configured ROM areas writable.
464 */
465 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
466 reg8 |= LOWER_ROM_ADDRESS_RANGE;
467 reg8 |= UPPER_ROM_ADDRESS_RANGE;
468 reg8 |= ROM_WRITE_ENABLE;
469 pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000470
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000471 /* Set positive decode on ROM. */
472 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
473 reg8 |= BIOS_ROM_POSITIVE_DECODE;
474 pci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000475
Ollie Lhocbbf1252004-03-17 22:22:08 +0000476 return 0;
477}
478
Mart Raudseppe1344da2008-02-08 10:10:57 +0000479/**
480 * Geode systems write protect the BIOS via RCONFs (cache settings similar
481 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. Reading and
482 * writing to MSRs, however requires instructions rdmsr/wrmsr, which are
483 * ring0 privileged instructions so only the kernel can do the read/write.
484 * This function, therefore, requires that the msr kernel module be loaded
485 * to access these instructions from user space using device /dev/cpu/0/msr.
486 *
487 * This hard-coded location could have potential problems on SMP machines
488 * since it assumes cpu0, but it is safe on the Geode which is not SMP.
489 *
490 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
491 * To enable write to NOR Boot flash for the benefit of systems that have such
492 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
493 *
494 * This is probably not portable beyond Linux.
495 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000496static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
Lane Brooksd54958a2007-11-13 16:45:22 +0000497{
Uwe Hermann394131e2008-10-18 21:14:13 +0000498#define MSR_RCONF_DEFAULT 0x1808
499#define MSR_NORF_CTL 0x51400018
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000500
Lane Brooksd54958a2007-11-13 16:45:22 +0000501 int fd_msr;
502 unsigned char buf[8];
Lane Brooksd54958a2007-11-13 16:45:22 +0000503
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000504 fd_msr = open("/dev/cpu/0/msr", O_RDWR);
Lane Brooksd54958a2007-11-13 16:45:22 +0000505 if (!fd_msr) {
506 perror("open msr");
507 return -1;
508 }
Mart Raudseppe1344da2008-02-08 10:10:57 +0000509
510 if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
511 perror("lseek64");
Mart Raudsepp3697ac72008-02-11 14:32:45 +0000512 printf("Cannot operate on MSR. Did you run 'modprobe msr'?\n");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000513 close(fd_msr);
514 return -1;
515 }
516
517 if (read(fd_msr, buf, 8) != 8) {
Mart Raudsepp3697ac72008-02-11 14:32:45 +0000518 perror("read msr");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000519 close(fd_msr);
520 return -1;
521 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000522
Lane Brooksd54958a2007-11-13 16:45:22 +0000523 if (buf[7] != 0x22) {
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000524 buf[7] &= 0xfb;
Uwe Hermann394131e2008-10-18 21:14:13 +0000525 if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT,
526 SEEK_SET) == -1) {
Mart Raudseppe1344da2008-02-08 10:10:57 +0000527 perror("lseek64");
528 close(fd_msr);
529 return -1;
530 }
531
Lane Brooksd54958a2007-11-13 16:45:22 +0000532 if (write(fd_msr, buf, 8) < 0) {
533 perror("msr write");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000534 close(fd_msr);
Lane Brooksd54958a2007-11-13 16:45:22 +0000535 return -1;
536 }
Lane Brooksd54958a2007-11-13 16:45:22 +0000537 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000538
Mart Raudseppe1344da2008-02-08 10:10:57 +0000539 if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
540 perror("lseek64");
541 close(fd_msr);
542 return -1;
543 }
544
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000545 if (read(fd_msr, buf, 8) != 8) {
546 perror("read msr");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000547 close(fd_msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000548 return -1;
549 }
550
551 /* Raise WE_CS3 bit. */
552 buf[0] |= 0x08;
553
Mart Raudseppe1344da2008-02-08 10:10:57 +0000554 if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
555 perror("lseek64");
556 close(fd_msr);
557 return -1;
558 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000559 if (write(fd_msr, buf, 8) < 0) {
560 perror("msr write");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000561 close(fd_msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000562 return -1;
563 }
564
565 close(fd_msr);
566
Uwe Hermann394131e2008-10-18 21:14:13 +0000567#undef MSR_RCONF_DEFAULT
568#undef MSR_NORF_CTL
Lane Brooksd54958a2007-11-13 16:45:22 +0000569 return 0;
570}
571
Uwe Hermann372eeb52007-12-04 21:49:06 +0000572static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000573{
Ollie Lho184a4042005-11-26 21:55:36 +0000574 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000575
Ollie Lhocbbf1252004-03-17 22:22:08 +0000576 pci_write_byte(dev, 0x52, 0xee);
577
578 new = pci_read_byte(dev, 0x52);
579
580 if (new != 0xee) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000581 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 +0000582 return -1;
583 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000584
Ollie Lhocbbf1252004-03-17 22:22:08 +0000585 return 0;
586}
587
Uwe Hermann372eeb52007-12-04 21:49:06 +0000588static int enable_flash_sis5595(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000589{
Ollie Lho184a4042005-11-26 21:55:36 +0000590 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000591
Ollie Lhocbbf1252004-03-17 22:22:08 +0000592 new = pci_read_byte(dev, 0x45);
593
Uwe Hermann372eeb52007-12-04 21:49:06 +0000594 new &= (~0x20); /* Clear bit 5. */
595 new |= 0x4; /* Set bit 2. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000596
597 pci_write_byte(dev, 0x45, new);
598
599 newer = pci_read_byte(dev, 0x45);
600 if (newer != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000601 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 +0000602 printf("Stuck at 0x%x\n", newer);
603 return -1;
604 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000605
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000606 /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
Uwe Hermann394131e2008-10-18 21:14:13 +0000607 new = pci_read_byte(dev, 0x40);
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000608 new &= 0xFB;
609 new |= 0x3;
Uwe Hermann394131e2008-10-18 21:14:13 +0000610 pci_write_byte(dev, 0x40, new);
611 newer = pci_read_byte(dev, 0x40);
Urja Rannikkoa88daa72008-10-18 13:54:30 +0000612 if (newer != new) {
613 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name);
614 printf("Stuck at 0x%x\n", newer);
615 return -1;
616 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000617 return 0;
618}
619
Uwe Hermann190f8492008-10-25 18:03:50 +0000620/* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000621static int enable_flash_amd8111(struct pci_dev *dev, const char *name)
Ollie Lho761bf1b2004-03-20 16:46:10 +0000622{
Ollie Lho184a4042005-11-26 21:55:36 +0000623 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000624
Uwe Hermann372eeb52007-12-04 21:49:06 +0000625 /* Enable decoding at 0xffb00000 to 0xffffffff. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000626 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000627 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000628 if (new != old) {
629 pci_write_byte(dev, 0x43, new);
630 if (pci_read_byte(dev, 0x43) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000631 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 +0000632 }
633 }
634
Uwe Hermann190f8492008-10-25 18:03:50 +0000635 /* Enable 'ROM write' bit. */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000636 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000637 new = old | 0x01;
638 if (new == old)
639 return 0;
640 pci_write_byte(dev, 0x40, new);
641
642 if (pci_read_byte(dev, 0x40) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000643 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 +0000644 return -1;
645 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000646
Ollie Lhocbbf1252004-03-17 22:22:08 +0000647 return 0;
648}
649
Marc Jones3af487d2008-10-15 17:50:29 +0000650static int enable_flash_sb600(struct pci_dev *dev, const char *name)
651{
Jason Wanga3f04be2008-11-28 21:36:51 +0000652 uint32_t tmp, low_bits, num;
Marc Jones3af487d2008-10-15 17:50:29 +0000653 uint8_t reg;
654
Jason Wanga3f04be2008-11-28 21:36:51 +0000655 low_bits = tmp = pci_read_long(dev, 0xa0);
656 low_bits &= ~0xffffc000; /* for mmap aligning requirements */
657 low_bits &= 0xfffffff0; /* remove low 4 bits */
658 tmp &= 0xffffc000;
659 printf_debug("SPI base address is at 0x%x\n", tmp + low_bits);
660
661 sb600_spibar = mmap(0, 0x4000, PROT_READ | PROT_WRITE, MAP_SHARED,
662 fd_mem, (off_t)tmp);
663 if (sb600_spibar == MAP_FAILED) {
664 perror("Can't mmap memory using " MEM_DEV);
665 exit(1);
Marc Jones3af487d2008-10-15 17:50:29 +0000666 }
Jason Wanga3f04be2008-11-28 21:36:51 +0000667 sb600_spibar += low_bits;
668
669 /* Clear ROM protect 0-3. */
670 for (reg = 0x50; reg < 0x60; reg += 4) {
671 num = pci_read_long(dev, reg);
672 num &= 0xfffffffc;
673 pci_write_byte(dev, reg, num);
674 }
675
676 flashbus = BUS_TYPE_SB600_SPI;
677
678 /* Enable SPI ROM in SB600 PM register. */
679 OUTB(0x8f, 0xcd6);
680 OUTB(0x0e, 0xcd7);
Marc Jones3af487d2008-10-15 17:50:29 +0000681
682 return 0;
683}
684
Uwe Hermann372eeb52007-12-04 21:49:06 +0000685static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu952dfce2005-07-06 17:13:46 +0000686{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000687 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000688
Uwe Hermanna7e05482007-05-09 10:17:44 +0000689 old = pci_read_byte(dev, 0x88);
690 new = old | 0xc0;
691 if (new != old) {
692 pci_write_byte(dev, 0x88, new);
693 if (pci_read_byte(dev, 0x88) != new) {
694 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
695 }
696 }
Yinghai Lu952dfce2005-07-06 17:13:46 +0000697
Uwe Hermanna7e05482007-05-09 10:17:44 +0000698 old = pci_read_byte(dev, 0x6d);
699 new = old | 0x01;
700 if (new == old)
701 return 0;
702 pci_write_byte(dev, 0x6d, new);
703
704 if (pci_read_byte(dev, 0x6d) != new) {
705 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
706 return -1;
707 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000708
Uwe Hermanna7e05482007-05-09 10:17:44 +0000709 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000710}
711
Uwe Hermann372eeb52007-12-04 21:49:06 +0000712/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
713static int enable_flash_sb400(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000714{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000715 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000716 struct pci_filter f;
717 struct pci_dev *smbusdev;
718
Uwe Hermann372eeb52007-12-04 21:49:06 +0000719 /* Look for the SMBus device. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000720 pci_filter_init((struct pci_access *)0, &f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000721 f.vendor = 0x1002;
722 f.device = 0x4372;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000723
Stefan Reinauer86de2832006-03-31 11:26:55 +0000724 for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
Uwe Hermann394131e2008-10-18 21:14:13 +0000725 if (pci_filter_match(&f, smbusdev))
Stefan Reinauer86de2832006-03-31 11:26:55 +0000726 break;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000727 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000728
Uwe Hermanna7e05482007-05-09 10:17:44 +0000729 if (!smbusdev) {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000730 fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n");
Stefan Reinauer86de2832006-03-31 11:26:55 +0000731 exit(1);
732 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000733
Uwe Hermann372eeb52007-12-04 21:49:06 +0000734 /* Enable some SMBus stuff. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000735 tmp = pci_read_byte(smbusdev, 0x79);
736 tmp |= 0x01;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000737 pci_write_byte(smbusdev, 0x79, tmp);
738
Uwe Hermann372eeb52007-12-04 21:49:06 +0000739 /* Change southbridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000740 tmp = pci_read_byte(dev, 0x48);
741 tmp |= 0x21;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000742 pci_write_byte(dev, 0x48, tmp);
743
Uwe Hermann372eeb52007-12-04 21:49:06 +0000744 /* Now become a bit silly. */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000745 tmp = INB(0xc6f);
746 OUTB(tmp, 0xeb);
747 OUTB(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000748 tmp |= 0x40;
Andriy Gapon65c1b862008-05-22 13:22:45 +0000749 OUTB(tmp, 0xc6f);
750 OUTB(tmp, 0xeb);
751 OUTB(tmp, 0xeb);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000752
753 return 0;
754}
755
Uwe Hermann372eeb52007-12-04 21:49:06 +0000756static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
Yinghai Luca782972007-01-22 20:21:17 +0000757{
Uwe Hermann372eeb52007-12-04 21:49:06 +0000758 uint8_t old, new, byte;
759 uint16_t word;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000760
Uwe Hermann372eeb52007-12-04 21:49:06 +0000761 /* Set the 0-16 MB enable bits. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000762 byte = pci_read_byte(dev, 0x88);
763 byte |= 0xff; /* 256K */
764 pci_write_byte(dev, 0x88, byte);
765 byte = pci_read_byte(dev, 0x8c);
766 byte |= 0xff; /* 1M */
767 pci_write_byte(dev, 0x8c, byte);
768 word = pci_read_word(dev, 0x90);
Carl-Daniel Hailfingerdca0ab12007-10-17 22:30:07 +0000769 word |= 0x7fff; /* 16M */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000770 pci_write_word(dev, 0x90, word);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000771
Uwe Hermanna7e05482007-05-09 10:17:44 +0000772 old = pci_read_byte(dev, 0x6d);
773 new = old | 0x01;
774 if (new == old)
775 return 0;
776 pci_write_byte(dev, 0x6d, new);
Yinghai Luca782972007-01-22 20:21:17 +0000777
Uwe Hermanna7e05482007-05-09 10:17:44 +0000778 if (pci_read_byte(dev, 0x6d) != new) {
Uwe Hermann394131e2008-10-18 21:14:13 +0000779 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 +0000780 return -1;
781 }
Yinghai Luca782972007-01-22 20:21:17 +0000782
783 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000784}
785
Uwe Hermann372eeb52007-12-04 21:49:06 +0000786static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000787{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000788 uint8_t byte;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000789
Uwe Hermanne823ee02007-06-05 15:02:18 +0000790 /* Set the 4MB enable bit. */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000791 byte = pci_read_byte(dev, 0x41);
792 byte |= 0x0e;
793 pci_write_byte(dev, 0x41, byte);
794
795 byte = pci_read_byte(dev, 0x43);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000796 byte |= (1 << 4);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000797 pci_write_byte(dev, 0x43, byte);
798
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000799 return 0;
800}
801
Stefan Reinauer9a6d1762008-12-03 21:24:40 +0000802/**
803 * Usually on the x86 architectures (and on other PC-like platforms like some
804 * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD
805 * Elan SC520 only a small piece of the system flash is mapped there, but the
806 * complete flash is mapped somewhere below 1G. The position can be determined
807 * by the BOOTCS PAR register.
808 */
809static int get_flashbase_sc520(struct pci_dev *dev, const char *name)
810{
811 int i, bootcs_found = 0;
812 uint32_t parx = 0;
813 void *mmcr;
814
815 /* 1. Map MMCR */
816 mmcr = mmap(0, getpagesize(), PROT_WRITE | PROT_READ,
817 MAP_SHARED, fd_mem, (off_t)0xFFFEF000);
818
819 if (mmcr == MAP_FAILED) {
820 perror("Can't mmap Elan SC520 specific registers using " MEM_DEV);
821 exit(1);
822 }
823
824 /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for
825 * BOOTCS region (PARx[31:29] = 100b)e
826 */
827 for (i = 0x88; i <= 0xc4; i += 4) {
828 parx = *(volatile uint32_t *)(mmcr + i);
829 if ((parx >> 29) == 4) {
830 bootcs_found = 1;
831 break; /* BOOTCS found */
832 }
833 }
834
835 /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0]
836 * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0]
837 */
838 if (bootcs_found) {
839 if (parx & (1 << 25)) {
840 parx &= (1 << 14) - 1; /* Mask [13:0] */
841 flashbase = parx << 16;
842 } else {
843 parx &= (1 << 18) - 1; /* Mask [17:0] */
844 flashbase = parx << 12;
845 }
846 } else {
847 printf("AMD Elan SC520 detected, but no BOOTCS. Assuming flash at 4G\n");
848 }
849
850 /* 4. Clean up */
851 munmap (mmcr, getpagesize());
852 return 0;
853}
854
Ollie Lhocbbf1252004-03-17 22:22:08 +0000855typedef struct penable {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000856 uint16_t vendor, device;
857 const char *name;
858 int (*doit) (struct pci_dev *dev, const char *name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000859} FLASH_ENABLE;
860
Uwe Hermann372eeb52007-12-04 21:49:06 +0000861static const FLASH_ENABLE enables[] = {
Uwe Hermanneac10162008-03-13 18:52:51 +0000862 {0x1039, 0x0630, "SiS630", enable_flash_sis630},
Uwe Hermann87203452008-10-26 18:40:42 +0000863 {0x8086, 0x122e, "Intel PIIX", enable_flash_piix4},
Uwe Hermannc556d322008-10-28 11:50:05 +0000864 {0x8086, 0x1234, "Intel MPIIX", enable_flash_piix4},
Uwe Hermann87203452008-10-26 18:40:42 +0000865 {0x8086, 0x7000, "Intel PIIX3", enable_flash_piix4},
Uwe Hermanneac10162008-03-13 18:52:51 +0000866 {0x8086, 0x7110, "Intel PIIX4/4E/4M", enable_flash_piix4},
867 {0x8086, 0x7198, "Intel 440MX", enable_flash_piix4},
868 {0x8086, 0x2410, "Intel ICH", enable_flash_ich_4e},
869 {0x8086, 0x2420, "Intel ICH0", enable_flash_ich_4e},
870 {0x8086, 0x2440, "Intel ICH2", enable_flash_ich_4e},
871 {0x8086, 0x244c, "Intel ICH2-M", enable_flash_ich_4e},
872 {0x8086, 0x2480, "Intel ICH3-S", enable_flash_ich_4e},
873 {0x8086, 0x248c, "Intel ICH3-M", enable_flash_ich_4e},
874 {0x8086, 0x24c0, "Intel ICH4/ICH4-L", enable_flash_ich_4e},
875 {0x8086, 0x24cc, "Intel ICH4-M", enable_flash_ich_4e},
876 {0x8086, 0x24d0, "Intel ICH5/ICH5R", enable_flash_ich_4e},
Claus Gindharta00e2a02008-05-14 12:22:38 +0000877 {0x8086, 0x25a1, "Intel 6300ESB", enable_flash_ich_4e},
Uwe Hermanneac10162008-03-13 18:52:51 +0000878 {0x8086, 0x2640, "Intel ICH6/ICH6R", enable_flash_ich_dc},
879 {0x8086, 0x2641, "Intel ICH6-M", enable_flash_ich_dc},
Ed Swierkb759db22008-10-29 14:54:36 +0000880 {0x8086, 0x5031, "Intel EP80579", enable_flash_ich7},
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000881 {0x8086, 0x27b0, "Intel ICH7DH", enable_flash_ich7},
882 {0x8086, 0x27b8, "Intel ICH7/ICH7R", enable_flash_ich7},
883 {0x8086, 0x27b9, "Intel ICH7M", enable_flash_ich7},
884 {0x8086, 0x27bd, "Intel ICH7MDH", enable_flash_ich7},
885 {0x8086, 0x2810, "Intel ICH8/ICH8R", enable_flash_ich8},
886 {0x8086, 0x2811, "Intel ICH8M-E", enable_flash_ich8},
887 {0x8086, 0x2812, "Intel ICH8DH", enable_flash_ich8},
888 {0x8086, 0x2814, "Intel ICH8DO", enable_flash_ich8},
889 {0x8086, 0x2815, "Intel ICH8M", enable_flash_ich8},
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000890 {0x8086, 0x2912, "Intel ICH9DH", enable_flash_ich9},
891 {0x8086, 0x2914, "Intel ICH9DO", enable_flash_ich9},
892 {0x8086, 0x2916, "Intel ICH9R", enable_flash_ich9},
893 {0x8086, 0x2917, "Intel ICH9M-E", enable_flash_ich9},
894 {0x8086, 0x2918, "Intel ICH9", enable_flash_ich9},
895 {0x8086, 0x2919, "Intel ICH9M", enable_flash_ich9},
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000896 {0x8086, 0x3a14, "Intel ICH10DO", enable_flash_ich10},
897 {0x8086, 0x3a16, "Intel ICH10R", enable_flash_ich10},
898 {0x8086, 0x3a18, "Intel ICH10", enable_flash_ich10},
899 {0x8086, 0x3a1a, "Intel ICH10D", enable_flash_ich10},
Uwe Hermanneac10162008-03-13 18:52:51 +0000900 {0x1106, 0x8231, "VIA VT8231", enable_flash_vt823x},
901 {0x1106, 0x3177, "VIA VT8235", enable_flash_vt823x},
902 {0x1106, 0x3227, "VIA VT8237", enable_flash_vt823x},
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000903 {0x1106, 0x3372, "VIA VT8237S", enable_flash_vt8237s_spi},
Uwe Hermanneac10162008-03-13 18:52:51 +0000904 {0x1106, 0x8324, "VIA CX700", enable_flash_vt823x},
Uwe Hermann190f8492008-10-25 18:03:50 +0000905 {0x1106, 0x0586, "VIA VT82C586A/B", enable_flash_amd8111},
906 {0x1106, 0x0686, "VIA VT82C686A/B", enable_flash_amd8111},
Uwe Hermanneac10162008-03-13 18:52:51 +0000907 {0x1078, 0x0100, "AMD CS5530(A)", enable_flash_cs5530},
908 {0x100b, 0x0510, "AMD SC1100", enable_flash_sc1100},
909 {0x1039, 0x0008, "SiS5595", enable_flash_sis5595},
910 {0x1022, 0x2080, "AMD CS5536", enable_flash_cs5536},
911 {0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
Marc Jones3af487d2008-10-15 17:50:29 +0000912 {0x1002, 0x438D, "ATI(AMD) SB600", enable_flash_sb600},
Uwe Hermanneac10162008-03-13 18:52:51 +0000913 {0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533},
914 {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, /* LPC */
915 {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, /* Pro */
916 /* Slave, should not be here, to fix known bug for A01. */
917 {0x10de, 0x00d3, "NVIDIA CK804", enable_flash_ck804},
918 {0x10de, 0x0260, "NVIDIA MCP51", enable_flash_ck804},
919 {0x10de, 0x0261, "NVIDIA MCP51", enable_flash_ck804},
920 {0x10de, 0x0262, "NVIDIA MCP51", enable_flash_ck804},
921 {0x10de, 0x0263, "NVIDIA MCP51", enable_flash_ck804},
922 {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, /* M57SLI*/
923 {0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
924 {0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
925 {0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
926 {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
927 {0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
928 {0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
929 {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, /* Pro */
Stefan Reinauer7f274642008-07-05 09:48:30 +0000930 {0x10de, 0x0548, "NVIDIA MCP67", enable_flash_mcp55},
Uwe Hermanneac10162008-03-13 18:52:51 +0000931 {0x1002, 0x4377, "ATI SB400", enable_flash_sb400},
932 {0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
Stefan Reinauer9a6d1762008-12-03 21:24:40 +0000933 {0x1022, 0x3000, "AMD Elan SC520", get_flashbase_sc520},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000934};
Ollie Lho761bf1b2004-03-20 16:46:10 +0000935
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000936void print_supported_chipsets(void)
937{
938 int i;
939
940 printf("\nSupported chipsets:\n\n");
941
942 for (i = 0; i < ARRAY_SIZE(enables); i++)
943 printf("%s (%04x:%04x)\n", enables[i].name,
944 enables[i].vendor, enables[i].device);
945}
946
Uwe Hermanna7e05482007-05-09 10:17:44 +0000947int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000948{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000949 struct pci_dev *dev = 0;
Uwe Hermann372eeb52007-12-04 21:49:06 +0000950 int ret = -2; /* Nothing! */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000951 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000952
Uwe Hermann372eeb52007-12-04 21:49:06 +0000953 /* Now let's try to find the chipset we have... */
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000954 for (i = 0; i < ARRAY_SIZE(enables); i++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000955 dev = pci_dev_find(enables[i].vendor, enables[i].device);
956 if (dev)
957 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000958 }
959
Uwe Hermanna7e05482007-05-09 10:17:44 +0000960 if (dev) {
Uwe Hermanna502dce2007-10-17 23:55:15 +0000961 printf("Found chipset \"%s\", enabling flash write... ",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000962 enables[i].name);
963
964 ret = enables[i].doit(dev, enables[i].name);
965 if (ret)
Uwe Hermanna502dce2007-10-17 23:55:15 +0000966 printf("FAILED!\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000967 else
Uwe Hermannac309342007-10-10 17:42:20 +0000968 printf("OK.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000969 }
970
971 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000972}