blob: 435fea82b2363ef7b3b65c5f1265eff1da3c56cd [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
Luc Verhaegen6382b442007-03-02 22:16:38 +0000161static int enable_flash_vt823x(struct pci_dev *dev, char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000162{
Ollie Lho184a4042005-11-26 21:55:36 +0000163 uint8_t val;
Luc Verhaegen6382b442007-03-02 22:16:38 +0000164 int ret = 0;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000165
Luc Verhaegen6382b442007-03-02 22:16:38 +0000166 /* ROM Write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000167 val = pci_read_byte(dev, 0x40);
168 val |= 0x10;
169 pci_write_byte(dev, 0x40, val);
170
171 if (pci_read_byte(dev, 0x40) != val) {
Luc Verhaegen6382b442007-03-02 22:16:38 +0000172 printf("Warning: Failed to enable ROM Write on %s\n", name);
173 ret = -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000174 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000175
176 if (dev->device_id == 0x3177) { /* VT8235 */
177 if (!iopl(3)) { /* enable full IO access */
178 unsigned int base;
179
180 /* GPIO12-15 -> output */
181 val = pci_read_byte(dev, 0xE4);
182 val |= 0x38;
183 pci_write_byte(dev, 0xE4, val);
184
185 /* Get Power Management IO address. */
186 base = pci_read_word(dev, 0x88) & 0xFF80;
187
188 /* enable GPIO15 which is connected to write protect. */
189 val = inb(base + 0x4d);
190 val |= 0xFF;
191 outb(val, base + 0x4d);
192
193 val = inb(base + 0x4E);
194 val |= 0x0F;
195 outb(val, base + 0x4E);
196 } else {
197 printf("Warning; Failed to disable Write Protect"
198 " on %s (iopl failed)\n", name);
199 return -1;
200 }
201 }
202
203 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000204}
205
206static int enable_flash_cs5530(struct pci_dev *dev, char *name)
207{
Ollie Lho184a4042005-11-26 21:55:36 +0000208 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000209
Ollie Lhocbbf1252004-03-17 22:22:08 +0000210 pci_write_byte(dev, 0x52, 0xee);
211
212 new = pci_read_byte(dev, 0x52);
213
214 if (new != 0xee) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000215 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
216 0x52, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000217 return -1;
218 }
Ollie Lho184a4042005-11-26 21:55:36 +0000219
220 new = pci_read_byte(dev, 0x5b) | 0x20;
221 pci_write_byte(dev, 0x5b, new);
222
Ollie Lhocbbf1252004-03-17 22:22:08 +0000223 return 0;
224}
225
Ollie Lho184a4042005-11-26 21:55:36 +0000226
Ollie Lhocbbf1252004-03-17 22:22:08 +0000227static int enable_flash_sc1100(struct pci_dev *dev, char *name)
228{
Ollie Lho184a4042005-11-26 21:55:36 +0000229 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000230
Ollie Lhocbbf1252004-03-17 22:22:08 +0000231 pci_write_byte(dev, 0x52, 0xee);
232
233 new = pci_read_byte(dev, 0x52);
234
235 if (new != 0xee) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000236 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
237 0x52, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000238 return -1;
239 }
240 return 0;
241}
242
243static int enable_flash_sis5595(struct pci_dev *dev, char *name)
244{
Ollie Lho184a4042005-11-26 21:55:36 +0000245 uint8_t new, newer;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000246
Ollie Lhocbbf1252004-03-17 22:22:08 +0000247 new = pci_read_byte(dev, 0x45);
248
249 /* clear bit 5 */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000250 new &= (~0x20);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000251 /* set bit 2 */
252 new |= 0x4;
253
254 pci_write_byte(dev, 0x45, new);
255
256 newer = pci_read_byte(dev, 0x45);
257 if (newer != new) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000258 printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
259 0x45, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000260 printf("Stuck at 0x%x\n", newer);
261 return -1;
262 }
263 return 0;
264}
265
Ollie Lho761bf1b2004-03-20 16:46:10 +0000266static int enable_flash_amd8111(struct pci_dev *dev, char *name)
267{
Ollie Lhocbbf1252004-03-17 22:22:08 +0000268 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000269 uint8_t old, new;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000270 /* if it fails, it fails. There are so many variations of broken mobos
271 * that it is hard to argue that we should quit at this point.
272 */
273
Ollie Lhod11f3612004-12-07 17:19:04 +0000274 /* enable decoding at 0xffb00000 to 0xffffffff */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000275 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000276 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000277 if (new != old) {
278 pci_write_byte(dev, 0x43, new);
279 if (pci_read_byte(dev, 0x43) != new) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000280 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
281 0x43, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000282 }
283 }
284
Ollie Lho761bf1b2004-03-20 16:46:10 +0000285 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000286 new = old | 0x01;
287 if (new == old)
288 return 0;
289 pci_write_byte(dev, 0x40, new);
290
291 if (pci_read_byte(dev, 0x40) != new) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000292 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
293 0x40, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000294 return -1;
295 }
296 return 0;
297}
298
Yinghai Lu952dfce2005-07-06 17:13:46 +0000299//By yhlu
300static int enable_flash_ck804(struct pci_dev *dev, char *name)
301{
302 /* register 4e.b gets or'ed with one */
Ollie Lho184a4042005-11-26 21:55:36 +0000303 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000304 /* if it fails, it fails. There are so many variations of broken mobos
305 * that it is hard to argue that we should quit at this point.
306 */
307
308 //dump_pci_device(dev);
309
310 old = pci_read_byte(dev, 0x88);
311 new = old | 0xc0;
312 if (new != old) {
313 pci_write_byte(dev, 0x88, new);
314 if (pci_read_byte(dev, 0x88) != new) {
315 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
316 0x88, new, name);
317 }
318 }
319
320 old = pci_read_byte(dev, 0x6d);
321 new = old | 0x01;
322 if (new == old)
323 return 0;
324 pci_write_byte(dev, 0x6d, new);
325
326 if (pci_read_byte(dev, 0x6d) != new) {
327 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
328 0x6d, new, name);
329 return -1;
330 }
331 return 0;
332}
333
Stefan Reinauer86de2832006-03-31 11:26:55 +0000334static int enable_flash_sb400(struct pci_dev *dev, char *name)
335{
336 uint8_t tmp;
337
338 struct pci_filter f;
339 struct pci_dev *smbusdev;
340
Stefan Reinauer86de2832006-03-31 11:26:55 +0000341 /* then look for the smbus device */
342 pci_filter_init((struct pci_access *) 0, &f);
343 f.vendor = 0x1002;
344 f.device = 0x4372;
345
346 for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
347 if (pci_filter_match(&f, smbusdev)) {
348 break;
349 }
350 }
351
352 if(!smbusdev) {
353 perror("smbus device not found. aborting\n");
354 exit(1);
355 }
356
357 // enable some smbus stuff
358 tmp=pci_read_byte(smbusdev, 0x79);
359 tmp|=0x01;
360 pci_write_byte(smbusdev, 0x79, tmp);
361
362 // change southbridge
363 tmp=pci_read_byte(dev, 0x48);
364 tmp|=0x21;
365 pci_write_byte(dev, 0x48, tmp);
366
367 // now become a bit silly.
368 tmp=inb(0xc6f);
369 outb(tmp,0xeb);
370 outb(tmp, 0xeb);
371 tmp|=0x40;
372 outb(tmp, 0xc6f);
373 outb(tmp, 0xeb);
374 outb(tmp, 0xeb);
375
376 return 0;
377}
378
Yinghai Luca782972007-01-22 20:21:17 +0000379//By yhlu
380static int enable_flash_mcp55(struct pci_dev *dev, char *name)
381{
382 /* register 4e.b gets or'ed with one */
383 unsigned char old, new, byte;
384 unsigned short word;
385
386 /* if it fails, it fails. There are so many variations of broken mobos
387 * that it is hard to argue that we should quit at this point.
388 */
389
390 //dump_pci_device(dev);
391
392 /* Set the 4MB enable bit bit */
393 byte = pci_read_byte(dev, 0x88);
394 byte |= 0xff; //256K
395 pci_write_byte(dev, 0x88, byte);
396 byte = pci_read_byte(dev, 0x8c);
397 byte |= 0xff; //1M
398 pci_write_byte(dev, 0x8c, byte);
399 word = pci_read_word(dev, 0x90);
400 word |= 0x7fff; //15M
401 pci_write_word(dev, 0x90, word);
402
403 old = pci_read_byte(dev, 0x6d);
404 new = old | 0x01;
405 if (new == old)
406 return 0;
407 pci_write_byte(dev, 0x6d, new);
408
409 if (pci_read_byte(dev, 0x6d) != new) {
410 printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
411 0x6d, new, name);
412 return -1;
413 }
414
415 return 0;
416
417}
418
Ollie Lhocbbf1252004-03-17 22:22:08 +0000419typedef struct penable {
Ollie Lho761bf1b2004-03-20 16:46:10 +0000420 unsigned short vendor, device;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000421 char *name;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000422 int (*doit) (struct pci_dev * dev, char *name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000423} FLASH_ENABLE;
424
425static FLASH_ENABLE enables[] = {
Stefan Reinauereb366472006-09-06 15:48:48 +0000426 {0x1039, 0x0630, "SIS630", enable_flash_sis630},
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000427 {0x8086, 0x7110, "PIIX4/PIIX4E/PIIX4M", enable_flash_piix4},
Stefan Reinauereb366472006-09-06 15:48:48 +0000428 {0x8086, 0x2410, "ICH", enable_flash_ich_4e},
429 {0x8086, 0x2420, "ICH0", enable_flash_ich_4e},
430 {0x8086, 0x2440, "ICH2", enable_flash_ich_4e},
431 {0x8086, 0x244c, "ICH2-M", enable_flash_ich_4e},
432 {0x8086, 0x2480, "ICH3-S", enable_flash_ich_4e},
433 {0x8086, 0x248c, "ICH3-M", enable_flash_ich_4e},
434 {0x8086, 0x24c0, "ICH4/ICH4-L", enable_flash_ich_4e},
435 {0x8086, 0x24cc, "ICH4-M", enable_flash_ich_4e},
436 {0x8086, 0x24d0, "ICH5/ICH5R", enable_flash_ich_4e},
437 {0x8086, 0x2640, "ICH6/ICH6R", enable_flash_ich_dc},
438 {0x8086, 0x2641, "ICH6-M", enable_flash_ich_dc},
439 {0x8086, 0x27b8, "ICH7/ICH7R", enable_flash_ich_dc},
440 {0x8086, 0x27b9, "ICH7M", enable_flash_ich_dc},
441 {0x8086, 0x27bd, "ICH7MDH", enable_flash_ich_dc},
442 {0x8086, 0x2810, "ICH8/ICH8R", enable_flash_ich_dc},
443 {0x8086, 0x2812, "ICH8DH", enable_flash_ich_dc},
444 {0x8086, 0x2814, "ICH8DO", enable_flash_ich_dc},
Luc Verhaegen6382b442007-03-02 22:16:38 +0000445 {0x1106, 0x8231, "VT8231", enable_flash_vt823x},
446 {0x1106, 0x3177, "VT8235", enable_flash_vt823x},
447 {0x1106, 0x3227, "VT8237", enable_flash_vt823x},
Stefan Reinauerc6b5f492006-11-07 10:22:20 +0000448 {0x1106, 0x0686, "VT82C686", enable_flash_amd8111},
Ollie Lho761bf1b2004-03-20 16:46:10 +0000449 {0x1078, 0x0100, "CS5530", enable_flash_cs5530},
450 {0x100b, 0x0510, "SC1100", enable_flash_sc1100},
Ollie Lhocbbf1252004-03-17 22:22:08 +0000451 {0x1039, 0x0008, "SIS5595", enable_flash_sis5595},
452 {0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
Stefan Reinauer86de2832006-03-31 11:26:55 +0000453 // this fallthrough looks broken.
Yinghai Lu952dfce2005-07-06 17:13:46 +0000454 {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, // LPC
455 {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, // Pro
456 {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 +0000457
458 {0x10de, 0x0260, "NVidia MCP51", enable_flash_ck804},
459 {0x10de, 0x0261, "NVidia MCP51", enable_flash_ck804},
460 {0x10de, 0x0262, "NVidia MCP51", enable_flash_ck804},
461 {0x10de, 0x0263, "NVidia MCP51", enable_flash_ck804},
462
Ward Vandewege3ab54152007-02-28 21:50:15 +0000463 {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, // Gigabyte m57sli-s4
Ed Swierkd6b86cf2007-03-06 23:49:49 +0000464 {0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55}, // LPC
465 {0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55}, // LPC
466 {0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55}, // LPC
Yinghai Luca782972007-01-22 20:21:17 +0000467 {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, // LPC
Ed Swierkd6b86cf2007-03-06 23:49:49 +0000468 {0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55}, // LPC
469 {0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55}, // LPC
Yinghai Luca782972007-01-22 20:21:17 +0000470 {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, // Pro
471
Stefan Reinauer86de2832006-03-31 11:26:55 +0000472 {0x1002, 0x4377, "ATI SB400", enable_flash_sb400}, // ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000473};
Ollie Lho761bf1b2004-03-20 16:46:10 +0000474
Ollie Lho184a4042005-11-26 21:55:36 +0000475static int mbenable_island_aruma(void)
476{
Stefan Reinauer86de2832006-03-31 11:26:55 +0000477#define EFIR 0x2e /* Extended function index register, either 0x2e or 0x4e */
478#define EFDR EFIR + 1 /* Extended function data register, one plus the index reg. */
Ollie Lho184a4042005-11-26 21:55:36 +0000479 char b;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000480
481/* Disable the flash write protect. The flash write protect is
482 * connected to the WinBond w83627hf GPIO 24.
483 */
Ollie Lho184a4042005-11-26 21:55:36 +0000484
Ollie Lho184a4042005-11-26 21:55:36 +0000485 printf("Disabling mainboard flash write protection.\n");
486
487 outb(0x87, EFIR); // sequence to unlock extended functions
488 outb(0x87, EFIR);
489
490 outb(0x20, EFIR); // SIO device ID register
491 b = inb(EFDR);
492 printf_debug("W83627HF device ID = 0x%x\n",b);
493
494 if (b != 0x52) {
495 perror("Incorrect device ID, aborting write protect disable\n");
496 exit(1);
497 }
498
499 outb(0x2b, EFIR); // GPIO multiplexed pin reg.
500 b = inb(EFDR) | 0x10;
501 outb(0x2b, EFIR);
502 outb(b, EFDR); // select GPIO 24 instead of WDTO
503
504 outb(0x7, EFIR); // logical device select
505 outb(0x8, EFDR); // point to device 8, GPIO port 2
506
507 outb(0x30, EFIR); // logic device activation control
508 outb(0x1, EFDR); // activate
509
510 outb(0xf0, EFIR); // GPIO 20-27 I/O selection register
511 b = inb(EFDR) & ~0x10;
512 outb(0xf0, EFIR);
513 outb(b, EFDR); // set GPIO 24 as an output
514
515 outb(0xf1, EFIR); // GPIO 20-27 data register
516 b = inb(EFDR) | 0x10;
517 outb(0xf1, EFIR);
518 outb(b, EFDR); // set GPIO 24
519
520 outb(0xaa, EFIR); // command to exit extended functions
521
522 return 0;
523}
524
525typedef struct mbenable {
526 char *vendor, *part;
527 int (*doit)(void);
528} MAINBOARD_ENABLE;
529
530static MAINBOARD_ENABLE mbenables[] = {
531 { "ISLAND", "ARUMA", mbenable_island_aruma },
532};
533
Ollie Lhocbbf1252004-03-17 22:22:08 +0000534int enable_flash_write()
535{
536 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000537 struct pci_dev *dev = 0;
538 FLASH_ENABLE *enable = 0;
539
Adam Kaufman064b1f22007-02-06 19:47:50 +0000540 /* get io privilege access PCI configuration space */
541#if defined (__sun) && (defined(__i386) || defined(__amd64))
542 if (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) != 0){
543#else
544 if (iopl(3) != 0) {
545#endif
546 perror("Can not set io privilege");
547 exit(1);
548 }
549
550
551 /* Initialize PCI access */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000552 pacc = pci_alloc(); /* Get the pci_access structure */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000553 /* Set all options you want -- here we stick with the defaults */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000554 pci_init(pacc); /* Initialize the PCI library */
555 pci_scan_bus(pacc); /* We want to get the list of devices */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000556
Ollie Lho184a4042005-11-26 21:55:36 +0000557
558 /* First look whether we have to do something for this
559 * motherboard.
560 */
561 for (i = 0; i < sizeof(mbenables) / sizeof(mbenables[0]); i++) {
562 if(lb_vendor && !strcmp(mbenables[i].vendor, lb_vendor) &&
563 lb_part && !strcmp(mbenables[i].part, lb_part)) {
564 mbenables[i].doit();
565 break;
566 }
567 }
568
Ollie Lhocbbf1252004-03-17 22:22:08 +0000569 /* now let's try to find the chipset we have ... */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000570 for (i = 0; i < sizeof(enables) / sizeof(enables[0]) && (!dev);
571 i++) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000572 struct pci_filter f;
573 struct pci_dev *z;
574 /* the first param is unused. */
575 pci_filter_init((struct pci_access *) 0, &f);
576 f.vendor = enables[i].vendor;
577 f.device = enables[i].device;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000578 for (z = pacc->devices; z; z = z->next)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000579 if (pci_filter_match(&f, z)) {
580 enable = &enables[i];
581 dev = z;
582 }
583 }
584
Stefan Reinauercbc55d02006-08-25 19:21:42 +0000585 if (!enable) {
586 printf("Warning: Unknown system. Flash detection "
587 "will most likely fail.\n");
588 return 1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000589 }
Stefan Reinauercbc55d02006-08-25 19:21:42 +0000590
591 /* now do the deed. */
592 printf("Enabling flash write on %s...", enable->name);
593 if (enable->doit(dev, enable->name) == 0)
594 printf("OK\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000595 return 0;
596}