blob: 3dec881ed1c44089f6f341f2519b835b4d00f480 [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. */
Ollie Lhocbbf1252004-03-17 22:22:08 +000068 outb(0x87, 0x2e);
69 outb(0x01, 0x2e);
70 outb(0x55, 0x2e);
71 outb(0x55, 0x2e);
72
73 if (inb(0x2f) != 0x87) {
Uwe Hermann372eeb52007-12-04 21:49:06 +000074 /* If that failed, try config port 0x4e. */
Ollie Lhocbbf1252004-03-17 22:22:08 +000075 outb(0x87, 0x4e);
76 outb(0x01, 0x4e);
77 outb(0x55, 0x4e);
78 outb(0xaa, 0x4e);
79 if (inb(0x4f) != 0x87) {
80 printf("Can not access SiS 950\n");
81 return -1;
82 }
83 outb(0x24, 0x4e);
84 b = inb(0x4f) | 0xfc;
85 outb(0x24, 0x4e);
86 outb(b, 0x4f);
87 outb(0x02, 0x4e);
Ollie Lho761bf1b2004-03-20 16:46:10 +000088 outb(0x02, 0x4f);
Ollie Lhocbbf1252004-03-17 22:22:08 +000089 }
90
91 outb(0x24, 0x2e);
92 printf("2f is %#x\n", inb(0x2f));
93 b = inb(0x2f) | 0xfc;
94 outb(0x24, 0x2e);
95 outb(b, 0x2f);
96
97 outb(0x02, 0x2e);
98 outb(0x02, 0x2f);
99
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
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000157 printf_debug("BIOS Lock Enable: %sabled, ",
158 (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
190static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name, unsigned long spibar)
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000191{
192 uint8_t old, new, bbs;
193 uint32_t tmp, gcs;
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000194 void *rcrb;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000195
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000196 /* Read the Root Complex Base Address Register (RCBA) */
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000197 tmp = pci_read_long(dev, 0xf0);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000198 /* Calculate the Root Complex Register Block address */
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000199 tmp &= 0xffffc000;
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000200 printf_debug("Root Complex Register Block address = 0x%x\n", tmp);
201 rcrb = mmap(0, 0x4000, PROT_READ, MAP_SHARED, fd_mem, (off_t)tmp);
202 if (rcrb == MAP_FAILED) {
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000203 perror("Can't mmap memory using " MEM_DEV);
204 exit(1);
205 }
206 printf_debug("GCS address = 0x%x\n", tmp + 0x3410);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000207 gcs = *(volatile uint32_t *)(rcrb + 0x3410);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000208 printf_debug("GCS = 0x%x: ", gcs);
209 printf_debug("BIOS Interface Lock-Down: %sabled, ",
210 (gcs & 0x1) ? "en" : "dis");
211 bbs = (gcs >> 10) & 0x3;
212 printf_debug("BOOT BIOS Straps: 0x%x (%s)\n", bbs,
213 (bbs == 0x3) ? "LPC" : ((bbs == 0x2) ? "PCI" : "SPI"));
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000214
215 /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
216 printf_debug("SPIBAR = 0x%lx\n", tmp + spibar);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000217 /* TODO: Dump the SPI config regs */
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000218 ich_spibar = rcrb + spibar;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000219
220 old = pci_read_byte(dev, 0xdc);
221 printf_debug("SPI Read Configuration: ");
222 new = (old >> 2) & 0x3;
223 switch (new) {
224 case 0:
225 case 1:
226 case 2:
227 printf_debug("prefetching %sabled, caching %sabled, ",
228 (new & 0x2) ? "en" : "dis", (new & 0x1) ? "dis" : "en");
229 break;
230 default:
231 printf_debug("invalid prefetching/caching settings, ");
232 break;
233 }
234 return enable_flash_ich_dc(dev, name);
235}
236
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000237static int enable_flash_ich78(struct pci_dev *dev, const char *name)
238{
239 return enable_flash_ich_dc_spi(dev, name, 0x3020);
240}
241
242int ich9_detected = 0;
243
244static int enable_flash_ich9(struct pci_dev *dev, const char *name)
245{
246 ich9_detected = 1;
247 return enable_flash_ich_dc_spi(dev, name, 0x3800);
248}
249
Uwe Hermann372eeb52007-12-04 21:49:06 +0000250static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000251{
Ollie Lho184a4042005-11-26 21:55:36 +0000252 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000253
Bari Ari9477c4e2008-04-29 13:46:38 +0000254 /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF*/
255 pci_write_byte(dev, 0x41, 0x7f);
256
Uwe Hermannffec5f32007-08-23 16:08:21 +0000257 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000258 val = pci_read_byte(dev, 0x40);
259 val |= 0x10;
260 pci_write_byte(dev, 0x40, val);
261
262 if (pci_read_byte(dev, 0x40) != val) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000263 printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000264 name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000265 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000266 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000267
Uwe Hermanna7e05482007-05-09 10:17:44 +0000268 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000269}
270
Uwe Hermann372eeb52007-12-04 21:49:06 +0000271static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000272{
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000273 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000274
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000275 #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
276 #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000277
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000278 #define LOWER_ROM_ADDRESS_RANGE (1 << 0)
279 #define ROM_WRITE_ENABLE (1 << 1)
280 #define UPPER_ROM_ADDRESS_RANGE (1 << 2)
281 #define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000282
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000283 /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and
284 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB.
285 * Make the configured ROM areas writable.
286 */
287 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
288 reg8 |= LOWER_ROM_ADDRESS_RANGE;
289 reg8 |= UPPER_ROM_ADDRESS_RANGE;
290 reg8 |= ROM_WRITE_ENABLE;
291 pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000292
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000293 /* Set positive decode on ROM. */
294 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
295 reg8 |= BIOS_ROM_POSITIVE_DECODE;
296 pci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000297
Ollie Lhocbbf1252004-03-17 22:22:08 +0000298 return 0;
299}
300
Mart Raudseppe1344da2008-02-08 10:10:57 +0000301/**
302 * Geode systems write protect the BIOS via RCONFs (cache settings similar
303 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. Reading and
304 * writing to MSRs, however requires instructions rdmsr/wrmsr, which are
305 * ring0 privileged instructions so only the kernel can do the read/write.
306 * This function, therefore, requires that the msr kernel module be loaded
307 * to access these instructions from user space using device /dev/cpu/0/msr.
308 *
309 * This hard-coded location could have potential problems on SMP machines
310 * since it assumes cpu0, but it is safe on the Geode which is not SMP.
311 *
312 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
313 * To enable write to NOR Boot flash for the benefit of systems that have such
314 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
315 *
316 * This is probably not portable beyond Linux.
317 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000318static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
Lane Brooksd54958a2007-11-13 16:45:22 +0000319{
Mart Raudseppe1344da2008-02-08 10:10:57 +0000320 #define MSR_RCONF_DEFAULT 0x1808
321 #define MSR_NORF_CTL 0x51400018
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000322
Lane Brooksd54958a2007-11-13 16:45:22 +0000323 int fd_msr;
324 unsigned char buf[8];
Lane Brooksd54958a2007-11-13 16:45:22 +0000325
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000326 fd_msr = open("/dev/cpu/0/msr", O_RDWR);
Lane Brooksd54958a2007-11-13 16:45:22 +0000327 if (!fd_msr) {
328 perror("open msr");
329 return -1;
330 }
Mart Raudseppe1344da2008-02-08 10:10:57 +0000331
332 if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
333 perror("lseek64");
Mart Raudsepp3697ac72008-02-11 14:32:45 +0000334 printf("Cannot operate on MSR. Did you run 'modprobe msr'?\n");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000335 close(fd_msr);
336 return -1;
337 }
338
339 if (read(fd_msr, buf, 8) != 8) {
Mart Raudsepp3697ac72008-02-11 14:32:45 +0000340 perror("read msr");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000341 close(fd_msr);
342 return -1;
343 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000344
Lane Brooksd54958a2007-11-13 16:45:22 +0000345 if (buf[7] != 0x22) {
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000346 buf[7] &= 0xfb;
Mart Raudseppe1344da2008-02-08 10:10:57 +0000347 if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
348 perror("lseek64");
349 close(fd_msr);
350 return -1;
351 }
352
Lane Brooksd54958a2007-11-13 16:45:22 +0000353 if (write(fd_msr, buf, 8) < 0) {
354 perror("msr write");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000355 close(fd_msr);
Lane Brooksd54958a2007-11-13 16:45:22 +0000356 return -1;
357 }
Lane Brooksd54958a2007-11-13 16:45:22 +0000358 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000359
Mart Raudseppe1344da2008-02-08 10:10:57 +0000360 if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
361 perror("lseek64");
362 close(fd_msr);
363 return -1;
364 }
365
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000366 if (read(fd_msr, buf, 8) != 8) {
367 perror("read msr");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000368 close(fd_msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000369 return -1;
370 }
371
372 /* Raise WE_CS3 bit. */
373 buf[0] |= 0x08;
374
Mart Raudseppe1344da2008-02-08 10:10:57 +0000375 if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
376 perror("lseek64");
377 close(fd_msr);
378 return -1;
379 }
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000380 if (write(fd_msr, buf, 8) < 0) {
381 perror("msr write");
Mart Raudseppe1344da2008-02-08 10:10:57 +0000382 close(fd_msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000383 return -1;
384 }
385
386 close(fd_msr);
387
Mart Raudseppe1344da2008-02-08 10:10:57 +0000388 #undef MSR_RCONF_DEFAULT
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000389 #undef MSR_NORF_CTL
Lane Brooksd54958a2007-11-13 16:45:22 +0000390 return 0;
391}
392
Uwe Hermann372eeb52007-12-04 21:49:06 +0000393static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000394{
Ollie Lho184a4042005-11-26 21:55:36 +0000395 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000396
Ollie Lhocbbf1252004-03-17 22:22:08 +0000397 pci_write_byte(dev, 0x52, 0xee);
398
399 new = pci_read_byte(dev, 0x52);
400
401 if (new != 0xee) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000402 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 +0000403 return -1;
404 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000405
Ollie Lhocbbf1252004-03-17 22:22:08 +0000406 return 0;
407}
408
Uwe Hermann372eeb52007-12-04 21:49:06 +0000409static int enable_flash_sis5595(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000410{
Ollie Lho184a4042005-11-26 21:55:36 +0000411 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000412
Ollie Lhocbbf1252004-03-17 22:22:08 +0000413 new = pci_read_byte(dev, 0x45);
414
Uwe Hermann372eeb52007-12-04 21:49:06 +0000415 new &= (~0x20); /* Clear bit 5. */
416 new |= 0x4; /* Set bit 2. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000417
418 pci_write_byte(dev, 0x45, new);
419
420 newer = pci_read_byte(dev, 0x45);
421 if (newer != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000422 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 +0000423 printf("Stuck at 0x%x\n", newer);
424 return -1;
425 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000426
Ollie Lhocbbf1252004-03-17 22:22:08 +0000427 return 0;
428}
429
Uwe Hermann372eeb52007-12-04 21:49:06 +0000430static int enable_flash_amd8111(struct pci_dev *dev, const char *name)
Ollie Lho761bf1b2004-03-20 16:46:10 +0000431{
Ollie Lho184a4042005-11-26 21:55:36 +0000432 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000433
Uwe Hermann372eeb52007-12-04 21:49:06 +0000434 /* Enable decoding at 0xffb00000 to 0xffffffff. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000435 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000436 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000437 if (new != old) {
438 pci_write_byte(dev, 0x43, new);
439 if (pci_read_byte(dev, 0x43) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000440 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 +0000441 }
442 }
443
Ollie Lho761bf1b2004-03-20 16:46:10 +0000444 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000445 new = old | 0x01;
446 if (new == old)
447 return 0;
448 pci_write_byte(dev, 0x40, new);
449
450 if (pci_read_byte(dev, 0x40) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000451 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 +0000452 return -1;
453 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000454
Ollie Lhocbbf1252004-03-17 22:22:08 +0000455 return 0;
456}
457
Uwe Hermann372eeb52007-12-04 21:49:06 +0000458static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu952dfce2005-07-06 17:13:46 +0000459{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000460 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000461
Uwe Hermanna7e05482007-05-09 10:17:44 +0000462 old = pci_read_byte(dev, 0x88);
463 new = old | 0xc0;
464 if (new != old) {
465 pci_write_byte(dev, 0x88, new);
466 if (pci_read_byte(dev, 0x88) != new) {
467 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
468 }
469 }
Yinghai Lu952dfce2005-07-06 17:13:46 +0000470
Uwe Hermanna7e05482007-05-09 10:17:44 +0000471 old = pci_read_byte(dev, 0x6d);
472 new = old | 0x01;
473 if (new == old)
474 return 0;
475 pci_write_byte(dev, 0x6d, new);
476
477 if (pci_read_byte(dev, 0x6d) != new) {
478 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
479 return -1;
480 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000481
Uwe Hermanna7e05482007-05-09 10:17:44 +0000482 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000483}
484
Uwe Hermann372eeb52007-12-04 21:49:06 +0000485/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
486static int enable_flash_sb400(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000487{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000488 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000489 struct pci_filter f;
490 struct pci_dev *smbusdev;
491
Uwe Hermann372eeb52007-12-04 21:49:06 +0000492 /* Look for the SMBus device. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000493 pci_filter_init((struct pci_access *)0, &f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000494 f.vendor = 0x1002;
495 f.device = 0x4372;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000496
Stefan Reinauer86de2832006-03-31 11:26:55 +0000497 for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
498 if (pci_filter_match(&f, smbusdev)) {
499 break;
500 }
501 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000502
Uwe Hermanna7e05482007-05-09 10:17:44 +0000503 if (!smbusdev) {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000504 fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n");
Stefan Reinauer86de2832006-03-31 11:26:55 +0000505 exit(1);
506 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000507
Uwe Hermann372eeb52007-12-04 21:49:06 +0000508 /* Enable some SMBus stuff. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000509 tmp = pci_read_byte(smbusdev, 0x79);
510 tmp |= 0x01;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000511 pci_write_byte(smbusdev, 0x79, tmp);
512
Uwe Hermann372eeb52007-12-04 21:49:06 +0000513 /* Change southbridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000514 tmp = pci_read_byte(dev, 0x48);
515 tmp |= 0x21;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000516 pci_write_byte(dev, 0x48, tmp);
517
Uwe Hermann372eeb52007-12-04 21:49:06 +0000518 /* Now become a bit silly. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000519 tmp = inb(0xc6f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000520 outb(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000521 outb(tmp, 0xeb);
522 tmp |= 0x40;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000523 outb(tmp, 0xc6f);
524 outb(tmp, 0xeb);
525 outb(tmp, 0xeb);
526
527 return 0;
528}
529
Uwe Hermann372eeb52007-12-04 21:49:06 +0000530static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
Yinghai Luca782972007-01-22 20:21:17 +0000531{
Uwe Hermann372eeb52007-12-04 21:49:06 +0000532 uint8_t old, new, byte;
533 uint16_t word;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000534
Uwe Hermann372eeb52007-12-04 21:49:06 +0000535 /* Set the 0-16 MB enable bits. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000536 byte = pci_read_byte(dev, 0x88);
537 byte |= 0xff; /* 256K */
538 pci_write_byte(dev, 0x88, byte);
539 byte = pci_read_byte(dev, 0x8c);
540 byte |= 0xff; /* 1M */
541 pci_write_byte(dev, 0x8c, byte);
542 word = pci_read_word(dev, 0x90);
Carl-Daniel Hailfingerdca0ab12007-10-17 22:30:07 +0000543 word |= 0x7fff; /* 16M */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000544 pci_write_word(dev, 0x90, word);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000545
Uwe Hermanna7e05482007-05-09 10:17:44 +0000546 old = pci_read_byte(dev, 0x6d);
547 new = old | 0x01;
548 if (new == old)
549 return 0;
550 pci_write_byte(dev, 0x6d, new);
Yinghai Luca782972007-01-22 20:21:17 +0000551
Uwe Hermanna7e05482007-05-09 10:17:44 +0000552 if (pci_read_byte(dev, 0x6d) != new) {
553 printf
554 ("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
555 0x6d, new, name);
556 return -1;
557 }
Yinghai Luca782972007-01-22 20:21:17 +0000558
559 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000560}
561
Uwe Hermann372eeb52007-12-04 21:49:06 +0000562static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000563{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000564 uint8_t byte;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000565
Uwe Hermanne823ee02007-06-05 15:02:18 +0000566 /* Set the 4MB enable bit. */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000567 byte = pci_read_byte(dev, 0x41);
568 byte |= 0x0e;
569 pci_write_byte(dev, 0x41, byte);
570
571 byte = pci_read_byte(dev, 0x43);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000572 byte |= (1 << 4);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000573 pci_write_byte(dev, 0x43, byte);
574
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000575 return 0;
576}
577
Ollie Lhocbbf1252004-03-17 22:22:08 +0000578typedef struct penable {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000579 uint16_t vendor, device;
580 const char *name;
581 int (*doit) (struct pci_dev *dev, const char *name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000582} FLASH_ENABLE;
583
Uwe Hermann372eeb52007-12-04 21:49:06 +0000584static const FLASH_ENABLE enables[] = {
Uwe Hermanneac10162008-03-13 18:52:51 +0000585 {0x1039, 0x0630, "SiS630", enable_flash_sis630},
586 {0x8086, 0x7110, "Intel PIIX4/4E/4M", enable_flash_piix4},
587 {0x8086, 0x7198, "Intel 440MX", enable_flash_piix4},
588 {0x8086, 0x2410, "Intel ICH", enable_flash_ich_4e},
589 {0x8086, 0x2420, "Intel ICH0", enable_flash_ich_4e},
590 {0x8086, 0x2440, "Intel ICH2", enable_flash_ich_4e},
591 {0x8086, 0x244c, "Intel ICH2-M", enable_flash_ich_4e},
592 {0x8086, 0x2480, "Intel ICH3-S", enable_flash_ich_4e},
593 {0x8086, 0x248c, "Intel ICH3-M", enable_flash_ich_4e},
594 {0x8086, 0x24c0, "Intel ICH4/ICH4-L", enable_flash_ich_4e},
595 {0x8086, 0x24cc, "Intel ICH4-M", enable_flash_ich_4e},
596 {0x8086, 0x24d0, "Intel ICH5/ICH5R", enable_flash_ich_4e},
Claus Gindharta00e2a02008-05-14 12:22:38 +0000597 {0x8086, 0x25a1, "Intel 6300ESB", enable_flash_ich_4e},
Uwe Hermanneac10162008-03-13 18:52:51 +0000598 {0x8086, 0x2640, "Intel ICH6/ICH6R", enable_flash_ich_dc},
599 {0x8086, 0x2641, "Intel ICH6-M", enable_flash_ich_dc},
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000600 {0x8086, 0x27b0, "Intel ICH7DH", enable_flash_ich78},
601 {0x8086, 0x27b8, "Intel ICH7/ICH7R", enable_flash_ich78},
602 {0x8086, 0x27b9, "Intel ICH7M", enable_flash_ich78},
603 {0x8086, 0x27bd, "Intel ICH7MDH", enable_flash_ich78},
604 {0x8086, 0x2810, "Intel ICH8/ICH8R", enable_flash_ich78},
605 {0x8086, 0x2811, "Intel ICH8M-E", enable_flash_ich78},
606 {0x8086, 0x2812, "Intel ICH8DH", enable_flash_ich78},
607 {0x8086, 0x2814, "Intel ICH8DO", enable_flash_ich78},
608 {0x8086, 0x2815, "Intel ICH8M", enable_flash_ich78},
609 {0x8086, 0x2912, "Intel ICH9DH", enable_flash_ich9},
610 {0x8086, 0x2914, "Intel ICH9DO", enable_flash_ich9},
611 {0x8086, 0x2916, "Intel ICH9R", enable_flash_ich9},
612 {0x8086, 0x2917, "Intel ICH9M-E", enable_flash_ich9},
613 {0x8086, 0x2918, "Intel ICH9", enable_flash_ich9},
614 {0x8086, 0x2919, "Intel ICH9M", enable_flash_ich9},
Uwe Hermanneac10162008-03-13 18:52:51 +0000615 {0x1106, 0x8231, "VIA VT8231", enable_flash_vt823x},
616 {0x1106, 0x3177, "VIA VT8235", enable_flash_vt823x},
617 {0x1106, 0x3227, "VIA VT8237", enable_flash_vt823x},
618 {0x1106, 0x8324, "VIA CX700", enable_flash_vt823x},
619 {0x1106, 0x0686, "VIA VT82C686", enable_flash_amd8111},
620 {0x1078, 0x0100, "AMD CS5530(A)", enable_flash_cs5530},
621 {0x100b, 0x0510, "AMD SC1100", enable_flash_sc1100},
622 {0x1039, 0x0008, "SiS5595", enable_flash_sis5595},
623 {0x1022, 0x2080, "AMD CS5536", enable_flash_cs5536},
624 {0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
625 {0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533},
626 {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, /* LPC */
627 {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, /* Pro */
628 /* Slave, should not be here, to fix known bug for A01. */
629 {0x10de, 0x00d3, "NVIDIA CK804", enable_flash_ck804},
630 {0x10de, 0x0260, "NVIDIA MCP51", enable_flash_ck804},
631 {0x10de, 0x0261, "NVIDIA MCP51", enable_flash_ck804},
632 {0x10de, 0x0262, "NVIDIA MCP51", enable_flash_ck804},
633 {0x10de, 0x0263, "NVIDIA MCP51", enable_flash_ck804},
634 {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, /* M57SLI*/
635 {0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
636 {0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
637 {0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
638 {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
639 {0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
640 {0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
641 {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, /* Pro */
642 {0x1002, 0x4377, "ATI SB400", enable_flash_sb400},
643 {0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000644};
Ollie Lho761bf1b2004-03-20 16:46:10 +0000645
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000646void print_supported_chipsets(void)
647{
648 int i;
649
650 printf("\nSupported chipsets:\n\n");
651
652 for (i = 0; i < ARRAY_SIZE(enables); i++)
653 printf("%s (%04x:%04x)\n", enables[i].name,
654 enables[i].vendor, enables[i].device);
655}
656
Uwe Hermanna7e05482007-05-09 10:17:44 +0000657int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000658{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000659 struct pci_dev *dev = 0;
Uwe Hermann372eeb52007-12-04 21:49:06 +0000660 int ret = -2; /* Nothing! */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000661 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000662
Uwe Hermann372eeb52007-12-04 21:49:06 +0000663 /* Now let's try to find the chipset we have... */
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000664 for (i = 0; i < ARRAY_SIZE(enables); i++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000665 dev = pci_dev_find(enables[i].vendor, enables[i].device);
666 if (dev)
667 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000668 }
669
Uwe Hermanna7e05482007-05-09 10:17:44 +0000670 if (dev) {
Uwe Hermanna502dce2007-10-17 23:55:15 +0000671 printf("Found chipset \"%s\", enabling flash write... ",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000672 enables[i].name);
673
674 ret = enables[i].doit(dev, enables[i].name);
675 if (ret)
Uwe Hermanna502dce2007-10-17 23:55:15 +0000676 printf("FAILED!\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000677 else
Uwe Hermannac309342007-10-10 17:42:20 +0000678 printf("OK.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000679 }
680
681 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000682}