blob: 988684328e4dad8e2515951d7266ba1d96ac78e1 [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 */
49 outl(0x80000840, 0x0cf8);
50 b = inb(0x0cfc) | 0x0b;
51 outb(b, 0xcfc);
52 /* Flash write enable on SiS 540/630 */
53 outl(0x80000845, 0x0cf8);
54 b = inb(0x0cfd) | 0x40;
55 outb(b, 0xcfd);
56
57 /* The same thing on SiS 950 SuperIO side */
58 outb(0x87, 0x2e);
59 outb(0x01, 0x2e);
60 outb(0x55, 0x2e);
61 outb(0x55, 0x2e);
62
63 if (inb(0x2f) != 0x87) {
64 outb(0x87, 0x4e);
65 outb(0x01, 0x4e);
66 outb(0x55, 0x4e);
67 outb(0xaa, 0x4e);
68 if (inb(0x4f) != 0x87) {
69 printf("Can not access SiS 950\n");
70 return -1;
71 }
72 outb(0x24, 0x4e);
73 b = inb(0x4f) | 0xfc;
74 outb(0x24, 0x4e);
75 outb(b, 0x4f);
76 outb(0x02, 0x4e);
Ollie Lho761bf1b2004-03-20 16:46:10 +000077 outb(0x02, 0x4f);
Ollie Lhocbbf1252004-03-17 22:22:08 +000078 }
79
80 outb(0x24, 0x2e);
81 printf("2f is %#x\n", inb(0x2f));
82 b = inb(0x2f) | 0xfc;
83 outb(0x24, 0x2e);
84 outb(b, 0x2f);
85
86 outb(0x02, 0x2e);
87 outb(0x02, 0x2f);
88
89 return 0;
90}
91
Uwe Hermann987942d2006-11-07 11:16:21 +000092/* Datasheet:
93 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
94 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
95 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
96 * - Order Number: 290562-001
97 */
Uwe Hermannea2c66d2006-11-05 18:26:08 +000098static int enable_flash_piix4(struct pci_dev *dev, char *name)
99{
100 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000101 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000102
103 old = pci_read_word(dev, xbcs);
104
105 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000106 * FFF00000-FFF7FFFF are forwarded to ISA).
107 * Set bit 7: Extended BIOS Enable (PCI master accesses to
108 * FFF80000-FFFDFFFF are forwarded to ISA).
109 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
110 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
111 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
112 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
113 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
114 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
115 */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000116 new = old | 0x2c4;
117
118 if (new == old)
119 return 0;
120
121 pci_write_word(dev, xbcs, new);
122
123 if (pci_read_word(dev, xbcs) != new) {
124 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
125 return -1;
126 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000127
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000128 return 0;
129}
130
Stefan Reinauer86de2832006-03-31 11:26:55 +0000131static int enable_flash_ich(struct pci_dev *dev, char *name, int bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000132{
133 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000134 uint8_t old, new;
Stefan Reinauereb366472006-09-06 15:48:48 +0000135
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000136 /* if it fails, it fails. There are so many variations of broken mobos
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000137 * that it is hard to argue that we should quit at this point.
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000138 */
139
Stefan Reinauereb366472006-09-06 15:48:48 +0000140 /* Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
Uwe Hermanna7e05482007-05-09 10:17:44 +0000141 * just treating it as 8 bit wide seems to work fine in practice.
Stefan Reinauereb366472006-09-06 15:48:48 +0000142 */
143
144 /* see ie. page 375 of "Intel ICH7 External Design Specification"
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000145 * http://download.intel.com/design/chipsets/datashts/30701302.pdf
Stefan Reinauereb366472006-09-06 15:48:48 +0000146 */
147
Stefan Reinauer86de2832006-03-31 11:26:55 +0000148 old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000149
150 new = old | 1;
151
152 if (new == old)
153 return 0;
154
Stefan Reinauer86de2832006-03-31 11:26:55 +0000155 pci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000156
Stefan Reinauer86de2832006-03-31 11:26:55 +0000157 if (pci_read_byte(dev, bios_cntl) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000158 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 +0000159 return -1;
160 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000161
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000162 return 0;
163}
164
Stefan Reinauereb366472006-09-06 15:48:48 +0000165static int enable_flash_ich_4e(struct pci_dev *dev, char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000166{
Stefan Reinauereb366472006-09-06 15:48:48 +0000167 return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000168}
169
Stefan Reinauereb366472006-09-06 15:48:48 +0000170static int enable_flash_ich_dc(struct pci_dev *dev, char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000171{
Stefan Reinauereb366472006-09-06 15:48:48 +0000172 return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000173}
174
Uwe Hermanna7e05482007-05-09 10:17:44 +0000175static int enable_flash_vt823x(struct pci_dev *dev, char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000176{
Ollie Lho184a4042005-11-26 21:55:36 +0000177 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000178
Uwe Hermannffec5f32007-08-23 16:08:21 +0000179 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000180 val = pci_read_byte(dev, 0x40);
181 val |= 0x10;
182 pci_write_byte(dev, 0x40, val);
183
184 if (pci_read_byte(dev, 0x40) != val) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000185 printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000186 name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000187 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000188 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000189
Uwe Hermanna7e05482007-05-09 10:17:44 +0000190 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000191}
192
193static int enable_flash_cs5530(struct pci_dev *dev, char *name)
194{
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000195 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000196
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000197 #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
198 #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000199
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000200 #define LOWER_ROM_ADDRESS_RANGE (1 << 0)
201 #define ROM_WRITE_ENABLE (1 << 1)
202 #define UPPER_ROM_ADDRESS_RANGE (1 << 2)
203 #define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000204
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000205 /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and
206 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB.
207 * Make the configured ROM areas writable.
208 */
209 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
210 reg8 |= LOWER_ROM_ADDRESS_RANGE;
211 reg8 |= UPPER_ROM_ADDRESS_RANGE;
212 reg8 |= ROM_WRITE_ENABLE;
213 pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000214
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000215 /* Set positive decode on ROM. */
216 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
217 reg8 |= BIOS_ROM_POSITIVE_DECODE;
218 pci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000219
Ollie Lhocbbf1252004-03-17 22:22:08 +0000220 return 0;
221}
222
223static int enable_flash_sc1100(struct pci_dev *dev, char *name)
224{
Ollie Lho184a4042005-11-26 21:55:36 +0000225 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000226
Ollie Lhocbbf1252004-03-17 22:22:08 +0000227 pci_write_byte(dev, 0x52, 0xee);
228
229 new = pci_read_byte(dev, 0x52);
230
231 if (new != 0xee) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000232 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 +0000233 return -1;
234 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000235
Ollie Lhocbbf1252004-03-17 22:22:08 +0000236 return 0;
237}
238
239static int enable_flash_sis5595(struct pci_dev *dev, char *name)
240{
Ollie Lho184a4042005-11-26 21:55:36 +0000241 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000242
Ollie Lhocbbf1252004-03-17 22:22:08 +0000243 new = pci_read_byte(dev, 0x45);
244
245 /* clear bit 5 */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000246 new &= (~0x20);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000247 /* set bit 2 */
248 new |= 0x4;
249
250 pci_write_byte(dev, 0x45, new);
251
252 newer = pci_read_byte(dev, 0x45);
253 if (newer != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000254 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 +0000255 printf("Stuck at 0x%x\n", newer);
256 return -1;
257 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000258
Ollie Lhocbbf1252004-03-17 22:22:08 +0000259 return 0;
260}
261
Ollie Lho761bf1b2004-03-20 16:46:10 +0000262static int enable_flash_amd8111(struct pci_dev *dev, char *name)
263{
Ollie Lhocbbf1252004-03-17 22:22:08 +0000264 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000265 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000266
Ollie Lhocbbf1252004-03-17 22:22:08 +0000267 /* if it fails, it fails. There are so many variations of broken mobos
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000268 * that it is hard to argue that we should quit at this point.
Ollie Lhocbbf1252004-03-17 22:22:08 +0000269 */
270
Ollie Lhod11f3612004-12-07 17:19:04 +0000271 /* enable decoding at 0xffb00000 to 0xffffffff */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000272 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000273 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000274 if (new != old) {
275 pci_write_byte(dev, 0x43, new);
276 if (pci_read_byte(dev, 0x43) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000277 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 +0000278 }
279 }
280
Ollie Lho761bf1b2004-03-20 16:46:10 +0000281 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000282 new = old | 0x01;
283 if (new == old)
284 return 0;
285 pci_write_byte(dev, 0x40, new);
286
287 if (pci_read_byte(dev, 0x40) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000288 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 +0000289 return -1;
290 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000291
Ollie Lhocbbf1252004-03-17 22:22:08 +0000292 return 0;
293}
294
Yinghai Lu952dfce2005-07-06 17:13:46 +0000295static int enable_flash_ck804(struct pci_dev *dev, char *name)
296{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000297 /* register 4e.b gets or'ed with one */
298 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000299
Uwe Hermanna7e05482007-05-09 10:17:44 +0000300 /* if it fails, it fails. There are so many variations of broken mobos
301 * that it is hard to argue that we should quit at this point.
302 */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000303
Uwe Hermanna7e05482007-05-09 10:17:44 +0000304 /* dump_pci_device(dev); */
Yinghai Lu952dfce2005-07-06 17:13:46 +0000305
Uwe Hermanna7e05482007-05-09 10:17:44 +0000306 old = pci_read_byte(dev, 0x88);
307 new = old | 0xc0;
308 if (new != old) {
309 pci_write_byte(dev, 0x88, new);
310 if (pci_read_byte(dev, 0x88) != new) {
311 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
312 }
313 }
Yinghai Lu952dfce2005-07-06 17:13:46 +0000314
Uwe Hermanna7e05482007-05-09 10:17:44 +0000315 old = pci_read_byte(dev, 0x6d);
316 new = old | 0x01;
317 if (new == old)
318 return 0;
319 pci_write_byte(dev, 0x6d, new);
320
321 if (pci_read_byte(dev, 0x6d) != new) {
322 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
323 return -1;
324 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000325
Uwe Hermanna7e05482007-05-09 10:17:44 +0000326 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000327}
328
Stefan Reinauer86de2832006-03-31 11:26:55 +0000329static int enable_flash_sb400(struct pci_dev *dev, char *name)
330{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000331 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000332
333 struct pci_filter f;
334 struct pci_dev *smbusdev;
335
Stefan Reinauer86de2832006-03-31 11:26:55 +0000336 /* then look for the smbus device */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000337 pci_filter_init((struct pci_access *)0, &f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000338 f.vendor = 0x1002;
339 f.device = 0x4372;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000340
Stefan Reinauer86de2832006-03-31 11:26:55 +0000341 for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
342 if (pci_filter_match(&f, smbusdev)) {
343 break;
344 }
345 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000346
Uwe Hermanna7e05482007-05-09 10:17:44 +0000347 if (!smbusdev) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000348 fprintf(stderr, "ERROR: SMBus device not found. aborting\n");
Stefan Reinauer86de2832006-03-31 11:26:55 +0000349 exit(1);
350 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000351
352 /* enable some smbus stuff */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000353 tmp = pci_read_byte(smbusdev, 0x79);
354 tmp |= 0x01;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000355 pci_write_byte(smbusdev, 0x79, tmp);
356
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000357 /* change southbridge */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000358 tmp = pci_read_byte(dev, 0x48);
359 tmp |= 0x21;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000360 pci_write_byte(dev, 0x48, tmp);
361
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000362 /* now become a bit silly. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000363 tmp = inb(0xc6f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000364 outb(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000365 outb(tmp, 0xeb);
366 tmp |= 0x40;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000367 outb(tmp, 0xc6f);
368 outb(tmp, 0xeb);
369 outb(tmp, 0xeb);
370
371 return 0;
372}
373
Yinghai Luca782972007-01-22 20:21:17 +0000374static int enable_flash_mcp55(struct pci_dev *dev, char *name)
375{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000376 /* register 4e.b gets or'ed with one */
377 unsigned char old, new, byte;
378 unsigned short word;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000379
Uwe Hermanna7e05482007-05-09 10:17:44 +0000380 /* if it fails, it fails. There are so many variations of broken mobos
381 * that it is hard to argue that we should quit at this point.
382 */
Yinghai Luca782972007-01-22 20:21:17 +0000383
Uwe Hermanna7e05482007-05-09 10:17:44 +0000384 /* dump_pci_device(dev); */
Yinghai Luca782972007-01-22 20:21:17 +0000385
Uwe Hermanna7e05482007-05-09 10:17:44 +0000386 /* Set the 4MB enable bit bit */
387 byte = pci_read_byte(dev, 0x88);
388 byte |= 0xff; /* 256K */
389 pci_write_byte(dev, 0x88, byte);
390 byte = pci_read_byte(dev, 0x8c);
391 byte |= 0xff; /* 1M */
392 pci_write_byte(dev, 0x8c, byte);
393 word = pci_read_word(dev, 0x90);
394 word |= 0x7fff; /* 15M */
395 pci_write_word(dev, 0x90, word);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000396
Uwe Hermanna7e05482007-05-09 10:17:44 +0000397 old = pci_read_byte(dev, 0x6d);
398 new = old | 0x01;
399 if (new == old)
400 return 0;
401 pci_write_byte(dev, 0x6d, new);
Yinghai Luca782972007-01-22 20:21:17 +0000402
Uwe Hermanna7e05482007-05-09 10:17:44 +0000403 if (pci_read_byte(dev, 0x6d) != new) {
404 printf
405 ("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
406 0x6d, new, name);
407 return -1;
408 }
Yinghai Luca782972007-01-22 20:21:17 +0000409
410 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000411}
412
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000413static int enable_flash_ht1000(struct pci_dev *dev, char *name)
414{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000415 uint8_t byte;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000416
Uwe Hermanne823ee02007-06-05 15:02:18 +0000417 /* Set the 4MB enable bit. */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000418 byte = pci_read_byte(dev, 0x41);
419 byte |= 0x0e;
420 pci_write_byte(dev, 0x41, byte);
421
422 byte = pci_read_byte(dev, 0x43);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000423 byte |= (1 << 4);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000424 pci_write_byte(dev, 0x43, byte);
425
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000426 return 0;
427}
428
Ollie Lhocbbf1252004-03-17 22:22:08 +0000429typedef struct penable {
Ollie Lho761bf1b2004-03-20 16:46:10 +0000430 unsigned short vendor, device;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000431 char *name;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000432 int (*doit) (struct pci_dev * dev, char *name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000433} FLASH_ENABLE;
434
435static FLASH_ENABLE enables[] = {
Stefan Reinauereb366472006-09-06 15:48:48 +0000436 {0x1039, 0x0630, "SIS630", enable_flash_sis630},
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000437 {0x8086, 0x7110, "PIIX4/PIIX4E/PIIX4M", enable_flash_piix4},
Stefan Reinauereb366472006-09-06 15:48:48 +0000438 {0x8086, 0x2410, "ICH", enable_flash_ich_4e},
439 {0x8086, 0x2420, "ICH0", enable_flash_ich_4e},
440 {0x8086, 0x2440, "ICH2", enable_flash_ich_4e},
441 {0x8086, 0x244c, "ICH2-M", enable_flash_ich_4e},
442 {0x8086, 0x2480, "ICH3-S", enable_flash_ich_4e},
443 {0x8086, 0x248c, "ICH3-M", enable_flash_ich_4e},
444 {0x8086, 0x24c0, "ICH4/ICH4-L", enable_flash_ich_4e},
445 {0x8086, 0x24cc, "ICH4-M", enable_flash_ich_4e},
446 {0x8086, 0x24d0, "ICH5/ICH5R", enable_flash_ich_4e},
447 {0x8086, 0x2640, "ICH6/ICH6R", enable_flash_ich_dc},
448 {0x8086, 0x2641, "ICH6-M", enable_flash_ich_dc},
Uwe Hermann3ad25182007-03-31 19:48:38 +0000449 {0x8086, 0x27b0, "ICH7DH", enable_flash_ich_dc},
Stefan Reinauereb366472006-09-06 15:48:48 +0000450 {0x8086, 0x27b8, "ICH7/ICH7R", enable_flash_ich_dc},
451 {0x8086, 0x27b9, "ICH7M", enable_flash_ich_dc},
452 {0x8086, 0x27bd, "ICH7MDH", enable_flash_ich_dc},
453 {0x8086, 0x2810, "ICH8/ICH8R", enable_flash_ich_dc},
454 {0x8086, 0x2812, "ICH8DH", enable_flash_ich_dc},
455 {0x8086, 0x2814, "ICH8DO", enable_flash_ich_dc},
Luc Verhaegen6382b442007-03-02 22:16:38 +0000456 {0x1106, 0x8231, "VT8231", enable_flash_vt823x},
457 {0x1106, 0x3177, "VT8235", enable_flash_vt823x},
458 {0x1106, 0x3227, "VT8237", enable_flash_vt823x},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000459 {0x1106, 0x8324, "CX700", enable_flash_vt823x},
Stefan Reinauerc6b5f492006-11-07 10:22:20 +0000460 {0x1106, 0x0686, "VT82C686", enable_flash_amd8111},
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000461 {0x1078, 0x0100, "CS5530/CS5530A", enable_flash_cs5530},
Ollie Lho761bf1b2004-03-20 16:46:10 +0000462 {0x100b, 0x0510, "SC1100", enable_flash_sc1100},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000463 {0x1039, 0x0008, "SIS5595", enable_flash_sis5595},
464 {0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
Luc Verhaegen6b141752007-05-20 16:16:13 +0000465 {0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533},
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000466 /* this fallthrough looks broken. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000467 {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, /* LPC */
468 {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, /* Pro */
469 {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 +0000470
Uwe Hermanna7e05482007-05-09 10:17:44 +0000471 {0x10de, 0x0260, "NVidia MCP51", enable_flash_ck804},
472 {0x10de, 0x0261, "NVidia MCP51", enable_flash_ck804},
473 {0x10de, 0x0262, "NVidia MCP51", enable_flash_ck804},
474 {0x10de, 0x0263, "NVidia MCP51", enable_flash_ck804},
Stefan Reinauer219b61e2006-10-14 21:04:49 +0000475
Uwe Hermanna7e05482007-05-09 10:17:44 +0000476 {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, /* Gigabyte m57sli-s4 */
477 {0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
478 {0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
479 {0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
480 {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
481 {0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
482 {0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
483 {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, /* Pro */
Yinghai Luca782972007-01-22 20:21:17 +0000484
Uwe Hermanna7e05482007-05-09 10:17:44 +0000485 {0x1002, 0x4377, "ATI SB400", enable_flash_sb400}, /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000486
Uwe Hermanne823ee02007-06-05 15:02:18 +0000487 {0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000488};
Ollie Lho761bf1b2004-03-20 16:46:10 +0000489
Uwe Hermanna7e05482007-05-09 10:17:44 +0000490int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000491{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000492 struct pci_dev *dev = 0;
493 int ret = -2; /* nothing! */
494 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000495
Ollie Lhocbbf1252004-03-17 22:22:08 +0000496 /* now let's try to find the chipset we have ... */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000497 for (i = 0; i < sizeof(enables) / sizeof(enables[0]); i++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000498 dev = pci_dev_find(enables[i].vendor, enables[i].device);
499 if (dev)
500 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000501 }
502
Uwe Hermanna7e05482007-05-09 10:17:44 +0000503 if (dev) {
504 printf("Found chipset \"%s\": Enabling flash write... ",
505 enables[i].name);
506
507 ret = enables[i].doit(dev, enables[i].name);
508 if (ret)
509 printf("Failed!\n");
510 else
511 printf("OK.\n");
512 }
513
514 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000515}