blob: b4deee3e955b98b1cc240496a8302ae6dbb2b582 [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001/*
2 * flash rom utility: enable flash writes
3 *
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2005-2007 coresystems GmbH <stepan@coresystems.de>
Stefan Reinauereb366472006-09-06 15:48:48 +00006 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
Ollie Lho184a4042005-11-26 21:55:36 +00007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2
11 *
12 */
13
Ollie Lhocbbf1252004-03-17 22:22:08 +000014#include <stdio.h>
15#include <pci/pci.h>
16#include <stdlib.h>
17
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000018#include "flash.h"
19#include "debug.h"
Stefan Reinauer86de2832006-03-31 11:26:55 +000020
Luc Verhaegen6b141752007-05-20 16:16:13 +000021static int enable_flash_ali_m1533(struct pci_dev *dev, char *name)
22{
23 uint8_t tmp;
24
25 /* ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
26 0xFFFE0000-0xFFFFFFFF ROM select enable. */
27 tmp = pci_read_byte(dev, 0x47);
28 tmp |= 0x46;
29 pci_write_byte(dev, 0x47, tmp);
30
31 return 0;
32}
33
Ollie Lho761bf1b2004-03-20 16:46:10 +000034static int enable_flash_sis630(struct pci_dev *dev, char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +000035{
36 char b;
37
Ollie Lhocbbf1252004-03-17 22:22:08 +000038 /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630 */
39 outl(0x80000840, 0x0cf8);
40 b = inb(0x0cfc) | 0x0b;
41 outb(b, 0xcfc);
42 /* Flash write enable on SiS 540/630 */
43 outl(0x80000845, 0x0cf8);
44 b = inb(0x0cfd) | 0x40;
45 outb(b, 0xcfd);
46
47 /* The same thing on SiS 950 SuperIO side */
48 outb(0x87, 0x2e);
49 outb(0x01, 0x2e);
50 outb(0x55, 0x2e);
51 outb(0x55, 0x2e);
52
53 if (inb(0x2f) != 0x87) {
54 outb(0x87, 0x4e);
55 outb(0x01, 0x4e);
56 outb(0x55, 0x4e);
57 outb(0xaa, 0x4e);
58 if (inb(0x4f) != 0x87) {
59 printf("Can not access SiS 950\n");
60 return -1;
61 }
62 outb(0x24, 0x4e);
63 b = inb(0x4f) | 0xfc;
64 outb(0x24, 0x4e);
65 outb(b, 0x4f);
66 outb(0x02, 0x4e);
Ollie Lho761bf1b2004-03-20 16:46:10 +000067 outb(0x02, 0x4f);
Ollie Lhocbbf1252004-03-17 22:22:08 +000068 }
69
70 outb(0x24, 0x2e);
71 printf("2f is %#x\n", inb(0x2f));
72 b = inb(0x2f) | 0xfc;
73 outb(0x24, 0x2e);
74 outb(b, 0x2f);
75
76 outb(0x02, 0x2e);
77 outb(0x02, 0x2f);
78
79 return 0;
80}
81
Uwe Hermann987942d2006-11-07 11:16:21 +000082/* Datasheet:
83 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
84 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
85 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
86 * - Order Number: 290562-001
87 */
Uwe Hermannea2c66d2006-11-05 18:26:08 +000088static int enable_flash_piix4(struct pci_dev *dev, char *name)
89{
90 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +000091 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +000092
93 old = pci_read_word(dev, xbcs);
94
95 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +000096 * FFF00000-FFF7FFFF are forwarded to ISA).
97 * Set bit 7: Extended BIOS Enable (PCI master accesses to
98 * FFF80000-FFFDFFFF are forwarded to ISA).
99 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
100 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
101 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
102 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
103 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
104 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
105 */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000106 new = old | 0x2c4;
107
108 if (new == old)
109 return 0;
110
111 pci_write_word(dev, xbcs, new);
112
113 if (pci_read_word(dev, xbcs) != new) {
114 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
115 return -1;
116 }
117 return 0;
118}
119
Stefan Reinauer86de2832006-03-31 11:26:55 +0000120static int enable_flash_ich(struct pci_dev *dev, char *name, int bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000121{
122 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000123 uint8_t old, new;
Stefan Reinauereb366472006-09-06 15:48:48 +0000124
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000125 /* if it fails, it fails. There are so many variations of broken mobos
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000126 * that it is hard to argue that we should quit at this point.
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000127 */
128
Stefan Reinauereb366472006-09-06 15:48:48 +0000129 /* Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
Uwe Hermanna7e05482007-05-09 10:17:44 +0000130 * just treating it as 8 bit wide seems to work fine in practice.
Stefan Reinauereb366472006-09-06 15:48:48 +0000131 */
132
133 /* see ie. page 375 of "Intel ICH7 External Design Specification"
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000134 * http://download.intel.com/design/chipsets/datashts/30701302.pdf
Stefan Reinauereb366472006-09-06 15:48:48 +0000135 */
136
Stefan Reinauer86de2832006-03-31 11:26:55 +0000137 old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000138
139 new = old | 1;
140
141 if (new == old)
142 return 0;
143
Stefan Reinauer86de2832006-03-31 11:26:55 +0000144 pci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000145
Stefan Reinauer86de2832006-03-31 11:26:55 +0000146 if (pci_read_byte(dev, bios_cntl) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000147 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 +0000148 return -1;
149 }
150 return 0;
151}
152
Stefan Reinauereb366472006-09-06 15:48:48 +0000153static int enable_flash_ich_4e(struct pci_dev *dev, char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000154{
Stefan Reinauereb366472006-09-06 15:48:48 +0000155 return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000156}
157
Stefan Reinauereb366472006-09-06 15:48:48 +0000158static int enable_flash_ich_dc(struct pci_dev *dev, char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000159{
Stefan Reinauereb366472006-09-06 15:48:48 +0000160 return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000161}
162
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000163/*
164 *
165 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000166static int enable_flash_vt823x(struct pci_dev *dev, char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000167{
Ollie Lho184a4042005-11-26 21:55:36 +0000168 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000169
Uwe Hermanna7e05482007-05-09 10:17:44 +0000170 /* ROM Write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000171 val = pci_read_byte(dev, 0x40);
172 val |= 0x10;
173 pci_write_byte(dev, 0x40, val);
174
175 if (pci_read_byte(dev, 0x40) != val) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000176 printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000177 name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000178 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000179 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000180
Uwe Hermanna7e05482007-05-09 10:17:44 +0000181 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000182}
183
184static int enable_flash_cs5530(struct pci_dev *dev, char *name)
185{
Ollie Lho184a4042005-11-26 21:55:36 +0000186 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000187
Ollie Lhocbbf1252004-03-17 22:22:08 +0000188 pci_write_byte(dev, 0x52, 0xee);
189
190 new = pci_read_byte(dev, 0x52);
191
192 if (new != 0xee) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000193 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 +0000194 return -1;
195 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000196
Ollie Lho184a4042005-11-26 21:55:36 +0000197 new = pci_read_byte(dev, 0x5b) | 0x20;
198 pci_write_byte(dev, 0x5b, new);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000199
Ollie Lhocbbf1252004-03-17 22:22:08 +0000200 return 0;
201}
202
203static int enable_flash_sc1100(struct pci_dev *dev, char *name)
204{
Ollie Lho184a4042005-11-26 21:55:36 +0000205 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000206
Ollie Lhocbbf1252004-03-17 22:22:08 +0000207 pci_write_byte(dev, 0x52, 0xee);
208
209 new = pci_read_byte(dev, 0x52);
210
211 if (new != 0xee) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000212 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 +0000213 return -1;
214 }
215 return 0;
216}
217
218static int enable_flash_sis5595(struct pci_dev *dev, char *name)
219{
Ollie Lho184a4042005-11-26 21:55:36 +0000220 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000221
Ollie Lhocbbf1252004-03-17 22:22:08 +0000222 new = pci_read_byte(dev, 0x45);
223
224 /* clear bit 5 */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000225 new &= (~0x20);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000226 /* set bit 2 */
227 new |= 0x4;
228
229 pci_write_byte(dev, 0x45, new);
230
231 newer = pci_read_byte(dev, 0x45);
232 if (newer != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000233 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 +0000234 printf("Stuck at 0x%x\n", newer);
235 return -1;
236 }
237 return 0;
238}
239
Ollie Lho761bf1b2004-03-20 16:46:10 +0000240static int enable_flash_amd8111(struct pci_dev *dev, char *name)
241{
Ollie Lhocbbf1252004-03-17 22:22:08 +0000242 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000243 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000244
Ollie Lhocbbf1252004-03-17 22:22:08 +0000245 /* if it fails, it fails. There are so many variations of broken mobos
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000246 * that it is hard to argue that we should quit at this point.
Ollie Lhocbbf1252004-03-17 22:22:08 +0000247 */
248
Ollie Lhod11f3612004-12-07 17:19:04 +0000249 /* enable decoding at 0xffb00000 to 0xffffffff */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000250 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000251 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000252 if (new != old) {
253 pci_write_byte(dev, 0x43, new);
254 if (pci_read_byte(dev, 0x43) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000255 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 +0000256 }
257 }
258
Ollie Lho761bf1b2004-03-20 16:46:10 +0000259 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000260 new = old | 0x01;
261 if (new == old)
262 return 0;
263 pci_write_byte(dev, 0x40, new);
264
265 if (pci_read_byte(dev, 0x40) != new) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000266 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 +0000267 return -1;
268 }
269 return 0;
270}
271
Yinghai Lu952dfce2005-07-06 17:13:46 +0000272static int enable_flash_ck804(struct pci_dev *dev, char *name)
273{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000274 /* register 4e.b gets or'ed with one */
275 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000276
Uwe Hermanna7e05482007-05-09 10:17:44 +0000277 /* if it fails, it fails. There are so many variations of broken mobos
278 * that it is hard to argue that we should quit at this point.
279 */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000280
Uwe Hermanna7e05482007-05-09 10:17:44 +0000281 /* dump_pci_device(dev); */
Yinghai Lu952dfce2005-07-06 17:13:46 +0000282
Uwe Hermanna7e05482007-05-09 10:17:44 +0000283 old = pci_read_byte(dev, 0x88);
284 new = old | 0xc0;
285 if (new != old) {
286 pci_write_byte(dev, 0x88, new);
287 if (pci_read_byte(dev, 0x88) != new) {
288 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
289 }
290 }
Yinghai Lu952dfce2005-07-06 17:13:46 +0000291
Uwe Hermanna7e05482007-05-09 10:17:44 +0000292 old = pci_read_byte(dev, 0x6d);
293 new = old | 0x01;
294 if (new == old)
295 return 0;
296 pci_write_byte(dev, 0x6d, new);
297
298 if (pci_read_byte(dev, 0x6d) != new) {
299 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
300 return -1;
301 }
302 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000303}
304
Stefan Reinauer86de2832006-03-31 11:26:55 +0000305static int enable_flash_sb400(struct pci_dev *dev, char *name)
306{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000307 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000308
309 struct pci_filter f;
310 struct pci_dev *smbusdev;
311
Stefan Reinauer86de2832006-03-31 11:26:55 +0000312 /* then look for the smbus device */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000313 pci_filter_init((struct pci_access *)0, &f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000314 f.vendor = 0x1002;
315 f.device = 0x4372;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000316
Stefan Reinauer86de2832006-03-31 11:26:55 +0000317 for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
318 if (pci_filter_match(&f, smbusdev)) {
319 break;
320 }
321 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000322
Uwe Hermanna7e05482007-05-09 10:17:44 +0000323 if (!smbusdev) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000324 fprintf(stderr, "ERROR: SMBus device not found. aborting\n");
Stefan Reinauer86de2832006-03-31 11:26:55 +0000325 exit(1);
326 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000327
328 /* enable some smbus stuff */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000329 tmp = pci_read_byte(smbusdev, 0x79);
330 tmp |= 0x01;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000331 pci_write_byte(smbusdev, 0x79, tmp);
332
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000333 /* change southbridge */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000334 tmp = pci_read_byte(dev, 0x48);
335 tmp |= 0x21;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000336 pci_write_byte(dev, 0x48, tmp);
337
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000338 /* now become a bit silly. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000339 tmp = inb(0xc6f);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000340 outb(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000341 outb(tmp, 0xeb);
342 tmp |= 0x40;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000343 outb(tmp, 0xc6f);
344 outb(tmp, 0xeb);
345 outb(tmp, 0xeb);
346
347 return 0;
348}
349
Yinghai Luca782972007-01-22 20:21:17 +0000350static int enable_flash_mcp55(struct pci_dev *dev, char *name)
351{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000352 /* register 4e.b gets or'ed with one */
353 unsigned char old, new, byte;
354 unsigned short word;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000355
Uwe Hermanna7e05482007-05-09 10:17:44 +0000356 /* if it fails, it fails. There are so many variations of broken mobos
357 * that it is hard to argue that we should quit at this point.
358 */
Yinghai Luca782972007-01-22 20:21:17 +0000359
Uwe Hermanna7e05482007-05-09 10:17:44 +0000360 /* dump_pci_device(dev); */
Yinghai Luca782972007-01-22 20:21:17 +0000361
Uwe Hermanna7e05482007-05-09 10:17:44 +0000362 /* Set the 4MB enable bit bit */
363 byte = pci_read_byte(dev, 0x88);
364 byte |= 0xff; /* 256K */
365 pci_write_byte(dev, 0x88, byte);
366 byte = pci_read_byte(dev, 0x8c);
367 byte |= 0xff; /* 1M */
368 pci_write_byte(dev, 0x8c, byte);
369 word = pci_read_word(dev, 0x90);
370 word |= 0x7fff; /* 15M */
371 pci_write_word(dev, 0x90, word);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000372
Uwe Hermanna7e05482007-05-09 10:17:44 +0000373 old = pci_read_byte(dev, 0x6d);
374 new = old | 0x01;
375 if (new == old)
376 return 0;
377 pci_write_byte(dev, 0x6d, new);
Yinghai Luca782972007-01-22 20:21:17 +0000378
Uwe Hermanna7e05482007-05-09 10:17:44 +0000379 if (pci_read_byte(dev, 0x6d) != new) {
380 printf
381 ("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
382 0x6d, new, name);
383 return -1;
384 }
Yinghai Luca782972007-01-22 20:21:17 +0000385
386 return 0;
387
388}
389
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000390static int enable_flash_ht1000(struct pci_dev *dev, char *name)
391{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000392 uint8_t byte;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000393
Uwe Hermanne823ee02007-06-05 15:02:18 +0000394 /* Set the 4MB enable bit. */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000395 byte = pci_read_byte(dev, 0x41);
396 byte |= 0x0e;
397 pci_write_byte(dev, 0x41, byte);
398
399 byte = pci_read_byte(dev, 0x43);
400 byte |= (1<<4);
401 pci_write_byte(dev, 0x43, byte);
402
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000403 return 0;
404}
405
Ollie Lhocbbf1252004-03-17 22:22:08 +0000406typedef struct penable {
Ollie Lho761bf1b2004-03-20 16:46:10 +0000407 unsigned short vendor, device;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000408 char *name;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000409 int (*doit) (struct pci_dev * dev, char *name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000410} FLASH_ENABLE;
411
412static FLASH_ENABLE enables[] = {
Stefan Reinauereb366472006-09-06 15:48:48 +0000413 {0x1039, 0x0630, "SIS630", enable_flash_sis630},
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000414 {0x8086, 0x7110, "PIIX4/PIIX4E/PIIX4M", enable_flash_piix4},
Stefan Reinauereb366472006-09-06 15:48:48 +0000415 {0x8086, 0x2410, "ICH", enable_flash_ich_4e},
416 {0x8086, 0x2420, "ICH0", enable_flash_ich_4e},
417 {0x8086, 0x2440, "ICH2", enable_flash_ich_4e},
418 {0x8086, 0x244c, "ICH2-M", enable_flash_ich_4e},
419 {0x8086, 0x2480, "ICH3-S", enable_flash_ich_4e},
420 {0x8086, 0x248c, "ICH3-M", enable_flash_ich_4e},
421 {0x8086, 0x24c0, "ICH4/ICH4-L", enable_flash_ich_4e},
422 {0x8086, 0x24cc, "ICH4-M", enable_flash_ich_4e},
423 {0x8086, 0x24d0, "ICH5/ICH5R", enable_flash_ich_4e},
424 {0x8086, 0x2640, "ICH6/ICH6R", enable_flash_ich_dc},
425 {0x8086, 0x2641, "ICH6-M", enable_flash_ich_dc},
Uwe Hermann3ad25182007-03-31 19:48:38 +0000426 {0x8086, 0x27b0, "ICH7DH", enable_flash_ich_dc},
Stefan Reinauereb366472006-09-06 15:48:48 +0000427 {0x8086, 0x27b8, "ICH7/ICH7R", enable_flash_ich_dc},
428 {0x8086, 0x27b9, "ICH7M", enable_flash_ich_dc},
429 {0x8086, 0x27bd, "ICH7MDH", enable_flash_ich_dc},
430 {0x8086, 0x2810, "ICH8/ICH8R", enable_flash_ich_dc},
431 {0x8086, 0x2812, "ICH8DH", enable_flash_ich_dc},
432 {0x8086, 0x2814, "ICH8DO", enable_flash_ich_dc},
Luc Verhaegen6382b442007-03-02 22:16:38 +0000433 {0x1106, 0x8231, "VT8231", enable_flash_vt823x},
434 {0x1106, 0x3177, "VT8235", enable_flash_vt823x},
435 {0x1106, 0x3227, "VT8237", enable_flash_vt823x},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000436 {0x1106, 0x8324, "CX700", enable_flash_vt823x},
Stefan Reinauerc6b5f492006-11-07 10:22:20 +0000437 {0x1106, 0x0686, "VT82C686", enable_flash_amd8111},
Ollie Lho761bf1b2004-03-20 16:46:10 +0000438 {0x1078, 0x0100, "CS5530", enable_flash_cs5530},
439 {0x100b, 0x0510, "SC1100", enable_flash_sc1100},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000440 {0x1039, 0x0008, "SIS5595", enable_flash_sis5595},
441 {0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
Luc Verhaegen6b141752007-05-20 16:16:13 +0000442 {0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533},
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000443 /* this fallthrough looks broken. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000444 {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, /* LPC */
445 {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, /* Pro */
446 {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 +0000447
Uwe Hermanna7e05482007-05-09 10:17:44 +0000448 {0x10de, 0x0260, "NVidia MCP51", enable_flash_ck804},
449 {0x10de, 0x0261, "NVidia MCP51", enable_flash_ck804},
450 {0x10de, 0x0262, "NVidia MCP51", enable_flash_ck804},
451 {0x10de, 0x0263, "NVidia MCP51", enable_flash_ck804},
Stefan Reinauer219b61e2006-10-14 21:04:49 +0000452
Uwe Hermanna7e05482007-05-09 10:17:44 +0000453 {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, /* Gigabyte m57sli-s4 */
454 {0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
455 {0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
456 {0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
457 {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
458 {0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
459 {0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
460 {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, /* Pro */
Yinghai Luca782972007-01-22 20:21:17 +0000461
Uwe Hermanna7e05482007-05-09 10:17:44 +0000462 {0x1002, 0x4377, "ATI SB400", enable_flash_sb400}, /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
Stefan Reinauerc868b9e2007-06-05 10:28:39 +0000463
Uwe Hermanne823ee02007-06-05 15:02:18 +0000464 {0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000465};
Ollie Lho761bf1b2004-03-20 16:46:10 +0000466
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000467/*
468 *
Stefan Reinauer86de2832006-03-31 11:26:55 +0000469 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000470int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000471{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000472 struct pci_dev *dev = 0;
473 int ret = -2; /* nothing! */
474 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000475
Ollie Lhocbbf1252004-03-17 22:22:08 +0000476 /* now let's try to find the chipset we have ... */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000477 for (i = 0; i < sizeof(enables) / sizeof(enables[0]); i++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000478 dev = pci_dev_find(enables[i].vendor, enables[i].device);
479 if (dev)
480 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000481 }
482
Uwe Hermanna7e05482007-05-09 10:17:44 +0000483 if (dev) {
484 printf("Found chipset \"%s\": Enabling flash write... ",
485 enables[i].name);
486
487 ret = enables[i].doit(dev, enables[i].name);
488 if (ret)
489 printf("Failed!\n");
490 else
491 printf("OK.\n");
492 }
493
494 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000495}