blob: c557b227341372377c9b58b4c9f1444d0ae6a07e [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001/*
2 * flash rom utility: enable flash writes
3 *
4 * Copyright (C) 2000-2004 ???
5 * Copyright (C) 2005 coresystems GmbH <stepan@openbios.org>
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>
Ollie Lho184a4042005-11-26 21:55:36 +000017#include <stdint.h>
18#include <string.h>
Adam Kaufman064b1f22007-02-06 19:47:50 +000019#if defined (__sun) && (defined(__i386) || defined(__amd64))
20#include <strings.h>
21#include <sys/sysi86.h>
22#include <sys/psw.h>
23#include <asm/sunddi.h>
24#endif
25#include "flash.h"
Ollie Lho184a4042005-11-26 21:55:36 +000026#include "lbtable.h"
27#include "debug.h"
Ollie Lhocbbf1252004-03-17 22:22:08 +000028
Stefan Reinauer86de2832006-03-31 11:26:55 +000029// We keep this for the others.
30static struct pci_access *pacc;
31
Ollie Lho761bf1b2004-03-20 16:46:10 +000032static int enable_flash_sis630(struct pci_dev *dev, char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +000033{
34 char b;
35
Ollie Lhocbbf1252004-03-17 22:22:08 +000036 /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630 */
37 outl(0x80000840, 0x0cf8);
38 b = inb(0x0cfc) | 0x0b;
39 outb(b, 0xcfc);
40 /* Flash write enable on SiS 540/630 */
41 outl(0x80000845, 0x0cf8);
42 b = inb(0x0cfd) | 0x40;
43 outb(b, 0xcfd);
44
45 /* The same thing on SiS 950 SuperIO side */
46 outb(0x87, 0x2e);
47 outb(0x01, 0x2e);
48 outb(0x55, 0x2e);
49 outb(0x55, 0x2e);
50
51 if (inb(0x2f) != 0x87) {
52 outb(0x87, 0x4e);
53 outb(0x01, 0x4e);
54 outb(0x55, 0x4e);
55 outb(0xaa, 0x4e);
56 if (inb(0x4f) != 0x87) {
57 printf("Can not access SiS 950\n");
58 return -1;
59 }
60 outb(0x24, 0x4e);
61 b = inb(0x4f) | 0xfc;
62 outb(0x24, 0x4e);
63 outb(b, 0x4f);
64 outb(0x02, 0x4e);
Ollie Lho761bf1b2004-03-20 16:46:10 +000065 outb(0x02, 0x4f);
Ollie Lhocbbf1252004-03-17 22:22:08 +000066 }
67
68 outb(0x24, 0x2e);
69 printf("2f is %#x\n", inb(0x2f));
70 b = inb(0x2f) | 0xfc;
71 outb(0x24, 0x2e);
72 outb(b, 0x2f);
73
74 outb(0x02, 0x2e);
75 outb(0x02, 0x2f);
76
77 return 0;
78}
79
Uwe Hermann987942d2006-11-07 11:16:21 +000080/* Datasheet:
81 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
82 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
83 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
84 * - Order Number: 290562-001
85 */
Uwe Hermannea2c66d2006-11-05 18:26:08 +000086static int enable_flash_piix4(struct pci_dev *dev, char *name)
87{
88 uint16_t old, new;
89 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
90
91 old = pci_read_word(dev, xbcs);
92
93 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
94 FFF00000-FFF7FFFF are forwarded to ISA).
95 Set bit 7: Extended BIOS Enable (PCI master accesses to
96 FFF80000-FFFDFFFF are forwarded to ISA).
97 Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
Uwe Hermann987942d2006-11-07 11:16:21 +000098 the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
Uwe Hermannea2c66d2006-11-05 18:26:08 +000099 of 1 Mbyte, or the aliases at the top of 4 Gbyte
Uwe Hermann987942d2006-11-07 11:16:21 +0000100 (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
101 Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
102 Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable). */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000103 new = old | 0x2c4;
104
105 if (new == old)
106 return 0;
107
108 pci_write_word(dev, xbcs, new);
109
110 if (pci_read_word(dev, xbcs) != new) {
111 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
112 return -1;
113 }
114 return 0;
115}
116
Stefan Reinauer86de2832006-03-31 11:26:55 +0000117static int enable_flash_ich(struct pci_dev *dev, char *name, int bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000118{
119 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000120 uint8_t old, new;
Stefan Reinauereb366472006-09-06 15:48:48 +0000121
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000122 /* if it fails, it fails. There are so many variations of broken mobos
123 * that it is hard to argue that we should quit at this point.
124 */
125
Stefan Reinauereb366472006-09-06 15:48:48 +0000126 /* Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
127 * just treating it as 8 bit wide seems to work fine in practice.
128 */
129
130 /* see ie. page 375 of "Intel ICH7 External Design Specification"
131 * http://download.intel.com/design/chipsets/datashts/30701302.pdf
132 */
133
Stefan Reinauer86de2832006-03-31 11:26:55 +0000134 old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000135
136 new = old | 1;
137
138 if (new == old)
139 return 0;
140
Stefan Reinauer86de2832006-03-31 11:26:55 +0000141 pci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000142
Stefan Reinauer86de2832006-03-31 11:26:55 +0000143 if (pci_read_byte(dev, bios_cntl) != new) {
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000144 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
Stefan Reinauer86de2832006-03-31 11:26:55 +0000145 bios_cntl, new, name);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000146 return -1;
147 }
148 return 0;
149}
150
Stefan Reinauereb366472006-09-06 15:48:48 +0000151static int enable_flash_ich_4e(struct pci_dev *dev, char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000152{
Stefan Reinauereb366472006-09-06 15:48:48 +0000153 return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000154}
155
Stefan Reinauereb366472006-09-06 15:48:48 +0000156static int enable_flash_ich_dc(struct pci_dev *dev, char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000157{
Stefan Reinauereb366472006-09-06 15:48:48 +0000158 return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000159}
160
Ollie Lhocbbf1252004-03-17 22:22:08 +0000161static int enable_flash_vt8235(struct pci_dev *dev, char *name)
162{
Ollie Lho184a4042005-11-26 21:55:36 +0000163 uint8_t old, new, val;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000164 unsigned int base;
165 int ok;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000166
Ollie Lhocbbf1252004-03-17 22:22:08 +0000167 old = pci_read_byte(dev, 0x40);
168
169 new = old | 0x10;
170
171 if (new == old)
172 return 0;
173
174 ok = pci_write_byte(dev, 0x40, new);
175 if (ok != 0) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000176 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
177 old, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000178 }
179
180 /* enable GPIO15 which is connected to write protect. */
Ollie Lho8b8897a2004-03-27 00:18:15 +0000181 base = ((pci_read_byte(dev, 0x88) & 0x80) | pci_read_byte(dev, 0x89) << 8);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000182 val = inb(base + 0x4d);
183 val |= 0x80;
184 outb(val, base + 0x4d);
185
186 if (ok != 0) {
187 return -1;
188 } else {
189 return 0;
190 }
191}
192
193static int enable_flash_vt8231(struct pci_dev *dev, char *name)
194{
Ollie Lho184a4042005-11-26 21:55:36 +0000195 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000196
Ollie Lhocbbf1252004-03-17 22:22:08 +0000197 val = pci_read_byte(dev, 0x40);
198 val |= 0x10;
199 pci_write_byte(dev, 0x40, val);
200
201 if (pci_read_byte(dev, 0x40) != val) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000202 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
203 0x40, val, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000204 return -1;
205 }
206 return 0;
207}
208
209static int enable_flash_cs5530(struct pci_dev *dev, char *name)
210{
Ollie Lho184a4042005-11-26 21:55:36 +0000211 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000212
Ollie Lhocbbf1252004-03-17 22:22:08 +0000213 pci_write_byte(dev, 0x52, 0xee);
214
215 new = pci_read_byte(dev, 0x52);
216
217 if (new != 0xee) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000218 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
219 0x52, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000220 return -1;
221 }
Ollie Lho184a4042005-11-26 21:55:36 +0000222
223 new = pci_read_byte(dev, 0x5b) | 0x20;
224 pci_write_byte(dev, 0x5b, new);
225
Ollie Lhocbbf1252004-03-17 22:22:08 +0000226 return 0;
227}
228
Ollie Lho184a4042005-11-26 21:55:36 +0000229
Ollie Lhocbbf1252004-03-17 22:22:08 +0000230static int enable_flash_sc1100(struct pci_dev *dev, char *name)
231{
Ollie Lho184a4042005-11-26 21:55:36 +0000232 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000233
Ollie Lhocbbf1252004-03-17 22:22:08 +0000234 pci_write_byte(dev, 0x52, 0xee);
235
236 new = pci_read_byte(dev, 0x52);
237
238 if (new != 0xee) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000239 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
240 0x52, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000241 return -1;
242 }
243 return 0;
244}
245
246static int enable_flash_sis5595(struct pci_dev *dev, char *name)
247{
Ollie Lho184a4042005-11-26 21:55:36 +0000248 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000249
Ollie Lhocbbf1252004-03-17 22:22:08 +0000250 new = pci_read_byte(dev, 0x45);
251
252 /* clear bit 5 */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000253 new &= (~0x20);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000254 /* set bit 2 */
255 new |= 0x4;
256
257 pci_write_byte(dev, 0x45, new);
258
259 newer = pci_read_byte(dev, 0x45);
260 if (newer != new) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000261 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
262 0x45, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000263 printf("Stuck at 0x%x\n", newer);
264 return -1;
265 }
266 return 0;
267}
268
Ollie Lho761bf1b2004-03-20 16:46:10 +0000269static int enable_flash_amd8111(struct pci_dev *dev, char *name)
270{
Ollie Lhocbbf1252004-03-17 22:22:08 +0000271 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000272 uint8_t old, new;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000273 /* if it fails, it fails. There are so many variations of broken mobos
274 * that it is hard to argue that we should quit at this point.
275 */
276
Ollie Lhod11f3612004-12-07 17:19:04 +0000277 /* enable decoding at 0xffb00000 to 0xffffffff */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000278 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000279 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000280 if (new != old) {
281 pci_write_byte(dev, 0x43, new);
282 if (pci_read_byte(dev, 0x43) != new) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000283 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
284 0x43, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000285 }
286 }
287
Ollie Lho761bf1b2004-03-20 16:46:10 +0000288 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000289 new = old | 0x01;
290 if (new == old)
291 return 0;
292 pci_write_byte(dev, 0x40, new);
293
294 if (pci_read_byte(dev, 0x40) != new) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000295 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
296 0x40, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000297 return -1;
298 }
299 return 0;
300}
301
Yinghai Lu952dfce2005-07-06 17:13:46 +0000302//By yhlu
303static int enable_flash_ck804(struct pci_dev *dev, char *name)
304{
305 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000306 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000307 /* if it fails, it fails. There are so many variations of broken mobos
308 * that it is hard to argue that we should quit at this point.
309 */
310
311 //dump_pci_device(dev);
312
313 old = pci_read_byte(dev, 0x88);
314 new = old | 0xc0;
315 if (new != old) {
316 pci_write_byte(dev, 0x88, new);
317 if (pci_read_byte(dev, 0x88) != new) {
318 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
319 0x88, new, name);
320 }
321 }
322
323 old = pci_read_byte(dev, 0x6d);
324 new = old | 0x01;
325 if (new == old)
326 return 0;
327 pci_write_byte(dev, 0x6d, new);
328
329 if (pci_read_byte(dev, 0x6d) != new) {
330 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
331 0x6d, new, name);
332 return -1;
333 }
334 return 0;
335}
336
Stefan Reinauer86de2832006-03-31 11:26:55 +0000337static int enable_flash_sb400(struct pci_dev *dev, char *name)
338{
339 uint8_t tmp;
340
341 struct pci_filter f;
342 struct pci_dev *smbusdev;
343
Stefan Reinauer86de2832006-03-31 11:26:55 +0000344 /* then look for the smbus device */
345 pci_filter_init((struct pci_access *) 0, &f);
346 f.vendor = 0x1002;
347 f.device = 0x4372;
348
349 for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
350 if (pci_filter_match(&f, smbusdev)) {
351 break;
352 }
353 }
354
355 if(!smbusdev) {
356 perror("smbus device not found. aborting\n");
357 exit(1);
358 }
359
360 // enable some smbus stuff
361 tmp=pci_read_byte(smbusdev, 0x79);
362 tmp|=0x01;
363 pci_write_byte(smbusdev, 0x79, tmp);
364
365 // change southbridge
366 tmp=pci_read_byte(dev, 0x48);
367 tmp|=0x21;
368 pci_write_byte(dev, 0x48, tmp);
369
370 // now become a bit silly.
371 tmp=inb(0xc6f);
372 outb(tmp,0xeb);
373 outb(tmp, 0xeb);
374 tmp|=0x40;
375 outb(tmp, 0xc6f);
376 outb(tmp, 0xeb);
377 outb(tmp, 0xeb);
378
379 return 0;
380}
381
Yinghai Luca782972007-01-22 20:21:17 +0000382//By yhlu
383static int enable_flash_mcp55(struct pci_dev *dev, char *name)
384{
385 /* register 4e.b gets or'ed with one */
386 unsigned char old, new, byte;
387 unsigned short word;
388
389 /* if it fails, it fails. There are so many variations of broken mobos
390 * that it is hard to argue that we should quit at this point.
391 */
392
393 //dump_pci_device(dev);
394
395 /* Set the 4MB enable bit bit */
396 byte = pci_read_byte(dev, 0x88);
397 byte |= 0xff; //256K
398 pci_write_byte(dev, 0x88, byte);
399 byte = pci_read_byte(dev, 0x8c);
400 byte |= 0xff; //1M
401 pci_write_byte(dev, 0x8c, byte);
402 word = pci_read_word(dev, 0x90);
403 word |= 0x7fff; //15M
404 pci_write_word(dev, 0x90, word);
405
406 old = pci_read_byte(dev, 0x6d);
407 new = old | 0x01;
408 if (new == old)
409 return 0;
410 pci_write_byte(dev, 0x6d, new);
411
412 if (pci_read_byte(dev, 0x6d) != new) {
413 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
414 0x6d, new, name);
415 return -1;
416 }
417
418 return 0;
419
420}
421
Ollie Lhocbbf1252004-03-17 22:22:08 +0000422typedef struct penable {
Ollie Lho761bf1b2004-03-20 16:46:10 +0000423 unsigned short vendor, device;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000424 char *name;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000425 int (*doit) (struct pci_dev * dev, char *name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000426} FLASH_ENABLE;
427
428static FLASH_ENABLE enables[] = {
Stefan Reinauereb366472006-09-06 15:48:48 +0000429 {0x1039, 0x0630, "SIS630", enable_flash_sis630},
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000430 {0x8086, 0x7110, "PIIX4/PIIX4E/PIIX4M", enable_flash_piix4},
Stefan Reinauereb366472006-09-06 15:48:48 +0000431 {0x8086, 0x2410, "ICH", enable_flash_ich_4e},
432 {0x8086, 0x2420, "ICH0", enable_flash_ich_4e},
433 {0x8086, 0x2440, "ICH2", enable_flash_ich_4e},
434 {0x8086, 0x244c, "ICH2-M", enable_flash_ich_4e},
435 {0x8086, 0x2480, "ICH3-S", enable_flash_ich_4e},
436 {0x8086, 0x248c, "ICH3-M", enable_flash_ich_4e},
437 {0x8086, 0x24c0, "ICH4/ICH4-L", enable_flash_ich_4e},
438 {0x8086, 0x24cc, "ICH4-M", enable_flash_ich_4e},
439 {0x8086, 0x24d0, "ICH5/ICH5R", enable_flash_ich_4e},
440 {0x8086, 0x2640, "ICH6/ICH6R", enable_flash_ich_dc},
441 {0x8086, 0x2641, "ICH6-M", enable_flash_ich_dc},
442 {0x8086, 0x27b8, "ICH7/ICH7R", enable_flash_ich_dc},
443 {0x8086, 0x27b9, "ICH7M", enable_flash_ich_dc},
444 {0x8086, 0x27bd, "ICH7MDH", enable_flash_ich_dc},
445 {0x8086, 0x2810, "ICH8/ICH8R", enable_flash_ich_dc},
446 {0x8086, 0x2812, "ICH8DH", enable_flash_ich_dc},
447 {0x8086, 0x2814, "ICH8DO", enable_flash_ich_dc},
Ollie Lho761bf1b2004-03-20 16:46:10 +0000448 {0x1106, 0x8231, "VT8231", enable_flash_vt8231},
449 {0x1106, 0x3177, "VT8235", enable_flash_vt8235},
Stefan Reinauer219b61e2006-10-14 21:04:49 +0000450 {0x1106, 0x3227, "VT8237", enable_flash_vt8231},
Stefan Reinauerc6b5f492006-11-07 10:22:20 +0000451 {0x1106, 0x0686, "VT82C686", enable_flash_amd8111},
Ollie Lho761bf1b2004-03-20 16:46:10 +0000452 {0x1078, 0x0100, "CS5530", enable_flash_cs5530},
453 {0x100b, 0x0510, "SC1100", enable_flash_sc1100},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000454 {0x1039, 0x0008, "SIS5595", enable_flash_sis5595},
455 {0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
Stefan Reinauer86de2832006-03-31 11:26:55 +0000456 // this fallthrough looks broken.
Yinghai Lu952dfce2005-07-06 17:13:46 +0000457 {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, // LPC
458 {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, // Pro
459 {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 +0000460
461 {0x10de, 0x0260, "NVidia MCP51", enable_flash_ck804},
462 {0x10de, 0x0261, "NVidia MCP51", enable_flash_ck804},
463 {0x10de, 0x0262, "NVidia MCP51", enable_flash_ck804},
464 {0x10de, 0x0263, "NVidia MCP51", enable_flash_ck804},
465
Ward Vandewege3ab54152007-02-28 21:50:15 +0000466 {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, // Gigabyte m57sli-s4
Yinghai Luca782972007-01-22 20:21:17 +0000467 {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, // LPC
468 {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, // Pro
469
Stefan Reinauer86de2832006-03-31 11:26:55 +0000470 {0x1002, 0x4377, "ATI SB400", enable_flash_sb400}, // ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000471};
Ollie Lho761bf1b2004-03-20 16:46:10 +0000472
Ollie Lho184a4042005-11-26 21:55:36 +0000473static int mbenable_island_aruma(void)
474{
Stefan Reinauer86de2832006-03-31 11:26:55 +0000475#define EFIR 0x2e /* Extended function index register, either 0x2e or 0x4e */
476#define EFDR EFIR + 1 /* Extended function data register, one plus the index reg. */
Ollie Lho184a4042005-11-26 21:55:36 +0000477 char b;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000478
479/* Disable the flash write protect. The flash write protect is
480 * connected to the WinBond w83627hf GPIO 24.
481 */
Ollie Lho184a4042005-11-26 21:55:36 +0000482
Ollie Lho184a4042005-11-26 21:55:36 +0000483 printf("Disabling mainboard flash write protection.\n");
484
485 outb(0x87, EFIR); // sequence to unlock extended functions
486 outb(0x87, EFIR);
487
488 outb(0x20, EFIR); // SIO device ID register
489 b = inb(EFDR);
490 printf_debug("W83627HF device ID = 0x%x\n",b);
491
492 if (b != 0x52) {
493 perror("Incorrect device ID, aborting write protect disable\n");
494 exit(1);
495 }
496
497 outb(0x2b, EFIR); // GPIO multiplexed pin reg.
498 b = inb(EFDR) | 0x10;
499 outb(0x2b, EFIR);
500 outb(b, EFDR); // select GPIO 24 instead of WDTO
501
502 outb(0x7, EFIR); // logical device select
503 outb(0x8, EFDR); // point to device 8, GPIO port 2
504
505 outb(0x30, EFIR); // logic device activation control
506 outb(0x1, EFDR); // activate
507
508 outb(0xf0, EFIR); // GPIO 20-27 I/O selection register
509 b = inb(EFDR) & ~0x10;
510 outb(0xf0, EFIR);
511 outb(b, EFDR); // set GPIO 24 as an output
512
513 outb(0xf1, EFIR); // GPIO 20-27 data register
514 b = inb(EFDR) | 0x10;
515 outb(0xf1, EFIR);
516 outb(b, EFDR); // set GPIO 24
517
518 outb(0xaa, EFIR); // command to exit extended functions
519
520 return 0;
521}
522
523typedef struct mbenable {
524 char *vendor, *part;
525 int (*doit)(void);
526} MAINBOARD_ENABLE;
527
528static MAINBOARD_ENABLE mbenables[] = {
529 { "ISLAND", "ARUMA", mbenable_island_aruma },
530};
531
Ollie Lhocbbf1252004-03-17 22:22:08 +0000532int enable_flash_write()
533{
534 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000535 struct pci_dev *dev = 0;
536 FLASH_ENABLE *enable = 0;
537
Adam Kaufman064b1f22007-02-06 19:47:50 +0000538 /* get io privilege access PCI configuration space */
539#if defined (__sun) && (defined(__i386) || defined(__amd64))
540 if (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) != 0){
541#else
542 if (iopl(3) != 0) {
543#endif
544 perror("Can not set io privilege");
545 exit(1);
546 }
547
548
549 /* Initialize PCI access */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000550 pacc = pci_alloc(); /* Get the pci_access structure */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000551 /* Set all options you want -- here we stick with the defaults */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000552 pci_init(pacc); /* Initialize the PCI library */
553 pci_scan_bus(pacc); /* We want to get the list of devices */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000554
Ollie Lho184a4042005-11-26 21:55:36 +0000555
556 /* First look whether we have to do something for this
557 * motherboard.
558 */
559 for (i = 0; i < sizeof(mbenables) / sizeof(mbenables[0]); i++) {
560 if(lb_vendor && !strcmp(mbenables[i].vendor, lb_vendor) &&
561 lb_part && !strcmp(mbenables[i].part, lb_part)) {
562 mbenables[i].doit();
563 break;
564 }
565 }
566
Ollie Lhocbbf1252004-03-17 22:22:08 +0000567 /* now let's try to find the chipset we have ... */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000568 for (i = 0; i < sizeof(enables) / sizeof(enables[0]) && (!dev);
569 i++) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000570 struct pci_filter f;
571 struct pci_dev *z;
572 /* the first param is unused. */
573 pci_filter_init((struct pci_access *) 0, &f);
574 f.vendor = enables[i].vendor;
575 f.device = enables[i].device;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000576 for (z = pacc->devices; z; z = z->next)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000577 if (pci_filter_match(&f, z)) {
578 enable = &enables[i];
579 dev = z;
580 }
581 }
582
Stefan Reinauercbc55d02006-08-25 19:21:42 +0000583 if (!enable) {
584 printf("Warning: Unknown system. Flash detection "
585 "will most likely fail.\n");
586 return 1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000587 }
Stefan Reinauercbc55d02006-08-25 19:21:42 +0000588
589 /* now do the deed. */
590 printf("Enabling flash write on %s...", enable->name);
591 if (enable->doit(dev, enable->name) == 0)
592 printf("OK\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000593 return 0;
594}