uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 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 | |
hailfinger | a83a5fe | 2010-05-30 22:24:40 +0000 | [diff] [blame] | 22 | #include <stdio.h> |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 23 | #include <string.h> |
| 24 | #include <stdlib.h> |
| 25 | #include "flash.h" |
| 26 | #include "flashchips.h" |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 27 | #include "programmer.h" |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * Return a string corresponding to the bustype parameter. |
| 31 | * Memory is obtained with malloc() and can be freed with free(). |
| 32 | */ |
| 33 | char *flashbuses_to_text(enum chipbustype bustype) |
| 34 | { |
| 35 | char *ret = calloc(1, 1); |
| 36 | if (bustype == CHIP_BUSTYPE_UNKNOWN) { |
| 37 | ret = strcat_realloc(ret, "Unknown,"); |
| 38 | /* |
| 39 | * FIXME: Once all chipsets and flash chips have been updated, NONSPI |
| 40 | * will cease to exist and should be eliminated here as well. |
| 41 | */ |
| 42 | } else if (bustype == CHIP_BUSTYPE_NONSPI) { |
| 43 | ret = strcat_realloc(ret, "Non-SPI,"); |
| 44 | } else { |
| 45 | if (bustype & CHIP_BUSTYPE_PARALLEL) |
| 46 | ret = strcat_realloc(ret, "Parallel,"); |
| 47 | if (bustype & CHIP_BUSTYPE_LPC) |
| 48 | ret = strcat_realloc(ret, "LPC,"); |
| 49 | if (bustype & CHIP_BUSTYPE_FWH) |
| 50 | ret = strcat_realloc(ret, "FWH,"); |
| 51 | if (bustype & CHIP_BUSTYPE_SPI) |
| 52 | ret = strcat_realloc(ret, "SPI,"); |
| 53 | if (bustype == CHIP_BUSTYPE_NONE) |
| 54 | ret = strcat_realloc(ret, "None,"); |
| 55 | } |
| 56 | /* Kill last comma. */ |
| 57 | ret[strlen(ret) - 1] = '\0'; |
| 58 | ret = realloc(ret, strlen(ret) + 1); |
| 59 | return ret; |
| 60 | } |
| 61 | |
| 62 | #define POS_PRINT(x) do { pos += strlen(x); printf(x); } while (0) |
| 63 | |
| 64 | static int digits(int n) |
| 65 | { |
| 66 | int i; |
| 67 | |
| 68 | if (!n) |
| 69 | return 1; |
| 70 | |
| 71 | for (i = 0; n; ++i) |
| 72 | n /= 10; |
| 73 | |
| 74 | return i; |
| 75 | } |
| 76 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 77 | static void print_supported_chips(void) |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 78 | { |
| 79 | int okcol = 0, pos = 0, i, chipcount = 0; |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 80 | int maxchiplen = 0, maxvendorlen = 0; |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 81 | struct flashchip *f; |
| 82 | |
| 83 | for (f = flashchips; f->name != NULL; f++) { |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 84 | /* Ignore "unknown XXXX SPI chip" entries. */ |
| 85 | if (!strncmp(f->name, "unknown", 7)) |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 86 | continue; |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 87 | chipcount++; |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 88 | maxvendorlen = max(maxvendorlen, strlen(f->vendor)); |
| 89 | maxchiplen = max(maxchiplen, strlen(f->name)); |
| 90 | } |
| 91 | maxvendorlen++; |
| 92 | maxchiplen++; |
| 93 | okcol = maxvendorlen + maxchiplen; |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 94 | |
| 95 | printf("\nSupported flash chips (total: %d):\n\n", chipcount); |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 96 | printf("Vendor"); |
| 97 | for (i = strlen("Vendor"); i < maxvendorlen; i++) |
| 98 | printf(" "); |
| 99 | printf("Device"); |
| 100 | for (i = strlen("Device"); i < maxchiplen; i++) |
| 101 | printf(" "); |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 102 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 103 | printf("Tested Known Size/KB: Type:\n"); |
| 104 | for (i = 0; i < okcol; i++) |
| 105 | printf(" "); |
| 106 | printf("OK Broken\n\n"); |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 107 | printf("(P = PROBE, R = READ, E = ERASE, W = WRITE)\n\n"); |
| 108 | |
| 109 | for (f = flashchips; f->name != NULL; f++) { |
| 110 | /* Don't print "unknown XXXX SPI chip" entries. */ |
| 111 | if (!strncmp(f->name, "unknown", 7)) |
| 112 | continue; |
| 113 | |
| 114 | printf("%s", f->vendor); |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 115 | for (i = strlen(f->vendor); i < maxvendorlen; i++) |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 116 | printf(" "); |
| 117 | printf("%s", f->name); |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 118 | for (i = strlen(f->name); i < maxchiplen; i++) |
| 119 | printf(" "); |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 120 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 121 | pos = maxvendorlen + maxchiplen; |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 122 | if ((f->tested & TEST_OK_MASK)) { |
| 123 | if ((f->tested & TEST_OK_PROBE)) |
| 124 | POS_PRINT("P "); |
| 125 | if ((f->tested & TEST_OK_READ)) |
| 126 | POS_PRINT("R "); |
| 127 | if ((f->tested & TEST_OK_ERASE)) |
| 128 | POS_PRINT("E "); |
| 129 | if ((f->tested & TEST_OK_WRITE)) |
| 130 | POS_PRINT("W "); |
| 131 | } |
| 132 | while (pos < okcol + 9) { |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 133 | printf(" "); |
| 134 | pos++; |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 135 | } |
| 136 | if ((f->tested & TEST_BAD_MASK)) { |
| 137 | if ((f->tested & TEST_BAD_PROBE)) |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 138 | POS_PRINT("P "); |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 139 | if ((f->tested & TEST_BAD_READ)) |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 140 | POS_PRINT("R "); |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 141 | if ((f->tested & TEST_BAD_ERASE)) |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 142 | POS_PRINT("E "); |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 143 | if ((f->tested & TEST_BAD_WRITE)) |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 144 | POS_PRINT("W "); |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 145 | } |
| 146 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 147 | while (pos < okcol + 18) { |
| 148 | printf(" "); |
| 149 | pos++; |
| 150 | } |
| 151 | printf("%d", f->total_size); |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 152 | for (i = 0; i < 10 - digits(f->total_size); i++) |
| 153 | printf(" "); |
| 154 | printf("%s\n", flashbuses_to_text(f->bustype)); |
| 155 | } |
| 156 | } |
| 157 | |
hailfinger | 90c7d54 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 158 | #if CONFIG_INTERNAL == 1 |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 159 | static void print_supported_chipsets(void) |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 160 | { |
| 161 | int i, j, chipsetcount = 0; |
| 162 | const struct penable *c = chipset_enables; |
| 163 | |
| 164 | for (i = 0; c[i].vendor_name != NULL; i++) |
| 165 | chipsetcount++; |
| 166 | |
| 167 | printf("\nSupported chipsets (total: %d):\n\nVendor: " |
| 168 | "Chipset: PCI IDs:\n\n", chipsetcount); |
| 169 | |
| 170 | for (i = 0; c[i].vendor_name != NULL; i++) { |
| 171 | printf("%s", c[i].vendor_name); |
| 172 | for (j = 0; j < 25 - strlen(c[i].vendor_name); j++) |
| 173 | printf(" "); |
| 174 | printf("%s", c[i].device_name); |
| 175 | for (j = 0; j < 25 - strlen(c[i].device_name); j++) |
| 176 | printf(" "); |
| 177 | printf("%04x:%04x%s\n", c[i].vendor_id, c[i].device_id, |
| 178 | (c[i].status == OK) ? "" : " (untested)"); |
| 179 | } |
| 180 | } |
| 181 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 182 | static void print_supported_boards_helper(const struct board_info *boards, |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 183 | const char *devicetype) |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 184 | { |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 185 | int i, j, boardcount_good = 0, boardcount_bad = 0; |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 186 | const struct board_pciid_enable *b = board_pciid_enables; |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 187 | |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 188 | for (i = 0; boards[i].vendor != NULL; i++) { |
| 189 | if (boards[i].working) |
| 190 | boardcount_good++; |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 191 | else |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 192 | boardcount_bad++; |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 193 | } |
| 194 | |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 195 | printf("\nKnown %s (good: %d, bad: %d):" |
| 196 | "\n\nVendor: Board: " |
| 197 | "Status: Required option:" |
| 198 | "\n\n", devicetype, boardcount_good, boardcount_bad); |
| 199 | |
| 200 | for (i = 0; boards[i].vendor != NULL; i++) { |
| 201 | printf("%s", boards[i].vendor); |
| 202 | for (j = 0; j < 25 - strlen(boards[i].vendor); j++) |
| 203 | printf(" "); |
| 204 | printf("%s", boards[i].name); |
| 205 | for (j = 0; j < 28 - strlen(boards[i].name); j++) |
| 206 | printf(" "); |
| 207 | printf((boards[i].working) ? "OK " : "BAD "); |
| 208 | |
| 209 | for (j = 0; b[j].vendor_name != NULL; j++) { |
| 210 | if (strcmp(b[j].vendor_name, boards[i].vendor) |
| 211 | || strcmp(b[j].board_name, boards[i].name)) |
| 212 | continue; |
| 213 | if (b[j].lb_vendor == NULL) |
| 214 | printf("(autodetected)"); |
| 215 | else |
| 216 | printf("-m %s:%s", b[j].lb_vendor, |
| 217 | b[j].lb_part); |
| 218 | } |
| 219 | printf("\n"); |
| 220 | } |
uwe | 884cc8b | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 221 | } |
hailfinger | 80422e2 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 222 | #endif |
uwe | c0751f4 | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 223 | |
hailfinger | a50d60e | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 224 | void print_supported(void) |
| 225 | { |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 226 | print_supported_chips(); |
| 227 | |
| 228 | printf("\nSupported programmers:\n"); |
| 229 | list_programmers_linebreak(0, 80, 0); |
hailfinger | 90c7d54 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 230 | #if CONFIG_INTERNAL == 1 |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 231 | printf("\nSupported devices for the %s programmer:\n", |
| 232 | programmer_table[PROGRAMMER_INTERNAL].name); |
| 233 | print_supported_chipsets(); |
| 234 | print_supported_boards_helper(boards_known, "boards"); |
| 235 | print_supported_boards_helper(laptops_known, "laptops"); |
hailfinger | 80422e2 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 236 | #endif |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 237 | #if CONFIG_DUMMY == 1 |
| 238 | printf("\nSupported devices for the %s programmer:\n", |
| 239 | programmer_table[PROGRAMMER_DUMMY].name); |
| 240 | /* FIXME */ |
| 241 | printf("Dummy device, does nothing and logs all accesses\n"); |
hailfinger | fb3dc88 | 2009-12-14 03:07:31 +0000 | [diff] [blame] | 242 | #endif |
hailfinger | 90c7d54 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 243 | #if CONFIG_NIC3COM == 1 |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 244 | printf("\nSupported devices for the %s programmer:\n", |
| 245 | programmer_table[PROGRAMMER_NIC3COM].name); |
| 246 | print_supported_pcidevs(nics_3com); |
hailfinger | a50d60e | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 247 | #endif |
hailfinger | 90c7d54 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 248 | #if CONFIG_NICREALTEK == 1 |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 249 | printf("\nSupported devices for the %s programmer:\n", |
| 250 | programmer_table[PROGRAMMER_NICREALTEK].name); |
| 251 | print_supported_pcidevs(nics_realtek); |
| 252 | printf("\nSupported devices for the %s programmer:\n", |
| 253 | programmer_table[PROGRAMMER_NICREALTEK2].name); |
| 254 | print_supported_pcidevs(nics_realteksmc1211); |
uwe | ae6a69a | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 255 | #endif |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 256 | #if CONFIG_NICNATSEMI == 1 |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 257 | printf("\nSupported devices for the %s programmer:\n", |
| 258 | programmer_table[PROGRAMMER_NICNATSEMI].name); |
| 259 | print_supported_pcidevs(nics_natsemi); |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 260 | #endif |
hailfinger | 90c7d54 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 261 | #if CONFIG_GFXNVIDIA == 1 |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 262 | printf("\nSupported devices for the %s programmer:\n", |
| 263 | programmer_table[PROGRAMMER_GFXNVIDIA].name); |
| 264 | print_supported_pcidevs(gfx_nvidia); |
hailfinger | a50d60e | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 265 | #endif |
hailfinger | 90c7d54 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 266 | #if CONFIG_DRKAISER == 1 |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 267 | printf("\nSupported devices for the %s programmer:\n", |
| 268 | programmer_table[PROGRAMMER_DRKAISER].name); |
| 269 | print_supported_pcidevs(drkaiser_pcidev); |
hailfinger | a50d60e | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 270 | #endif |
hailfinger | 90c7d54 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 271 | #if CONFIG_SATASII == 1 |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 272 | printf("\nSupported devices for the %s programmer:\n", |
| 273 | programmer_table[PROGRAMMER_SATASII].name); |
| 274 | print_supported_pcidevs(satas_sii); |
hailfinger | a50d60e | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 275 | #endif |
hailfinger | 90c7d54 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 276 | #if CONFIG_ATAHPT == 1 |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 277 | printf("\nSupported devices for the %s programmer:\n", |
| 278 | programmer_table[PROGRAMMER_ATAHPT].name); |
| 279 | print_supported_pcidevs(ata_hpt); |
hailfinger | 74819ad | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 280 | #endif |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 281 | #if CONFIG_FT2232_SPI == 1 |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 282 | printf("\nSupported devices for the %s programmer:\n", |
| 283 | programmer_table[PROGRAMMER_FT2232_SPI].name); |
| 284 | print_supported_usbdevs(devs_ft2232spi); |
| 285 | #endif |
| 286 | #if CONFIG_SERPROG == 1 |
| 287 | printf("\nSupported devices for the %s programmer:\n", |
| 288 | programmer_table[PROGRAMMER_SERPROG].name); |
| 289 | /* FIXME */ |
| 290 | printf("All programmer devices speaking the serprog protocol\n"); |
| 291 | #endif |
| 292 | #if CONFIG_BUSPIRATE_SPI == 1 |
| 293 | printf("\nSupported devices for the %s programmer:\n", |
| 294 | programmer_table[PROGRAMMER_BUSPIRATE_SPI].name); |
| 295 | /* FIXME */ |
| 296 | printf("Dangerous Prototypes Bus Pirate\n"); |
| 297 | #endif |
| 298 | #if CONFIG_DEDIPROG == 1 |
| 299 | printf("\nSupported devices for the %s programmer:\n", |
| 300 | programmer_table[PROGRAMMER_DEDIPROG].name); |
| 301 | /* FIXME */ |
| 302 | printf("Dediprog SF100\n"); |
| 303 | #endif |
| 304 | #if CONFIG_RAYER_SPI == 1 |
| 305 | printf("\nSupported devices for the %s programmer:\n", |
| 306 | programmer_table[PROGRAMMER_RAYER_SPI].name); |
| 307 | /* FIXME */ |
| 308 | printf("RayeR parallel port programmer\n"); |
| 309 | #endif |
| 310 | #if CONFIG_NICINTEL_SPI == 1 |
| 311 | printf("\nSupported devices for the %s programmer:\n", |
| 312 | programmer_table[PROGRAMMER_NICINTEL_SPI].name); |
| 313 | print_supported_pcidevs(nics_intel_spi); |
| 314 | #endif |
David Hendricks | 668f29d | 2011-01-27 18:51:45 -0800 | [diff] [blame] | 315 | #if CONFIG_OGP_SPI == 1 |
| 316 | printf("\nSupported devices for the %s programmer:\n", |
| 317 | programmer_table[PROGRAMMER_OGP_SPI].name); |
| 318 | print_supported_pcidevs(ogp_spi); |
| 319 | #endif |
hailfinger | a50d60e | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 320 | } |
| 321 | |
hailfinger | 90c7d54 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 322 | #if CONFIG_INTERNAL == 1 |
hailfinger | a635fff | 2010-06-07 11:10:43 +0000 | [diff] [blame] | 323 | |
| 324 | #ifdef CONFIG_PRINT_WIKI |
| 325 | #define B(vendor, name, status, url, note) { vendor, name, status, url, note } |
| 326 | #else |
| 327 | #define B(vendor, name, status, url, note) { vendor, name, status } |
| 328 | #endif |
| 329 | |
uwe | c0751f4 | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 330 | /* Please keep this list alphabetically ordered by vendor/board. */ |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 331 | const struct board_info boards_known[] = { |
hailfinger | 324a9cc | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 332 | #if defined(__i386__) || defined(__x86_64__) |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 333 | B("A-Trend", "ATC-6220", 1, "http://www.motherboard.cz/mb/atrend/atc6220.htm", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 334 | B("abit", "AN-M2", 1, "http://www.abit.com.tw/page/de/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20AM2&pMODEL_NAME=AN-M2", NULL), |
| 335 | B("abit", "AX8", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20939&pMODEL_NAME=AX8", NULL), |
| 336 | B("abit", "BM6", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=BM6&fMTYPE=Socket%20370", NULL), |
| 337 | B("abit", "Fatal1ty F-I90HD", 1, "http://www.abit.com.tw/page/de/motherboard/motherboard_detail.php?pMODEL_NAME=Fatal1ty+F-I90HD&fMTYPE=LGA775", NULL), |
| 338 | B("abit", "IC7", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=IC7&fMTYPE=Socket%20478", NULL), |
| 339 | B("abit", "IP35", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=LGA775&pMODEL_NAME=IP35", NULL), |
| 340 | B("abit", "IP35 Pro", 1, "http://www.abit.com.tw/page/de/motherboard/motherboard_detail.php?fMTYPE=LGA775&pMODEL_NAME=IP35%20Pro", NULL), |
| 341 | B("abit", "IS-10", 0, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=IS-10&fMTYPE=Socket+478", "Reported by deejkuba@aol.com to flashrom@coreboot.org, no public archive. Missing board enable and/or M50FW040 unlocking. May work now."), |
| 342 | B("abit", "KN8 Ultra", 1, "http://www.abit.com.tw/page/de/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20939&pMODEL_NAME=KN8%20Ultra", NULL), |
| 343 | B("abit", "NF-M2 nView", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Socket%20AM2&pMODEL_NAME=NF-M2%20nView", NULL), |
| 344 | B("abit", "NF7-S", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Socket%20A&pMODEL_NAME=NF7-S", NULL), |
| 345 | B("abit", "VA6", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Slot%201&pMODEL_NAME=VA6", NULL), |
| 346 | B("abit", "VT6X4", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Slot%201&pMODEL_NAME=VT6X4", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 347 | B("Acorp", "6A815EPD", 1, "http://web.archive.org/web/20021206163652/www.acorp.com.tw/English/default.asp", NULL), |
| 348 | B("Advantech", "PCM-5820", 1, "http://www.emacinc.com/sbc_pc_compatible/pcm_5820.htm", NULL), |
| 349 | B("agami", "Aruma", 1, "http://web.archive.org/web/20080212111524/http://www.agami.com/site/ais-6000-series", NULL), |
| 350 | B("Albatron", "PM266A Pro", 1, "http://www.albatron.com.tw/English/Product/MB/pro_detail.asp?rlink=Overview&no=56", NULL), /* FIXME */ |
| 351 | B("AOpen", "vKM400Am-S", 1, "http://usa.aopen.com/products_detail.aspx?Auno=824", NULL), |
| 352 | B("Artec Group","DBE61", 1, "http://wiki.thincan.org/DBE61", NULL), |
| 353 | B("Artec Group","DBE62", 1, "http://wiki.thincan.org/DBE62", NULL), |
| 354 | B("ASI", "MB-5BLMP", 1, "http://www.hojerteknik.com/winnet.htm", "Used in the IGEL WinNET III thin client."), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 355 | B("ASRock", "775i65G", 1, "http://www.asrock.com/mb/overview.asp?Model=775i65G", NULL), |
| 356 | B("ASRock", "939A785GMH/128M", 1, "http://www.asrock.com/mb/overview.asp?Model=939A785GMH/128M&s=939", NULL), |
| 357 | B("ASRock", "A330GC", 1, "http://www.asrock.com/mb/overview.asp?Model=A330GC", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 358 | B("ASRock", "A770CrossFire", 1, "http://www.asrock.com/mb/overview.asp?Model=A770CrossFire&s=AM2\%2b", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 359 | B("ASRock", "ALiveNF6G-DVI", 1, "http://www.asrock.com/mb/overview.asp?Model=ALiveNF6G-DVI", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 360 | B("ASRock", "K7S41", 1, "http://www.asrock.com/mb/overview.asp?Model=K7S41", NULL), |
| 361 | B("ASRock", "K7VT4A+", 0, "http://www.asrock.com/mb/overview.asp?Model=K7VT4A%%2b&s=", "No chip found, probably due to flash translation. http://www.flashrom.org/pipermail/flashrom/2009-August/000393.html"), |
| 362 | B("ASRock", "K8S8X", 1, "http://www.asrock.com/mb/overview.asp?Model=K8S8X", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 363 | B("ASRock", "M3A790GXH/128M", 1, "http://www.asrock.com/MB/overview.asp?Model=M3A790GXH/128M", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 364 | B("ASRock", "P4i65GV", 1, NULL, NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 365 | B("ASUS", "A7N8X Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=wAsRYm41KTp78MFC", NULL), |
| 366 | B("ASUS", "A7N8X-E Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=TmQtPJv4jIxmL9C2", NULL), |
| 367 | B("ASUS", "A7V133", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/socka/kt133a/a7v133/", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 368 | B("ASUS", "A7V333", 1, "ftp://ftp.asus.com.tw/pub/asus/mb/socka/kt333/a7v333/", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 369 | B("ASUS", "A7V400-MX", 1, "http://www.asus.com/product.aspx?P_ID=hORgEHRBDLMfwAwx", NULL), |
| 370 | B("ASUS", "A7V600-X", 1, "http://www.asus.com/product.aspx?P_ID=L2XYS0rmtCjeOr4k", NULL), |
| 371 | B("ASUS", "A7V8X", 1, "http://www.asus.com/product.aspx?P_ID=qfpaGrAy2kLVo0f2", NULL), |
| 372 | B("ASUS", "A7V8X-MX", 1, "http://www.asus.com/product.aspx?P_ID=SEJOOYqfuQPitx2H", NULL), |
| 373 | B("ASUS", "A7V8X-MX SE", 1, "http://www.asus.com/product.aspx?P_ID=1guVBT1qV5oqhHyZ", NULL), |
| 374 | B("ASUS", "A7V8X-X", 1, "http://www.asus.com/product.aspx?P_ID=YcXfRrWHZ9RKoVmw", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 375 | B("ASUS", "A8Jm", 1, "http://www.asus.com/product.aspx?P_ID=VztICtOgiU6drx4m", NULL), |
| 376 | B("ASUS", "A8N", 1, NULL, NULL), /* TODO: This should probably be A8N-SLI Deluxe, see http://www.coreboot.org/pipermail/flashrom/2009-November/000878.html */ |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 377 | B("ASUS", "A8N-E", 1, "http://www.asus.com/product.aspx?P_ID=DzbA8hgqchMBOVRz", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 378 | B("ASUS", "A8N-LA (Nagami-GL8E)", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&cc=us&docname=c00647121&dlc=en", "This is an OEM board from HP, the HP name is Nagami-GL8E."), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 379 | B("ASUS", "A8N-SLI", 1, "http://www.asus.com/product.aspx?P_ID=J9FKa8z2xVId3pDK", NULL), |
| 380 | B("ASUS", "A8N-SLI Premium", 1, "http://www.asus.com/product.aspx?P_ID=nbulqxniNmzf0mH1", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 381 | B("ASUS", "A8N-VM CSM", 1, "http://www.asus.com/product.aspx?P_ID=JBqqlpj4cspbSa3s", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 382 | B("ASUS", "A8NE-FM/S", 1, "http://www.hardwareschotte.de/hardware/preise/proid_1266090/preis_ASUS+A8NE-FM", NULL), |
| 383 | B("ASUS", "A8V Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=tvpdgPNCPaABZRVU", NULL), |
| 384 | B("ASUS", "A8V-E Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=hQBPIJWEZnnGAZEh", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 385 | B("ASUS", "A8V-E SE", 1, "http://www.asus.com/product.aspx?P_ID=VMfiJJRYTHM4gXIi", "See http://www.coreboot.org/pipermail/coreboot/2007-October/026496.html"), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 386 | B("ASUS", "K8V", 1, "http://www.asus.com/product.aspx?P_ID=fG2KZOWF7v6MRFRm", NULL), |
| 387 | B("ASUS", "K8V SE Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=65HeDI8XM1u6Uy6o", NULL), |
| 388 | B("ASUS", "K8V-X SE", 1, "http://www.asus.com/product.aspx?P_ID=lzDXlbBVHkdckHVr", NULL), |
| 389 | B("ASUS", "M2A-MX", 1, "http://www.asus.com/product.aspx?P_ID=BmaOnPewi1JgltOZ", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 390 | B("ASUS", "M2A-VM", 1, "http://www.asus.com/product.aspx?P_ID=St3pWpym8xXpROQS", "See http://www.coreboot.org/pipermail/coreboot/2007-September/025281.html"), |
| 391 | B("ASUS", "M2N32-SLI Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=0jMy2X8lKstYRvev", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 392 | B("ASUS", "M2N-E", 1, "http://www.asus.com/product.aspx?P_ID=NFlvt10av3F7ayQ9", "If the machine doesn't come up again after flashing, try resetting the NVRAM(CMOS). The MAC address of the onboard network card will change to the value stored in the new image, so backup the old address first. See http://www.flashrom.org/pipermail/flashrom/2009-November/000879.html"), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 393 | B("ASUS", "M2N-SLI Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=szSFtrap7crpBaQE", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 394 | B("ASUS", "M2NBP-VM CSM", 1, "http://www.asus.com/product.aspx?P_ID=MnOfzTGd2KkwG0rF", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 395 | B("ASUS", "M2NPV-VM", 1, "http://www.asus.com/product.aspx?P_ID=HGTVnGv5nGahCYgK", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 396 | B("ASUS", "M2V", 1, "http://www.asus.com/product.aspx?P_ID=OqYlEDFfF6ZqZGvp", NULL), |
| 397 | B("ASUS", "M2V-MX", 1, "http://www.asus.com/product.aspx?P_ID=7grf8Ci4yxnqzt3z", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 398 | B("ASUS", "M3A76-CM", 1, NULL, NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 399 | B("ASUS", "M3A78-EM", 1, "http://www.asus.com/product.aspx?P_ID=KjpYqzmAd9vsTM2D", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 400 | B("ASUS", "M4A785TD-M EVO", 1, "http://www.asus.com/product.aspx?P_ID=QHbvGVB1mXmmD8qQ", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 401 | B("ASUS", "M4A79T Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=lhJiLTN5huPfCVkW", NULL), |
| 402 | B("ASUS", "M4A87TD/USB3", 1, "http://www.asus.com/product.aspx?P_ID=nlWYrI9wlNIYHAaa", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 403 | B("ASUS", "MEW-AM", 0, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock370/810/mew-am/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."), |
| 404 | B("ASUS", "MEW-VM", 0, "http://www.elhvb.com/mboards/OEM/HP/manual/ASUS%20MEW-VM.htm", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 405 | B("ASUS", "P2B", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b/", NULL), |
| 406 | B("ASUS", "P2B-D", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/", NULL), |
| 407 | B("ASUS", "P2B-DS", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-ds/", NULL), |
| 408 | B("ASUS", "P2B-F", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 409 | B("ASUS", "P2B-N", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-n/", NULL), |
| 410 | B("ASUS", "P2E-M", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440ex/p2e-m/", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 411 | B("ASUS", "P2L97-S", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440lx/p2l97-s/", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 412 | B("ASUS", "P3B-F", 0, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p3b-f/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 413 | B("ASUS", "P4B266", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4b266/", NULL), |
| 414 | B("ASUS", "P4B266-LM", 1, "http://esupport.sony.com/US/perl/swu-list.pl?mdl=PCVRX650", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 415 | B("ASUS", "P4B533-E", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4b533-e/", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 416 | B("ASUS", "P4C800-E Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=cFuVCr9bXXCckmcK", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 417 | B("ASUS", "P4P800", 1, "http://www.asus.com/product.aspx?P_ID=DYt1Et9MlBChqzLb", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 418 | B("ASUS", "P4P800-E Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=INIJUvLlif7LHp3g", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 419 | B("ASUS", "P4SC-E", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4sc-e/", "Part of ASUS Terminator P4 533 barebone system"), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 420 | B("ASUS", "P4SD-LA", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00022505", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 421 | B("ASUS", "P4S800-MX", 1, "http://www.asus.com/product.aspx?P_ID=Bb57zoJhmO1Qkcrh", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 422 | B("ASUS", "P5A", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock7/ali/p5a/", NULL), |
| 423 | B("ASUS", "P5B", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/socket775/P5B/", NULL), |
| 424 | B("ASUS", "P5B-Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=bswT66IBSb2rEWNa", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 425 | B("ASUS", "P5BV-M", 0, "ftp://ftp.asus.com.tw/pub/ASUS/mb/socket775/P5B-VM/", "Reported by Bernhard M. Wiedemann <bernhard@uml12d.zq1.de> to flashrom@coreboot.org, no public archive. Missing board enable and/or SST49LF008A unlocking. May work now."), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 426 | B("ASUS", "P5GC-MX/1333", 1, "http://www.asus.com/product.aspx?P_ID=PYvbfOokwxUzJky3", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 427 | B("ASUS", "P5GDC Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=AbeoopyNpI2TZixg", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 428 | B("ASUS", "P5KC", 1, "http://www.asus.com/product.aspx?P_ID=fFZ8oUIGmLpwNMjj", NULL), |
| 429 | B("ASUS", "P5L-MX", 1, "http://www.asus.com/product.aspx?P_ID=X70d3NCzH2DE9vWH", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 430 | B("ASUS", "P5GD1 Pro", 1, "http://www.asus.com/product.aspx?P_ID=50M49xQh71EZOeM1", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 431 | B("ASUS", "P5ND2-SLI Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=WY7XroDuUImVbgp5", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 432 | B("ASUS", "P5PE-VM", 1, "http://www.asus.com/product.aspx?P_ID=k3h0ZFVu9Lo1dUvk", NULL), |
| 433 | B("ASUS", "P6T SE", 1, "http://www.asus.com/product.aspx?P_ID=t4yhK6y9W9o7iQ9E", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 434 | B("ASUS", "P6T Deluxe", 1, "http://www.asus.com/product.aspx?P_ID=vXixf82co6Q5v0BZ", NULL), |
| 435 | B("ASUS", "P6T Deluxe V2", 1, "http://www.asus.com/product.aspx?P_ID=iRlP8RG9han6saZx", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 436 | B("ASUS", "Z8NA-D6C", 1, "http://www.asus.com/product.aspx?P_ID=k81cpN8uEB01BpQ6", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 437 | B("BCOM", "WinNET100", 1, "http://www.coreboot.org/BCOM_WINNET100", "Used in the IGEL-316 thin client."), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 438 | B("Biostar", "M6TBA", 0, "ftp://ftp.biostar-usa.com/manuals/M6TBA/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 439 | B("Biostar", "M7NCD Pro", 1, "http://www.biostar.com.tw/app/en/mb/content.php?S_ID=260", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 440 | B("Biostar", "P4M80-M4", 1, "http://www.biostar-usa.com/mbdetails.asp?model=p4m80-m4", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 441 | B("Biostar", "TA780G M2+", 1, "http://www.biostar.com.tw/app/en/t-series/content.php?S_ID=344", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 442 | B("Boser", "HS-6637", 0, "http://www.boser.com.tw/manual/HS-62376637v3.4.pdf", "Reported by Mark Robinson <mark@zl2tod.net> to flashrom@coreboot.org, no public archive. Missing board enable and/or F29C51002T unlocking. May work now."), |
| 443 | B("Congatec", "conga-X852", 1, "http://www.congatec.com/single_news+M57715f6263d.html?&L=1", NULL), |
| 444 | B("Dell", "OptiPlex GX1", 1, "http://support.dell.com/support/edocs/systems/ban_gx1/en/index.htm", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 445 | B("Dell", "PowerEdge 1850", 1, "http://support.dell.com/support/edocs/systems/pe1850/en/index.htm", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 446 | B("DFI", "855GME-MGF", 0, "http://www.dfi.com.tw/portal/CM/cmproduct/XX_cmproddetail/XX_WbProdsWindow?action=e&downloadType=&windowstate=normal&mode=view&downloadFlag=false&itemId=433", "Probably needs a board enable. http://www.coreboot.org/pipermail/coreboot/2009-May/048549.html"), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 447 | B("DFI", "Blood-Iron P35 T2RL", 1, "http://lp.lanparty.com.tw/portal/CM/cmproduct/XX_cmproddetail/XX_WbProdsWindow?itemId=516&downloadFlag=false&action=1", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 448 | B("Elitegroup", "GeForce6100SM-M ", 1, "http://www.ecs.com.tw/ECSWebSite/Product/Product_Detail.aspx?DetailID=685&MenuID=24", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 449 | B("Elitegroup", "K7S5A", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=279&CategoryID=1&DetailName=Specification&MenuID=1&LanID=0", NULL), |
| 450 | B("Elitegroup", "K7S6A", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=77&CategoryID=1&DetailName=Specification&MenuID=52&LanID=0", NULL), |
| 451 | B("Elitegroup", "K7VTA3", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=264&CategoryID=1&DetailName=Specification&MenuID=52&LanID=0", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 452 | B("Elitegroup", "P6IWP-Fe", 1, "http://www.ecs.com.tw/ECSWebSite_2007/Products/ProductsDetail.aspx?CategoryID=1&TypeID=3&DetailID=95&DetailName=Feature&MenuID=1&LanID=0", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 453 | B("Elitegroup", "P6VAP-A+", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=117&CategoryID=1&DetailName=Specification&MenuID=1&LanID=0", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 454 | B("Elitegroup", "RS485M-M", 1, "http://www.ecs.com.tw/ECSWebSite_2007/Products/ProductsDetail.aspx?CategoryID=1&DetailID=654&DetailName=Feature&MenuID=1&LanID=0", NULL), |
| 455 | B("Emerson", "ATCA-7360", 1, "http://www.emerson.com/sites/Network_Power/en-US/Products/Product_Detail/Product1/Pages/EmbCompATCA-7360.aspx", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 456 | B("EPoX", "EP-8K5A2", 1, "http://www.epox.com/product.asp?ID=EP-8K5A2", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 457 | B("EPoX", "EP-8NPA7I", 1, "http://epox.com/product.asp?ID=EP-8NPA7I", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 458 | B("EPoX", "EP-8RDA3+", 1, "http://www.epox.com/product.asp?ID=EP-8RDA3plus", NULL), |
| 459 | B("EPoX", "EP-BX3", 1, "http://www.epox.com/product.asp?ID=EP-BX3", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 460 | B("FIC", "VA-502", 0, "ftp://ftp.fic.com.tw/motherboard/manual/socket7/va-502/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. Seems the PCI subsystem IDs are identical with the Tekram P6Pro-A5. May work now."), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 461 | B("Foxconn", "A6VMX", 1, "http://www.foxconnchannel.com/product/motherboards/detail_overview.aspx?id=en-us0000346", NULL), |
| 462 | B("Fujitsu-Siemens", "ESPRIMO P5915", 1, "http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/professionalpc/ESPRIMO/P/EsprimoP5915-6.htm", "Mainboard model is D2312-A2."), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 463 | B("GIGABYTE", "GA-2761GXDK", 1, "http://www.computerbase.de/news/hardware/mainboards/amd-systeme/2007/mai/gigabyte_dtx-mainboard/", NULL), |
uwe | 566732c | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 464 | B("GIGABYTE", "GA-6BXC", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1445", NULL), |
| 465 | B("GIGABYTE", "GA-6BXDU", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1429", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 466 | B("GIGABYTE", "GA-6IEM", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1379", NULL), |
uwe | 566732c | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 467 | B("GIGABYTE", "GA-6ZMA", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1541", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 468 | B("GIGABYTE", "GA-MA785GMT-UD2H", 1, "http://www.gigabyte.de/Products/Motherboard/Products_Overview.aspx?ProductID=4525", NULL), |
| 469 | B("GIGABYTE", "GA-770TA-UD3", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3272#ov", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 470 | B("GIGABYTE", "GA-7DXR", 1, "http://www.gigabyte.de/Products/Motherboard/Products_Spec.aspx?ProductID=1302", NULL), |
uwe | 566732c | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 471 | B("GIGABYTE", "GA-7VT600", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1666", NULL), |
| 472 | B("GIGABYTE", "GA-7ZM", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1366", "Works fine if you remove jumper JP9 on the board and disable the flash protection BIOS option."), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 473 | B("GIGABYTE", "GA-8IRML", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1343", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 474 | B("GIGABYTE", "GA-8PE667 Ultra 2", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1607", NULL), |
uwe | 566732c | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 475 | B("GIGABYTE", "GA-965P-DS4", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2288", NULL), |
| 476 | B("GIGABYTE", "GA-EP35-DS3L", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2778", NULL), |
| 477 | B("GIGABYTE", "GA-EX58-UD4P", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2986", NULL), |
| 478 | B("GIGABYTE", "GA-K8N-SLI", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1928", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 479 | B("GIGABYTE", "GA-K8N51GMF-9", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1939", NULL), |
uwe | 566732c | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 480 | B("GIGABYTE", "GA-M57SLI-S4", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2287", NULL), |
| 481 | B("GIGABYTE", "GA-M61P-S3", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2434", NULL), |
| 482 | B("GIGABYTE", "GA-MA69VM-S2", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2500", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 483 | B("GIGABYTE", "GA-MA74GM-S2H (rev. 3.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3152", NULL), |
uwe | 566732c | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 484 | B("GIGABYTE", "GA-MA770T-UD3P", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3096", NULL), |
| 485 | B("GIGABYTE", "GA-MA78G-DS3H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2800", NULL), /* TODO: Rev 1.x or 2.x? */ |
| 486 | B("GIGABYTE", "GA-MA78GM-S2H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2758", NULL), /* TODO: Rev. 1.0, 1.1, or 2.x? */ |
| 487 | B("GIGABYTE", "GA-MA78GPM-DS2H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2859", NULL), |
| 488 | B("GIGABYTE", "GA-MA790FX-DQ6", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2690", NULL), |
| 489 | B("GIGABYTE", "GA-MA790GP-DS4H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2887", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 490 | B("HP", "ProLiant DL145 G3", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00816835&lang=en&cc=us&taskId=101&prodSeriesId=3219755&prodTypeId=15351", NULL), |
| 491 | B("HP", "ProLiant DL165 G6", 1, "http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/15351-15351-3328412-241644-3328421-3955644.html", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 492 | B("HP", "Puffer2-UL8E", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00300023", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 493 | B("HP", "Vectra VL400", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060658&lang=en&cc=us", NULL), |
| 494 | B("HP", "Vectra VL420 SFF", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060661&lang=en&cc=us", NULL), |
mkarcher | bb42158 | 2010-06-01 16:09:06 +0000 | [diff] [blame] | 495 | B("HP", "xw9400", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?lang=en&cc=us&prodSeriesId=3211286&prodTypeId=12454", "Boot block is write protected unless the solder points next to F2 are shorted." ), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 496 | B("IBASE", "MB899", 1, "http://www.ibase-i.com.tw/2009/mb899.html", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 497 | B("IBM", "x3455", 1, "http://www-03.ibm.com/systems/x/hardware/rack/x3455/index.html", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 498 | B("IEI", "PICOe-9452", 1, "http://www.ieiworld.com/product_groups/industrial/content.aspx?keyword=WSB&gid=00001000010000000001&cid=08125380291060861658&id=08142308605814597144", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 499 | B("Intel", "D201GLY", 1, "http://www.intel.com/support/motherboards/desktop/d201gly/index.htm", NULL), |
| 500 | B("Intel", "EP80759", 1, NULL, NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 501 | B("Intel", "Foxhollow", 1, NULL, "Intel reference board."), |
| 502 | B("Intel", "Greencity", 1, NULL, "Intel reference board."), |
| 503 | B("Intel", "SE440BX-2", 0, "http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&ProductFamily=Desktop+Boards&ProductLine=Discontinued+Motherboards&ProductProduct=Intel%C2%AE+SE440BX-2+Motherboard", "Probably won't work, see http://www.coreboot.org/pipermail/flashrom/2010-July/003952.html"), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 504 | B("IWILL", "DK8-HTX", 1, "http://web.archive.org/web/20060507170150/http://www.iwill.net/product_2.asp?p_id=98", NULL), |
| 505 | B("Jetway", "J7F4K1G5D-PB", 1, "http://www.jetway.com.tw/jetway/system/productshow2.asp?id=389&proname=J7F4K1G5D-P", NULL), |
| 506 | B("Kontron", "986LCD-M", 1, "http://de.kontron.com/products/boards+and+mezzanines/embedded+motherboards/miniitx+motherboards/986lcdmmitx.html", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 507 | B("Lex", "CV700A", 1, "http://www.lex.com.tw/product/CV700A-spec.htm", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 508 | B("Mitac", "6513WU", 1, "http://web.archive.org/web/20050313054828/http://www.mitac.com/micweb/products/tyan/6513wu/6513wu.htm", NULL), |
| 509 | B("MSI", "MS-6153", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=336", NULL), |
| 510 | B("MSI", "MS-6156", 1, "http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/boards/Motherboards/MicroStar/Ms6156/MS6156.htm", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 511 | B("MSI", "MS-6163 (MS-6163 Pro)",1, "http://www.msi.com/index.php?func=proddesc&prod_no=340", NULL), |
| 512 | B("MSI", "MS-6178", 0, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=343", "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>."), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 513 | B("MSI", "MS-6330 (K7T Turbo)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=327", NULL), |
David Hendricks | 668f29d | 2011-01-27 18:51:45 -0800 | [diff] [blame] | 514 | B("MSI", "MS-6391 (845 Pro4)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=293", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 515 | B("MSI", "MS-6561 (745 Ultra)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=274", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 516 | B("MSI", "MS-6570 (K7N2)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=519", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 517 | B("MSI", "MS-6577 (Xenon)", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?product=90390&lc=en&cc=us&dlc=en&docname=bph07843", "This is an OEM board from HP, the HP name is Xenon."), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 518 | B("MSI", "MS-6590 (KT4 Ultra)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=502", NULL), |
| 519 | B("MSI", "MS-6702E (K8T Neo2-F)",1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=588", NULL), |
| 520 | B("MSI", "MS-6712 (KT4V)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=505", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 521 | B("MSI", "MS-6787 (P4MAM-V/P4MAM-L)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=577", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 522 | B("MSI", "MS-7005 (651M-L)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=559", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 523 | B("MSI", "MS-7025 (K8N Neo2 Platinum)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=587", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 524 | B("MSI", "MS-7046", 1, "http://www.heimir.de/ms7046/", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 525 | B("MSI", "MS-7061 (KM4M-V/KM4AM-V)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=594", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 526 | B("MSI", "MS-7065", 1, "http://browse.geekbench.ca/geekbench2/view/53114", NULL), |
| 527 | B("MSI", "MS-7135 (K8N Neo3)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=170", NULL), |
| 528 | B("MSI", "MS-7168 (Orion)", 1, "http://support.packardbell.co.uk/uk/item/index.php?i=spec_orion&pi=platform_honeymoon_istart", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 529 | B("MSI", "MS-7207 (K8NGM2-L)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=224", NULL), |
| 530 | B("MSI", "MS-7211 (PM8M3-V)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=234", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 531 | B("MSI", "MS-7236 (945PL Neo3)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=1173", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 532 | B("MSI", "MS-7253 (K9VGM-V)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=260", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 533 | B("MSI", "MS-7255 (P4M890M)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=1082", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 534 | B("MSI", "MS-7260, (K9N Neo)", 0, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=255", "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>."), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 535 | B("MSI", "MS-7312 (K9MM-V)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=1104", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 536 | B("MSI", "MS-7345 (P35 Neo2-FIR)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=1261", NULL), |
| 537 | B("MSI", "MS-7368 (K9AG Neo2-Digital)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=1241", NULL), |
| 538 | B("MSI", "MS-7376 (K9A2 Platinum)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=1332", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 539 | B("MSI", "MS-7642 (890GXM-G65)", 1, "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=2012", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 540 | B("NEC", "PowerMate 2000", 1, "http://support.necam.com/mobilesolutions/hardware/Desktops/pm2000/celeron/", NULL), |
| 541 | B("Nokia", "IP530", 1, NULL, NULL), |
| 542 | B("PC Engines", "Alix.1c", 1, "http://pcengines.ch/alix1c.htm", NULL), |
| 543 | B("PC Engines", "Alix.2c2", 1, "http://pcengines.ch/alix2c2.htm", NULL), |
| 544 | B("PC Engines", "Alix.2c3", 1, "http://pcengines.ch/alix2c3.htm", NULL), |
| 545 | B("PC Engines", "Alix.3c3", 1, "http://pcengines.ch/alix3c3.htm", NULL), |
| 546 | B("PC Engines", "Alix.3d3", 1, "http://pcengines.ch/alix3d3.htm", NULL), |
| 547 | B("PC Engines", "WRAP.2E", 1, "http://pcengines.ch/wrap2e1.htm", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 548 | B("Portwell", "PEB-4700VLA", 1, "http://www.portwell.com/products/detail.asp?CUSTCHAR1=PEB-4700VLA", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 549 | B("RCA", "RM4100", 1, "http://www.settoplinux.org/index.php?title=RCA_RM4100", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 550 | B("Samsung", "Polaris 32", 1, NULL, NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 551 | B("Shuttle", "AK31", 1, "http://www.motherboard.cz/mb/shuttle/AK31.htm", NULL), |
| 552 | B("Shuttle", "AK38N", 1, "http://eu.shuttle.com/en/desktopdefault.aspx/tabid-36/558_read-9889/", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 553 | B("Shuttle", "AV11V30", 1, NULL, NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 554 | B("Shuttle", "FD37", 1, "http://www.shuttle.eu/products/discontinued/barebones/sd37p2/", NULL), |
| 555 | B("Shuttle", "FN25", 1, "http://www.shuttle.eu/products/discontinued/barebones/sn25p/?0=", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 556 | B("Shuttle", "X50/X50(B)", 1, "http://au.shuttle.com/product_detail_spec.jsp?PI=1241", NULL), |
| 557 | B("Soyo", "SY-5VD", 0, "http://www.soyo.com/content/Downloads/163/&c=80&p=464&l=English", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 558 | B("Soyo", "SY-6BA+ III", 1, "http://www.motherboard.cz/mb/soyo/SY-6BA+III.htm", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 559 | B("Soyo", "SY-7VCA", 1, "http://www.tomshardware.com/reviews/12-socket-370-motherboards,196-15.html", NULL), |
| 560 | B("Sun", "Blade x6250", 1, "http://www.sun.com/servers/blades/x6250/", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 561 | B("Sun", "Fire x4150", 0, "http://www.sun.com/servers/x64/x4150/", "No public report found. May work now."), |
| 562 | B("Sun", "Fire x4200", 0, "http://www.sun.com/servers/entry/x4200/", "No public report found. May work now."), |
| 563 | B("Sun", "Fire x4540", 0, "http://www.sun.com/servers/x64/x4540/", "No public report found. May work now."), |
| 564 | B("Sun", "Fire x4600", 0, "http://www.sun.com/servers/x64/x4600/", "No public report found. May work now."), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 565 | B("Supermicro", "H8QC8", 1, "http://www.supermicro.com/Aplus/motherboard/Opteron/nforce/H8QC8.cfm", NULL), |
| 566 | B("Supermicro", "X8DTT-F", 1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTT-F.cfm", NULL), |
| 567 | B("T-Online", "S-100", 1, "http://wiki.freifunk-hannover.de/T-Online_S_100", NULL), |
| 568 | B("Tekram", "P6Pro-A5", 1, "http://www.motherboard.cz/mb/tekram/P6Pro-A5.htm", NULL), |
| 569 | B("Termtek", "TK-3370 (Rev:2.5B)", 1, NULL, NULL), |
| 570 | B("Thomson", "IP1000", 1, "http://www.settoplinux.org/index.php?title=Thomson_IP1000", NULL), |
| 571 | B("TriGem", "Lomita", 1, "http://www.e4allupgraders.info/dir1/motherboards/socket370/lomita.shtml", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 572 | B("Tyan", "S5375-1U (Tempest i5100X)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=610", NULL), |
| 573 | B("Tyan", "S1846 (Tsunami ATX)", 1, "http://www.tyan.com/archive/products/html/tsunamiatx.html", NULL), |
| 574 | B("Tyan", "S2466 (Tiger MPX)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=461", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 575 | B("Tyan", "S2498 (Tomcat K7M)", 1, "http://www.tyan.com/archive/products/html/tomcatk7m.html", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 576 | B("Tyan", "S2881 (Thunder K8SR)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=115", NULL), |
| 577 | B("Tyan", "S2882 (Thunder K8S Pro)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=121", NULL), |
| 578 | B("Tyan", "S2882-D (Thunder K8SD Pro)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=127", NULL), |
| 579 | B("Tyan", "S2891 (Thunder K8SRE)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=144", NULL), |
| 580 | B("Tyan", "S2892 (Thunder K8SE)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=145", NULL), |
| 581 | B("Tyan", "S2895 (Thunder K8WE)", 1, "http://www.tyan.com/archive/products/html/thunderk8we.html", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 582 | B("Tyan", "S2915 (Thunder n6650W)", 1, "http://tyan.com/product_board_detail.aspx?pid=163", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 583 | B("Tyan", "S2915-E (Thunder n6650W)", 1, "http://tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=541&SKU=600000041", NULL), |
| 584 | B("Tyan", "S2933 (Thunder n3600S)", 1, "http://tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=478&SKU=600000063", NULL), |
| 585 | B("Tyan", "S3095 (Tomcat i945GM)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=181", NULL), |
| 586 | B("Tyan", "S3992 (Thunder h2000M)", 1, "http://tyan.com/product_board_detail.aspx?pid=235", NULL), |
| 587 | B("Tyan", "S5180 (Toledo i965R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=456", NULL), |
| 588 | B("Tyan", "S5191 (Toledo i3000R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=343", NULL), |
| 589 | B("Tyan", "S5197 (Toledo i3010W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=349", NULL), |
| 590 | B("Tyan", "S5211 (Toledo i3210W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=591", NULL), |
| 591 | B("Tyan", "S5211-1U (Toledo i3200R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=593", NULL), |
| 592 | B("Tyan", "S5220 (Toledo q35T)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=597", NULL), |
| 593 | B("Tyan", "S5375 (Tempest i5100X)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=566", NULL), |
| 594 | B("Tyan", "S5376 (Tempest i5100W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=605", "Both S5376G2NR and S5376WAG2NR should work."), |
| 595 | B("Tyan", "S5377 (Tempest i5100T)", 1, "http://www.tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=642&SKU=600000017", NULL), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 596 | B("Tyan", "S5382 (Tempest i5000PW)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=439", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 597 | B("Tyan", "S5397 (Tempest i5400PW)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=560", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 598 | B("VIA", "EPIA M/MII/...", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=202", NULL), /* EPIA-MII link for now */ |
| 599 | B("VIA", "EPIA SP", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=261", NULL), |
| 600 | B("VIA", "EPIA-CN", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=400", NULL), |
mkarcher | 12e731f | 2010-06-12 17:27:44 +0000 | [diff] [blame] | 601 | B("VIA", "EPIA EK", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?motherboard_id=420", NULL), |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 602 | B("VIA", "EPIA-EX15000G", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=450", NULL), |
| 603 | B("VIA", "EPIA-LN", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=473", NULL), |
| 604 | B("VIA", "EPIA-M700", 1, "http://via.com.tw/servlet/downloadSvl?motherboard_id=670&download_file_id=3700", NULL), |
| 605 | B("VIA", "EPIA-N/NL", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=221", NULL), /* EPIA-N link for now */ |
| 606 | B("VIA", "EPIA-NX15000G", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=470", NULL), |
| 607 | B("VIA", "NAB74X0", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=590", NULL), |
| 608 | B("VIA", "pc2500e", 1, "http://www.via.com.tw/en/initiatives/empowered/pc2500_mainboard/index.jsp", NULL), |
| 609 | B("VIA", "PC3500G", 1, "http://www.via.com.tw/en/initiatives/empowered/pc3500_mainboard/index.jsp", NULL), |
| 610 | B("VIA", "VB700X", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=490", NULL), |
David Hendricks | c801adb | 2010-12-09 16:58:56 -0800 | [diff] [blame] | 611 | B("ZOTAC", "ZBOX HD-ID11", 1, "http://pdde.zotac.com/index.php?page=shop.product_details&product_id=240&category_id=75", NULL), |
hailfinger | 324a9cc | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 612 | #endif |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 613 | |
uwe | c0751f4 | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 614 | {}, |
| 615 | }; |
| 616 | |
| 617 | /* Please keep this list alphabetically ordered by vendor/board. */ |
uwe | f35eeec | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 618 | const struct board_info laptops_known[] = { |
hailfinger | 324a9cc | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 619 | #if defined(__i386__) || defined(__x86_64__) |
uwe | e903b5e | 2010-06-03 16:35:51 +0000 | [diff] [blame] | 620 | B("Acer", "Aspire 1520", 1, "http://support.acer.com/us/en/acerpanam/notebook/0000/Acer/Aspire1520/Aspire1520nv.shtml", NULL), |
| 621 | B("Acer", "Aspire One", 0, NULL, "http://www.coreboot.org/pipermail/coreboot/2009-May/048041.html"), |
| 622 | B("ASUS", "Eee PC 701 4G", 0, "http://www.asus.com/product.aspx?P_ID=h6SPd3tEzLEsrEiS", "It seems the chip (25X40VSIG) is behind some SPI flash translation layer (likely in the EC, the ENE KB3310)."), |
| 623 | B("Dell", "Latitude CPi A366XT", 0, "http://www.coreboot.org/Dell_Latitude_CPi_A366XT", "The laptop immediately powers off if you try to hot-swap the chip. It's not yet tested if write/erase would work on this laptop."), |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 624 | B("HP/Compaq", "nx9005", 0, "http://h18000.www1.hp.com/products/quickspecs/11602_na/11602_na.HTML", "Shuts down when probing for a chip. http://www.flashrom.org/pipermail/flashrom/2010-May/003321.html"), |
uwe | e903b5e | 2010-06-03 16:35:51 +0000 | [diff] [blame] | 625 | B("HP/Compaq", "nx9010", 0, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&objectID=c00348514", "Hangs upon '''flashrom -V''' (needs hard power-cycle then)."), |
| 626 | B("IBM/Lenovo", "Thinkpad T40p", 0, "http://www.thinkwiki.org/wiki/Category:T40p", NULL), |
| 627 | B("IBM/Lenovo", "240", 0, "http://www.stanford.edu/~bresnan//tp240.html", "Seems to (partially) work at first, but one block/sector cannot be written which then leaves you with a bricked laptop. Maybe this can be investigated and fixed in software later."), |
| 628 | B("Lenovo", "3000 V100 TF05Cxx", 1, "http://www5.pc.ibm.com/europe/products.nsf/products?openagent&brand=Lenovo3000Notebook&series=Lenovo+3000+V+Series#viewallmodelstop", NULL), |
hailfinger | 324a9cc | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 629 | #endif |
uwe | c0751f4 | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 630 | |
uwe | c0751f4 | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 631 | {}, |
| 632 | }; |
hailfinger | 80422e2 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 633 | #endif |