blob: 44b1a67472a9dff9b4a3cf1da2dfbf61797e4a7d [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
Jon Harrison2eeff4e2009-06-19 13:53:59 +0000185 if ((gpio >= 12) && (gpio <= 15)) {
186 /* GPIO12-15 -> output */
187 val = pci_read_byte(dev, 0xE4);
188 val |= 0x10;
189 pci_write_byte(dev, 0xE4, val);
190 } else if (gpio == 9) {
191 /* GPIO9 -> Output */
192 val = pci_read_byte(dev, 0xE4);
193 val |= 0x20;
194 pci_write_byte(dev, 0xE4, val);
195 } else {
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000196 fprintf(stderr, "\nERROR: "
197 "VT823x GPIO%02d is not implemented.\n", gpio);
198 return;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000199 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000200
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000201 /* Now raise/drop the GPIO line itself. */
202 bit = 0x01 << (gpio - 8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000203
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000204 /* We need the I/O Base Address for this board's flash enable. */
205 base = pci_read_word(dev, 0x88) & 0xff80;
206
Andriy Gapon65c1b862008-05-22 13:22:45 +0000207 val = INB(base + 0x4D);
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000208 if (raise)
209 val |= bit;
210 else
211 val &= ~bit;
Andriy Gapon65c1b862008-05-22 13:22:45 +0000212 OUTB(val, base + 0x4D);
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000213}
214
215/**
216 * Suited for VIAs EPIA M and MII, and maybe other CLE266 based EPIAs.
217 *
218 * We don't need to do this when using coreboot, GPIO15 is never lowered there.
219 */
220static int board_via_epia_m(const char *name)
221{
222 struct pci_dev *dev;
223
224 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
225 if (!dev) {
226 fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n");
227 return -1;
228 }
229
230 /* GPIO15 is connected to write protect. */
231 vt823x_gpio_set(dev, 15, 1);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000232
Uwe Hermanna7e05482007-05-09 10:17:44 +0000233 return 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000234}
235
Uwe Hermannffec5f32007-08-23 16:08:21 +0000236/**
Luc Verhaegen32707542007-07-04 17:51:49 +0000237 * Suited for:
Uwe Hermannffec5f32007-08-23 16:08:21 +0000238 * - ASUS A7V8X-MX SE and A7V400-MX: AMD K7 + VIA KM400A + VT8235
Uwe Hermann5e1aecd2009-05-18 21:56:16 +0000239 * - Tyan S2498 (Tomcat K7M): AMD Geode NX + VIA KM400 + VT8237.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000240 */
Luc Verhaegen7977f4e2007-05-04 04:47:04 +0000241static int board_asus_a7v8x_mx(const char *name)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000242{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000243 struct pci_dev *dev;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000244
Uwe Hermanna7e05482007-05-09 10:17:44 +0000245 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
Luc Verhaegen32707542007-07-04 17:51:49 +0000246 if (!dev)
247 dev = pci_dev_find(0x1106, 0x3227); /* VT8237 ISA bridge */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000248 if (!dev) {
Luc Verhaegen32707542007-07-04 17:51:49 +0000249 fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000250 return -1;
251 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000252
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000253 vt823x_set_all_writes_to_lpc(dev);
254 w836xx_memw_enable(0x2E);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000255
Uwe Hermanna7e05482007-05-09 10:17:44 +0000256 return 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000257}
258
Uwe Hermannffec5f32007-08-23 16:08:21 +0000259/**
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000260 * Suited for VIAs EPIA SP and EPIA CN.
Luc Verhaegen97866082008-02-09 02:03:06 +0000261 */
262static int board_via_epia_sp(const char *name)
263{
264 struct pci_dev *dev;
Luc Verhaegen97866082008-02-09 02:03:06 +0000265
266 dev = pci_dev_find(0x1106, 0x3227); /* VT8237R ISA bridge */
267 if (!dev) {
268 fprintf(stderr, "\nERROR: VT8237R ISA bridge not found.\n");
269 return -1;
270 }
271
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000272 vt823x_set_all_writes_to_lpc(dev);
273
274 return 0;
275}
276
277/**
Jon Harrison2eeff4e2009-06-19 13:53:59 +0000278 * Suited for VIAs EPIA N & NL.
279 */
280static int board_via_epia_n(const char *name)
281{
282 struct pci_dev *dev;
283
284 dev = pci_dev_find(0x1106, 0x3227); /* VT8237R ISA bridge */
285 if (!dev) {
286 fprintf(stderr, "\nERROR: VT8237R ISA bridge not found.\n");
287 return -1;
288 }
289
290 /* All memory cycles, not just ROM ones, go to LPC */
291 vt823x_set_all_writes_to_lpc(dev);
292
293 /* GPIO9 -> output */
294 vt823x_gpio_set(dev, 9, 1);
295
296 return 0;
297}
298
299/**
Luc Verhaegen0f9221c2009-11-29 01:19:25 +0000300 * Suited for:
301 * - EPoX EP-8K5A2: VIA KT333 + VT8235.
302 * - Albatron PM266A Pro: VIA P4M266A + VT8235.
303 * - Shuttle AK31 (all versions): VIA KT266 + VT8233.
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000304 */
Luc Verhaegen0f9221c2009-11-29 01:19:25 +0000305static int w836xx_memw_enable_2e(const char *name)
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000306{
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000307 w836xx_memw_enable(0x2E);
Luc Verhaegen97866082008-02-09 02:03:06 +0000308
309 return 0;
310}
311
312/**
Luc Verhaegen6b141752007-05-20 16:16:13 +0000313 * Suited for ASUS P5A.
314 *
315 * This is rather nasty code, but there's no way to do this cleanly.
316 * We're basically talking to some unknown device on SMBus, my guess
317 * is that it is the Winbond W83781D that lives near the DIP BIOS.
318 */
Luc Verhaegen6b141752007-05-20 16:16:13 +0000319static int board_asus_p5a(const char *name)
320{
321 uint8_t tmp;
322 int i;
323
324#define ASUSP5A_LOOP 5000
325
Andriy Gapon65c1b862008-05-22 13:22:45 +0000326 OUTB(0x00, 0xE807);
327 OUTB(0xEF, 0xE803);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000328
Andriy Gapon65c1b862008-05-22 13:22:45 +0000329 OUTB(0xFF, 0xE800);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000330
331 for (i = 0; i < ASUSP5A_LOOP; i++) {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000332 OUTB(0xE1, 0xFF);
333 if (INB(0xE800) & 0x04)
Luc Verhaegen6b141752007-05-20 16:16:13 +0000334 break;
335 }
336
337 if (i == ASUSP5A_LOOP) {
338 printf("%s: Unable to contact device.\n", name);
339 return -1;
340 }
341
Andriy Gapon65c1b862008-05-22 13:22:45 +0000342 OUTB(0x20, 0xE801);
343 OUTB(0x20, 0xE1);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000344
Andriy Gapon65c1b862008-05-22 13:22:45 +0000345 OUTB(0xFF, 0xE802);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000346
347 for (i = 0; i < ASUSP5A_LOOP; i++) {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000348 tmp = INB(0xE800);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000349 if (tmp & 0x70)
350 break;
351 }
352
353 if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) {
354 printf("%s: failed to read device.\n", name);
355 return -1;
356 }
357
Andriy Gapon65c1b862008-05-22 13:22:45 +0000358 tmp = INB(0xE804);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000359 tmp &= ~0x02;
360
Andriy Gapon65c1b862008-05-22 13:22:45 +0000361 OUTB(0x00, 0xE807);
362 OUTB(0xEE, 0xE803);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000363
Andriy Gapon65c1b862008-05-22 13:22:45 +0000364 OUTB(tmp, 0xE804);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000365
Andriy Gapon65c1b862008-05-22 13:22:45 +0000366 OUTB(0xFF, 0xE800);
367 OUTB(0xE1, 0xFF);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000368
Andriy Gapon65c1b862008-05-22 13:22:45 +0000369 OUTB(0x20, 0xE801);
370 OUTB(0x20, 0xE1);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000371
Andriy Gapon65c1b862008-05-22 13:22:45 +0000372 OUTB(0xFF, 0xE802);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000373
374 for (i = 0; i < ASUSP5A_LOOP; i++) {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000375 tmp = INB(0xE800);
Luc Verhaegen6b141752007-05-20 16:16:13 +0000376 if (tmp & 0x70)
377 break;
378 }
379
380 if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) {
381 printf("%s: failed to write to device.\n", name);
382 return -1;
383 }
384
385 return 0;
386}
387
Stefan Reinauer1c283f42007-06-05 12:51:52 +0000388static int board_ibm_x3455(const char *name)
389{
Uwe Hermanne823ee02007-06-05 15:02:18 +0000390 /* Set GPIO lines in the Broadcom HT-1000 southbridge. */
Uwe Hermann1432a602009-06-28 23:26:37 +0000391 /* It's not a Super I/O but it uses the same index/data port method. */
Carl-Daniel Hailfinger500b4232009-06-01 21:30:42 +0000392 sio_mask(0xcd6, 0x45, 0x20, 0x20);
Stefan Reinauer1c283f42007-06-05 12:51:52 +0000393
394 return 0;
395}
396
Luc Verhaegen48f34c62009-06-03 07:50:39 +0000397/**
Luc Verhaegen20fdce12009-10-21 12:05:50 +0000398 * Suited for Shuttle FN25 (SN25P): AMD S939 + Nvidia CK804 (nForce4).
399 */
400static int board_shuttle_fn25(const char *name)
401{
402 struct pci_dev *dev;
403
404 dev = pci_dev_find(0x10DE, 0x0050); /* NVIDIA CK804 ISA Bridge. */
405 if (!dev) {
406 fprintf(stderr,
407 "\nERROR: NVIDIA nForce4 ISA bridge not found.\n");
408 return -1;
409 }
410
411 /* one of those bits seems to be connected to TBL#, but -ENOINFO. */
412 pci_write_byte(dev, 0x92, 0);
413
414 return 0;
415}
416
417/**
Luc Verhaegen8ff741e2009-10-05 16:07:00 +0000418 * No docs, so we are just guessing that these might be individual gpio lines.
419 */
420static void nvidia_mcp_gpio_raise(struct pci_dev *dev, uint8_t offset)
421{
422 uint16_t base;
423 uint8_t tmp;
424
425 base = pci_read_long(dev, 0x64) & 0x0000FF00; /* System control area */
426
427 base += 0xC0;
428
429 /* if anyone knows more about nvidia mcps, feel free to explain this */
430 tmp = INB(base + offset);
431 tmp &= ~0x0F;
432 tmp |= 0x05;
433 OUTB(tmp, base + offset);
434}
435
436/**
Luc Verhaegen48f34c62009-06-03 07:50:39 +0000437 * Suited for the Gigabyte GA-K8N-SLI: CK804 southbridge.
438 */
439static int board_ga_k8n_sli(const char *name)
440{
441 struct pci_dev *dev;
Luc Verhaegen48f34c62009-06-03 07:50:39 +0000442
443 dev = pci_dev_find(0x10DE, 0x0050); /* NVIDIA CK804 LPC */
444 if (!dev) {
445 fprintf(stderr, "\nERROR: NVIDIA LPC bridge not found.\n");
446 return -1;
447 }
448
Luc Verhaegen8ff741e2009-10-05 16:07:00 +0000449 nvidia_mcp_gpio_raise(dev, 0x21);
Luc Verhaegen48f34c62009-06-03 07:50:39 +0000450
451 return 0;
452}
453
Luc Verhaegen8ff741e2009-10-05 16:07:00 +0000454/**
455 * Suited for ASUS P5ND2-SLI Deluxe: LGA775 + nForce4 SLI + MCP04.
456 */
457static int board_asus_p5nd2_sli(const char *name)
458{
459 struct pci_dev *dev;
460
461 dev = pci_dev_find(0x10DE, 0x0030); /* NVIDIA nForce4 ISA Bridge */
462 if (!dev) {
463 fprintf(stderr, "\nERROR: NVIDIA ISA bridge not found.\n");
464 return -1;
465 }
466
467 nvidia_mcp_gpio_raise(dev, 0x10);
468
469 return 0;
470}
471
Luc Verhaegen2c04fab2009-10-05 18:46:35 +0000472/**
473 * Suited for EPoX EP-8RDA3+: Socket A + nForce2 Ultra 400 + MCP2.
474 */
475static int board_epox_ep_8rda3plus(const char *name)
476{
477 struct pci_dev *dev;
478
479 dev = pci_dev_find(0x10DE, 0x0060); /* NVIDIA nForce2 ISA Bridge */
480 if (!dev) {
481 fprintf(stderr, "\nERROR: NVIDIA ISA bridge not found.\n");
482 return -1;
483 }
484
485 nvidia_mcp_gpio_raise(dev, 0x31);
486
487 return 0;
488}
Luc Verhaegen8ff741e2009-10-05 16:07:00 +0000489
Mondrian Nuessled5df3302009-03-30 13:20:01 +0000490static int board_hp_dl145_g3_enable(const char *name)
491{
Mondrian Nuessled5df3302009-03-30 13:20:01 +0000492 /* Set GPIO lines in the Broadcom HT-1000 southbridge. */
Carl-Daniel Hailfinger500b4232009-06-01 21:30:42 +0000493 /* GPIO 0 reg from PM regs */
Mondrian Nuessled5df3302009-03-30 13:20:01 +0000494 /* Set GPIO 2 and 5 high, connected to flash WP# and TBL# pins. */
Uwe Hermann1432a602009-06-28 23:26:37 +0000495 /* It's not a Super I/O but it uses the same index/data port method. */
Carl-Daniel Hailfinger500b4232009-06-01 21:30:42 +0000496 sio_mask(0xcd6, 0x44, 0x24, 0x24);
Mondrian Nuessled5df3302009-03-30 13:20:01 +0000497
498 return 0;
499}
500
Luc Verhaegenfdd0c582007-08-11 16:59:11 +0000501/**
502 * Suited for EPoX EP-BX3, and maybe some other Intel 440BX based boards.
503 */
504static int board_epox_ep_bx3(const char *name)
505{
506 uint8_t tmp;
507
508 /* Raise GPIO22. */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000509 tmp = INB(0x4036);
510 OUTB(tmp, 0xEB);
Luc Verhaegenfdd0c582007-08-11 16:59:11 +0000511
512 tmp |= 0x40;
513
Andriy Gapon65c1b862008-05-22 13:22:45 +0000514 OUTB(tmp, 0x4036);
515 OUTB(tmp, 0xEB);
Luc Verhaegenfdd0c582007-08-11 16:59:11 +0000516
517 return 0;
518}
519
Uwe Hermannffec5f32007-08-23 16:08:21 +0000520/**
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000521 * Suited for Artec Group DBE61 and DBE62.
522 */
523static int board_artecgroup_dbe6x(const char *name)
524{
525#define DBE6x_MSR_DIVIL_BALL_OPTS 0x51400015
526#define DBE6x_PRI_BOOT_LOC_SHIFT (2)
527#define DBE6x_BOOT_OP_LATCHED_SHIFT (8)
528#define DBE6x_SEC_BOOT_LOC_SHIFT (10)
529#define DBE6x_PRI_BOOT_LOC (3 << DBE6x_PRI_BOOT_LOC_SHIFT)
530#define DBE6x_BOOT_OP_LATCHED (3 << DBE6x_BOOT_OP_LATCHED_SHIFT)
531#define DBE6x_SEC_BOOT_LOC (3 << DBE6x_SEC_BOOT_LOC_SHIFT)
532#define DBE6x_BOOT_LOC_FLASH (2)
533#define DBE6x_BOOT_LOC_FWHUB (3)
534
Stefan Reinauerb4fe6642009-08-12 18:25:24 +0000535 msr_t msr;
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000536 unsigned long boot_loc;
537
Stefan Reinauerb4fe6642009-08-12 18:25:24 +0000538 /* Geode only has a single core */
539 if (setup_cpu_msr(0))
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000540 return -1;
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000541
Stefan Reinauerb4fe6642009-08-12 18:25:24 +0000542 msr = rdmsr(DBE6x_MSR_DIVIL_BALL_OPTS);
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000543
Stefan Reinauerb4fe6642009-08-12 18:25:24 +0000544 if ((msr.lo & (DBE6x_BOOT_OP_LATCHED)) ==
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000545 (DBE6x_BOOT_LOC_FWHUB << DBE6x_BOOT_OP_LATCHED_SHIFT))
546 boot_loc = DBE6x_BOOT_LOC_FWHUB;
547 else
548 boot_loc = DBE6x_BOOT_LOC_FLASH;
549
Stefan Reinauerb4fe6642009-08-12 18:25:24 +0000550 msr.lo &= ~(DBE6x_PRI_BOOT_LOC | DBE6x_SEC_BOOT_LOC);
551 msr.lo |= ((boot_loc << DBE6x_PRI_BOOT_LOC_SHIFT) |
Uwe Hermann394131e2008-10-18 21:14:13 +0000552 (boot_loc << DBE6x_SEC_BOOT_LOC_SHIFT));
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000553
Stefan Reinauerb4fe6642009-08-12 18:25:24 +0000554 wrmsr(DBE6x_MSR_DIVIL_BALL_OPTS, msr);
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000555
Stefan Reinauerb4fe6642009-08-12 18:25:24 +0000556 cleanup_cpu_msr();
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000557
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000558 return 0;
559}
560
Uwe Hermann93f66db2008-05-22 21:19:38 +0000561/**
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000562 * Set a GPIO line on a given intel ICH LPC controller.
Uwe Hermann93f66db2008-05-22 21:19:38 +0000563 */
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000564static int intel_ich_gpio_set(int gpio, int raise)
Uwe Hermann93f66db2008-05-22 21:19:38 +0000565{
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000566 /* table mapping the different intel ICH LPC chipsets. */
567 static struct {
568 uint16_t id;
569 uint8_t base_reg;
570 uint32_t bank0;
571 uint32_t bank1;
572 uint32_t bank2;
573 } intel_ich_gpio_table[] = {
574 {0x2410, 0x58, 0x0FE30000, 0, 0}, /* 82801AA (ICH) */
575 {0x2420, 0x58, 0x0FE30000, 0, 0}, /* 82801AB (ICH0) */
576 {0x2440, 0x58, 0x1BFF391B, 0, 0}, /* 82801BA (ICH2) */
577 {0x244C, 0x58, 0x1A23399B, 0, 0}, /* 82801BAM (ICH2M) */
578 {0x2450, 0x58, 0x1BFF0000, 0, 0}, /* 82801E (C-ICH) */
579 {0x2480, 0x58, 0x1BFF0000, 0x00000FFF, 0}, /* 82801CA (ICH3-S) */
580 {0x248C, 0x58, 0x1A230000, 0x00000FFF, 0}, /* 82801CAM (ICH3-M) */
581 {0x24C0, 0x58, 0x1BFF0000, 0x00000FFF, 0}, /* 82801DB/DBL (ICH4/ICH4-L) */
582 {0x24CC, 0x58, 0x1A030000, 0x00000FFF, 0}, /* 82801DBM (ICH4-M) */
583 {0x24D0, 0x58, 0x1BFF0000, 0x00030305, 0}, /* 82801EB/ER (ICH5/ICH5R) */
584 {0x2640, 0x48, 0x1BFF0000, 0x00030307, 0}, /* 82801FB/FR (ICH6/ICH6R) */
585 {0x2641, 0x48, 0x1BFF0000, 0x00030307, 0}, /* 82801FBM (ICH6M) */
586 {0x27B8, 0x48, 0xFFFFFFFF, 0x000300FF, 0}, /* 82801GB/GR (ICH7 Family) */
587 {0x27B9, 0x48, 0xFFEBFFFE, 0x000300FE, 0}, /* 82801GBM (ICH7-M) */
588 {0x27BD, 0x48, 0xFFEBFFFE, 0x000300FE, 0}, /* 82801GHM (ICH7-M DH) */
589 {0x2810, 0x48, 0xFFFFFFFF, 0x00FF0FFF, 0}, /* 82801HB/HR (ICH8/R) */
590 {0x2811, 0x48, 0xFFFFFFFF, 0x00FF0FFF, 0}, /* 82801HBM (ICH8M-E) */
591 {0x2812, 0x48, 0xFFFFFFFF, 0x00FF0FFF, 0}, /* 82801HH (ICH8DH) */
592 {0x2814, 0x48, 0xFFFFFFFF, 0x00FF0FFF, 0}, /* 82801HO (ICH8DO) */
593 {0x2815, 0x48, 0xFFFFFFFF, 0x00FF0FFF, 0}, /* 82801HEM (ICH8M) */
594 {0x2912, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IH (ICH9DH) */
595 {0x2914, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IO (ICH9DO) */
596 {0x2916, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IR (ICH9R) */
597 {0x2917, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IEM (ICH9M-E) */
598 {0x2918, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IB (ICH9) */
599 {0x2919, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IBM (ICH9M) */
600 {0x3A14, 0x48, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000100}, /* 82801JDO (ICH10DO) */
601 {0x3A16, 0x48, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000100}, /* 82801JIR (ICH10R) */
602 {0x3A18, 0x48, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000100}, /* 82801JIB (ICH10) */
603 {0x3A1A, 0x48, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000100}, /* 82801JD (ICH10D) */
604 {0, 0, 0, 0, 0} /* end marker */
605 };
Uwe Hermann93f66db2008-05-22 21:19:38 +0000606
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000607 struct pci_dev *dev;
608 uint16_t base;
609 uint32_t tmp;
610 int i, allowed;
611
612 /* First, look for a known LPC bridge */
613 for (dev = pacc->devices; dev; dev = dev->next)
614 if ((dev->vendor_id == 0x8086) &&
615 (dev->device_class == 0x0601)) { /* ISA Bridge */
616 /* Is this device in our list? */
617 for (i = 0; intel_ich_gpio_table[i].id; i++)
618 if (dev->device_id == intel_ich_gpio_table[i].id)
619 break;
620
621 if (intel_ich_gpio_table[i].id)
622 break;
623 }
624
Uwe Hermann93f66db2008-05-22 21:19:38 +0000625 if (!dev) {
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000626 fprintf(stderr, "\nERROR: No Known Intel LPC Bridge found.\n");
Uwe Hermann93f66db2008-05-22 21:19:38 +0000627 return -1;
628 }
629
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000630 /* According to the datasheets, all intel ICHs have the gpio bar 5:1
631 strapped to zero. From some mobile ich9 version on, this becomes
632 6:1. The mask below catches all. */
633 base = pci_read_word(dev, intel_ich_gpio_table[i].base_reg) & 0xFFC0;
Uwe Hermann93f66db2008-05-22 21:19:38 +0000634
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000635 /* check whether the line is allowed */
636 if (gpio < 32)
637 allowed = (intel_ich_gpio_table[i].bank0 >> gpio) & 0x01;
638 else if (gpio < 64)
639 allowed = (intel_ich_gpio_table[i].bank1 >> (gpio - 32)) & 0x01;
640 else
641 allowed = (intel_ich_gpio_table[i].bank2 >> (gpio - 64)) & 0x01;
642
643 if (!allowed) {
644 fprintf(stderr, "\nERROR: This Intel LPC Bridge does not allow"
645 " setting GPIO%02d\n", gpio);
646 return -1;
647 }
648
649 printf("\nIntel ICH LPC Bridge: %sing GPIO%02d.\n",
650 raise ? "Rais" : "Dropp", gpio);
651
652 if (gpio < 32) {
653 /* Set line to GPIO */
654 tmp = INL(base);
655 /* ICH/ICH0 multiplexes 27/28 on the line set. */
656 if ((gpio == 28) &&
657 ((dev->device_id == 0x2410) || (dev->device_id == 0x2420)))
658 tmp |= 1 << 27;
659 else
660 tmp |= 1 << gpio;
661 OUTL(tmp, base);
662
663 /* As soon as we are talking to ICH8 and above, this register
664 decides whether we can set the gpio or not. */
665 if (dev->device_id > 0x2800) {
666 tmp = INL(base);
667 if (!(tmp & (1 << gpio))) {
668 fprintf(stderr, "\nERROR: This Intel LPC Bridge"
669 " does not allow setting GPIO%02d\n",
670 gpio);
671 return -1;
672 }
673 }
674
675 /* Set GPIO to OUTPUT */
676 tmp = INL(base + 0x04);
677 tmp &= ~(1 << gpio);
678 OUTL(tmp, base + 0x04);
679
680 /* Raise GPIO line */
681 tmp = INL(base + 0x0C);
682 if (raise)
683 tmp |= 1 << gpio;
684 else
685 tmp &= ~(1 << gpio);
686 OUTL(tmp, base + 0x0C);
687 } else if (gpio < 64) {
688 gpio -= 32;
689
690 /* Set line to GPIO */
691 tmp = INL(base + 0x30);
692 tmp |= 1 << gpio;
693 OUTL(tmp, base + 0x30);
694
695 /* As soon as we are talking to ICH8 and above, this register
696 decides whether we can set the gpio or not. */
697 if (dev->device_id > 0x2800) {
698 tmp = INL(base + 30);
699 if (!(tmp & (1 << gpio))) {
700 fprintf(stderr, "\nERROR: This Intel LPC Bridge"
701 " does not allow setting GPIO%02d\n",
702 gpio + 32);
703 return -1;
704 }
705 }
706
707 /* Set GPIO to OUTPUT */
708 tmp = INL(base + 0x34);
709 tmp &= ~(1 << gpio);
710 OUTL(tmp, base + 0x34);
711
712 /* Raise GPIO line */
713 tmp = INL(base + 0x38);
714 if (raise)
715 tmp |= 1 << gpio;
716 else
717 tmp &= ~(1 << gpio);
718 OUTL(tmp, base + 0x38);
719 } else {
720 gpio -= 64;
721
722 /* Set line to GPIO */
723 tmp = INL(base + 0x40);
724 tmp |= 1 << gpio;
725 OUTL(tmp, base + 0x40);
726
727 tmp = INL(base + 40);
728 if (!(tmp & (1 << gpio))) {
729 fprintf(stderr, "\nERROR: This Intel LPC Bridge does "
730 "not allow setting GPIO%02d\n", gpio + 64);
731 return -1;
732 }
733
734 /* Set GPIO to OUTPUT */
735 tmp = INL(base + 0x44);
736 tmp &= ~(1 << gpio);
737 OUTL(tmp, base + 0x44);
738
739 /* Raise GPIO line */
740 tmp = INL(base + 0x48);
741 if (raise)
742 tmp |= 1 << gpio;
743 else
744 tmp &= ~(1 << gpio);
745 OUTL(tmp, base + 0x48);
746 }
Uwe Hermann93f66db2008-05-22 21:19:38 +0000747
748 return 0;
749}
750
751/**
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000752 * Suited for Abit IP35: Intel P35 + ICH9R.
Uwe Hermann93f66db2008-05-22 21:19:38 +0000753 */
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000754static int intel_ich_gpio16_raise(const char *name)
Uwe Hermann93f66db2008-05-22 21:19:38 +0000755{
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000756 return intel_ich_gpio_set(16, 1);
Uwe Hermann93f66db2008-05-22 21:19:38 +0000757}
758
Peter Stuge09c13332009-02-02 22:55:26 +0000759/**
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000760 * Suited for MSI MS-7046: LGA775 + 915P + ICH6.
Carl-Daniel Hailfinger29124262009-09-23 02:05:12 +0000761 */
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000762static int intel_ich_gpio19_raise(const char *name)
Carl-Daniel Hailfinger29124262009-09-23 02:05:12 +0000763{
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000764 return intel_ich_gpio_set(19, 1);
Carl-Daniel Hailfinger29124262009-09-23 02:05:12 +0000765}
766
767/**
Luc Verhaegen6c5d4cc2009-11-28 18:26:21 +0000768 * Suited for:
769 * - Asus P4B266LM (Sony Vaio PCV-RX650): socket478 + 845D + ICH2.
770 * - Asus P4P800-E Deluxe: Intel socket478 + 865PE + ICH5R.
Peter Stuge09c13332009-02-02 22:55:26 +0000771 */
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000772static int intel_ich_gpio21_raise(const char *name)
Peter Stuge09c13332009-02-02 22:55:26 +0000773{
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000774 return intel_ich_gpio_set(21, 1);
Peter Stuge09c13332009-02-02 22:55:26 +0000775}
776
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000777/**
778 * Suited for ASUS P4B266: socket478 + intel 845D + ICH2.
779 */
780static int intel_ich_gpio22_raise(const char *name)
781{
782 return intel_ich_gpio_set(22, 1);
783}
784
785/**
Luc Verhaegen1265d8d2009-11-28 18:16:31 +0000786 * Suited for:
787 * - Dell Poweredge 1850: Intel PPGA604 + E7520 + ICH5R.
788 * - ASRock P4i65GV: Intel Socket478 + 865GV + ICH5R.
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000789 */
790static int intel_ich_gpio23_raise(const char *name)
791{
792 return intel_ich_gpio_set(23, 1);
793}
794
795/**
796 * Suited for Acorp 6A815EPD: socket 370 + intel 815 + ICH2.
797 */
798static int board_acorp_6a815epd(const char *name)
799{
800 int ret;
801
802 /* Lower Blocks Lock -- pin 7 of PLCC32 */
803 ret = intel_ich_gpio_set(22, 1);
804 if (!ret) /* Top Block Lock -- pin 8 of PLCC32 */
805 ret = intel_ich_gpio_set(23, 1);
806
807 return ret;
808}
809
810/**
811 * Suited for Kontron 986LCD-M: socket478 + 915GM + ICH7R.
812 */
Stefan Reinauerac378972008-03-17 22:59:40 +0000813static int board_kontron_986lcd_m(const char *name)
814{
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000815 int ret;
Stefan Reinauerac378972008-03-17 22:59:40 +0000816
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000817 ret = intel_ich_gpio_set(34, 1); /* #TBL */
818 if (!ret)
819 ret = intel_ich_gpio_set(35, 1); /* #WP */
Stefan Reinauerac378972008-03-17 22:59:40 +0000820
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +0000821 return ret;
Stefan Reinauerac378972008-03-17 22:59:40 +0000822}
823
Mart Raudseppfaa62fb2008-02-20 11:11:18 +0000824/**
Peter Stuge4aa71562008-06-11 02:22:42 +0000825 * Suited for:
Luc Verhaegen11793772009-07-21 01:44:45 +0000826 * - Biostar P4M80-M4: VIA P4M800 + VT8237 + IT8705AF
827 * - GIGABYTE GA-7VT600: VIA KT600 + VT8237 + IT8705
Peter Stuge4aa71562008-06-11 02:22:42 +0000828 */
Luc Verhaegen11793772009-07-21 01:44:45 +0000829static int it8705_rom_write_enable(const char *name)
Peter Stuge4aa71562008-06-11 02:22:42 +0000830{
831 /* enter IT87xx conf mode */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000832 enter_conf_mode_ite(0x2e);
Peter Stuge4aa71562008-06-11 02:22:42 +0000833
834 /* select right flash chip */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000835 sio_mask(0x2e, 0x22, 0x80, 0x80);
Peter Stuge4aa71562008-06-11 02:22:42 +0000836
837 /* bit 3: flash chip write enable
838 * bit 7: map flash chip at 1MB-128K (why though? ignoring this.)
839 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000840 sio_mask(0x2e, 0x24, 0x04, 0x04);
Peter Stuge4aa71562008-06-11 02:22:42 +0000841
842 /* exit IT87xx conf mode */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000843 exit_conf_mode_ite(0x2e);
Peter Stuge4aa71562008-06-11 02:22:42 +0000844
845 return 0;
846}
847
848/**
Uwe Hermanna02d6662009-08-20 18:45:18 +0000849 * Suited for AOpen vKM400Am-S: VIA KM400 + VT8237 + IT8705F.
Luc Verhaegen11793772009-07-21 01:44:45 +0000850 */
851static int board_aopen_vkm400(const char *name)
852{
853 struct pci_dev *dev;
854
855 dev = pci_dev_find(0x1106, 0x3227); /* VT8237 ISA bridge */
856 if (!dev) {
857 fprintf(stderr, "\nERROR: VT8237 ISA bridge not found.\n");
858 return -1;
859 }
860
861 vt823x_set_all_writes_to_lpc(dev);
862
863 return it8705_rom_write_enable(name);
864}
865
866/**
Sean Nelsonb20953c2008-08-19 21:51:39 +0000867 * Winbond W83697HF Super I/O + VIA VT8235 southbridge
868 *
869 * Suited for:
870 * - MSI KT4V and KT4V-L: AMD K7 + VIA KT400 + VT8235
Uwe Hermannab60a432009-05-23 00:56:49 +0000871 * - MSI KT4 Ultra: AMD K7 + VIA KT400 + VT8235
Sean Nelsonb20953c2008-08-19 21:51:39 +0000872 */
873static int board_msi_kt4v(const char *name)
874{
875 struct pci_dev *dev;
Sean Nelsonb20953c2008-08-19 21:51:39 +0000876
877 dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */
878 if (!dev) {
879 fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n");
880 return -1;
881 }
882
Luc Verhaegen4802a7b2009-11-28 21:12:58 +0000883 vt823x_set_all_writes_to_lpc(dev);
Sean Nelsonb20953c2008-08-19 21:51:39 +0000884
Luc Verhaegenadd6d9b2009-05-09 14:26:04 +0000885 vt823x_gpio_set(dev, 12, 1);
886 w836xx_memw_enable(0x2E);
Sean Nelsonb20953c2008-08-19 21:51:39 +0000887
888 return 0;
889}
890
891/**
Luc Verhaegen3920eda2009-06-17 14:43:24 +0000892 * Suited for Soyo SY-7VCA: Pro133A + VT82C686.
893 */
894static int board_soyo_sy_7vca(const char *name)
895{
896 struct pci_dev *dev;
897 uint32_t base;
898 uint8_t tmp;
899
900 /* VT82C686 Power management */
901 dev = pci_dev_find(0x1106, 0x3057);
902 if (!dev) {
903 fprintf(stderr, "\nERROR: VT82C686 PM device not found.\n");
904 return -1;
905 }
906
907 /* GPO0 output from PM IO base + 0x4C */
908 tmp = pci_read_byte(dev, 0x54);
909 tmp &= ~0x03;
910 pci_write_byte(dev, 0x54, tmp);
911
912 /* PM IO base */
913 base = pci_read_long(dev, 0x48) & 0x0000FF00;
914
915 /* Drop GPO0 */
916 tmp = INB(base + 0x4C);
917 tmp &= ~0x01;
918 OUTB(tmp, base + 0x4C);
919
920 return 0;
921}
922
Uwe Hermann265e7552009-06-21 15:45:34 +0000923static int it8705f_write_enable(uint8_t port, const char *name)
924{
925 enter_conf_mode_ite(port);
926 sio_mask(port, 0x24, 0x04, 0x04); /* Flash ROM I/F Writes Enable */
927 exit_conf_mode_ite(port);
928
929 return 0;
930}
931
932/**
Uwe Hermann5ab88892009-06-21 20:50:22 +0000933 * Suited for:
934 * - Shuttle AK38N: VIA KT333CF + VIA VT8235 + ITE IT8705F
935 * - Elitegroup K7VTA3: VIA Apollo KT266/A/333 + VIA VT8235 + ITE IT8705F
Uwe Hermann265e7552009-06-21 15:45:34 +0000936 */
937static int it8705f_write_enable_2e(const char *name)
938{
939 return it8705f_write_enable(0x2e, name);
940}
941
Luc Verhaegen3920eda2009-06-17 14:43:24 +0000942/**
Michael Gold6d52e472009-06-19 13:00:24 +0000943 * Find the runtime registers of an SMSC Super I/O, after verifying its
944 * chip ID.
945 *
946 * Returns the base port of the runtime register block, or 0 on error.
947 */
948static uint16_t smsc_find_runtime(uint16_t sio_port, uint16_t chip_id,
949 uint8_t logical_device)
950{
951 uint16_t rt_port = 0;
952
953 /* Verify the chip ID. */
Uwe Hermann1432a602009-06-28 23:26:37 +0000954 OUTB(0x55, sio_port); /* Enable configuration. */
Michael Gold6d52e472009-06-19 13:00:24 +0000955 if (sio_read(sio_port, 0x20) != chip_id) {
Uwe Hermann1432a602009-06-28 23:26:37 +0000956 fprintf(stderr, "\nERROR: SMSC Super I/O not found.\n");
Michael Gold6d52e472009-06-19 13:00:24 +0000957 goto out;
958 }
959
960 /* If the runtime block is active, get its address. */
961 sio_write(sio_port, 0x07, logical_device);
962 if (sio_read(sio_port, 0x30) & 1) {
963 rt_port = (sio_read(sio_port, 0x60) << 8)
964 | sio_read(sio_port, 0x61);
965 }
966
967 if (rt_port == 0) {
968 fprintf(stderr, "\nERROR: "
969 "Super I/O runtime interface not available.\n");
970 }
971out:
Uwe Hermann1432a602009-06-28 23:26:37 +0000972 OUTB(0xaa, sio_port); /* Disable configuration. */
Michael Gold6d52e472009-06-19 13:00:24 +0000973 return rt_port;
974}
975
976/**
977 * Disable write protection on the Mitac 6513WU. WP# on the FWH is
978 * connected to GP30 on the Super I/O, and TBL# is always high.
979 */
980static int board_mitac_6513wu(const char *name)
981{
982 struct pci_dev *dev;
983 uint16_t rt_port;
984 uint8_t val;
985
986 dev = pci_dev_find(0x8086, 0x2410); /* Intel 82801AA ISA bridge */
987 if (!dev) {
988 fprintf(stderr, "\nERROR: Intel 82801AA ISA bridge not found.\n");
989 return -1;
990 }
991
Uwe Hermann1432a602009-06-28 23:26:37 +0000992 rt_port = smsc_find_runtime(0x4e, 0x54 /* LPC47U33x */, 0xa);
Michael Gold6d52e472009-06-19 13:00:24 +0000993 if (rt_port == 0)
994 return -1;
995
996 /* Configure the GPIO pin. */
997 val = INB(rt_port + 0x33); /* GP30 config */
Uwe Hermann1432a602009-06-28 23:26:37 +0000998 val &= ~0x87; /* Output, non-inverted, GPIO, push/pull */
Michael Gold6d52e472009-06-19 13:00:24 +0000999 OUTB(val, rt_port + 0x33);
1000
1001 /* Disable write protection. */
1002 val = INB(rt_port + 0x4d); /* GP3 values */
Uwe Hermann1432a602009-06-28 23:26:37 +00001003 val |= 0x01; /* Set GP30 high. */
Michael Gold6d52e472009-06-19 13:00:24 +00001004 OUTB(val, rt_port + 0x4d);
1005
1006 return 0;
1007}
1008
1009/**
Luc Verhaegen78e4e122009-07-13 12:40:17 +00001010 * Suited for Asus A7V8X: VIA KT400 + VT8235 + IT8703F-A
1011 */
1012static int board_asus_a7v8x(const char *name)
1013{
1014 uint16_t id, base;
1015 uint8_t tmp;
1016
1017 /* find the IT8703F */
1018 w836xx_ext_enter(0x2E);
1019 id = (sio_read(0x2E, 0x20) << 8) | sio_read(0x2E, 0x21);
1020 w836xx_ext_leave(0x2E);
1021
1022 if (id != 0x8701) {
1023 fprintf(stderr, "\nERROR: IT8703F SuperIO not found.\n");
1024 return -1;
1025 }
1026
1027 /* Get the GP567 IO base */
1028 w836xx_ext_enter(0x2E);
1029 sio_write(0x2E, 0x07, 0x0C);
1030 base = (sio_read(0x2E, 0x60) << 8) | sio_read(0x2E, 0x61);
1031 w836xx_ext_leave(0x2E);
1032
1033 if (!base) {
1034 fprintf(stderr, "\nERROR: Failed to read IT8703F SuperIO GPIO"
1035 " Base.\n");
1036 return -1;
1037 }
1038
1039 /* Raise GP51. */
1040 tmp = INB(base);
1041 tmp |= 0x02;
1042 OUTB(tmp, base);
1043
1044 return 0;
1045}
1046
Luc Verhaegen72272912009-09-01 21:22:23 +00001047/*
1048 * General routine for raising/dropping GPIO lines on the ITE IT8712F.
1049 * There is only some limited checking on the port numbers.
1050 */
1051static int
1052it8712f_gpio_set(unsigned int line, int raise)
1053{
1054 unsigned int port;
1055 uint16_t id, base;
1056 uint8_t tmp;
1057
1058 port = line / 10;
1059 port--;
1060 line %= 10;
1061
1062 /* Check line */
1063 if ((port > 4) || /* also catches unsigned -1 */
1064 ((port < 4) && (line > 7)) || ((port == 4) && (line > 5))) {
1065 fprintf(stderr,
1066 "\nERROR: Unsupported IT8712F GPIO Line %02d.\n", line);
1067 return -1;
1068 }
1069
1070 /* find the IT8712F */
1071 enter_conf_mode_ite(0x2E);
1072 id = (sio_read(0x2E, 0x20) << 8) | sio_read(0x2E, 0x21);
1073 exit_conf_mode_ite(0x2E);
1074
1075 if (id != 0x8712) {
1076 fprintf(stderr, "\nERROR: IT8712F SuperIO not found.\n");
1077 return -1;
1078 }
1079
1080 /* Get the GPIO base */
1081 enter_conf_mode_ite(0x2E);
1082 sio_write(0x2E, 0x07, 0x07);
1083 base = (sio_read(0x2E, 0x62) << 8) | sio_read(0x2E, 0x63);
1084 exit_conf_mode_ite(0x2E);
1085
1086 if (!base) {
1087 fprintf(stderr, "\nERROR: Failed to read IT8712F SuperIO GPIO"
1088 " Base.\n");
1089 return -1;
1090 }
1091
1092 /* set GPIO. */
1093 tmp = INB(base + port);
1094 if (raise)
1095 tmp |= 1 << line;
1096 else
1097 tmp &= ~(1 << line);
1098 OUTB(tmp, base + port);
1099
1100 return 0;
1101}
1102
1103/**
1104 * Suited for Asus A7V600-X: VIA KT600 + VT8237 + IT8712F
1105 */
1106static int board_asus_a7v600x(const char *name)
1107{
1108 return it8712f_gpio_set(32, 1);
1109}
1110
Luc Verhaegen78e4e122009-07-13 12:40:17 +00001111/**
Uwe Hermannd0e347d2009-10-06 13:00:00 +00001112 * Below is the list of boards which need a special "board enable" code in
1113 * flashrom before their ROM chip can be accessed/written to.
1114 *
1115 * NOTE: Please add boards that _don't_ need such enables or don't work yet
1116 * to the respective tables in print.c. Thanks!
1117 *
Uwe Hermannffec5f32007-08-23 16:08:21 +00001118 * We use 2 sets of IDs here, you're free to choose which is which. This
1119 * is to provide a very high degree of certainty when matching a board on
1120 * the basis of subsystem/card IDs. As not every vendor handles
1121 * subsystem/card IDs in a sane manner.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001122 *
Luc Verhaegenc5210162009-04-20 12:38:17 +00001123 * Keep the second set NULLed if it should be ignored. Keep the subsystem IDs
1124 * NULLed if they don't identify the board fully. But please take care to
1125 * provide an as complete set of pci ids as possible; autodetection is the
1126 * preferred behaviour and we would like to make sure that matches are unique.
Mart Raudseppfaa62fb2008-02-20 11:11:18 +00001127 *
Luc Verhaegenc5210162009-04-20 12:38:17 +00001128 * The coreboot ids are used two fold. When running with a coreboot firmware,
1129 * the ids uniquely matches the coreboot board identification string. When a
1130 * legacy bios is installed and when autodetection is not possible, these ids
1131 * can be used to identify the board through the -m command line argument.
1132 *
1133 * When a board is identified through its coreboot ids (in both cases), the
1134 * main pci ids are still required to match, as a safeguard.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001135 */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001136
Uwe Hermanndeeebe22009-05-08 16:23:34 +00001137/* Please keep this list alphabetically ordered by vendor/board name. */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001138struct board_pciid_enable board_pciid_enables[] = {
Uwe Hermannab60a432009-05-23 00:56:49 +00001139 /* first pci-id set [4], second pci-id set [4], coreboot id [2], vendor name board name flash enable */
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +00001140 {0x8086, 0x2926, 0x147b, 0x1084, 0x11ab, 0x4364, 0x147b, 0x1084, NULL, NULL, "Abit", "IP35", intel_ich_gpio16_raise},
Uwe Hermannab60a432009-05-23 00:56:49 +00001141 {0x8086, 0x1130, 0, 0, 0x105a, 0x0d30, 0x105a, 0x4d33, "acorp", "6a815epd", "Acorp", "6A815EPD", board_acorp_6a815epd},
Luc Verhaegen1265d8d2009-11-28 18:16:31 +00001142 {0x8086, 0x24D4, 0x1849, 0x24D0, 0x8086, 0x24D5, 0x1849, 0x9739, NULL, NULL, "ASRock", "P4i65GV", intel_ich_gpio23_raise},
Uwe Hermann5e1aecd2009-05-18 21:56:16 +00001143 {0x1022, 0x746B, 0x1022, 0x36C0, 0, 0, 0, 0, "AGAMI", "ARUMA", "agami", "Aruma", w83627hf_gpio24_raise_2e},
Luc Verhaegen0f9221c2009-11-29 01:19:25 +00001144 {0x1106, 0x3177, 0x17F2, 0x3177, 0x1106, 0x3148, 0x17F2, 0x3148, NULL, NULL, "Albatron", "PM266A", w836xx_memw_enable_2e},
Uwe Hermanna02d6662009-08-20 18:45:18 +00001145 {0x1106, 0x3205, 0x1106, 0x3205, 0x10EC, 0x8139, 0xA0A0, 0x0477, NULL, NULL, "AOpen", "vKM400Am-S", board_aopen_vkm400},
Uwe Hermann5e1aecd2009-05-18 21:56:16 +00001146 {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe61", "Artec Group", "DBE61", board_artecgroup_dbe6x},
1147 {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe62", "Artec Group", "DBE62", board_artecgroup_dbe6x},
Luc Verhaegen72272912009-09-01 21:22:23 +00001148 {0x1106, 0x3189, 0x1043, 0x807F, 0x1106, 0x3065, 0x1043, 0x80ED, NULL, NULL, "ASUS", "A7V600-X", board_asus_a7v600x},
Luc Verhaegen78e4e122009-07-13 12:40:17 +00001149 {0x1106, 0x3189, 0x1043, 0x807F, 0x1106, 0x3177, 0x1043, 0x808C, NULL, NULL, "ASUS", "A7V8X", board_asus_a7v8x},
Uwe Hermannef016f52009-07-04 15:10:41 +00001150 {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118, NULL, NULL, "ASUS", "A7V8X-MX SE", board_asus_a7v8x_mx},
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +00001151 {0x8086, 0x1a30, 0x1043, 0x8070, 0x8086, 0x244b, 0x1043, 0x8028, NULL, NULL, "ASUS", "P4B266", intel_ich_gpio22_raise},
Luc Verhaegen6c5d4cc2009-11-28 18:26:21 +00001152 {0x8086, 0x1A30, 0x1043, 0x8025, 0x8086, 0x244B, 0x104D, 0x80F0, NULL, NULL, "ASUS", "P4B266-LM", intel_ich_gpio21_raise},
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +00001153 {0x8086, 0x2570, 0x1043, 0x80F2, 0x105A, 0x3373, 0x1043, 0x80F5, NULL, NULL, "ASUS", "P4P800-E Deluxe", intel_ich_gpio21_raise},
Uwe Hermann5e1aecd2009-05-18 21:56:16 +00001154 {0x10B9, 0x1541, 0, 0, 0x10B9, 0x1533, 0, 0, "asus", "p5a", "ASUS", "P5A", board_asus_p5a},
Luc Verhaegen8ff741e2009-10-05 16:07:00 +00001155 {0x10DE, 0x0030, 0x1043, 0x818a, 0x8086, 0x100E, 0x1043, 0x80EE, NULL, NULL, "ASUS", "P5ND2-SLI Deluxe", board_asus_p5nd2_sli},
Luc Verhaegen11793772009-07-21 01:44:45 +00001156 {0x1106, 0x3149, 0x1565, 0x3206, 0x1106, 0x3344, 0x1565, 0x1202, NULL, NULL, "Biostar", "P4M80-M4", it8705_rom_write_enable},
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +00001157 {0x8086, 0x3590, 0x1028, 0x016c, 0x1000, 0x0030, 0x1028, 0x016c, NULL, NULL, "Dell", "PowerEdge 1850", intel_ich_gpio23_raise},
Uwe Hermann5ab88892009-06-21 20:50:22 +00001158 {0x1106, 0x3038, 0x1019, 0x0996, 0x1106, 0x3177, 0x1019, 0x0996, NULL, NULL, "Elitegroup", "K7VTA3", it8705f_write_enable_2e},
Luc Verhaegen0f9221c2009-11-29 01:19:25 +00001159 {0x1106, 0x3177, 0x1106, 0x3177, 0x1106, 0x3059, 0x1695, 0x3005, NULL, NULL, "EPoX", "EP-8K5A2", w836xx_memw_enable_2e},
Luc Verhaegen2c04fab2009-10-05 18:46:35 +00001160 {0x10EC, 0x8139, 0x1695, 0x9001, 0x11C1, 0x5811, 0x1695, 0x9015, NULL, NULL, "EPoX", "EP-8RDA3+", board_epox_ep_8rda3plus},
Uwe Hermann5e1aecd2009-05-18 21:56:16 +00001161 {0x8086, 0x7110, 0, 0, 0x8086, 0x7190, 0, 0, "epox", "ep-bx3", "EPoX", "EP-BX3", board_epox_ep_bx3},
1162 {0x1039, 0x0761, 0, 0, 0, 0, 0, 0, "gigabyte", "2761gxdk", "GIGABYTE", "GA-2761GXDK", it87xx_probe_spi_flash},
Luc Verhaegen11793772009-07-21 01:44:45 +00001163 {0x1106, 0x3227, 0x1458, 0x5001, 0x10ec, 0x8139, 0x1458, 0xe000, NULL, NULL, "GIGABYTE", "GA-7VT600", it8705_rom_write_enable},
Luc Verhaegen48f34c62009-06-03 07:50:39 +00001164 {0x10DE, 0x0050, 0x1458, 0x0C11, 0x10DE, 0x005e, 0x1458, 0x5000, NULL, NULL, "GIGABYTE", "GA-K8N-SLI", board_ga_k8n_sli},
Uwe Hermann5e1aecd2009-05-18 21:56:16 +00001165 {0x10de, 0x0360, 0, 0, 0, 0, 0, 0, "gigabyte", "m57sli", "GIGABYTE", "GA-M57SLI-S4", it87xx_probe_spi_flash},
1166 {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 +00001167 {0x1002, 0x4398, 0x1458, 0x5004, 0x1002, 0x4391, 0x1458, 0xb000, NULL, NULL, "GIGABYTE", "GA-MA78G-DS3H", it87xx_probe_spi_flash},
1168 {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 +00001169 /* 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 +00001170 {0x1002, 0x438d, 0x1458, 0x5001, 0x1002, 0x5956, 0x1002, 0x5956, "gigabyte", "ma790fx-dq6", "GIGABYTE", "GA-MA790FX-DQ6", it87xx_probe_spi_flash},
1171 {0x1166, 0x0223, 0x103c, 0x320d, 0x102b, 0x0522, 0x103c, 0x31fa, "hp", "dl145_g3", "HP", "DL145 G3", board_hp_dl145_g3_enable},
1172 {0x1166, 0x0205, 0x1014, 0x0347, 0, 0, 0, 0, "ibm", "x3455", "IBM", "x3455", board_ibm_x3455},
1173 {0x1039, 0x5513, 0x8086, 0xd61f, 0x1039, 0x6330, 0x8086, 0xd61f, NULL, NULL, "Intel", "D201GLY", wbsio_check_for_spi},
1174 {0x1022, 0x7468, 0, 0, 0, 0, 0, 0, "iwill", "dk8_htx", "IWILL", "DK8-HTX", w83627hf_gpio24_raise_2e},
1175 /* Note: There are >= 2 version of the Kontron 986LCD-M/mITX! */
1176 {0x8086, 0x27b8, 0, 0, 0, 0, 0, 0, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m},
1177 {0x10ec, 0x8168, 0x10ec, 0x8168, 0x104c, 0x8023, 0x104c, 0x8019, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m},
Michael Gold6d52e472009-06-19 13:00:24 +00001178 {0x8086, 0x2411, 0x8086, 0x2411, 0x8086, 0x7125, 0x0e11, 0xb165, NULL, NULL, "Mitac", "6513WU", board_mitac_6513wu},
Uwe Hermann0b0cc162009-06-19 19:00:48 +00001179 {0x13f6, 0x0111, 0x1462, 0x5900, 0x1106, 0x3177, 0x1106, 0, "msi", "kt4ultra", "MSI", "MS-6590 (KT4 Ultra)",board_msi_kt4v},
Uwe Hermannd1129ac2009-05-28 15:07:42 +00001180 {0x1106, 0x3149, 0x1462, 0x7094, 0x10ec, 0x8167, 0x1462, 0x094c, NULL, NULL, "MSI", "MS-6702E (K8T Neo2-F)",w83627thf_gpio4_4_raise_2e},
Luc Verhaegen4802a7b2009-11-28 21:12:58 +00001181 {0x1106, 0x0571, 0x1462, 0x7120, 0x1106, 0x3065, 0x1462, 0x7120, NULL, NULL, "MSI", "MS-6712 (KT4V)", board_msi_kt4v},
Luc Verhaegen60ea7dc2009-11-28 18:07:51 +00001182 {0x8086, 0x2658, 0x1462, 0x7046, 0x1106, 0x3044, 0x1462, 0x046d, NULL, NULL, "MSI", "MS-7046", intel_ich_gpio19_raise},
Uwe Hermann0b0cc162009-06-19 19:00:48 +00001183 {0x10de, 0x005e, 0, 0, 0, 0, 0, 0, "msi", "k8n-neo3", "MSI", "MS-7135 (K8N Neo3)", w83627thf_gpio4_4_raise_4e},
Luc Verhaegen0f9221c2009-11-29 01:19:25 +00001184 {0x1106, 0x3099, 0, 0, 0x1106, 0x3074, 0, 0, "shuttle", "ak31", "Shuttle", "AK31", w836xx_memw_enable_2e},
Uwe Hermann265e7552009-06-21 15:45:34 +00001185 {0x1106, 0x3104, 0x1297, 0xa238, 0x1106, 0x3059, 0x1297, 0xc063, NULL, NULL, "Shuttle", "AK38N", it8705f_write_enable_2e},
Luc Verhaegen20fdce12009-10-21 12:05:50 +00001186 {0x10DE, 0x0050, 0x1297, 0x5036, 0x1412, 0x1724, 0x1297, 0x5036, NULL, NULL, "Shuttle", "FN25", board_shuttle_fn25},
Luc Verhaegen3920eda2009-06-17 14:43:24 +00001187 {0x1106, 0x3038, 0x0925, 0x1234, 0x1106, 0x3058, 0x15DD, 0x7609, NULL, NULL, "Soyo", "SY-7VCA", board_soyo_sy_7vca},
Uwe Hermann5e1aecd2009-05-18 21:56:16 +00001188 {0x8086, 0x1076, 0x8086, 0x1176, 0x1106, 0x3059, 0x10f1, 0x2498, NULL, NULL, "Tyan", "S2498 (Tomcat K7M)", board_asus_a7v8x_mx},
1189 {0x1106, 0x0314, 0x1106, 0xaa08, 0x1106, 0x3227, 0x1106, 0xAA08, NULL, NULL, "VIA", "EPIA-CN", board_via_epia_sp},
1190 {0x1106, 0x3177, 0x1106, 0xAA01, 0x1106, 0x3123, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA M/MII/...", board_via_epia_m},
Jon Harrison2eeff4e2009-06-19 13:53:59 +00001191 {0x1106, 0x0259, 0x1106, 0x3227, 0x1106, 0x3065, 0x1106, 0x3149, "via", "epia-n", "VIA", "EPIA-N/NL", board_via_epia_n}, /* TODO: remove coreboot ids */
Uwe Hermann5e1aecd2009-05-18 21:56:16 +00001192 {0x1106, 0x3227, 0x1106, 0xAA01, 0x1106, 0x0259, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA SP", board_via_epia_sp},
1193 {0x1106, 0x5337, 0x1458, 0xb003, 0x1106, 0x287e, 0x1106, 0x337e, "via", "pc3500g", "VIA", "PC3500G", it87xx_probe_spi_flash},
Uwe Hermann5ab88892009-06-21 20:50:22 +00001194
Uwe Hermann5e1aecd2009-05-18 21:56:16 +00001195 { 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL}, /* end marker */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001196};
1197
Uwe Hermannffec5f32007-08-23 16:08:21 +00001198/**
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +00001199 * Match boards on coreboot table gathered vendor and part name.
Uwe Hermannffec5f32007-08-23 16:08:21 +00001200 * Require main PCI IDs to match too as extra safety.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001201 */
Uwe Hermann394131e2008-10-18 21:14:13 +00001202static struct board_pciid_enable *board_match_coreboot_name(const char *vendor,
1203 const char *part)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001204{
Uwe Hermanna7e05482007-05-09 10:17:44 +00001205 struct board_pciid_enable *board = board_pciid_enables;
Peter Stuge6b53fed2008-01-27 16:21:21 +00001206 struct board_pciid_enable *partmatch = NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001207
Uwe Hermanna93045c2009-05-09 00:47:04 +00001208 for (; board->vendor_name; board++) {
Uwe Hermann394131e2008-10-18 21:14:13 +00001209 if (vendor && (!board->lb_vendor
1210 || strcasecmp(board->lb_vendor, vendor)))
Uwe Hermanna7e05482007-05-09 10:17:44 +00001211 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001212
Peter Stuge0b9c5f32008-07-02 00:47:30 +00001213 if (!board->lb_part || strcasecmp(board->lb_part, part))
Uwe Hermanna7e05482007-05-09 10:17:44 +00001214 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001215
Uwe Hermanna7e05482007-05-09 10:17:44 +00001216 if (!pci_dev_find(board->first_vendor, board->first_device))
1217 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001218
Uwe Hermanna7e05482007-05-09 10:17:44 +00001219 if (board->second_vendor &&
Uwe Hermann394131e2008-10-18 21:14:13 +00001220 !pci_dev_find(board->second_vendor, board->second_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +00001221 continue;
Peter Stuge6b53fed2008-01-27 16:21:21 +00001222
1223 if (vendor)
1224 return board;
1225
1226 if (partmatch) {
1227 /* a second entry has a matching part name */
1228 printf("AMBIGUOUS BOARD NAME: %s\n", part);
1229 printf("At least vendors '%s' and '%s' match.\n",
Uwe Hermann394131e2008-10-18 21:14:13 +00001230 partmatch->lb_vendor, board->lb_vendor);
Peter Stuge6b53fed2008-01-27 16:21:21 +00001231 printf("Please use the full -m vendor:part syntax.\n");
1232 return NULL;
1233 }
1234 partmatch = board;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001235 }
Uwe Hermann372eeb52007-12-04 21:49:06 +00001236
Peter Stuge6b53fed2008-01-27 16:21:21 +00001237 if (partmatch)
1238 return partmatch;
1239
Carl-Daniel Hailfingerbc25f942009-07-30 13:30:17 +00001240 if (!partvendor_from_cbtable) {
1241 /* Only warn if the mainboard type was not gathered from the
1242 * coreboot table. If it was, the coreboot implementor is
1243 * expected to fix flashrom, too.
1244 */
1245 printf("\nUnknown vendor:board from -m option: %s:%s\n\n",
1246 vendor, part);
1247 }
Uwe Hermanna7e05482007-05-09 10:17:44 +00001248 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001249}
1250
Uwe Hermannffec5f32007-08-23 16:08:21 +00001251/**
1252 * Match boards on PCI IDs and subsystem IDs.
1253 * Second set of IDs can be main only or missing completely.
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001254 */
1255static struct board_pciid_enable *board_match_pci_card_ids(void)
1256{
Uwe Hermanna7e05482007-05-09 10:17:44 +00001257 struct board_pciid_enable *board = board_pciid_enables;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001258
Uwe Hermanna93045c2009-05-09 00:47:04 +00001259 for (; board->vendor_name; board++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +00001260 if (!board->first_card_vendor || !board->first_card_device)
1261 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001262
Uwe Hermanna7e05482007-05-09 10:17:44 +00001263 if (!pci_card_find(board->first_vendor, board->first_device,
Uwe Hermann394131e2008-10-18 21:14:13 +00001264 board->first_card_vendor,
1265 board->first_card_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +00001266 continue;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001267
Uwe Hermanna7e05482007-05-09 10:17:44 +00001268 if (board->second_vendor) {
1269 if (board->second_card_vendor) {
1270 if (!pci_card_find(board->second_vendor,
Uwe Hermann394131e2008-10-18 21:14:13 +00001271 board->second_device,
1272 board->second_card_vendor,
1273 board->second_card_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +00001274 continue;
1275 } else {
1276 if (!pci_dev_find(board->second_vendor,
Uwe Hermann394131e2008-10-18 21:14:13 +00001277 board->second_device))
Uwe Hermanna7e05482007-05-09 10:17:44 +00001278 continue;
1279 }
1280 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001281
Uwe Hermanna7e05482007-05-09 10:17:44 +00001282 return board;
1283 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001284
Uwe Hermanna7e05482007-05-09 10:17:44 +00001285 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001286}
1287
Uwe Hermann372eeb52007-12-04 21:49:06 +00001288int board_flash_enable(const char *vendor, const char *part)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001289{
Uwe Hermanna7e05482007-05-09 10:17:44 +00001290 struct board_pciid_enable *board = NULL;
1291 int ret = 0;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001292
Peter Stuge6b53fed2008-01-27 16:21:21 +00001293 if (part)
Stefan Reinauere3f3e2e2008-01-18 15:33:10 +00001294 board = board_match_coreboot_name(vendor, part);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001295
Uwe Hermanna7e05482007-05-09 10:17:44 +00001296 if (!board)
1297 board = board_match_pci_card_ids();
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001298
Uwe Hermanna7e05482007-05-09 10:17:44 +00001299 if (board) {
Carl-Daniel Hailfingerbc25f942009-07-30 13:30:17 +00001300 printf("Disabling flash write protection for board \"%s %s\"... ",
Uwe Hermanna93045c2009-05-09 00:47:04 +00001301 board->vendor_name, board->board_name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001302
Uwe Hermanna93045c2009-05-09 00:47:04 +00001303 ret = board->enable(board->vendor_name);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001304 if (ret)
Uwe Hermanna502dce2007-10-17 23:55:15 +00001305 printf("FAILED!\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +00001306 else
1307 printf("OK.\n");
1308 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001309
Uwe Hermanna7e05482007-05-09 10:17:44 +00001310 return ret;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001311}