blob: c25cb3e2280d864dc6b36a4d5beadd233cfa65a9 [file] [log] [blame]
Uwe Hermannba290d12009-06-17 12:07:12 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
5 * Copyright (C) 2009 Carl-Daniel Hailfinger
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000022#include <stdio.h>
Uwe Hermannba290d12009-06-17 12:07:12 +000023#include <string.h>
24#include <stdlib.h>
25#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000026#include "programmer.h"
Uwe Hermannba290d12009-06-17 12:07:12 +000027
28/*
29 * Return a string corresponding to the bustype parameter.
Stefan Tauner00155492011-06-26 20:45:35 +000030 * Memory is obtained with malloc() and must be freed with free() by the caller.
Uwe Hermannba290d12009-06-17 12:07:12 +000031 */
32char *flashbuses_to_text(enum chipbustype bustype)
33{
34 char *ret = calloc(1, 1);
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000035 if (bustype == BUS_UNKNOWN) {
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000036 ret = strcat_realloc(ret, "Unknown, ");
Uwe Hermannba290d12009-06-17 12:07:12 +000037 /*
38 * FIXME: Once all chipsets and flash chips have been updated, NONSPI
39 * will cease to exist and should be eliminated here as well.
40 */
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000041 } else if (bustype == BUS_NONSPI) {
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000042 ret = strcat_realloc(ret, "Non-SPI, ");
Uwe Hermannba290d12009-06-17 12:07:12 +000043 } else {
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000044 if (bustype & BUS_PARALLEL)
Stefan Tauner355cbfd2011-05-28 02:37:14 +000045 ret = strcat_realloc(ret, "Parallel, ");
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000046 if (bustype & BUS_LPC)
Stefan Tauner355cbfd2011-05-28 02:37:14 +000047 ret = strcat_realloc(ret, "LPC, ");
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000048 if (bustype & BUS_FWH)
Stefan Tauner355cbfd2011-05-28 02:37:14 +000049 ret = strcat_realloc(ret, "FWH, ");
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000050 if (bustype & BUS_SPI)
Stefan Tauner355cbfd2011-05-28 02:37:14 +000051 ret = strcat_realloc(ret, "SPI, ");
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +000052 if (bustype == BUS_NONE)
Stefan Tauner355cbfd2011-05-28 02:37:14 +000053 ret = strcat_realloc(ret, "None, ");
Uwe Hermannba290d12009-06-17 12:07:12 +000054 }
55 /* Kill last comma. */
Stefan Tauner355cbfd2011-05-28 02:37:14 +000056 ret[strlen(ret) - 2] = '\0';
Uwe Hermannba290d12009-06-17 12:07:12 +000057 ret = realloc(ret, strlen(ret) + 1);
58 return ret;
59}
60
Stefan Tauner12589362011-06-25 17:36:25 +000061#define POS_PRINT(x) do { pos += strlen(x); msg_ginfo(x); } while (0)
Uwe Hermannba290d12009-06-17 12:07:12 +000062
63static int digits(int n)
64{
65 int i;
66
67 if (!n)
68 return 1;
69
70 for (i = 0; n; ++i)
71 n /= 10;
72
73 return i;
74}
75
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000076static void print_supported_chips(void)
Uwe Hermannba290d12009-06-17 12:07:12 +000077{
78 int okcol = 0, pos = 0, i, chipcount = 0;
Stefan Tauner7bcacb12011-05-26 01:35:19 +000079 int maxvendorlen = strlen("Vendor") + 1;
80 int maxchiplen = strlen("Device") + 1;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +000081 const struct flashchip *f;
Stefan Tauner00155492011-06-26 20:45:35 +000082 char *s;
Uwe Hermannba290d12009-06-17 12:07:12 +000083
84 for (f = flashchips; f->name != NULL; f++) {
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +000085 /* Ignore "unknown XXXX SPI chip" entries. */
86 if (!strncmp(f->name, "unknown", 7))
Uwe Hermannba290d12009-06-17 12:07:12 +000087 continue;
Uwe Hermannba290d12009-06-17 12:07:12 +000088 chipcount++;
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +000089 maxvendorlen = max(maxvendorlen, strlen(f->vendor));
90 maxchiplen = max(maxchiplen, strlen(f->name));
91 }
92 maxvendorlen++;
93 maxchiplen++;
94 okcol = maxvendorlen + maxchiplen;
Uwe Hermannba290d12009-06-17 12:07:12 +000095
Stefan Tauner12589362011-06-25 17:36:25 +000096 msg_ginfo("Supported flash chips (total: %d):\n\n", chipcount);
97 msg_ginfo("Vendor");
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +000098 for (i = strlen("Vendor"); i < maxvendorlen; i++)
Stefan Tauner12589362011-06-25 17:36:25 +000099 msg_ginfo(" ");
100 msg_ginfo("Device");
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000101 for (i = strlen("Device"); i < maxchiplen; i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000102 msg_ginfo(" ");
Uwe Hermannba290d12009-06-17 12:07:12 +0000103
Stefan Tauner12589362011-06-25 17:36:25 +0000104 msg_ginfo("Tested Known Size/kB: Type:\n");
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000105 for (i = 0; i < okcol; i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000106 msg_ginfo(" ");
107 msg_ginfo("OK Broken\n\n");
108 msg_ginfo("(P = PROBE, R = READ, E = ERASE, W = WRITE)\n\n");
Uwe Hermannba290d12009-06-17 12:07:12 +0000109
110 for (f = flashchips; f->name != NULL; f++) {
111 /* Don't print "unknown XXXX SPI chip" entries. */
112 if (!strncmp(f->name, "unknown", 7))
113 continue;
114
Stefan Tauner12589362011-06-25 17:36:25 +0000115 msg_ginfo("%s", f->vendor);
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000116 for (i = strlen(f->vendor); i < maxvendorlen; i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000117 msg_ginfo(" ");
118 msg_ginfo("%s", f->name);
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000119 for (i = strlen(f->name); i < maxchiplen; i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000120 msg_ginfo(" ");
Uwe Hermannba290d12009-06-17 12:07:12 +0000121
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000122 pos = maxvendorlen + maxchiplen;
Uwe Hermannba290d12009-06-17 12:07:12 +0000123 if ((f->tested & TEST_OK_MASK)) {
124 if ((f->tested & TEST_OK_PROBE))
125 POS_PRINT("P ");
126 if ((f->tested & TEST_OK_READ))
127 POS_PRINT("R ");
128 if ((f->tested & TEST_OK_ERASE))
129 POS_PRINT("E ");
130 if ((f->tested & TEST_OK_WRITE))
131 POS_PRINT("W ");
132 }
133 while (pos < okcol + 9) {
Stefan Tauner12589362011-06-25 17:36:25 +0000134 msg_ginfo(" ");
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000135 pos++;
Uwe Hermannba290d12009-06-17 12:07:12 +0000136 }
137 if ((f->tested & TEST_BAD_MASK)) {
138 if ((f->tested & TEST_BAD_PROBE))
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000139 POS_PRINT("P ");
Uwe Hermannba290d12009-06-17 12:07:12 +0000140 if ((f->tested & TEST_BAD_READ))
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000141 POS_PRINT("R ");
Uwe Hermannba290d12009-06-17 12:07:12 +0000142 if ((f->tested & TEST_BAD_ERASE))
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000143 POS_PRINT("E ");
Uwe Hermannba290d12009-06-17 12:07:12 +0000144 if ((f->tested & TEST_BAD_WRITE))
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000145 POS_PRINT("W ");
Uwe Hermannba290d12009-06-17 12:07:12 +0000146 }
147
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000148 while (pos < okcol + 18) {
Stefan Tauner12589362011-06-25 17:36:25 +0000149 msg_ginfo(" ");
Carl-Daniel Hailfingerf7533422010-07-17 23:21:12 +0000150 pos++;
151 }
Stefan Tauner12589362011-06-25 17:36:25 +0000152 msg_ginfo("%d", f->total_size);
Uwe Hermannba290d12009-06-17 12:07:12 +0000153 for (i = 0; i < 10 - digits(f->total_size); i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000154 msg_ginfo(" ");
Stefan Tauner00155492011-06-26 20:45:35 +0000155
156 s = flashbuses_to_text(f->bustype);
157 msg_ginfo("%s\n", s);
158 free(s);
Uwe Hermannba290d12009-06-17 12:07:12 +0000159 }
160}
161
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000162#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000163static void print_supported_chipsets(void)
Uwe Hermannba290d12009-06-17 12:07:12 +0000164{
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000165 int i, chipsetcount = 0;
Uwe Hermannba290d12009-06-17 12:07:12 +0000166 const struct penable *c = chipset_enables;
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000167 int maxvendorlen = strlen("Vendor") + 1;
168 int maxchipsetlen = strlen("Chipset") + 1;
Uwe Hermannba290d12009-06-17 12:07:12 +0000169
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000170 for (c = chipset_enables; c->vendor_name != NULL; c++) {
Uwe Hermannba290d12009-06-17 12:07:12 +0000171 chipsetcount++;
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000172 maxvendorlen = max(maxvendorlen, strlen(c->vendor_name));
173 maxchipsetlen = max(maxchipsetlen, strlen(c->device_name));
174 }
175 maxvendorlen++;
176 maxchipsetlen++;
Uwe Hermannba290d12009-06-17 12:07:12 +0000177
Stefan Tauner12589362011-06-25 17:36:25 +0000178 msg_ginfo("Supported chipsets (total: %d):\n\n", chipsetcount);
Uwe Hermannba290d12009-06-17 12:07:12 +0000179
Stefan Tauner12589362011-06-25 17:36:25 +0000180 msg_ginfo("Vendor");
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000181 for (i = strlen("Vendor"); i < maxvendorlen; i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000182 msg_ginfo(" ");
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000183
Stefan Tauner12589362011-06-25 17:36:25 +0000184 msg_ginfo("Chipset");
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000185 for (i = strlen("Chipset"); i < maxchipsetlen; i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000186 msg_ginfo(" ");
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000187
Stefan Tauner12589362011-06-25 17:36:25 +0000188 msg_ginfo("PCI IDs State\n\n");
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000189
190 for (c = chipset_enables; c->vendor_name != NULL; c++) {
Stefan Tauner12589362011-06-25 17:36:25 +0000191 msg_ginfo("%s", c->vendor_name);
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000192 for (i = 0; i < maxvendorlen - strlen(c->vendor_name); i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000193 msg_ginfo(" ");
194 msg_ginfo("%s", c->device_name);
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000195 for (i = 0; i < maxchipsetlen - strlen(c->device_name); i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000196 msg_ginfo(" ");
197 msg_ginfo("%04x:%04x%s\n", c->vendor_id, c->device_id,
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000198 (c->status == OK) ? "" : " (untested)");
Uwe Hermannba290d12009-06-17 12:07:12 +0000199 }
200}
201
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000202static void print_supported_boards_helper(const struct board_info *boards,
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000203 const char *devicetype)
Uwe Hermannba290d12009-06-17 12:07:12 +0000204{
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000205 int i, boardcount_good = 0, boardcount_bad = 0;
206 const struct board_pciid_enable *e = board_pciid_enables;
207 const struct board_info *b = boards;
208 int maxvendorlen = strlen("Vendor") + 1;
209 int maxboardlen = strlen("Board") + 1;
Uwe Hermannba290d12009-06-17 12:07:12 +0000210
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000211 for (b = boards; b->vendor != NULL; b++) {
212 maxvendorlen = max(maxvendorlen, strlen(b->vendor));
213 maxboardlen = max(maxboardlen, strlen(b->name));
214 if (b->working)
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000215 boardcount_good++;
Uwe Hermannba290d12009-06-17 12:07:12 +0000216 else
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000217 boardcount_bad++;
Uwe Hermannba290d12009-06-17 12:07:12 +0000218 }
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000219 maxvendorlen++;
220 maxboardlen++;
Uwe Hermannba290d12009-06-17 12:07:12 +0000221
Stefan Tauner12589362011-06-25 17:36:25 +0000222 msg_ginfo("Known %s (good: %d, bad: %d):\n\n",
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000223 devicetype, boardcount_good, boardcount_bad);
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000224
Stefan Tauner12589362011-06-25 17:36:25 +0000225 msg_ginfo("Vendor");
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000226 for (i = strlen("Vendor"); i < maxvendorlen; i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000227 msg_ginfo(" ");
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000228
Stefan Tauner12589362011-06-25 17:36:25 +0000229 msg_ginfo("Board");
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000230 for (i = strlen("Board"); i < maxboardlen; i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000231 msg_ginfo(" ");
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000232
Stefan Tauner12589362011-06-25 17:36:25 +0000233 msg_ginfo("Status Required option\n\n");
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000234
235 for (b = boards; b->vendor != NULL; b++) {
Stefan Tauner12589362011-06-25 17:36:25 +0000236 msg_ginfo("%s", b->vendor);
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000237 for (i = 0; i < maxvendorlen - strlen(b->vendor); i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000238 msg_ginfo(" ");
239 msg_ginfo("%s", b->name);
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000240 for (i = 0; i < maxboardlen - strlen(b->name); i++)
Stefan Tauner12589362011-06-25 17:36:25 +0000241 msg_ginfo(" ");
242 msg_ginfo((b->working) ? "OK " : "BAD ");
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000243
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000244 for (e = board_pciid_enables; e->vendor_name != NULL; e++) {
245 if (strcmp(e->vendor_name, b->vendor)
246 || strcmp(e->board_name, b->name))
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000247 continue;
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000248 if (e->lb_vendor == NULL)
Stefan Tauner12589362011-06-25 17:36:25 +0000249 msg_ginfo("(autodetected)");
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000250 else
Stefan Tauner12589362011-06-25 17:36:25 +0000251 msg_ginfo("-m %s:%s", e->lb_vendor,
Stefan Tauner7bcacb12011-05-26 01:35:19 +0000252 e->lb_part);
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000253 }
Stefan Tauner12589362011-06-25 17:36:25 +0000254 msg_ginfo("\n");
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000255 }
Uwe Hermannba290d12009-06-17 12:07:12 +0000256}
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000257#endif
Uwe Hermannd0e347d2009-10-06 13:00:00 +0000258
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +0000259void print_supported(void)
260{
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000261 print_supported_chips();
262
Stefan Tauner12589362011-06-25 17:36:25 +0000263 msg_ginfo("\nSupported programmers:\n");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000264 list_programmers_linebreak(0, 80, 0);
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000265#if CONFIG_INTERNAL == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000266 msg_ginfo("\nSupported devices for the %s programmer:\n\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000267 programmer_table[PROGRAMMER_INTERNAL].name);
268 print_supported_chipsets();
Stefan Tauner12589362011-06-25 17:36:25 +0000269 msg_ginfo("\n");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000270 print_supported_boards_helper(boards_known, "boards");
Stefan Tauner12589362011-06-25 17:36:25 +0000271 msg_ginfo("\n");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000272 print_supported_boards_helper(laptops_known, "laptops");
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000273#endif
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000274#if CONFIG_DUMMY == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000275 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000276 programmer_table[PROGRAMMER_DUMMY].name);
277 /* FIXME */
Stefan Tauner12589362011-06-25 17:36:25 +0000278 msg_ginfo("Dummy device, does nothing and logs all accesses\n");
Adam Jurkowski516f9322009-12-14 03:07:31 +0000279#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000280#if CONFIG_NIC3COM == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000281 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000282 programmer_table[PROGRAMMER_NIC3COM].name);
283 print_supported_pcidevs(nics_3com);
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +0000284#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000285#if CONFIG_NICREALTEK == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000286 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000287 programmer_table[PROGRAMMER_NICREALTEK].name);
288 print_supported_pcidevs(nics_realtek);
Uwe Hermann829ed842010-05-24 17:39:14 +0000289#endif
Andrew Morgan74a828a2010-07-21 15:12:07 +0000290#if CONFIG_NICNATSEMI == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000291 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000292 programmer_table[PROGRAMMER_NICNATSEMI].name);
293 print_supported_pcidevs(nics_natsemi);
Andrew Morgan74a828a2010-07-21 15:12:07 +0000294#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000295#if CONFIG_GFXNVIDIA == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000296 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000297 programmer_table[PROGRAMMER_GFXNVIDIA].name);
298 print_supported_pcidevs(gfx_nvidia);
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +0000299#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000300#if CONFIG_DRKAISER == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000301 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000302 programmer_table[PROGRAMMER_DRKAISER].name);
303 print_supported_pcidevs(drkaiser_pcidev);
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +0000304#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000305#if CONFIG_SATASII == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000306 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000307 programmer_table[PROGRAMMER_SATASII].name);
308 print_supported_pcidevs(satas_sii);
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +0000309#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000310#if CONFIG_ATAHPT == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000311 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000312 programmer_table[PROGRAMMER_ATAHPT].name);
313 print_supported_pcidevs(ata_hpt);
314#endif
315#if CONFIG_FT2232_SPI == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000316 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000317 programmer_table[PROGRAMMER_FT2232_SPI].name);
318 print_supported_usbdevs(devs_ft2232spi);
319#endif
320#if CONFIG_SERPROG == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000321 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000322 programmer_table[PROGRAMMER_SERPROG].name);
323 /* FIXME */
Stefan Tauner12589362011-06-25 17:36:25 +0000324 msg_ginfo("All programmer devices speaking the serprog protocol\n");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000325#endif
326#if CONFIG_BUSPIRATE_SPI == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000327 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000328 programmer_table[PROGRAMMER_BUSPIRATE_SPI].name);
329 /* FIXME */
Stefan Tauner12589362011-06-25 17:36:25 +0000330 msg_ginfo("Dangerous Prototypes Bus Pirate\n");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000331#endif
332#if CONFIG_DEDIPROG == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000333 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000334 programmer_table[PROGRAMMER_DEDIPROG].name);
335 /* FIXME */
Stefan Tauner12589362011-06-25 17:36:25 +0000336 msg_ginfo("Dediprog SF100\n");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000337#endif
338#if CONFIG_RAYER_SPI == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000339 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000340 programmer_table[PROGRAMMER_RAYER_SPI].name);
341 /* FIXME */
Stefan Tauner12589362011-06-25 17:36:25 +0000342 msg_ginfo("RayeR parallel port programmer\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000343#endif
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000344#if CONFIG_NICINTEL == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000345 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000346 programmer_table[PROGRAMMER_NICINTEL].name);
347 print_supported_pcidevs(nics_intel);
348#endif
Idwer Vollering004f4b72010-09-03 18:21:21 +0000349#if CONFIG_NICINTEL_SPI == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000350 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000351 programmer_table[PROGRAMMER_NICINTEL_SPI].name);
352 print_supported_pcidevs(nics_intel_spi);
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000353#endif
Mark Marshall90021f22010-12-03 14:48:11 +0000354#if CONFIG_OGP_SPI == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000355 msg_ginfo("\nSupported devices for the %s programmer:\n",
Mark Marshall90021f22010-12-03 14:48:11 +0000356 programmer_table[PROGRAMMER_OGP_SPI].name);
357 print_supported_pcidevs(ogp_spi);
358#endif
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000359#if CONFIG_SATAMV == 1
Stefan Tauner12589362011-06-25 17:36:25 +0000360 msg_ginfo("\nSupported devices for the %s programmer:\n",
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000361 programmer_table[PROGRAMMER_SATAMV].name);
362 print_supported_pcidevs(satas_mv);
363#endif
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +0000364}
365
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000366#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfinger4146ced2010-06-07 11:10:43 +0000367
368#ifdef CONFIG_PRINT_WIKI
369#define B(vendor, name, status, url, note) { vendor, name, status, url, note }
370#else
371#define B(vendor, name, status, url, note) { vendor, name, status }
372#endif
373
Uwe Hermannd0e347d2009-10-06 13:00:00 +0000374/* Please keep this list alphabetically ordered by vendor/board. */
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000375const struct board_info boards_known[] = {
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000376#if defined(__i386__) || defined(__x86_64__)
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000377 B("A-Trend", "ATC-6220", 1, "http://www.motherboard.cz/mb/atrend/atc6220.htm", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000378 B("abit", "AN-M2", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20AM2&pMODEL_NAME=AN-M2", NULL),
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000379 B("abit", "AX8", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20939&pMODEL_NAME=AX8", NULL),
Tim ter Laak4b933f02010-09-13 23:00:57 +0000380 B("abit", "BM6", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=BM6&fMTYPE=Socket%20370", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000381 B("abit", "Fatal1ty F-I90HD", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=Fatal1ty+F-I90HD&fMTYPE=LGA775", NULL),
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000382 B("abit", "IC7", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=IC7&fMTYPE=Socket%20478", NULL),
383 B("abit", "IP35", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=LGA775&pMODEL_NAME=IP35", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000384 B("abit", "IP35 Pro", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=LGA775&pMODEL_NAME=IP35%20Pro", NULL),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000385 B("abit", "IS-10", 0, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=IS-10&fMTYPE=Socket+478", "Reported by deejkuba@aol.com to flashrom@coreboot.org, no public archive. Missing board enable and/or M50FW040 unlocking. May work now."),
Benjamin Bellecff562672011-07-12 22:01:44 +0000386 B("abit", "KN8 Ultra", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20939&pMODEL_NAME=KN8%20Ultra", NULL),
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000387 B("abit", "NF-M2 nView", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Socket%20AM2&pMODEL_NAME=NF-M2%20nView", NULL),
388 B("abit", "NF7-S", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Socket%20A&pMODEL_NAME=NF7-S", NULL),
Mattias Mattssone3df96e2010-08-15 22:43:23 +0000389 B("abit", "VA6", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Slot%201&pMODEL_NAME=VA6", NULL),
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000390 B("abit", "VT6X4", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Slot%201&pMODEL_NAME=VT6X4", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000391 B("Acorp", "6A815EPD", 1, "http://web.archive.org/web/20021206163652/www.acorp.com.tw/English/default.asp", NULL),
392 B("Advantech", "PCM-5820", 1, "http://www.emacinc.com/sbc_pc_compatible/pcm_5820.htm", NULL),
393 B("agami", "Aruma", 1, "http://web.archive.org/web/20080212111524/http://www.agami.com/site/ais-6000-series", NULL),
394 B("Albatron", "PM266A Pro", 1, "http://www.albatron.com.tw/English/Product/MB/pro_detail.asp?rlink=Overview&no=56", NULL), /* FIXME */
395 B("AOpen", "vKM400Am-S", 1, "http://usa.aopen.com/products_detail.aspx?Auno=824", NULL),
396 B("Artec Group","DBE61", 1, "http://wiki.thincan.org/DBE61", NULL),
397 B("Artec Group","DBE62", 1, "http://wiki.thincan.org/DBE62", NULL),
398 B("ASI", "MB-5BLMP", 1, "http://www.hojerteknik.com/winnet.htm", "Used in the IGEL WinNET III thin client."),
Joshua Roys7507de42010-08-08 16:05:23 +0000399 B("ASRock", "775i65G", 1, "http://www.asrock.com/mb/overview.asp?Model=775i65G", NULL),
Yul Rottmann6d6ab742011-03-05 16:31:57 +0000400 B("ASRock", "890GX Extreme3", 1, "http://www.asrock.com/mb/overview.asp?Model=890GX%20Extreme3", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000401 B("ASRock", "939A785GMH/128M", 1, "http://www.asrock.com/mb/overview.asp?Model=939A785GMH/128M", NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000402 B("ASRock", "A330GC", 1, "http://www.asrock.com/mb/overview.asp?Model=A330GC", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000403 B("ASRock", "A770CrossFire", 1, "http://www.asrock.com/mb/overview.asp?Model=A770CrossFire", NULL),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000404 B("ASRock", "ALiveNF6G-DVI", 1, "http://www.asrock.com/mb/overview.asp?Model=ALiveNF6G-DVI", NULL),
Uwe Hermann17da61e2010-10-05 21:48:43 +0000405 B("ASRock", "K7S41", 1, "http://www.asrock.com/mb/overview.asp?Model=K7S41", NULL),
Pawel Rozanski1d233072011-06-19 16:52:48 +0000406 B("ASRock", "K7S41GX", 1, "http://www.asrock.com/mb/overview.asp?Model=K7S41GX", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000407 B("ASRock", "K7VT4A+", 0, "http://www.asrock.com/mb/overview.asp?Model=K7VT4A%2b", "No chip found, probably due to flash translation. http://www.flashrom.org/pipermail/flashrom/2009-August/000393.html"),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000408 B("ASRock", "K8S8X", 1, "http://www.asrock.com/mb/overview.asp?Model=K8S8X", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000409 B("ASRock", "M3A790GXH/128M", 1, "http://www.asrock.com/mb/overview.asp?Model=M3A790GXH/128M", NULL),
410 B("ASRock", "P4i65GV", 1, "http://www.asrock.com/mb/overview.asp?Model=P4i65GV", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000411 B("ASUS", "A7N8X Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=wAsRYm41KTp78MFC", NULL),
412 B("ASUS", "A7N8X-E Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=TmQtPJv4jIxmL9C2", NULL),
413 B("ASUS", "A7V133", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/socka/kt133a/a7v133/", NULL),
Uwe Hermann45bd1442010-09-14 23:20:35 +0000414 B("ASUS", "A7V333", 1, "ftp://ftp.asus.com.tw/pub/asus/mb/socka/kt333/a7v333/", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000415 B("ASUS", "A7V400-MX", 1, "http://www.asus.com/product.aspx?P_ID=hORgEHRBDLMfwAwx", NULL),
416 B("ASUS", "A7V600-X", 1, "http://www.asus.com/product.aspx?P_ID=L2XYS0rmtCjeOr4k", NULL),
417 B("ASUS", "A7V8X", 1, "http://www.asus.com/product.aspx?P_ID=qfpaGrAy2kLVo0f2", NULL),
418 B("ASUS", "A7V8X-MX", 1, "http://www.asus.com/product.aspx?P_ID=SEJOOYqfuQPitx2H", NULL),
419 B("ASUS", "A7V8X-MX SE", 1, "http://www.asus.com/product.aspx?P_ID=1guVBT1qV5oqhHyZ", NULL),
420 B("ASUS", "A7V8X-X", 1, "http://www.asus.com/product.aspx?P_ID=YcXfRrWHZ9RKoVmw", NULL),
Uwe Hermannead705f2010-08-15 15:26:30 +0000421 B("ASUS", "A8Jm", 1, "http://www.asus.com/product.aspx?P_ID=VztICtOgiU6drx4m", NULL),
Stefan Taunera9cbbac2011-08-07 13:17:20 +0000422 B("ASUS", "A8M2N-LA (NodusM3-GL8E)", 1, "http://h10010.www1.hp.com/ewfrf/wc/document?docname=c00757531&cc=us&dlc=en&lc=en", "This is an OEM board from HP, the HP name is NodusM3-GL8E."),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000423 B("ASUS", "A8N-E", 1, "http://www.asus.com/product.aspx?P_ID=DzbA8hgqchMBOVRz", NULL),
Uwe Hermannead705f2010-08-15 15:26:30 +0000424 B("ASUS", "A8N-LA (Nagami-GL8E)", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&cc=us&docname=c00647121&dlc=en", "This is an OEM board from HP, the HP name is Nagami-GL8E."),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000425 B("ASUS", "A8N-SLI", 1, "http://www.asus.com/product.aspx?P_ID=J9FKa8z2xVId3pDK", NULL),
Stefan Tauner2414e092011-08-06 16:16:45 +0000426 B("ASUS", "A8N-SLI Deluxe", 0, NULL, "Untested board enable."),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000427 B("ASUS", "A8N-SLI Premium", 1, "http://www.asus.com/product.aspx?P_ID=nbulqxniNmzf0mH1", NULL),
Uwe Hermann19f46f22011-06-18 22:56:14 +0000428 B("ASUS", "A8N-VM", 1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NVM/", NULL),
Michael Karcher7af6cef2010-07-08 09:32:18 +0000429 B("ASUS", "A8N-VM CSM", 1, "http://www.asus.com/product.aspx?P_ID=JBqqlpj4cspbSa3s", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000430 B("ASUS", "A8NE-FM/S", 1, "http://www.hardwareschotte.de/hardware/preise/proid_1266090/preis_ASUS+A8NE-FM", NULL),
431 B("ASUS", "A8V Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=tvpdgPNCPaABZRVU", NULL),
432 B("ASUS", "A8V-E Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=hQBPIJWEZnnGAZEh", NULL),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000433 B("ASUS", "A8V-E SE", 1, "http://www.asus.com/product.aspx?P_ID=VMfiJJRYTHM4gXIi", "See http://www.coreboot.org/pipermail/coreboot/2007-October/026496.html"),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000434 B("ASUS", "E35M1-I DELUXE", 1, "http://www.asus.com/product.aspx?P_ID=9BmKhMwWCwqyl1lz", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000435 B("ASUS", "K8V", 1, "http://www.asus.com/product.aspx?P_ID=fG2KZOWF7v6MRFRm", NULL),
436 B("ASUS", "K8V SE Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=65HeDI8XM1u6Uy6o", NULL),
437 B("ASUS", "K8V-X SE", 1, "http://www.asus.com/product.aspx?P_ID=lzDXlbBVHkdckHVr", NULL),
438 B("ASUS", "M2A-MX", 1, "http://www.asus.com/product.aspx?P_ID=BmaOnPewi1JgltOZ", NULL),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000439 B("ASUS", "M2A-VM", 1, "http://www.asus.com/product.aspx?P_ID=St3pWpym8xXpROQS", "See http://www.coreboot.org/pipermail/coreboot/2007-September/025281.html"),
Uwe Hermann1e94fa62010-08-08 15:52:07 +0000440 B("ASUS", "M2N32-SLI Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=0jMy2X8lKstYRvev", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000441 B("ASUS", "M2N-E", 1, "http://www.asus.com/product.aspx?P_ID=NFlvt10av3F7ayQ9", "If the machine doesn't come up again after flashing, try resetting the NVRAM(CMOS). The MAC address of the onboard network card will change to the value stored in the new image, so backup the old address first. See http://www.flashrom.org/pipermail/flashrom/2009-November/000879.html"),
Uwe Hermann1e94fa62010-08-08 15:52:07 +0000442 B("ASUS", "M2N-SLI Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=szSFtrap7crpBaQE", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000443 B("ASUS", "M2NBP-VM CSM", 1, "http://www.asus.com/product.aspx?P_ID=MnOfzTGd2KkwG0rF", NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000444 B("ASUS", "M2NPV-VM", 1, "http://www.asus.com/product.aspx?P_ID=HGTVnGv5nGahCYgK", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000445 B("ASUS", "M2V", 1, "http://www.asus.com/product.aspx?P_ID=OqYlEDFfF6ZqZGvp", NULL),
446 B("ASUS", "M2V-MX", 1, "http://www.asus.com/product.aspx?P_ID=7grf8Ci4yxnqzt3z", NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000447 B("ASUS", "M3A", 1, "http://www.asus.com/product.aspx?P_ID=P48rppKk4jrc9pNd", NULL),
448 B("ASUS", "M3A76-CM", 1, "http://www.asus.com/product.aspx?P_ID=aU8effdifLvraVze", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000449 B("ASUS", "M3A78-EM", 1, "http://www.asus.com/product.aspx?P_ID=KjpYqzmAd9vsTM2D", NULL),
Uwe Hermann19f46f22011-06-18 22:56:14 +0000450 B("ASUS", "M4A78-EM", 1, "http://www.asus.com/product.aspx?P_ID=0KyowHKUFAQqH2DO", NULL),
Stefan Tauner716e0982011-07-25 20:38:52 +0000451 B("ASUS", "M4A785TD-V EVO", 1, "http://www.asus.com/product.aspx?P_ID=fcsXWSxnhzZE9rnR", NULL),
Uwe Hermann1e94fa62010-08-08 15:52:07 +0000452 B("ASUS", "M4A785TD-M EVO", 1, "http://www.asus.com/product.aspx?P_ID=QHbvGVB1mXmmD8qQ", NULL),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000453 B("ASUS", "M4A79T Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=lhJiLTN5huPfCVkW", NULL),
454 B("ASUS", "M4A87TD/USB3", 1, "http://www.asus.com/product.aspx?P_ID=nlWYrI9wlNIYHAaa", NULL),
Joshua Roysc73e2812011-07-09 19:46:53 +0000455 B("ASUS", "M6Ne", 0, "http://www.asus.com/Product.aspx?P_ID=IbqN4JCxeRiep4WN", "Untested board enable."),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000456 B("ASUS", "MEW-AM", 0, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock370/810/mew-am/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."),
457 B("ASUS", "MEW-VM", 0, "http://www.elhvb.com/mboards/OEM/HP/manual/ASUS%20MEW-VM.htm", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000458 B("ASUS", "P2B", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b/", NULL),
459 B("ASUS", "P2B-D", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/", NULL),
460 B("ASUS", "P2B-DS", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-ds/", NULL),
461 B("ASUS", "P2B-F", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/", NULL),
Mattias Mattsson85016b92010-09-01 01:21:34 +0000462 B("ASUS", "P2B-N", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-n/", NULL),
Uwe Hermann1e94fa62010-08-08 15:52:07 +0000463 B("ASUS", "P2E-M", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440ex/p2e-m/", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000464 B("ASUS", "P2L97-S", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440lx/p2l97-s/", NULL),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000465 B("ASUS", "P3B-F", 0, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p3b-f/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000466 B("ASUS", "P4B266", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4b266/", NULL),
467 B("ASUS", "P4B266-LM", 1, "http://esupport.sony.com/US/perl/swu-list.pl?mdl=PCVRX650", NULL),
Uwe Hermannead705f2010-08-15 15:26:30 +0000468 B("ASUS", "P4B533-E", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4b533-e/", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000469 B("ASUS", "P4C800-E Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=cFuVCr9bXXCckmcK", NULL),
Michael Karcherf4b58792010-09-10 14:54:18 +0000470 B("ASUS", "P4P800", 1, "http://www.asus.com/product.aspx?P_ID=DYt1Et9MlBChqzLb", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000471 B("ASUS", "P4P800-E Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=INIJUvLlif7LHp3g", NULL),
Mattias Mattssonfb60cec2010-09-13 19:39:25 +0000472 B("ASUS", "P4SC-E", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4sc-e/", "Part of ASUS Terminator P4 533 barebone system"),
Michael Karcher87c90992010-07-24 11:03:48 +0000473 B("ASUS", "P4SD-LA", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00022505", NULL),
Stefan Tauner716e0982011-07-25 20:38:52 +0000474 B("ASUS", "P4S533-X", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4s533-x/", NULL),
Uwe Hermannead705f2010-08-15 15:26:30 +0000475 B("ASUS", "P4S800-MX", 1, "http://www.asus.com/product.aspx?P_ID=Bb57zoJhmO1Qkcrh", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000476 B("ASUS", "P5A", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock7/ali/p5a/", NULL),
477 B("ASUS", "P5B", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/socket775/P5B/", NULL),
478 B("ASUS", "P5B-Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=bswT66IBSb2rEWNa", NULL),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000479 B("ASUS", "P5BV-M", 0, "ftp://ftp.asus.com.tw/pub/ASUS/mb/socket775/P5B-VM/", "Reported by Bernhard M. Wiedemann <bernhard@uml12d.zq1.de> to flashrom@coreboot.org, no public archive. Missing board enable and/or SST49LF008A unlocking. May work now."),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000480 B("ASUS", "P5GC-MX/1333", 1, "http://www.asus.com/product.aspx?P_ID=PYvbfOokwxUzJky3", NULL),
Joshua Roys1fd4f9e2011-08-11 05:47:32 +0000481 B("ASUS", "P5GD2 Premium", 1, "http://www.asus.it/product.aspx?P_ID=lRKaz1Rb6Xb0OFM7", NULL),
Stefan Tauner716e0982011-07-25 20:38:52 +0000482 B("ASUS", "P5GDC Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=AbeoopyNpI2TZixg", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000483 B("ASUS", "P5KC", 1, "http://www.asus.com/product.aspx?P_ID=fFZ8oUIGmLpwNMjj", NULL),
484 B("ASUS", "P5L-MX", 1, "http://www.asus.com/product.aspx?P_ID=X70d3NCzH2DE9vWH", NULL),
Joshua Roysac8b2a12011-08-11 04:21:34 +0000485 B("ASUS", "P5LD2", 0, NULL, "Untested board enable."),
Michael Karcher4a23e442010-09-10 14:46:46 +0000486 B("ASUS", "P5GD1 Pro", 1, "http://www.asus.com/product.aspx?P_ID=50M49xQh71EZOeM1", NULL),
Stefan Tauneraf4b1582011-08-06 16:16:33 +0000487 B("ASUS", "P5N-E SLI", 0, "http://www.asus.com/product.aspx?P_ID=KyHOsOKWujC2QguJ", "Needs a board enable (http://patchwork.coreboot.org/patch/3298/)."),
Uwe Hermann19f46f22011-06-18 22:56:14 +0000488 B("ASUS", "P5N32-E SLI", 1, "http://www.asus.com/product.aspx?P_ID=vBZLIBtPzYB2bLcb", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000489 B("ASUS", "P5ND2-SLI Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=WY7XroDuUImVbgp5", NULL),
Michael Karcher72eeab52010-07-24 10:41:42 +0000490 B("ASUS", "P5PE-VM", 1, "http://www.asus.com/product.aspx?P_ID=k3h0ZFVu9Lo1dUvk", NULL),
Uwe Hermann19f46f22011-06-18 22:56:14 +0000491 B("ASUS", "P5VD1-X", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5VD1X/", NULL),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000492 B("ASUS", "P6T SE", 1, "http://www.asus.com/product.aspx?P_ID=t4yhK6y9W9o7iQ9E", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000493 B("ASUS", "P6T Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=vXixf82co6Q5v0BZ", NULL),
494 B("ASUS", "P6T Deluxe V2", 1, "http://www.asus.com/product.aspx?P_ID=iRlP8RG9han6saZx", NULL),
Uwe Hermann19f46f22011-06-18 22:56:14 +0000495 B("ASUS", "P7H57D-V EVO", 1, "http://www.asus.com/Motherboards/Intel_Socket_1156/P7H57DV_EVO/", NULL),
Uwe Hermanna3473242010-09-14 22:59:39 +0000496 B("ASUS", "Z8NA-D6C", 1, "http://www.asus.com/product.aspx?P_ID=k81cpN8uEB01BpQ6", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000497 B("BCOM", "WinNET100", 1, "http://www.coreboot.org/BCOM_WINNET100", "Used in the IGEL-316 thin client."),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000498 B("Biostar", "M6TBA", 0, "ftp://ftp.biostar-usa.com/manuals/M6TBA/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000499 B("Biostar", "M7NCD Pro", 1, "http://www.biostar.com.tw/app/en/mb/content.php?S_ID=260", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000500 B("Biostar", "P4M80-M4", 1, "http://www.biostar-usa.com/mbdetails.asp?model=p4m80-m4", NULL),
Daniel Lenskib9e2cb52010-07-30 17:08:29 +0000501 B("Biostar", "TA780G M2+", 1, "http://www.biostar.com.tw/app/en/t-series/content.php?S_ID=344", NULL),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000502 B("Boser", "HS-6637", 0, "http://www.boser.com.tw/manual/HS-62376637v3.4.pdf", "Reported by Mark Robinson <mark@zl2tod.net> to flashrom@coreboot.org, no public archive. Missing board enable and/or F29C51002T unlocking. May work now."),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000503 B("Congatec", "conga-X852", 1, "http://www.congatec.com/single_news+M57715f6263d.html?&L=1", NULL),
Mattias Mattsson2eaad632010-10-05 21:32:29 +0000504 B("Dell", "OptiPlex GX1", 1, "http://support.dell.com/support/edocs/systems/ban_gx1/en/index.htm", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000505 B("Dell", "PowerEdge 1850", 1, "http://support.dell.com/support/edocs/systems/pe1850/en/index.htm", NULL),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000506 B("DFI", "855GME-MGF", 0, "http://www.dfi.com.tw/portal/CM/cmproduct/XX_cmproddetail/XX_WbProdsWindow?action=e&downloadType=&windowstate=normal&mode=view&downloadFlag=false&itemId=433", "Probably needs a board enable. http://www.coreboot.org/pipermail/coreboot/2009-May/048549.html"),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000507 B("DFI", "Blood-Iron P35 T2RL", 1, "http://lp.lanparty.com.tw/portal/CM/cmproduct/XX_cmproddetail/XX_WbProdsWindow?itemId=516&downloadFlag=false&action=1", NULL),
Mattias Mattssonf4925162010-09-16 22:09:18 +0000508 B("Elitegroup", "GeForce6100SM-M ", 1, "http://www.ecs.com.tw/ECSWebSite/Product/Product_Detail.aspx?DetailID=685&MenuID=24", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000509 B("Elitegroup", "K7S5A", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=279&CategoryID=1&DetailName=Specification&MenuID=1&LanID=0", NULL),
510 B("Elitegroup", "K7S6A", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=77&CategoryID=1&DetailName=Specification&MenuID=52&LanID=0", NULL),
511 B("Elitegroup", "K7VTA3", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=264&CategoryID=1&DetailName=Specification&MenuID=52&LanID=0", NULL),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000512 B("Elitegroup", "P6IWP-Fe", 1, "http://www.ecs.com.tw/ECSWebSite_2007/Products/ProductsDetail.aspx?CategoryID=1&TypeID=3&DetailID=95&DetailName=Feature&MenuID=1&LanID=0", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000513 B("Elitegroup", "P6VAP-A+", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=117&CategoryID=1&DetailName=Specification&MenuID=1&LanID=0", NULL),
Daniel Lenskib9e2cb52010-07-30 17:08:29 +0000514 B("Elitegroup", "RS485M-M", 1, "http://www.ecs.com.tw/ECSWebSite_2007/Products/ProductsDetail.aspx?CategoryID=1&DetailID=654&DetailName=Feature&MenuID=1&LanID=0", NULL),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000515 B("Emerson", "ATCA-7360", 1, "http://www.emerson.com/sites/Network_Power/en-US/Products/Product_Detail/Product1/Pages/EmbCompATCA-7360.aspx", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000516 B("EPoX", "EP-8K5A2", 1, "http://www.epox.com/product.asp?ID=EP-8K5A2", NULL),
Stefan Tauneraf4b1582011-08-06 16:16:33 +0000517 B("EPoX", "EP-8NPA7I", 1, "http://www.epox.com/product.asp?ID=EP-8NPA7I", NULL),
518 B("EPoX", "EP-9NPA7I", 1, "http://www.epox.com/product.asp?ID=EP-9NPA7I", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000519 B("EPoX", "EP-8RDA3+", 1, "http://www.epox.com/product.asp?ID=EP-8RDA3plus", NULL),
520 B("EPoX", "EP-BX3", 1, "http://www.epox.com/product.asp?ID=EP-BX3", NULL),
Stefan Tauner93f70232011-07-26 14:33:46 +0000521 B("EVGA", "132-CK-NF78", 1, "http://www.evga.com/articles/385.asp", NULL),
Stefan Tauneref101752011-05-18 01:32:09 +0000522 B("EVGA", "270-WS-W555-A2 (Classified SR-2)", 1, "http://www.evga.com/products/moreInfo.asp?pn=270-WS-W555-A2", NULL),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000523 B("FIC", "VA-502", 0, "ftp://ftp.fic.com.tw/motherboard/manual/socket7/va-502/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. Seems the PCI subsystem IDs are identical with the Tekram P6Pro-A5. May work now."),
Michael Karcher2842db32011-04-14 23:14:27 +0000524 B("Foxconn", "6150K8MD-8EKRSH", 1, "http://www.foxconnchannel.com/product/motherboards/detail_overview.aspx?id=en-us0000157", NULL),
Uwe Hermann51afebb2010-08-01 00:13:49 +0000525 B("Foxconn", "A6VMX", 1, "http://www.foxconnchannel.com/product/motherboards/detail_overview.aspx?id=en-us0000346", NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000526 B("Freetech", "P6F91i", 1, "http://web.archive.org/web/20010417035034/http://www.freetech.com/prod/P6F91i.html", NULL),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000527 B("Fujitsu-Siemens", "ESPRIMO P5915", 1, "http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/professionalpc/ESPRIMO/P/EsprimoP5915-6.htm", "Mainboard model is D2312-A2."),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000528 B("GIGABYTE", "GA-2761GXDK", 1, "http://www.computerbase.de/news/hardware/mainboards/amd-systeme/2007/mai/gigabyte_dtx-mainboard/", NULL),
Peter Lemenkov8b83f552010-06-04 16:39:35 +0000529 B("GIGABYTE", "GA-6BXC", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1445", NULL),
530 B("GIGABYTE", "GA-6BXDU", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1429", NULL),
Michael Karcher39dcdec2010-10-05 17:29:35 +0000531 B("GIGABYTE", "GA-6IEM", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1379", NULL),
Uwe Hermann19f46f22011-06-18 22:56:14 +0000532 B("GIGABYTE", "GA-6VXE7+", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2410", NULL),
Peter Lemenkov8b83f552010-06-04 16:39:35 +0000533 B("GIGABYTE", "GA-6ZMA", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1541", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000534 B("GIGABYTE", "GA-MA785GMT-UD2H (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3156", NULL),
535 B("GIGABYTE", "GA-770TA-UD3", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3272", NULL),
536 B("GIGABYTE", "GA-7DXR", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1302", NULL),
Peter Lemenkov8b83f552010-06-04 16:39:35 +0000537 B("GIGABYTE", "GA-7VT600", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1666", NULL),
538 B("GIGABYTE", "GA-7ZM", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1366", "Works fine if you remove jumper JP9 on the board and disable the flash protection BIOS option."),
Joshua Roys9d9a1042011-06-13 16:59:01 +0000539 B("GIGABYTE", "GA-8IP775", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1830", NULL),
Michael Karcherc7a1ffb2010-07-24 22:27:29 +0000540 B("GIGABYTE", "GA-8IRML", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1343", NULL),
Michael Karcherc8613242010-08-13 12:49:01 +0000541 B("GIGABYTE", "GA-8PE667 Ultra 2", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1607", NULL),
Stefan Tauner716e0982011-07-25 20:38:52 +0000542 B("GIGABYTE", "GA-8SIMLH", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1399", NULL),
543 B("GIGABYTE", "GA-945PL-S3P (rev. 6.6)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2541", NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000544 B("GIGABYTE", "GA-965GM-S2 (rev. 2.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2617", NULL),
Peter Lemenkov8b83f552010-06-04 16:39:35 +0000545 B("GIGABYTE", "GA-965P-DS4", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2288", NULL),
546 B("GIGABYTE", "GA-EP35-DS3L", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2778", NULL),
547 B("GIGABYTE", "GA-EX58-UD4P", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2986", NULL),
548 B("GIGABYTE", "GA-K8N-SLI", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1928", NULL),
Michael Karcher242efd42011-03-06 12:09:05 +0000549 B("GIGABYTE", "GA-K8N51GMF", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1950", NULL),
Joshua Roys2ee137f2010-09-07 17:52:09 +0000550 B("GIGABYTE", "GA-K8N51GMF-9", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1939", NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000551 B("GIGABYTE", "GA-K8NS Pro-939", 0, "http://www.gigabyte.com/products/product-page.aspx?pid=1875", "Untested board enable."),
Peter Lemenkov8b83f552010-06-04 16:39:35 +0000552 B("GIGABYTE", "GA-M57SLI-S4", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2287", NULL),
553 B("GIGABYTE", "GA-M61P-S3", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2434", NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000554 B("GIGABYTE", "GA-M720-US3", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3006", NULL),
Peter Lemenkov8b83f552010-06-04 16:39:35 +0000555 B("GIGABYTE", "GA-MA69VM-S2", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2500", NULL),
Peter Lemenkov12a58b22010-07-29 21:15:45 +0000556 B("GIGABYTE", "GA-MA74GM-S2H (rev. 3.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3152", NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000557 B("GIGABYTE", "GA-MA770-UD3 (rev. 2.1)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3302", NULL),
Peter Lemenkov8b83f552010-06-04 16:39:35 +0000558 B("GIGABYTE", "GA-MA770T-UD3P", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3096", NULL),
Bernhard Geier94b36092011-03-06 22:16:30 +0000559 B("GIGABYTE", "GA-MA780G-UD3H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3004", NULL),
Yul Rottmann6d6ab742011-03-05 16:31:57 +0000560 B("GIGABYTE", "GA-MA78G-DS3H (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2800", NULL),
Peter Lemenkov8b83f552010-06-04 16:39:35 +0000561 B("GIGABYTE", "GA-MA78GM-S2H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2758", NULL), /* TODO: Rev. 1.0, 1.1, or 2.x? */
562 B("GIGABYTE", "GA-MA78GPM-DS2H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2859", NULL),
563 B("GIGABYTE", "GA-MA790FX-DQ6", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2690", NULL),
564 B("GIGABYTE", "GA-MA790GP-DS4H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2887", NULL),
Stefan Tauner67fbd772011-05-18 01:31:39 +0000565 B("GIGABYTE", "GA-MA790XT-UD4P (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3010", NULL),
Stefan Taunerd06d9412011-06-12 19:47:55 +0000566 B("GIGABYTE", "GA-P55A-UD4 (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3436", NULL),
Michael Karchercba52de2011-03-06 12:07:19 +0000567 B("HP", "e-Vectra P2706T", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?lang=en&cc=us&prodSeriesId=77515&prodTypeId=12454", NULL),
Uwe Hermannead705f2010-08-15 15:26:30 +0000568 B("HP", "ProLiant DL145 G3", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00816835&lang=en&cc=us&taskId=101&prodSeriesId=3219755&prodTypeId=15351", NULL),
569 B("HP", "ProLiant DL165 G6", 1, "http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/15351-15351-3328412-241644-3328421-3955644.html", NULL),
Michael Karchere57957c2010-07-24 11:14:37 +0000570 B("HP", "Puffer2-UL8E", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00300023", NULL),
Uwe Hermannead705f2010-08-15 15:26:30 +0000571 B("HP", "Vectra VL400", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060658&lang=en&cc=us", NULL),
572 B("HP", "Vectra VL420 SFF", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060661&lang=en&cc=us", NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000573 B("HP", "xw4400 (0A68h)", 0, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00775230", "ICH7 with SPI lock down, BIOS lock, flash block detection (SST25VF080B); see http://paste.flashrom.org/view.php?id=686"),
574 B("HP", "xw9400", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?lang=en&cc=us&prodSeriesId=3211286&prodTypeId=12454", "Boot block is write protected unless the solder points next to F2 are shorted."),
Uwe Hermannead705f2010-08-15 15:26:30 +0000575 B("IBASE", "MB899", 1, "http://www.ibase-i.com.tw/2009/mb899.html", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000576 B("IBM", "x3455", 1, "http://www-03.ibm.com/systems/x/hardware/rack/x3455/index.html", NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000577 B("IEI", "PICOe-9452", 1, "http://www.ieiworld.com/product_groups/industrial/content.aspx?keyword=WSB&gid=00001000010000000001&cid=08125380291060861658&id=08142308605814597144", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000578 B("Intel", "D201GLY", 1, "http://www.intel.com/support/motherboards/desktop/d201gly/index.htm", NULL),
Stefan Tauner82f54e52011-05-18 01:31:17 +0000579 B("Intel", "DG45ID", 0, "http://www.intel.com/products/desktop/motherboards/dg45id/dg45id-overview.htm", "Probing works (Winbond W25x32, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME is locked."),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000580 B("Intel", "EP80759", 1, NULL, NULL),
Uwe Hermanna3473242010-09-14 22:59:39 +0000581 B("Intel", "Foxhollow", 1, NULL, "Intel reference board."),
582 B("Intel", "Greencity", 1, NULL, "Intel reference board."),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000583 B("Intel", "SE440BX-2", 0, "http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&ProductFamily=Desktop+Boards&ProductLine=Discontinued+Motherboards&ProductProduct=Intel%C2%AE+SE440BX-2+Motherboard", "Probably won't work, see http://www.coreboot.org/pipermail/flashrom/2010-July/003952.html"),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000584 B("IWILL", "DK8-HTX", 1, "http://web.archive.org/web/20060507170150/http://www.iwill.net/product_2.asp?p_id=98", NULL),
Stefan Tauner93f70232011-07-26 14:33:46 +0000585 B("Jetway", "J-7BXAN", 1, "http://www.jetway.com.tw/evisn/download/d7BXAS.htm", NULL),
586 B("Jetway", "J7F4K1G5D-PB", 1, "http://www.jetway.com.tw/jw/ipcboard_view.asp?productid=282&proname=J7F4K1G5D", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000587 B("Kontron", "986LCD-M", 1, "http://de.kontron.com/products/boards+and+mezzanines/embedded+motherboards/miniitx+motherboards/986lcdmmitx.html", NULL),
Uwe Hermann19f46f22011-06-18 22:56:14 +0000588 B("Lanner", "EM-8510C", 1, NULL, NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000589 B("Lex", "CV700A", 1, "http://www.lex.com.tw/product/CV700A-spec.htm", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000590 B("Mitac", "6513WU", 1, "http://web.archive.org/web/20050313054828/http://www.mitac.com/micweb/products/tyan/6513wu/6513wu.htm", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000591 B("MSI", "MS-6153", 1, "http://www.msi.com/product/mb/MS-6153.html", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000592 B("MSI", "MS-6156", 1, "http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/boards/Motherboards/MicroStar/Ms6156/MS6156.htm", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000593 B("MSI", "MS-6163 (MS-6163 Pro)",1, "http://www.msi.com/product/mb/MS-6163-Pro.html", NULL),
594 B("MSI", "MS-6178", 0, "http://www.msi.com/product/mb/MS-6178.html", "Immediately powers off if you try to hot-plug the chip. However, this does '''not''' happen if you use coreboot. Owned by Uwe Hermann <uwe@hermann-uwe.de>."),
595 B("MSI", "MS-6330 (K7T Turbo)", 1, "http://www.msi.com/product/mb/K7T-Turbo.html", NULL),
596 B("MSI", "MS-6391 (845 Pro4)", 1, "http://www.msi.com/product/mb/845-Pro4.html", NULL),
597 B("MSI", "MS-6561 (745 Ultra)", 1, "http://www.msi.com/product/mb/745-Ultra.html", NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000598 B("MSI", "MS-6566 (845 Ultra-C)",1, "http://www.msi.com/product/mb/845-Ultra-C.html", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000599 B("MSI", "MS-6570 (K7N2)", 1, "http://www.msi.com/product/mb/K7N2.html", NULL),
Uwe Hermannead705f2010-08-15 15:26:30 +0000600 B("MSI", "MS-6577 (Xenon)", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?product=90390&lc=en&cc=us&dlc=en&docname=bph07843", "This is an OEM board from HP, the HP name is Xenon."),
Benjamin Bellecff562672011-07-12 22:01:44 +0000601 B("MSI", "MS-6590 (KT4 Ultra)", 1, "http://www.msi.com/product/mb/KT4-Ultra.html", NULL),
602 B("MSI", "MS-6702E (K8T Neo2-F)",1, "http://www.msi.com/product/mb/K8T-Neo2-F--FIR.html", NULL),
603 B("MSI", "MS-6712 (KT4V)", 1, "http://www.msi.com/product/mb/KT4V---KT4V-L--v1-0-.html", NULL),
604 B("MSI", "MS-6787 (P4MAM-V/P4MAM-L)", 1, "http://www.msi.com/service/search/?kw=6787&type=product", NULL),
605 B("MSI", "MS-7005 (651M-L)", 1, "http://www.msi.com/product/mb/651M-L.html", NULL),
606 B("MSI", "MS-7025 (K8N Neo2 Platinum)", 1, "http://www.msi.com/product/mb/K8N-Neo2-Platinum.html", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000607 B("MSI", "MS-7046", 1, "http://www.heimir.de/ms7046/", NULL),
Stefan Tauner93f70232011-07-26 14:33:46 +0000608 B("MSI", "MS-7061 (KM4M-V/KM4AM-V)", 1, "http://www.msi.com/service/search/?kw=7061&type=product", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000609 B("MSI", "MS-7065", 1, "http://browse.geekbench.ca/geekbench2/view/53114", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000610 B("MSI", "MS-7135 (K8N Neo3)", 1, "http://www.msi.com/product/mb/K8N-Neo3.html", NULL),
Stefan Tauner716e0982011-07-25 20:38:52 +0000611 B("MSI", "MS-7142 (K8MM-V)", 1, "http://www.msi.com/product/mb/K8MM-V.html", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000612 B("MSI", "MS-7168 (Orion)", 1, "http://support.packardbell.co.uk/uk/item/index.php?i=spec_orion&pi=platform_honeymoon_istart", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000613 B("MSI", "MS-7207 (K8NGM2-L)", 1, "http://www.msi.com/product/mb/K8NGM2-FID--IL--L.html", NULL),
614 B("MSI", "MS-7211 (PM8M3-V)", 1, "http://www.msi.com/product/mb/PM8M3-V.html", NULL),
615 B("MSI", "MS-7236 (945PL Neo3)", 1, "http://www.msi.com/product/mb/945PL-Neo3.html", NULL),
616 B("MSI", "MS-7253 (K9VGM-V)", 1, "http://www.msi.com/product/mb/K9VGM-V.html", NULL),
617 B("MSI", "MS-7255 (P4M890M)", 1, "http://www.msi.com/product/mb/P4M890M-L-IL.html", NULL),
618 B("MSI", "MS-7260 (K9N Neo PCB 1.0)", 0, "http://www.msi.com/product/mb/K9N-Neo--PCB-1-0-.html", "Interestingly flashrom does not work when the vendor BIOS is booted, but it ''does'' work flawlessly when the machine is booted with coreboot. Owned by Uwe Hermann <uwe@hermann-uwe.de>."),
619 B("MSI", "MS-7312 (K9MM-V)", 1, "http://www.msi.com/product/mb/K9MM-V.html", NULL),
620 B("MSI", "MS-7345 (P35 Neo2-FIR)", 1, "http://www.msi.com/product/mb/P35-Neo2-FR---FIR.html", NULL),
621 B("MSI", "MS-7368 (K9AG Neo2-Digital)", 1, "http://www.msi.com/product/mb/K9AG-Neo2-Digital.html", NULL),
Stefan Tauner716e0982011-07-25 20:38:52 +0000622 B("MSI", "MS-7369 (K9N Neo V2)", 1, "http://www.msi.com/product/mb/K9N-Neo-V2.html", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000623 B("MSI", "MS-7376 (K9A2 Platinum V1)", 1, "http://www.msi.com/product/mb/K9A2-Platinum.html", NULL),
Stefan Tauner8179be52011-06-04 13:13:34 +0000624 B("MSI", "MS-7529 (G31M3-L(S) V2)", 1, "http://www.msi.com/product/mb/G31M3-L-V2---G31M3-LS-V2.html", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000625 B("MSI", "MS-7529 (G31TM-P21)", 1, "http://www.msi.com/product/mb/G31TM-P21.html", NULL),
626 B("MSI", "MS-7596 (785GM-E51)", 1, "http://www.msi.com/product/mb/785GM-E51.html", NULL),
Antony Rheneus0fbba982011-05-26 14:28:51 +0000627 B("MSI", "MS-7599 (870-C45)", 1, "http://www.msi.com/product/mb/870-C45.html", NULL),
Benjamin Bellecff562672011-07-12 22:01:44 +0000628 B("MSI", "MS-7640 (890FXA-GD70)",1, "http://www.msi.com/product/mb/890FXA-GD70.html", NULL),
629 B("MSI", "MS-7642 (890GXM-G65)", 1, "http://www.msi.com/product/mb/890GXM-G65.html", NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000630 B("MSI", "MS-7698 (E350IA-E45)", 1, "http://www.msi.com/product/mb/E350IA-E45.html", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000631 B("NEC", "PowerMate 2000", 1, "http://support.necam.com/mobilesolutions/hardware/Desktops/pm2000/celeron/", NULL),
632 B("Nokia", "IP530", 1, NULL, NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000633 B("PCCHIPS ", "M863G (V5.1A)", 1, "http://www.pcchips.com.tw/PCCWebSite/Products/ProductsDetail.aspx?CategoryID=1&DetailID=343&DetailName=Feature&MenuID=1&LanID=0", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000634 B("PC Engines", "Alix.1c", 1, "http://pcengines.ch/alix1c.htm", NULL),
635 B("PC Engines", "Alix.2c2", 1, "http://pcengines.ch/alix2c2.htm", NULL),
636 B("PC Engines", "Alix.2c3", 1, "http://pcengines.ch/alix2c3.htm", NULL),
637 B("PC Engines", "Alix.3c3", 1, "http://pcengines.ch/alix3c3.htm", NULL),
638 B("PC Engines", "Alix.3d3", 1, "http://pcengines.ch/alix3d3.htm", NULL),
639 B("PC Engines", "WRAP.2E", 1, "http://pcengines.ch/wrap2e1.htm", NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000640 B("Portwell", "PEB-4700VLA", 1, "http://www.portwell.com/products/detail.asp?CUSTCHAR1=PEB-4700VLA", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000641 B("RCA", "RM4100", 1, "http://www.settoplinux.org/index.php?title=RCA_RM4100", NULL),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000642 B("Samsung", "Polaris 32", 1, NULL, NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000643 B("Shuttle", "AK31", 1, "http://www.motherboard.cz/mb/shuttle/AK31.htm", NULL),
644 B("Shuttle", "AK38N", 1, "http://eu.shuttle.com/en/desktopdefault.aspx/tabid-36/558_read-9889/", NULL),
Uwe Hermann51afebb2010-08-01 00:13:49 +0000645 B("Shuttle", "AV11V30", 1, NULL, NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000646 B("Shuttle", "FD37", 1, "http://www.shuttle.eu/products/discontinued/barebones/sd37p2/", NULL),
647 B("Shuttle", "FN25", 1, "http://www.shuttle.eu/products/discontinued/barebones/sn25p/?0=", NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000648 B("Shuttle", "X50/X50(B)", 1, "http://au.shuttle.com/product_detail_spec.jsp?PI=1241", NULL),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000649 B("Soyo", "SY-5VD", 0, "http://www.soyo.com/content/Downloads/163/&c=80&p=464&l=English", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."),
Uwe Hermann51afebb2010-08-01 00:13:49 +0000650 B("Soyo", "SY-6BA+ III", 1, "http://www.motherboard.cz/mb/soyo/SY-6BA+III.htm", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000651 B("Soyo", "SY-7VCA", 1, "http://www.tomshardware.com/reviews/12-socket-370-motherboards,196-15.html", NULL),
652 B("Sun", "Blade x6250", 1, "http://www.sun.com/servers/blades/x6250/", NULL),
Carl-Daniel Hailfinger9017cec2010-09-04 23:37:40 +0000653 B("Sun", "Fire x4150", 0, "http://www.sun.com/servers/x64/x4150/", "No public report found. May work now."),
654 B("Sun", "Fire x4200", 0, "http://www.sun.com/servers/entry/x4200/", "No public report found. May work now."),
655 B("Sun", "Fire x4540", 0, "http://www.sun.com/servers/x64/x4540/", "No public report found. May work now."),
656 B("Sun", "Fire x4600", 0, "http://www.sun.com/servers/x64/x4600/", "No public report found. May work now."),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000657 B("Supermicro", "H8QC8", 1, "http://www.supermicro.com/Aplus/motherboard/Opteron/nforce/H8QC8.cfm", NULL),
Stefan Taunerd06d9412011-06-12 19:47:55 +0000658 B("Supermicro", "X5DP8-G2", 1, "http://www.supermicro.com/products/motherboard/Xeon/E7501/X5DP8-G2.cfm", NULL),
Stefan Tauner716e0982011-07-25 20:38:52 +0000659 B("Supermicro", "X7DBT-INF", 1, "http://www.supermicro.com/products/motherboard/Xeon1333/5000P/X7DBT-INF.cfm", NULL),
Uwe Hermann19f46f22011-06-18 22:56:14 +0000660 B("Supermicro", "X7SPA-HF", 1, "http://www.supermicro.com/products/motherboard/ATOM/ICH9/X7SPA.cfm?typ=H&IPMI=Y", NULL),
Stefan Taunerd06d9412011-06-12 19:47:55 +0000661 B("Supermicro", "X8DT3", 1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DT3.cfm", NULL),
Shailendra Sodhi6dbab4d2011-05-18 01:32:25 +0000662 B("Supermicro", "X8DTH-6F", 1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTH-6F.cfm", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000663 B("Supermicro", "X8DTT-F", 1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTT-F.cfm", NULL),
Antony Rheneus0fbba982011-05-26 14:28:51 +0000664 B("Supermicro", "X8DTU-F", 1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTU-F.cfm", NULL),
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +0000665 B("Supermicro", "X8SIE(-F)", 0, "http://www.supermicro.com/products/motherboard/Xeon3000/3400/X8SIE.cfm?IPMI=N&TYP=LN2", "Requires unlocking the ME although the registers are set up correctly by the descriptor/BIOS already (tested with swseq and hwseq)."),
Antony Rheneus0fbba982011-05-26 14:28:51 +0000666 B("Supermicro", "X8STi", 1, "http://www.supermicro.com/products/motherboard/Xeon3000/X58/X8STi.cfm", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000667 B("T-Online", "S-100", 1, "http://wiki.freifunk-hannover.de/T-Online_S_100", NULL),
668 B("Tekram", "P6Pro-A5", 1, "http://www.motherboard.cz/mb/tekram/P6Pro-A5.htm", NULL),
669 B("Termtek", "TK-3370 (Rev:2.5B)", 1, NULL, NULL),
670 B("Thomson", "IP1000", 1, "http://www.settoplinux.org/index.php?title=Thomson_IP1000", NULL),
671 B("TriGem", "Lomita", 1, "http://www.e4allupgraders.info/dir1/motherboards/socket370/lomita.shtml", NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000672 B("Tyan", "S5375-1U (Tempest i5100X)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=610", NULL),
673 B("Tyan", "S1846 (Tsunami ATX)", 1, "http://www.tyan.com/archive/products/html/tsunamiatx.html", NULL),
674 B("Tyan", "S2466 (Tiger MPX)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=461", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000675 B("Tyan", "S2498 (Tomcat K7M)", 1, "http://www.tyan.com/archive/products/html/tomcatk7m.html", NULL),
Uwe Hermann19f46f22011-06-18 22:56:14 +0000676 B("Tyan", "S2723 (Tiger i7501)", 1, "http://www.tyan.com/archive/products/html/tigeri7501.html", NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000677 B("Tyan", "S2881 (Thunder K8SR)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=115", NULL),
678 B("Tyan", "S2882 (Thunder K8S Pro)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=121", NULL),
679 B("Tyan", "S2882-D (Thunder K8SD Pro)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=127", NULL),
680 B("Tyan", "S2891 (Thunder K8SRE)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=144", NULL),
681 B("Tyan", "S2892 (Thunder K8SE)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=145", NULL),
682 B("Tyan", "S2895 (Thunder K8WE)", 1, "http://www.tyan.com/archive/products/html/thunderk8we.html", NULL),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000683 B("Tyan", "S2915 (Thunder n6650W)", 1, "http://tyan.com/product_board_detail.aspx?pid=163", NULL),
Uwe Hermanna3473242010-09-14 22:59:39 +0000684 B("Tyan", "S2915-E (Thunder n6650W)", 1, "http://tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=541&SKU=600000041", NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000685 B("Tyan", "S2933 (Thunder n3600S)", 1, "http://tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=478&SKU=600000063", NULL),
686 B("Tyan", "S3095 (Tomcat i945GM)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=181", NULL),
687 B("Tyan", "S3992 (Thunder h2000M)", 1, "http://tyan.com/product_board_detail.aspx?pid=235", NULL),
688 B("Tyan", "S5180 (Toledo i965R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=456", NULL),
689 B("Tyan", "S5191 (Toledo i3000R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=343", NULL),
690 B("Tyan", "S5197 (Toledo i3010W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=349", NULL),
691 B("Tyan", "S5211 (Toledo i3210W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=591", NULL),
692 B("Tyan", "S5211-1U (Toledo i3200R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=593", NULL),
693 B("Tyan", "S5220 (Toledo q35T)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=597", NULL),
694 B("Tyan", "S5375 (Tempest i5100X)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=566", NULL),
695 B("Tyan", "S5376 (Tempest i5100W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=605", "Both S5376G2NR and S5376WAG2NR should work."),
696 B("Tyan", "S5377 (Tempest i5100T)", 1, "http://www.tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=642&SKU=600000017", NULL),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000697 B("Tyan", "S5382 (Tempest i5000PW)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=439", NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000698 B("Tyan", "S5397 (Tempest i5400PW)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=560", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000699 B("VIA", "EPIA M/MII/...", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=202", NULL), /* EPIA-MII link for now */
700 B("VIA", "EPIA SP", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=261", NULL),
701 B("VIA", "EPIA-CN", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=400", NULL),
Michael Karcherbcd25562010-06-12 17:27:44 +0000702 B("VIA", "EPIA EK", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?motherboard_id=420", NULL),
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000703 B("VIA", "EPIA-EX15000G", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=450", NULL),
704 B("VIA", "EPIA-LN", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=473", NULL),
705 B("VIA", "EPIA-M700", 1, "http://via.com.tw/servlet/downloadSvl?motherboard_id=670&download_file_id=3700", NULL),
706 B("VIA", "EPIA-N/NL", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=221", NULL), /* EPIA-N link for now */
707 B("VIA", "EPIA-NX15000G", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=470", NULL),
708 B("VIA", "NAB74X0", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=590", NULL),
709 B("VIA", "pc2500e", 1, "http://www.via.com.tw/en/initiatives/empowered/pc2500_mainboard/index.jsp", NULL),
710 B("VIA", "PC3500G", 1, "http://www.via.com.tw/en/initiatives/empowered/pc3500_mainboard/index.jsp", NULL),
711 B("VIA", "VB700X", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=490", NULL),
Uwe Hermann431f4f72010-09-05 12:41:25 +0000712 B("ZOTAC", "ZBOX HD-ID11", 1, "http://pdde.zotac.com/index.php?page=shop.product_details&product_id=240&category_id=75", NULL),
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000713#endif
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000714
Uwe Hermannd0e347d2009-10-06 13:00:00 +0000715 {},
716};
717
718/* Please keep this list alphabetically ordered by vendor/board. */
Peter Lemenkov4adf8a62010-06-01 10:13:17 +0000719const struct board_info laptops_known[] = {
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000720#if defined(__i386__) || defined(__x86_64__)
Uwe Hermann301703b2010-06-03 16:35:51 +0000721 B("Acer", "Aspire 1520", 1, "http://support.acer.com/us/en/acerpanam/notebook/0000/Acer/Aspire1520/Aspire1520nv.shtml", NULL),
722 B("Acer", "Aspire One", 0, NULL, "http://www.coreboot.org/pipermail/coreboot/2009-May/048041.html"),
723 B("ASUS", "Eee PC 701 4G", 0, "http://www.asus.com/product.aspx?P_ID=h6SPd3tEzLEsrEiS", "It seems the chip (25X40VSIG) is behind some SPI flash translation layer (likely in the EC, the ENE KB3310)."),
724 B("Dell", "Latitude CPi A366XT", 0, "http://www.coreboot.org/Dell_Latitude_CPi_A366XT", "The laptop immediately powers off if you try to hot-swap the chip. It's not yet tested if write/erase would work on this laptop."),
Uwe Hermann49228cb2010-07-29 19:26:15 +0000725 B("HP/Compaq", "nx9005", 0, "http://h18000.www1.hp.com/products/quickspecs/11602_na/11602_na.HTML", "Shuts down when probing for a chip. http://www.flashrom.org/pipermail/flashrom/2010-May/003321.html"),
Uwe Hermann301703b2010-06-03 16:35:51 +0000726 B("HP/Compaq", "nx9010", 0, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&objectID=c00348514", "Hangs upon '''flashrom -V''' (needs hard power-cycle then)."),
727 B("IBM/Lenovo", "Thinkpad T40p", 0, "http://www.thinkwiki.org/wiki/Category:T40p", NULL),
Stefan Tauner82f54e52011-05-18 01:31:17 +0000728 B("IBM/Lenovo", "Thinkpad T410s", 0, "http://www.thinkwiki.org/wiki/Category:T410s", "Probing works (Winbond W25x64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME and platform are locked."),
Uwe Hermann301703b2010-06-03 16:35:51 +0000729 B("IBM/Lenovo", "240", 0, "http://www.stanford.edu/~bresnan//tp240.html", "Seems to (partially) work at first, but one block/sector cannot be written which then leaves you with a bricked laptop. Maybe this can be investigated and fixed in software later."),
730 B("Lenovo", "3000 V100 TF05Cxx", 1, "http://www5.pc.ibm.com/europe/products.nsf/products?openagent&brand=Lenovo3000Notebook&series=Lenovo+3000+V+Series#viewallmodelstop", NULL),
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000731#endif
Uwe Hermannd0e347d2009-10-06 13:00:00 +0000732
Uwe Hermannd0e347d2009-10-06 13:00:00 +0000733 {},
734};
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000735#endif