blob: f6a12ce61481c32ce441cf539e90840d3c5c19c0 [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
27#include <stdio.h>
28#include <pci/pci.h>
29#include <stdint.h>
30#include <string.h>
Mart Raudseppfaa62fb2008-02-20 11:11:18 +000031#include <fcntl.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000032#include "flash.h"
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000033
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000034/*
Uwe Hermannffec5f32007-08-23 16:08:21 +000035 * Helper functions for many Winbond Super I/Os of the W836xx range.
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000036 */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000037/* Enter extended functions */
Peter Stuge9d9399c2009-01-26 02:34:51 +000038void w836xx_ext_enter(uint16_t port)
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000039{
Andriy Gapon65c1b862008-05-22 13:22:45 +000040 OUTB(0x87, port);
41 OUTB(0x87, port);
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000042}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000043
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000044/* Leave extended functions */
Peter Stuge9d9399c2009-01-26 02:34:51 +000045void w836xx_ext_leave(uint16_t port)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000046{
Andriy Gapon65c1b862008-05-22 13:22:45 +000047 OUTB(0xAA, port);
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000048}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000049
Uwe Hermannffec5f32007-08-23 16:08:21 +000050/* General functions for reading/writing Winbond Super I/Os. */
Peter Stuge9d9399c2009-01-26 02:34:51 +000051unsigned char wbsio_read(uint16_t index, uint8_t reg)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000052{
Andriy Gapon65c1b862008-05-22 13:22:45 +000053 OUTB(reg, index);
54 return INB(index + 1);
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000055}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000056
Peter Stuge9d9399c2009-01-26 02:34:51 +000057void wbsio_write(uint16_t index, uint8_t reg, uint8_t data)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000058{
Andriy Gapon65c1b862008-05-22 13:22:45 +000059 OUTB(reg, index);
60 OUTB(data, index + 1);
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000061}
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000062
Peter Stuge9d9399c2009-01-26 02:34:51 +000063void wbsio_mask(uint16_t index, uint8_t reg, uint8_t data, uint8_t mask)
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000064{
Ronald G. Minnichfa496922007-10-12 21:22:40 +000065 uint8_t tmp;
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000066
Andriy Gapon65c1b862008-05-22 13:22:45 +000067 OUTB(reg, index);
68 tmp = INB(index + 1) & ~mask;
69 OUTB(tmp | (data & mask), index + 1);
Mondrian Nuessleaef1c7c2007-05-03 10:09:23 +000070}
71
Uwe Hermannffec5f32007-08-23 16:08:21 +000072/**
73 * Winbond W83627HF: Raise GPIO24.
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000074 *
75 * Suited for:
Uwe Hermannffec5f32007-08-23 16:08:21 +000076 * - Agami Aruma
77 * - IWILL DK8-HTX
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000078 */
Ronald G. Minnichfa496922007-10-12 21:22:40 +000079static int w83627hf_gpio24_raise(uint16_t index, const char *name)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000080{
Ronald G. Minnichfa496922007-10-12 21:22:40 +000081 w836xx_ext_enter(index);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000082
Uwe Hermann372eeb52007-12-04 21:49:06 +000083 /* Is this the W83627HF? */
84 if (wbsio_read(index, 0x20) != 0x52) { /* Super I/O device ID reg. */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000085 fprintf(stderr, "\nERROR: %s: W83627HF: Wrong ID: 0x%02X.\n",
Ronald G. Minnichfa496922007-10-12 21:22:40 +000086 name, wbsio_read(index, 0x20));
87 w836xx_ext_leave(index);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000088 return -1;
89 }
90
Luc Verhaegen7977f4e2007-05-04 04:47:04 +000091 /* PIN89S: WDTO/GP24 multiplex -> GPIO24 */
Ronald G. Minnichfa496922007-10-12 21:22:40 +000092 wbsio_mask(index, 0x2B, 0x10, 0x10);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000093
Uwe Hermann372eeb52007-12-04 21:49:06 +000094 /* Select logical device 8: GPIO port 2 */
95 wbsio_write(index, 0x07, 0x08);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000096
Ronald G. Minnichfa496922007-10-12 21:22:40 +000097 wbsio_mask(index, 0x30, 0x01, 0x01); /* Activate logical device. */
Ronald G. Minnichfa496922007-10-12 21:22:40 +000098 wbsio_mask(index, 0xF0, 0x00, 0x10); /* GPIO24 -> output */
Ronald G. Minnichfa496922007-10-12 21:22:40 +000099 wbsio_mask(index, 0xF2, 0x00, 0x10); /* Clear GPIO24 inversion */
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000100 wbsio_mask(index, 0xF1, 0x10, 0x10); /* Raise GPIO24 */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +0000101
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000102 w836xx_ext_leave(index);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000103
104 return 0;
105}
106
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000107static int w83627hf_gpio24_raise_2e(const char *name)
108{
Mondrian nuessle197d6cd2009-04-09 14:28:36 +0000109 return w83627hf_gpio24_raise(0x2e, name);
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000110}
111
112/**
113 * Winbond W83627THF: GPIO 4, bit 4
114 *
115 * Suited for:
Peter Stugecce26822008-07-21 17:48:40 +0000116 * - MSI K8T Neo2-F
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000117 * - MSI K8N-NEO3
118 */
119static int w83627thf_gpio4_4_raise(uint16_t index, const char *name)
120{
121 w836xx_ext_enter(index);
Uwe Hermann372eeb52007-12-04 21:49:06 +0000122
123 /* Is this the W83627THF? */
124 if (wbsio_read(index, 0x20) != 0x82) { /* Super I/O device ID reg. */
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000125 fprintf(stderr, "\nERROR: %s: W83627THF: Wrong ID: 0x%02X.\n",
126 name, wbsio_read(index, 0x20));
127 w836xx_ext_leave(index);
128 return -1;
129 }
130
131 /* PINxxxxS: GPIO4/bit 4 multiplex -> GPIOXXX */
132
Uwe Hermann372eeb52007-12-04 21:49:06 +0000133 wbsio_write(index, 0x07, 0x09); /* Select LDN 9: GPIO port 4 */
134 wbsio_mask(index, 0x30, 0x02, 0x02); /* Activate logical device. */
135 wbsio_mask(index, 0xF4, 0x00, 0x10); /* GPIO4 bit 4 -> output */
136 wbsio_mask(index, 0xF6, 0x00, 0x10); /* Clear GPIO4 bit 4 inversion */
137 wbsio_mask(index, 0xF5, 0x10, 0x10); /* Raise GPIO4 bit 4 */
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000138
139 w836xx_ext_leave(index);
140
141 return 0;
142}
143
Peter Stugecce26822008-07-21 17:48:40 +0000144static int w83627thf_gpio4_4_raise_2e(const char *name)
145{
146 return w83627thf_gpio4_4_raise(0x2e, name);
147}
148
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000149static int w83627thf_gpio4_4_raise_4e(const char *name)
150{
Uwe Hermann372eeb52007-12-04 21:49:06 +0000151 return w83627thf_gpio4_4_raise(0x4e, name);
Ronald G. Minnichfa496922007-10-12 21:22:40 +0000152}
Uwe Hermann372eeb52007-12-04 21:49:06 +0000153
Uwe Hermannffec5f32007-08-23 16:08:21 +0000154/**
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000155 * w83627: Enable MEMW# and set ROM size to max.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000156 */
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000157static void w836xx_memw_enable(uint16_t index)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000158{
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000159 w836xx_ext_enter(index);
160 if (!(wbsio_read(index, 0x24) & 0x02)) { /* Flash ROM enabled? */
161 /* Enable MEMW# and set ROM size select to max. (4M). */
162 wbsio_mask(index, 0x24, 0x28, 0x28);
163 }
164 w836xx_ext_leave(index);
165}
166
167/**
168 * Common routine for several VT823x based boards.
169 */
170static void vt823x_set_all_writes_to_lpc(struct pci_dev *dev)
171{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000172 uint8_t val;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000173
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000174 /* All memory cycles, not just ROM ones, go to LPC. */
175 val = pci_read_byte(dev, 0x59);
176 val &= ~0x80;
177 pci_write_byte(dev, 0x59, val);
178}
179
180/**
181 * VT823x: Set one of the GPIO pins.
182 */
183static void vt823x_gpio_set(struct pci_dev *dev, uint8_t gpio, int raise)
184{
185 uint16_t base;
186 uint8_t val, bit;
187
188 if ((gpio < 12) || (gpio > 15)) {
189 fprintf(stderr, "\nERROR: "
190 "VT823x GPIO%02d is not implemented.\n", gpio);
191 return;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000192 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000193
Uwe Hermanna7e05482007-05-09 10:17:44 +0000194 /* GPIO12-15 -> output */
195 val = pci_read_byte(dev, 0xE4);
196 val |= 0x10;
197 pci_write_byte(dev, 0xE4, val);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000198
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000199 /* Now raise/drop the GPIO line itself. */
200 bit = 0x01 << (gpio - 8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000201
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000202 /* We need the I/O Base Address for this board's flash enable. */
203 base = pci_read_word(dev, 0x88) & 0xff80;
204
Andriy Gapon65c1b862008-05-22 13:22:45 +0000205 val = INB(base + 0x4D);
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000206 if (raise)
207 val |= bit;
208 else
209 val &= ~bit;
Andriy Gapon65c1b862008-05-22 13:22:45 +0000210 OUTB(val, base + 0x4D);
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000211}
212
213/**
214 * Suited for VIAs EPIA M and MII, and maybe other CLE266 based EPIAs.
215 *
216 * We don't need to do this when using coreboot, GPIO15 is never lowered there.
217 */
218static int board_via_epia_m(const char *name)
219{
220 struct pci_dev *dev;
221
222 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
223 if (!dev) {
224 fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n");
225 return -1;
226 }
227
228 /* GPIO15 is connected to write protect. */
229 vt823x_gpio_set(dev, 15, 1);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000230
Uwe Hermanna7e05482007-05-09 10:17:44 +0000231 return 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000232}
233
Uwe Hermannffec5f32007-08-23 16:08:21 +0000234/**
Luc Verhaegen32707542007-07-04 17:51:49 +0000235 * Suited for:
Uwe Hermannffec5f32007-08-23 16:08:21 +0000236 * - ASUS A7V8X-MX SE and A7V400-MX: AMD K7 + VIA KM400A + VT8235
237 * - Tyan Tomcat K7M: AMD Geode NX + VIA KM400 + VT8237.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000238 */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +0000239static int board_asus_a7v8x_mx(const char *name)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000240{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000241 struct pci_dev *dev;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000242
Uwe Hermanna7e05482007-05-09 10:17:44 +0000243 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
Luc Verhaegen32707542007-07-04 17:51:49 +0000244 if (!dev)
245 dev = pci_dev_find(0x1106, 0x3227); /* VT8237 ISA bridge */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000246 if (!dev) {
Luc Verhaegen32707542007-07-04 17:51:49 +0000247 fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000248 return -1;
249 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000250
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000251 vt823x_set_all_writes_to_lpc(dev);
252 w836xx_memw_enable(0x2E);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000253
Uwe Hermanna7e05482007-05-09 10:17:44 +0000254 return 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000255}
256
Uwe Hermannffec5f32007-08-23 16:08:21 +0000257/**
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000258 * Suited for VIAs EPIA SP and EPIA CN.
Luc Verhaegen97866082008-02-09 02:03:06 +0000259 */
260static int board_via_epia_sp(const char *name)
261{
262 struct pci_dev *dev;
Luc Verhaegen97866082008-02-09 02:03:06 +0000263
264 dev = pci_dev_find(0x1106, 0x3227); /* VT8237R ISA bridge */
265 if (!dev) {
266 fprintf(stderr, "\nERROR: VT8237R ISA bridge not found.\n");
267 return -1;
268 }
269
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000270 vt823x_set_all_writes_to_lpc(dev);
271
272 return 0;
273}
274
275/**
276 * Suited for EPoX EP-8K5A2.
277 */
278static int board_epox_ep_8k5a2(const char *name)
279{
280 struct pci_dev *dev;
281
282 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
283 if (!dev) {
284 fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n");
285 return -1;
286 }
287
288 w836xx_memw_enable(0x2E);
Luc Verhaegen97866082008-02-09 02:03:06 +0000289
290 return 0;
291}
292
293/**
Luc Verhaegen6b141752007-05-20 16:16:13 +0000294 * Suited for ASUS P5A.
295 *
296 * This is rather nasty code, but there's no way to do this cleanly.
297 * We're basically talking to some unknown device on SMBus, my guess
298 * is that it is the Winbond W83781D that lives near the DIP BIOS.
299 */
Luc Verhaegen6b141752007-05-20 16:16:13 +0000300static int board_asus_p5a(const char *name)
301{
302 uint8_t tmp;
303 int i;
304
305#define ASUSP5A_LOOP 5000
306
Andriy Gapon65c1b862008-05-22 13:22:45 +0000307 OUTB(0x00, 0xE807);
308 OUTB(0xEF, 0xE803);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000309
Andriy Gapon65c1b862008-05-22 13:22:45 +0000310 OUTB(0xFF, 0xE800);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000311
312 for (i = 0; i < ASUSP5A_LOOP; i++) {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000313 OUTB(0xE1, 0xFF);
314 if (INB(0xE800) & 0x04)
Luc Verhaegen6b141752007-05-20 16:16:13 +0000315 break;
316 }
317
318 if (i == ASUSP5A_LOOP) {
319 printf("%s: Unable to contact device.\n", name);
320 return -1;
321 }
322
Andriy Gapon65c1b862008-05-22 13:22:45 +0000323 OUTB(0x20, 0xE801);
324 OUTB(0x20, 0xE1);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000325
Andriy Gapon65c1b862008-05-22 13:22:45 +0000326 OUTB(0xFF, 0xE802);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000327
328 for (i = 0; i < ASUSP5A_LOOP; i++) {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000329 tmp = INB(0xE800);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000330 if (tmp & 0x70)
331 break;
332 }
333
334 if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) {
335 printf("%s: failed to read device.\n", name);
336 return -1;
337 }
338
Andriy Gapon65c1b862008-05-22 13:22:45 +0000339 tmp = INB(0xE804);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000340 tmp &= ~0x02;
341
Andriy Gapon65c1b862008-05-22 13:22:45 +0000342 OUTB(0x00, 0xE807);
343 OUTB(0xEE, 0xE803);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000344
Andriy Gapon65c1b862008-05-22 13:22:45 +0000345 OUTB(tmp, 0xE804);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000346
Andriy Gapon65c1b862008-05-22 13:22:45 +0000347 OUTB(0xFF, 0xE800);
348 OUTB(0xE1, 0xFF);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000349
Andriy Gapon65c1b862008-05-22 13:22:45 +0000350 OUTB(0x20, 0xE801);
351 OUTB(0x20, 0xE1);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000352
Andriy Gapon65c1b862008-05-22 13:22:45 +0000353 OUTB(0xFF, 0xE802);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000354
355 for (i = 0; i < ASUSP5A_LOOP; i++) {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000356 tmp = INB(0xE800);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000357 if (tmp & 0x70)
358 break;
359 }
360
361 if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) {
362 printf("%s: failed to write to device.\n", name);
363 return -1;
364 }
365
366 return 0;
367}
368
Stefan Reinauer1c283f42007-06-05 12:51:52 +0000369static int board_ibm_x3455(const char *name)
370{
371 uint8_t byte;
372
Uwe Hermanne823ee02007-06-05 15:02:18 +0000373 /* Set GPIO lines in the Broadcom HT-1000 southbridge. */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000374 OUTB(0x45, 0xcd6);
375 byte = INB(0xcd7);
376 OUTB(byte | 0x20, 0xcd7);
Stefan Reinauer1c283f42007-06-05 12:51:52 +0000377
378 return 0;
379}
380
Mondrian Nuessled5df3302009-03-30 13:20:01 +0000381static int board_hp_dl145_g3_enable(const char *name)
382{
383 uint8_t byte;
384
385 /* Set GPIO lines in the Broadcom HT-1000 southbridge. */
386 OUTB(0x44, 0xcd6); /* GPIO 0 reg from PM regs */
387 byte = INB(0xcd7);
388 /* Set GPIO 2 and 5 high, connected to flash WP# and TBL# pins. */
389 OUTB(byte | 0x24, 0xcd7);
390
391 return 0;
392}
393
Luc Verhaegenfdd0c582007-08-11 16:59:11 +0000394/**
395 * Suited for EPoX EP-BX3, and maybe some other Intel 440BX based boards.
396 */
397static int board_epox_ep_bx3(const char *name)
398{
399 uint8_t tmp;
400
401 /* Raise GPIO22. */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000402 tmp = INB(0x4036);
403 OUTB(tmp, 0xEB);
Luc Verhaegenfdd0c582007-08-11 16:59:11 +0000404
405 tmp |= 0x40;
406
Andriy Gapon65c1b862008-05-22 13:22:45 +0000407 OUTB(tmp, 0x4036);
408 OUTB(tmp, 0xEB);
Luc Verhaegenfdd0c582007-08-11 16:59:11 +0000409
410 return 0;
411}
412
Uwe Hermannffec5f32007-08-23 16:08:21 +0000413/**
Uwe Hermann372eeb52007-12-04 21:49:06 +0000414 * Suited for Acorp 6A815EPD.
Jonathan A. Kollaschc7785562007-12-02 19:03:23 +0000415 */
416static int board_acorp_6a815epd(const char *name)
417{
418 struct pci_dev *dev;
419 uint16_t port;
420 uint8_t val;
421
Uwe Hermann394131e2008-10-18 21:14:13 +0000422 dev = pci_dev_find(0x8086, 0x2440); /* Intel ICH2 LPC */
Jonathan A. Kollaschc7785562007-12-02 19:03:23 +0000423 if (!dev) {
424 fprintf(stderr, "\nERROR: ICH2 LPC bridge not found.\n");
425 return -1;
426 }
427
428 /* Use GPIOBASE register to find where the GPIO is mapped. */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000429 port = (pci_read_word(dev, 0x58) & 0xFFC0) + 0xE;
Jonathan A. Kollaschc7785562007-12-02 19:03:23 +0000430
Andriy Gapon65c1b862008-05-22 13:22:45 +0000431 val = INB(port);
Uwe Hermann394131e2008-10-18 21:14:13 +0000432 val |= 0x80; /* Top Block Lock -- pin 8 of PLCC32 */
433 val |= 0x40; /* Lower Blocks Lock -- pin 7 of PLCC32 */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000434 OUTB(val, port);
Jonathan A. Kollaschc7785562007-12-02 19:03:23 +0000435
436 return 0;
437}
438
439/**
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000440 * Suited for Artec Group DBE61 and DBE62.
441 */
442static int board_artecgroup_dbe6x(const char *name)
443{
444#define DBE6x_MSR_DIVIL_BALL_OPTS 0x51400015
445#define DBE6x_PRI_BOOT_LOC_SHIFT (2)
446#define DBE6x_BOOT_OP_LATCHED_SHIFT (8)
447#define DBE6x_SEC_BOOT_LOC_SHIFT (10)
448#define DBE6x_PRI_BOOT_LOC (3 << DBE6x_PRI_BOOT_LOC_SHIFT)
449#define DBE6x_BOOT_OP_LATCHED (3 << DBE6x_BOOT_OP_LATCHED_SHIFT)
450#define DBE6x_SEC_BOOT_LOC (3 << DBE6x_SEC_BOOT_LOC_SHIFT)
451#define DBE6x_BOOT_LOC_FLASH (2)
452#define DBE6x_BOOT_LOC_FWHUB (3)
453
454 unsigned long msr[2];
455 int msr_fd;
456 unsigned long boot_loc;
457
458 msr_fd = open("/dev/cpu/0/msr", O_RDWR);
459 if (msr_fd == -1) {
460 perror("open /dev/cpu/0/msr");
461 return -1;
462 }
463
464 if (lseek(msr_fd, DBE6x_MSR_DIVIL_BALL_OPTS, SEEK_SET) == -1) {
465 perror("lseek");
466 close(msr_fd);
467 return -1;
468 }
469
Uwe Hermann394131e2008-10-18 21:14:13 +0000470 if (read(msr_fd, (void *)msr, 8) != 8) {
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000471 perror("read");
472 close(msr_fd);
473 return -1;
474 }
475
476 if ((msr[0] & (DBE6x_BOOT_OP_LATCHED)) ==
477 (DBE6x_BOOT_LOC_FWHUB << DBE6x_BOOT_OP_LATCHED_SHIFT))
478 boot_loc = DBE6x_BOOT_LOC_FWHUB;
479 else
480 boot_loc = DBE6x_BOOT_LOC_FLASH;
481
482 msr[0] &= ~(DBE6x_PRI_BOOT_LOC | DBE6x_SEC_BOOT_LOC);
483 msr[0] |= ((boot_loc << DBE6x_PRI_BOOT_LOC_SHIFT) |
Uwe Hermann394131e2008-10-18 21:14:13 +0000484 (boot_loc << DBE6x_SEC_BOOT_LOC_SHIFT));
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000485
486 if (lseek(msr_fd, DBE6x_MSR_DIVIL_BALL_OPTS, SEEK_SET) == -1) {
487 perror("lseek");
488 close(msr_fd);
489 return -1;
490 }
491
Uwe Hermann394131e2008-10-18 21:14:13 +0000492 if (write(msr_fd, (void *)msr, 8) != 8) {
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000493 perror("write");
494 close(msr_fd);
495 return -1;
496 }
497
498 close(msr_fd);
499 return 0;
500}
501
Uwe Hermann93f66db2008-05-22 21:19:38 +0000502/**
503 * Set the specified GPIO on the specified ICHx southbridge to high.
504 *
505 * @param name The name of this board.
506 * @param ich_vendor PCI vendor ID of the specified ICHx southbridge.
507 * @param ich_device PCI device ID of the specified ICHx southbridge.
508 * @param gpiobase_reg GPIOBASE register offset in the LPC bridge.
509 * @param gp_lvl Offset of GP_LVL register in I/O space, relative to GPIOBASE.
510 * @param gp_lvl_bitmask GP_LVL bitmask (set GPIO bits to 1, all others to 0).
511 * @param gpio_bit The bit (GPIO) which shall be set to high.
512 * @return If the write-enable was successful return 0, otherwise return -1.
513 */
514static int ich_gpio_raise(const char *name, uint16_t ich_vendor,
515 uint16_t ich_device, uint8_t gpiobase_reg,
516 uint8_t gp_lvl, uint32_t gp_lvl_bitmask,
517 unsigned int gpio_bit)
518{
519 struct pci_dev *dev;
520 uint16_t gpiobar;
521 uint32_t reg32;
522
Uwe Hermann394131e2008-10-18 21:14:13 +0000523 dev = pci_dev_find(ich_vendor, ich_device); /* Intel ICHx LPC */
Uwe Hermann93f66db2008-05-22 21:19:38 +0000524 if (!dev) {
525 fprintf(stderr, "\nERROR: ICHx LPC dev %4x:%4x not found.\n",
526 ich_vendor, ich_device);
527 return -1;
528 }
529
530 /* Use GPIOBASE register to find the I/O space for GPIO. */
531 gpiobar = pci_read_word(dev, gpiobase_reg) & gp_lvl_bitmask;
532
533 /* Set specified GPIO to high. */
534 reg32 = INL(gpiobar + gp_lvl);
535 reg32 |= (1 << gpio_bit);
536 OUTL(reg32, gpiobar + gp_lvl);
537
538 return 0;
539}
540
541/**
542 * Suited for ASUS P4B266.
543 */
544static int ich2_gpio22_raise(const char *name)
545{
546 return ich_gpio_raise(name, 0x8086, 0x2440, 0x58, 0x0c, 0xffc0, 22);
547}
548
Peter Stuge09c13332009-02-02 22:55:26 +0000549/**
550 * Suited for MSI MS-7046.
551 */
552static int ich6_gpio19_raise(const char *name)
553{
554 return ich_gpio_raise(name, 0x8086, 0x2640, 0x48, 0x0c, 0xffc0, 19);
555}
556
Stefan Reinauerac378972008-03-17 22:59:40 +0000557static int board_kontron_986lcd_m(const char *name)
558{
559 struct pci_dev *dev;
560 uint16_t gpiobar;
561 uint32_t val;
562
563#define ICH7_GPIO_LVL2 0x38
564
Uwe Hermann394131e2008-10-18 21:14:13 +0000565 dev = pci_dev_find(0x8086, 0x27b8); /* Intel ICH7 LPC */
Stefan Reinauerac378972008-03-17 22:59:40 +0000566 if (!dev) {
567 // This will never happen on this board
568 fprintf(stderr, "\nERROR: ICH7 LPC bridge not found.\n");
569 return -1;
570 }
571
572 /* Use GPIOBASE register to find where the GPIO is mapped. */
573 gpiobar = pci_read_word(dev, 0x48) & 0xfffc;
574
Andriy Gapon65c1b862008-05-22 13:22:45 +0000575 val = INL(gpiobar + ICH7_GPIO_LVL2); /* GP_LVL2 */
Stefan Reinauerac378972008-03-17 22:59:40 +0000576 printf_debug("\nGPIOBAR=0x%04x GP_LVL: 0x%08x\n", gpiobar, val);
577
578 /* bit 2 (0x04) = 0 #TBL --> bootblock locking = 1
579 * bit 2 (0x04) = 1 #TBL --> bootblock locking = 0
580 * bit 3 (0x08) = 0 #WP --> block locking = 1
581 * bit 3 (0x08) = 1 #WP --> block locking = 0
582 *
583 * To enable full block locking, you would do:
584 * val &= ~ ((1 << 2) | (1 << 3));
585 */
586 val |= (1 << 2) | (1 << 3);
587
Andriy Gapon65c1b862008-05-22 13:22:45 +0000588 OUTL(val, gpiobar + ICH7_GPIO_LVL2);
Stefan Reinauerac378972008-03-17 22:59:40 +0000589
590 return 0;
591}
592
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000593/**
Peter Stuge4aa71562008-06-11 02:22:42 +0000594 * Suited for:
595 * - BioStar P4M80-M4: Intel P4 + VIA P4M800 + VT8237
Peter Stuge663f1712008-06-13 01:39:45 +0000596 * - GIGABYTE GA-7VT600: AMD K7 + VIA KT600 + VT8237
Peter Stuge4aa71562008-06-11 02:22:42 +0000597 */
598static int board_biostar_p4m80_m4(const char *name)
599{
600 /* enter IT87xx conf mode */
601 OUTB(0x87, 0x2e);
602 OUTB(0x01, 0x2e);
603 OUTB(0x55, 0x2e);
604 OUTB(0x55, 0x2e);
605
606 /* select right flash chip */
607 wbsio_mask(0x2e, 0x22, 0x80, 0x80);
608
609 /* bit 3: flash chip write enable
610 * bit 7: map flash chip at 1MB-128K (why though? ignoring this.)
611 */
612 wbsio_mask(0x2e, 0x24, 0x04, 0x04);
613
614 /* exit IT87xx conf mode */
615 wbsio_write(0x2, 0x2e, 0x2);
616
617 return 0;
618}
619
620/**
Sean Nelsonb20953c2008-08-19 21:51:39 +0000621 * Winbond W83697HF Super I/O + VIA VT8235 southbridge
622 *
623 * Suited for:
624 * - MSI KT4V and KT4V-L: AMD K7 + VIA KT400 + VT8235
625 * - MSI KT3 Ultra2: AMD K7 + VIA KT333 + VT8235
626 */
627static int board_msi_kt4v(const char *name)
628{
629 struct pci_dev *dev;
630 uint8_t val;
Sean Nelsonb20953c2008-08-19 21:51:39 +0000631
632 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
633 if (!dev) {
634 fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n");
635 return -1;
636 }
637
638 val = pci_read_byte(dev, 0x59);
639 val &= 0x0c;
640 pci_write_byte(dev, 0x59, val);
641
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000642 vt823x_gpio_set(dev, 12, 1);
643 w836xx_memw_enable(0x2E);
Sean Nelsonb20953c2008-08-19 21:51:39 +0000644
645 return 0;
646}
647
648/**
Uwe Hermannffec5f32007-08-23 16:08:21 +0000649 * We use 2 sets of IDs here, you're free to choose which is which. This
650 * is to provide a very high degree of certainty when matching a board on
651 * the basis of subsystem/card IDs. As not every vendor handles
652 * subsystem/card IDs in a sane manner.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000653 *
Luc Verhaegenc5210162009-04-20 12:38:17 +0000654 * Keep the second set NULLed if it should be ignored. Keep the subsystem IDs
655 * NULLed if they don't identify the board fully. But please take care to
656 * provide an as complete set of pci ids as possible; autodetection is the
657 * preferred behaviour and we would like to make sure that matches are unique.
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000658 *
Luc Verhaegenc5210162009-04-20 12:38:17 +0000659 * The coreboot ids are used two fold. When running with a coreboot firmware,
660 * the ids uniquely matches the coreboot board identification string. When a
661 * legacy bios is installed and when autodetection is not possible, these ids
662 * can be used to identify the board through the -m command line argument.
663 *
664 * When a board is identified through its coreboot ids (in both cases), the
665 * main pci ids are still required to match, as a safeguard.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000666 */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000667struct board_pciid_enable {
Uwe Hermann372eeb52007-12-04 21:49:06 +0000668 /* Any device, but make it sensible, like the ISA bridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000669 uint16_t first_vendor;
670 uint16_t first_device;
671 uint16_t first_card_vendor;
672 uint16_t first_card_device;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000673
Luc Verhaegenc5210162009-04-20 12:38:17 +0000674 /* Any device, but make it sensible, like
Uwe Hermann372eeb52007-12-04 21:49:06 +0000675 * the host bridge. May be NULL.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000676 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000677 uint16_t second_vendor;
678 uint16_t second_device;
679 uint16_t second_card_vendor;
680 uint16_t second_card_device;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000681
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +0000682 /* The vendor / part name from the coreboot table. */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000683 const char *lb_vendor;
684 const char *lb_part;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000685
Uwe Hermanna93045c2009-05-09 00:47:04 +0000686 const char *vendor_name;
687 const char *board_name;
688
Uwe Hermanna7e05482007-05-09 10:17:44 +0000689 int (*enable) (const char *name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000690};
691
Uwe Hermanndeeebe22009-05-08 16:23:34 +0000692/* Please keep this list alphabetically ordered by vendor/board name. */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000693struct board_pciid_enable board_pciid_enables[] = {
Uwe Hermanna93045c2009-05-09 00:47:04 +0000694 /* first pci-id set [4], second pci-id set [4], coreboot id [2], vendor name board name flash enable */
695 {0x8086, 0x1130, 0, 0, 0x105a, 0x0d30, 0x105a, 0x4d33, "acorp", "6a815epd", "Acorp", "6A815EPD", board_acorp_6a815epd},
696 {0x1022, 0x746B, 0x1022, 0x36C0, 0, 0, 0, 0, "AGAMI", "ARUMA", "agami", "Aruma", w83627hf_gpio24_raise_2e},
697 {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe61", "Artec Group", "DBE61", board_artecgroup_dbe6x},
698 {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe62", "Artec Group", "DBE62", board_artecgroup_dbe6x},
699 {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118, NULL, NULL, "ASUS", "A7V8-MX SE", board_asus_a7v8x_mx},
700 {0x8086, 0x1a30, 0x1043, 0x8070, 0x8086, 0x244b, 0x1043, 0x8028, NULL, NULL, "ASUS", "P4B266", ich2_gpio22_raise},
701 {0x10B9, 0x1541, 0, 0, 0x10B9, 0x1533, 0, 0, "asus", "p5a", "ASUS", "P5A", board_asus_p5a},
702 {0x1106, 0x3149, 0x1565, 0x3206, 0x1106, 0x3344, 0x1565, 0x1202, NULL, NULL, "BioStar", "P4M80-M4", board_biostar_p4m80_m4},
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000703 {0x1106, 0x3177, 0x1106, 0x3177, 0x1106, 0x3059, 0x1695, 0x3005, NULL, NULL, "EPoX", "EP-8K5A2", board_epox_ep_8k5a2},
Uwe Hermanna93045c2009-05-09 00:47:04 +0000704 {0x8086, 0x7110, 0, 0, 0x8086, 0x7190, 0, 0, "epox", "ep-bx3", "EPoX", "EP-BX3", board_epox_ep_bx3},
705 {0x1039, 0x0761, 0, 0, 0, 0, 0, 0, "gigabyte", "2761gxdk", "GIGABYTE", "GA-2761GXDK", it87xx_probe_spi_flash},
706 {0x1106, 0x3227, 0x1458, 0x5001, 0x10ec, 0x8139, 0x1458, 0xe000, NULL, NULL, "GIGABYTE", "GA-7VT600", board_biostar_p4m80_m4},
707 {0x10de, 0x0360, 0, 0, 0, 0, 0, 0, "gigabyte", "m57sli", "GIGABYTE", "GA-M57SLI-S4", it87xx_probe_spi_flash},
708 {0x10de, 0x03e0, 0, 0, 0, 0, 0, 0, "gigabyte", "m61p", "GIGABYTE", "GA-M61P-S3", it87xx_probe_spi_flash},
709 {0x1002, 0x4398, 0x1458, 0x5004, 0x1002, 0x4385, 0x1458, 0x4385, NULL, NULL, "GIGABYTE", "GA-MA78G-DS3H", it87xx_probe_spi_flash},
710 {0x1002, 0x438d, 0x1458, 0x5001, 0x1002, 0x5956, 0x1002, 0x5956, "gigabyte", "ma790fx-dq6", "GIGABYTE", "GA-MA790FX-DQ6", it87xx_probe_spi_flash},
711 {0x1166, 0x0223, 0x103c, 0x320d, 0x102b, 0x0522, 0x103c, 0x31fa, "hp", "dl145_g3", "HP", "DL145 G3", board_hp_dl145_g3_enable},
712 {0x1166, 0x0205, 0x1014, 0x0347, 0, 0, 0, 0, "ibm", "x3455", "IBM", "x3455", board_ibm_x3455},
713 {0x1039, 0x5513, 0x8086, 0xd61f, 0x1039, 0x6330, 0x8086, 0xd61f, NULL, NULL, "Intel", "D201GLY", wbsio_check_for_spi},
714 {0x1022, 0x7468, 0, 0, 0, 0, 0, 0, "iwill", "dk8_htx", "IWILL", "DK8-HTX", w83627hf_gpio24_raise_2e},
Uwe Hermann0ab42982008-12-22 16:40:45 +0000715 /* Note: There are >= 2 version of the Kontron 986LCD-M/mITX! */
Uwe Hermanna93045c2009-05-09 00:47:04 +0000716 {0x8086, 0x27b8, 0, 0, 0, 0, 0, 0, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m},
717 {0x10ec, 0x8168, 0x10ec, 0x8168, 0x104c, 0x8023, 0x104c, 0x8019, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m},
718 {0x10de, 0x005e, 0, 0, 0, 0, 0, 0, "msi", "k8n-neo3", "MSI", "K8N Neo3", w83627thf_gpio4_4_raise_4e},
719 {0x1106, 0x3149, 0x1462, 0x7094, 0x10ec, 0x8167, 0x1462, 0x094c, NULL, NULL, "MSI", "K8T Neo2", w83627thf_gpio4_4_raise_2e},
720 {0x1106, 0x0571, 0x1462, 0x7120, 0, 0, 0, 0, "msi", "kt4v", "MSI", "KT4V", board_msi_kt4v},
721 {0x8086, 0x2658, 0x1462, 0x7046, 0x1106, 0x3044, 0x1462, 0x046d, NULL, NULL, "MSI", "MS-7046", ich6_gpio19_raise},
Uwe Hermanndeeebe22009-05-08 16:23:34 +0000722 /* 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 Hermanna93045c2009-05-09 00:47:04 +0000723 {0x8086, 0x1076, 0x8086, 0x1176, 0x1106, 0x3059, 0x10f1, 0x2498, NULL, NULL, "Tyan", "Tomcat K7M", board_asus_a7v8x_mx},
724 {0x1106, 0x0314, 0x1106, 0xaa08, 0x1106, 0x3227, 0x1106, 0xAA08, NULL, NULL, "VIA", "EPIA-CN", board_via_epia_sp},
725 {0x1106, 0x3177, 0x1106, 0xAA01, 0x1106, 0x3123, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA M/MII/...", board_via_epia_m},
726 {0x1106, 0x3227, 0x1106, 0xAA01, 0x1106, 0x0259, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA SP", board_via_epia_sp},
727 {0x1106, 0x5337, 0x1458, 0xb003, 0x1106, 0x287e, 0x1106, 0x337e, "via", "pc3500g", "VIA", "PC3500G", it87xx_probe_spi_flash},
728 { 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL}, /* end marker */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000729};
730
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000731void print_supported_boards(void)
732{
733 int i;
734
735 printf("\nSupported mainboards (this list is not exhaustive!):\n\n");
736
Uwe Hermanna93045c2009-05-09 00:47:04 +0000737 for (i = 0; board_pciid_enables[i].vendor_name != NULL; i++) {
Uwe Hermann23c3d952008-03-13 18:41:07 +0000738 if (board_pciid_enables[i].lb_vendor != NULL) {
Uwe Hermanna93045c2009-05-09 00:47:04 +0000739 printf("%s %s (-m %s:%s)\n",
740 board_pciid_enables[i].vendor_name,
741 board_pciid_enables[i].board_name,
Uwe Hermann23c3d952008-03-13 18:41:07 +0000742 board_pciid_enables[i].lb_vendor,
743 board_pciid_enables[i].lb_part);
744 } else {
Uwe Hermanna93045c2009-05-09 00:47:04 +0000745 printf("%s %s (autodetected)\n",
746 board_pciid_enables[i].vendor_name,
747 board_pciid_enables[i].board_name);
Uwe Hermann23c3d952008-03-13 18:41:07 +0000748 }
749 }
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000750
751 printf("\nSee also: http://coreboot.org/Flashrom\n");
752}
753
Uwe Hermannffec5f32007-08-23 16:08:21 +0000754/**
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +0000755 * Match boards on coreboot table gathered vendor and part name.
Uwe Hermannffec5f32007-08-23 16:08:21 +0000756 * Require main PCI IDs to match too as extra safety.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000757 */
Uwe Hermann394131e2008-10-18 21:14:13 +0000758static struct board_pciid_enable *board_match_coreboot_name(const char *vendor,
759 const char *part)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000760{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000761 struct board_pciid_enable *board = board_pciid_enables;
Peter Stuge6b53fed2008-01-27 16:21:21 +0000762 struct board_pciid_enable *partmatch = NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000763
Uwe Hermanna93045c2009-05-09 00:47:04 +0000764 for (; board->vendor_name; board++) {
Uwe Hermann394131e2008-10-18 21:14:13 +0000765 if (vendor && (!board->lb_vendor
766 || strcasecmp(board->lb_vendor, vendor)))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000767 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000768
Peter Stuge0b9c5f32008-07-02 00:47:30 +0000769 if (!board->lb_part || strcasecmp(board->lb_part, part))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000770 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000771
Uwe Hermanna7e05482007-05-09 10:17:44 +0000772 if (!pci_dev_find(board->first_vendor, board->first_device))
773 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000774
Uwe Hermanna7e05482007-05-09 10:17:44 +0000775 if (board->second_vendor &&
Uwe Hermann394131e2008-10-18 21:14:13 +0000776 !pci_dev_find(board->second_vendor, board->second_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000777 continue;
Peter Stuge6b53fed2008-01-27 16:21:21 +0000778
779 if (vendor)
780 return board;
781
782 if (partmatch) {
783 /* a second entry has a matching part name */
784 printf("AMBIGUOUS BOARD NAME: %s\n", part);
785 printf("At least vendors '%s' and '%s' match.\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000786 partmatch->lb_vendor, board->lb_vendor);
Peter Stuge6b53fed2008-01-27 16:21:21 +0000787 printf("Please use the full -m vendor:part syntax.\n");
788 return NULL;
789 }
790 partmatch = board;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000791 }
Uwe Hermann372eeb52007-12-04 21:49:06 +0000792
Peter Stuge6b53fed2008-01-27 16:21:21 +0000793 if (partmatch)
794 return partmatch;
795
Peter Stuge00019d92008-07-02 00:59:29 +0000796 printf("\nUnknown vendor:board from coreboot table or -m option: %s:%s\n\n", vendor, part);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000797 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000798}
799
Uwe Hermannffec5f32007-08-23 16:08:21 +0000800/**
801 * Match boards on PCI IDs and subsystem IDs.
802 * Second set of IDs can be main only or missing completely.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000803 */
804static struct board_pciid_enable *board_match_pci_card_ids(void)
805{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000806 struct board_pciid_enable *board = board_pciid_enables;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000807
Uwe Hermanna93045c2009-05-09 00:47:04 +0000808 for (; board->vendor_name; board++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000809 if (!board->first_card_vendor || !board->first_card_device)
810 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000811
Uwe Hermanna7e05482007-05-09 10:17:44 +0000812 if (!pci_card_find(board->first_vendor, board->first_device,
Uwe Hermann394131e2008-10-18 21:14:13 +0000813 board->first_card_vendor,
814 board->first_card_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000815 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000816
Uwe Hermanna7e05482007-05-09 10:17:44 +0000817 if (board->second_vendor) {
818 if (board->second_card_vendor) {
819 if (!pci_card_find(board->second_vendor,
Uwe Hermann394131e2008-10-18 21:14:13 +0000820 board->second_device,
821 board->second_card_vendor,
822 board->second_card_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000823 continue;
824 } else {
825 if (!pci_dev_find(board->second_vendor,
Uwe Hermann394131e2008-10-18 21:14:13 +0000826 board->second_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000827 continue;
828 }
829 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000830
Uwe Hermanna7e05482007-05-09 10:17:44 +0000831 return board;
832 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000833
Uwe Hermanna7e05482007-05-09 10:17:44 +0000834 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000835}
836
Uwe Hermann372eeb52007-12-04 21:49:06 +0000837int board_flash_enable(const char *vendor, const char *part)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000838{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000839 struct board_pciid_enable *board = NULL;
840 int ret = 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000841
Peter Stuge6b53fed2008-01-27 16:21:21 +0000842 if (part)
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +0000843 board = board_match_coreboot_name(vendor, part);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000844
Uwe Hermanna7e05482007-05-09 10:17:44 +0000845 if (!board)
846 board = board_match_pci_card_ids();
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000847
Uwe Hermanna7e05482007-05-09 10:17:44 +0000848 if (board) {
Uwe Hermanna93045c2009-05-09 00:47:04 +0000849 printf("Found board \"%s %s\", enabling flash write... ",
850 board->vendor_name, board->board_name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000851
Uwe Hermanna93045c2009-05-09 00:47:04 +0000852 ret = board->enable(board->vendor_name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000853 if (ret)
Uwe Hermanna502dce2007-10-17 23:55:15 +0000854 printf("FAILED!\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000855 else
856 printf("OK.\n");
857 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000858
Uwe Hermanna7e05482007-05-09 10:17:44 +0000859 return ret;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000860}