source: trunk/print.c

Last change on this file was 1653, checked in by stefanct, 3 months ago

Add (untested) board enable for ASUS P4PE-X/TE.

REed by roxfan and Michael Karcher, patch by Stefan Tauner.

Signed-off-by: Stefan Tauner <stefan.tauner@…>
Acked-by: Stefan Tauner <stefan.tauner@…>

File size: 74.9 KB
Line 
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{
34        char *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         */
39        if (bustype == BUS_NONSPI) {
40                ret = strcat_realloc(ret, "Non-SPI, ");
41        } else {
42                if (bustype & BUS_PARALLEL)
43                        ret = strcat_realloc(ret, "Parallel, ");
44                if (bustype & BUS_LPC)
45                        ret = strcat_realloc(ret, "LPC, ");
46                if (bustype & BUS_FWH)
47                        ret = strcat_realloc(ret, "FWH, ");
48                if (bustype & BUS_SPI)
49                        ret = strcat_realloc(ret, "SPI, ");
50                if (bustype & BUS_PROG)
51                        ret = strcat_realloc(ret, "Programmer-specific, ");
52                if (bustype == BUS_NONE)
53                        ret = strcat_realloc(ret, "None, ");
54        }
55        /* Kill last comma. */
56        ret[strlen(ret) - 2] = '\0';
57        ret = realloc(ret, strlen(ret) + 1);
58        return ret;
59}
60
61static int print_supported_chips(void)
62{
63        const char *delim = "/";
64        const int mintoklen = 5;
65        const int border = 2;
66        int i, chipcount = 0;
67        int maxvendorlen = strlen("Vendor") + 1;
68        int maxchiplen = strlen("Device") + 1;
69        int maxtypelen = strlen("Type") + 1;
70        const struct flashchip *chip;
71        char *s;
72        char *tmpven, *tmpdev;
73        int tmpvenlen, tmpdevlen, curvenlen, curdevlen;
74
75        /* calculate maximum column widths and by iterating over all chips */
76        for (chip = flashchips; chip->name != NULL; chip++) {
77                /* Ignore generic entries. */
78                if (!strncmp(chip->vendor, "Unknown", 7) ||
79                    !strncmp(chip->vendor, "Programmer", 10) ||
80                    !strncmp(chip->name, "unknown", 7))
81                        continue;
82                chipcount++;
83
84                /* Find maximum vendor length (respecting line splitting). */
85                tmpven = (char *)chip->vendor;
86                do {
87                        /* and take minimum token lengths into account */
88                        tmpvenlen = 0;
89                        do {
90                                tmpvenlen += strcspn(tmpven, delim);
91                                /* skip to the address after the first token */
92                                tmpven += tmpvenlen;
93                                if (tmpven[0] == '\0')
94                                        break;
95                                tmpven++;
96                        } while (tmpvenlen < mintoklen);
97                        maxvendorlen = max(maxvendorlen, tmpvenlen);
98                        if (tmpven[0] == '\0')
99                                break;
100                } while (1);
101
102                /* same for device name */
103                tmpdev = (char *)chip->name;
104                do {
105                        tmpdevlen = 0;
106                        do {
107                                tmpdevlen += strcspn(tmpdev, delim);
108                                tmpdev += tmpdevlen;
109                                if (tmpdev[0] == '\0')
110                                        break;
111                                tmpdev++;
112                        } while (tmpdevlen < mintoklen);
113                        maxchiplen = max(maxchiplen, tmpdevlen);
114                        if (tmpdev[0] == '\0')
115                                break;
116                } while (1);
117
118                s = flashbuses_to_text(chip->bustype);
119                maxtypelen = max(maxtypelen, strlen(s));
120                free(s);
121        }
122        maxvendorlen += border;
123        maxchiplen += border;
124        maxtypelen += border;
125
126        msg_ginfo("Supported flash chips (total: %d):\n\n", chipcount);
127        msg_ginfo("Vendor");
128        for (i = strlen("Vendor"); i < maxvendorlen; i++)
129                msg_ginfo(" ");
130        msg_ginfo("Device");
131        for (i = strlen("Device"); i < maxchiplen; i++)
132                msg_ginfo(" ");
133
134        msg_ginfo("Test");
135        for (i = 0; i < border; i++)
136                msg_ginfo(" ");
137        msg_ginfo("Known");
138        for (i = 0; i < border; i++)
139                msg_ginfo(" ");
140        msg_ginfo(" Size");
141        for (i = 0; i < border; i++)
142                msg_ginfo(" ");
143
144        msg_ginfo("Type");
145        for (i = strlen("Type"); i < maxtypelen; i++)
146                msg_ginfo(" ");
147        msg_gdbg("Voltage");
148        msg_ginfo("\n");
149
150        for (i = 0; i < maxvendorlen + maxchiplen; i++)
151                msg_ginfo(" ");
152        msg_ginfo("OK  ");
153        for (i = 0; i < border; i++)
154                msg_ginfo(" ");
155        msg_ginfo("Broken");
156        for (i = 0; i < border; i++)
157                msg_ginfo(" ");
158        msg_ginfo("[kB]");
159        for (i = 0; i < border + maxtypelen; i++)
160                msg_ginfo(" ");
161        msg_gdbg("range [V]");
162        msg_ginfo("\n\n");
163        msg_ginfo("(P = PROBE, R = READ, E = ERASE, W = WRITE)\n\n");
164
165        for (chip = flashchips; chip->name != NULL; chip++) {
166                /* Don't print generic entries. */
167                if (!strncmp(chip->vendor, "Unknown", 7) ||
168                    !strncmp(chip->vendor, "Programmer", 10) ||
169                    !strncmp(chip->name, "unknown", 7))
170                        continue;
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                 */
182                tmpven = malloc(strlen(chip->vendor) + 1);
183                if (tmpven == NULL) {
184                        msg_gerr("Out of memory!\n");
185                        return 1;
186                }
187                strcpy(tmpven, chip->vendor);
188
189                tmpven = strtok(tmpven, delim);
190                msg_ginfo("%s", tmpven);
191                curvenlen = strlen(tmpven);
192                while ((tmpven = strtok(NULL, delim)) != NULL) {
193                        msg_ginfo("%s", delim);
194                        curvenlen++;
195                        tmpvenlen = strlen(tmpven);
196                        if (tmpvenlen >= mintoklen)
197                                break; /* big enough to be on its own line */
198                        msg_ginfo("%s", tmpven);
199                        curvenlen += tmpvenlen;
200                }
201
202                for (i = curvenlen; i < maxvendorlen; i++)
203                        msg_ginfo(" ");
204
205                /* support for multiline device names as above */
206                tmpdev = malloc(strlen(chip->name) + 1);
207                if (tmpdev == NULL) {
208                        msg_gerr("Out of memory!\n");
209                        return 1;
210                }
211                strcpy(tmpdev, chip->name);
212
213                tmpdev = strtok(tmpdev, delim);
214                msg_ginfo("%s", tmpdev);
215                curdevlen = strlen(tmpdev);
216                while ((tmpdev = strtok(NULL, delim)) != NULL) {
217                        msg_ginfo("%s", delim);
218                        curdevlen++;
219                        tmpdevlen = strlen(tmpdev);
220                        if (tmpdevlen >= mintoklen)
221                                break; /* big enough to be on its own line */
222                        msg_ginfo("%s", tmpdev);
223                        curdevlen += tmpdevlen;
224                }
225
226                for (i = curdevlen; i < maxchiplen; i++)
227                        msg_ginfo(" ");
228
229                if ((chip->tested & TEST_OK_PROBE))
230                        msg_ginfo("P");
231                else
232                        msg_ginfo(" ");
233                if ((chip->tested & TEST_OK_READ))
234                        msg_ginfo("R");
235                else
236                        msg_ginfo(" ");
237                if ((chip->tested & TEST_OK_ERASE))
238                        msg_ginfo("E");
239                else
240                        msg_ginfo(" ");
241                if ((chip->tested & TEST_OK_WRITE))
242                        msg_ginfo("W");
243                else
244                        msg_ginfo(" ");
245                for (i = 0; i < border; i++)
246                        msg_ginfo(" ");
247
248                if ((chip->tested & TEST_BAD_PROBE))
249                        msg_ginfo("P");
250                else
251                        msg_ginfo(" ");
252                if ((chip->tested & TEST_BAD_READ))
253                        msg_ginfo("R");
254                else
255                        msg_ginfo(" ");
256                if ((chip->tested & TEST_BAD_ERASE))
257                        msg_ginfo("E");
258                else
259                        msg_ginfo(" ");
260                if ((chip->tested & TEST_BAD_WRITE))
261                        msg_ginfo("W");
262                else
263                        msg_ginfo(" ");
264                for (i = 0; i < border + 1; i++)
265                        msg_ginfo(" ");
266
267                msg_ginfo("%5d", chip->total_size);
268                for (i = 0; i < border; i++)
269                        msg_ginfo(" ");
270
271                s = flashbuses_to_text(chip->bustype);
272                msg_ginfo("%s", s);
273                for (i = strlen(s); i < maxtypelen; i++)
274                        msg_ginfo(" ");
275                free(s);
276
277                if (chip->voltage.min == 0 && chip->voltage.max == 0)
278                        msg_gdbg("no info");
279                else
280                        msg_gdbg("%0.02f;%0.02f",
281                                 chip->voltage.min/(double)1000,
282                                 chip->voltage.max/(double)1000);
283
284                /* print surplus vendor and device name tokens */
285                while (tmpven != NULL || tmpdev != NULL) {
286                        msg_ginfo("\n");
287                        if (tmpven != NULL){
288                                msg_ginfo("%s", tmpven);
289                                curvenlen = strlen(tmpven);
290                                while ((tmpven = strtok(NULL, delim)) != NULL) {
291                                        msg_ginfo("%s", delim);
292                                        curvenlen++;
293                                        tmpvenlen = strlen(tmpven);
294                                        /* big enough to be on its own line */
295                                        if (tmpvenlen >= mintoklen)
296                                                break;
297                                        msg_ginfo("%s", tmpven);
298                                        curvenlen += tmpvenlen;
299                                }
300                        } else
301                                curvenlen = 0;
302
303                        for (i = curvenlen; i < maxvendorlen; i++)
304                                msg_ginfo(" ");
305
306                        if (tmpdev != NULL){
307                                msg_ginfo("%s", tmpdev);
308                                curdevlen = strlen(tmpdev);
309                                while ((tmpdev = strtok(NULL, delim)) != NULL) {
310                                        msg_ginfo("%s", delim);
311                                        curdevlen++;
312                                        tmpdevlen = strlen(tmpdev);
313                                        /* big enough to be on its own line */
314                                        if (tmpdevlen >= mintoklen)
315                                                break;
316                                        msg_ginfo("%s", tmpdev);
317                                        curdevlen += tmpdevlen;
318                                }
319                        }
320                }
321                msg_ginfo("\n");
322        }
323
324        return 0;
325}
326
327#if CONFIG_INTERNAL == 1
328static void print_supported_chipsets(void)
329{
330        int i, chipsetcount = 0;
331        const struct penable *c = chipset_enables;
332        int maxvendorlen = strlen("Vendor") + 1;
333        int maxchipsetlen = strlen("Chipset") + 1;
334
335        for (c = chipset_enables; c->vendor_name != NULL; c++) {
336                chipsetcount++;
337                maxvendorlen = max(maxvendorlen, strlen(c->vendor_name));
338                maxchipsetlen = max(maxchipsetlen, strlen(c->device_name));
339        }
340        maxvendorlen++;
341        maxchipsetlen++;
342
343        msg_ginfo("Supported chipsets (total: %d):\n\n", chipsetcount);
344
345        msg_ginfo("Vendor");
346        for (i = strlen("Vendor"); i < maxvendorlen; i++)
347                msg_ginfo(" ");
348
349        msg_ginfo("Chipset");
350        for (i = strlen("Chipset"); i < maxchipsetlen; i++)
351                msg_ginfo(" ");
352
353        msg_ginfo("PCI IDs   State\n\n");
354
355        for (c = chipset_enables; c->vendor_name != NULL; c++) {
356                msg_ginfo("%s", c->vendor_name);
357                for (i = 0; i < maxvendorlen - strlen(c->vendor_name); i++)
358                        msg_ginfo(" ");
359                msg_ginfo("%s", c->device_name);
360                for (i = 0; i < maxchipsetlen - strlen(c->device_name); i++)
361                        msg_ginfo(" ");
362                msg_ginfo("%04x:%04x%s\n", c->vendor_id, c->device_id,
363                       (c->status == NT) ? " (untested)" : "");
364        }
365}
366
367static void print_supported_boards_helper(const struct board_info *boards,
368                                   const char *devicetype)
369{
370        int i;
371        unsigned int boardcount_good = 0, boardcount_bad = 0, boardcount_nt = 0;
372        const struct board_match *e = board_matches;
373        const struct board_info *b = boards;
374        int maxvendorlen = strlen("Vendor") + 1;
375        int maxboardlen = strlen("Board") + 1;
376
377        for (b = boards; b->vendor != NULL; b++) {
378                maxvendorlen = max(maxvendorlen, strlen(b->vendor));
379                maxboardlen = max(maxboardlen, strlen(b->name));
380                if (b->working == OK)
381                        boardcount_good++;
382                else if (b->working == NT)
383                        boardcount_nt++;
384                else
385                        boardcount_bad++;
386        }
387        maxvendorlen++;
388        maxboardlen++;
389
390        msg_ginfo("%d known %s (good: %d, untested: %d, bad: %d):\n\n",
391                  boardcount_good + boardcount_nt + boardcount_bad,
392                  devicetype, boardcount_good, boardcount_nt, boardcount_bad);
393
394        msg_ginfo("Vendor");
395        for (i = strlen("Vendor"); i < maxvendorlen; i++)
396                msg_ginfo(" ");
397
398        msg_ginfo("Board");
399        for (i = strlen("Board"); i < maxboardlen; i++)
400                msg_ginfo(" ");
401
402        msg_ginfo("Status  Required value for\n");
403        for (i = 0; i < maxvendorlen + maxboardlen + strlen("Status  "); i++)
404                msg_ginfo(" ");
405        msg_ginfo("-p internal:mainboard=\n");
406
407        for (b = boards; b->vendor != NULL; b++) {
408                msg_ginfo("%s", b->vendor);
409                for (i = 0; i < maxvendorlen - strlen(b->vendor); i++)
410                        msg_ginfo(" ");
411                msg_ginfo("%s", b->name);
412                for (i = 0; i < maxboardlen - strlen(b->name); i++)
413                        msg_ginfo(" ");
414                        if (b->working == OK)
415                                msg_ginfo("OK      ");
416                        else if (b->working == NT)
417                                msg_ginfo("NT      ");
418                        else
419                                msg_ginfo("BAD     ");
420
421                for (e = board_matches; e->vendor_name != NULL; e++) {
422                        if (strcmp(e->vendor_name, b->vendor)
423                            || strcmp(e->board_name, b->name))
424                                continue;
425                        if (e->lb_vendor == NULL)
426                                msg_ginfo("(autodetected)");
427                        else
428                                msg_ginfo("%s:%s", e->lb_vendor,
429                                                   e->lb_part);
430                }
431                msg_ginfo("\n");
432        }
433}
434#endif
435
436void print_supported_devs(const struct programmer_entry prog, const char *const type)
437{
438        int i;
439
440        const struct dev_entry *const devs = prog.devs.dev;
441        msg_ginfo("\nSupported %s devices for the %s programmer:\n", type, prog.name);
442        for (i = 0; devs[i].vendor_name != NULL; i++) {
443                msg_pinfo("%s %s [%04x:%04x]%s\n", devs[i].vendor_name, devs[i].device_name, devs[i].vendor_id,
444                          devs[i].device_id, (devs[i].status == NT) ? " (untested)" : "");
445        }
446}
447
448int print_supported(void)
449{
450        unsigned int i;
451        if (print_supported_chips())
452                return 1;
453
454        msg_ginfo("\nSupported programmers:\n");
455        list_programmers_linebreak(0, 80, 0);
456        msg_ginfo("\n");
457#if CONFIG_INTERNAL == 1
458        msg_ginfo("\nSupported devices for the %s programmer:\n\n",
459               programmer_table[PROGRAMMER_INTERNAL].name);
460        print_supported_chipsets();
461        msg_ginfo("\n");
462        print_supported_boards_helper(boards_known, "boards");
463        msg_ginfo("\n");
464        print_supported_boards_helper(laptops_known, "laptops");
465#endif
466        for (i = 0; i < PROGRAMMER_INVALID; i++) {
467                const struct programmer_entry prog = programmer_table[i];
468                switch (prog.type) {
469                case USB:
470                        print_supported_devs(prog, "USB");
471                        break;
472#if NEED_PCI == 1
473                case PCI:
474                        print_supported_devs(prog, "PCI");
475                        break;
476#endif
477                case OTHER:
478                        if (prog.devs.note != NULL) {
479                                msg_ginfo("\nSupported devices for the %s programmer:\n", prog.name);
480                                msg_ginfo("%s", prog.devs.note);
481                        }
482                        break;
483                default:
484                        msg_gerr("\n%s: %s: Uninitialized programmer type! Please report a bug at "
485                                 "flashrom@flashrom.org\n", __func__, prog.name);
486                        break;
487                }
488        }
489        return 0;
490}
491
492#if CONFIG_INTERNAL == 1
493
494#ifdef CONFIG_PRINT_WIKI
495#define B(vendor, name, status, url, note) { vendor, name, status, url, note }
496#else
497#define B(vendor, name, status, url, note) { vendor, name, status }
498#endif
499
500/* Please keep this list alphabetically ordered by vendor/board. */
501const struct board_info boards_known[] = {
502#if defined(__i386__) || defined(__x86_64__)
503        B("A-Trend",    "ATC-6220",             OK, "http://www.motherboard.cz/mb/atrend/atc6220.htm", NULL),
504        B("abit",       "A-S78H",               OK, NULL, NULL),
505        B("abit",       "AN-M2",                OK, NULL, NULL),
506        B("abit",       "AV8",                  OK, NULL, NULL),
507        B("abit",       "AX8",                  OK, NULL, NULL),
508        B("abit",       "BM6",                  OK, NULL, NULL),
509        B("abit",       "Fatal1ty F-I90HD",     OK, NULL, NULL),
510        B("abit",       "IC7",                  OK, NULL, NULL),
511        B("abit",       "IP35",                 OK, NULL, NULL),
512        B("abit",       "IP35 Pro",             OK, NULL, NULL),
513        B("abit",       "IS-10",                BAD, NULL, "Reported by deejkuba@aol.com to flashrom@coreboot.org, no public archive. Missing board enable and/or M50FW040 unlocking. May work now."),
514        B("abit",       "KN8 Ultra",            OK, NULL, NULL),
515        B("abit",       "NF-M2 nView",          OK, NULL, NULL),
516        B("abit",       "NF-M2S",               OK, NULL, NULL),
517        B("abit",       "NF7-S",                OK, NULL, NULL),
518        B("abit",       "VA6",                  OK, NULL, NULL),
519        B("abit",       "VT6X4",                OK, NULL, NULL),
520        B("Acer",       "V75-M",                OK, NULL, "This is an OEM board used by IBM in e.g. Aptiva 2170-G"),
521        B("Acorp",      "6A815EPD",             OK, "http://web.archive.org/web/20021206163652/www.acorp.com.tw/English/default.asp", NULL),
522        B("Acorp",      "6M810C",               OK, NULL, NULL),
523        B("Advantech",  "PCM-5820",             OK, "http://www.emacinc.com/sbc_pc_compatible/pcm_5820.htm", NULL),
524        B("agami",      "Aruma",                OK, "http://web.archive.org/web/20080212111524/http://www.agami.com/site/ais-6000-series", NULL),
525        B("Albatron",   "PM266A Pro",           OK, "http://www.albatron.com.tw/English/Product/MB/pro_detail.asp?rlink=Overview&no=56", NULL), /* FIXME */
526        B("Alienware",  "Aurora-R2",            BAD, NULL, "Mainboard model is 0RV30W. 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."),
527        B("AOpen",      "i945GMx-VFX",          OK, NULL, "This is (also?) an OEM board from FSC (used in e.g. ESPRIMO Q5010 with designation D2544-B1)."),
528        B("AOpen",      "vKM400Am-S",           OK, "http://usa.aopen.com/products_detail.aspx?Auno=824", NULL),
529        B("Artec Group","DBE61",                OK, "http://wiki.thincan.org/DBE61", NULL),
530        B("Artec Group","DBE62",                OK, "http://wiki.thincan.org/DBE62", NULL),
531        B("ASI",        "MB-5BLMP",             OK, "http://www.hojerteknik.com/winnet.htm", "Used in the IGEL WinNET III thin client."),
532        B("ASRock",     "4CoreDual-VSTA",       OK, "http://www.asrock.com/mb/overview.asp?Model=4CoreDual-VSTA", "W39V040FB"),
533        B("ASRock",     "775Dual-VSTA",         OK, "http://www.asrock.com/mb/overview.asp?Model=775Dual-VSTA", NULL),
534        B("ASRock",     "775i65G",              OK, "http://www.asrock.com/mb/overview.asp?Model=775i65G", NULL),
535        B("ASRock",     "880G Pro3",            OK, "http://www.asrock.com/mb/overview.asp?Model=880G%20Pro3", NULL),
536        B("ASRock",     "890GX Extreme3",       OK, "http://www.asrock.com/mb/overview.asp?Model=890GX%20Extreme3", NULL),
537        B("ASRock",     "939A785GMH/128M",      OK, "http://www.asrock.com/mb/overview.asp?Model=939A785GMH/128M", NULL),
538        B("ASRock",     "A330GC",               OK, "http://www.asrock.com/mb/overview.asp?Model=A330GC", NULL),
539        B("ASRock",     "A770CrossFire",        OK, "http://www.asrock.com/mb/overview.asp?Model=A770CrossFire", NULL),
540        B("ASRock",     "A780FullHD",           OK, "http://www.asrock.com/mb/overview.asp?Model=A780FullHD", "While flashrom is working correctly, there might be problems with the firmware images themselves. Please see http://www.flashrom.org/pipermail/flashrom/2012-July/009600.html for details."),
541        B("ASRock",     "ALiveNF6G-DVI",        OK, "http://www.asrock.com/mb/overview.asp?Model=ALiveNF6G-DVI", NULL),
542        B("ASRock",     "AM2NF6G-VSTA",         OK, "http://www.asrock.com/mb/overview.asp?Model=AM2NF6G-VSTA", NULL),
543        B("ASRock",     "E350M1/USB3",          OK, "http://www.asrock.com/mb/overview.asp?model=e350m1/usb3", NULL),
544        B("ASRock",     "G31M-S rev 2.0",       OK, "http://www.asrock.com/mb/overview.asp?model=G31M-S", NULL),
545        B("ASRock",     "ConRoeXFire-eSATA2",   OK, "http://www.asrock.com/mb/overview.asp?model=conroexfire-esata2", NULL),
546        B("ASRock",     "H61M-ITX",             BAD, "http://www.asrock.com/mb/overview.asp?Model=H61M-ITX", "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."),
547        B("ASRock",     "H67M",                 BAD, "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."),
548        B("ASRock",     "K7S41",                OK, "http://www.asrock.com/mb/overview.asp?Model=K7S41", NULL),
549        B("ASRock",     "K7S41GX",              OK, "http://www.asrock.com/mb/overview.asp?Model=K7S41GX", NULL),
550        B("ASRock",     "K7VT4A+",              BAD, "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"),
551        B("ASRock",     "K8S8X",                OK, "http://www.asrock.com/mb/overview.asp?Model=K8S8X", NULL),
552        B("ASRock",     "M3A790GXH/128M",       OK, "http://www.asrock.com/mb/overview.asp?Model=M3A790GXH/128M", NULL),
553        B("ASRock",     "N61P-S",               OK, "http://www.asrock.com/mb/overview.asp?Model=N61P-S", NULL),
554        B("ASRock",     "P4i65GV",              OK, "http://www.asrock.com/mb/overview.asp?Model=P4i65GV", NULL),
555        B("ASUS",       "A7N8X Deluxe",         OK, "http://www.asus.com/Motherboards/AMD_Socket_A/A7N8X_Deluxe/", NULL),
556        B("ASUS",       "A7N8X-E Deluxe",       OK, "http://www.asus.com/Motherboards/AMD_Socket_A/A7N8XE_Deluxe/", NULL),
557        B("ASUS",       "A7N8X-VM/400",         OK, "http://www.asus.com/Motherboards/AMD_Socket_A/A7N8XVM400/", NULL),
558        B("ASUS",       "A7V133",               OK, NULL, NULL),
559        B("ASUS",       "A7V333",               OK, NULL, NULL),
560        B("ASUS",       "A7V400-MX",            OK, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V400MX/", NULL),
561        B("ASUS",       "A7V600-X",             OK, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V600X/", NULL),
562        B("ASUS",       "A7V8X",                OK, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8X/", NULL),
563        B("ASUS",       "A7V8X-MX",             OK, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8XMX/", NULL),
564        B("ASUS",       "A7V8X-MX SE",          OK, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8XMX_SE/", NULL),
565        B("ASUS",       "A7V8X-X",              OK, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8XX/", NULL),
566        B("ASUS",       "A8M2N-LA (NodusM3-GL8E)", OK, "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."),
567        B("ASUS",       "A8N-E",                OK, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NE/", NULL),
568        B("ASUS",       "A8N-LA (Nagami-GL8E)", OK, "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."),
569        B("ASUS",       "A8N-SLI",              OK, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NSLI/", NULL),
570        B("ASUS",       "A8N-SLI Deluxe",       NT, NULL, "Should work out of the box since r1593."),
571        B("ASUS",       "A8N-SLI Premium",      OK, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NSLI_Premium/", NULL),
572        B("ASUS",       "A8N-VM",               OK, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NVM/", NULL),
573        B("ASUS",       "A8N-VM CSM",           OK, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NVM_CSM/", NULL),
574        B("ASUS",       "A8NE-FM/S",            OK, "http://www.hardwareschotte.de/hardware/preise/proid_1266090/preis_ASUS+A8NE-FM", NULL),
575        B("ASUS",       "A8V Deluxe",           OK, "http://www.asus.com/Motherboards/AMD_Socket_939/A8V_Deluxe/", NULL),
576        B("ASUS",       "A8V-E Deluxe",         OK, "http://www.asus.com/Motherboards/AMD_Socket_939/A8VE_Deluxe/", NULL),
577        B("ASUS",       "A8V-E SE",             OK, "http://www.asus.com/Motherboards/AMD_Socket_939/A8VE_SE/", "See http://www.coreboot.org/pipermail/coreboot/2007-October/026496.html"),
578        B("ASUS",       "Crosshair II Formula", OK, "http://www.asus.com/Motherboards/AMD_AM2Plus/Crosshair_II_Formula/", NULL),
579        B("ASUS",       "Crosshair IV Extreme", OK, "http://www.asus.com/Motherboards/AMD_AM3/Crosshair_IV_Extreme/", NULL),
580        B("ASUS",       "DSAN-DX",              NT, "http://www.asus.com/Server_Workstation/Server_Motherboards/DSANDX/", NULL),
581        B("ASUS",       "E35M1-I DELUXE",       OK, "http://www.asus.com/Motherboards/AMD_CPU_on_Board/E35M1I_DELUXE/", NULL),
582        B("ASUS",       "F1A75-V PRO",          OK, "http://www.asus.com/Motherboard/F1A75V_PRO/", NULL),
583        B("ASUS",       "K8N",                  OK, "http://www.asus.com/Motherboards/AMD_Socket_754/K8N/", NULL),
584        B("ASUS",       "K8V",                  OK, "http://www.asus.com/Motherboards/AMD_Socket_754/K8V/", NULL),
585        B("ASUS",       "K8V SE Deluxe",        OK, "http://www.asus.com/Motherboards/AMD_Socket_754/K8V_SE_Deluxe/", NULL),
586        B("ASUS",       "K8V-X",                OK, "http://www.asus.com/Motherboards/AMD_Socket_754/K8VX/", NULL),
587        B("ASUS",       "K8V-X SE",             OK, "http://www.asus.com/Motherboards/AMD_Socket_754/K8VX_SE/", NULL),
588        B("ASUS",       "KFSN4-DRE/SAS",        OK, "http://www.asus.com/Server_Workstation/Server_Motherboards/KFSN4DRESAS/", NULL),
589        B("ASUS",       "M2A-MX",               OK, "http://www.asus.com/Motherboards/AMD_AM2/M2AMX/", NULL),
590        B("ASUS",       "M2A-VM (HDMI)",        OK, "http://www.asus.com/Motherboards/AMD_AM2/M2AVM/", NULL),
591        B("ASUS",       "M2N32-SLI Deluxe",     OK, "http://www.asus.com/Motherboards/AMD_AM2/M2N32SLI_DeluxeWireless_Edition/", NULL),
592        B("ASUS",       "M2N68-VM",             OK, "http://www.asus.com/Motherboards/AMD_AM2Plus/M2N68VM/", NULL),
593        B("ASUS",       "M2N-E",                OK, "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"),
594        B("ASUS",       "M2N-E SLI",            OK, "http://www.asus.com/Motherboards/AMD_AM2/M2NE_SLI/", NULL),
595        B("ASUS",       "M2N-SLI Deluxe",       OK, "http://www.asus.com/Motherboards/AMD_AM2/M2NSLI_Deluxe/", NULL),
596        B("ASUS",       "M2NBP-VM CSM",         OK, "http://www.asus.com/Motherboards/AMD_AM2/M2NBPVM_CSM/", NULL),
597        B("ASUS",       "M2NPV-VM",             OK, "http://www.asus.com/Motherboards/AMD_AM2/M2NPVVM/", NULL),
598        B("ASUS",       "M2V",                  OK, "http://www.asus.com/Motherboards/AMD_AM2/M2V/", NULL),
599        B("ASUS",       "M2V-MX",               OK, "http://www.asus.com/Motherboards/AMD_AM2/M2VMX/", NULL),
600        B("ASUS",       "M3A",                  OK, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3A/", NULL),
601        B("ASUS",       "M3A76-CM",             OK, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3A76CM/", NULL),
602        B("ASUS",       "M3A78-EH",             OK, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3A78EH/", NULL),
603        B("ASUS",       "M3A78-EM",             OK, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3A78EM/", NULL),
604        B("ASUS",       "M3N78 PRO",            OK, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3N78_PRO/", NULL),
605        B("ASUS",       "M3N78-VM",             OK, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3N78VM/", NULL),
606        B("ASUS",       "M4A78-EM",             OK, "http://www.asus.com/Motherboards/AMD_AM2Plus/M4A78EM/", NULL),
607        B("ASUS",       "M4A785T-M",            OK, "http://www.asus.com/Motherboards/AMD_AM3/M4A785TM/", NULL),
608        B("ASUS",       "M4A785TD-M EVO",       OK, "http://www.asus.com/Motherboards/AMD_AM3/M4A785TDM_EVO/", NULL),
609        B("ASUS",       "M4A785TD-V EVO",       OK, "http://www.asus.com/Motherboards/AMD_AM3/M4A785TDV_EVO/", NULL),
610        B("ASUS",       "M4A78LT-M LE",         OK, "http://www.asus.com/Motherboards/AMD_AM3/M4A78LTM_LE/", NULL),
611        B("ASUS",       "M4A79T Deluxe",        OK, "http://www.asus.com/Motherboards/AMD_AM3/M4A79T_Deluxe/", NULL),
612        B("ASUS",       "M4A87TD/USB3",         OK, "http://www.asus.com/Motherboards/AMD_AM3/M4A87TDUSB3/", NULL),
613        B("ASUS",       "M4A89GTD PRO",         OK, "http://www.asus.com/Motherboards/AMD_AM3/M4A89GTD_PRO/", NULL),
614        B("ASUS",       "M4N68T V2",            OK, "http://www.asus.com/Motherboards/AMD_AM3/M4N68T_V2/", NULL),
615        B("ASUS",       "M4N78 PRO",            OK, "http://www.asus.com/Motherboards/AMD_AM2Plus/M4N78_PRO/", NULL),
616        B("ASUS",       "M5A78L-M LX",          OK, "http://www.asus.com/Motherboards/AMD_AM3Plus/M5A78LM_LX/", "The MAC address of the onboard LAN NIC is stored in flash, hence overwritten by flashrom; see http://www.flashrom.org/pipermail/flashrom/2012-May/009200.html"),
617        B("ASUS",       "M5A97 (rev. 1.0)",     OK, "http://www.asus.com/Motherboard/M5A97/", NULL),
618        B("ASUS",       "M5A99X EVO",           OK, "http://www.asus.com/Motherboards/AMD_AM3Plus/M5A99X_EVO/", NULL),
619        B("ASUS",       "Maximus IV Extreme",   BAD, "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."),
620        B("ASUS",       "MEW-AM",               BAD, NULL, "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."),
621        B("ASUS",       "MEW-VM",               BAD, "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."),
622        B("ASUS",       "OPLX-M",               NT, NULL, "Untested board enable."),
623        B("ASUS",       "P2B",                  OK, NULL, NULL),
624        B("ASUS",       "P2B-D",                OK, NULL, NULL),
625        B("ASUS",       "P2B-DS",               OK, NULL, NULL),
626        B("ASUS",       "P2B-F",                OK, NULL, NULL),
627        B("ASUS",       "P2B-LS",               OK, NULL, NULL),
628        B("ASUS",       "P2B-N",                OK, NULL, NULL),
629        B("ASUS",       "P2E-M",                OK, NULL, NULL),
630        B("ASUS",       "P2L97-S",              OK, NULL, NULL),
631        B("ASUS",       "P3B-F",                BAD, NULL, "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."),
632        B("ASUS",       "P4B266",               OK, NULL, NULL),
633        B("ASUS",       "P4B266-LM",            OK, "http://esupport.sony.com/US/perl/swu-list.pl?mdl=PCVRX650", NULL),
634        B("ASUS",       "P4B533-E",             OK, NULL, NULL),
635        B("ASUS",       "P4C800-E Deluxe",      OK, "http://www.asus.com/Motherboards/Intel_Socket_478/P4C800E_Deluxe/", NULL),
636        B("ASUS",       "P4GV-LA (Guppy)",      OK, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00363478", NULL),
637        B("ASUS",       "P4P800",               OK, "http://www.asus.com/Motherboards/Intel_Socket_478/P4P800/", NULL),
638        B("ASUS",       "P4P800-E Deluxe",      OK, "http://www.asus.com/Motherboards/Intel_Socket_478/P4P800E_Deluxe/", NULL),
639        B("ASUS",       "P4P800-VM",            OK, "http://www.asus.com/Motherboards/Intel_Socket_478/P4P800VM/", NULL),
640        B("ASUS",       "P4P800-X",             OK, "http://www.asus.com/Motherboards/Intel_Socket_478/P4P800X/", NULL),
641        B("ASUS",       "P4PE-X/TE",            NT, "http://www.asus.com/999/html/events/mb/socket478/p4pe-x-te/overview.htm", NULL),
642        B("ASUS",       "P4S533-X",             OK, NULL, NULL),
643        B("ASUS",       "P4S800-MX",            OK, "http://www.asus.com/Motherboards/Intel_Socket_478/P4S800MX/", NULL),
644        B("ASUS",       "P4SC-E",               OK, NULL, "Part of ASUS Terminator P4 533 barebone system"),
645        B("ASUS",       "P4SD-LA",              OK, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00022505", NULL),
646        B("ASUS",       "P5A",                  OK, NULL, NULL),
647        B("ASUS",       "P5B",                  OK, NULL, NULL),
648        B("ASUS",       "P5B-Deluxe",           OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5B_Deluxe/", NULL),
649        B("ASUS",       "P5B-VM",               OK, NULL, NULL),
650        B("ASUS",       "P5BV-M",               BAD, NULL, "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."),
651        B("ASUS",       "P5BV-R",               OK, "http://www.asus.com/Server_Workstation/Servers/RS120E5PA2/", "Used in RS120-E5/PA2 servers."),
652        B("ASUS",       "P5GC-MX/1333",         OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GCMX1333/", NULL),
653        B("ASUS",       "P5GD1 Pro",            OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GD1_PRO/", NULL),
654        B("ASUS",       "P5GD1-VM/S",           OK, 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."),
655        B("ASUS",       "P5GD1(-VM)",           NT, NULL, "Untested board enable."),
656        B("ASUS",       "P5GD2 Premium",        OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GD2_Premium/", NULL),
657        B("ASUS",       "P5GD2-X",              OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GD2X/", NULL),
658        B("ASUS",       "P5GDC Deluxe",         OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GDC_Deluxe/", NULL),
659        B("ASUS",       "P5GDC-V Deluxe",       OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GDCV_Deluxe/", NULL),
660        B("ASUS",       "P5GD2/C variants",     NT, NULL, "Untested board enable."),
661        B("ASUS",       "P5K-V",                OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5KV/", NULL),
662        B("ASUS",       "P5K-VM",               OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5KVM/", NULL),
663        B("ASUS",       "P5KC",                 OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5KC/", NULL),
664        B("ASUS",       "P5KPL-AM IN/GB",       OK, "http://support.asus.com/download.aspx?SLanguage=en&m=P5KPL-AM+IN%2fGB&os=29", NULL),
665        B("ASUS",       "P5KPL-CM",             OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5KPLCM/", NULL),
666        B("ASUS",       "P5L-MX",               OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5LMX/", NULL),
667        B("ASUS",       "P5L-VM 1394",          OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5LVM_1394/", NULL),
668        B("ASUS",       "P5LD2",                NT, NULL, "Untested board enable."),
669        B("ASUS",       "P5LD2-VM",             NT, "http://www.asus.com/Motherboards/Intel_Socket_775/P5LD2VM/", "Untested board enable."),
670        B("ASUS",       "P5LP-LE (Lithium-UL8E)", OK, "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."),
671        B("ASUS",       "P5LP-LE (Epson OEM)",  OK, NULL, "This is an OEM board from Epson (e.g. Endeavor MT7700)."),
672        B("ASUS",       "P5LP-LE",              NT, 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."),
673        B("ASUS",       "P5N-D",                OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5ND/", NULL),
674        B("ASUS",       "P5N-E SLI",            NT, "http://www.asus.com/Motherboards/Intel_Socket_775/P5NE_SLI/", "Untested board enable."),
675        B("ASUS",       "P5N32-E SLI",          OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5N32E_SLI/", NULL),
676        B("ASUS",       "P5N7A-VM",             OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5N7AVM/", NULL),
677        B("ASUS",       "P5ND2-SLI Deluxe",     OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5ND2SLI_Deluxe/", NULL),
678        B("ASUS",       "P5PE-VM",              OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5PEVM/", NULL),
679        B("ASUS",       "P5QPL-AM",             OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5QPLAM/", NULL),
680        B("ASUS",       "P5VD1-X",              OK, "http://www.asus.com/Motherboards/Intel_Socket_775/P5VD1X/", NULL),
681        B("ASUS",       "P5VD2-MX",             OK, "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"),
682        B("ASUS",       "P6T SE",               OK, "http://www.asus.com/Motherboards/Intel_Socket_1366/P6T_SE/", NULL),
683        B("ASUS",       "P6T Deluxe",           OK, "http://www.asus.com/Motherboards/Intel_Socket_1366/P6T_Deluxe/", NULL),
684        B("ASUS",       "P6T Deluxe V2",        OK, "http://www.asus.com/Motherboards/Intel_Socket_1366/P6T_Deluxe_V2/", NULL),
685        B("ASUS",       "P7H57D-V EVO",         OK, "http://www.asus.com/Motherboards/Intel_Socket_1156/P7H57DV_EVO/", NULL),
686        B("ASUS",       "P7H55-M LX",           BAD, 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)"),
687        B("ASUS",       "P8B-E/4L",             BAD, 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."),
688        B("ASUS",       "P8B WS",               BAD, 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."),
689        B("ASUS",       "P8H61 PRO",            BAD, 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."),
690        B("ASUS",       "P8H61-M LE/USB3",      BAD, 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."),
691        B("ASUS",       "P8H67-M PRO",          BAD, 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."),
692        B("ASUS",       "P8P67 (rev. 3.1)",     BAD, 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."),
693        B("ASUS",       "P8P67 LE",             BAD, 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."),
694        B("ASUS",       "P8P67 PRO (rev. 3.0)", OK, "http://www.asus.com/Motherboards/Intel_Socket_1155/P8P67_PRO/", NULL),
695        B("ASUS",       "P8Z68-V",              OK, "http://www.asus.com/Motherboards/Intel_Socket_1155/P8Z68V/", "Warning: MAC address of LOM is stored at 0x1000 - 0x1005 of the image."),
696        B("ASUS",       "P8Z68-V PRO",          BAD, 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."),
697        B("ASUS",       "P8Z68-V PRO/GEN3",     OK, "http://www.asus.com/Motherboards/Intel_Socket_1155/P8Z68V_PROGEN3/", "Warning: MAC address of LOM is stored at 0x1000 - 0x1005 of the image."),
698        B("ASUS",       "SABERTOOTH 990FX",     OK, "http://www.asus.com/Motherboards/AMD_AM3Plus/SABERTOOTH_990FX/", NULL),
699        B("ASUS",       "SABERTOOTH 990FX R2.0", OK, "http://www.asus.com/Motherboards/AMD_AM3Plus/SABERTOOTH_990FX_R20/", NULL),
700        B("ASUS",       "CUSL2-C",              OK, NULL, "The image provided by ASUS is only 256 kB big and has to be written to the upper 256 kB of the 512 kB chip."),
701        B("ASUS",       "TUSL2-C",              NT, "http://support.asus.com/download.aspx?SLanguage=en&p=1&s=4&m=TUSL2-C&os=&hashedid=n/a", "Untested board enable."),
702        B("ASUS",       "Z8NA-D6C",             OK, "http://www.asus.com/Server_Workstation/Server_Motherboards/Z8NAD6C/", NULL),
703        B("ASUS",       "Z8PE-D12",             OK, "http://www.asus.com/Server_Workstation/Server_Motherboards/Z8PED12/", NULL),
704        B("Bachmann",   "OT200",                OK, "http://www.bachmann.info/produkte/bedien-und-beobachtungsgeraete/operator-terminals/", NULL),
705        B("BCOM",       "WinNET100",            OK, "http://www.coreboot.org/BCOM_WINNET100", "Used in the IGEL-316 thin client."),
706        B("Bifferos",   "Bifferboard",          OK, "http://bifferos.co.uk/", NULL),
707        B("Biostar",    "H61MGC",               BAD, 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."),
708        B("Biostar",    "H61MU3",               BAD, 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."),
709        B("Biostar",    "M6TBA",                BAD, "ftp://ftp.biostar-usa.com/manuals/M6TBA/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."),
710        B("Biostar",    "M7NCD Pro",            OK, "http://www.biostar.com.tw/app/en/mb/introduction.php?S_ID=260", NULL),
711        B("Biostar",    "M7VIQ",                NT, NULL, NULL),
712        B("Biostar",    "N61PB-M2S",            OK, NULL, NULL),
713        B("Biostar",    "N68S3+",               OK, NULL, NULL),
714        B("Biostar",    "P4M80-M4",             OK, "http://www.biostar-usa.com/mbdetails.asp?model=p4m80-m4", NULL),
715        B("Biostar",    "TA780G M2+",           OK, "http://www.biostar.com.tw/app/en/mb/introduction.php?S_ID=344", NULL),
716        B("Biostar",    "TA790GX A3+",          OK, "http://www.biostar.com.tw/app/en/mb/introduction.php?S_ID=395", NULL),
717        B("Boser",      "HS-6637",              BAD, "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."),
718        B("Congatec",   "conga-X852",           OK, "http://www.congatec.com/single_news+M57715f6263d.html?&L=1", NULL),
719        B("Dell",       "Inspiron 580",         BAD, "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."),
720        B("Dell",       "OptiPlex 7010",        BAD, NULL, "Mainboard model is 0KRC95. Probing works (Hardware Sequencing 4 + 8MB), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME is locked."),
721        B("Dell",       "OptiPlex GX1",         OK, "http://support.dell.com/support/edocs/systems/ban_gx1/en/index.htm", NULL),
722        B("Dell",       "PowerEdge 1850",       OK, "http://support.dell.com/support/edocs/systems/pe1850/en/index.htm", NULL),
723        B("Dell",       "PowerEdge C6220",      BAD, NULL, "Mainboard model is 0HYFFG. 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 (and there are even overlapping PRs)."),
724        B("Dell",       "Vostro 460",           BAD, "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."),
725        B("DFI",        "855GME-MGF",           BAD, "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"),
726        B("DFI",        "AD77",                 NT, NULL, "Untested board enable."),
727        B("DFI",        "Blood-Iron P35 T2RL",  OK, "http://lp.lanparty.com.tw/portal/CM/cmproduct/XX_cmproddetail/XX_WbProdsWindow?itemId=516&downloadFlag=false&action=1", NULL),
728        B("Elitegroup", "848P-A7",              OK, NULL, NULL),
729        B("Elitegroup", "GeForce6100SM-M",      OK, NULL, NULL),
730        B("Elitegroup", "GF7100PVT-M3 (V1.0)",  OK, NULL, NULL),
731        B("Elitegroup", "GF8200A",              OK, NULL, NULL),
732        B("Elitegroup", "K7S5A",                OK, NULL, NULL),
733        B("Elitegroup", "K7S6A",                OK, NULL, NULL),
734        B("Elitegroup", "K7SEM (V1.0A)",        OK, NULL, NULL),
735        B("Elitegroup", "K7VTA3",               OK, NULL, NULL),
736        B("Elitegroup", "P4M800PRO-M (V1.0A, V2.0)", OK, NULL, NULL),
737        B("Elitegroup", "P4VXMS (V1.0A)",       OK, NULL, NULL),
738        B("Elitegroup", "P6IWP-Fe",             OK, NULL, NULL),
739        B("Elitegroup", "P6VAP-A+",             OK, NULL, NULL),
740        B("Elitegroup", "RS485M-M",             OK, NULL, NULL),
741        B("Emerson",    "ATCA-7360",            OK, "http://www.emerson.com/sites/Network_Power/en-US/Products/Product_Detail/Product1/Pages/EmbCompATCA-7360.aspx", NULL),
742        B("EPoX",       "EP-3PTA",              BAD, NULL, "Missing board enable (W83627HF/F/HG/G), see http://www.flashrom.org/pipermail/flashrom/2012-April/009043.html"),
743        B("EPoX",       "EP-8K5A2",             OK, "http://www.epox.com/product.asp?ID=EP-8K5A2", NULL),
744        B("EPoX",       "EP-8NPA7I",            OK, "http://www.epox.com/product.asp?ID=EP-8NPA7I", NULL),
745        B("EPoX",       "EP-8RDA3+",            OK, "http://www.epox.com/product.asp?ID=EP-8RDA3plus", NULL),
746        B("EPoX",       "EP-9NPA7I",            OK, "http://www.epox.com/product.asp?ID=EP-9NPA7I", NULL),
747        B("EPoX",       "EP-BX3",               OK, "http://www.epox.com/product.asp?ID=EP-BX3", NULL),
748        B("EVGA",       "122-CK-NF68",          OK, NULL, NULL),
749        B("EVGA",       "132-CK-NF78",          OK, "http://www.evga.com/articles/385.asp", NULL),
750        B("EVGA",       "270-WS-W555-A2 (Classified SR-2)", OK, "http://www.evga.com/products/moreInfo.asp?pn=270-WS-W555-A2", NULL),
751        B("FIC",        "VA-502",               BAD, "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."),
752        B("Foxconn",    "6150K8MD-8EKRSH",      OK, "http://www.foxconnchannel.com/ProductDetail.aspx?T=Motherboard&U=en-us0000157", NULL),
753        B("Foxconn",    "A6VMX",                OK, "http://www.foxconnchannel.com/ProductDetail.aspx?T=Motherboard&U=en-us0000346", NULL),
754        B("Foxconn",    "P4M800P7MA-RS2",       OK, "http://www.foxconnchannel.com/ProductDetail.aspx?T=Motherboard&U=en-us0000138", NULL),
755        B("Foxconn",    "P55MX",                OK, "http://www.foxconnchannel.com/ProductDetail.aspx?T=motherboard&U=en-us0000474", "Needs the MFG jumper to be set correctly before flashing to enable the Flash Descriptor Override Strap."),
756        B("Freetech",   "P6F91i",               OK, "http://web.archive.org/web/20010417035034/http://www.freetech.com/prod/P6F91i.html", NULL),
757        B("Foxconn",    "Q45M",                 BAD, "http://www.foxconnchannel.com/ProductDetail.aspx?T=Motherboard&U=en-us0000587", "Probing works (Hardware sequencing, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME is locked."),
758        B("Fujitsu-Siemens", "ESPRIMO P5915",   OK, "http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/professionalpc/ESPRIMO/P/EsprimoP5915-6.htm", "Mainboard model is D2312-A2."),
759        B("Fujitsu-Siemens", "CELSIUS W410",    BAD, "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."),
760        B("GIGABYTE",   "GA-2761GXDK",          OK, "http://www.computerbase.de/news/hardware/mainboards/amd-systeme/2007/mai/gigabyte_dtx-mainboard/", NULL),
761        B("GIGABYTE",   "GA-6BXC",              OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1445", NULL),
762        B("GIGABYTE",   "GA-6BXDU",             OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1429", NULL),
763        B("GIGABYTE",   "GA-6IEM",              OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1379", NULL),
764        B("GIGABYTE",   "GA-6VXE7+",            OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2410", NULL),
765        B("GIGABYTE",   "GA-6ZMA",              OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1541", NULL),
766        B("GIGABYTE",   "GA-770TA-UD3",         OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3272", NULL),
767        B("GIGABYTE",   "GA-7DXR",              OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1302", NULL),
768        B("GIGABYTE",   "GA-7VT600",            OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1666", NULL),
769        B("GIGABYTE",   "GA-7ZM",               OK, "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."),
770        B("GIGABYTE",   "GA-880GMA-USB3 (rev. 3.1)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3817", NULL),
771        B("GIGABYTE",   "GA-8I945GZME-RH",      OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2304", NULL),
772        B("GIGABYTE",   "GA-8IP775",            OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1830", NULL),
773        B("GIGABYTE",   "GA-8IRML",             OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1343", NULL),
774        B("GIGABYTE",   "GA-8PE667 Ultra 2",    OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1607", NULL),
775        B("GIGABYTE",   "GA-8SIMLH",            OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1399", NULL),
776        B("GIGABYTE",   "GA-945PL-S3P (rev. 6.6)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2541", NULL),
777        B("GIGABYTE",   "GA-965GM-S2 (rev. 2.0)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2617", NULL),
778        B("GIGABYTE",   "GA-965P-DS4",          OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2288", NULL),
779        B("GIGABYTE",   "GA-A75M-UD2H",         OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3928", NULL),
780        B("GIGABYTE",   "GA-EP31-DS3L (rev. 2.1)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2964", NULL),
781        B("GIGABYTE",   "GA-EP35-DS3L",         OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2778", NULL),
782        B("GIGABYTE",   "GA-G41MT-S2PT",        OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3960", NULL),
783        B("GIGABYTE",   "GA-H61M-D2-B3",        OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3773", NULL),
784        B("GIGABYTE",   "GA-H61M-D2H-USB3",     OK, "http://www.gigabyte.com/products/product-page.aspx?pid=4004", NULL),
785        B("GIGABYTE",   "GA-H77-D3H",           OK, "http://www.gigabyte.com/products/product-page.aspx?pid=4141", "Does only work with -p internal:ich_spi_mode=hwseq due to an evil twin of MX25L6405 and ICH SPI lockdown."),
786        B("GIGABYTE",   "GA-H77M-D3H",          OK, "http://www.gigabyte.com/products/product-page.aspx?pid=4388", NULL),
787        B("GIGABYTE",   "GA-EX58-UD4P",         OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2986", NULL),
788        B("GIGABYTE",   "GA-K8N-SLI",           OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1928", NULL),
789        B("GIGABYTE",   "GA-K8N51GMF",          OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1950", NULL),
790        B("GIGABYTE",   "GA-K8N51GMF-9",        OK, "http://www.gigabyte.com/products/product-page.aspx?pid=1939", NULL),
791        B("GIGABYTE",   "GA-K8NS Pro-939",      NT, "http://www.gigabyte.com/products/product-page.aspx?pid=1875", "Untested board enable."),
792        B("GIGABYTE",   "GA-M57SLI-S4",         OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2287", NULL),
793        B("GIGABYTE",   "GA-M61P-S3",           OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2434", NULL),
794        B("GIGABYTE",   "GA-M720-US3",          OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3006", NULL),
795        B("GIGABYTE",   "GA-MA69VM-S2",         OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2500", NULL),
796        B("GIGABYTE",   "GA-MA74GM-S2H (rev. 3.0)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3152", NULL),
797        B("GIGABYTE",   "GA-MA770-UD3 (rev. 2.1)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3302", NULL),
798        B("GIGABYTE",   "GA-MA770T-UD3P",       OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3096", NULL),
799        B("GIGABYTE",   "GA-MA780G-UD3H",       OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3004", NULL),
800        B("GIGABYTE",   "GA-MA785GMT-UD2H (rev. 1.0)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3156", NULL),
801        B("GIGABYTE",   "GA-MA78G-DS3H (rev. 1.0)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2800", NULL),
802        B("GIGABYTE",   "GA-MA78GM-S2H",        OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2758", NULL), /* TODO: Rev. 1.BAD, 1.OK, or 2.x? */
803        B("GIGABYTE",   "GA-MA78GPM-DS2H",      OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2859", NULL),
804        B("GIGABYTE",   "GA-MA790FX-DQ6",       OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2690", NULL),
805        B("GIGABYTE",   "GA-MA790GP-DS4H",      OK, "http://www.gigabyte.com/products/product-page.aspx?pid=2887", NULL),
806        B("GIGABYTE",   "GA-MA790XT-UD4P (rev. 1.0)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3010", NULL),
807        B("GIGABYTE",   "GA-P55A-UD4 (rev. 1.0)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3436", NULL),
808        B("GIGABYTE",   "GA-P67A-UD3P",         OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3649", NULL),
809        B("GIGABYTE",   "GA-X58A-UD3R (rev. 2.0)", OK, NULL, NULL),
810        B("GIGABYTE",   "GA-X58A-UD7 (rev. 2.0)", OK, NULL, NULL),
811        B("GIGABYTE",   "GA-X79-UD5", OK, NULL, NULL),
812        B("GIGABYTE",   "GA-Z68MX-UD2H-B (rev. 1.3)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3854", NULL),
813        B("GIGABYTE",   "GA-Z68XP-UD3 (rev. 1.0)", OK, "http://www.gigabyte.com/products/product-page.aspx?pid=3892", NULL),
814        B("GIGABYTE",   "GA-Z77MX-D3H",         BAD, "http://www.gigabyte.com/products/product-page.aspx?pid=4145", "Uses MX25L6436E and requires a small patch (but works flawlessly with that)."),
815        B("HP",         "8100 Elite CMT PC (304Bh)", BAD, NULL, "SPI lock down, PR, read-only descriptor, locked ME region."),
816        B("HP",         "e-Vectra P2706T",      OK, "http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?lang=en&cc=us&prodSeriesId=77515&prodTypeId=12454", NULL),
817        B("HP",         "ProLiant DL145 G3",    OK, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00816835&lang=en&cc=us&taskId=101&prodSeriesId=3219755&prodTypeId=15351", NULL),
818        B("HP",         "ProLiant DL165 G6",    OK, "http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/15351-15351-3328412-241644-3328421-3955644.html", NULL),
819        B("HP",         "ProLiant N40L",        OK, NULL, NULL),
820        B("HP",         "Puffer2-UL8E",         OK, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00300023", NULL),
821        B("HP",         "dc7800",               BAD, "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."),
822        B("HP",         "Vectra VL400",         OK, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060658&lang=en&cc=us", NULL),
823        B("HP",         "Vectra VL420 SFF",     OK, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060661&lang=en&cc=us", NULL),
824        B("HP",         "xw4400 (0A68h)",       BAD, "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"),
825        B("HP",         "xw6400",               BAD, NULL, "No chip found, see http://www.flashrom.org/pipermail/flashrom/2012-March/009006.html"),
826        B("HP",         "xw9300",               BAD, "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"),
827        B("HP",         "xw9400",               OK, "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."),
828        B("HP",         "Z400 Workstation (0AE4h)", BAD, NULL, "ICH10R with BIOS lock enable and a protected range PRBAD, see http://www.flashrom.org/pipermail/flashrom/2012-June/009350.html"),
829        B("IBASE",      "MB899",                OK, "http://www.ibase-i.com.tw/2009/mb899.html", NULL),
830        B("IBM",        "x3455",                OK, "http://www-03.ibm.com/systems/x/hardware/rack/x3455/index.html", NULL),
831        B("IEI",        "PICOe-9452",           OK, "http://www.ieiworld.com/product_groups/industrial/content.aspx?keyword=WSB&gid=00001000010000000001&cid=08125380291060861658&id=08142308605814597144", NULL),
832        B("Intel",      "D201GLY",              OK, "http://www.intel.com/support/motherboards/desktop/d201gly/index.htm", NULL),
833        B("Intel",      "D425KT",               BAD, "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"),
834        B("Intel",      "D865GLC",              BAD, NULL, "ICH5 with BIOS lock enable, see http://paste.flashrom.org/view.php?id=775"),
835        B("Intel",      "D945GCNL",             OK, NULL, NULL),
836        B("Intel",      "DG45ID",               BAD, "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."),
837        B("Intel",      "DQ965GF",              BAD, NULL, "Probing enables Hardware Sequencing (behind that hides a SST SST25VF016B, 2048 kB). 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)."),
838        B("Intel",      "DG965OT",              BAD, NULL, "Probing enables Hardware Sequencing (behind that hides a SST SST25VF080B, 1024 kB). 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)."),
839        B("Intel",      "DH61AG ",              BAD, NULL, "H61 with BIOS lock enable and locked ME region, see http://www.flashrom.org/pipermail/flashrom/2012-June/009417.html"),
840        B("Intel",      "DH67CF",               BAD, NULL, "H67 with BIOS lock enable and locked ME region, see http://www.flashrom.org/pipermail/flashrom/2011-September/007789.html"),
841        B("Intel",      "DH67CL",               BAD, NULL, "H67 with BIOS lock enable and locked ME region, see http://www.flashrom.org/pipermail/flashrom/2012-November/010112.html"),
842        B("Intel",      "DN2800MT (Marshalltown)", BAD, NULL, "BIOS locked via BIOS_CNTL."),
843        B("Intel",      "EP80759",              OK, NULL, NULL),
844        B("Intel",      "Foxhollow",            OK, NULL, "Intel reference board."),
845        B("Intel",      "Greencity",            OK, NULL, "Intel reference board."),
846        B("Intel",      "SE440BX-2",            BAD, "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"),
847        B("IWILL",      "DK8-HTX",              OK, "http://web.archive.org/web/20060507170150/http://www.iwill.net/product_2.asp?p_id=98", NULL),
848        B("Jetway",     "J-7BXAN",              OK, "http://www.jetway.com.tw/evisn/download/d7BXAS.htm", NULL),
849        B("Jetway",     "J7F4K1G5D-PB",         OK, "http://www.jetway.com.tw/jw/ipcboard_view.asp?productid=282&proname=J7F4K1G5D", NULL),
850        B("Kontron",    "986LCD-M",             OK, "http://de.kontron.com/products/boards+and+mezzanines/embedded+motherboards/miniitx+motherboards/986lcdmmitx.html", NULL),
851        B("Lanner",     "EM-8510C",             OK, NULL, NULL),
852        B("Lex",        "CV700A",               OK, "http://www.lex.com.tw/product/CV700A-spec.htm", NULL),
853        B("Mitac",      "6513WU",               OK, "http://web.archive.org/web/20050313054828/http://www.mitac.com/micweb/products/tyan/6513wu/6513wu.htm", NULL),
854        B("MSC",        "Q7-TCTC",              OK, "http://www.msc-ge.com/en/produkte/com/moduls/overview/5779-www.html", NULL),
855        B("MSI",        "MS-6153",              OK, "http://www.msi.com/product/mb/MS-6153.html", NULL),
856        B("MSI",        "MS-6156",              OK, "http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/boards/Motherboards/MicroStar/Ms6156/MS6156.htm", NULL),
857        B("MSI",        "MS-6163 (MS-6163 Pro)",OK, "http://www.msi.com/product/mb/MS-6163-Pro.html", NULL),
858        B("MSI",        "MS-6178",              BAD, "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>."),
859        B("MSI",        "MS-6330 (K7T Turbo)",  OK, "http://www.msi.com/product/mb/K7T-Turbo.html", NULL),
860        B("MSI",        "MS-6391 (845 Pro4)",   OK, "http://www.msi.com/product/mb/845-Pro4.html", NULL),
861        B("MSI",        "MS-6561 (745 Ultra)",  OK, "http://www.msi.com/product/mb/745-Ultra.html", NULL),
862        B("MSI",        "MS-6566 (845 Ultra-C)",OK, "http://www.msi.com/product/mb/845-Ultra-C.html", NULL),
863        B("MSI",        "MS-6570 (K7N2)",       OK, "http://www.msi.com/product/mb/K7N2.html", NULL),
864        B("MSI",        "MS-6577 (Xenon)",      OK, "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."),
865        B("MSI",        "MS-6590 (KT4 Ultra)",  OK, "http://www.msi.com/product/mb/KT4-Ultra.html", NULL),
866        B("MSI",        "MS-6702E (K8T Neo2-F)",OK, "http://www.msi.com/product/mb/K8T-Neo2-F--FIR.html", NULL),
867        B("MSI",        "MS-6712 (KT4V)",       OK, "http://www.msi.com/product/mb/KT4V---KT4V-L--v1-0-.html", NULL),
868        B("MSI",        "MS-6787 (P4MAM-V/P4MAM-L)", OK, "http://www.msi.com/service/search/?kw=6787&type=product", NULL),
869        B("MSI",        "MS-7005 (651M-L)",     OK, "http://www.msi.com/product/mb/651M-L.html", NULL),
870        B("MSI",        "MS-7025 (K8N Neo2 Platinum)", OK, "http://www.msi.com/product/mb/K8N-Neo2-Platinum.html", NULL),
871        B("MSI",        "MS-7030 (K8N Neo Platinum)", OK, "http://www.msi.com/product/mb/K8N-Neo-Platinum.html", NULL),
872        B("MSI",        "MS-7046",              OK, "http://www.heimir.de/ms7046/", NULL),
873        B("MSI",        "MS-7061 (KM4M-V/KM4AM-V)", OK, "http://www.msi.com/service/search/?kw=7061&type=product", NULL),
874        B("MSI",        "MS-7065",              OK, "http://browse.geekbench.ca/geekbench2/view/53114", NULL),
875        B("MSI",        "MS-7135 (K8N Neo3)",   OK, "http://www.msi.com/product/mb/K8N-Neo3.html", NULL),
876        B("MSI",        "MS-7142 (K8MM-V)",     OK, "http://www.msi.com/product/mb/K8MM-V.html", NULL),
877        B("MSI",        "MS-7168 (Orion)",      OK, "http://support.packardbell.co.uk/uk/item/index.php?i=spec_orion&pi=platform_honeymoon_istart", NULL),
878        B("MSI",        "MS-7207 (K8NGM2-L)",   OK, "http://www.msi.com/product/mb/K8NGM2-FID--IL--L.html", NULL),
879        B("MSI",        "MS-7211 (PM8M3-V)",    OK, "http://www.msi.com/product/mb/PM8M3-V.html", NULL),
880        B("MSI",        "MS-7236 (945PL Neo3)", OK, "http://www.msi.com/product/mb/945PL-Neo3.html", NULL),
881        B("MSI",        "MS-7250 (K9N SLI (rev 2.1))", OK, "http://www.msi.com/product/mb/K9N--SLI.html", NULL),
882        B("MSI",        "MS-7253 (K9VGM-V)",    OK, "http://www.msi.com/product/mb/K9VGM-V.html", NULL),
883        B("MSI",        "MS-7255 (P4M890M)",    OK, "http://www.msi.com/product/mb/P4M890M-L-IL.html", NULL),
884        B("MSI",        "MS-7260 (K9N Neo PCB 1.0)", BAD, "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>."),
885        B("MSI",        "MS-7309 (K9N6SGM-V)", BAD, "http://www.msi.com/product/mb/K9N6SGM-V---K9N6PGM-FI---K9N6PGM-F.html", "Uses Fintek F71882F/F71883F/F71887 SPI-to-LPC translation."),
886        B("MSI",        "MS-7309 (K9N6PGM2-V2)", OK, "http://www.msi.com/product/mb/K9N6PGM2-V2.html", NULL),
887        B("MSI",        "MS-7312 (K9MM-V)",     OK, "http://www.msi.com/product/mb/K9MM-V.html", NULL),
888        B("MSI",        "MS-7345 (P35 Neo2-FIR)", OK, "http://www.msi.com/product/mb/P35-Neo2-FR---FIR.html", NULL),
889        B("MSI",        "MS-7357 (G33M)",       OK, "http://www.msi.com/product/mb/G33M.html", NULL),
890        B("MSI",        "MS-7368 (K9AG Neo2-Digital)", OK, "http://www.msi.com/product/mb/K9AG-Neo2-Digital.html", NULL),
891        B("MSI",        "MS-7369 (K9N Neo V2)", OK, "http://www.msi.com/product/mb/K9N-Neo-V2.html", NULL),
892        B("MSI",        "MS-7376 (K9A2 Platinum V1)", OK, "http://www.msi.com/product/mb/K9A2-Platinum.html", NULL),
893        B("MSI",        "MS-7529 (G31M3-L(S) V2)", OK, "http://www.msi.com/product/mb/G31M3-L-V2---G31M3-LS-V2.html", NULL),
894        B("MSI",        "MS-7529 (G31TM-P21)",  OK, "http://www.msi.com/product/mb/G31TM-P21.html", NULL),
895        B("MSI",        "MS-7548 (Aspen-GL8E)", OK, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01635688&lc=en&cc=us&dlc=en", NULL),
896        B("MSI",        "MS-7596 (785GM-E51)",  OK, "http://www.msi.com/product/mb/785GM-E51.html", NULL),
897        B("MSI",        "MS-7597 (GF615M-P33)", BAD, NULL, "Missing board enable/SIO support (Fintek F71889), see http://www.flashrom.org/pipermail/flashrom/2012-March/008956.html"),
898        B("MSI",        "MS-7599 (870-C45)",    OK, "http://www.msi.com/product/mb/870-C45.html", NULL),
899        B("MSI",        "MS-7613 (Iona-GL8E)",  BAD, "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."),
900        B("MSI",        "MS-7635 (H55M-ED55)",  BAD, "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."),
901        B("MSI",        "MS-7640 (890FXA-GD70)",OK, "http://www.msi.com/product/mb/890FXA-GD70.html", NULL),
902        B("MSI",        "MS-7642 (890GXM-G65)", OK, "http://www.msi.com/product/mb/890GXM-G65.html", NULL),
903        B("MSI",        "MS-7676 (H67MA-ED55(B3))", OK, "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"),
904        B("MSI",        "MS-7676 (Z68MA-G45 (B3))", OK, "http://www.msi.com/product/mb/Z68MA-G45--B3-.html", NULL),
905        B("MSI",        "MS-7696 (A75MA-G55)",  OK, "http://www.msi.com/product/mb/A75MA-G55.html", NULL),
906        B("MSI",        "MS-7698 (E350IA-E45)", OK, "http://www.msi.com/product/mb/E350IA-E45.html", NULL),
907        B("MSI",        "MS-7740 (H61MA-E35(B3))",      OK, "http://www.msi.com/product/mb/H61MA-E35--B3-.html", NULL),
908        B("NEC",        "PowerMate 2000",       OK, "http://support.necam.com/mobilesolutions/hardware/Desktops/pm2000/celeron/", NULL),
909        B("Nokia",      "IP530",                OK, NULL, NULL),
910        B("Palit",      "N61S",                 OK, NULL, NULL),
911        B("PCCHIPS ",   "M598LMR (V9.0)",       OK, NULL, NULL),
912        B("PCCHIPS ",   "M863G (V5.1A)",        OK, "http://www.pcchips.com.tw/PCCWebSite/Products/ProductsDetail.aspx?CategoryID=1&DetailID=343&DetailName=Feature&MenuID=1&LanID=0", NULL),
913        B("PC Engines", "Alix.1c",              OK, "http://pcengines.ch/alix1c.htm", NULL),
914        B("PC Engines", "Alix.2c2",             OK, "http://pcengines.ch/alix2c2.htm", NULL),
915        B("PC Engines", "Alix.2c3",             OK, "http://pcengines.ch/alix2c3.htm", NULL),
916        B("PC Engines", "Alix.2d3",             OK, "http://pcengines.ch/alix2d3.htm", NULL),
917        B("PC Engines", "Alix.3c3",             OK, "http://pcengines.ch/alix3c3.htm", NULL),
918        B("PC Engines", "Alix.3d3",             OK, "http://pcengines.ch/alix3d3.htm", NULL),
919        B("PC Engines", "Alix.6f2",             OK, "http://pcengines.ch/alix6f2.htm", NULL),
920        B("PC Engines", "WRAP.2E",              OK, "http://pcengines.ch/wrap2e1.htm", NULL),
921        B("Portwell",   "PEB-4700VLA",          OK, "http://www.portwell.com/products/detail.asp?CUSTCHAR1=PEB-4700VLA", NULL),
922        B("RCA",        "RM4100",               OK, "http://www.settoplinux.org/index.php?title=RCA_RM4100", NULL),
923        B("Samsung",    "Polaris 32",           OK, NULL, NULL),
924        B("Shuttle",    "AK31",                 OK, "http://www.motherboard.cz/mb/shuttle/AK31.htm", NULL),
925        B("Shuttle",    "AK38N",                OK, "http://eu.shuttle.com/en/desktopdefault.aspx/tabid-36/558_read-9889/", NULL),
926        B("Shuttle",    "AV11V30",              OK, NULL, NULL),
927        B("Shuttle",    "AV18E2",               OK, "http://www.shuttle.eu/_archive/older/de/av18.htm", NULL),
928        B("Shuttle",    "FB61",                 OK, "http://www.shuttle.eu/_archive/older/en/fb61.htm#mainboardfb6", "Used in SB61G2 systems."),
929        B("Shuttle",    "FD37",                 OK, "http://www.shuttle.eu/products/discontinued/barebones/sd37p2/", NULL),
930        B("Shuttle",    "FH67",                 OK, "http://www.shuttle.eu/products/mini-pc/sh67h3/specification/", NULL),
931        B("Shuttle",    "FN25",                 OK, "http://www.shuttle.eu/products/discontinued/barebones/sn25p/?0=", NULL),
932        B("Shuttle",    "FN78S",                OK, "http://www.shuttle.eu/products/discontinued/barebones/sn78sh7/", NULL),
933        B("Shuttle",    "X50/X50(B)",           OK, "http://au.shuttle.com/product_detail_spec.jsp?PI=1241", NULL),
934        B("Soyo",       "SY-5VD",               BAD, "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."),
935        B("Soyo",       "SY-6BA+ III",          OK, "http://www.motherboard.cz/mb/soyo/SY-6BA+III.htm", NULL),
936        B("Soyo",       "SY-7VCA",              OK, "http://www.tomshardware.com/reviews/12-socket-370-motherboards,196-15.html", NULL),
937        B("Sun",        "Blade x6250",          OK, "http://www.sun.com/servers/blades/x6250/", NULL),
938        B("Sun",        "Fire x4150",           BAD, "http://www.sun.com/servers/x64/x4150/", "No public report found. May work now."),
939        B("Sun",        "Fire x4200",           BAD, "http://www.sun.com/servers/entry/x4200/", "No public report found. May work now."),
940        B("Sun",        "Fire x4540",           BAD, "http://www.sun.com/servers/x64/x4540/", "No public report found. May work now."),
941        B("Sun",        "Fire x4600",           BAD, "http://www.sun.com/servers/x64/x4600/", "No public report found. May work now."),
942        B("Sun",        "Ultra 40 M2",          OK, "http://download.oracle.com/docs/cd/E19127-01/ultra40.ws/820-0123-13/intro.html", NULL),
943        B("Supermicro", "H8QC8",                OK, "http://www.supermicro.com/Aplus/motherboard/Opteron/nforce/H8QC8.cfm", NULL),
944        B("Supermicro", "X5DP8-G2",             OK, "http://www.supermicro.com/products/motherboard/Xeon/E7501/X5DP8-G2.cfm", NULL),
945        B("Supermicro", "X7DBT-INF",            OK, "http://www.supermicro.com/products/motherboard/Xeon1333/5000P/X7DBT-INF.cfm", NULL),
946        B("Supermicro", "X7SPA-HF",             OK, "http://www.supermicro.com/products/motherboard/ATOM/ICH9/X7SPA.cfm?typ=H&IPMI=Y", NULL),
947        B("Supermicro", "X8DT3",                OK, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DT3.cfm", NULL),
948        B("Supermicro", "X8DTE-F",              OK, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DT6-F.cfm?IPMI=Y&SAS=N", NULL),
949        B("Supermicro", "X8DTH-6F",             OK, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTH-6F.cfm", NULL),
950        B("Supermicro", "X8DTT-F",              OK, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTT-F.cfm", NULL),
951        B("Supermicro", "X8DTT-HIBQF",          OK, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTT-H.cfm", NULL),
952        B("Supermicro", "X8DTU-6TF+",           BAD, "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."),
953        B("Supermicro", "X8DTU-F",              OK, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTU-F.cfm", NULL),
954        B("Supermicro", "X8SIE(-F)",            BAD, "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)."),
955        B("Supermicro", "X8STi",                OK, "http://www.supermicro.com/products/motherboard/Xeon3000/X58/X8STi.cfm", NULL),
956        B("Supermicro", "X9DR3-F",              BAD, "http://www.supermicro.com/products/motherboard/xeon/c600/x9dr3-f.cfm", "Probing works (Numonyx N25Q128 (supported by SFDP only atm), 16384 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
957        B("Supermicro", "X9DRT-HF+",            BAD, NULL, "Probing works (Numonyx N25Q128 (supported by SFDP only atm), 16384 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked; SMM protection enabled."),
958        B("Supermicro", "X9DRW",                BAD, NULL, "Probing works (Numonyx N25Q128 (supported by SFDP only atm), 16384 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."),
959        B("Supermicro", "X9QRi-F+",             BAD, "http://www.supermicro.com/products/motherboard/Xeon/C600/X9QRi-F_.cfm", "Probing works (Macronix MX25L12805, 16384 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked; SMM protection enabled."),
960        B("Supermicro", "X9SCA-F",              BAD, "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."),
961        B("Supermicro", "X9SCL",                BAD, "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."),
962        B("T-Online",   "S-100",                OK, "http://wiki.freifunk-hannover.de/T-Online_S_100", NULL),
963        B("Tekram",     "P6Pro-A5",             OK, "http://www.motherboard.cz/mb/tekram/P6Pro-A5.htm", NULL),
964        B("Termtek",    "TK-3370 (Rev:2.5B)",   OK, NULL, NULL),
965        B("Thomson",    "IP1000",               OK, "http://www.settoplinux.org/index.php?title=Thomson_IP1000", NULL),
966        B("TriGem",     "Anaheim-3",            OK, "http://www.e4allupgraders.info/dir1/motherboards/socket370/anaheim3.shtml", NULL),
967        B("TriGem",     "Lomita",               OK, "http://www.e4allupgraders.info/dir1/motherboards/socket370/lomita.shtml", NULL),
968        B("Tyan",       "S1846 (Tsunami ATX)",  OK, "http://www.tyan.com/archive/products/html/tsunamiatx.html", NULL),
969        B("Tyan",       "S2466 (Tiger MPX)",    OK, "http://www.tyan.com/product_board_detail.aspx?pid=461", NULL),
970        B("Tyan",       "S2498 (Tomcat K7M)",   OK, "http://www.tyan.com/archive/products/html/tomcatk7m.html", NULL),
971        B("Tyan",       "S2723 (Tiger i7501)",  OK, "http://www.tyan.com/archive/products/html/tigeri7501.html", NULL),
972        B("Tyan",       "S2875 (Tiger K8W)",    OK, "http://www.tyan.com/archive/products/html/tigerk8w.html", NULL),
973        B("Tyan",       "S2881 (Thunder K8SR)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=115", NULL),
974        B("Tyan",       "S2882-D (Thunder K8SD Pro)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=127", NULL),
975        B("Tyan",       "S2882 (Thunder K8S Pro)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=121", NULL),
976        B("Tyan",       "S2891 (Thunder K8SRE)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=144", NULL),
977        B("Tyan",       "S2892 (Thunder K8SE)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=145", NULL),
978        B("Tyan",       "S2895 (Thunder K8WE)", OK, "http://www.tyan.com/archive/products/html/thunderk8we.html", NULL),
979        B("Tyan",       "S2912 (Thunder n3600R)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=157", NULL),
980        B("Tyan",       "S2915-E (Thunder n6650W)", OK, "http://tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=541&SKU=600000041", NULL),
981        B("Tyan",       "S2915 (Thunder n6650W)", OK, "http://tyan.com/product_board_detail.aspx?pid=163", NULL),
982        B("Tyan",       "S2933 (Thunder n3600S)", OK, "http://tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=478&SKU=600000063", NULL),
983        B("Tyan",       "S3095 (Tomcat i945GM)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=181", NULL),
984        B("Tyan",       "S3992 (Thunder h2000M)", OK, "http://tyan.com/product_board_detail.aspx?pid=235", NULL),
985        B("Tyan",       "S4882 (Thunder K8QS Pro)", OK, "http://www.tyan.com/archive/products/html/thunderk8qspro.html", NULL),
986        B("Tyan",       "S5180 (Toledo i965R)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=456", NULL),
987        B("Tyan",       "S5191 (Toledo i3000R)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=343", NULL),
988        B("Tyan",       "S5197 (Toledo i3010W)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=349", NULL),
989        B("Tyan",       "S5211-1U (Toledo i3200R)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=593", NULL),
990        B("Tyan",       "S5211 (Toledo i3210W)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=591", NULL),
991        B("Tyan",       "S5220 (Toledo q35T)",  OK, "http://www.tyan.com/product_board_detail.aspx?pid=597", NULL),
992        B("Tyan",       "S5375-1U (Tempest i5100X)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=610", NULL),
993        B("Tyan",       "S5375 (Tempest i5100X)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=566", NULL),
994        B("Tyan",       "S5376 (Tempest i5100W)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=605", "Both S5376G2NR and S5376WAG2NR should work."),
995        B("Tyan",       "S5377 (Tempest i5100T)", OK, "http://www.tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=642&SKU=600000017", NULL),
996        B("Tyan",       "S5382 (Tempest i5000PW)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=439", NULL),
997        B("Tyan",       "S5397 (Tempest i5400PW)", OK, "http://www.tyan.com/product_board_detail.aspx?pid=560", NULL),
998        B("VIA",        "EITX-3000",            OK, "http://www.viaembedded.com/en/products/boards/810/1/EITX-3000.html", NULL),
999        B("VIA",        "EPIA M/MII/...",       OK, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=202", NULL), /* EPIA-MII link for now */
1000        B("VIA",        "EPIA SP",              OK, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=261", NULL),
1001        B("VIA",        "EPIA-CN",              OK, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=400", NULL),
1002        B("VIA",        "EPIA EK",              OK, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?motherboard_id=420", NULL),
1003        B("VIA",        "EPIA-EX15000G",        OK, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=450", NULL),
1004        B("VIA",        "EPIA-LN",              OK, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=473", NULL),
1005        B("VIA",        "EPIA-M700",            OK, "http://via.com.tw/servlet/downloadSvl?motherboard_id=670&download_file_id=3700", NULL),
1006        B("VIA",        "EPIA-N/NL",            OK, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=221", NULL), /* EPIA-N link for now */
1007        B("VIA",        "EPIA-NX15000G",        OK, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=470", NULL),
1008        B("VIA",        "NAB74X0",              OK, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=590", NULL),
1009        B("VIA",        "pc2500e",              OK, "http://www.via.com.tw/en/initiatives/empowered/pc2500_mainboard/index.jsp", NULL),
1010        B("VIA",        "PC3500G",              OK, "http://www.via.com.tw/en/initiatives/empowered/pc3500_mainboard/index.jsp", NULL),
1011        B("VIA",        "VB700X",               OK, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=490", NULL),
1012        B("ZOTAC",      "Fusion-ITX WiFi (FUSION350-A-E)", OK, NULL, NULL),
1013        B("ZOTAC",      "GeForce 8200",         OK, NULL, NULL),
1014        B("ZOTAC",      "H61-ITX WiFi (H61ITX-A-E)", BAD, 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."),
1015        B("ZOTAC",      "H67-ITX WiFi (H67ITX-C-E)", BAD, 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."),
1016        B("ZOTAC",      "nForce 630i Supreme (N73U-Supreme)", OK, NULL, NULL),
1017        B("ZOTAC",      "ZBOX AD02 (PLUS)",     OK, NULL, NULL),
1018        B("ZOTAC",      "ZBOX HD-ID11",         OK, NULL, NULL),
1019#endif
1020
1021        {0},
1022};
1023
1024/* Please keep this list alphabetically ordered by vendor/board. */
1025const struct board_info laptops_known[] = {
1026#if defined(__i386__) || defined(__x86_64__)
1027        B("Acer",       "Aspire 1520",          OK, "http://support.acer.com/us/en/acerpanam/notebook/0000/Acer/Aspire1520/Aspire1520nv.shtml", NULL),
1028        B("Acer",       "Aspire One",           BAD, NULL, "http://www.coreboot.org/pipermail/coreboot/2009-May/048041.html"),
1029        B("ASUS",       "A8Jm",                 OK, NULL, NULL),
1030        B("ASUS",       "Eee PC 701 4G",        BAD, "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)."),
1031        B("ASUS",       "M6Ne",                 NT, "http://www.asus.com/Notebooks/Versatile_Performance/M6NNe/", "Untested board enable."),
1032        B("Clevo",      "P150HM",               BAD, "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."),
1033        B("Dell",       "Inspiron 1420",        OK, NULL, NULL),
1034        B("Dell",       "Latitude CPi A366XT",  BAD, "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."),
1035        B("Dell",       "Vostro 3700",          BAD, NULL, "Locked ME, see http://www.flashrom.org/pipermail/flashrom/2012-May/009197.html."),
1036        B("Dell",       "Latitude E6520",       BAD, NULL, "Locked ME, see http://www.flashrom.org/pipermail/flashrom/2012-June/009420.html."),
1037        B("Elitegroup", "A928",                 OK, NULL, "Bootsector is locked and needs to be skipped with a layout file (writeable address range is 00000000:0003bfff"),
1038        B("HP/Compaq",  "EliteBook 8560p",      BAD, NULL, "SPI lock down, SMM protection, PR in BIOS region, read-only descriptor, locked ME region."),
1039        B("HP/Compaq",  "nx9005",               BAD, "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"),
1040        B("HP/Compaq",  "nx9010",               BAD, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&objectID=c00348514", "Hangs upon '''flashrom -V''' (needs hard power-cycle then)."),
1041        B("IBM/Lenovo", "Thinkpad T40p",        BAD, "http://www.thinkwiki.org/wiki/Category:T40p", NULL),
1042        B("IBM/Lenovo", "Thinkpad T420",        BAD, "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)."),
1043        B("IBM/Lenovo", "Thinkpad T410s",       BAD, "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)."),
1044        B("IBM/Lenovo", "Thinkpad X1",          BAD, "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)."),
1045        B("IBM/Lenovo", "240",                  BAD, "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."),
1046        B("Lenovo",     "3000 V100 TF05Cxx",    OK, "http://www5.pc.ibm.com/europe/products.nsf/products?openagent&brand=Lenovo3000Notebook&series=Lenovo+3000+V+Series#viewallmodelstop", NULL),
1047#endif
1048
1049        {0},
1050};
1051#endif
Note: See TracBrowser for help on using the repository browser.