blob: 6fcf5ba926f51b05d9fac0533914ab9177254c1c [file] [log] [blame]
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00003 *
Uwe Hermannd1107642007-08-29 17:52:32 +00004 * Copyright (C) 2005-2007 coresystems GmbH <stepan@coresystems.de>
5 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +00006 * Copyright (C) 2007-2009 Luc Verhaegen <libv@skynet.be>
Carl-Daniel Hailfinger92242622007-09-27 14:29:57 +00007 * Copyright (C) 2007 Carl-Daniel Hailfinger
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00008 *
Uwe Hermannd1107642007-08-29 17:52:32 +00009 * 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.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000012 *
Uwe Hermannd1107642007-08-29 17:52:32 +000013 * 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
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000021 */
22
23/*
24 * Contains the board specific flash enables.
25 */
26
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000027#include <string.h>
Mart Raudseppfaa62fb2008-02-20 11:11:18 +000028#include <fcntl.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000029#include "flash.h"
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000030
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000031/*
Uwe Hermannffec5f32007-08-23 16:08:21 +000032 * Helper functions for many Winbond Super I/Os of the W836xx range.
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000033 */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000034/* Enter extended functions */
Peter Stuge9d9399c2009-01-26 02:34:51 +000035void w836xx_ext_enter(uint16_t port)
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000036{
Andriy Gapon65c1b862008-05-22 13:22:45 +000037 OUTB(0x87, port);
38 OUTB(0x87, port);
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000039}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000040
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000041/* Leave extended functions */
Peter Stuge9d9399c2009-01-26 02:34:51 +000042void w836xx_ext_leave(uint16_t port)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000043{
Andriy Gapon65c1b862008-05-22 13:22:45 +000044 OUTB(0xAA, port);
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000045}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000046
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000047/* Generic Super I/O helper functions */
48uint8_t sio_read(uint16_t port, uint8_t reg)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000049{
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000050 OUTB(reg, port);
51 return INB(port + 1);
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000052}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000053
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000054void sio_write(uint16_t port, uint8_t reg, uint8_t data)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000055{
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000056 OUTB(reg, port);
57 OUTB(data, port + 1);
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000058}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000059
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000060void sio_mask(uint16_t port, uint8_t reg, uint8_t data, uint8_t mask)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000061{
Ronald G. Minnichfa496922007-10-12 21:22:40 +000062 uint8_t tmp;
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000063
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000064 OUTB(reg, port);
65 tmp = INB(port + 1) & ~mask;
66 OUTB(tmp | (data & mask), port + 1);
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000067}
68
Uwe Hermannffec5f32007-08-23 16:08:21 +000069/**
70 * Winbond W83627HF: Raise GPIO24.
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000071 *
72 * Suited for:
Uwe Hermannffec5f32007-08-23 16:08:21 +000073 * - Agami Aruma
74 * - IWILL DK8-HTX
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000075 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000076static int w83627hf_gpio24_raise(uint16_t port, const char *name)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000077{
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000078 w836xx_ext_enter(port);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000079
Uwe Hermann372eeb52007-12-04 21:49:06 +000080 /* Is this the W83627HF? */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000081 if (sio_read(port, 0x20) != 0x52) { /* Super I/O device ID reg. */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000082 fprintf(stderr, "\nERROR: %s: W83627HF: Wrong ID: 0x%02X.\n",
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000083 name, sio_read(port, 0x20));
84 w836xx_ext_leave(port);
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 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000089 sio_mask(port, 0x2B, 0x10, 0x10);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000090
Uwe Hermann372eeb52007-12-04 21:49:06 +000091 /* Select logical device 8: GPIO port 2 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000092 sio_write(port, 0x07, 0x08);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000093
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000094 sio_mask(port, 0x30, 0x01, 0x01); /* Activate logical device. */
95 sio_mask(port, 0xF0, 0x00, 0x10); /* GPIO24 -> output */
96 sio_mask(port, 0xF2, 0x00, 0x10); /* Clear GPIO24 inversion */
97 sio_mask(port, 0xF1, 0x10, 0x10); /* Raise GPIO24 */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000098
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000099 w836xx_ext_leave(port);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000100
101 return 0;
102}
103
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000104static int w83627hf_gpio24_raise_2e(const char *name)
105{
Mondrian nuessle197d6cd2009-04-09 14:28:36 +0000106 return w83627hf_gpio24_raise(0x2e, name);
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000107}
108
109/**
110 * Winbond W83627THF: GPIO 4, bit 4
111 *
112 * Suited for:
Peter Stugecce26822008-07-21 17:48:40 +0000113 * - MSI K8T Neo2-F
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000114 * - MSI K8N-NEO3
115 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000116static int w83627thf_gpio4_4_raise(uint16_t port, const char *name)
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000117{
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000118 w836xx_ext_enter(port);
Uwe Hermann372eeb52007-12-04 21:49:06 +0000119
120 /* Is this the W83627THF? */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000121 if (sio_read(port, 0x20) != 0x82) { /* Super I/O device ID reg. */
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000122 fprintf(stderr, "\nERROR: %s: W83627THF: Wrong ID: 0x%02X.\n",
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000123 name, sio_read(port, 0x20));
124 w836xx_ext_leave(port);
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000125 return -1;
126 }
127
128 /* PINxxxxS: GPIO4/bit 4 multiplex -> GPIOXXX */
129
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000130 sio_write(port, 0x07, 0x09); /* Select LDN 9: GPIO port 4 */
131 sio_mask(port, 0x30, 0x02, 0x02); /* Activate logical device. */
132 sio_mask(port, 0xF4, 0x00, 0x10); /* GPIO4 bit 4 -> output */
133 sio_mask(port, 0xF6, 0x00, 0x10); /* Clear GPIO4 bit 4 inversion */
134 sio_mask(port, 0xF5, 0x10, 0x10); /* Raise GPIO4 bit 4 */
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000135
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000136 w836xx_ext_leave(port);
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000137
138 return 0;
139}
140
Peter Stugecce26822008-07-21 17:48:40 +0000141static int w83627thf_gpio4_4_raise_2e(const char *name)
142{
143 return w83627thf_gpio4_4_raise(0x2e, name);
144}
145
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000146static int w83627thf_gpio4_4_raise_4e(const char *name)
147{
Uwe Hermann372eeb52007-12-04 21:49:06 +0000148 return w83627thf_gpio4_4_raise(0x4e, name);
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000149}
Uwe Hermann372eeb52007-12-04 21:49:06 +0000150
Uwe Hermannffec5f32007-08-23 16:08:21 +0000151/**
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000152 * w83627: Enable MEMW# and set ROM size to max.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000153 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000154static void w836xx_memw_enable(uint16_t port)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000155{
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000156 w836xx_ext_enter(port);
157 if (!(sio_read(port, 0x24) & 0x02)) { /* Flash ROM enabled? */
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000158 /* Enable MEMW# and set ROM size select to max. (4M). */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000159 sio_mask(port, 0x24, 0x28, 0x28);
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000160 }
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000161 w836xx_ext_leave(port);
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000162}
163
164/**
165 * Common routine for several VT823x based boards.
166 */
167static void vt823x_set_all_writes_to_lpc(struct pci_dev *dev)
168{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000169 uint8_t val;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000170
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000171 /* All memory cycles, not just ROM ones, go to LPC. */
172 val = pci_read_byte(dev, 0x59);
173 val &= ~0x80;
174 pci_write_byte(dev, 0x59, val);
175}
176
177/**
178 * VT823x: Set one of the GPIO pins.
179 */
180static void vt823x_gpio_set(struct pci_dev *dev, uint8_t gpio, int raise)
181{
182 uint16_t base;
183 uint8_t val, bit;
184
185 if ((gpio < 12) || (gpio > 15)) {
186 fprintf(stderr, "\nERROR: "
187 "VT823x GPIO%02d is not implemented.\n", gpio);
188 return;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000189 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000190
Uwe Hermanna7e05482007-05-09 10:17:44 +0000191 /* GPIO12-15 -> output */
192 val = pci_read_byte(dev, 0xE4);
193 val |= 0x10;
194 pci_write_byte(dev, 0xE4, val);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000195
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000196 /* Now raise/drop the GPIO line itself. */
197 bit = 0x01 << (gpio - 8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000198
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000199 /* We need the I/O Base Address for this board's flash enable. */
200 base = pci_read_word(dev, 0x88) & 0xff80;
201
Andriy Gapon65c1b862008-05-22 13:22:45 +0000202 val = INB(base + 0x4D);
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000203 if (raise)
204 val |= bit;
205 else
206 val &= ~bit;
Andriy Gapon65c1b862008-05-22 13:22:45 +0000207 OUTB(val, base + 0x4D);
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000208}
209
210/**
211 * Suited for VIAs EPIA M and MII, and maybe other CLE266 based EPIAs.
212 *
213 * We don't need to do this when using coreboot, GPIO15 is never lowered there.
214 */
215static int board_via_epia_m(const char *name)
216{
217 struct pci_dev *dev;
218
219 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
220 if (!dev) {
221 fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n");
222 return -1;
223 }
224
225 /* GPIO15 is connected to write protect. */
226 vt823x_gpio_set(dev, 15, 1);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000227
Uwe Hermanna7e05482007-05-09 10:17:44 +0000228 return 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000229}
230
Uwe Hermannffec5f32007-08-23 16:08:21 +0000231/**
Luc Verhaegen32707542007-07-04 17:51:49 +0000232 * Suited for:
Uwe Hermannffec5f32007-08-23 16:08:21 +0000233 * - ASUS A7V8X-MX SE and A7V400-MX: AMD K7 + VIA KM400A + VT8235
Uwe Hermann5e1aecd2009-05-18 21:56:16 +0000234 * - Tyan S2498 (Tomcat K7M): AMD Geode NX + VIA KM400 + VT8237.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000235 */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +0000236static int board_asus_a7v8x_mx(const char *name)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000237{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000238 struct pci_dev *dev;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000239
Uwe Hermanna7e05482007-05-09 10:17:44 +0000240 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
Luc Verhaegen32707542007-07-04 17:51:49 +0000241 if (!dev)
242 dev = pci_dev_find(0x1106, 0x3227); /* VT8237 ISA bridge */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000243 if (!dev) {
Luc Verhaegen32707542007-07-04 17:51:49 +0000244 fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000245 return -1;
246 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000247
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000248 vt823x_set_all_writes_to_lpc(dev);
249 w836xx_memw_enable(0x2E);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000250
Uwe Hermanna7e05482007-05-09 10:17:44 +0000251 return 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000252}
253
Uwe Hermannffec5f32007-08-23 16:08:21 +0000254/**
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000255 * Suited for VIAs EPIA SP and EPIA CN.
Luc Verhaegen97866082008-02-09 02:03:06 +0000256 */
257static int board_via_epia_sp(const char *name)
258{
259 struct pci_dev *dev;
Luc Verhaegen97866082008-02-09 02:03:06 +0000260
261 dev = pci_dev_find(0x1106, 0x3227); /* VT8237R ISA bridge */
262 if (!dev) {
263 fprintf(stderr, "\nERROR: VT8237R ISA bridge not found.\n");
264 return -1;
265 }
266
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000267 vt823x_set_all_writes_to_lpc(dev);
268
269 return 0;
270}
271
272/**
273 * Suited for EPoX EP-8K5A2.
274 */
275static int board_epox_ep_8k5a2(const char *name)
276{
277 struct pci_dev *dev;
278
279 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
280 if (!dev) {
281 fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n");
282 return -1;
283 }
284
285 w836xx_memw_enable(0x2E);
Luc Verhaegen97866082008-02-09 02:03:06 +0000286
287 return 0;
288}
289
290/**
Luc Verhaegen6b141752007-05-20 16:16:13 +0000291 * Suited for ASUS P5A.
292 *
293 * This is rather nasty code, but there's no way to do this cleanly.
294 * We're basically talking to some unknown device on SMBus, my guess
295 * is that it is the Winbond W83781D that lives near the DIP BIOS.
296 */
Luc Verhaegen6b141752007-05-20 16:16:13 +0000297static int board_asus_p5a(const char *name)
298{
299 uint8_t tmp;
300 int i;
301
302#define ASUSP5A_LOOP 5000
303
Andriy Gapon65c1b862008-05-22 13:22:45 +0000304 OUTB(0x00, 0xE807);
305 OUTB(0xEF, 0xE803);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000306
Andriy Gapon65c1b862008-05-22 13:22:45 +0000307 OUTB(0xFF, 0xE800);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000308
309 for (i = 0; i < ASUSP5A_LOOP; i++) {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000310 OUTB(0xE1, 0xFF);
311 if (INB(0xE800) & 0x04)
Luc Verhaegen6b141752007-05-20 16:16:13 +0000312 break;
313 }
314
315 if (i == ASUSP5A_LOOP) {
316 printf("%s: Unable to contact device.\n", name);
317 return -1;
318 }
319
Andriy Gapon65c1b862008-05-22 13:22:45 +0000320 OUTB(0x20, 0xE801);
321 OUTB(0x20, 0xE1);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000322
Andriy Gapon65c1b862008-05-22 13:22:45 +0000323 OUTB(0xFF, 0xE802);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000324
325 for (i = 0; i < ASUSP5A_LOOP; i++) {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000326 tmp = INB(0xE800);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000327 if (tmp & 0x70)
328 break;
329 }
330
331 if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) {
332 printf("%s: failed to read device.\n", name);
333 return -1;
334 }
335
Andriy Gapon65c1b862008-05-22 13:22:45 +0000336 tmp = INB(0xE804);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000337 tmp &= ~0x02;
338
Andriy Gapon65c1b862008-05-22 13:22:45 +0000339 OUTB(0x00, 0xE807);
340 OUTB(0xEE, 0xE803);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000341
Andriy Gapon65c1b862008-05-22 13:22:45 +0000342 OUTB(tmp, 0xE804);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000343
Andriy Gapon65c1b862008-05-22 13:22:45 +0000344 OUTB(0xFF, 0xE800);
345 OUTB(0xE1, 0xFF);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000346
Andriy Gapon65c1b862008-05-22 13:22:45 +0000347 OUTB(0x20, 0xE801);
348 OUTB(0x20, 0xE1);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000349
Andriy Gapon65c1b862008-05-22 13:22:45 +0000350 OUTB(0xFF, 0xE802);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000351
352 for (i = 0; i < ASUSP5A_LOOP; i++) {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000353 tmp = INB(0xE800);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000354 if (tmp & 0x70)
355 break;
356 }
357
358 if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) {
359 printf("%s: failed to write to device.\n", name);
360 return -1;
361 }
362
363 return 0;
364}
365
Stefan Reinauer1c283f42007-06-05 12:51:52 +0000366static int board_ibm_x3455(const char *name)
367{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000368 /* Set GPIO lines in the Broadcom HT-1000 southbridge. */
Carl-Daniel Hailfinger500b4232009-06-01 21:30:42 +0000369 /* It's not a superio but it uses the same index/data port method. */
370 sio_mask(0xcd6, 0x45, 0x20, 0x20);
Stefan Reinauer1c283f42007-06-05 12:51:52 +0000371
372 return 0;
373}
374
Mondrian Nuessled5df3302009-03-30 13:20:01 +0000375static int board_hp_dl145_g3_enable(const char *name)
376{
Mondrian Nuessled5df3302009-03-30 13:20:01 +0000377 /* Set GPIO lines in the Broadcom HT-1000 southbridge. */
Carl-Daniel Hailfinger500b4232009-06-01 21:30:42 +0000378 /* GPIO 0 reg from PM regs */
Mondrian Nuessled5df3302009-03-30 13:20:01 +0000379 /* Set GPIO 2 and 5 high, connected to flash WP# and TBL# pins. */
Carl-Daniel Hailfinger500b4232009-06-01 21:30:42 +0000380 /* It's not a superio but it uses the same index/data port method. */
381 sio_mask(0xcd6, 0x44, 0x24, 0x24);
Mondrian Nuessled5df3302009-03-30 13:20:01 +0000382
383 return 0;
384}
385
Luc Verhaegenfdd0c582007-08-11 16:59:11 +0000386/**
387 * Suited for EPoX EP-BX3, and maybe some other Intel 440BX based boards.
388 */
389static int board_epox_ep_bx3(const char *name)
390{
391 uint8_t tmp;
392
393 /* Raise GPIO22. */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000394 tmp = INB(0x4036);
395 OUTB(tmp, 0xEB);
Luc Verhaegenfdd0c582007-08-11 16:59:11 +0000396
397 tmp |= 0x40;
398
Andriy Gapon65c1b862008-05-22 13:22:45 +0000399 OUTB(tmp, 0x4036);
400 OUTB(tmp, 0xEB);
Luc Verhaegenfdd0c582007-08-11 16:59:11 +0000401
402 return 0;
403}
404
Uwe Hermannffec5f32007-08-23 16:08:21 +0000405/**
Uwe Hermann372eeb52007-12-04 21:49:06 +0000406 * Suited for Acorp 6A815EPD.
Jonathan A. Kollaschc7785562007-12-02 19:03:23 +0000407 */
408static int board_acorp_6a815epd(const char *name)
409{
410 struct pci_dev *dev;
411 uint16_t port;
412 uint8_t val;
413
Uwe Hermann394131e2008-10-18 21:14:13 +0000414 dev = pci_dev_find(0x8086, 0x2440); /* Intel ICH2 LPC */
Jonathan A. Kollaschc7785562007-12-02 19:03:23 +0000415 if (!dev) {
416 fprintf(stderr, "\nERROR: ICH2 LPC bridge not found.\n");
417 return -1;
418 }
419
420 /* Use GPIOBASE register to find where the GPIO is mapped. */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000421 port = (pci_read_word(dev, 0x58) & 0xFFC0) + 0xE;
Jonathan A. Kollaschc7785562007-12-02 19:03:23 +0000422
Andriy Gapon65c1b862008-05-22 13:22:45 +0000423 val = INB(port);
Uwe Hermann394131e2008-10-18 21:14:13 +0000424 val |= 0x80; /* Top Block Lock -- pin 8 of PLCC32 */
425 val |= 0x40; /* Lower Blocks Lock -- pin 7 of PLCC32 */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000426 OUTB(val, port);
Jonathan A. Kollaschc7785562007-12-02 19:03:23 +0000427
428 return 0;
429}
430
431/**
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000432 * Suited for Artec Group DBE61 and DBE62.
433 */
434static int board_artecgroup_dbe6x(const char *name)
435{
436#define DBE6x_MSR_DIVIL_BALL_OPTS 0x51400015
437#define DBE6x_PRI_BOOT_LOC_SHIFT (2)
438#define DBE6x_BOOT_OP_LATCHED_SHIFT (8)
439#define DBE6x_SEC_BOOT_LOC_SHIFT (10)
440#define DBE6x_PRI_BOOT_LOC (3 << DBE6x_PRI_BOOT_LOC_SHIFT)
441#define DBE6x_BOOT_OP_LATCHED (3 << DBE6x_BOOT_OP_LATCHED_SHIFT)
442#define DBE6x_SEC_BOOT_LOC (3 << DBE6x_SEC_BOOT_LOC_SHIFT)
443#define DBE6x_BOOT_LOC_FLASH (2)
444#define DBE6x_BOOT_LOC_FWHUB (3)
445
446 unsigned long msr[2];
447 int msr_fd;
448 unsigned long boot_loc;
449
450 msr_fd = open("/dev/cpu/0/msr", O_RDWR);
451 if (msr_fd == -1) {
452 perror("open /dev/cpu/0/msr");
453 return -1;
454 }
455
456 if (lseek(msr_fd, DBE6x_MSR_DIVIL_BALL_OPTS, SEEK_SET) == -1) {
457 perror("lseek");
458 close(msr_fd);
459 return -1;
460 }
461
Uwe Hermann394131e2008-10-18 21:14:13 +0000462 if (read(msr_fd, (void *)msr, 8) != 8) {
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000463 perror("read");
464 close(msr_fd);
465 return -1;
466 }
467
468 if ((msr[0] & (DBE6x_BOOT_OP_LATCHED)) ==
469 (DBE6x_BOOT_LOC_FWHUB << DBE6x_BOOT_OP_LATCHED_SHIFT))
470 boot_loc = DBE6x_BOOT_LOC_FWHUB;
471 else
472 boot_loc = DBE6x_BOOT_LOC_FLASH;
473
474 msr[0] &= ~(DBE6x_PRI_BOOT_LOC | DBE6x_SEC_BOOT_LOC);
475 msr[0] |= ((boot_loc << DBE6x_PRI_BOOT_LOC_SHIFT) |
Uwe Hermann394131e2008-10-18 21:14:13 +0000476 (boot_loc << DBE6x_SEC_BOOT_LOC_SHIFT));
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000477
478 if (lseek(msr_fd, DBE6x_MSR_DIVIL_BALL_OPTS, SEEK_SET) == -1) {
479 perror("lseek");
480 close(msr_fd);
481 return -1;
482 }
483
Uwe Hermann394131e2008-10-18 21:14:13 +0000484 if (write(msr_fd, (void *)msr, 8) != 8) {
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000485 perror("write");
486 close(msr_fd);
487 return -1;
488 }
489
490 close(msr_fd);
491 return 0;
492}
493
Uwe Hermann93f66db2008-05-22 21:19:38 +0000494/**
495 * Set the specified GPIO on the specified ICHx southbridge to high.
496 *
497 * @param name The name of this board.
498 * @param ich_vendor PCI vendor ID of the specified ICHx southbridge.
499 * @param ich_device PCI device ID of the specified ICHx southbridge.
500 * @param gpiobase_reg GPIOBASE register offset in the LPC bridge.
501 * @param gp_lvl Offset of GP_LVL register in I/O space, relative to GPIOBASE.
502 * @param gp_lvl_bitmask GP_LVL bitmask (set GPIO bits to 1, all others to 0).
503 * @param gpio_bit The bit (GPIO) which shall be set to high.
504 * @return If the write-enable was successful return 0, otherwise return -1.
505 */
506static int ich_gpio_raise(const char *name, uint16_t ich_vendor,
507 uint16_t ich_device, uint8_t gpiobase_reg,
508 uint8_t gp_lvl, uint32_t gp_lvl_bitmask,
509 unsigned int gpio_bit)
510{
511 struct pci_dev *dev;
512 uint16_t gpiobar;
513 uint32_t reg32;
514
Uwe Hermann394131e2008-10-18 21:14:13 +0000515 dev = pci_dev_find(ich_vendor, ich_device); /* Intel ICHx LPC */
Uwe Hermann93f66db2008-05-22 21:19:38 +0000516 if (!dev) {
517 fprintf(stderr, "\nERROR: ICHx LPC dev %4x:%4x not found.\n",
518 ich_vendor, ich_device);
519 return -1;
520 }
521
522 /* Use GPIOBASE register to find the I/O space for GPIO. */
523 gpiobar = pci_read_word(dev, gpiobase_reg) & gp_lvl_bitmask;
524
525 /* Set specified GPIO to high. */
526 reg32 = INL(gpiobar + gp_lvl);
527 reg32 |= (1 << gpio_bit);
528 OUTL(reg32, gpiobar + gp_lvl);
529
530 return 0;
531}
532
533/**
534 * Suited for ASUS P4B266.
535 */
536static int ich2_gpio22_raise(const char *name)
537{
538 return ich_gpio_raise(name, 0x8086, 0x2440, 0x58, 0x0c, 0xffc0, 22);
539}
540
Peter Stuge09c13332009-02-02 22:55:26 +0000541/**
542 * Suited for MSI MS-7046.
543 */
544static int ich6_gpio19_raise(const char *name)
545{
546 return ich_gpio_raise(name, 0x8086, 0x2640, 0x48, 0x0c, 0xffc0, 19);
547}
548
Stefan Reinauerac378972008-03-17 22:59:40 +0000549static int board_kontron_986lcd_m(const char *name)
550{
551 struct pci_dev *dev;
552 uint16_t gpiobar;
553 uint32_t val;
554
555#define ICH7_GPIO_LVL2 0x38
556
Uwe Hermann394131e2008-10-18 21:14:13 +0000557 dev = pci_dev_find(0x8086, 0x27b8); /* Intel ICH7 LPC */
Stefan Reinauerac378972008-03-17 22:59:40 +0000558 if (!dev) {
559 // This will never happen on this board
560 fprintf(stderr, "\nERROR: ICH7 LPC bridge not found.\n");
561 return -1;
562 }
563
564 /* Use GPIOBASE register to find where the GPIO is mapped. */
565 gpiobar = pci_read_word(dev, 0x48) & 0xfffc;
566
Andriy Gapon65c1b862008-05-22 13:22:45 +0000567 val = INL(gpiobar + ICH7_GPIO_LVL2); /* GP_LVL2 */
Stefan Reinauerac378972008-03-17 22:59:40 +0000568 printf_debug("\nGPIOBAR=0x%04x GP_LVL: 0x%08x\n", gpiobar, val);
569
570 /* bit 2 (0x04) = 0 #TBL --> bootblock locking = 1
571 * bit 2 (0x04) = 1 #TBL --> bootblock locking = 0
572 * bit 3 (0x08) = 0 #WP --> block locking = 1
573 * bit 3 (0x08) = 1 #WP --> block locking = 0
574 *
575 * To enable full block locking, you would do:
576 * val &= ~ ((1 << 2) | (1 << 3));
577 */
578 val |= (1 << 2) | (1 << 3);
579
Andriy Gapon65c1b862008-05-22 13:22:45 +0000580 OUTL(val, gpiobar + ICH7_GPIO_LVL2);
Stefan Reinauerac378972008-03-17 22:59:40 +0000581
582 return 0;
583}
584
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000585/**
Peter Stuge4aa71562008-06-11 02:22:42 +0000586 * Suited for:
587 * - BioStar P4M80-M4: Intel P4 + VIA P4M800 + VT8237
Peter Stuge663f1712008-06-13 01:39:45 +0000588 * - GIGABYTE GA-7VT600: AMD K7 + VIA KT600 + VT8237
Peter Stuge4aa71562008-06-11 02:22:42 +0000589 */
590static int board_biostar_p4m80_m4(const char *name)
591{
592 /* enter IT87xx conf mode */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000593 enter_conf_mode_ite(0x2e);
Peter Stuge4aa71562008-06-11 02:22:42 +0000594
595 /* select right flash chip */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000596 sio_mask(0x2e, 0x22, 0x80, 0x80);
Peter Stuge4aa71562008-06-11 02:22:42 +0000597
598 /* bit 3: flash chip write enable
599 * bit 7: map flash chip at 1MB-128K (why though? ignoring this.)
600 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000601 sio_mask(0x2e, 0x24, 0x04, 0x04);
Peter Stuge4aa71562008-06-11 02:22:42 +0000602
603 /* exit IT87xx conf mode */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000604 exit_conf_mode_ite(0x2e);
Peter Stuge4aa71562008-06-11 02:22:42 +0000605
606 return 0;
607}
608
609/**
Sean Nelsonb20953c2008-08-19 21:51:39 +0000610 * Winbond W83697HF Super I/O + VIA VT8235 southbridge
611 *
612 * Suited for:
613 * - MSI KT4V and KT4V-L: AMD K7 + VIA KT400 + VT8235
Uwe Hermannab60a432009-05-23 00:56:49 +0000614 * - MSI KT4 Ultra: AMD K7 + VIA KT400 + VT8235
Sean Nelsonb20953c2008-08-19 21:51:39 +0000615 * - MSI KT3 Ultra2: AMD K7 + VIA KT333 + VT8235
616 */
617static int board_msi_kt4v(const char *name)
618{
619 struct pci_dev *dev;
620 uint8_t val;
Sean Nelsonb20953c2008-08-19 21:51:39 +0000621
622 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
623 if (!dev) {
624 fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n");
625 return -1;
626 }
627
628 val = pci_read_byte(dev, 0x59);
629 val &= 0x0c;
630 pci_write_byte(dev, 0x59, val);
631
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000632 vt823x_gpio_set(dev, 12, 1);
633 w836xx_memw_enable(0x2E);
Sean Nelsonb20953c2008-08-19 21:51:39 +0000634
635 return 0;
636}
637
638/**
Uwe Hermannffec5f32007-08-23 16:08:21 +0000639 * We use 2 sets of IDs here, you're free to choose which is which. This
640 * is to provide a very high degree of certainty when matching a board on
641 * the basis of subsystem/card IDs. As not every vendor handles
642 * subsystem/card IDs in a sane manner.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000643 *
Luc Verhaegenc5210162009-04-20 12:38:17 +0000644 * Keep the second set NULLed if it should be ignored. Keep the subsystem IDs
645 * NULLed if they don't identify the board fully. But please take care to
646 * provide an as complete set of pci ids as possible; autodetection is the
647 * preferred behaviour and we would like to make sure that matches are unique.
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000648 *
Luc Verhaegenc5210162009-04-20 12:38:17 +0000649 * The coreboot ids are used two fold. When running with a coreboot firmware,
650 * the ids uniquely matches the coreboot board identification string. When a
651 * legacy bios is installed and when autodetection is not possible, these ids
652 * can be used to identify the board through the -m command line argument.
653 *
654 * When a board is identified through its coreboot ids (in both cases), the
655 * main pci ids are still required to match, as a safeguard.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000656 */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000657
Uwe Hermanndeeebe22009-05-08 16:23:34 +0000658/* Please keep this list alphabetically ordered by vendor/board name. */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000659struct board_pciid_enable board_pciid_enables[] = {
Uwe Hermannab60a432009-05-23 00:56:49 +0000660 /* first pci-id set [4], second pci-id set [4], coreboot id [2], vendor name board name flash enable */
661 {0x8086, 0x1130, 0, 0, 0x105a, 0x0d30, 0x105a, 0x4d33, "acorp", "6a815epd", "Acorp", "6A815EPD", board_acorp_6a815epd},
Uwe Hermann5e1aecd2009-05-18 21:56:16 +0000662 {0x1022, 0x746B, 0x1022, 0x36C0, 0, 0, 0, 0, "AGAMI", "ARUMA", "agami", "Aruma", w83627hf_gpio24_raise_2e},
663 {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe61", "Artec Group", "DBE61", board_artecgroup_dbe6x},
664 {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe62", "Artec Group", "DBE62", board_artecgroup_dbe6x},
665 {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118, NULL, NULL, "ASUS", "A7V8-MX SE", board_asus_a7v8x_mx},
666 {0x8086, 0x1a30, 0x1043, 0x8070, 0x8086, 0x244b, 0x1043, 0x8028, NULL, NULL, "ASUS", "P4B266", ich2_gpio22_raise},
667 {0x10B9, 0x1541, 0, 0, 0x10B9, 0x1533, 0, 0, "asus", "p5a", "ASUS", "P5A", board_asus_p5a},
668 {0x1106, 0x3149, 0x1565, 0x3206, 0x1106, 0x3344, 0x1565, 0x1202, NULL, NULL, "BioStar", "P4M80-M4", board_biostar_p4m80_m4},
669 {0x1106, 0x3177, 0x1106, 0x3177, 0x1106, 0x3059, 0x1695, 0x3005, NULL, NULL, "EPoX", "EP-8K5A2", board_epox_ep_8k5a2},
670 {0x8086, 0x7110, 0, 0, 0x8086, 0x7190, 0, 0, "epox", "ep-bx3", "EPoX", "EP-BX3", board_epox_ep_bx3},
671 {0x1039, 0x0761, 0, 0, 0, 0, 0, 0, "gigabyte", "2761gxdk", "GIGABYTE", "GA-2761GXDK", it87xx_probe_spi_flash},
672 {0x1106, 0x3227, 0x1458, 0x5001, 0x10ec, 0x8139, 0x1458, 0xe000, NULL, NULL, "GIGABYTE", "GA-7VT600", board_biostar_p4m80_m4},
673 {0x10de, 0x0360, 0, 0, 0, 0, 0, 0, "gigabyte", "m57sli", "GIGABYTE", "GA-M57SLI-S4", it87xx_probe_spi_flash},
674 {0x10de, 0x03e0, 0, 0, 0, 0, 0, 0, "gigabyte", "m61p", "GIGABYTE", "GA-M61P-S3", it87xx_probe_spi_flash},
Uwe Hermann0495c942009-05-18 22:27:53 +0000675 {0x1002, 0x4398, 0x1458, 0x5004, 0x1002, 0x4391, 0x1458, 0xb000, NULL, NULL, "GIGABYTE", "GA-MA78G-DS3H", it87xx_probe_spi_flash},
676 {0x1002, 0x4398, 0x1458, 0x5004, 0x1002, 0x4391, 0x1458, 0xb002, NULL, NULL, "GIGABYTE", "GA-MA78GM-S2H", it87xx_probe_spi_flash},
Uwe Hermanndeeebe22009-05-08 16:23:34 +0000677 /* SB600 LPC, RD790 North. Neither are specific to the GA-MA790FX-DQ6. The coreboot ID is here to be able to trigger the board enable more easily. */
Uwe Hermann5e1aecd2009-05-18 21:56:16 +0000678 {0x1002, 0x438d, 0x1458, 0x5001, 0x1002, 0x5956, 0x1002, 0x5956, "gigabyte", "ma790fx-dq6", "GIGABYTE", "GA-MA790FX-DQ6", it87xx_probe_spi_flash},
679 {0x1166, 0x0223, 0x103c, 0x320d, 0x102b, 0x0522, 0x103c, 0x31fa, "hp", "dl145_g3", "HP", "DL145 G3", board_hp_dl145_g3_enable},
680 {0x1166, 0x0205, 0x1014, 0x0347, 0, 0, 0, 0, "ibm", "x3455", "IBM", "x3455", board_ibm_x3455},
681 {0x1039, 0x5513, 0x8086, 0xd61f, 0x1039, 0x6330, 0x8086, 0xd61f, NULL, NULL, "Intel", "D201GLY", wbsio_check_for_spi},
682 {0x1022, 0x7468, 0, 0, 0, 0, 0, 0, "iwill", "dk8_htx", "IWILL", "DK8-HTX", w83627hf_gpio24_raise_2e},
683 /* Note: There are >= 2 version of the Kontron 986LCD-M/mITX! */
684 {0x8086, 0x27b8, 0, 0, 0, 0, 0, 0, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m},
685 {0x10ec, 0x8168, 0x10ec, 0x8168, 0x104c, 0x8023, 0x104c, 0x8019, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m},
Uwe Hermannd1129ac2009-05-28 15:07:42 +0000686 {0x10de, 0x005e, 0, 0, 0, 0, 0, 0, "msi", "k8n-neo3", "MSI", "MS-7135 (K8N Neo3)", w83627thf_gpio4_4_raise_4e},
687 {0x1106, 0x3149, 0x1462, 0x7094, 0x10ec, 0x8167, 0x1462, 0x094c, NULL, NULL, "MSI", "MS-6702E (K8T Neo2-F)",w83627thf_gpio4_4_raise_2e},
688 {0x1106, 0x0571, 0x1462, 0x7120, 0, 0, 0, 0, "msi", "kt4v", "MSI", "MS-6712 (KT4V)", board_msi_kt4v},
689 {0x13f6, 0x0111, 0x1462, 0x5900, 0x1106, 0x3177, 0x1106, 0, "msi", "kt4ultra", "MSI", "MS-6590 (KT4 Ultra)",board_msi_kt4v},
Uwe Hermann5e1aecd2009-05-18 21:56:16 +0000690 {0x8086, 0x2658, 0x1462, 0x7046, 0x1106, 0x3044, 0x1462, 0x046d, NULL, NULL, "MSI", "MS-7046", ich6_gpio19_raise},
691 {0x8086, 0x1076, 0x8086, 0x1176, 0x1106, 0x3059, 0x10f1, 0x2498, NULL, NULL, "Tyan", "S2498 (Tomcat K7M)", board_asus_a7v8x_mx},
692 {0x1106, 0x0314, 0x1106, 0xaa08, 0x1106, 0x3227, 0x1106, 0xAA08, NULL, NULL, "VIA", "EPIA-CN", board_via_epia_sp},
693 {0x1106, 0x3177, 0x1106, 0xAA01, 0x1106, 0x3123, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA M/MII/...", board_via_epia_m},
694 {0x1106, 0x3227, 0x1106, 0xAA01, 0x1106, 0x0259, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA SP", board_via_epia_sp},
695 {0x1106, 0x5337, 0x1458, 0xb003, 0x1106, 0x287e, 0x1106, 0x337e, "via", "pc3500g", "VIA", "PC3500G", it87xx_probe_spi_flash},
696 { 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL}, /* end marker */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000697};
698
Uwe Hermann05fab752009-05-16 23:42:17 +0000699/* Please keep this list alphabetically ordered by vendor/board. */
700const struct board_info boards_ok[] = {
701 /* Verified working boards that don't need write-enables. */
702 { "Abit", "AX8", },
703 { "Advantech", "PCM-5820", },
704 { "ASI", "MB-5BLMP", },
705 { "ASUS", "A8N-E", },
706 { "ASUS", "A8NE-FM/S", },
707 { "ASUS", "A8N-SLI Premium", },
708 { "ASUS", "A8V-E Deluxe", },
709 { "ASUS", "M2A-VM", },
710 { "ASUS", "M2N-E", },
Uwe Hermann50d3f3e2009-05-28 00:00:23 +0000711 { "ASUS", "M2V", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000712 { "ASUS", "P2B", },
713 { "ASUS", "P2B-F", },
714 { "ASUS", "P2B-D", },
715 { "ASUS", "P2B-DS", },
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000716 { "ASUS", "A7N8X Deluxe", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000717 { "ASUS", "A7V400-MX", },
718 { "ASUS", "A7V8X-MX", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000719 { "ASUS", "A8V-E SE", },
720 { "ASUS", "P2L97-S", },
721 { "ASUS", "M2A-MX", },
Uwe Hermann690bcba2009-05-21 17:11:25 +0000722 { "ASUS", "P5B-Deluxe", },
723 { "ASUS", "P6T Deluxe V2", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000724 { "A-Trend", "ATC-6220", },
725 { "BCOM", "WinNET100", },
726 { "GIGABYTE", "GA-6BXC", },
727 { "GIGABYTE", "GA-6BXDU", },
Uwe Hermann690bcba2009-05-21 17:11:25 +0000728 { "GIGABYTE", "GA-6ZMA", },
729 { "Intel", "EP80759", },
Uwe Hermann50d3f3e2009-05-28 00:00:23 +0000730 { "Jetway", "J7F4K1G5D-PB", },
Uwe Hermannd1129ac2009-05-28 15:07:42 +0000731 { "MSI", "MS-6570 (K7N2)", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000732 { "MSI", "MS-7065", },
733 { "MSI", "MS-7236 (945PL Neo3)", },
Uwe Hermann690bcba2009-05-21 17:11:25 +0000734 { "MSI", "MS-7345 (P35 Neo2-FIR)", },
735 { "MSI", "MS-7168 (Orion)", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000736 { "NEC", "PowerMate 2000", },
737 { "PC Engines", "Alix.1c", },
738 { "PC Engines", "Alix.2c2", },
739 { "PC Engines", "Alix.2c3", },
740 { "PC Engines", "Alix.3c3", },
Uwe Hermann50d3f3e2009-05-28 00:00:23 +0000741 { "PC Engines", "Alix.3d3", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000742 { "RCA", "RM4100", },
Uwe Hermann690bcba2009-05-21 17:11:25 +0000743 { "Supermicro", "H8QC8", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000744 { "Sun", "Blade x6250", },
745 { "Thomson", "IP1000", },
746 { "T-Online", "S-100", },
747 { "Tyan", "S1846", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000748 { "Tyan", "S2881", },
749 { "Tyan", "S2882", },
750 { "Tyan", "S2882-D", },
Uwe Hermanne615e512009-05-18 15:31:10 +0000751 { "Tyan", "S2891", },
752 { "Tyan", "S2892", },
753 { "Tyan", "S2895", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000754 { "Tyan", "S3095", },
755 { "Tyan", "S5180", },
756 { "Tyan", "S5191", },
757 { "Tyan", "S5197", },
758 { "Tyan", "S5211", },
759 { "Tyan", "S5211-1U", },
760 { "Tyan", "S5220", },
761 { "Tyan", "S5375", },
762 { "Tyan", "iS5375-1U", },
Uwe Hermannab60a432009-05-23 00:56:49 +0000763 { "Tyan", "S5376G2NR/S5376WAG2NR", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000764 { "Tyan", "S5377", },
765 { "Tyan", "S5397", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000766 { "VIA", "EPIA-LN", },
767 { "VIA", "VB700X", },
768 { "VIA", "NAB74X0", },
769 { "VIA", "pc2500e", },
770
771 {},
772};
773
774/* Please keep this list alphabetically ordered by vendor/board. */
775const struct board_info boards_bad[] = {
776 /* Verified non-working boards (for now). */
Uwe Hermann690bcba2009-05-21 17:11:25 +0000777 { "Abit", "IS-10", },
Uwe Hermann50d3f3e2009-05-28 00:00:23 +0000778 { "ASUS", "M3N78 Pro", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000779 { "ASUS", "MEW-AM", },
780 { "ASUS", "MEW-VM", },
781 { "ASUS", "P3B-F", },
Uwe Hermann690bcba2009-05-21 17:11:25 +0000782 { "ASUS", "P5B", },
783 { "ASUS", "P5BV-M", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000784 { "Biostar", "M6TBA", },
Uwe Hermann690bcba2009-05-21 17:11:25 +0000785 { "Boser", "HS-6637", },
Uwe Hermann50d3f3e2009-05-28 00:00:23 +0000786 { "DFI", "855GME-MGF", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000787 { "FIC", "VA-502", },
Uwe Hermann50d3f3e2009-05-28 00:00:23 +0000788 { "GIGABYTE", "GA-K8N-SLI", },
789 { "MSI", "MS-6178", },
Uwe Hermann05fab752009-05-16 23:42:17 +0000790 { "MSI", "MS-7260 (K9N Neo)", },
791 { "PCCHIPS", "M537DMA33", },
792 { "Soyo", "SY-5VD", },
793 { "Sun", "Fire x4540", },
794 { "Sun", "Fire x4150", },
795 { "Sun", "Fire x4200", },
796 { "Sun", "Fire x4600", },
797
798 {},
799};
800
801void print_supported_boards_helper(const struct board_info *b)
802{
803 int i, j;
804
805 for (i = 0; b[i].vendor != NULL; i++) {
806 printf("%s", b[i].vendor);
807 for (j = 0; j < 25 - strlen(b[i].vendor); j++)
808 printf(" ");
809 printf("%s", b[i].name);
810 for (j = 0; j < 23 - strlen(b[i].name); j++)
811 printf(" ");
812 printf("\n");
813 }
814}
815
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000816void print_supported_boards(void)
817{
Uwe Hermann05fab752009-05-16 23:42:17 +0000818 int i, j;
819 struct board_pciid_enable *b = board_pciid_enables;
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000820
Uwe Hermanne8ba5382009-05-22 11:37:27 +0000821 printf("\nSupported boards which need write-enable code:\n\nVendor: "
822 " Board: Required option:\n\n");
823
Uwe Hermann05fab752009-05-16 23:42:17 +0000824 for (i = 0; b[i].vendor_name != NULL; i++) {
825 printf("%s", b[i].vendor_name);
826 for (j = 0; j < 25 - strlen(b[i].vendor_name); j++)
827 printf(" ");
828 printf("%s", b[i].board_name);
829 for (j = 0; j < 25 - strlen(b[i].board_name); j++)
830 printf(" ");
831 if (b[i].lb_vendor != NULL)
Uwe Hermanne8ba5382009-05-22 11:37:27 +0000832 printf("-m %s:%s\n", b[i].lb_vendor, b[i].lb_part);
Uwe Hermann05fab752009-05-16 23:42:17 +0000833 else
Uwe Hermanne8ba5382009-05-22 11:37:27 +0000834 printf("(none, board is autodetected)\n");
Uwe Hermann23c3d952008-03-13 18:41:07 +0000835 }
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000836
Uwe Hermann05fab752009-05-16 23:42:17 +0000837 printf("\nSupported boards which don't need write-enable code:\n\n");
838 print_supported_boards_helper(boards_ok);
839
840 printf("\nBoards which have been verified to NOT work (yet):\n\n");
841 print_supported_boards_helper(boards_bad);
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000842}
843
Uwe Hermannffec5f32007-08-23 16:08:21 +0000844/**
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +0000845 * Match boards on coreboot table gathered vendor and part name.
Uwe Hermannffec5f32007-08-23 16:08:21 +0000846 * Require main PCI IDs to match too as extra safety.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000847 */
Uwe Hermann394131e2008-10-18 21:14:13 +0000848static struct board_pciid_enable *board_match_coreboot_name(const char *vendor,
849 const char *part)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000850{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000851 struct board_pciid_enable *board = board_pciid_enables;
Peter Stuge6b53fed2008-01-27 16:21:21 +0000852 struct board_pciid_enable *partmatch = NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000853
Uwe Hermanna93045c2009-05-09 00:47:04 +0000854 for (; board->vendor_name; board++) {
Uwe Hermann394131e2008-10-18 21:14:13 +0000855 if (vendor && (!board->lb_vendor
856 || strcasecmp(board->lb_vendor, vendor)))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000857 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000858
Peter Stuge0b9c5f32008-07-02 00:47:30 +0000859 if (!board->lb_part || strcasecmp(board->lb_part, part))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000860 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000861
Uwe Hermanna7e05482007-05-09 10:17:44 +0000862 if (!pci_dev_find(board->first_vendor, board->first_device))
863 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000864
Uwe Hermanna7e05482007-05-09 10:17:44 +0000865 if (board->second_vendor &&
Uwe Hermann394131e2008-10-18 21:14:13 +0000866 !pci_dev_find(board->second_vendor, board->second_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000867 continue;
Peter Stuge6b53fed2008-01-27 16:21:21 +0000868
869 if (vendor)
870 return board;
871
872 if (partmatch) {
873 /* a second entry has a matching part name */
874 printf("AMBIGUOUS BOARD NAME: %s\n", part);
875 printf("At least vendors '%s' and '%s' match.\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000876 partmatch->lb_vendor, board->lb_vendor);
Peter Stuge6b53fed2008-01-27 16:21:21 +0000877 printf("Please use the full -m vendor:part syntax.\n");
878 return NULL;
879 }
880 partmatch = board;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000881 }
Uwe Hermann372eeb52007-12-04 21:49:06 +0000882
Peter Stuge6b53fed2008-01-27 16:21:21 +0000883 if (partmatch)
884 return partmatch;
885
Peter Stuge00019d92008-07-02 00:59:29 +0000886 printf("\nUnknown vendor:board from coreboot table or -m option: %s:%s\n\n", vendor, part);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000887 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000888}
889
Uwe Hermannffec5f32007-08-23 16:08:21 +0000890/**
891 * Match boards on PCI IDs and subsystem IDs.
892 * Second set of IDs can be main only or missing completely.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000893 */
894static struct board_pciid_enable *board_match_pci_card_ids(void)
895{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000896 struct board_pciid_enable *board = board_pciid_enables;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000897
Uwe Hermanna93045c2009-05-09 00:47:04 +0000898 for (; board->vendor_name; board++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000899 if (!board->first_card_vendor || !board->first_card_device)
900 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000901
Uwe Hermanna7e05482007-05-09 10:17:44 +0000902 if (!pci_card_find(board->first_vendor, board->first_device,
Uwe Hermann394131e2008-10-18 21:14:13 +0000903 board->first_card_vendor,
904 board->first_card_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000905 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000906
Uwe Hermanna7e05482007-05-09 10:17:44 +0000907 if (board->second_vendor) {
908 if (board->second_card_vendor) {
909 if (!pci_card_find(board->second_vendor,
Uwe Hermann394131e2008-10-18 21:14:13 +0000910 board->second_device,
911 board->second_card_vendor,
912 board->second_card_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000913 continue;
914 } else {
915 if (!pci_dev_find(board->second_vendor,
Uwe Hermann394131e2008-10-18 21:14:13 +0000916 board->second_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000917 continue;
918 }
919 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000920
Uwe Hermanna7e05482007-05-09 10:17:44 +0000921 return board;
922 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000923
Uwe Hermanna7e05482007-05-09 10:17:44 +0000924 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000925}
926
Uwe Hermann372eeb52007-12-04 21:49:06 +0000927int board_flash_enable(const char *vendor, const char *part)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000928{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000929 struct board_pciid_enable *board = NULL;
930 int ret = 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000931
Peter Stuge6b53fed2008-01-27 16:21:21 +0000932 if (part)
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +0000933 board = board_match_coreboot_name(vendor, part);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000934
Uwe Hermanna7e05482007-05-09 10:17:44 +0000935 if (!board)
936 board = board_match_pci_card_ids();
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000937
Uwe Hermanna7e05482007-05-09 10:17:44 +0000938 if (board) {
Uwe Hermanna93045c2009-05-09 00:47:04 +0000939 printf("Found board \"%s %s\", enabling flash write... ",
940 board->vendor_name, board->board_name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000941
Uwe Hermanna93045c2009-05-09 00:47:04 +0000942 ret = board->enable(board->vendor_name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000943 if (ret)
Uwe Hermanna502dce2007-10-17 23:55:15 +0000944 printf("FAILED!\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000945 else
946 printf("OK.\n");
947 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000948
Uwe Hermanna7e05482007-05-09 10:17:44 +0000949 return ret;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000950}