blob: 852da40dad2fffc05b537d33f2301f85c6203c05 [file] [log] [blame]
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001/*
2 * flash rom utility: enable flash writes (board specific)
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 *
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
14/*
15 * Contains the board specific flash enables.
16 */
17
18#include <stdio.h>
19#include <pci/pci.h>
20#include <stdint.h>
21#include <string.h>
22
23#include "flash.h"
24#include "debug.h"
25
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000026/*
27 * Helper functions for many Winbond superIOs of the w836xx range.
28 */
29#define W836_INDEX 0x2E
30#define W836_DATA 0x2F
31
32/* Enter extended functions */
Uwe Hermanna7e05482007-05-09 10:17:44 +000033static void w836xx_ext_enter(void)
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000034{
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000035 outb(0x87, W836_INDEX);
36 outb(0x87, W836_INDEX);
37}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000038
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000039/* Leave extended functions */
Uwe Hermanna7e05482007-05-09 10:17:44 +000040static void w836xx_ext_leave(void)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000041{
42 outb(0xAA, W836_INDEX);
43}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000044
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000045/* General functions for read/writing WB SuperIOs */
Uwe Hermanna7e05482007-05-09 10:17:44 +000046static unsigned char wbsio_read(unsigned char index)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000047{
48 outb(index, W836_INDEX);
49 return inb(W836_DATA);
50}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000051
Uwe Hermanna7e05482007-05-09 10:17:44 +000052static void wbsio_write(unsigned char index, unsigned char data)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000053{
54 outb(index, W836_INDEX);
55 outb(data, W836_DATA);
56}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000057
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000058static void
Uwe Hermanna7e05482007-05-09 10:17:44 +000059wbsio_mask(unsigned char index, unsigned char data, unsigned char mask)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000060{
61 unsigned char tmp;
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000062
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000063 outb(index, W836_INDEX);
64 tmp = inb(W836_DATA) & ~mask;
65 outb(tmp | (data & mask), W836_DATA);
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000066}
67
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000068/*
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000069 * WinBond w83627hf: raise GPIO24.
70 *
71 * Suited for:
72 * * Agami Aruma
73 * * IWILL DK8-HTX
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000074 */
75
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000076static int w83627hf_gpio24_raise(const char *name)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000077{
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000078 w836xx_ext_enter();
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000079
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000080 /* Is this the w83627hf? */
Uwe Hermanna7e05482007-05-09 10:17:44 +000081 if (wbsio_read(0x20) != 0x52) { /* SIO device ID register */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000082 fprintf(stderr, "\nERROR: %s: W83627HF: Wrong ID: 0x%02X.\n",
83 name, wbsio_read(0x20));
84 w836xx_ext_leave();
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000085 return -1;
86 }
87
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000088 /* PIN89S: WDTO/GP24 multiplex -> GPIO24 */
89 wbsio_mask(0x2B, 0x10, 0x10);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000090
Uwe Hermanna7e05482007-05-09 10:17:44 +000091 wbsio_write(0x07, 0x08); /* Select logical device 8: GPIO port 2 */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000092
Uwe Hermanna7e05482007-05-09 10:17:44 +000093 wbsio_mask(0x30, 0x01, 0x01); /* Activate logical device. */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000094
Uwe Hermanna7e05482007-05-09 10:17:44 +000095 wbsio_mask(0xF0, 0x00, 0x10); /* GPIO24 -> output */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000096
Uwe Hermanna7e05482007-05-09 10:17:44 +000097 wbsio_mask(0xF2, 0x00, 0x10); /* Clear GPIO24 inversion */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000098
Uwe Hermanna7e05482007-05-09 10:17:44 +000099 wbsio_mask(0xF1, 0x10, 0x10); /* Raise GPIO24 */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +0000100
101 w836xx_ext_leave();
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000102
103 return 0;
104}
105
106/*
107 * Suited for VIAs EPIA M and MII, and maybe other CLE266 based EPIAs.
108 *
109 * We don't need to do this when using linuxbios, GPIO15 is never lowered there.
110 */
111
Luc Verhaegen7977f4e2007-05-04 04:47:04 +0000112static int board_via_epia_m(const char *name)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000113{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000114 struct pci_dev *dev;
115 unsigned int base;
116 uint8_t val;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000117
Uwe Hermanna7e05482007-05-09 10:17:44 +0000118 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
119 if (!dev) {
120 fprintf(stderr, "\nERROR: VT8235 ISA Bridge not found.\n");
121 return -1;
122 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000123
Uwe Hermanna7e05482007-05-09 10:17:44 +0000124 /* GPIO12-15 -> output */
125 val = pci_read_byte(dev, 0xE4);
126 val |= 0x10;
127 pci_write_byte(dev, 0xE4, val);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000128
Uwe Hermanna7e05482007-05-09 10:17:44 +0000129 /* Get Power Management IO address. */
130 base = pci_read_word(dev, 0x88) & 0xFF80;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000131
Uwe Hermanna7e05482007-05-09 10:17:44 +0000132 /* enable GPIO15 which is connected to write protect. */
133 val = inb(base + 0x4D);
134 val |= 0x80;
135 outb(val, base + 0x4D);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000136
Uwe Hermanna7e05482007-05-09 10:17:44 +0000137 return 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000138}
139
140/*
Luc Verhaegen6b141752007-05-20 16:16:13 +0000141 * Suited for ASUS A7V8X-MX SE and A7V400-MX.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000142 *
143 */
144
Luc Verhaegen7977f4e2007-05-04 04:47:04 +0000145static int board_asus_a7v8x_mx(const char *name)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000146{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000147 struct pci_dev *dev;
148 uint8_t val;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000149
Uwe Hermanna7e05482007-05-09 10:17:44 +0000150 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
151 if (!dev) {
152 fprintf(stderr, "\nERROR: VT8235 ISA Bridge not found.\n");
153 return -1;
154 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000155
Uwe Hermanna7e05482007-05-09 10:17:44 +0000156 /* This bit is marked reserved actually */
157 val = pci_read_byte(dev, 0x59);
158 val &= 0x7F;
159 pci_write_byte(dev, 0x59, val);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000160
Luc Verhaegen7977f4e2007-05-04 04:47:04 +0000161 /* Raise ROM MEMW# line on Winbond w83697 SuperIO */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000162 w836xx_ext_enter();
Luc Verhaegen7977f4e2007-05-04 04:47:04 +0000163
Uwe Hermanna7e05482007-05-09 10:17:44 +0000164 if (!(wbsio_read(0x24) & 0x02)) /* flash rom enabled? */
165 wbsio_mask(0x24, 0x08, 0x08); /* enable MEMW# */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +0000166
167 w836xx_ext_leave();
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000168
Uwe Hermanna7e05482007-05-09 10:17:44 +0000169 return 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000170}
171
172/*
Luc Verhaegen6b141752007-05-20 16:16:13 +0000173 * Suited for ASUS P5A.
174 *
175 * This is rather nasty code, but there's no way to do this cleanly.
176 * We're basically talking to some unknown device on SMBus, my guess
177 * is that it is the Winbond W83781D that lives near the DIP BIOS.
178 */
179
180static int board_asus_p5a(const char *name)
181{
182 uint8_t tmp;
183 int i;
184
185#define ASUSP5A_LOOP 5000
186
187 outb(0x00, 0xE807);
188 outb(0xEF, 0xE803);
189
190 outb(0xFF, 0xE800);
191
192 for (i = 0; i < ASUSP5A_LOOP; i++) {
193 outb(0xE1, 0xFF);
194 if (inb(0xE800) & 0x04)
195 break;
196 }
197
198 if (i == ASUSP5A_LOOP) {
199 printf("%s: Unable to contact device.\n", name);
200 return -1;
201 }
202
203 outb(0x20, 0xE801);
204 outb(0x20, 0xE1);
205
206 outb(0xFF, 0xE802);
207
208 for (i = 0; i < ASUSP5A_LOOP; i++) {
209 tmp = inb(0xE800);
210 if (tmp & 0x70)
211 break;
212 }
213
214 if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) {
215 printf("%s: failed to read device.\n", name);
216 return -1;
217 }
218
219 tmp = inb(0xE804);
220 tmp &= ~0x02;
221
222 outb(0x00, 0xE807);
223 outb(0xEE, 0xE803);
224
225 outb(tmp, 0xE804);
226
227 outb(0xFF, 0xE800);
228 outb(0xE1, 0xFF);
229
230 outb(0x20, 0xE801);
231 outb(0x20, 0xE1);
232
233 outb(0xFF, 0xE802);
234
235 for (i = 0; i < ASUSP5A_LOOP; i++) {
236 tmp = inb(0xE800);
237 if (tmp & 0x70)
238 break;
239 }
240
241 if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) {
242 printf("%s: failed to write to device.\n", name);
243 return -1;
244 }
245
246 return 0;
247}
248
Stefan Reinauer1c283f42007-06-05 12:51:52 +0000249static int board_ibm_x3455(const char *name)
250{
251 uint8_t byte;
252
253 /* Set GPIO lines in HT1000 southbridge */
254 outb(0x45, 0xcd6);
255 byte = inb(0xcd7);
256 outb(byte|0x20, 0xcd7);
257
258 return 0;
259}
260
Luc Verhaegen6b141752007-05-20 16:16:13 +0000261/*
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000262 * We use 2 sets of ids here, you're free to choose which is which. This
263 * to provide a very high degree of certainty when matching a board on
264 * the basis of Subsystem/card ids. As not every vendor handles
265 * subsystem/card ids in a sane manner.
266 *
267 * Keep the second set nulled if it should be ignored.
268 *
269 */
270
271struct board_pciid_enable {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000272 /* Any device, but make it sensible, like the isa bridge. */
273 uint16_t first_vendor;
274 uint16_t first_device;
275 uint16_t first_card_vendor;
276 uint16_t first_card_device;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000277
Uwe Hermanna7e05482007-05-09 10:17:44 +0000278 /* Any device, but make it sensible, like
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000279 * the host bridge. May be NULL
280 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000281 uint16_t second_vendor;
282 uint16_t second_device;
283 uint16_t second_card_vendor;
284 uint16_t second_card_device;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000285
Uwe Hermanna7e05482007-05-09 10:17:44 +0000286 /* From linuxbios table */
287 char *lb_vendor;
288 char *lb_part;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000289
Uwe Hermanna7e05482007-05-09 10:17:44 +0000290 char *name;
291 int (*enable) (const char *name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000292};
293
294struct board_pciid_enable board_pciid_enables[] = {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000295 {0x1022, 0x7468, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
296 "iwill", "dk8_htx", "IWILL DK8-HTX", w83627hf_gpio24_raise},
297 {0x1022, 0x746B, 0x1022, 0x36C0, 0x0000, 0x0000, 0x0000, 0x0000,
298 "AGAMI", "ARUMA", "agami Aruma", w83627hf_gpio24_raise},
299 {0x1106, 0x3177, 0x1106, 0xAA01, 0x1106, 0x3123, 0x1106, 0xAA01,
300 NULL, NULL, "VIA EPIA M/MII/...", board_via_epia_m},
301 {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118,
302 NULL, NULL, "ASUS A7V8-MX SE", board_asus_a7v8x_mx},
Luc Verhaegen6b141752007-05-20 16:16:13 +0000303 {0x10B9, 0x1541, 0x0000, 0x0000, 0x10B9, 0x1533, 0x0000, 0x0000,
304 "asus", "p5a", "ASUS P5A", board_asus_p5a},
Stefan Reinauer1c283f42007-06-05 12:51:52 +0000305 {0x1166, 0x0205, 0x1014, 0x0347, 0x0000, 0x0000, 0x0000, 0x0000,
306 "ibm", "x3455", "IBM x3455", board_ibm_x3455},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000307 {0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL} /* Keep this */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000308};
309
310/*
311 * Match boards on linuxbios table gathered vendor and part name.
312 * Require main pci-ids to match too as extra safety.
313 *
314 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000315static struct board_pciid_enable *board_match_linuxbios_name(char *vendor,
316 char *part)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000317{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000318 struct board_pciid_enable *board = board_pciid_enables;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000319
Uwe Hermanna7e05482007-05-09 10:17:44 +0000320 for (; board->name; board++) {
321 if (!board->lb_vendor || strcmp(board->lb_vendor, vendor))
322 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000323
Uwe Hermanna7e05482007-05-09 10:17:44 +0000324 if (!board->lb_part || strcmp(board->lb_part, part))
325 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000326
Uwe Hermanna7e05482007-05-09 10:17:44 +0000327 if (!pci_dev_find(board->first_vendor, board->first_device))
328 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000329
Uwe Hermanna7e05482007-05-09 10:17:44 +0000330 if (board->second_vendor &&
331 !pci_dev_find(board->second_vendor, board->second_device))
332 continue;
333 return board;
334 }
335 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000336}
337
338/*
339 * Match boards on pci ids and subsystem ids.
340 * Second set of ids can be main only or missing completely.
341 */
342static struct board_pciid_enable *board_match_pci_card_ids(void)
343{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000344 struct board_pciid_enable *board = board_pciid_enables;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000345
Uwe Hermanna7e05482007-05-09 10:17:44 +0000346 for (; board->name; board++) {
347 if (!board->first_card_vendor || !board->first_card_device)
348 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000349
Uwe Hermanna7e05482007-05-09 10:17:44 +0000350 if (!pci_card_find(board->first_vendor, board->first_device,
351 board->first_card_vendor,
352 board->first_card_device))
353 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000354
Uwe Hermanna7e05482007-05-09 10:17:44 +0000355 if (board->second_vendor) {
356 if (board->second_card_vendor) {
357 if (!pci_card_find(board->second_vendor,
358 board->second_device,
359 board->second_card_vendor,
360 board->second_card_device))
361 continue;
362 } else {
363 if (!pci_dev_find(board->second_vendor,
364 board->second_device))
365 continue;
366 }
367 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000368
Uwe Hermanna7e05482007-05-09 10:17:44 +0000369 return board;
370 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000371
Uwe Hermanna7e05482007-05-09 10:17:44 +0000372 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000373}
374
375/*
376 *
377 */
378int board_flash_enable(char *vendor, char *part)
379{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000380 struct board_pciid_enable *board = NULL;
381 int ret = 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000382
Uwe Hermanna7e05482007-05-09 10:17:44 +0000383 if (vendor && part)
384 board = board_match_linuxbios_name(vendor, part);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000385
Uwe Hermanna7e05482007-05-09 10:17:44 +0000386 if (!board)
387 board = board_match_pci_card_ids();
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000388
Uwe Hermanna7e05482007-05-09 10:17:44 +0000389 if (board) {
390 printf("Found board \"%s\": Enabling flash write... ",
391 board->name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000392
Uwe Hermanna7e05482007-05-09 10:17:44 +0000393 ret = board->enable(board->name);
394 if (ret)
395 printf("Failed!\n");
396 else
397 printf("OK.\n");
398 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000399
Uwe Hermanna7e05482007-05-09 10:17:44 +0000400 return ret;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000401}