Flashrom

Flashrom Svn Source Tree

Root/trunk/print.c

1/*
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
22#include <stdio.h>
23#include <string.h>
24#include <stdlib.h>
25#include "flash.h"
26#include "programmer.h"
27
28/*
29 * Return a string corresponding to the bustype parameter.
30 * Memory is obtained with malloc() and must be freed with free() by the caller.
31 */
32char *flashbuses_to_text(enum chipbustype bustype)
33{
34char *ret = calloc(1, 1);
35/*
36 * FIXME: Once all chipsets and flash chips have been updated, NONSPI
37 * will cease to exist and should be eliminated here as well.
38 */
39if (bustype == BUS_NONSPI) {
40ret = strcat_realloc(ret, "Non-SPI, ");
41} else {
42if (bustype & BUS_PARALLEL)
43ret = strcat_realloc(ret, "Parallel, ");
44if (bustype & BUS_LPC)
45ret = strcat_realloc(ret, "LPC, ");
46if (bustype & BUS_FWH)
47ret = strcat_realloc(ret, "FWH, ");
48if (bustype & BUS_SPI)
49ret = strcat_realloc(ret, "SPI, ");
50if (bustype & BUS_PROG)
51ret = strcat_realloc(ret, "Programmer-specific, ");
52if (bustype == BUS_NONE)
53ret = strcat_realloc(ret, "None, ");
54}
55/* Kill last comma. */
56ret[strlen(ret) - 2] = '\0';
57ret = realloc(ret, strlen(ret) + 1);
58return ret;
59}
60
61static void print_supported_chips(void)
62{
63const char *delim = "/";
64const int mintoklen = 5;
65const int border = 2;
66int i, chipcount = 0;
67int maxvendorlen = strlen("Vendor") + 1;
68int maxchiplen = strlen("Device") + 1;
69int maxtypelen = strlen("Type") + 1;
70const struct flashchip *f;
71char *s;
72char *tmpven, *tmpdev;
73int tmpvenlen, tmpdevlen, curvenlen, curdevlen;
74
75/* calculate maximum column widths and by iterating over all chips */
76for (f = flashchips; f->name != NULL; f++) {
77/* Ignore generic entries. */
78if (!strncmp(f->vendor, "Unknown", 7) ||
79 !strncmp(f->vendor, "Programmer", 10) ||
80 !strncmp(f->name, "unknown", 7))
81continue;
82chipcount++;
83
84/* Find maximum vendor length (respecting line splitting). */
85tmpven = (char *)f->vendor;
86do {
87/* and take minimum token lengths into account */
88tmpvenlen = 0;
89do {
90tmpvenlen += strcspn(tmpven, delim);
91/* skip to the address after the first token */
92tmpven += tmpvenlen;
93if (tmpven[0] == '\0')
94break;
95tmpven++;
96} while (tmpvenlen < mintoklen);
97maxvendorlen = max(maxvendorlen, tmpvenlen);
98if (tmpven[0] == '\0')
99break;
100} while (1);
101
102/* same for device name */
103tmpdev = (char *)f->name;
104do {
105tmpdevlen = 0;
106do {
107tmpdevlen += strcspn(tmpdev, delim);
108tmpdev += tmpdevlen;
109if (tmpdev[0] == '\0')
110break;
111tmpdev++;
112} while (tmpdevlen < mintoklen);
113maxchiplen = max(maxchiplen, tmpdevlen);
114if (tmpdev[0] == '\0')
115break;
116} while (1);
117
118s = flashbuses_to_text(f->bustype);
119maxtypelen = max(maxtypelen, strlen(s));
120free(s);
121}
122maxvendorlen += border;
123maxchiplen += border;
124maxtypelen += border;
125
126msg_ginfo("Supported flash chips (total: %d):\n\n", chipcount);
127msg_ginfo("Vendor");
128for (i = strlen("Vendor"); i < maxvendorlen; i++)
129msg_ginfo(" ");
130msg_ginfo("Device");
131for (i = strlen("Device"); i < maxchiplen; i++)
132msg_ginfo(" ");
133
134msg_ginfo("Test");
135for (i = 0; i < border; i++)
136msg_ginfo(" ");
137msg_ginfo("Known");
138for (i = 0; i < border; i++)
139msg_ginfo(" ");
140msg_ginfo(" Size");
141for (i = 0; i < border; i++)
142msg_ginfo(" ");
143
144msg_ginfo("Type");
145for (i = strlen("Type"); i < maxtypelen; i++)
146msg_ginfo(" ");
147msg_gdbg("Voltage");
148msg_ginfo("\n");
149
150for (i = 0; i < maxvendorlen + maxchiplen; i++)
151msg_ginfo(" ");
152msg_ginfo("OK ");
153for (i = 0; i < border; i++)
154msg_ginfo(" ");
155msg_ginfo("Broken");
156for (i = 0; i < border; i++)
157msg_ginfo(" ");
158msg_ginfo("[kB]");
159for (i = 0; i < border + maxtypelen; i++)
160msg_ginfo(" ");
161msg_gdbg("range [V]");
162msg_ginfo("\n\n");
163msg_ginfo("(P = PROBE, R = READ, E = ERASE, W = WRITE)\n\n");
164
165for (f = flashchips; f->name != NULL; f++) {
166/* Don't print generic entries. */
167if (!strncmp(f->vendor, "Unknown", 7) ||
168 !strncmp(f->vendor, "Programmer", 10) ||
169 !strncmp(f->name, "unknown", 7))
170continue;
171
172/* support for multiline vendor names:
173 * - make a copy of the original vendor name
174 * - use strok to put the first token in tmpven
175 * - keep track of the length of all tokens on the current line
176 * for ' '-padding in curvenlen
177 * - check if additional tokens should be printed on the current
178 * line
179 * - after all other values are printed print the surplus tokens
180 * on fresh lines
181 */
182tmpven = malloc(strlen(f->vendor) + 1);
183if (tmpven == NULL) {
184msg_gerr("Out of memory!\n");
185exit(1);
186}
187strcpy(tmpven, f->vendor);
188
189tmpven = strtok(tmpven, delim);
190msg_ginfo("%s", tmpven);
191curvenlen = strlen(tmpven);
192while ((tmpven = strtok(NULL, delim)) != NULL) {
193msg_ginfo("%s", delim);
194curvenlen++;
195tmpvenlen = strlen(tmpven);
196if (tmpvenlen >= mintoklen)
197break; /* big enough to be on its own line */
198msg_ginfo("%s", tmpven);
199curvenlen += tmpvenlen;
200}
201
202for (i = curvenlen; i < maxvendorlen; i++)
203msg_ginfo(" ");
204
205/* support for multiline device names as above */
206tmpdev = malloc(strlen(f->name) + 1);
207if (tmpdev == NULL) {
208msg_gerr("Out of memory!\n");
209exit(1);
210}
211strcpy(tmpdev, f->name);
212
213tmpdev = strtok(tmpdev, delim);
214msg_ginfo("%s", tmpdev);
215curdevlen = strlen(tmpdev);
216while ((tmpdev = strtok(NULL, delim)) != NULL) {
217msg_ginfo("%s", delim);
218curdevlen++;
219tmpdevlen = strlen(tmpdev);
220if (tmpdevlen >= mintoklen)
221break; /* big enough to be on its own line */
222msg_ginfo("%s", tmpdev);
223curdevlen += tmpdevlen;
224}
225
226for (i = curdevlen; i < maxchiplen; i++)
227msg_ginfo(" ");
228
229if ((f->tested & TEST_OK_PROBE))
230msg_ginfo("P");
231else
232msg_ginfo(" ");
233if ((f->tested & TEST_OK_READ))
234msg_ginfo("R");
235else
236msg_ginfo(" ");
237if ((f->tested & TEST_OK_ERASE))
238msg_ginfo("E");
239else
240msg_ginfo(" ");
241if ((f->tested & TEST_OK_WRITE))
242msg_ginfo("W");
243else
244msg_ginfo(" ");
245for (i = 0; i < border; i++)
246msg_ginfo(" ");
247
248if ((f->tested & TEST_BAD_PROBE))
249msg_ginfo("P");
250else
251msg_ginfo(" ");
252if ((f->tested & TEST_BAD_READ))
253msg_ginfo("R");
254else
255msg_ginfo(" ");
256if ((f->tested & TEST_BAD_ERASE))
257msg_ginfo("E");
258else
259msg_ginfo(" ");
260if ((f->tested & TEST_BAD_WRITE))
261msg_ginfo("W");
262else
263msg_ginfo(" ");
264for (i = 0; i < border + 1; i++)
265msg_ginfo(" ");
266
267msg_ginfo("%5d", f->total_size);
268for (i = 0; i < border; i++)
269msg_ginfo(" ");
270
271s = flashbuses_to_text(f->bustype);
272msg_ginfo("%s", s);
273for (i = strlen(s); i < maxtypelen; i++)
274msg_ginfo(" ");
275free(s);
276
277if (f->voltage.min == 0 && f->voltage.max == 0)
278msg_gdbg("no info");
279else
280msg_gdbg("%0.02f;%0.02f",
281 f->voltage.min/(double)1000,
282 f->voltage.max/(double)1000);
283
284/* print surplus vendor and device name tokens */
285while (tmpven != NULL || tmpdev != NULL) {
286msg_ginfo("\n");
287if (tmpven != NULL){
288msg_ginfo("%s", tmpven);
289curvenlen = strlen(tmpven);
290while ((tmpven = strtok(NULL, delim)) != NULL) {
291msg_ginfo("%s", delim);
292curvenlen++;
293tmpvenlen = strlen(tmpven);
294/* big enough to be on its own line */
295if (tmpvenlen >= mintoklen)
296break;
297msg_ginfo("%s", tmpven);
298curvenlen += tmpvenlen;
299}
300} else
301curvenlen = 0;
302
303for (i = curvenlen; i < maxvendorlen; i++)
304msg_ginfo(" ");
305
306if (tmpdev != NULL){
307msg_ginfo("%s", tmpdev);
308curdevlen = strlen(tmpdev);
309while ((tmpdev = strtok(NULL, delim)) != NULL) {
310msg_ginfo("%s", delim);
311curdevlen++;
312tmpdevlen = strlen(tmpdev);
313/* big enough to be on its own line */
314if (tmpdevlen >= mintoklen)
315break;
316msg_ginfo("%s", tmpdev);
317curdevlen += tmpdevlen;
318}
319}
320}
321msg_ginfo("\n");
322}
323}
324
325#if CONFIG_INTERNAL == 1
326static void print_supported_chipsets(void)
327{
328int i, chipsetcount = 0;
329const struct penable *c = chipset_enables;
330int maxvendorlen = strlen("Vendor") + 1;
331int maxchipsetlen = strlen("Chipset") + 1;
332
333for (c = chipset_enables; c->vendor_name != NULL; c++) {
334chipsetcount++;
335maxvendorlen = max(maxvendorlen, strlen(c->vendor_name));
336maxchipsetlen = max(maxchipsetlen, strlen(c->device_name));
337}
338maxvendorlen++;
339maxchipsetlen++;
340
341msg_ginfo("Supported chipsets (total: %d):\n\n", chipsetcount);
342
343msg_ginfo("Vendor");
344for (i = strlen("Vendor"); i < maxvendorlen; i++)
345msg_ginfo(" ");
346
347msg_ginfo("Chipset");
348for (i = strlen("Chipset"); i < maxchipsetlen; i++)
349msg_ginfo(" ");
350
351msg_ginfo("PCI IDs State\n\n");
352
353for (c = chipset_enables; c->vendor_name != NULL; c++) {
354msg_ginfo("%s", c->vendor_name);
355for (i = 0; i < maxvendorlen - strlen(c->vendor_name); i++)
356msg_ginfo(" ");
357msg_ginfo("%s", c->device_name);
358for (i = 0; i < maxchipsetlen - strlen(c->device_name); i++)
359msg_ginfo(" ");
360msg_ginfo("%04x:%04x%s\n", c->vendor_id, c->device_id,
361 (c->status == OK) ? "" : " (untested)");
362}
363}
364
365static void print_supported_boards_helper(const struct board_info *boards,
366 const char *devicetype)
367{
368int i, boardcount_good = 0, boardcount_bad = 0;
369const struct board_match *e = board_matches;
370const struct board_info *b = boards;
371int maxvendorlen = strlen("Vendor") + 1;
372int maxboardlen = strlen("Board") + 1;
373
374for (b = boards; b->vendor != NULL; b++) {
375maxvendorlen = max(maxvendorlen, strlen(b->vendor));
376maxboardlen = max(maxboardlen, strlen(b->name));
377if (b->working)
378boardcount_good++;
379else
380boardcount_bad++;
381}
382maxvendorlen++;
383maxboardlen++;
384
385msg_ginfo("Known %s (good: %d, bad: %d):\n\n",
386 devicetype, boardcount_good, boardcount_bad);
387
388msg_ginfo("Vendor");
389for (i = strlen("Vendor"); i < maxvendorlen; i++)
390msg_ginfo(" ");
391
392msg_ginfo("Board");
393for (i = strlen("Board"); i < maxboardlen; i++)
394msg_ginfo(" ");
395
396msg_ginfo("Status Required value for\n");
397for (i = 0; i < maxvendorlen + maxboardlen + strlen("Status "); i++)
398msg_ginfo(" ");
399msg_ginfo("-p internal:mainboard=\n");
400
401for (b = boards; b->vendor != NULL; b++) {
402msg_ginfo("%s", b->vendor);
403for (i = 0; i < maxvendorlen - strlen(b->vendor); i++)
404msg_ginfo(" ");
405msg_ginfo("%s", b->name);
406for (i = 0; i < maxboardlen - strlen(b->name); i++)
407msg_ginfo(" ");
408msg_ginfo((b->working) ? "OK " : "BAD ");
409
410for (e = board_matches; e->vendor_name != NULL; e++) {
411if (strcmp(e->vendor_name, b->vendor)
412 || strcmp(e->board_name, b->name))
413continue;
414if (e->lb_vendor == NULL)
415msg_ginfo("(autodetected)");
416else
417msg_ginfo("%s:%s", e->lb_vendor,
418 e->lb_part);
419}
420msg_ginfo("\n");
421}
422}
423#endif
424
425void print_supported(void)
426{
427print_supported_chips();
428
429msg_ginfo("\nSupported programmers:\n");
430list_programmers_linebreak(0, 80, 0);
431#if CONFIG_INTERNAL == 1
432msg_ginfo("\nSupported devices for the %s programmer:\n\n",
433 programmer_table[PROGRAMMER_INTERNAL].name);
434print_supported_chipsets();
435msg_ginfo("\n");
436print_supported_boards_helper(boards_known, "boards");
437msg_ginfo("\n");
438print_supported_boards_helper(laptops_known, "laptops");
439#endif
440#if CONFIG_DUMMY == 1
441msg_ginfo("\nSupported devices for the %s programmer:\n",
442 programmer_table[PROGRAMMER_DUMMY].name);
443/* FIXME */
444msg_ginfo("Dummy device, does nothing and logs all accesses\n");
445#endif
446#if CONFIG_NIC3COM == 1
447msg_ginfo("\nSupported devices for the %s programmer:\n",
448 programmer_table[PROGRAMMER_NIC3COM].name);
449print_supported_pcidevs(nics_3com);
450#endif
451#if CONFIG_NICREALTEK == 1
452msg_ginfo("\nSupported devices for the %s programmer:\n",
453 programmer_table[PROGRAMMER_NICREALTEK].name);
454print_supported_pcidevs(nics_realtek);
455#endif
456#if CONFIG_NICNATSEMI == 1
457msg_ginfo("\nSupported devices for the %s programmer:\n",
458 programmer_table[PROGRAMMER_NICNATSEMI].name);
459print_supported_pcidevs(nics_natsemi);
460#endif
461#if CONFIG_GFXNVIDIA == 1
462msg_ginfo("\nSupported devices for the %s programmer:\n",
463 programmer_table[PROGRAMMER_GFXNVIDIA].name);
464print_supported_pcidevs(gfx_nvidia);
465#endif
466#if CONFIG_DRKAISER == 1
467msg_ginfo("\nSupported devices for the %s programmer:\n",
468 programmer_table[PROGRAMMER_DRKAISER].name);
469print_supported_pcidevs(drkaiser_pcidev);
470#endif
471#if CONFIG_SATASII == 1
472msg_ginfo("\nSupported devices for the %s programmer:\n",
473 programmer_table[PROGRAMMER_SATASII].name);
474print_supported_pcidevs(satas_sii);
475#endif
476#if CONFIG_ATAHPT == 1
477msg_ginfo("\nSupported devices for the %s programmer:\n",
478 programmer_table[PROGRAMMER_ATAHPT].name);
479print_supported_pcidevs(ata_hpt);
480#endif
481#if CONFIG_FT2232_SPI == 1
482msg_ginfo("\nSupported devices for the %s programmer:\n",
483 programmer_table[PROGRAMMER_FT2232_SPI].name);
484print_supported_usbdevs(devs_ft2232spi);
485#endif
486#if CONFIG_SERPROG == 1
487msg_ginfo("\nSupported devices for the %s programmer:\n",
488 programmer_table[PROGRAMMER_SERPROG].name);
489/* FIXME */
490msg_ginfo("All programmer devices speaking the serprog protocol\n");
491#endif
492#if CONFIG_BUSPIRATE_SPI == 1
493msg_ginfo("\nSupported devices for the %s programmer:\n",
494 programmer_table[PROGRAMMER_BUSPIRATE_SPI].name);
495/* FIXME */
496msg_ginfo("Dangerous Prototypes Bus Pirate\n");
497#endif
498#if CONFIG_DEDIPROG == 1
499msg_ginfo("\nSupported devices for the %s programmer:\n",
500 programmer_table[PROGRAMMER_DEDIPROG].name);
501/* FIXME */
502msg_ginfo("Dediprog SF100\n");
503#endif
504#if CONFIG_RAYER_SPI == 1
505msg_ginfo("\nSupported devices for the %s programmer:\n",
506 programmer_table[PROGRAMMER_RAYER_SPI].name);
507/* FIXME */
508msg_ginfo("RayeR parallel port programmer\n");
509#endif
510#if CONFIG_PONY_SPI == 1
511msg_ginfo("\nSupported devices for the %s programmer:\n",
512 programmer_table[PROGRAMMER_PONY_SPI].name);
513/* FIXME */
514msg_ginfo("SI-Prog and SERBANG serial port programmer\n");
515#endif
516#if CONFIG_NICINTEL == 1
517msg_ginfo("\nSupported devices for the %s programmer:\n",
518 programmer_table[PROGRAMMER_NICINTEL].name);
519print_supported_pcidevs(nics_intel);
520#endif
521#if CONFIG_NICINTEL_SPI == 1
522msg_ginfo("\nSupported devices for the %s programmer:\n",
523 programmer_table[PROGRAMMER_NICINTEL_SPI].name);
524print_supported_pcidevs(nics_intel_spi);
525#endif
526#if CONFIG_OGP_SPI == 1
527msg_ginfo("\nSupported devices for the %s programmer:\n",
528 programmer_table[PROGRAMMER_OGP_SPI].name);
529print_supported_pcidevs(ogp_spi);
530#endif
531#if CONFIG_SATAMV == 1
532msg_ginfo("\nSupported devices for the %s programmer:\n",
533 programmer_table[PROGRAMMER_SATAMV].name);
534print_supported_pcidevs(satas_mv);
535#endif
536#if CONFIG_LINUX_SPI == 1
537msg_ginfo("\nSupported devices for the %s programmer:\n",
538 programmer_table[PROGRAMMER_LINUX_SPI].name);
539msg_ginfo("Device files /dev/spidev*.*\n");
540#endif
541}
542
543#if CONFIG_INTERNAL == 1
544
545#ifdef CONFIG_PRINT_WIKI
546#define B(vendor, name, status, url, note) { vendor, name, status, url, note }
547#else
548#define B(vendor, name, status, url, note) { vendor, name, status }
549#endif
550
551/* Please keep this list alphabetically ordered by vendor/board. */
552const struct board_info boards_known[] = {
553#if defined(__i386__) || defined(__x86_64__)
554B("A-Trend","ATC-6220",1, "http://www.motherboard.cz/mb/atrend/atc6220.htm", NULL),
555B("abit","A-S78H",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=A-S78H&fMTYPE=Socket+AM2", NULL),
556B("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),
557B("abit","AV8",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20939&pMODEL_NAME=AV8", NULL),
558B("abit","AX8",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20939&pMODEL_NAME=AX8", NULL),
559B("abit","BM6",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=BM6&fMTYPE=Socket%20370", NULL),
560B("abit","Fatal1ty F-I90HD",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=Fatal1ty+F-I90HD&fMTYPE=LGA775", NULL),
561B("abit","IC7",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=IC7&fMTYPE=Socket%20478", NULL),
562B("abit","IP35",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=LGA775&pMODEL_NAME=IP35", NULL),
563B("abit","IP35 Pro",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=LGA775&pMODEL_NAME=IP35%20Pro", NULL),
564B("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."),
565B("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),
566B("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),
567B("abit","NF-M2S",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=NF-M2S&fMTYPE=Socket%20AM2", NULL),
568B("abit","NF7-S",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Socket%20A&pMODEL_NAME=NF7-S", NULL),
569B("abit","VA6",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Slot%201&pMODEL_NAME=VA6", NULL),
570B("abit","VT6X4",1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Slot%201&pMODEL_NAME=VT6X4", NULL),
571B("Acorp","6A815EPD",1, "http://web.archive.org/web/20021206163652/www.acorp.com.tw/English/default.asp", NULL),
572B("Advantech","PCM-5820",1, "http://www.emacinc.com/sbc_pc_compatible/pcm_5820.htm", NULL),
573B("agami","Aruma",1, "http://web.archive.org/web/20080212111524/http://www.agami.com/site/ais-6000-series", NULL),
574B("Albatron","PM266A Pro",1, "http://www.albatron.com.tw/English/Product/MB/pro_detail.asp?rlink=Overview&no=56", NULL), /* FIXME */
575B("AOpen","i945GMx-VFX",1, NULL, "This is (also?) an OEM board from FSC (used in e.g. ESPRIMO Q5010 with designation D2544-B1)."),
576B("AOpen","vKM400Am-S",1, "http://usa.aopen.com/products_detail.aspx?Auno=824", NULL),
577B("Artec Group","DBE61",1, "http://wiki.thincan.org/DBE61", NULL),
578B("Artec Group","DBE62",1, "http://wiki.thincan.org/DBE62", NULL),
579B("ASI","MB-5BLMP",1, "http://www.hojerteknik.com/winnet.htm", "Used in the IGEL WinNET III thin client."),
580B("ASRock","775i65G",1, "http://www.asrock.com/mb/overview.asp?Model=775i65G", NULL),
581B("ASRock","890GX Extreme3",1, "http://www.asrock.com/mb/overview.asp?Model=890GX%20Extreme3", NULL),
582B("ASRock","939A785GMH/128M",1, "http://www.asrock.com/mb/overview.asp?Model=939A785GMH/128M", NULL),
583B("ASRock","A330GC",1, "http://www.asrock.com/mb/overview.asp?Model=A330GC", NULL),
584B("ASRock","A770CrossFire",1, "http://www.asrock.com/mb/overview.asp?Model=A770CrossFire", NULL),
585B("ASRock","ALiveNF6G-DVI",1, "http://www.asrock.com/mb/overview.asp?Model=ALiveNF6G-DVI", NULL),
586B("ASRock","AM2NF6G-VSTA",1, "http://www.asrock.com/mb/overview.asp?Model=AM2NF6G-VSTA", NULL),
587B("ASRock","ConRoeXFire-eSATA2",1, "http://www.asrock.com/mb/overview.asp?model=conroexfire-esata2", NULL),
588B("ASRock","H67M",0, "http://www.asrock.com/mb/overview.asp?Model=H67M", "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
589B("ASRock","K7S41",1, "http://www.asrock.com/mb/overview.asp?Model=K7S41", NULL),
590B("ASRock","K7S41GX",1, "http://www.asrock.com/mb/overview.asp?Model=K7S41GX", NULL),
591B("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"),
592B("ASRock","K8S8X",1, "http://www.asrock.com/mb/overview.asp?Model=K8S8X", NULL),
593B("ASRock","M3A790GXH/128M",1, "http://www.asrock.com/mb/overview.asp?Model=M3A790GXH/128M", NULL),
594B("ASRock","P4i65GV",1, "http://www.asrock.com/mb/overview.asp?Model=P4i65GV", NULL),
595B("ASUS","A7N8X Deluxe",1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7N8X_Deluxe/", NULL),
596B("ASUS","A7N8X-E Deluxe",1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7N8XE_Deluxe/", NULL),
597B("ASUS","A7N8X-VM/400",1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7N8XVM400/", NULL),
598B("ASUS","A7V133",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/socka/kt133a/a7v133/", NULL),
599B("ASUS","A7V333",1, "ftp://ftp.asus.com.tw/pub/asus/mb/socka/kt333/a7v333/", NULL),
600B("ASUS","A7V400-MX",1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V400MX/", NULL),
601B("ASUS","A7V600-X",1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V600X/", NULL),
602B("ASUS","A7V8X",1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8X/", NULL),
603B("ASUS","A7V8X-MX",1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8XMX/", NULL),
604B("ASUS","A7V8X-MX SE",1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8XMX_SE/", NULL),
605B("ASUS","A7V8X-X",1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8XX/", NULL),
606B("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."),
607B("ASUS","A8N-E",1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NE/", NULL),
608B("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."),
609B("ASUS","A8N-SLI",1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NSLI/", NULL),
610B("ASUS","A8N-SLI Deluxe",0, NULL, "Untested board enable."),
611B("ASUS","A8N-SLI Premium",1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NSLI_Premium/", NULL),
612B("ASUS","A8N-VM",1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NVM/", NULL),
613B("ASUS","A8N-VM CSM",1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NVM_CSM/", NULL),
614B("ASUS","A8NE-FM/S",1, "http://www.hardwareschotte.de/hardware/preise/proid_1266090/preis_ASUS+A8NE-FM", NULL),
615B("ASUS","A8V Deluxe",1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8V_Deluxe/", NULL),
616B("ASUS","A8V-E Deluxe",1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8VE_Deluxe/", NULL),
617B("ASUS","A8V-E SE",1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8VE_SE/", "See http://www.coreboot.org/pipermail/coreboot/2007-October/026496.html"),
618B("ASUS","Crosshair II Formula",1, "http://www.asus.com/Motherboards/AMD_AM2Plus/Crosshair_II_Formula/", NULL),
619B("ASUS","Crosshair IV Extreme",1, "http://www.asus.com/Motherboards/AMD_AM3/Crosshair_IV_Extreme/", NULL),
620B("ASUS","E35M1-I DELUXE",1, "http://www.asus.com/Motherboards/AMD_CPU_on_Board/E35M1I_DELUXE/", NULL),
621B("ASUS","K8N",1, "http://www.asus.com/Motherboards/AMD_Socket_754/K8N/", NULL),
622B("ASUS","K8V",1, "http://www.asus.com/Motherboards/AMD_Socket_754/K8V/", NULL),
623B("ASUS","K8V SE Deluxe",1, "http://www.asus.com/Motherboards/AMD_Socket_754/K8V_SE_Deluxe/", NULL),
624B("ASUS","K8V-X",1, "http://www.asus.com/Motherboards/AMD_Socket_754/K8VX/", NULL),
625B("ASUS","K8V-X SE",1, "http://www.asus.com/Motherboards/AMD_Socket_754/K8VX_SE/", NULL),
626B("ASUS","KFSN4-DRE/SAS",1, "http://www.asus.com/Server_Workstation/Server_Motherboards/KFSN4DRESAS/", NULL),
627B("ASUS","M2A-MX",1, "http://www.asus.com/Motherboards/AMD_AM2/M2AMX/", NULL),
628B("ASUS","M2A-VM (HDMI)",1, "http://www.asus.com/Motherboards/AMD_AM2/M2AVM/", NULL),
629B("ASUS","M2N32-SLI Deluxe",1, "http://www.asus.com/Motherboards/AMD_AM2/M2N32SLI_DeluxeWireless_Edition/", NULL),
630B("ASUS","M2N-E",1, "http://www.asus.com/Motherboards/AMD_AM2/M2NE/", "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"),
631B("ASUS","M2N-E SLI",1, "http://www.asus.com/Motherboards/AMD_AM2/M2NE_SLI/", NULL),
632B("ASUS","M2N-SLI Deluxe",1, "http://www.asus.com/Motherboards/AMD_AM2/M2NSLI_Deluxe/", NULL),
633B("ASUS","M2NBP-VM CSM",1, "http://www.asus.com/Motherboards/AMD_AM2/M2NBPVM_CSM/", NULL),
634B("ASUS","M2NPV-VM",1, "http://www.asus.com/Motherboards/AMD_AM2/M2NPVVM/", NULL),
635B("ASUS","M2V",1, "http://www.asus.com/Motherboards/AMD_AM2/M2V/", NULL),
636B("ASUS","M2V-MX",1, "http://www.asus.com/Motherboards/AMD_AM2/M2VMX/", NULL),
637B("ASUS","M3A",1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3A/", NULL),
638B("ASUS","M3A76-CM",1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3A76CM/", NULL),
639B("ASUS","M3A78-EM",1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3A78EM/", NULL),
640B("ASUS","M3N78-VM",1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3N78VM/", NULL),
641B("ASUS","M4A78-EM",1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M4A78EM/", NULL),
642B("ASUS","M4A785T-M",1, "http://www.asus.com/Motherboards/AMD_AM3/M4A785TM/", NULL),
643B("ASUS","M4A785TD-M EVO",1, "http://www.asus.com/Motherboards/AMD_AM3/M4A785TDM_EVO/", NULL),
644B("ASUS","M4A785TD-V EVO",1, "http://www.asus.com/Motherboards/AMD_AM3/M4A785TDV_EVO/", NULL),
645B("ASUS","M4A78LT-M LE",1, "http://www.asus.com/Motherboards/AMD_AM3/M4A78LTM_LE/", NULL),
646B("ASUS","M4A79T Deluxe",1, "http://www.asus.com/Motherboards/AMD_AM3/M4A79T_Deluxe/", NULL),
647B("ASUS","M4A87TD/USB3",1, "http://www.asus.com/Motherboards/AMD_AM3/M4A87TDUSB3/", NULL),
648B("ASUS","M4A89GTD PRO",1, "http://www.asus.com/Motherboards/AMD_AM3/M4A89GTD_PRO/", NULL),
649B("ASUS","M4N78 PRO",1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M4N78_PRO/", NULL),
650B("ASUS","M5A99X EVO",1, "http://www.asus.com/Motherboards/AMD_AM3Plus/M5A99X_EVO/", NULL),
651B("ASUS","Maximus IV Extreme",0, "http://www.asus.com/Motherboards/Intel_Socket_1155/Maximus_IV_Extreme/", "Probing works (Macronix MX25L3205, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
652B("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."),
653B("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."),
654B("ASUS","OPLX-M",0, NULL, "Untested board enable."),
655B("ASUS","P2B",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b/", NULL),
656B("ASUS","P2B-D",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/", NULL),
657B("ASUS","P2B-DS",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-ds/", NULL),
658B("ASUS","P2B-F",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/", NULL),
659B("ASUS","P2B-N",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-n/", NULL),
660B("ASUS","P2E-M",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440ex/p2e-m/", NULL),
661B("ASUS","P2L97-S",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440lx/p2l97-s/", NULL),
662B("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."),
663B("ASUS","P4B266",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4b266/", NULL),
664B("ASUS","P4B266-LM",1, "http://esupport.sony.com/US/perl/swu-list.pl?mdl=PCVRX650", NULL),
665B("ASUS","P4B533-E",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4b533-e/", NULL),
666B("ASUS","P4C800-E Deluxe",1, "http://www.asus.com/Motherboards/Intel_Socket_478/P4C800E_Deluxe/", NULL),
667B("ASUS","P4GV-LA (Guppy)",1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00363478", NULL),
668B("ASUS","P4P800",1, "http://www.asus.com/Motherboards/Intel_Socket_478/P4P800/", NULL),
669B("ASUS","P4P800-E Deluxe",1, "http://www.asus.com/Motherboards/Intel_Socket_478/P4P800E_Deluxe/", NULL),
670B("ASUS","P4P800-VM",1, "http://www.asus.com/Motherboards/Intel_Socket_478/P4P800VM/", NULL),
671B("ASUS","P4SC-E",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4sc-e/", "Part of ASUS Terminator P4 533 barebone system"),
672B("ASUS","P4SD-LA",1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00022505", NULL),
673B("ASUS","P4S533-X",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4s533-x/", NULL),
674B("ASUS","P4S800-MX",1, "http://www.asus.com/Motherboards/Intel_Socket_478/P4S800MX/", NULL),
675B("ASUS","P5A",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock7/ali/p5a/", NULL),
676B("ASUS","P5B",1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/socket775/P5B/", NULL),
677B("ASUS","P5B-Deluxe",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5B_Deluxe/", NULL),
678B("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."),
679B("ASUS","P5BV-R",1, "http://www.asus.com/Server_Workstation/Servers/RS120E5PA2/", "Used in RS120-E5/PA2 servers."),
680B("ASUS","P5GC-MX/1333",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GCMX1333/", NULL),
681B("ASUS","P5GD1 Pro",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GD1_PRO/", NULL),
682B("ASUS","P5GD1-VM/S",1, NULL, "This is an OEM board from FSC. Although flashrom supports it and can probably not distinguish it from the P5GD1-VM, please note that the P5GD1-VM BIOS does not support the FSC variants completely."),
683B("ASUS","P5GD1(-VM)",0, NULL, "Untested board enable."),
684B("ASUS","P5GD2 Premium",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GD2_Premium/", NULL),
685B("ASUS","P5GDC Deluxe",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GDC_Deluxe/", NULL),
686B("ASUS","P5GDC-V Deluxe",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GDCV_Deluxe/", NULL),
687B("ASUS","P5GD2/C variants",0, NULL, "Untested board enable."),
688B("ASUS","P5K-V",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5KV/", NULL),
689B("ASUS","P5K-VM",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5KVM/", NULL),
690B("ASUS","P5KC",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5KC/", NULL),
691B("ASUS","P5KPL-CM",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5KPLCM/", NULL),
692B("ASUS","P5L-MX",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5LMX/", NULL),
693B("ASUS","P5L-VM 1394",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5LVM_1394/", NULL),
694B("ASUS","P5LD2",0, NULL, "Untested board enable."),
695B("ASUS","P5LP-LE (Lithium-UL8E)", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00379616&tmp_task=prodinfoCategory&cc=us&dlc=en&lc=en&product=1159887", "This is an OEM board from HP."),
696B("ASUS","P5LP-LE (Epson OEM)",1, NULL, "This is an OEM board from Epson (e.g. Endeavor MT7700)."),
697B("ASUS","P5LP-LE",0, NULL, "This designation is used for OEM boards from HP, Epson and maybe others. The HP names vary and not all of them have been tested yet. Please report any success or failure, thanks."),
698B("ASUS","P5N-E SLI",0, "http://www.asus.com/Motherboards/Intel_Socket_775/P5NE_SLI/", "Needs a board enable (http://patchwork.coreboot.org/patch/3298/)."),
699B("ASUS","P5N-D",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5ND/", NULL),
700B("ASUS","P5N-E SLI",0, "http://www.asus.com/Motherboards/Intel_Socket_775/P5NE_SLI/", "Untested board enable."),
701B("ASUS","P5N32-E SLI",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5N32E_SLI/", NULL),
702B("ASUS","P5N7A-VM",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5N7AVM/", NULL),
703B("ASUS","P5ND2-SLI Deluxe",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5ND2SLI_Deluxe/", NULL),
704B("ASUS","P5PE-VM",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5PEVM/", NULL),
705B("ASUS","P5QPL-AM",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5QPLAM/", NULL),
706B("ASUS","P5VD1-X",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5VD1X/", NULL),
707B("ASUS","P5VD2-MX",1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5VD2MX/", "The MAC address of the onboard LAN NIC is stored in flash, hence overwritten by flashrom; see http://www.flashrom.org/pipermail/flashrom/2012-March/009014.html"),
708B("ASUS","P6T SE",1, "http://www.asus.com/Motherboards/Intel_Socket_1366/P6T_SE/", NULL),
709B("ASUS","P6T Deluxe",1, "http://www.asus.com/Motherboards/Intel_Socket_1366/P6T_Deluxe/", NULL),
710B("ASUS","P6T Deluxe V2",1, "http://www.asus.com/Motherboards/Intel_Socket_1366/P6T_Deluxe_V2/", NULL),
711B("ASUS","P7H57D-V EVO",1, "http://www.asus.com/Motherboards/Intel_Socket_1156/P7H57DV_EVO/", NULL),
712B("ASUS","P7H55-M LX",0, NULL, "flashrom works correctly, but GbE LAN is nonworking (probably due to a missing/bogus MAC address; see http://www.flashrom.org/pipermail/flashrom/2011-July/007432.html and http://ubuntuforums.org/showthread.php?t=1534389 for a possible workaround)"),
713B("ASUS","P8B-E/4L",0, NULL, "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
714B("ASUS","P8B WS",0, NULL, "Probing works (Winbond W25Q32, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
715B("ASUS","P8H61 PRO",0, NULL, "Probing works (Winbond W25Q32, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
716B("ASUS","P8H61-M LE/USB3",0, NULL, "Probing works (Winbond W25Q32, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
717B("ASUS","P8H67-M PRO",0, NULL, "Probing works (Macronix MX25L3205, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
718B("ASUS","P8P67 (rev. 3.1)",0, NULL, "Probing works (Macronix MX25L3205, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
719B("ASUS","P8P67 LE",0, NULL, "Probing works (Winbond W25Q32, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
720B("ASUS","P8Z68-V PRO",0, NULL, "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
721B("ASUS","P8Z68-V PRO/GEN3",1, "http://www.asus.com/Motherboards/Intel_Socket_1155/P8Z68V_PROGEN3/", "Warning: MAC address of LOM is stored at 0x1000 - 0x1005 of the image."),
722B("ASUS","TUSL2-C",0, "http://support.asus.com/download.aspx?SLanguage=en&p=1&s=4&m=TUSL2-C&os=&hashedid=n/a", "Untested board enable."),
723B("ASUS","Z8NA-D6C",1, "http://www.asus.com/Server_Workstation/Server_Motherboards/Z8NAD6C/", NULL),
724B("ASUS","Z8PE-D12",1, "http://www.asus.com/Server_Workstation/Server_Motherboards/Z8PED12/", NULL),
725B("Bachmann","OT200",1, "http://www.bachmann.info/produkte/bedien-und-beobachtungsgeraete/operator-terminals/", NULL),
726B("BCOM","WinNET100",1, "http://www.coreboot.org/BCOM_WINNET100", "Used in the IGEL-316 thin client."),
727B("Bifferos","Bifferboard",1, "http://bifferos.co.uk/", NULL),
728B("Biostar","H61MU3",0, NULL, "Probing works (Eon EN25Q32(A/B), 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
729B("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."),
730B("Biostar","M7NCD Pro",1, "http://www.biostar.com.tw/app/en/mb/content.php?S_ID=260", NULL),
731B("Biostar","M7VIQ",0, NULL, "Missing board enable (W83697HF/F/HG/G), see http://www.flashrom.org/pipermail/flashrom/2012-February/008863.html"),
732B("Biostar","N61PB-M2S",1, NULL, NULL),
733B("Biostar","N68S3+",1, NULL, NULL),
734B("Biostar","P4M80-M4",1, "http://www.biostar-usa.com/mbdetails.asp?model=p4m80-m4", NULL),
735B("Biostar","TA780G M2+",1, "http://www.biostar.com.tw/app/en/t-series/content.php?S_ID=344", NULL),
736B("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."),
737B("Congatec","conga-X852",1, "http://www.congatec.com/single_news+M57715f6263d.html?&L=1", NULL),
738B("Dell","Inspiron 580",0, "http://support.dell.com/support/edocs/systems/insp580/en/index.htm", "Probing works (Macronix MX25L6405, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME is locked."),
739B("Dell","OptiPlex GX1",1, "http://support.dell.com/support/edocs/systems/ban_gx1/en/index.htm", NULL),
740B("Dell","PowerEdge 1850",1, "http://support.dell.com/support/edocs/systems/pe1850/en/index.htm", NULL),
741B("Dell","Vostro 460",0, "http://support.dell.com/support/edocs/systems/vos460/en/index.htm", "Mainboard model is 0Y2MRG. Probing works (Macronix MX25L3205, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME is locked."),
742B("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"),
743B("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),
744B("Elitegroup","GeForce6100SM-M ",1, "http://www.ecs.com.tw/ECSWebSite/Product/Product_Detail.aspx?DetailID=685&MenuID=24", NULL),
745B("Elitegroup", "GF7100PVT-M3 (V1.0)",1, "http://www.ecs.com.tw/ECSWebSite/Product/Product_Detail.aspx?DetailID=853&CategoryID=1&DetailName=Specification&MenuID=24&LanID=0", NULL),
746B("Elitegroup","K7S5A",1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=279&CategoryID=1&DetailName=Specification&MenuID=1&LanID=0", NULL),
747B("Elitegroup","K7S6A",1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=77&CategoryID=1&DetailName=Specification&MenuID=52&LanID=0", NULL),
748B("Elitegroup", "K7SEM (V1.0A)",1, "http://www.ecs.com.tw/ECSWebSite/Product/Product_Detail.aspx?DetailID=229&CategoryID=1&DetailName=Specification&MenuID=24&LanID=0", NULL),
749B("Elitegroup","K7VTA3",1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=264&CategoryID=1&DetailName=Specification&MenuID=52&LanID=0", NULL),
750B("Elitegroup","P4M800PRO-M (V1.0A, V2.0)", 1, "http://www.ecs.com.tw/ECSWebSite_2007/Products/ProductsDetail.aspx?CategoryID=1&DetailID=574&DetailName=Feature&MenuID=52&LanID=0", NULL),
751B("Elitegroup", "P4VXMS (V1.0A)",1, NULL, NULL),
752B("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),
753B("Elitegroup","P6VAP-A+",1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=117&CategoryID=1&DetailName=Specification&MenuID=1&LanID=0", NULL),
754B("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),
755B("Emerson","ATCA-7360",1, "http://www.emerson.com/sites/Network_Power/en-US/Products/Product_Detail/Product1/Pages/EmbCompATCA-7360.aspx", NULL),
756B("EPoX","EP-3PTA",0, NULL, "Missing board enable (W83627HF/F/HG/G), see http://www.flashrom.org/pipermail/flashrom/2012-April/009043.html"),
757B("EPoX","EP-8K5A2",1, "http://www.epox.com/product.asp?ID=EP-8K5A2", NULL),
758B("EPoX","EP-8NPA7I",1, "http://www.epox.com/product.asp?ID=EP-8NPA7I", NULL),
759B("EPoX","EP-8RDA3+",1, "http://www.epox.com/product.asp?ID=EP-8RDA3plus", NULL),
760B("EPoX","EP-9NPA7I",1, "http://www.epox.com/product.asp?ID=EP-9NPA7I", NULL),
761B("EPoX","EP-BX3",1, "http://www.epox.com/product.asp?ID=EP-BX3", NULL),
762B("EVGA","132-CK-NF78",1, "http://www.evga.com/articles/385.asp", NULL),
763B("EVGA","270-WS-W555-A2 (Classified SR-2)", 1, "http://www.evga.com/products/moreInfo.asp?pn=270-WS-W555-A2", NULL),
764B("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."),
765B("Foxconn","6150K8MD-8EKRSH",1, "http://www.foxconnchannel.com/product/motherboards/detail_overview.aspx?id=en-us0000157", NULL),
766B("Foxconn","A6VMX",1, "http://www.foxconnchannel.com/product/motherboards/detail_overview.aspx?id=en-us0000346", NULL),
767B("Foxconn","P4M800P7MA-RS2",1, "http://www.foxconnchannel.com/Product/Motherboards/detail_overview.aspx?id=en-us0000138", NULL),
768B("Freetech","P6F91i",1, "http://web.archive.org/web/20010417035034/http://www.freetech.com/prod/P6F91i.html", NULL),
769B("Fujitsu-Siemens", "ESPRIMO P5915",1, "http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/professionalpc/ESPRIMO/P/EsprimoP5915-6.htm", "Mainboard model is D2312-A2."),
770B("Fujitsu-Siemens", "CELSIUS W410",0, "ftp://ftp.ts.fujitsu.com/pub/mainboard-oem-sales/Products/Mainboards/Industrial&ExtendedLifetime/D3061&D3062/", "Mainboard model is D3062-A1. Probing works (Macronix MX25L6405, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME is locked."),
771B("GIGABYTE","GA-2761GXDK",1, "http://www.computerbase.de/news/hardware/mainboards/amd-systeme/2007/mai/gigabyte_dtx-mainboard/", NULL),
772B("GIGABYTE","GA-6BXC",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1445", NULL),
773B("GIGABYTE","GA-6BXDU",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1429", NULL),
774B("GIGABYTE","GA-6IEM",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1379", NULL),
775B("GIGABYTE","GA-6VXE7+",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2410", NULL),
776B("GIGABYTE","GA-6ZMA",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1541", NULL),
777B("GIGABYTE","GA-MA785GMT-UD2H (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3156", NULL),
778B("GIGABYTE","GA-770TA-UD3",1, "http://www.gigabyte.com/products/product-page.aspx?pid=3272", NULL),
779B("GIGABYTE","GA-7DXR",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1302", NULL),
780B("GIGABYTE","GA-7VT600",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1666", NULL),
781B("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."),
782B("GIGABYTE","GA-880GMA-USB3 (rev. 3.1)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3817", NULL),
783B("GIGABYTE","GA-8I945GZME-RH",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2304", NULL),
784B("GIGABYTE","GA-8IP775",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1830", NULL),
785B("GIGABYTE","GA-8IRML",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1343", NULL),
786B("GIGABYTE","GA-8PE667 Ultra 2",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1607", NULL),
787B("GIGABYTE","GA-8SIMLH",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1399", NULL),
788B("GIGABYTE","GA-945PL-S3P (rev. 6.6)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2541", NULL),
789B("GIGABYTE","GA-965GM-S2 (rev. 2.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2617", NULL),
790B("GIGABYTE","GA-965P-DS4",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2288", NULL),
791B("GIGABYTE","GA-EP31-DS3L (rev. 2.1)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2964", NULL),
792B("GIGABYTE","GA-EP35-DS3L",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2778", NULL),
793B("GIGABYTE","GA-H61M-D2-B3",1, "http://www.gigabyte.com/products/product-page.aspx?pid=3773", NULL),
794B("GIGABYTE","GA-EX58-UD4P",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2986", NULL),
795B("GIGABYTE","GA-K8N-SLI",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1928", NULL),
796B("GIGABYTE","GA-K8N51GMF",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1950", NULL),
797B("GIGABYTE","GA-K8N51GMF-9",1, "http://www.gigabyte.com/products/product-page.aspx?pid=1939", NULL),
798B("GIGABYTE","GA-K8NS Pro-939",0, "http://www.gigabyte.com/products/product-page.aspx?pid=1875", "Untested board enable."),
799B("GIGABYTE","GA-M57SLI-S4",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2287", NULL),
800B("GIGABYTE","GA-M61P-S3",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2434", NULL),
801B("GIGABYTE","GA-M720-US3",1, "http://www.gigabyte.com/products/product-page.aspx?pid=3006", NULL),
802B("GIGABYTE","GA-MA69VM-S2",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2500", NULL),
803B("GIGABYTE","GA-MA74GM-S2H (rev. 3.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3152", NULL),
804B("GIGABYTE","GA-MA770-UD3 (rev. 2.1)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3302", NULL),
805B("GIGABYTE","GA-MA770T-UD3P",1, "http://www.gigabyte.com/products/product-page.aspx?pid=3096", NULL),
806B("GIGABYTE","GA-MA780G-UD3H",1, "http://www.gigabyte.com/products/product-page.aspx?pid=3004", NULL),
807B("GIGABYTE","GA-MA78G-DS3H (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2800", NULL),
808B("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? */
809B("GIGABYTE","GA-MA78GPM-DS2H",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2859", NULL),
810B("GIGABYTE","GA-MA790FX-DQ6",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2690", NULL),
811B("GIGABYTE","GA-MA790GP-DS4H",1, "http://www.gigabyte.com/products/product-page.aspx?pid=2887", NULL),
812B("GIGABYTE","GA-MA790XT-UD4P (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3010", NULL),
813B("GIGABYTE","GA-P55A-UD4 (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3436", NULL),
814B("GIGABYTE","GA-P67A-UD3P",1, "http://www.gigabyte.com/products/product-page.aspx?pid=3649", NULL),
815B("GIGABYTE","GA-X58A-UD7 (rev. 2.0)", 1, NULL, NULL),
816B("GIGABYTE","GA-X58A-UDR3 (rev. 2.0)", 1, NULL, NULL),
817B("GIGABYTE","GA-Z68MX-UD2H-B (rev. 1.3)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3854", NULL),
818B("GIGABYTE","GA-Z68XP-UD3 (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3892", NULL),
819B("HP","e-Vectra P2706T",1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?lang=en&cc=us&prodSeriesId=77515&prodTypeId=12454", NULL),
820B("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),
821B("HP","ProLiant DL165 G6",1, "http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/15351-15351-3328412-241644-3328421-3955644.html", NULL),
822B("HP","ProLiant N40L",1, NULL, NULL),
823B("HP","Puffer2-UL8E",1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00300023", NULL),
824B("HP","dc7800",0, "http://h10010.www1.hp.com/wwpc/us/en/sm/WF06a/12454-12454-64287-321860-3328898-3459241.html?dnr=1", "ICH9DO with SPI lock down, BIOS lock, PR, read-only descriptor, locked ME region."),
825B("HP","Vectra VL400",1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060658&lang=en&cc=us", NULL),
826B("HP","Vectra VL420 SFF",1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060661&lang=en&cc=us", NULL),
827B("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"),
828B("HP","xw6400",0, NULL, "No chip found, see http://www.flashrom.org/pipermail/flashrom/2012-March/009006.html"),
829B("HP","xw9300",0, "http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?lang=en&cc=us&prodTypeId=12454&prodSeriesId=459226", "Missing board enable, see http://www.flashrom.org/pipermail/flashrom/2012-February/008862.html"),
830B("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."),
831B("IBASE","MB899",1, "http://www.ibase-i.com.tw/2009/mb899.html", NULL),
832B("IBM","x3455",1, "http://www-03.ibm.com/systems/x/hardware/rack/x3455/index.html", NULL),
833B("IEI","PICOe-9452",1, "http://www.ieiworld.com/product_groups/industrial/content.aspx?keyword=WSB&gid=00001000010000000001&cid=08125380291060861658&id=08142308605814597144", NULL),
834B("Intel","D201GLY",1, "http://www.intel.com/support/motherboards/desktop/d201gly/index.htm", NULL),
835B("Intel","D425KT",0, "http://www.intel.com/content/www/us/en/motherboards/desktop-motherboards/desktop-board-d425kt.html", "NM10 with SPI lock down, BIOS lock, see http://www.flashrom.org/pipermail/flashrom/2012-January/008600.html"),
836B("Intel","D865GLC",0, NULL, "ICH5 with BIOS lock enable, see http://paste.flashrom.org/view.php?id=775"),
837B("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."),
838B("Intel","DG965OT",0, NULL, "Probing enables Hardware Sequencing (behind that hides a SST SST25VF080B, 1024 kB, SPI). Parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME is locked (and the platform data region seems to be bogus)."),
839B("Intel","DH67CF",0, NULL, "H67 with BIOS lock enable and locked ME region, see http://www.flashrom.org/pipermail/flashrom/2011-September/007789.html"),
840B("Intel","DN2800MT (Marshalltown)", 0, NULL, "BIOS locked via BIOS_CNTL."),
841B("Intel","EP80759",1, NULL, NULL),
842B("Intel","Foxhollow",1, NULL, "Intel reference board."),
843B("Intel","Greencity",1, NULL, "Intel reference board."),
844B("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"),
845B("IWILL","DK8-HTX",1, "http://web.archive.org/web/20060507170150/http://www.iwill.net/product_2.asp?p_id=98", NULL),
846B("Jetway","J-7BXAN",1, "http://www.jetway.com.tw/evisn/download/d7BXAS.htm", NULL),
847B("Jetway","J7F4K1G5D-PB",1, "http://www.jetway.com.tw/jw/ipcboard_view.asp?productid=282&proname=J7F4K1G5D", NULL),
848B("Kontron","986LCD-M",1, "http://de.kontron.com/products/boards+and+mezzanines/embedded+motherboards/miniitx+motherboards/986lcdmmitx.html", NULL),
849B("Lanner","EM-8510C",1, NULL, NULL),
850B("Lex","CV700A",1, "http://www.lex.com.tw/product/CV700A-spec.htm", NULL),
851B("Mitac","6513WU",1, "http://web.archive.org/web/20050313054828/http://www.mitac.com/micweb/products/tyan/6513wu/6513wu.htm", NULL),
852B("MSC","Q7-TCTC",1, "http://www.msc-ge.com/en/produkte/com/moduls/overview/5779-www.html", NULL),
853B("MSI","MS-6153",1, "http://www.msi.com/product/mb/MS-6153.html", NULL),
854B("MSI","MS-6156",1, "http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/boards/Motherboards/MicroStar/Ms6156/MS6156.htm", NULL),
855B("MSI","MS-6163 (MS-6163 Pro)",1, "http://www.msi.com/product/mb/MS-6163-Pro.html", NULL),
856B("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>."),
857B("MSI","MS-6330 (K7T Turbo)",1, "http://www.msi.com/product/mb/K7T-Turbo.html", NULL),
858B("MSI","MS-6391 (845 Pro4)",1, "http://www.msi.com/product/mb/845-Pro4.html", NULL),
859B("MSI","MS-6561 (745 Ultra)",1, "http://www.msi.com/product/mb/745-Ultra.html", NULL),
860B("MSI","MS-6566 (845 Ultra-C)",1, "http://www.msi.com/product/mb/845-Ultra-C.html", NULL),
861B("MSI","MS-6570 (K7N2)",1, "http://www.msi.com/product/mb/K7N2.html", NULL),
862B("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."),
863B("MSI","MS-6590 (KT4 Ultra)",1, "http://www.msi.com/product/mb/KT4-Ultra.html", NULL),
864B("MSI","MS-6702E (K8T Neo2-F)",1, "http://www.msi.com/product/mb/K8T-Neo2-F--FIR.html", NULL),
865B("MSI","MS-6712 (KT4V)",1, "http://www.msi.com/product/mb/KT4V---KT4V-L--v1-0-.html", NULL),
866B("MSI","MS-6787 (P4MAM-V/P4MAM-L)", 1, "http://www.msi.com/service/search/?kw=6787&type=product", NULL),
867B("MSI","MS-7005 (651M-L)",1, "http://www.msi.com/product/mb/651M-L.html", NULL),
868B("MSI","MS-7025 (K8N Neo2 Platinum)", 1, "http://www.msi.com/product/mb/K8N-Neo2-Platinum.html", NULL),
869B("MSI","MS-7046",1, "http://www.heimir.de/ms7046/", NULL),
870B("MSI","MS-7061 (KM4M-V/KM4AM-V)", 1, "http://www.msi.com/service/search/?kw=7061&type=product", NULL),
871B("MSI","MS-7065",1, "http://browse.geekbench.ca/geekbench2/view/53114", NULL),
872B("MSI","MS-7135 (K8N Neo3)",1, "http://www.msi.com/product/mb/K8N-Neo3.html", NULL),
873B("MSI","MS-7142 (K8MM-V)",1, "http://www.msi.com/product/mb/K8MM-V.html", NULL),
874B("MSI","MS-7168 (Orion)",1, "http://support.packardbell.co.uk/uk/item/index.php?i=spec_orion&pi=platform_honeymoon_istart", NULL),
875B("MSI","MS-7207 (K8NGM2-L)",1, "http://www.msi.com/product/mb/K8NGM2-FID--IL--L.html", NULL),
876B("MSI","MS-7211 (PM8M3-V)",1, "http://www.msi.com/product/mb/PM8M3-V.html", NULL),
877B("MSI","MS-7236 (945PL Neo3)",1, "http://www.msi.com/product/mb/945PL-Neo3.html", NULL),
878B("MSI","MS-7253 (K9VGM-V)",1, "http://www.msi.com/product/mb/K9VGM-V.html", NULL),
879B("MSI","MS-7255 (P4M890M)",1, "http://www.msi.com/product/mb/P4M890M-L-IL.html", NULL),
880B("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>."),
881B("MSI","MS-7309 (K9N6PGM2-V2)", 1, "http://www.msi.com/product/mb/K9N6PGM2-V2.html", NULL),
882B("MSI","MS-7312 (K9MM-V)",1, "http://www.msi.com/product/mb/K9MM-V.html", NULL),
883B("MSI","MS-7345 (P35 Neo2-FIR)", 1, "http://www.msi.com/product/mb/P35-Neo2-FR---FIR.html", NULL),
884B("MSI","MS-7368 (K9AG Neo2-Digital)", 1, "http://www.msi.com/product/mb/K9AG-Neo2-Digital.html", NULL),
885B("MSI","MS-7369 (K9N Neo V2)", 1, "http://www.msi.com/product/mb/K9N-Neo-V2.html", NULL),
886B("MSI","MS-7376 (K9A2 Platinum V1)", 1, "http://www.msi.com/product/mb/K9A2-Platinum.html", NULL),
887B("MSI","MS-7529 (G31M3-L(S) V2)", 1, "http://www.msi.com/product/mb/G31M3-L-V2---G31M3-LS-V2.html", NULL),
888B("MSI","MS-7529 (G31TM-P21)", 1, "http://www.msi.com/product/mb/G31TM-P21.html", NULL),
889B("MSI","MS-7548 (Aspen-GL8E)", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01635688&lc=en&cc=us&dlc=en", NULL),
890B("MSI","MS-7596 (785GM-E51)", 1, "http://www.msi.com/product/mb/785GM-E51.html", NULL),
891B("MSI","MS-7597 (GF615M-P33)",0, NULL, "Missing board enable/SIO support (Fintek F71889), see http://www.flashrom.org/pipermail/flashrom/2012-March/008956.html"),
892B("MSI","MS-7599 (870-C45)",1, "http://www.msi.com/product/mb/870-C45.html", NULL),
893B("MSI","MS-7613 (Iona-GL8E)",0, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02014355&lc=en&cc=dk&dlc=en&product=4348478", "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
894B("MSI","MS-7635 (H55M-ED55)",0, "http://www.msi.com/product/mb/H55M-ED55.html", "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
895B("MSI","MS-7640 (890FXA-GD70)",1, "http://www.msi.com/product/mb/890FXA-GD70.html", NULL),
896B("MSI","MS-7642 (890GXM-G65)",1, "http://www.msi.com/product/mb/890GXM-G65.html", NULL),
897B("MSI","MS-7676 (H67MA-ED55(B3))", 1, "http://www.msi.com/product/mb/H67MA-ED55--B3-.html", "Seems to work fine basically, but user reported (hopefully unrelated) buggy behavior of the board after a firmware upgrade. See http://www.flashrom.org/pipermail/flashrom/2012-January/008547.html"),
898B("MSI","MS-7696 (A75MA-G55)",1, "http://www.msi.com/product/mb/A75MA-G55.html", NULL),
899B("MSI","MS-7698 (E350IA-E45)",1, "http://www.msi.com/product/mb/E350IA-E45.html", NULL),
900B("MSI","MS-7740 (H61MA-E35(B3))",1, "http://www.msi.com/product/mb/H61MA-E35--B3-.html", NULL),
901B("NEC","PowerMate 2000",1, "http://support.necam.com/mobilesolutions/hardware/Desktops/pm2000/celeron/", NULL),
902B("Nokia","IP530",1, NULL, NULL),
903B("PCCHIPS ","M598LMR (V9.0)",1, NULL, NULL),
904B("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),
905B("PC Engines","Alix.1c",1, "http://pcengines.ch/alix1c.htm", NULL),
906B("PC Engines","Alix.2c2",1, "http://pcengines.ch/alix2c2.htm", NULL),
907B("PC Engines","Alix.2c3",1, "http://pcengines.ch/alix2c3.htm", NULL),
908B("PC Engines","Alix.2d3",1, "http://pcengines.ch/alix2d3.htm", NULL),
909B("PC Engines","Alix.3c3",1, "http://pcengines.ch/alix3c3.htm", NULL),
910B("PC Engines","Alix.3d3",1, "http://pcengines.ch/alix3d3.htm", NULL),
911B("PC Engines","Alix.6f2",1, "http://pcengines.ch/alix6f2.htm", NULL),
912B("PC Engines","WRAP.2E",1, "http://pcengines.ch/wrap2e1.htm", NULL),
913B("Portwell","PEB-4700VLA",1, "http://www.portwell.com/products/detail.asp?CUSTCHAR1=PEB-4700VLA", NULL),
914B("RCA","RM4100",1, "http://www.settoplinux.org/index.php?title=RCA_RM4100", NULL),
915B("Samsung","Polaris 32",1, NULL, NULL),
916B("Shuttle","AK31",1, "http://www.motherboard.cz/mb/shuttle/AK31.htm", NULL),
917B("Shuttle","AK38N",1, "http://eu.shuttle.com/en/desktopdefault.aspx/tabid-36/558_read-9889/", NULL),
918B("Shuttle","AV11V30",1, NULL, NULL),
919B("Shuttle","AV18E2",1, "http://www.shuttle.eu/_archive/older/de/av18.htm", NULL),
920B("Shuttle","FD37",1, "http://www.shuttle.eu/products/discontinued/barebones/sd37p2/", NULL),
921B("Shuttle","FH67",1, "http://www.shuttle.eu/products/mini-pc/sh67h3/specification/", NULL),
922B("Shuttle","FN25",1, "http://www.shuttle.eu/products/discontinued/barebones/sn25p/?0=", NULL),
923B("Shuttle","X50/X50(B)",1, "http://au.shuttle.com/product_detail_spec.jsp?PI=1241", NULL),
924B("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."),
925B("Soyo","SY-6BA+ III",1, "http://www.motherboard.cz/mb/soyo/SY-6BA+III.htm", NULL),
926B("Soyo","SY-7VCA",1, "http://www.tomshardware.com/reviews/12-socket-370-motherboards,196-15.html", NULL),
927B("Sun","Blade x6250",1, "http://www.sun.com/servers/blades/x6250/", NULL),
928B("Sun","Fire x4150",0, "http://www.sun.com/servers/x64/x4150/", "No public report found. May work now."),
929B("Sun","Fire x4200",0, "http://www.sun.com/servers/entry/x4200/", "No public report found. May work now."),
930B("Sun","Fire x4540",0, "http://www.sun.com/servers/x64/x4540/", "No public report found. May work now."),
931B("Sun","Fire x4600",0, "http://www.sun.com/servers/x64/x4600/", "No public report found. May work now."),
932B("Sun","Ultra 40 M2",1, "http://download.oracle.com/docs/cd/E19127-01/ultra40.ws/820-0123-13/intro.html", NULL),
933B("Supermicro","H8QC8",1, "http://www.supermicro.com/Aplus/motherboard/Opteron/nforce/H8QC8.cfm", NULL),
934B("Supermicro", "X5DP8-G2",1, "http://www.supermicro.com/products/motherboard/Xeon/E7501/X5DP8-G2.cfm", NULL),
935B("Supermicro", "X7DBT-INF",1, "http://www.supermicro.com/products/motherboard/Xeon1333/5000P/X7DBT-INF.cfm", NULL),
936B("Supermicro", "X7SPA-HF",1, "http://www.supermicro.com/products/motherboard/ATOM/ICH9/X7SPA.cfm?typ=H&IPMI=Y", NULL),
937B("Supermicro", "X8DT3",1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DT3.cfm", NULL),
938B("Supermicro", "X8DTE-F",1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DT6-F.cfm?IPMI=Y&SAS=N", NULL),
939B("Supermicro", "X8DTH-6F",1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTH-6F.cfm", NULL),
940B("Supermicro","X8DTT-F",1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTT-F.cfm", NULL),
941B("Supermicro","X8DTT-HIBQF",1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTT-H.cfm", NULL),
942B("Supermicro","X8DTU-6TF+",0, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTU_.cfm?TYP=SAS&LAN=10", "Probing works (Atmel AT25DF321A, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
943B("Supermicro","X8DTU-F",1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTU-F.cfm", NULL),
944B("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)."),
945B("Supermicro","X8STi",1, "http://www.supermicro.com/products/motherboard/Xeon3000/X58/X8STi.cfm", NULL),
946B("Supermicro","X9SCA-F",0, "http://www.supermicro.com/products/motherboard/Xeon/C202_C204/X9SCA-F.cfm", "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
947B("Supermicro","X9SCL",0, "http://www.supermicro.com/products/motherboard/Xeon/C202_C204/X9SCL.cfm", "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
948B("T-Online","S-100",1, "http://wiki.freifunk-hannover.de/T-Online_S_100", NULL),
949B("Tekram","P6Pro-A5",1, "http://www.motherboard.cz/mb/tekram/P6Pro-A5.htm", NULL),
950B("Termtek","TK-3370 (Rev:2.5B)",1, NULL, NULL),
951B("Thomson","IP1000",1, "http://www.settoplinux.org/index.php?title=Thomson_IP1000", NULL),
952B("TriGem","Anaheim-3",1, "http://www.e4allupgraders.info/dir1/motherboards/socket370/anaheim3.shtml", NULL),
953B("TriGem","Lomita",1, "http://www.e4allupgraders.info/dir1/motherboards/socket370/lomita.shtml", NULL),
954B("Tyan","S1846 (Tsunami ATX)",1, "http://www.tyan.com/archive/products/html/tsunamiatx.html", NULL),
955B("Tyan","S2466 (Tiger MPX)",1, "http://www.tyan.com/product_board_detail.aspx?pid=461", NULL),
956B("Tyan","S2498 (Tomcat K7M)",1, "http://www.tyan.com/archive/products/html/tomcatk7m.html", NULL),
957B("Tyan","S2723 (Tiger i7501)",1, "http://www.tyan.com/archive/products/html/tigeri7501.html", NULL),
958B("Tyan","S2875 (Tiger K8W)",1, "http://www.tyan.com/archive/products/html/tigerk8w.html", NULL),
959B("Tyan","S2881 (Thunder K8SR)",1, "http://www.tyan.com/product_board_detail.aspx?pid=115", NULL),
960B("Tyan","S2882-D (Thunder K8SD Pro)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=127", NULL),
961B("Tyan","S2882 (Thunder K8S Pro)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=121", NULL),
962B("Tyan","S2891 (Thunder K8SRE)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=144", NULL),
963B("Tyan","S2892 (Thunder K8SE)",1, "http://www.tyan.com/product_board_detail.aspx?pid=145", NULL),
964B("Tyan","S2895 (Thunder K8WE)",1, "http://www.tyan.com/archive/products/html/thunderk8we.html", NULL),
965B("Tyan","S2912 (Thunder n3600R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=157", NULL),
966B("Tyan","S2915-E (Thunder n6650W)", 1, "http://tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=541&SKU=600000041", NULL),
967B("Tyan","S2915 (Thunder n6650W)", 1, "http://tyan.com/product_board_detail.aspx?pid=163", NULL),
968B("Tyan","S2933 (Thunder n3600S)", 1, "http://tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=478&SKU=600000063", NULL),
969B("Tyan","S3095 (Tomcat i945GM)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=181", NULL),
970B("Tyan","S3992 (Thunder h2000M)", 1, "http://tyan.com/product_board_detail.aspx?pid=235", NULL),
971B("Tyan","S5180 (Toledo i965R)",1, "http://www.tyan.com/product_board_detail.aspx?pid=456", NULL),
972B("Tyan","S5191 (Toledo i3000R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=343", NULL),
973B("Tyan","S5197 (Toledo i3010W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=349", NULL),
974B("Tyan","S5211-1U (Toledo i3200R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=593", NULL),
975B("Tyan","S5211 (Toledo i3210W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=591", NULL),
976B("Tyan","S5220 (Toledo q35T)",1, "http://www.tyan.com/product_board_detail.aspx?pid=597", NULL),
977B("Tyan","S5375-1U (Tempest i5100X)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=610", NULL),
978B("Tyan","S5375 (Tempest i5100X)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=566", NULL),
979B("Tyan","S5376 (Tempest i5100W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=605", "Both S5376G2NR and S5376WAG2NR should work."),
980B("Tyan","S5377 (Tempest i5100T)", 1, "http://www.tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=642&SKU=600000017", NULL),
981B("Tyan","S5382 (Tempest i5000PW)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=439", NULL),
982B("Tyan","S5397 (Tempest i5400PW)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=560", NULL),
983B("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 */
984B("VIA","EPIA SP",1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=261", NULL),
985B("VIA","EPIA-CN",1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=400", NULL),
986B("VIA","EPIA EK",1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?motherboard_id=420", NULL),
987B("VIA","EPIA-EX15000G",1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=450", NULL),
988B("VIA","EPIA-LN",1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=473", NULL),
989B("VIA","EPIA-M700",1, "http://via.com.tw/servlet/downloadSvl?motherboard_id=670&download_file_id=3700", NULL),
990B("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 */
991B("VIA","EPIA-NX15000G",1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=470", NULL),
992B("VIA","NAB74X0",1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=590", NULL),
993B("VIA","pc2500e",1, "http://www.via.com.tw/en/initiatives/empowered/pc2500_mainboard/index.jsp", NULL),
994B("VIA","PC3500G",1, "http://www.via.com.tw/en/initiatives/empowered/pc3500_mainboard/index.jsp", NULL),
995B("VIA","VB700X",1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=490", NULL),
996B("ZOTAC","Fusion-ITX WiFi (FUSION350-A-E)", 1, NULL, NULL),
997B("ZOTAC","GeForce 8200",1, NULL, NULL),
998B("ZOTAC","H67-ITX WiFi (H67ITX-C-E)", 0, NULL, "Probing works (Winbond W25Q32, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
999B("ZOTAC","nForce 630i Supreme (N73U-Supreme)", 1, NULL, NULL),
1000B("ZOTAC","ZBOX AD02 (PLUS)",1, NULL, NULL),
1001B("ZOTAC","ZBOX HD-ID11",1, NULL, NULL),
1002#endif
1003
1004{},
1005};
1006
1007/* Please keep this list alphabetically ordered by vendor/board. */
1008const struct board_info laptops_known[] = {
1009#if defined(__i386__) || defined(__x86_64__)
1010B("Acer","Aspire 1520",1, "http://support.acer.com/us/en/acerpanam/notebook/0000/Acer/Aspire1520/Aspire1520nv.shtml", NULL),
1011B("Acer","Aspire One",0, NULL, "http://www.coreboot.org/pipermail/coreboot/2009-May/048041.html"),
1012B("ASUS","A8Jm",1, NULL, NULL),
1013B("ASUS","Eee PC 701 4G",0, "http://www.asus.com/Eee/Eee_PC/Eee_PC_4G/", "It seems the chip (25X40VSIG) is behind some SPI flash translation layer (likely in the EC, the ENE KB3310)."),
1014B("ASUS","M6Ne",0, "http://www.asus.com/Notebooks/Versatile_Performance/M6NNe/", "Untested board enable."),
1015B("Clevo","P150HM",0, "http://www.clevo.com.tw/en/products/prodinfo_2.asp?productid=307", "Probing works (Macronix MX25L3205, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
1016B("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."),
1017B("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"),
1018B("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)."),
1019B("IBM/Lenovo","Thinkpad T40p",0, "http://www.thinkwiki.org/wiki/Category:T40p", NULL),
1020B("IBM/Lenovo","Thinkpad T420",0, "http://www.thinkwiki.org/wiki/Category:T420", "Probing works (Macronix MX25L6405, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs) and ME is locked. Also, a Protected Range is locking the top range of the BIOS region (presumably the boot block)."),
1021B("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) and ME is locked. Also, a Protected Range is locking the top range of the BIOS region (presumably the boot block)."),
1022B("IBM/Lenovo","Thinkpad X1",0, "http://www.thinkwiki.org/wiki/Category:X1", "Probing works (ST M25PX64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs) and ME is locked. Also, a Protected Range is locking the top range of the BIOS region (presumably the boot block)."),
1023B("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."),
1024B("Lenovo","3000 V100 TF05Cxx",1, "http://www5.pc.ibm.com/europe/products.nsf/products?openagent&brand=Lenovo3000Notebook&series=Lenovo+3000+V+Series#viewallmodelstop", NULL),
1025#endif
1026
1027{},
1028};
1029#endif
1030

Archive Download this file

Revision: HEAD