Add board-enable for Acorp 6A815EPD.
[coreboot.git] / util / flashrom / board_enable.c
1 /*
2  * This file is part of the flashrom project.
3  *
4  * Copyright (C) 2005-2007 coresystems GmbH <stepan@coresystems.de>
5  * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
6  * Copyright (C) 2007 Luc Verhaegen <libv@skynet.be>
7  * Copyright (C) 2007 Carl-Daniel Hailfinger
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; version 2 of the License.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
21  */
22
23 /*
24  * Contains the board specific flash enables.
25  */
26
27 #include <stdio.h>
28 #include <pci/pci.h>
29 #include <stdint.h>
30 #include <string.h>
31 #include "flash.h"
32
33 /*
34  * Helper functions for many Winbond Super I/Os of the W836xx range.
35  */
36 /* Enter extended functions */
37 static void w836xx_ext_enter(uint16_t port)
38 {
39         outb(0x87, port);
40         outb(0x87, port);
41 }
42
43 /* Leave extended functions */
44 static void w836xx_ext_leave(uint16_t port)
45 {
46         outb(0xAA, port);
47 }
48
49 /* General functions for reading/writing Winbond Super I/Os. */
50 static unsigned char wbsio_read(uint16_t index, uint8_t reg)
51 {
52         outb(reg, index);
53         return inb(index+1);
54 }
55
56 static void wbsio_write(uint16_t index, uint8_t reg, uint8_t data)
57 {
58         outb(reg, index);
59         outb(data, index+1);
60 }
61
62 static void wbsio_mask(uint16_t index, uint8_t reg, uint8_t data, uint8_t mask)
63 {
64         uint8_t tmp;
65
66         outb(reg, index);
67         tmp = inb(index+1) & ~mask;
68         outb(tmp | (data & mask), index+1);
69 }
70
71 /**
72  * Winbond W83627HF: Raise GPIO24.
73  *
74  * Suited for:
75  *  - Agami Aruma
76  *  - IWILL DK8-HTX
77  */
78 static int w83627hf_gpio24_raise(uint16_t index, const char *name)
79 {
80         w836xx_ext_enter(index);
81
82         /* Is this the w83627hf? */
83         if (wbsio_read(index, 0x20) != 0x52) {  /* Super I/O device ID register */
84                 fprintf(stderr, "\nERROR: %s: W83627HF: Wrong ID: 0x%02X.\n",
85                         name, wbsio_read(index, 0x20));
86                 w836xx_ext_leave(index);
87                 return -1;
88         }
89
90         /* PIN89S: WDTO/GP24 multiplex -> GPIO24 */
91         wbsio_mask(index, 0x2B, 0x10, 0x10);
92
93         wbsio_write(index, 0x07, 0x08); /* Select logical device 8: GPIO port 2 */
94
95         wbsio_mask(index, 0x30, 0x01, 0x01);    /* Activate logical device. */
96
97         wbsio_mask(index, 0xF0, 0x00, 0x10);    /* GPIO24 -> output */
98
99         wbsio_mask(index, 0xF2, 0x00, 0x10);    /* Clear GPIO24 inversion */
100
101         wbsio_mask(index, 0xF1, 0x10, 0x10);    /* Raise GPIO24 */
102
103         w836xx_ext_leave(index);
104
105         return 0;
106 }
107
108 static int w83627hf_gpio24_raise_2e(const char *name)
109 {
110         return w83627hf_gpio24_raise(0x2d, name);
111 }
112
113 /**
114  * Winbond W83627THF: GPIO 4, bit 4
115  *
116  * Suited for:
117  *  - MSI K8N-NEO3
118  */
119 static int w83627thf_gpio4_4_raise(uint16_t index, const char *name)
120 {
121         w836xx_ext_enter(index);
122         /* Is this the w83627thf? */
123         if (wbsio_read(index, 0x20) != 0x82) {  /* Super I/O device ID register */
124                 fprintf(stderr, "\nERROR: %s: W83627THF: Wrong ID: 0x%02X.\n",
125                         name, wbsio_read(index, 0x20));
126                 w836xx_ext_leave(index);
127                 return -1;
128         }
129
130         /* PINxxxxS: GPIO4/bit 4 multiplex -> GPIOXXX */
131
132         wbsio_write(index, 0x07, 0x09); /* Select logical device 9: GPIO port 4 */
133
134         wbsio_mask(index, 0x30, 0x02, 0x02);    /* Activate logical device. */
135
136         wbsio_mask(index, 0xF4, 0x00, 0x10);    /* GPIO4 bit 4 -> output */
137
138         wbsio_mask(index, 0xF6, 0x00, 0x10);    /* Clear GPIO4 bit 4 inversion */
139
140         wbsio_mask(index, 0xF5, 0x10, 0x10);    /* Raise GPIO4 bit 4 */
141
142         w836xx_ext_leave(index);
143
144         return 0;
145 }
146
147 static int w83627thf_gpio4_4_raise_4e(const char *name)
148 {
149         return w83627thf_gpio4_4_raise(0x4E, name);
150 }
151 /**
152  * Suited for VIAs EPIA M and MII, and maybe other CLE266 based EPIAs.
153  *
154  * We don't need to do this when using LinuxBIOS, GPIO15 is never lowered there.
155  */
156 static int board_via_epia_m(const char *name)
157 {
158         struct pci_dev *dev;
159         unsigned int base;
160         uint8_t val;
161
162         dev = pci_dev_find(0x1106, 0x3177);     /* VT8235 ISA bridge */
163         if (!dev) {
164                 fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n");
165                 return -1;
166         }
167
168         /* GPIO12-15 -> output */
169         val = pci_read_byte(dev, 0xE4);
170         val |= 0x10;
171         pci_write_byte(dev, 0xE4, val);
172
173         /* Get Power Management IO address. */
174         base = pci_read_word(dev, 0x88) & 0xFF80;
175
176         /* enable GPIO15 which is connected to write protect. */
177         val = inb(base + 0x4D);
178         val |= 0x80;
179         outb(val, base + 0x4D);
180
181         return 0;
182 }
183
184 /**
185  * Suited for:
186  *   - ASUS A7V8X-MX SE and A7V400-MX: AMD K7 + VIA KM400A + VT8235
187  *   - Tyan Tomcat K7M: AMD Geode NX + VIA KM400 + VT8237.
188  */
189 static int board_asus_a7v8x_mx(const char *name)
190 {
191         struct pci_dev *dev;
192         uint8_t val;
193
194         dev = pci_dev_find(0x1106, 0x3177);     /* VT8235 ISA bridge */
195         if (!dev)
196                 dev = pci_dev_find(0x1106, 0x3227);     /* VT8237 ISA bridge */
197         if (!dev) {
198                 fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n");
199                 return -1;
200         }
201
202         /* This bit is marked reserved actually */
203         val = pci_read_byte(dev, 0x59);
204         val &= 0x7F;
205         pci_write_byte(dev, 0x59, val);
206
207         /* Raise ROM MEMW# line on Winbond w83697 SuperIO */
208         w836xx_ext_enter(0x2E);
209
210         if (!(wbsio_read(0x2E, 0x24) & 0x02))   /* flash rom enabled? */
211                 wbsio_mask(0x2E, 0x24, 0x08, 0x08);     /* enable MEMW# */
212
213         w836xx_ext_leave(0x2E);
214
215         return 0;
216 }
217
218 /**
219  * Suited for ASUS P5A.
220  *
221  * This is rather nasty code, but there's no way to do this cleanly.
222  * We're basically talking to some unknown device on SMBus, my guess
223  * is that it is the Winbond W83781D that lives near the DIP BIOS.
224  */
225 static int board_asus_p5a(const char *name)
226 {
227         uint8_t tmp;
228         int i;
229
230 #define ASUSP5A_LOOP 5000
231
232         outb(0x00, 0xE807);
233         outb(0xEF, 0xE803);
234
235         outb(0xFF, 0xE800);
236
237         for (i = 0; i < ASUSP5A_LOOP; i++) {
238                 outb(0xE1, 0xFF);
239                 if (inb(0xE800) & 0x04)
240                         break;
241         }
242
243         if (i == ASUSP5A_LOOP) {
244                 printf("%s: Unable to contact device.\n", name);
245                 return -1;
246         }
247
248         outb(0x20, 0xE801);
249         outb(0x20, 0xE1);
250
251         outb(0xFF, 0xE802);
252
253         for (i = 0; i < ASUSP5A_LOOP; i++) {
254                 tmp = inb(0xE800);
255                 if (tmp & 0x70)
256                         break;
257         }
258
259         if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) {
260                 printf("%s: failed to read device.\n", name);
261                 return -1;
262         }
263
264         tmp = inb(0xE804);
265         tmp &= ~0x02;
266
267         outb(0x00, 0xE807);
268         outb(0xEE, 0xE803);
269
270         outb(tmp, 0xE804);
271
272         outb(0xFF, 0xE800);
273         outb(0xE1, 0xFF);
274
275         outb(0x20, 0xE801);
276         outb(0x20, 0xE1);
277
278         outb(0xFF, 0xE802);
279
280         for (i = 0; i < ASUSP5A_LOOP; i++) {
281                 tmp = inb(0xE800);
282                 if (tmp & 0x70)
283                         break;
284         }
285
286         if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) {
287                 printf("%s: failed to write to device.\n", name);
288                 return -1;
289         }
290
291         return 0;
292 }
293
294 static int board_ibm_x3455(const char *name)
295 {
296         uint8_t byte;
297
298         /* Set GPIO lines in the Broadcom HT-1000 southbridge. */
299         outb(0x45, 0xcd6);
300         byte = inb(0xcd7);
301         outb(byte | 0x20, 0xcd7);
302
303         return 0;
304 }
305
306 /**
307  * Suited for EPoX EP-BX3, and maybe some other Intel 440BX based boards.
308  */
309 static int board_epox_ep_bx3(const char *name)
310 {
311         uint8_t tmp;
312
313         /* Raise GPIO22. */
314         tmp = inb(0x4036);
315         outb(tmp, 0xEB);
316
317         tmp |= 0x40;
318
319         outb(tmp, 0x4036);
320         outb(tmp, 0xEB);
321
322         return 0;
323 }
324
325 /**
326  * Suited for Acorp 6A815EPD
327  */
328 static int board_acorp_6a815epd(const char *name)
329 {
330         struct pci_dev *dev;
331         uint16_t port;
332         uint8_t val;
333
334         dev = pci_dev_find(0x8086, 0x2440);     /* Intel ICH2 LPC */
335         if (!dev) {
336                 fprintf(stderr, "\nERROR: ICH2 LPC bridge not found.\n");
337                 return -1;
338         }
339
340         /* Use GPIOBASE register to find where the GPIO is mapped. */
341         port = (pci_read_word(dev, 0x58) & 0xFF80) + 0xE;
342
343         val = inb(port);
344         val |= 0x80; /* Top Block Lock -- pin 8 of PLCC32 */
345         val |= 0x40; /* Lower Blocks Lock -- pin 7 of PLCC32 */
346         outb(val, port);
347
348         return 0;
349 }
350
351 /**
352  * We use 2 sets of IDs here, you're free to choose which is which. This
353  * is to provide a very high degree of certainty when matching a board on
354  * the basis of subsystem/card IDs. As not every vendor handles
355  * subsystem/card IDs in a sane manner.
356  *
357  * Keep the second set NULLed if it should be ignored.
358  */
359 struct board_pciid_enable {
360         /* Any device, but make it sensible, like the isa bridge. */
361         uint16_t first_vendor;
362         uint16_t first_device;
363         uint16_t first_card_vendor;
364         uint16_t first_card_device;
365
366         /* Any device, but make it sensible, like 
367          * the host bridge. May be NULL
368          */
369         uint16_t second_vendor;
370         uint16_t second_device;
371         uint16_t second_card_vendor;
372         uint16_t second_card_device;
373
374         /* From linuxbios table */
375         char *lb_vendor;
376         char *lb_part;
377
378         char *name;
379         int (*enable) (const char *name);
380 };
381
382 struct board_pciid_enable board_pciid_enables[] = {
383         {0x10de, 0x0360, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
384          "gigabyte", "m57sli", "GIGABYTE GA-M57SLI-S4", it87xx_probe_spi_flash},
385         {0x10de, 0x03e0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
386          "gigabyte", "m61p", "GIGABYTE GA-M61P-S3", it87xx_probe_spi_flash},
387         {0x1022, 0x7468, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
388          "iwill", "dk8_htx", "IWILL DK8-HTX", w83627hf_gpio24_raise_2e},
389         {0x10de, 0x005e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
390          "msi", "k8n-neo3", "MSI K8N Neo3", w83627thf_gpio4_4_raise_4e},
391         {0x1022, 0x746B, 0x1022, 0x36C0, 0x0000, 0x0000, 0x0000, 0x0000,
392          "AGAMI", "ARUMA", "agami Aruma", w83627hf_gpio24_raise_2e},
393         {0x1106, 0x3177, 0x1106, 0xAA01, 0x1106, 0x3123, 0x1106, 0xAA01,
394          NULL, NULL, "VIA EPIA M/MII/...", board_via_epia_m},
395         {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118,
396          NULL, NULL, "ASUS A7V8-MX SE", board_asus_a7v8x_mx},
397         {0x8086, 0x1076, 0x8086, 0x1176, 0x1106, 0x3059, 0x10f1, 0x2498,
398          NULL, NULL, "Tyan Tomcat K7M", board_asus_a7v8x_mx},
399         {0x10B9, 0x1541, 0x0000, 0x0000, 0x10B9, 0x1533, 0x0000, 0x0000,
400          "asus", "p5a", "ASUS P5A", board_asus_p5a},
401         {0x1166, 0x0205, 0x1014, 0x0347, 0x0000, 0x0000, 0x0000, 0x0000,
402          "ibm", "x3455", "IBM x3455", board_ibm_x3455},
403         {0x8086, 0x7110, 0x0000, 0x0000, 0x8086, 0x7190, 0x0000, 0x0000,
404          "epox", "ep-bx3", "EPoX EP-BX3", board_epox_ep_bx3},
405         {0x8086, 0x1130, 0x0000, 0x0000, 0x105a, 0x0d30, 0x105a, 0x4d33,
406          "acorp", "6a815epd", "Acorp 6A815EPD", board_acorp_6a815epd},
407         {0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL}    /* Keep this */
408 };
409
410 /**
411  * Match boards on LinuxBIOS table gathered vendor and part name.
412  * Require main PCI IDs to match too as extra safety.
413  */
414 static struct board_pciid_enable *board_match_linuxbios_name(char *vendor, 
415                                                                 char *part)
416 {
417         struct board_pciid_enable *board = board_pciid_enables;
418
419         for (; board->name; board++) {
420                 if (!board->lb_vendor || strcmp(board->lb_vendor, vendor))
421                         continue;
422
423                 if (!board->lb_part || strcmp(board->lb_part, part))
424                         continue;
425
426                 if (!pci_dev_find(board->first_vendor, board->first_device))
427                         continue;
428
429                 if (board->second_vendor &&
430                         !pci_dev_find(board->second_vendor, board->second_device))
431                         continue;
432                 return board;
433         }
434         printf("NOT FOUND %s:%s\n", vendor, part);
435         return NULL;
436 }
437
438 /**
439  * Match boards on PCI IDs and subsystem IDs.
440  * Second set of IDs can be main only or missing completely.
441  */
442 static struct board_pciid_enable *board_match_pci_card_ids(void)
443 {
444         struct board_pciid_enable *board = board_pciid_enables;
445
446         for (; board->name; board++) {
447                 if (!board->first_card_vendor || !board->first_card_device)
448                         continue;
449
450                 if (!pci_card_find(board->first_vendor, board->first_device,
451                                         board->first_card_vendor,
452                                         board->first_card_device))
453                         continue;
454
455                 if (board->second_vendor) {
456                         if (board->second_card_vendor) {
457                                 if (!pci_card_find(board->second_vendor,
458                                                 board->second_device,
459                                                 board->second_card_vendor,
460                                                 board->second_card_device))
461                                         continue;
462                         } else {
463                                 if (!pci_dev_find(board->second_vendor,
464                                                         board->second_device))
465                                         continue;
466                         }
467                 }
468
469                 return board;
470         }
471
472         return NULL;
473 }
474
475 int board_flash_enable(char *vendor, char *part)
476 {
477         struct board_pciid_enable *board = NULL;
478         int ret = 0;
479
480         if (vendor && part)
481                 board = board_match_linuxbios_name(vendor, part);
482
483         if (!board)
484                 board = board_match_pci_card_ids();
485
486         if (board) {
487                 printf("Found board \"%s\": enabling flash write... ",
488                         board->name);
489
490                 ret = board->enable(board->name);
491                 if (ret)
492                         printf("FAILED!\n");
493                 else
494                         printf("OK.\n");
495         }
496
497         return ret;
498 }