blob: 63996da9547703aed4835369a89aed0b467b201e [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
Ollie Lhocbbf1252004-03-17 22:22:08 +000026#include <stdio.h>
27#include <pci/pci.h>
28#include <stdlib.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000029#include "flash.h"
Stefan Reinauer86de2832006-03-31 11:26:55 +000030
Luc Verhaegen6b141752007-05-20 16:16:13 +000031static int enable_flash_ali_m1533(struct pci_dev *dev, char *name)
32{
33 uint8_t tmp;
34
35 /* ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
36 0xFFFE0000-0xFFFFFFFF ROM select enable. */
37 tmp = pci_read_byte(dev, 0x47);
38 tmp |= 0x46;
39 pci_write_byte(dev, 0x47, tmp);
40
41 return 0;
42}
43
Ollie Lho761bf1b2004-03-20 16:46:10 +000044static int enable_flash_sis630(struct pci_dev *dev, char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +000045{
46 char b;
47
Ollie Lhocbbf1252004-03-17 22:22:08 +000048 /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630 */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000049 b = pci_read_byte(dev, 0x40);
50 pci_write_byte(dev, 0x40, b | 0xb);
Ollie Lhocbbf1252004-03-17 22:22:08 +000051 /* Flash write enable on SiS 540/630 */
Alex Beregszaszic9fb5d92007-09-11 15:58:18 +000052 b = pci_read_byte(dev, 0x45);
53 pci_write_byte(dev, 0x45, b | 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +000054
55 /* The same thing on SiS 950 SuperIO side */
56 outb(0x87, 0x2e);
57 outb(0x01, 0x2e);
58 outb(0x55, 0x2e);
59 outb(0x55, 0x2e);
60
61 if (inb(0x2f) != 0x87) {
62 outb(0x87, 0x4e);
63 outb(0x01, 0x4e);
64 outb(0x55, 0x4e);
65 outb(0xaa, 0x4e);
66 if (inb(0x4f) != 0x87) {
67 printf("Can not access SiS 950\n");
68 return -1;
69 }
70 outb(0x24, 0x4e);
71 b = inb(0x4f) | 0xfc;
72 outb(0x24, 0x4e);
73 outb(b, 0x4f);
74 outb(0x02, 0x4e);
Ollie Lho761bf1b2004-03-20 16:46:10 +000075 outb(0x02, 0x4f);
Ollie Lhocbbf1252004-03-17 22:22:08 +000076 }
77
78 outb(0x24, 0x2e);
79 printf("2f is %#x\n", inb(0x2f));
80 b = inb(0x2f) | 0xfc;
81 outb(0x24, 0x2e);
82 outb(b, 0x2f);
83
84 outb(0x02, 0x2e);
85 outb(0x02, 0x2f);
86
87 return 0;
88}
89
Uwe Hermann987942d2006-11-07 11:16:21 +000090/* Datasheet:
91 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
92 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
93 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
94 * - Order Number: 290562-001
95 */
Uwe Hermannea2c66d2006-11-05 18:26:08 +000096static int enable_flash_piix4(struct pci_dev *dev, char *name)
97{
98 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +000099 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000100
101 old = pci_read_word(dev, xbcs);
102
103 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000104 * FFF00000-FFF7FFFF are forwarded to ISA).
105 * Set bit 7: Extended BIOS Enable (PCI master accesses to
106 * FFF80000-FFFDFFFF are forwarded to ISA).
107 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
108 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
109 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
110 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
111 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
112 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
113 */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000114 new = old | 0x2c4;
115
116 if (new == old)
117 return 0;
118
119 pci_write_word(dev, xbcs, new);
120
121 if (pci_read_word(dev, xbcs) != new) {
122 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
123 return -1;
124 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000125
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000126 return 0;
127}
128
Stefan Reinauer86de2832006-03-31 11:26:55 +0000129static int enable_flash_ich(struct pci_dev *dev, char *name, int bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000130{
131 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000132 uint8_t old, new;
Stefan Reinauereb366472006-09-06 15:48:48 +0000133
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000134 /* if it fails, it fails. There are so many variations of broken mobos
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000135 * that it is hard to argue that we should quit at this point.
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000136 */
137
Stefan Reinauereb366472006-09-06 15:48:48 +0000138 /* Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
Uwe Hermanna7e05482007-05-09 10:17:44 +0000139 * just treating it as 8 bit wide seems to work fine in practice.
Stefan Reinauereb366472006-09-06 15:48:48 +0000140 */
141
142 /* see ie. page 375 of "Intel ICH7 External Design Specification"
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000143 * http://download.intel.com/design/chipsets/datashts/30701302.pdf
Stefan Reinauereb366472006-09-06 15:48:48 +0000144 */
145
Stefan Reinauer86de2832006-03-31 11:26:55 +0000146 old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000147
148 new = old | 1;
149
150 if (new == old)
151 return 0;
152
Stefan Reinauer86de2832006-03-31 11:26:55 +0000153 pci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000154
Stefan Reinauer86de2832006-03-31 11:26:55 +0000155 if (pci_read_byte(dev, bios_cntl) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000156 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 +0000157 return -1;
158 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000159
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000160 return 0;
161}
162
Stefan Reinauereb366472006-09-06 15:48:48 +0000163static int enable_flash_ich_4e(struct pci_dev *dev, char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000164{
Stefan Reinauereb366472006-09-06 15:48:48 +0000165 return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000166}
167
Stefan Reinauereb366472006-09-06 15:48:48 +0000168static int enable_flash_ich_dc(struct pci_dev *dev, char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000169{
Stefan Reinauereb366472006-09-06 15:48:48 +0000170 return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000171}
172
Uwe Hermanna7e05482007-05-09 10:17:44 +0000173static int enable_flash_vt823x(struct pci_dev *dev, char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000174{
Ollie Lho184a4042005-11-26 21:55:36 +0000175 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000176
Uwe Hermannffec5f32007-08-23 16:08:21 +0000177 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000178 val = pci_read_byte(dev, 0x40);
179 val |= 0x10;
180 pci_write_byte(dev, 0x40, val);
181
182 if (pci_read_byte(dev, 0x40) != val) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000183 printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000184 name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000185 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000186 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000187
Uwe Hermanna7e05482007-05-09 10:17:44 +0000188 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000189}
190
191static int enable_flash_cs5530(struct pci_dev *dev, char *name)
192{
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000193 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000194
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000195 #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
196 #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000197
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000198 #define LOWER_ROM_ADDRESS_RANGE (1 << 0)
199 #define ROM_WRITE_ENABLE (1 << 1)
200 #define UPPER_ROM_ADDRESS_RANGE (1 << 2)
201 #define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000202
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000203 /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and
204 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB.
205 * Make the configured ROM areas writable.
206 */
207 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
208 reg8 |= LOWER_ROM_ADDRESS_RANGE;
209 reg8 |= UPPER_ROM_ADDRESS_RANGE;
210 reg8 |= ROM_WRITE_ENABLE;
211 pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000212
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000213 /* Set positive decode on ROM. */
214 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
215 reg8 |= BIOS_ROM_POSITIVE_DECODE;
216 pci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000217
Ollie Lhocbbf1252004-03-17 22:22:08 +0000218 return 0;
219}
220
221static int enable_flash_sc1100(struct pci_dev *dev, char *name)
222{
Ollie Lho184a4042005-11-26 21:55:36 +0000223 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000224
Ollie Lhocbbf1252004-03-17 22:22:08 +0000225 pci_write_byte(dev, 0x52, 0xee);
226
227 new = pci_read_byte(dev, 0x52);
228
229 if (new != 0xee) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000230 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 +0000231 return -1;
232 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000233
Ollie Lhocbbf1252004-03-17 22:22:08 +0000234 return 0;
235}
236
237static int enable_flash_sis5595(struct pci_dev *dev, char *name)
238{
Ollie Lho184a4042005-11-26 21:55:36 +0000239 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000240
Ollie Lhocbbf1252004-03-17 22:22:08 +0000241 new = pci_read_byte(dev, 0x45);
242
243 /* clear bit 5 */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000244 new &= (~0x20);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000245 /* set bit 2 */
246 new |= 0x4;
247
248 pci_write_byte(dev, 0x45, new);
249
250 newer = pci_read_byte(dev, 0x45);
251 if (newer != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000252 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 +0000253 printf("Stuck at 0x%x\n", newer);
254 return -1;
255 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000256
Ollie Lhocbbf1252004-03-17 22:22:08 +0000257 return 0;
258}
259
Ollie Lho761bf1b2004-03-20 16:46:10 +0000260static int enable_flash_amd8111(struct pci_dev *dev, char *name)
261{
Ollie Lhocbbf1252004-03-17 22:22:08 +0000262 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000263 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000264
Ollie Lhocbbf1252004-03-17 22:22:08 +0000265 /* if it fails, it fails. There are so many variations of broken mobos
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000266 * that it is hard to argue that we should quit at this point.
Ollie Lhocbbf1252004-03-17 22:22:08 +0000267 */
268
Ollie Lhod11f3612004-12-07 17:19:04 +0000269 /* enable decoding at 0xffb00000 to 0xffffffff */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000270 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000271 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000272 if (new != old) {
273 pci_write_byte(dev, 0x43, new);
274 if (pci_read_byte(dev, 0x43) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000275 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 +0000276 }
277 }
278
Ollie Lho761bf1b2004-03-20 16:46:10 +0000279 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000280 new = old | 0x01;
281 if (new == old)
282 return 0;
283 pci_write_byte(dev, 0x40, new);
284
285 if (pci_read_byte(dev, 0x40) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000286 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 +0000287 return -1;
288 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000289
Ollie Lhocbbf1252004-03-17 22:22:08 +0000290 return 0;
291}
292
Yinghai Lu952dfce2005-07-06 17:13:46 +0000293static int enable_flash_ck804(struct pci_dev *dev, char *name)
294{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000295 /* register 4e.b gets or'ed with one */
296 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000297
Uwe Hermanna7e05482007-05-09 10:17:44 +0000298 /* if it fails, it fails. There are so many variations of broken mobos
299 * that it is hard to argue that we should quit at this point.
300 */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000301
Uwe Hermanna7e05482007-05-09 10:17:44 +0000302 /* dump_pci_device(dev); */
Yinghai Lu952dfce2005-07-06 17:13:46 +0000303
Uwe Hermanna7e05482007-05-09 10:17:44 +0000304 old = pci_read_byte(dev, 0x88);
305 new = old | 0xc0;
306 if (new != old) {
307 pci_write_byte(dev, 0x88, new);
308 if (pci_read_byte(dev, 0x88) != new) {
309 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
310 }
311 }
Yinghai Lu952dfce2005-07-06 17:13:46 +0000312
Uwe Hermanna7e05482007-05-09 10:17:44 +0000313 old = pci_read_byte(dev, 0x6d);
314 new = old | 0x01;
315 if (new == old)
316 return 0;
317 pci_write_byte(dev, 0x6d, new);
318
319 if (pci_read_byte(dev, 0x6d) != new) {
320 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
321 return -1;
322 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000323
Uwe Hermanna7e05482007-05-09 10:17:44 +0000324 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000325}
326
Stefan Reinauer86de2832006-03-31 11:26:55 +0000327static int enable_flash_sb400(struct pci_dev *dev, char *name)
328{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000329 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000330
331 struct pci_filter f;
332 struct pci_dev *smbusdev;
333
Stefan Reinauer86de2832006-03-31 11:26:55 +0000334 /* then look for the smbus device */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000335 pci_filter_init((struct pci_access *)0, &f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000336 f.vendor = 0x1002;
337 f.device = 0x4372;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000338
Stefan Reinauer86de2832006-03-31 11:26:55 +0000339 for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
340 if (pci_filter_match(&f, smbusdev)) {
341 break;
342 }
343 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000344
Uwe Hermanna7e05482007-05-09 10:17:44 +0000345 if (!smbusdev) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000346 fprintf(stderr, "ERROR: SMBus device not found. aborting\n");
Stefan Reinauer86de2832006-03-31 11:26:55 +0000347 exit(1);
348 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000349
350 /* enable some smbus stuff */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000351 tmp = pci_read_byte(smbusdev, 0x79);
352 tmp |= 0x01;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000353 pci_write_byte(smbusdev, 0x79, tmp);
354
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000355 /* change southbridge */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000356 tmp = pci_read_byte(dev, 0x48);
357 tmp |= 0x21;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000358 pci_write_byte(dev, 0x48, tmp);
359
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000360 /* now become a bit silly. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000361 tmp = inb(0xc6f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000362 outb(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000363 outb(tmp, 0xeb);
364 tmp |= 0x40;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000365 outb(tmp, 0xc6f);
366 outb(tmp, 0xeb);
367 outb(tmp, 0xeb);
368
369 return 0;
370}
371
Yinghai Luca782972007-01-22 20:21:17 +0000372static int enable_flash_mcp55(struct pci_dev *dev, char *name)
373{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000374 /* register 4e.b gets or'ed with one */
375 unsigned char old, new, byte;
376 unsigned short word;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000377
Uwe Hermanna7e05482007-05-09 10:17:44 +0000378 /* if it fails, it fails. There are so many variations of broken mobos
379 * that it is hard to argue that we should quit at this point.
380 */
Yinghai Luca782972007-01-22 20:21:17 +0000381
Uwe Hermanna7e05482007-05-09 10:17:44 +0000382 /* dump_pci_device(dev); */
Yinghai Luca782972007-01-22 20:21:17 +0000383
Carl-Daniel Hailfingerdca0ab12007-10-17 22:30:07 +0000384 /* Set the 0-16 MB enable bits */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000385 byte = pci_read_byte(dev, 0x88);
386 byte |= 0xff; /* 256K */
387 pci_write_byte(dev, 0x88, byte);
388 byte = pci_read_byte(dev, 0x8c);
389 byte |= 0xff; /* 1M */
390 pci_write_byte(dev, 0x8c, byte);
391 word = pci_read_word(dev, 0x90);
Carl-Daniel Hailfingerdca0ab12007-10-17 22:30:07 +0000392 word |= 0x7fff; /* 16M */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000393 pci_write_word(dev, 0x90, word);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000394
Uwe Hermanna7e05482007-05-09 10:17:44 +0000395 old = pci_read_byte(dev, 0x6d);
396 new = old | 0x01;
397 if (new == old)
398 return 0;
399 pci_write_byte(dev, 0x6d, new);
Yinghai Luca782972007-01-22 20:21:17 +0000400
Uwe Hermanna7e05482007-05-09 10:17:44 +0000401 if (pci_read_byte(dev, 0x6d) != new) {
402 printf
403 ("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
404 0x6d, new, name);
405 return -1;
406 }
Yinghai Luca782972007-01-22 20:21:17 +0000407
408 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000409}
410
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000411static int enable_flash_ht1000(struct pci_dev *dev, char *name)
412{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000413 uint8_t byte;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000414
Uwe Hermanne823ee02007-06-05 15:02:18 +0000415 /* Set the 4MB enable bit. */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000416 byte = pci_read_byte(dev, 0x41);
417 byte |= 0x0e;
418 pci_write_byte(dev, 0x41, byte);
419
420 byte = pci_read_byte(dev, 0x43);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000421 byte |= (1 << 4);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000422 pci_write_byte(dev, 0x43, byte);
423
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000424 return 0;
425}
426
Ollie Lhocbbf1252004-03-17 22:22:08 +0000427typedef struct penable {
Ollie Lho761bf1b2004-03-20 16:46:10 +0000428 unsigned short vendor, device;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000429 char *name;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000430 int (*doit) (struct pci_dev * dev, char *name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000431} FLASH_ENABLE;
432
433static FLASH_ENABLE enables[] = {
Stefan Reinauereb366472006-09-06 15:48:48 +0000434 {0x1039, 0x0630, "SIS630", enable_flash_sis630},
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000435 {0x8086, 0x7110, "PIIX4/PIIX4E/PIIX4M", enable_flash_piix4},
Uwe Hermann97a64702007-10-30 00:56:50 +0000436 {0x8086, 0x7198, "Intel 440MX", enable_flash_piix4},
Stefan Reinauereb366472006-09-06 15:48:48 +0000437 {0x8086, 0x2410, "ICH", enable_flash_ich_4e},
438 {0x8086, 0x2420, "ICH0", enable_flash_ich_4e},
439 {0x8086, 0x2440, "ICH2", enable_flash_ich_4e},
440 {0x8086, 0x244c, "ICH2-M", enable_flash_ich_4e},
441 {0x8086, 0x2480, "ICH3-S", enable_flash_ich_4e},
442 {0x8086, 0x248c, "ICH3-M", enable_flash_ich_4e},
443 {0x8086, 0x24c0, "ICH4/ICH4-L", enable_flash_ich_4e},
444 {0x8086, 0x24cc, "ICH4-M", enable_flash_ich_4e},
445 {0x8086, 0x24d0, "ICH5/ICH5R", enable_flash_ich_4e},
446 {0x8086, 0x2640, "ICH6/ICH6R", enable_flash_ich_dc},
447 {0x8086, 0x2641, "ICH6-M", enable_flash_ich_dc},
Uwe Hermann3ad25182007-03-31 19:48:38 +0000448 {0x8086, 0x27b0, "ICH7DH", enable_flash_ich_dc},
Stefan Reinauereb366472006-09-06 15:48:48 +0000449 {0x8086, 0x27b8, "ICH7/ICH7R", enable_flash_ich_dc},
450 {0x8086, 0x27b9, "ICH7M", enable_flash_ich_dc},
451 {0x8086, 0x27bd, "ICH7MDH", enable_flash_ich_dc},
452 {0x8086, 0x2810, "ICH8/ICH8R", enable_flash_ich_dc},
453 {0x8086, 0x2812, "ICH8DH", enable_flash_ich_dc},
454 {0x8086, 0x2814, "ICH8DO", enable_flash_ich_dc},
Luc Verhaegen6382b442007-03-02 22:16:38 +0000455 {0x1106, 0x8231, "VT8231", enable_flash_vt823x},
456 {0x1106, 0x3177, "VT8235", enable_flash_vt823x},
457 {0x1106, 0x3227, "VT8237", enable_flash_vt823x},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000458 {0x1106, 0x8324, "CX700", enable_flash_vt823x},
Stefan Reinauerc6b5f492006-11-07 10:22:20 +0000459 {0x1106, 0x0686, "VT82C686", enable_flash_amd8111},
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000460 {0x1078, 0x0100, "CS5530/CS5530A", enable_flash_cs5530},
Ollie Lho761bf1b2004-03-20 16:46:10 +0000461 {0x100b, 0x0510, "SC1100", enable_flash_sc1100},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000462 {0x1039, 0x0008, "SIS5595", enable_flash_sis5595},
463 {0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
Luc Verhaegen6b141752007-05-20 16:16:13 +0000464 {0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533},
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000465 /* this fallthrough looks broken. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000466 {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, /* LPC */
467 {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, /* Pro */
468 {0x10de, 0x00d3, "NVIDIA CK804", enable_flash_ck804}, /* Slave, should not be here, to fix known bug for A01. */
Stefan Reinauer219b61e2006-10-14 21:04:49 +0000469
Uwe Hermanna7e05482007-05-09 10:17:44 +0000470 {0x10de, 0x0260, "NVidia MCP51", enable_flash_ck804},
471 {0x10de, 0x0261, "NVidia MCP51", enable_flash_ck804},
472 {0x10de, 0x0262, "NVidia MCP51", enable_flash_ck804},
473 {0x10de, 0x0263, "NVidia MCP51", enable_flash_ck804},
Stefan Reinauer219b61e2006-10-14 21:04:49 +0000474
Uwe Hermanna7e05482007-05-09 10:17:44 +0000475 {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, /* Gigabyte m57sli-s4 */
476 {0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
477 {0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
478 {0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
479 {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
480 {0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
481 {0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
482 {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, /* Pro */
Yinghai Luca782972007-01-22 20:21:17 +0000483
Uwe Hermanna7e05482007-05-09 10:17:44 +0000484 {0x1002, 0x4377, "ATI SB400", enable_flash_sb400}, /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000485
Uwe Hermanne823ee02007-06-05 15:02:18 +0000486 {0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000487};
Ollie Lho761bf1b2004-03-20 16:46:10 +0000488
Uwe Hermanna7e05482007-05-09 10:17:44 +0000489int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000490{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000491 struct pci_dev *dev = 0;
492 int ret = -2; /* nothing! */
493 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000494
Ollie Lhocbbf1252004-03-17 22:22:08 +0000495 /* now let's try to find the chipset we have ... */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000496 for (i = 0; i < sizeof(enables) / sizeof(enables[0]); i++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000497 dev = pci_dev_find(enables[i].vendor, enables[i].device);
498 if (dev)
499 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000500 }
501
Uwe Hermanna7e05482007-05-09 10:17:44 +0000502 if (dev) {
Uwe Hermanna502dce2007-10-17 23:55:15 +0000503 printf("Found chipset \"%s\", enabling flash write... ",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000504 enables[i].name);
505
506 ret = enables[i].doit(dev, enables[i].name);
507 if (ret)
Uwe Hermanna502dce2007-10-17 23:55:15 +0000508 printf("FAILED!\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000509 else
Uwe Hermannac309342007-10-10 17:42:20 +0000510 printf("OK.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000511 }
512
513 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000514}