Uwe Hermann | ba290d1 | 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 | |
Carl-Daniel Hailfinger | 831e8f4 | 2010-05-30 22:24:40 +0000 | [diff] [blame] | 22 | #include <stdio.h> |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 23 | #include <string.h> |
| 24 | #include <stdlib.h> |
| 25 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 26 | #include "programmer.h" |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 27 | |
| 28 | /* |
| 29 | * Return a string corresponding to the bustype parameter. |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 30 | * Memory is obtained with malloc() and must be freed with free() by the caller. |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 31 | */ |
| 32 | char *flashbuses_to_text(enum chipbustype bustype) |
| 33 | { |
| 34 | char *ret = calloc(1, 1); |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 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 | */ |
Carl-Daniel Hailfinger | 532c717 | 2011-11-04 21:35:26 +0000 | [diff] [blame] | 39 | if (bustype == BUS_NONSPI) { |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 40 | ret = strcat_realloc(ret, "Non-SPI, "); |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 41 | } else { |
Carl-Daniel Hailfinger | 1a22795 | 2011-07-27 07:13:06 +0000 | [diff] [blame] | 42 | if (bustype & BUS_PARALLEL) |
Stefan Tauner | 355cbfd | 2011-05-28 02:37:14 +0000 | [diff] [blame] | 43 | ret = strcat_realloc(ret, "Parallel, "); |
Carl-Daniel Hailfinger | 1a22795 | 2011-07-27 07:13:06 +0000 | [diff] [blame] | 44 | if (bustype & BUS_LPC) |
Stefan Tauner | 355cbfd | 2011-05-28 02:37:14 +0000 | [diff] [blame] | 45 | ret = strcat_realloc(ret, "LPC, "); |
Carl-Daniel Hailfinger | 1a22795 | 2011-07-27 07:13:06 +0000 | [diff] [blame] | 46 | if (bustype & BUS_FWH) |
Stefan Tauner | 355cbfd | 2011-05-28 02:37:14 +0000 | [diff] [blame] | 47 | ret = strcat_realloc(ret, "FWH, "); |
Carl-Daniel Hailfinger | 1a22795 | 2011-07-27 07:13:06 +0000 | [diff] [blame] | 48 | if (bustype & BUS_SPI) |
Stefan Tauner | 355cbfd | 2011-05-28 02:37:14 +0000 | [diff] [blame] | 49 | ret = strcat_realloc(ret, "SPI, "); |
Carl-Daniel Hailfinger | 532c717 | 2011-11-04 21:35:26 +0000 | [diff] [blame] | 50 | if (bustype & BUS_PROG) |
| 51 | ret = strcat_realloc(ret, "Programmer-specific, "); |
Carl-Daniel Hailfinger | 1a22795 | 2011-07-27 07:13:06 +0000 | [diff] [blame] | 52 | if (bustype == BUS_NONE) |
Stefan Tauner | 355cbfd | 2011-05-28 02:37:14 +0000 | [diff] [blame] | 53 | ret = strcat_realloc(ret, "None, "); |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 54 | } |
| 55 | /* Kill last comma. */ |
Stefan Tauner | 355cbfd | 2011-05-28 02:37:14 +0000 | [diff] [blame] | 56 | ret[strlen(ret) - 2] = '\0'; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 57 | ret = realloc(ret, strlen(ret) + 1); |
| 58 | return ret; |
| 59 | } |
| 60 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 61 | static void print_supported_chips(void) |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 62 | { |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 63 | const char *delim = "/"; |
| 64 | const int mintoklen = 5; |
| 65 | const int border = 2; |
| 66 | int i, chipcount = 0; |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 67 | int maxvendorlen = strlen("Vendor") + 1; |
| 68 | int maxchiplen = strlen("Device") + 1; |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 69 | int maxtypelen = strlen("Type") + 1; |
Carl-Daniel Hailfinger | 4c82318 | 2011-05-04 00:39:50 +0000 | [diff] [blame] | 70 | const struct flashchip *f; |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 71 | char *s; |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 72 | char *tmpven, *tmpdev; |
| 73 | int tmpvenlen, tmpdevlen, curvenlen, curdevlen; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 74 | |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 75 | /* calculate maximum column widths and by iterating over all chips */ |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 76 | for (f = flashchips; f->name != NULL; f++) { |
Carl-Daniel Hailfinger | f753342 | 2010-07-17 23:21:12 +0000 | [diff] [blame] | 77 | /* Ignore "unknown XXXX SPI chip" entries. */ |
| 78 | if (!strncmp(f->name, "unknown", 7)) |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 79 | continue; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 80 | chipcount++; |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 81 | |
| 82 | /* Find maximum vendor length (respecting line splitting). */ |
| 83 | tmpven = (char *)f->vendor; |
| 84 | do { |
| 85 | /* and take minimum token lengths into account */ |
| 86 | tmpvenlen = 0; |
| 87 | do { |
| 88 | tmpvenlen += strcspn(tmpven, delim); |
| 89 | /* skip to the address after the first token */ |
| 90 | tmpven += tmpvenlen; |
| 91 | if (tmpven[0] == '\0') |
| 92 | break; |
| 93 | tmpven++; |
| 94 | } while (tmpvenlen < mintoklen); |
| 95 | maxvendorlen = max(maxvendorlen, tmpvenlen); |
| 96 | if (tmpven[0] == '\0') |
| 97 | break; |
| 98 | } while (1); |
| 99 | |
| 100 | /* same for device name */ |
| 101 | tmpdev = (char *)f->name; |
| 102 | do { |
| 103 | tmpdevlen = 0; |
| 104 | do { |
| 105 | tmpdevlen += strcspn(tmpdev, delim); |
| 106 | tmpdev += tmpdevlen; |
| 107 | if (tmpdev[0] == '\0') |
| 108 | break; |
| 109 | tmpdev++; |
| 110 | } while (tmpdevlen < mintoklen); |
| 111 | maxchiplen = max(maxchiplen, tmpdevlen); |
| 112 | if (tmpdev[0] == '\0') |
| 113 | break; |
| 114 | } while (1); |
| 115 | |
| 116 | s = flashbuses_to_text(f->bustype); |
| 117 | maxtypelen = max(maxtypelen, strlen(s)); |
| 118 | free(s); |
Carl-Daniel Hailfinger | f753342 | 2010-07-17 23:21:12 +0000 | [diff] [blame] | 119 | } |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 120 | maxvendorlen += border; |
| 121 | maxchiplen += border; |
| 122 | maxtypelen += border; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 123 | |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 124 | msg_ginfo("Supported flash chips (total: %d):\n\n", chipcount); |
| 125 | msg_ginfo("Vendor"); |
Carl-Daniel Hailfinger | f753342 | 2010-07-17 23:21:12 +0000 | [diff] [blame] | 126 | for (i = strlen("Vendor"); i < maxvendorlen; i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 127 | msg_ginfo(" "); |
| 128 | msg_ginfo("Device"); |
Carl-Daniel Hailfinger | f753342 | 2010-07-17 23:21:12 +0000 | [diff] [blame] | 129 | for (i = strlen("Device"); i < maxchiplen; i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 130 | msg_ginfo(" "); |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 131 | |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 132 | msg_ginfo("Test"); |
| 133 | for (i = 0; i < border; i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 134 | msg_ginfo(" "); |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 135 | msg_ginfo("Known"); |
| 136 | for (i = 0; i < border; i++) |
| 137 | msg_ginfo(" "); |
| 138 | msg_ginfo(" Size"); |
| 139 | for (i = 0; i < border; i++) |
| 140 | msg_ginfo(" "); |
| 141 | |
| 142 | msg_ginfo("Type"); |
| 143 | for (i = strlen("Type"); i < maxtypelen; i++) |
| 144 | msg_ginfo(" "); |
| 145 | msg_gdbg("Voltage"); |
| 146 | msg_ginfo("\n"); |
| 147 | |
| 148 | for (i = 0; i < maxvendorlen + maxchiplen; i++) |
| 149 | msg_ginfo(" "); |
| 150 | msg_ginfo("OK "); |
| 151 | for (i = 0; i < border; i++) |
| 152 | msg_ginfo(" "); |
| 153 | msg_ginfo("Broken"); |
| 154 | for (i = 0; i < border; i++) |
| 155 | msg_ginfo(" "); |
| 156 | msg_ginfo("[kB]"); |
| 157 | for (i = 0; i < border + maxtypelen; i++) |
| 158 | msg_ginfo(" "); |
| 159 | msg_gdbg("range [V]"); |
| 160 | msg_ginfo("\n\n"); |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 161 | msg_ginfo("(P = PROBE, R = READ, E = ERASE, W = WRITE)\n\n"); |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 162 | |
| 163 | for (f = flashchips; f->name != NULL; f++) { |
| 164 | /* Don't print "unknown XXXX SPI chip" entries. */ |
| 165 | if (!strncmp(f->name, "unknown", 7)) |
| 166 | continue; |
| 167 | |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 168 | /* support for multiline vendor names: |
| 169 | * - make a copy of the original vendor name |
| 170 | * - use strok to put the first token in tmpven |
| 171 | * - keep track of the length of all tokens on the current line |
| 172 | * for ' '-padding in curvenlen |
| 173 | * - check if additional tokens should be printed on the current |
| 174 | * line |
| 175 | * - after all other values are printed print the surplus tokens |
| 176 | * on fresh lines |
| 177 | */ |
| 178 | tmpven = malloc(strlen(f->vendor) + 1); |
| 179 | if (tmpven == NULL) { |
| 180 | msg_gerr("Out of memory!\n"); |
| 181 | exit(1); |
| 182 | } |
| 183 | strcpy(tmpven, f->vendor); |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 184 | |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 185 | tmpven = strtok(tmpven, delim); |
| 186 | msg_ginfo("%s", tmpven); |
| 187 | curvenlen = strlen(tmpven); |
| 188 | while ((tmpven = strtok(NULL, delim)) != NULL) { |
| 189 | msg_ginfo("%s", delim); |
| 190 | curvenlen++; |
| 191 | tmpvenlen = strlen(tmpven); |
| 192 | if (tmpvenlen >= mintoklen) |
| 193 | break; /* big enough to be on its own line */ |
| 194 | msg_ginfo("%s", tmpven); |
| 195 | curvenlen += tmpvenlen; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 196 | } |
| 197 | |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 198 | for (i = curvenlen; i < maxvendorlen; i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 199 | msg_ginfo(" "); |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 200 | |
| 201 | /* support for multiline device names as above */ |
| 202 | tmpdev = malloc(strlen(f->name) + 1); |
| 203 | if (tmpdev == NULL) { |
| 204 | msg_gerr("Out of memory!\n"); |
| 205 | exit(1); |
Carl-Daniel Hailfinger | f753342 | 2010-07-17 23:21:12 +0000 | [diff] [blame] | 206 | } |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 207 | strcpy(tmpdev, f->name); |
| 208 | |
| 209 | tmpdev = strtok(tmpdev, delim); |
| 210 | msg_ginfo("%s", tmpdev); |
| 211 | curdevlen = strlen(tmpdev); |
| 212 | while ((tmpdev = strtok(NULL, delim)) != NULL) { |
| 213 | msg_ginfo("%s", delim); |
| 214 | curdevlen++; |
| 215 | tmpdevlen = strlen(tmpdev); |
| 216 | if (tmpdevlen >= mintoklen) |
| 217 | break; /* big enough to be on its own line */ |
| 218 | msg_ginfo("%s", tmpdev); |
| 219 | curdevlen += tmpdevlen; |
| 220 | } |
| 221 | |
| 222 | for (i = curdevlen; i < maxchiplen; i++) |
| 223 | msg_ginfo(" "); |
| 224 | |
| 225 | if ((f->tested & TEST_OK_PROBE)) |
| 226 | msg_ginfo("P"); |
| 227 | else |
| 228 | msg_ginfo(" "); |
| 229 | if ((f->tested & TEST_OK_READ)) |
| 230 | msg_ginfo("R"); |
| 231 | else |
| 232 | msg_ginfo(" "); |
| 233 | if ((f->tested & TEST_OK_ERASE)) |
| 234 | msg_ginfo("E"); |
| 235 | else |
| 236 | msg_ginfo(" "); |
| 237 | if ((f->tested & TEST_OK_WRITE)) |
| 238 | msg_ginfo("W"); |
| 239 | else |
| 240 | msg_ginfo(" "); |
| 241 | for (i = 0; i < border; i++) |
| 242 | msg_ginfo(" "); |
| 243 | |
| 244 | if ((f->tested & TEST_BAD_PROBE)) |
| 245 | msg_ginfo("P"); |
| 246 | else |
| 247 | msg_ginfo(" "); |
| 248 | if ((f->tested & TEST_BAD_READ)) |
| 249 | msg_ginfo("R"); |
| 250 | else |
| 251 | msg_ginfo(" "); |
| 252 | if ((f->tested & TEST_BAD_ERASE)) |
| 253 | msg_ginfo("E"); |
| 254 | else |
| 255 | msg_ginfo(" "); |
| 256 | if ((f->tested & TEST_BAD_WRITE)) |
| 257 | msg_ginfo("W"); |
| 258 | else |
| 259 | msg_ginfo(" "); |
| 260 | for (i = 0; i < border + 1; i++) |
| 261 | msg_ginfo(" "); |
| 262 | |
| 263 | msg_ginfo("%5d", f->total_size); |
| 264 | for (i = 0; i < border; i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 265 | msg_ginfo(" "); |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 266 | |
| 267 | s = flashbuses_to_text(f->bustype); |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 268 | msg_ginfo("%s", s); |
| 269 | for (i = strlen(s); i < maxtypelen; i++) |
| 270 | msg_ginfo(" "); |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 271 | free(s); |
Stefan Tauner | 29e5d31 | 2011-09-12 22:55:01 +0000 | [diff] [blame] | 272 | |
| 273 | if (f->voltage.min == 0 && f->voltage.max == 0) |
| 274 | msg_gdbg("no info"); |
| 275 | else |
| 276 | msg_gdbg("%0.02f;%0.02f", |
| 277 | f->voltage.min/(double)1000, |
| 278 | f->voltage.max/(double)1000); |
| 279 | |
| 280 | /* print surplus vendor and device name tokens */ |
| 281 | while (tmpven != NULL || tmpdev != NULL) { |
| 282 | msg_ginfo("\n"); |
| 283 | if (tmpven != NULL){ |
| 284 | msg_ginfo("%s", tmpven); |
| 285 | curvenlen = strlen(tmpven); |
| 286 | while ((tmpven = strtok(NULL, delim)) != NULL) { |
| 287 | msg_ginfo("%s", delim); |
| 288 | curvenlen++; |
| 289 | tmpvenlen = strlen(tmpven); |
| 290 | /* big enough to be on its own line */ |
| 291 | if (tmpvenlen >= mintoklen) |
| 292 | break; |
| 293 | msg_ginfo("%s", tmpven); |
| 294 | curvenlen += tmpvenlen; |
| 295 | } |
| 296 | } else |
| 297 | curvenlen = 0; |
| 298 | |
| 299 | for (i = curvenlen; i < maxvendorlen; i++) |
| 300 | msg_ginfo(" "); |
| 301 | |
| 302 | if (tmpdev != NULL){ |
| 303 | msg_ginfo("%s", tmpdev); |
| 304 | curdevlen = strlen(tmpdev); |
| 305 | while ((tmpdev = strtok(NULL, delim)) != NULL) { |
| 306 | msg_ginfo("%s", delim); |
| 307 | curdevlen++; |
| 308 | tmpdevlen = strlen(tmpdev); |
| 309 | /* big enough to be on its own line */ |
| 310 | if (tmpdevlen >= mintoklen) |
| 311 | break; |
| 312 | msg_ginfo("%s", tmpdev); |
| 313 | curdevlen += tmpdevlen; |
| 314 | } |
| 315 | } |
| 316 | } |
| 317 | msg_ginfo("\n"); |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 318 | } |
| 319 | } |
| 320 | |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 321 | #if CONFIG_INTERNAL == 1 |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 322 | static void print_supported_chipsets(void) |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 323 | { |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 324 | int i, chipsetcount = 0; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 325 | const struct penable *c = chipset_enables; |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 326 | int maxvendorlen = strlen("Vendor") + 1; |
| 327 | int maxchipsetlen = strlen("Chipset") + 1; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 328 | |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 329 | for (c = chipset_enables; c->vendor_name != NULL; c++) { |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 330 | chipsetcount++; |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 331 | maxvendorlen = max(maxvendorlen, strlen(c->vendor_name)); |
| 332 | maxchipsetlen = max(maxchipsetlen, strlen(c->device_name)); |
| 333 | } |
| 334 | maxvendorlen++; |
| 335 | maxchipsetlen++; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 336 | |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 337 | msg_ginfo("Supported chipsets (total: %d):\n\n", chipsetcount); |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 338 | |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 339 | msg_ginfo("Vendor"); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 340 | for (i = strlen("Vendor"); i < maxvendorlen; i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 341 | msg_ginfo(" "); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 342 | |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 343 | msg_ginfo("Chipset"); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 344 | for (i = strlen("Chipset"); i < maxchipsetlen; i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 345 | msg_ginfo(" "); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 346 | |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 347 | msg_ginfo("PCI IDs State\n\n"); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 348 | |
| 349 | for (c = chipset_enables; c->vendor_name != NULL; c++) { |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 350 | msg_ginfo("%s", c->vendor_name); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 351 | for (i = 0; i < maxvendorlen - strlen(c->vendor_name); i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 352 | msg_ginfo(" "); |
| 353 | msg_ginfo("%s", c->device_name); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 354 | for (i = 0; i < maxchipsetlen - strlen(c->device_name); i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 355 | msg_ginfo(" "); |
| 356 | msg_ginfo("%04x:%04x%s\n", c->vendor_id, c->device_id, |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 357 | (c->status == OK) ? "" : " (untested)"); |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 358 | } |
| 359 | } |
| 360 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 361 | static void print_supported_boards_helper(const struct board_info *boards, |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 362 | const char *devicetype) |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 363 | { |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 364 | int i, boardcount_good = 0, boardcount_bad = 0; |
Carl-Daniel Hailfinger | 97d5b12 | 2011-08-31 16:19:50 +0000 | [diff] [blame] | 365 | const struct board_match *e = board_matches; |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 366 | const struct board_info *b = boards; |
| 367 | int maxvendorlen = strlen("Vendor") + 1; |
| 368 | int maxboardlen = strlen("Board") + 1; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 369 | |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 370 | for (b = boards; b->vendor != NULL; b++) { |
| 371 | maxvendorlen = max(maxvendorlen, strlen(b->vendor)); |
| 372 | maxboardlen = max(maxboardlen, strlen(b->name)); |
| 373 | if (b->working) |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 374 | boardcount_good++; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 375 | else |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 376 | boardcount_bad++; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 377 | } |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 378 | maxvendorlen++; |
| 379 | maxboardlen++; |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 380 | |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 381 | msg_ginfo("Known %s (good: %d, bad: %d):\n\n", |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 382 | devicetype, boardcount_good, boardcount_bad); |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 383 | |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 384 | msg_ginfo("Vendor"); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 385 | for (i = strlen("Vendor"); i < maxvendorlen; i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 386 | msg_ginfo(" "); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 387 | |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 388 | msg_ginfo("Board"); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 389 | for (i = strlen("Board"); i < maxboardlen; i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 390 | msg_ginfo(" "); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 391 | |
Carl-Daniel Hailfinger | 2d927fb | 2012-01-04 00:48:27 +0000 | [diff] [blame] | 392 | msg_ginfo("Status Required value for\n"); |
| 393 | for (i = 0; i < maxvendorlen + maxboardlen + strlen("Status "); i++) |
| 394 | msg_ginfo(" "); |
| 395 | msg_ginfo("-p internal:mainboard=\n"); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 396 | |
| 397 | for (b = boards; b->vendor != NULL; b++) { |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 398 | msg_ginfo("%s", b->vendor); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 399 | for (i = 0; i < maxvendorlen - strlen(b->vendor); i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 400 | msg_ginfo(" "); |
| 401 | msg_ginfo("%s", b->name); |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 402 | for (i = 0; i < maxboardlen - strlen(b->name); i++) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 403 | msg_ginfo(" "); |
| 404 | msg_ginfo((b->working) ? "OK " : "BAD "); |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 405 | |
Carl-Daniel Hailfinger | 97d5b12 | 2011-08-31 16:19:50 +0000 | [diff] [blame] | 406 | for (e = board_matches; e->vendor_name != NULL; e++) { |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 407 | if (strcmp(e->vendor_name, b->vendor) |
| 408 | || strcmp(e->board_name, b->name)) |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 409 | continue; |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 410 | if (e->lb_vendor == NULL) |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 411 | msg_ginfo("(autodetected)"); |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 412 | else |
Carl-Daniel Hailfinger | 2d927fb | 2012-01-04 00:48:27 +0000 | [diff] [blame] | 413 | msg_ginfo("%s:%s", e->lb_vendor, |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 414 | e->lb_part); |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 415 | } |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 416 | msg_ginfo("\n"); |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 417 | } |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 418 | } |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 419 | #endif |
Uwe Hermann | d0e347d | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 420 | |
Carl-Daniel Hailfinger | f529205 | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 421 | void print_supported(void) |
| 422 | { |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 423 | print_supported_chips(); |
| 424 | |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 425 | msg_ginfo("\nSupported programmers:\n"); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 426 | list_programmers_linebreak(0, 80, 0); |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 427 | #if CONFIG_INTERNAL == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 428 | msg_ginfo("\nSupported devices for the %s programmer:\n\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 429 | programmer_table[PROGRAMMER_INTERNAL].name); |
| 430 | print_supported_chipsets(); |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 431 | msg_ginfo("\n"); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 432 | print_supported_boards_helper(boards_known, "boards"); |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 433 | msg_ginfo("\n"); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 434 | print_supported_boards_helper(laptops_known, "laptops"); |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 435 | #endif |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 436 | #if CONFIG_DUMMY == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 437 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 438 | programmer_table[PROGRAMMER_DUMMY].name); |
| 439 | /* FIXME */ |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 440 | msg_ginfo("Dummy device, does nothing and logs all accesses\n"); |
Adam Jurkowski | 516f932 | 2009-12-14 03:07:31 +0000 | [diff] [blame] | 441 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 442 | #if CONFIG_NIC3COM == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 443 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 444 | programmer_table[PROGRAMMER_NIC3COM].name); |
| 445 | print_supported_pcidevs(nics_3com); |
Carl-Daniel Hailfinger | f529205 | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 446 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 447 | #if CONFIG_NICREALTEK == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 448 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 449 | programmer_table[PROGRAMMER_NICREALTEK].name); |
| 450 | print_supported_pcidevs(nics_realtek); |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 451 | #endif |
Andrew Morgan | 74a828a | 2010-07-21 15:12:07 +0000 | [diff] [blame] | 452 | #if CONFIG_NICNATSEMI == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 453 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 454 | programmer_table[PROGRAMMER_NICNATSEMI].name); |
| 455 | print_supported_pcidevs(nics_natsemi); |
Andrew Morgan | 74a828a | 2010-07-21 15:12:07 +0000 | [diff] [blame] | 456 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 457 | #if CONFIG_GFXNVIDIA == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 458 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 459 | programmer_table[PROGRAMMER_GFXNVIDIA].name); |
| 460 | print_supported_pcidevs(gfx_nvidia); |
Carl-Daniel Hailfinger | f529205 | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 461 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 462 | #if CONFIG_DRKAISER == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 463 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 464 | programmer_table[PROGRAMMER_DRKAISER].name); |
| 465 | print_supported_pcidevs(drkaiser_pcidev); |
Carl-Daniel Hailfinger | f529205 | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 466 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 467 | #if CONFIG_SATASII == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 468 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 469 | programmer_table[PROGRAMMER_SATASII].name); |
| 470 | print_supported_pcidevs(satas_sii); |
Carl-Daniel Hailfinger | f529205 | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 471 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 472 | #if CONFIG_ATAHPT == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 473 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 474 | programmer_table[PROGRAMMER_ATAHPT].name); |
| 475 | print_supported_pcidevs(ata_hpt); |
| 476 | #endif |
| 477 | #if CONFIG_FT2232_SPI == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 478 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 479 | programmer_table[PROGRAMMER_FT2232_SPI].name); |
| 480 | print_supported_usbdevs(devs_ft2232spi); |
| 481 | #endif |
| 482 | #if CONFIG_SERPROG == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 483 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 484 | programmer_table[PROGRAMMER_SERPROG].name); |
| 485 | /* FIXME */ |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 486 | msg_ginfo("All programmer devices speaking the serprog protocol\n"); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 487 | #endif |
| 488 | #if CONFIG_BUSPIRATE_SPI == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 489 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 490 | programmer_table[PROGRAMMER_BUSPIRATE_SPI].name); |
| 491 | /* FIXME */ |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 492 | msg_ginfo("Dangerous Prototypes Bus Pirate\n"); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 493 | #endif |
| 494 | #if CONFIG_DEDIPROG == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 495 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 496 | programmer_table[PROGRAMMER_DEDIPROG].name); |
| 497 | /* FIXME */ |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 498 | msg_ginfo("Dediprog SF100\n"); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 499 | #endif |
| 500 | #if CONFIG_RAYER_SPI == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 501 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 502 | programmer_table[PROGRAMMER_RAYER_SPI].name); |
| 503 | /* FIXME */ |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 504 | msg_ginfo("RayeR parallel port programmer\n"); |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 505 | #endif |
Carl-Daniel Hailfinger | b713d2e | 2011-05-08 00:24:18 +0000 | [diff] [blame] | 506 | #if CONFIG_NICINTEL == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 507 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | b713d2e | 2011-05-08 00:24:18 +0000 | [diff] [blame] | 508 | programmer_table[PROGRAMMER_NICINTEL].name); |
| 509 | print_supported_pcidevs(nics_intel); |
| 510 | #endif |
Idwer Vollering | 004f4b7 | 2010-09-03 18:21:21 +0000 | [diff] [blame] | 511 | #if CONFIG_NICINTEL_SPI == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 512 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 513 | programmer_table[PROGRAMMER_NICINTEL_SPI].name); |
| 514 | print_supported_pcidevs(nics_intel_spi); |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 515 | #endif |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 516 | #if CONFIG_OGP_SPI == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 517 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 518 | programmer_table[PROGRAMMER_OGP_SPI].name); |
| 519 | print_supported_pcidevs(ogp_spi); |
| 520 | #endif |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 521 | #if CONFIG_SATAMV == 1 |
Stefan Tauner | 1258936 | 2011-06-25 17:36:25 +0000 | [diff] [blame] | 522 | msg_ginfo("\nSupported devices for the %s programmer:\n", |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 523 | programmer_table[PROGRAMMER_SATAMV].name); |
| 524 | print_supported_pcidevs(satas_mv); |
| 525 | #endif |
Carl-Daniel Hailfinger | f529205 | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 526 | } |
| 527 | |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 528 | #if CONFIG_INTERNAL == 1 |
Carl-Daniel Hailfinger | 4146ced | 2010-06-07 11:10:43 +0000 | [diff] [blame] | 529 | |
| 530 | #ifdef CONFIG_PRINT_WIKI |
| 531 | #define B(vendor, name, status, url, note) { vendor, name, status, url, note } |
| 532 | #else |
| 533 | #define B(vendor, name, status, url, note) { vendor, name, status } |
| 534 | #endif |
| 535 | |
Uwe Hermann | d0e347d | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 536 | /* Please keep this list alphabetically ordered by vendor/board. */ |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 537 | const struct board_info boards_known[] = { |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 538 | #if defined(__i386__) || defined(__x86_64__) |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 539 | B("A-Trend", "ATC-6220", 1, "http://www.motherboard.cz/mb/atrend/atc6220.htm", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 540 | B("abit", "AN-M2", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20AM2&pMODEL_NAME=AN-M2", NULL), |
Christoph Grenz | d13a394 | 2011-10-21 13:20:11 +0000 | [diff] [blame] | 541 | B("abit", "AV8", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20939&pMODEL_NAME=AV8", NULL), |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 542 | B("abit", "AX8", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20939&pMODEL_NAME=AX8", NULL), |
Tim ter Laak | 4b933f0 | 2010-09-13 23:00:57 +0000 | [diff] [blame] | 543 | B("abit", "BM6", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=BM6&fMTYPE=Socket%20370", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 544 | B("abit", "Fatal1ty F-I90HD", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=Fatal1ty+F-I90HD&fMTYPE=LGA775", NULL), |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 545 | B("abit", "IC7", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=IC7&fMTYPE=Socket%20478", NULL), |
| 546 | B("abit", "IP35", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=LGA775&pMODEL_NAME=IP35", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 547 | B("abit", "IP35 Pro", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=LGA775&pMODEL_NAME=IP35%20Pro", NULL), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 548 | B("abit", "IS-10", 0, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=IS-10&fMTYPE=Socket+478", "Reported by deejkuba@aol.com to flashrom@coreboot.org, no public archive. Missing board enable and/or M50FW040 unlocking. May work now."), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 549 | B("abit", "KN8 Ultra", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20939&pMODEL_NAME=KN8%20Ultra", NULL), |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 550 | 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), |
Stefan Tauner | af2db61 | 2011-12-02 21:48:17 +0000 | [diff] [blame] | 551 | B("abit", "NF-M2S", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=NF-M2S&fMTYPE=Socket%20AM2", NULL), |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 552 | B("abit", "NF7-S", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Socket%20A&pMODEL_NAME=NF7-S", NULL), |
Mattias Mattsson | e3df96e | 2010-08-15 22:43:23 +0000 | [diff] [blame] | 553 | B("abit", "VA6", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Slot%201&pMODEL_NAME=VA6", NULL), |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 554 | B("abit", "VT6X4", 1, "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?fMTYPE=Slot%201&pMODEL_NAME=VT6X4", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 555 | B("Acorp", "6A815EPD", 1, "http://web.archive.org/web/20021206163652/www.acorp.com.tw/English/default.asp", NULL), |
| 556 | B("Advantech", "PCM-5820", 1, "http://www.emacinc.com/sbc_pc_compatible/pcm_5820.htm", NULL), |
| 557 | B("agami", "Aruma", 1, "http://web.archive.org/web/20080212111524/http://www.agami.com/site/ais-6000-series", NULL), |
| 558 | B("Albatron", "PM266A Pro", 1, "http://www.albatron.com.tw/English/Product/MB/pro_detail.asp?rlink=Overview&no=56", NULL), /* FIXME */ |
Stefan Tauner | c678218 | 2012-01-19 17:50:32 +0000 | [diff] [blame^] | 559 | B("AOpen", "i945GMx-VFX", 1, NULL, "This is (also?) an OEM board from FCS (used in e.g. ESPRIMO Q5010 with designation D2544-B1)."), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 560 | B("AOpen", "vKM400Am-S", 1, "http://usa.aopen.com/products_detail.aspx?Auno=824", NULL), |
| 561 | B("Artec Group","DBE61", 1, "http://wiki.thincan.org/DBE61", NULL), |
| 562 | B("Artec Group","DBE62", 1, "http://wiki.thincan.org/DBE62", NULL), |
| 563 | B("ASI", "MB-5BLMP", 1, "http://www.hojerteknik.com/winnet.htm", "Used in the IGEL WinNET III thin client."), |
Joshua Roys | 7507de4 | 2010-08-08 16:05:23 +0000 | [diff] [blame] | 564 | B("ASRock", "775i65G", 1, "http://www.asrock.com/mb/overview.asp?Model=775i65G", NULL), |
Yul Rottmann | 6d6ab74 | 2011-03-05 16:31:57 +0000 | [diff] [blame] | 565 | B("ASRock", "890GX Extreme3", 1, "http://www.asrock.com/mb/overview.asp?Model=890GX%20Extreme3", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 566 | B("ASRock", "939A785GMH/128M", 1, "http://www.asrock.com/mb/overview.asp?Model=939A785GMH/128M", NULL), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 567 | B("ASRock", "A330GC", 1, "http://www.asrock.com/mb/overview.asp?Model=A330GC", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 568 | B("ASRock", "A770CrossFire", 1, "http://www.asrock.com/mb/overview.asp?Model=A770CrossFire", NULL), |
Uwe Hermann | 49228cb | 2010-07-29 19:26:15 +0000 | [diff] [blame] | 569 | B("ASRock", "ALiveNF6G-DVI", 1, "http://www.asrock.com/mb/overview.asp?Model=ALiveNF6G-DVI", NULL), |
Joshua Roys | ea3aed0 | 2011-11-16 22:08:11 +0000 | [diff] [blame] | 570 | B("ASRock", "ConRoeXFire-eSATA2", 1, "http://www.asrock.com/mb/overview.asp?model=conroexfire-esata2", NULL), |
Uwe Hermann | 17da61e | 2010-10-05 21:48:43 +0000 | [diff] [blame] | 571 | B("ASRock", "K7S41", 1, "http://www.asrock.com/mb/overview.asp?Model=K7S41", NULL), |
Pawel Rozanski | 1d23307 | 2011-06-19 16:52:48 +0000 | [diff] [blame] | 572 | B("ASRock", "K7S41GX", 1, "http://www.asrock.com/mb/overview.asp?Model=K7S41GX", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 573 | B("ASRock", "K7VT4A+", 0, "http://www.asrock.com/mb/overview.asp?Model=K7VT4A%2b", "No chip found, probably due to flash translation. http://www.flashrom.org/pipermail/flashrom/2009-August/000393.html"), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 574 | B("ASRock", "K8S8X", 1, "http://www.asrock.com/mb/overview.asp?Model=K8S8X", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 575 | B("ASRock", "M3A790GXH/128M", 1, "http://www.asrock.com/mb/overview.asp?Model=M3A790GXH/128M", NULL), |
| 576 | B("ASRock", "P4i65GV", 1, "http://www.asrock.com/mb/overview.asp?Model=P4i65GV", NULL), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 577 | B("ASUS", "A7N8X Deluxe", 1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7N8X_Deluxe/", NULL), |
| 578 | B("ASUS", "A7N8X-E Deluxe", 1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7N8XE_Deluxe/", NULL), |
Joshua Roys | 8ca4255 | 2011-11-19 19:31:17 +0000 | [diff] [blame] | 579 | B("ASUS", "A7N8X-VM/400", 1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7N8XVM400/", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 580 | B("ASUS", "A7V133", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/socka/kt133a/a7v133/", NULL), |
Uwe Hermann | 45bd144 | 2010-09-14 23:20:35 +0000 | [diff] [blame] | 581 | B("ASUS", "A7V333", 1, "ftp://ftp.asus.com.tw/pub/asus/mb/socka/kt333/a7v333/", NULL), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 582 | B("ASUS", "A7V400-MX", 1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V400MX/", NULL), |
| 583 | B("ASUS", "A7V600-X", 1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V600X/", NULL), |
| 584 | B("ASUS", "A7V8X", 1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8X/", NULL), |
| 585 | B("ASUS", "A7V8X-MX", 1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8XMX/", NULL), |
| 586 | B("ASUS", "A7V8X-MX SE", 1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8XMX_SE/", NULL), |
| 587 | B("ASUS", "A7V8X-X", 1, "http://www.asus.com/Motherboards/AMD_Socket_A/A7V8XX/", NULL), |
Stefan Tauner | a9cbbac | 2011-08-07 13:17:20 +0000 | [diff] [blame] | 588 | B("ASUS", "A8M2N-LA (NodusM3-GL8E)", 1, "http://h10010.www1.hp.com/ewfrf/wc/document?docname=c00757531&cc=us&dlc=en&lc=en", "This is an OEM board from HP, the HP name is NodusM3-GL8E."), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 589 | B("ASUS", "A8N-E", 1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NE/", NULL), |
Uwe Hermann | ead705f | 2010-08-15 15:26:30 +0000 | [diff] [blame] | 590 | 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."), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 591 | B("ASUS", "A8N-SLI", 1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NSLI/", NULL), |
Stefan Tauner | 2414e09 | 2011-08-06 16:16:45 +0000 | [diff] [blame] | 592 | B("ASUS", "A8N-SLI Deluxe", 0, NULL, "Untested board enable."), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 593 | B("ASUS", "A8N-SLI Premium", 1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NSLI_Premium/", NULL), |
Uwe Hermann | 19f46f2 | 2011-06-18 22:56:14 +0000 | [diff] [blame] | 594 | B("ASUS", "A8N-VM", 1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NVM/", NULL), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 595 | B("ASUS", "A8N-VM CSM", 1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8NVM_CSM/", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 596 | B("ASUS", "A8NE-FM/S", 1, "http://www.hardwareschotte.de/hardware/preise/proid_1266090/preis_ASUS+A8NE-FM", NULL), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 597 | B("ASUS", "A8V Deluxe", 1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8V_Deluxe/", NULL), |
| 598 | B("ASUS", "A8V-E Deluxe", 1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8VE_Deluxe/", NULL), |
| 599 | B("ASUS", "A8V-E SE", 1, "http://www.asus.com/Motherboards/AMD_Socket_939/A8VE_SE/", "See http://www.coreboot.org/pipermail/coreboot/2007-October/026496.html"), |
| 600 | B("ASUS", "Crosshair II Formula", 1, "http://www.asus.com/Motherboards/AMD_AM2Plus/Crosshair_II_Formula/", NULL), |
| 601 | B("ASUS", "Crosshair IV Extreme", 1, "http://www.asus.com/Motherboards/AMD_AM3/Crosshair_IV_Extreme/", NULL), |
| 602 | B("ASUS", "E35M1-I DELUXE", 1, "http://www.asus.com/Motherboards/AMD_CPU_on_Board/E35M1I_DELUXE/", NULL), |
| 603 | B("ASUS", "K8N", 1, "http://www.asus.com/Motherboards/AMD_Socket_754/K8N/", NULL), |
| 604 | B("ASUS", "K8V", 1, "http://www.asus.com/Motherboards/AMD_Socket_754/K8V/", NULL), |
| 605 | B("ASUS", "K8V SE Deluxe", 1, "http://www.asus.com/Motherboards/AMD_Socket_754/K8V_SE_Deluxe/", NULL), |
| 606 | B("ASUS", "K8V-X", 1, "http://www.asus.com/Motherboards/AMD_Socket_754/K8VX/", NULL), |
| 607 | B("ASUS", "K8V-X SE", 1, "http://www.asus.com/Motherboards/AMD_Socket_754/K8VX_SE/", NULL), |
| 608 | B("ASUS", "M2A-MX", 1, "http://www.asus.com/Motherboards/AMD_AM2/M2AMX/", NULL), |
| 609 | B("ASUS", "M2A-VM", 1, "http://www.asus.com/Motherboards/AMD_AM2/M2AVM/", "See http://www.coreboot.org/pipermail/coreboot/2007-September/025281.html"), |
| 610 | B("ASUS", "M2N32-SLI Deluxe", 1, "http://www.asus.com/Motherboards/AMD_AM2/M2N32SLI_DeluxeWireless_Edition/", NULL), |
| 611 | B("ASUS", "M2N-E", 1, "http://www.asus.com/Motherboards/AMD_AM2/M2NE/", "If the machine doesn't come up again after flashing, try resetting the NVRAM(CMOS). The MAC address of the onboard network card will change to the value stored in the new image, so backup the old address first. See http://www.flashrom.org/pipermail/flashrom/2009-November/000879.html"), |
| 612 | B("ASUS", "M2N-E SLI", 1, "http://www.asus.com/Motherboards/AMD_AM2/M2NE_SLI/", NULL), |
| 613 | B("ASUS", "M2N-SLI Deluxe", 1, "http://www.asus.com/Motherboards/AMD_AM2/M2NSLI_Deluxe/", NULL), |
| 614 | B("ASUS", "M2NBP-VM CSM", 1, "http://www.asus.com/Motherboards/AMD_AM2/M2NBPVM_CSM/", NULL), |
| 615 | B("ASUS", "M2NPV-VM", 1, "http://www.asus.com/Motherboards/AMD_AM2/M2NPVVM/", NULL), |
| 616 | B("ASUS", "M2V", 1, "http://www.asus.com/Motherboards/AMD_AM2/M2V/", NULL), |
| 617 | B("ASUS", "M2V-MX", 1, "http://www.asus.com/Motherboards/AMD_AM2/M2VMX/", NULL), |
| 618 | B("ASUS", "M3A", 1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3A/", NULL), |
| 619 | B("ASUS", "M3A76-CM", 1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3A76CM/", NULL), |
| 620 | B("ASUS", "M3A78-EM", 1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3A78EM/", NULL), |
| 621 | B("ASUS", "M3N78-VM", 1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M3N78VM/", NULL), |
| 622 | B("ASUS", "M4A78-EM", 1, "http://www.asus.com/Motherboards/AMD_AM2Plus/M4A78EM/", NULL), |
| 623 | B("ASUS", "M4A785TD-V EVO", 1, "http://www.asus.com/Motherboards/AMD_AM3/M4A785TDV_EVO/", NULL), |
| 624 | B("ASUS", "M4A785TD-M EVO", 1, "http://www.asus.com/Motherboards/AMD_AM3/M4A785TDM_EVO/", NULL), |
| 625 | B("ASUS", "M4A78LT-M LE", 1, "http://www.asus.com/Motherboards/AMD_AM3/M4A78LTM_LE/", NULL), |
| 626 | B("ASUS", "M4A79T Deluxe", 1, "http://www.asus.com/Motherboards/AMD_AM3/M4A79T_Deluxe/", NULL), |
| 627 | B("ASUS", "M4A87TD/USB3", 1, "http://www.asus.com/Motherboards/AMD_AM3/M4A87TDUSB3/", NULL), |
| 628 | B("ASUS", "M4A89GTD PRO", 1, "http://www.asus.com/Motherboards/AMD_AM3/M4A89GTD_PRO/", NULL), |
Stefan Tauner | af2db61 | 2011-12-02 21:48:17 +0000 | [diff] [blame] | 629 | B("ASUS", "M5A99X EVO", 1, "http://www.asus.com/Motherboards/AMD_AM3Plus/M5A99X_EVO/", NULL), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 630 | 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."), |
| 631 | B("ASUS", "MEW-VM", 0, "http://www.elhvb.com/mboards/OEM/HP/manual/ASUS%20MEW-VM.htm", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 632 | B("ASUS", "P2B", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b/", NULL), |
| 633 | B("ASUS", "P2B-D", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/", NULL), |
| 634 | B("ASUS", "P2B-DS", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-ds/", NULL), |
| 635 | B("ASUS", "P2B-F", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/", NULL), |
Mattias Mattsson | 85016b9 | 2010-09-01 01:21:34 +0000 | [diff] [blame] | 636 | B("ASUS", "P2B-N", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-n/", NULL), |
Uwe Hermann | 1e94fa6 | 2010-08-08 15:52:07 +0000 | [diff] [blame] | 637 | B("ASUS", "P2E-M", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440ex/p2e-m/", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 638 | B("ASUS", "P2L97-S", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440lx/p2l97-s/", NULL), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 639 | B("ASUS", "P3B-F", 0, "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p3b-f/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 640 | B("ASUS", "P4B266", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4b266/", NULL), |
| 641 | B("ASUS", "P4B266-LM", 1, "http://esupport.sony.com/US/perl/swu-list.pl?mdl=PCVRX650", NULL), |
Uwe Hermann | ead705f | 2010-08-15 15:26:30 +0000 | [diff] [blame] | 642 | B("ASUS", "P4B533-E", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4b533-e/", NULL), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 643 | B("ASUS", "P4C800-E Deluxe", 1, "http://www.asus.com/Motherboards/Intel_Socket_478/P4C800E_Deluxe/", NULL), |
| 644 | B("ASUS", "P4GV-LA (Guppy)", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00363478", NULL), |
| 645 | B("ASUS", "P4P800", 1, "http://www.asus.com/Motherboards/Intel_Socket_478/P4P800/", NULL), |
| 646 | B("ASUS", "P4P800-E Deluxe", 1, "http://www.asus.com/Motherboards/Intel_Socket_478/P4P800E_Deluxe/", NULL), |
| 647 | B("ASUS", "P4P800-VM", 1, "http://www.asus.com/Motherboards/Intel_Socket_478/P4P800VM/", NULL), |
Mattias Mattsson | fb60cec | 2010-09-13 19:39:25 +0000 | [diff] [blame] | 648 | B("ASUS", "P4SC-E", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4sc-e/", "Part of ASUS Terminator P4 533 barebone system"), |
Michael Karcher | 87c9099 | 2010-07-24 11:03:48 +0000 | [diff] [blame] | 649 | B("ASUS", "P4SD-LA", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00022505", NULL), |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 650 | B("ASUS", "P4S533-X", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock478/p4s533-x/", NULL), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 651 | B("ASUS", "P4S800-MX", 1, "http://www.asus.com/Motherboards/Intel_Socket_478/P4S800MX/", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 652 | B("ASUS", "P5A", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock7/ali/p5a/", NULL), |
| 653 | B("ASUS", "P5B", 1, "ftp://ftp.asus.com.tw/pub/ASUS/mb/socket775/P5B/", NULL), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 654 | B("ASUS", "P5B-Deluxe", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5B_Deluxe/", NULL), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 655 | 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."), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 656 | B("ASUS", "P5GC-MX/1333", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GCMX1333/", NULL), |
| 657 | B("ASUS", "P5GD1 Pro", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GD1_PRO/", NULL), |
Stefan Tauner | a4f1447 | 2011-10-22 22:01:09 +0000 | [diff] [blame] | 658 | B("ASUS", "P5GD1-VM/S", 1, NULL, "This is an OEM board from FSC. Although flashrom supports it and can probably not distinguish it from the P5GD1-VM, please note that the P5GD1-VM BIOS does not support the FSC variants completely."), |
| 659 | B("ASUS", "P5GD1(-VM)", 0, NULL, "Untested board enable."), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 660 | B("ASUS", "P5GD2 Premium", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GD2_Premium/", NULL), |
| 661 | B("ASUS", "P5GDC Deluxe", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GDC_Deluxe/", NULL), |
| 662 | B("ASUS", "P5GDC-V Deluxe", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5GDCV_Deluxe/", NULL), |
Stefan Tauner | a4f1447 | 2011-10-22 22:01:09 +0000 | [diff] [blame] | 663 | B("ASUS", "P5GD2/C variants", 0, NULL, "Untested board enable."), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 664 | B("ASUS", "P5K-VM", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5KVM/", NULL), |
| 665 | B("ASUS", "P5KC", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5KC/", NULL), |
| 666 | B("ASUS", "P5L-MX", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5LMX/", NULL), |
| 667 | B("ASUS", "P5L-VM 1394", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5LVM_1394/", NULL), |
Joshua Roys | ac8b2a1 | 2011-08-11 04:21:34 +0000 | [diff] [blame] | 668 | B("ASUS", "P5LD2", 0, NULL, "Untested board enable."), |
Michael Karcher | 14ab8d4 | 2011-08-25 14:06:50 +0000 | [diff] [blame] | 669 | B("ASUS", "P5LP-LE (Lithium-UL8E)", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00379616&tmp_task=prodinfoCategory&cc=us&dlc=en&lc=en&product=1159887", "This is an OEM board from HP."), |
| 670 | B("ASUS", "P5LP-LE (Epson OEM)", 1, NULL, "This is an OEM board from Epson (e.g. Endeavor MT7700)."), |
| 671 | B("ASUS", "P5LP-LE", 0, NULL, "This designation is used for OEM boards from HP, Epson and maybe others. The HP names vary and not all of them have been tested yet. Please report any success or failure, thanks."), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 672 | B("ASUS", "P5N-E SLI", 0, "http://www.asus.com/Motherboards/Intel_Socket_775/P5NE_SLI/", "Needs a board enable (http://patchwork.coreboot.org/patch/3298/)."), |
Joshua Roys | a2f3722 | 2011-11-14 13:00:12 +0000 | [diff] [blame] | 673 | B("ASUS", "P5N-D", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5ND/", NULL), |
| 674 | B("ASUS", "P5N-E SLI", 0, "http://www.asus.com/Motherboards/Intel_Socket_775/P5NE_SLI/", "Untested board enable."), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 675 | B("ASUS", "P5N32-E SLI", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5N32E_SLI/", NULL), |
| 676 | B("ASUS", "P5ND2-SLI Deluxe", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5ND2SLI_Deluxe/", NULL), |
| 677 | B("ASUS", "P5PE-VM", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5PEVM/", NULL), |
Uwe Hermann | 19f46f2 | 2011-06-18 22:56:14 +0000 | [diff] [blame] | 678 | B("ASUS", "P5VD1-X", 1, "http://www.asus.com/Motherboards/Intel_Socket_775/P5VD1X/", NULL), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 679 | B("ASUS", "P6T SE", 1, "http://www.asus.com/Motherboards/Intel_Socket_1366/P6T_SE/", NULL), |
| 680 | B("ASUS", "P6T Deluxe", 1, "http://www.asus.com/Motherboards/Intel_Socket_1366/P6T_Deluxe/", NULL), |
| 681 | B("ASUS", "P6T Deluxe V2", 1, "http://www.asus.com/Motherboards/Intel_Socket_1366/P6T_Deluxe_V2/", NULL), |
Uwe Hermann | 19f46f2 | 2011-06-18 22:56:14 +0000 | [diff] [blame] | 682 | B("ASUS", "P7H57D-V EVO", 1, "http://www.asus.com/Motherboards/Intel_Socket_1156/P7H57DV_EVO/", NULL), |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 683 | B("ASUS", "P7H55-M LX", 0, NULL, "flashrom works correctly, but GbE LAN is nonworking (probably due to a missing/bogus MAC address; see http://www.flashrom.org/pipermail/flashrom/2011-July/007432.html and http://ubuntuforums.org/showthread.php?t=1534389 for a possible workaround)"), |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 684 | B("ASUS", "P8B-E/4L", 0, NULL, "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."), |
| 685 | B("ASUS", "P8B WS", 0, NULL, "Probing works (Winbond W25Q32, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."), |
Stefan Tauner | af2db61 | 2011-12-02 21:48:17 +0000 | [diff] [blame] | 686 | B("ASUS", "P8H61 PRO", 0, NULL, "Probing works (Winbond W25Q32, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."), |
| 687 | B("ASUS", "P8P67 (rev. 3.1)", 0, NULL, "Probing works (Macronix MX25L3205, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 688 | B("ASUS", "Z8NA-D6C", 1, "http://www.asus.com/Server_Workstation/Server_Motherboards/Z8NAD6C/", NULL), |
| 689 | B("ASUS", "Z8PE-D12", 1, "http://www.asus.com/Server_Workstation/Server_Motherboards/Z8PED12/", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 690 | B("BCOM", "WinNET100", 1, "http://www.coreboot.org/BCOM_WINNET100", "Used in the IGEL-316 thin client."), |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 691 | B("Biostar", "N68S3+", 1, NULL, NULL), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 692 | B("Biostar", "M6TBA", 0, "ftp://ftp.biostar-usa.com/manuals/M6TBA/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."), |
Uwe Hermann | 49228cb | 2010-07-29 19:26:15 +0000 | [diff] [blame] | 693 | B("Biostar", "M7NCD Pro", 1, "http://www.biostar.com.tw/app/en/mb/content.php?S_ID=260", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 694 | B("Biostar", "P4M80-M4", 1, "http://www.biostar-usa.com/mbdetails.asp?model=p4m80-m4", NULL), |
Daniel Lenski | b9e2cb5 | 2010-07-30 17:08:29 +0000 | [diff] [blame] | 695 | B("Biostar", "TA780G M2+", 1, "http://www.biostar.com.tw/app/en/t-series/content.php?S_ID=344", NULL), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 696 | B("Boser", "HS-6637", 0, "http://www.boser.com.tw/manual/HS-62376637v3.4.pdf", "Reported by Mark Robinson <mark@zl2tod.net> to flashrom@coreboot.org, no public archive. Missing board enable and/or F29C51002T unlocking. May work now."), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 697 | B("Congatec", "conga-X852", 1, "http://www.congatec.com/single_news+M57715f6263d.html?&L=1", NULL), |
Mattias Mattsson | 2eaad63 | 2010-10-05 21:32:29 +0000 | [diff] [blame] | 698 | B("Dell", "OptiPlex GX1", 1, "http://support.dell.com/support/edocs/systems/ban_gx1/en/index.htm", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 699 | B("Dell", "PowerEdge 1850", 1, "http://support.dell.com/support/edocs/systems/pe1850/en/index.htm", NULL), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 700 | B("DFI", "855GME-MGF", 0, "http://www.dfi.com.tw/portal/CM/cmproduct/XX_cmproddetail/XX_WbProdsWindow?action=e&downloadType=&windowstate=normal&mode=view&downloadFlag=false&itemId=433", "Probably needs a board enable. http://www.coreboot.org/pipermail/coreboot/2009-May/048549.html"), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 701 | B("DFI", "Blood-Iron P35 T2RL", 1, "http://lp.lanparty.com.tw/portal/CM/cmproduct/XX_cmproddetail/XX_WbProdsWindow?itemId=516&downloadFlag=false&action=1", NULL), |
Mattias Mattsson | f492516 | 2010-09-16 22:09:18 +0000 | [diff] [blame] | 702 | B("Elitegroup", "GeForce6100SM-M ", 1, "http://www.ecs.com.tw/ECSWebSite/Product/Product_Detail.aspx?DetailID=685&MenuID=24", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 703 | B("Elitegroup", "K7S5A", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=279&CategoryID=1&DetailName=Specification&MenuID=1&LanID=0", NULL), |
| 704 | B("Elitegroup", "K7S6A", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=77&CategoryID=1&DetailName=Specification&MenuID=52&LanID=0", NULL), |
| 705 | B("Elitegroup", "K7VTA3", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=264&CategoryID=1&DetailName=Specification&MenuID=52&LanID=0", NULL), |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 706 | B("Elitegroup", "P4M800PRO-M (V1.0A)", 1, "http://www.ecs.com.tw/ECSWebSite_2007/Products/ProductsDetail.aspx?CategoryID=1&DetailID=574&DetailName=Feature&MenuID=52&LanID=0", NULL), |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 707 | B("Elitegroup", "P4VXMS (V1.0A)", 1, NULL, NULL), |
Uwe Hermann | 49228cb | 2010-07-29 19:26:15 +0000 | [diff] [blame] | 708 | B("Elitegroup", "P6IWP-Fe", 1, "http://www.ecs.com.tw/ECSWebSite_2007/Products/ProductsDetail.aspx?CategoryID=1&TypeID=3&DetailID=95&DetailName=Feature&MenuID=1&LanID=0", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 709 | B("Elitegroup", "P6VAP-A+", 1, "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=117&CategoryID=1&DetailName=Specification&MenuID=1&LanID=0", NULL), |
Daniel Lenski | b9e2cb5 | 2010-07-30 17:08:29 +0000 | [diff] [blame] | 710 | B("Elitegroup", "RS485M-M", 1, "http://www.ecs.com.tw/ECSWebSite_2007/Products/ProductsDetail.aspx?CategoryID=1&DetailID=654&DetailName=Feature&MenuID=1&LanID=0", NULL), |
Uwe Hermann | 49228cb | 2010-07-29 19:26:15 +0000 | [diff] [blame] | 711 | B("Emerson", "ATCA-7360", 1, "http://www.emerson.com/sites/Network_Power/en-US/Products/Product_Detail/Product1/Pages/EmbCompATCA-7360.aspx", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 712 | B("EPoX", "EP-8K5A2", 1, "http://www.epox.com/product.asp?ID=EP-8K5A2", NULL), |
Stefan Tauner | af4b158 | 2011-08-06 16:16:33 +0000 | [diff] [blame] | 713 | B("EPoX", "EP-8NPA7I", 1, "http://www.epox.com/product.asp?ID=EP-8NPA7I", NULL), |
| 714 | B("EPoX", "EP-9NPA7I", 1, "http://www.epox.com/product.asp?ID=EP-9NPA7I", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 715 | B("EPoX", "EP-8RDA3+", 1, "http://www.epox.com/product.asp?ID=EP-8RDA3plus", NULL), |
| 716 | B("EPoX", "EP-BX3", 1, "http://www.epox.com/product.asp?ID=EP-BX3", NULL), |
Stefan Tauner | 93f7023 | 2011-07-26 14:33:46 +0000 | [diff] [blame] | 717 | B("EVGA", "132-CK-NF78", 1, "http://www.evga.com/articles/385.asp", NULL), |
Stefan Tauner | ef10175 | 2011-05-18 01:32:09 +0000 | [diff] [blame] | 718 | B("EVGA", "270-WS-W555-A2 (Classified SR-2)", 1, "http://www.evga.com/products/moreInfo.asp?pn=270-WS-W555-A2", NULL), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 719 | B("FIC", "VA-502", 0, "ftp://ftp.fic.com.tw/motherboard/manual/socket7/va-502/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. Seems the PCI subsystem IDs are identical with the Tekram P6Pro-A5. May work now."), |
Michael Karcher | 2842db3 | 2011-04-14 23:14:27 +0000 | [diff] [blame] | 720 | B("Foxconn", "6150K8MD-8EKRSH", 1, "http://www.foxconnchannel.com/product/motherboards/detail_overview.aspx?id=en-us0000157", NULL), |
Uwe Hermann | 51afebb | 2010-08-01 00:13:49 +0000 | [diff] [blame] | 721 | B("Foxconn", "A6VMX", 1, "http://www.foxconnchannel.com/product/motherboards/detail_overview.aspx?id=en-us0000346", NULL), |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 722 | B("Foxconn", "P4M800P7MA-RS2", 1, "http://www.foxconnchannel.com/Product/Motherboards/detail_overview.aspx?id=en-us0000138", NULL), |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 723 | B("Freetech", "P6F91i", 1, "http://web.archive.org/web/20010417035034/http://www.freetech.com/prod/P6F91i.html", NULL), |
Uwe Hermann | 49228cb | 2010-07-29 19:26:15 +0000 | [diff] [blame] | 724 | B("Fujitsu-Siemens", "ESPRIMO P5915", 1, "http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/professionalpc/ESPRIMO/P/EsprimoP5915-6.htm", "Mainboard model is D2312-A2."), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 725 | B("GIGABYTE", "GA-2761GXDK", 1, "http://www.computerbase.de/news/hardware/mainboards/amd-systeme/2007/mai/gigabyte_dtx-mainboard/", NULL), |
Peter Lemenkov | 8b83f55 | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 726 | B("GIGABYTE", "GA-6BXC", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1445", NULL), |
| 727 | B("GIGABYTE", "GA-6BXDU", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1429", NULL), |
Michael Karcher | 39dcdec | 2010-10-05 17:29:35 +0000 | [diff] [blame] | 728 | B("GIGABYTE", "GA-6IEM", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1379", NULL), |
Uwe Hermann | 19f46f2 | 2011-06-18 22:56:14 +0000 | [diff] [blame] | 729 | B("GIGABYTE", "GA-6VXE7+", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2410", NULL), |
Peter Lemenkov | 8b83f55 | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 730 | B("GIGABYTE", "GA-6ZMA", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1541", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 731 | B("GIGABYTE", "GA-MA785GMT-UD2H (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3156", NULL), |
| 732 | B("GIGABYTE", "GA-770TA-UD3", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3272", NULL), |
| 733 | B("GIGABYTE", "GA-7DXR", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1302", NULL), |
Peter Lemenkov | 8b83f55 | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 734 | B("GIGABYTE", "GA-7VT600", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1666", NULL), |
| 735 | 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."), |
Uwe Hermann | 4335ec8 | 2011-09-07 20:20:25 +0000 | [diff] [blame] | 736 | B("GIGABYTE", "GA-8I945GZME-RH", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2304", NULL), |
Joshua Roys | 9d9a104 | 2011-06-13 16:59:01 +0000 | [diff] [blame] | 737 | B("GIGABYTE", "GA-8IP775", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1830", NULL), |
Michael Karcher | c7a1ffb | 2010-07-24 22:27:29 +0000 | [diff] [blame] | 738 | B("GIGABYTE", "GA-8IRML", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1343", NULL), |
Michael Karcher | c861324 | 2010-08-13 12:49:01 +0000 | [diff] [blame] | 739 | B("GIGABYTE", "GA-8PE667 Ultra 2", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1607", NULL), |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 740 | B("GIGABYTE", "GA-8SIMLH", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1399", NULL), |
| 741 | B("GIGABYTE", "GA-945PL-S3P (rev. 6.6)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2541", NULL), |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 742 | B("GIGABYTE", "GA-965GM-S2 (rev. 2.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2617", NULL), |
Peter Lemenkov | 8b83f55 | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 743 | B("GIGABYTE", "GA-965P-DS4", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2288", NULL), |
| 744 | B("GIGABYTE", "GA-EP35-DS3L", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2778", NULL), |
| 745 | B("GIGABYTE", "GA-EX58-UD4P", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2986", NULL), |
| 746 | B("GIGABYTE", "GA-K8N-SLI", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1928", NULL), |
Michael Karcher | 242efd4 | 2011-03-06 12:09:05 +0000 | [diff] [blame] | 747 | B("GIGABYTE", "GA-K8N51GMF", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1950", NULL), |
Joshua Roys | 2ee137f | 2010-09-07 17:52:09 +0000 | [diff] [blame] | 748 | B("GIGABYTE", "GA-K8N51GMF-9", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=1939", NULL), |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 749 | B("GIGABYTE", "GA-K8NS Pro-939", 0, "http://www.gigabyte.com/products/product-page.aspx?pid=1875", "Untested board enable."), |
Peter Lemenkov | 8b83f55 | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 750 | B("GIGABYTE", "GA-M57SLI-S4", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2287", NULL), |
| 751 | B("GIGABYTE", "GA-M61P-S3", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2434", NULL), |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 752 | B("GIGABYTE", "GA-M720-US3", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3006", NULL), |
Peter Lemenkov | 8b83f55 | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 753 | B("GIGABYTE", "GA-MA69VM-S2", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2500", NULL), |
Peter Lemenkov | 12a58b2 | 2010-07-29 21:15:45 +0000 | [diff] [blame] | 754 | B("GIGABYTE", "GA-MA74GM-S2H (rev. 3.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3152", NULL), |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 755 | B("GIGABYTE", "GA-MA770-UD3 (rev. 2.1)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3302", NULL), |
Peter Lemenkov | 8b83f55 | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 756 | B("GIGABYTE", "GA-MA770T-UD3P", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3096", NULL), |
Bernhard Geier | 94b3609 | 2011-03-06 22:16:30 +0000 | [diff] [blame] | 757 | B("GIGABYTE", "GA-MA780G-UD3H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3004", NULL), |
Yul Rottmann | 6d6ab74 | 2011-03-05 16:31:57 +0000 | [diff] [blame] | 758 | B("GIGABYTE", "GA-MA78G-DS3H (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2800", NULL), |
Peter Lemenkov | 8b83f55 | 2010-06-04 16:39:35 +0000 | [diff] [blame] | 759 | 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? */ |
| 760 | B("GIGABYTE", "GA-MA78GPM-DS2H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2859", NULL), |
| 761 | B("GIGABYTE", "GA-MA790FX-DQ6", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2690", NULL), |
| 762 | B("GIGABYTE", "GA-MA790GP-DS4H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2887", NULL), |
Stefan Tauner | 67fbd77 | 2011-05-18 01:31:39 +0000 | [diff] [blame] | 763 | B("GIGABYTE", "GA-MA790XT-UD4P (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3010", NULL), |
Stefan Tauner | d06d941 | 2011-06-12 19:47:55 +0000 | [diff] [blame] | 764 | B("GIGABYTE", "GA-P55A-UD4 (rev. 1.0)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3436", NULL), |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 765 | B("GIGABYTE", "GA-P67A-UD3P", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3649", NULL), |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 766 | B("GIGABYTE", "GA-X58A-UD7 (rev. 2.0)", 1, NULL, NULL), |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 767 | B("GIGABYTE", "GA-Z68MX-UD2H-B (rev. 1.3)", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=3854", NULL), |
Michael Karcher | cba52de | 2011-03-06 12:07:19 +0000 | [diff] [blame] | 768 | B("HP", "e-Vectra P2706T", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?lang=en&cc=us&prodSeriesId=77515&prodTypeId=12454", NULL), |
Uwe Hermann | ead705f | 2010-08-15 15:26:30 +0000 | [diff] [blame] | 769 | 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), |
| 770 | B("HP", "ProLiant DL165 G6", 1, "http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/15351-15351-3328412-241644-3328421-3955644.html", NULL), |
Michael Karcher | e57957c | 2010-07-24 11:14:37 +0000 | [diff] [blame] | 771 | B("HP", "Puffer2-UL8E", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00300023", NULL), |
Uwe Hermann | ead705f | 2010-08-15 15:26:30 +0000 | [diff] [blame] | 772 | B("HP", "Vectra VL400", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060658&lang=en&cc=us", NULL), |
| 773 | B("HP", "Vectra VL420 SFF", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060661&lang=en&cc=us", NULL), |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 774 | B("HP", "xw4400 (0A68h)", 0, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00775230", "ICH7 with SPI lock down, BIOS lock, flash block detection (SST25VF080B); see http://paste.flashrom.org/view.php?id=686"), |
| 775 | B("HP", "xw9400", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?lang=en&cc=us&prodSeriesId=3211286&prodTypeId=12454", "Boot block is write protected unless the solder points next to F2 are shorted."), |
Uwe Hermann | ead705f | 2010-08-15 15:26:30 +0000 | [diff] [blame] | 776 | B("IBASE", "MB899", 1, "http://www.ibase-i.com.tw/2009/mb899.html", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 777 | B("IBM", "x3455", 1, "http://www-03.ibm.com/systems/x/hardware/rack/x3455/index.html", NULL), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 778 | B("IEI", "PICOe-9452", 1, "http://www.ieiworld.com/product_groups/industrial/content.aspx?keyword=WSB&gid=00001000010000000001&cid=08125380291060861658&id=08142308605814597144", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 779 | B("Intel", "D201GLY", 1, "http://www.intel.com/support/motherboards/desktop/d201gly/index.htm", NULL), |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 780 | B("Intel", "D865GLC", 0, NULL, "ICH5 with BIOS lock enable, see http://paste.flashrom.org/view.php?id=775"), |
Stefan Tauner | 82f54e5 | 2011-05-18 01:31:17 +0000 | [diff] [blame] | 781 | B("Intel", "DG45ID", 0, "http://www.intel.com/products/desktop/motherboards/dg45id/dg45id-overview.htm", "Probing works (Winbond W25x32, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME is locked."), |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 782 | B("Intel", "DH67CF", 0, NULL, "H67 with BIOS lock enable and locked ME region, see http://www.flashrom.org/pipermail/flashrom/2011-September/007789.html"), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 783 | B("Intel", "EP80759", 1, NULL, NULL), |
Uwe Hermann | a347324 | 2010-09-14 22:59:39 +0000 | [diff] [blame] | 784 | B("Intel", "Foxhollow", 1, NULL, "Intel reference board."), |
| 785 | B("Intel", "Greencity", 1, NULL, "Intel reference board."), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 786 | B("Intel", "SE440BX-2", 0, "http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&ProductFamily=Desktop+Boards&ProductLine=Discontinued+Motherboards&ProductProduct=Intel%C2%AE+SE440BX-2+Motherboard", "Probably won't work, see http://www.coreboot.org/pipermail/flashrom/2010-July/003952.html"), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 787 | B("IWILL", "DK8-HTX", 1, "http://web.archive.org/web/20060507170150/http://www.iwill.net/product_2.asp?p_id=98", NULL), |
Stefan Tauner | 93f7023 | 2011-07-26 14:33:46 +0000 | [diff] [blame] | 788 | B("Jetway", "J-7BXAN", 1, "http://www.jetway.com.tw/evisn/download/d7BXAS.htm", NULL), |
| 789 | B("Jetway", "J7F4K1G5D-PB", 1, "http://www.jetway.com.tw/jw/ipcboard_view.asp?productid=282&proname=J7F4K1G5D", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 790 | B("Kontron", "986LCD-M", 1, "http://de.kontron.com/products/boards+and+mezzanines/embedded+motherboards/miniitx+motherboards/986lcdmmitx.html", NULL), |
Uwe Hermann | 19f46f2 | 2011-06-18 22:56:14 +0000 | [diff] [blame] | 791 | B("Lanner", "EM-8510C", 1, NULL, NULL), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 792 | B("Lex", "CV700A", 1, "http://www.lex.com.tw/product/CV700A-spec.htm", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 793 | B("Mitac", "6513WU", 1, "http://web.archive.org/web/20050313054828/http://www.mitac.com/micweb/products/tyan/6513wu/6513wu.htm", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 794 | B("MSI", "MS-6153", 1, "http://www.msi.com/product/mb/MS-6153.html", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 795 | B("MSI", "MS-6156", 1, "http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/boards/Motherboards/MicroStar/Ms6156/MS6156.htm", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 796 | B("MSI", "MS-6163 (MS-6163 Pro)",1, "http://www.msi.com/product/mb/MS-6163-Pro.html", NULL), |
| 797 | B("MSI", "MS-6178", 0, "http://www.msi.com/product/mb/MS-6178.html", "Immediately powers off if you try to hot-plug the chip. However, this does '''not''' happen if you use coreboot. Owned by Uwe Hermann <uwe@hermann-uwe.de>."), |
| 798 | B("MSI", "MS-6330 (K7T Turbo)", 1, "http://www.msi.com/product/mb/K7T-Turbo.html", NULL), |
| 799 | B("MSI", "MS-6391 (845 Pro4)", 1, "http://www.msi.com/product/mb/845-Pro4.html", NULL), |
| 800 | B("MSI", "MS-6561 (745 Ultra)", 1, "http://www.msi.com/product/mb/745-Ultra.html", NULL), |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 801 | B("MSI", "MS-6566 (845 Ultra-C)",1, "http://www.msi.com/product/mb/845-Ultra-C.html", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 802 | B("MSI", "MS-6570 (K7N2)", 1, "http://www.msi.com/product/mb/K7N2.html", NULL), |
Uwe Hermann | ead705f | 2010-08-15 15:26:30 +0000 | [diff] [blame] | 803 | B("MSI", "MS-6577 (Xenon)", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?product=90390&lc=en&cc=us&dlc=en&docname=bph07843", "This is an OEM board from HP, the HP name is Xenon."), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 804 | B("MSI", "MS-6590 (KT4 Ultra)", 1, "http://www.msi.com/product/mb/KT4-Ultra.html", NULL), |
| 805 | B("MSI", "MS-6702E (K8T Neo2-F)",1, "http://www.msi.com/product/mb/K8T-Neo2-F--FIR.html", NULL), |
| 806 | B("MSI", "MS-6712 (KT4V)", 1, "http://www.msi.com/product/mb/KT4V---KT4V-L--v1-0-.html", NULL), |
| 807 | B("MSI", "MS-6787 (P4MAM-V/P4MAM-L)", 1, "http://www.msi.com/service/search/?kw=6787&type=product", NULL), |
| 808 | B("MSI", "MS-7005 (651M-L)", 1, "http://www.msi.com/product/mb/651M-L.html", NULL), |
| 809 | B("MSI", "MS-7025 (K8N Neo2 Platinum)", 1, "http://www.msi.com/product/mb/K8N-Neo2-Platinum.html", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 810 | B("MSI", "MS-7046", 1, "http://www.heimir.de/ms7046/", NULL), |
Stefan Tauner | 93f7023 | 2011-07-26 14:33:46 +0000 | [diff] [blame] | 811 | B("MSI", "MS-7061 (KM4M-V/KM4AM-V)", 1, "http://www.msi.com/service/search/?kw=7061&type=product", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 812 | B("MSI", "MS-7065", 1, "http://browse.geekbench.ca/geekbench2/view/53114", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 813 | B("MSI", "MS-7135 (K8N Neo3)", 1, "http://www.msi.com/product/mb/K8N-Neo3.html", NULL), |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 814 | B("MSI", "MS-7142 (K8MM-V)", 1, "http://www.msi.com/product/mb/K8MM-V.html", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 815 | B("MSI", "MS-7168 (Orion)", 1, "http://support.packardbell.co.uk/uk/item/index.php?i=spec_orion&pi=platform_honeymoon_istart", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 816 | B("MSI", "MS-7207 (K8NGM2-L)", 1, "http://www.msi.com/product/mb/K8NGM2-FID--IL--L.html", NULL), |
| 817 | B("MSI", "MS-7211 (PM8M3-V)", 1, "http://www.msi.com/product/mb/PM8M3-V.html", NULL), |
| 818 | B("MSI", "MS-7236 (945PL Neo3)", 1, "http://www.msi.com/product/mb/945PL-Neo3.html", NULL), |
| 819 | B("MSI", "MS-7253 (K9VGM-V)", 1, "http://www.msi.com/product/mb/K9VGM-V.html", NULL), |
| 820 | B("MSI", "MS-7255 (P4M890M)", 1, "http://www.msi.com/product/mb/P4M890M-L-IL.html", NULL), |
| 821 | B("MSI", "MS-7260 (K9N Neo PCB 1.0)", 0, "http://www.msi.com/product/mb/K9N-Neo--PCB-1-0-.html", "Interestingly flashrom does not work when the vendor BIOS is booted, but it ''does'' work flawlessly when the machine is booted with coreboot. Owned by Uwe Hermann <uwe@hermann-uwe.de>."), |
| 822 | B("MSI", "MS-7312 (K9MM-V)", 1, "http://www.msi.com/product/mb/K9MM-V.html", NULL), |
| 823 | B("MSI", "MS-7345 (P35 Neo2-FIR)", 1, "http://www.msi.com/product/mb/P35-Neo2-FR---FIR.html", NULL), |
| 824 | B("MSI", "MS-7368 (K9AG Neo2-Digital)", 1, "http://www.msi.com/product/mb/K9AG-Neo2-Digital.html", NULL), |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 825 | B("MSI", "MS-7369 (K9N Neo V2)", 1, "http://www.msi.com/product/mb/K9N-Neo-V2.html", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 826 | B("MSI", "MS-7376 (K9A2 Platinum V1)", 1, "http://www.msi.com/product/mb/K9A2-Platinum.html", NULL), |
Stefan Tauner | 8179be5 | 2011-06-04 13:13:34 +0000 | [diff] [blame] | 827 | B("MSI", "MS-7529 (G31M3-L(S) V2)", 1, "http://www.msi.com/product/mb/G31M3-L-V2---G31M3-LS-V2.html", NULL), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 828 | B("MSI", "MS-7529 (G31TM-P21)", 1, "http://www.msi.com/product/mb/G31TM-P21.html", NULL), |
| 829 | B("MSI", "MS-7596 (785GM-E51)", 1, "http://www.msi.com/product/mb/785GM-E51.html", NULL), |
Stefan Tauner | af2db61 | 2011-12-02 21:48:17 +0000 | [diff] [blame] | 830 | B("MSI", "MS-7599 (870-C45)", 1, "http://www.msi.com/product/mb/870-C45.html", NULL), |
| 831 | B("MSI", "MS-7613 (Iona-GL8E)", 0, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02014355&lc=en&cc=dk&dlc=en&product=4348478", "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."), |
| 832 | B("MSI", "MS-7635 (H55M-ED55)", 0, "http://www.msi.com/product/mb/H55M-ED55.html", "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."), |
Benjamin Bellec | ff56267 | 2011-07-12 22:01:44 +0000 | [diff] [blame] | 833 | B("MSI", "MS-7640 (890FXA-GD70)",1, "http://www.msi.com/product/mb/890FXA-GD70.html", NULL), |
| 834 | B("MSI", "MS-7642 (890GXM-G65)", 1, "http://www.msi.com/product/mb/890GXM-G65.html", NULL), |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 835 | B("MSI", "MS-7696 (A75MA-G55)", 1, "http://www.msi.com/product/mb/A75MA-G55.html", NULL), |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 836 | B("MSI", "MS-7698 (E350IA-E45)", 1, "http://www.msi.com/product/mb/E350IA-E45.html", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 837 | B("NEC", "PowerMate 2000", 1, "http://support.necam.com/mobilesolutions/hardware/Desktops/pm2000/celeron/", NULL), |
| 838 | B("Nokia", "IP530", 1, NULL, NULL), |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 839 | B("PCCHIPS ", "M598LMR (V9.0)", 1, NULL, NULL), |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 840 | B("PCCHIPS ", "M863G (V5.1A)", 1, "http://www.pcchips.com.tw/PCCWebSite/Products/ProductsDetail.aspx?CategoryID=1&DetailID=343&DetailName=Feature&MenuID=1&LanID=0", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 841 | B("PC Engines", "Alix.1c", 1, "http://pcengines.ch/alix1c.htm", NULL), |
| 842 | B("PC Engines", "Alix.2c2", 1, "http://pcengines.ch/alix2c2.htm", NULL), |
| 843 | B("PC Engines", "Alix.2c3", 1, "http://pcengines.ch/alix2c3.htm", NULL), |
Stefan Tauner | af2db61 | 2011-12-02 21:48:17 +0000 | [diff] [blame] | 844 | B("PC Engines", "Alix.2d3", 1, "http://pcengines.ch/alix2d3.htm", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 845 | B("PC Engines", "Alix.3c3", 1, "http://pcengines.ch/alix3c3.htm", NULL), |
| 846 | B("PC Engines", "Alix.3d3", 1, "http://pcengines.ch/alix3d3.htm", NULL), |
| 847 | B("PC Engines", "WRAP.2E", 1, "http://pcengines.ch/wrap2e1.htm", NULL), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 848 | B("Portwell", "PEB-4700VLA", 1, "http://www.portwell.com/products/detail.asp?CUSTCHAR1=PEB-4700VLA", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 849 | B("RCA", "RM4100", 1, "http://www.settoplinux.org/index.php?title=RCA_RM4100", NULL), |
Uwe Hermann | 49228cb | 2010-07-29 19:26:15 +0000 | [diff] [blame] | 850 | B("Samsung", "Polaris 32", 1, NULL, NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 851 | B("Shuttle", "AK31", 1, "http://www.motherboard.cz/mb/shuttle/AK31.htm", NULL), |
| 852 | B("Shuttle", "AK38N", 1, "http://eu.shuttle.com/en/desktopdefault.aspx/tabid-36/558_read-9889/", NULL), |
Uwe Hermann | 51afebb | 2010-08-01 00:13:49 +0000 | [diff] [blame] | 853 | B("Shuttle", "AV11V30", 1, NULL, NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 854 | B("Shuttle", "FD37", 1, "http://www.shuttle.eu/products/discontinued/barebones/sd37p2/", NULL), |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 855 | B("Shuttle", "FH67", 1, "http://www.shuttle.eu/products/mini-pc/sh67h3/specification/", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 856 | B("Shuttle", "FN25", 1, "http://www.shuttle.eu/products/discontinued/barebones/sn25p/?0=", NULL), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 857 | B("Shuttle", "X50/X50(B)", 1, "http://au.shuttle.com/product_detail_spec.jsp?PI=1241", NULL), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 858 | B("Soyo", "SY-5VD", 0, "http://www.soyo.com/content/Downloads/163/&c=80&p=464&l=English", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. May work now."), |
Uwe Hermann | 51afebb | 2010-08-01 00:13:49 +0000 | [diff] [blame] | 859 | B("Soyo", "SY-6BA+ III", 1, "http://www.motherboard.cz/mb/soyo/SY-6BA+III.htm", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 860 | B("Soyo", "SY-7VCA", 1, "http://www.tomshardware.com/reviews/12-socket-370-motherboards,196-15.html", NULL), |
| 861 | B("Sun", "Blade x6250", 1, "http://www.sun.com/servers/blades/x6250/", NULL), |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 862 | B("Sun", "Fire x4150", 0, "http://www.sun.com/servers/x64/x4150/", "No public report found. May work now."), |
| 863 | B("Sun", "Fire x4200", 0, "http://www.sun.com/servers/entry/x4200/", "No public report found. May work now."), |
| 864 | B("Sun", "Fire x4540", 0, "http://www.sun.com/servers/x64/x4540/", "No public report found. May work now."), |
| 865 | B("Sun", "Fire x4600", 0, "http://www.sun.com/servers/x64/x4600/", "No public report found. May work now."), |
Joshua Roys | b992d34 | 2011-11-02 14:31:18 +0000 | [diff] [blame] | 866 | B("Sun", "Ultra 40 M2", 1, "http://download.oracle.com/docs/cd/E19127-01/ultra40.ws/820-0123-13/intro.html", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 867 | B("Supermicro", "H8QC8", 1, "http://www.supermicro.com/Aplus/motherboard/Opteron/nforce/H8QC8.cfm", NULL), |
Stefan Tauner | d06d941 | 2011-06-12 19:47:55 +0000 | [diff] [blame] | 868 | B("Supermicro", "X5DP8-G2", 1, "http://www.supermicro.com/products/motherboard/Xeon/E7501/X5DP8-G2.cfm", NULL), |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 869 | B("Supermicro", "X7DBT-INF", 1, "http://www.supermicro.com/products/motherboard/Xeon1333/5000P/X7DBT-INF.cfm", NULL), |
Uwe Hermann | 19f46f2 | 2011-06-18 22:56:14 +0000 | [diff] [blame] | 870 | B("Supermicro", "X7SPA-HF", 1, "http://www.supermicro.com/products/motherboard/ATOM/ICH9/X7SPA.cfm?typ=H&IPMI=Y", NULL), |
Stefan Tauner | d06d941 | 2011-06-12 19:47:55 +0000 | [diff] [blame] | 871 | B("Supermicro", "X8DT3", 1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DT3.cfm", NULL), |
Shailendra Sodhi | 6dbab4d | 2011-05-18 01:32:25 +0000 | [diff] [blame] | 872 | B("Supermicro", "X8DTH-6F", 1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTH-6F.cfm", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 873 | B("Supermicro", "X8DTT-F", 1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTT-F.cfm", NULL), |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 874 | B("Supermicro", "X8DTU-6TF+", 0, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTU_.cfm?TYP=SAS&LAN=10", "Probing works (Atmel AT25DF321A, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."), |
Antony Rheneus | 0fbba98 | 2011-05-26 14:28:51 +0000 | [diff] [blame] | 875 | B("Supermicro", "X8DTU-F", 1, "http://www.supermicro.com/products/motherboard/QPI/5500/X8DTU-F.cfm", NULL), |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 876 | B("Supermicro", "X8SIE(-F)", 0, "http://www.supermicro.com/products/motherboard/Xeon3000/3400/X8SIE.cfm?IPMI=N&TYP=LN2", "Requires unlocking the ME although the registers are set up correctly by the descriptor/BIOS already (tested with swseq and hwseq)."), |
Antony Rheneus | 0fbba98 | 2011-05-26 14:28:51 +0000 | [diff] [blame] | 877 | B("Supermicro", "X8STi", 1, "http://www.supermicro.com/products/motherboard/Xeon3000/X58/X8STi.cfm", NULL), |
Stefan Tauner | af2db61 | 2011-12-02 21:48:17 +0000 | [diff] [blame] | 878 | B("Supermicro", "X9SCL", 0, "http://www.supermicro.com/products/motherboard/Xeon/C202_C204/X9SCL.cfm", "Probing works (Winbond W25Q64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 879 | B("T-Online", "S-100", 1, "http://wiki.freifunk-hannover.de/T-Online_S_100", NULL), |
| 880 | B("Tekram", "P6Pro-A5", 1, "http://www.motherboard.cz/mb/tekram/P6Pro-A5.htm", NULL), |
| 881 | B("Termtek", "TK-3370 (Rev:2.5B)", 1, NULL, NULL), |
| 882 | B("Thomson", "IP1000", 1, "http://www.settoplinux.org/index.php?title=Thomson_IP1000", NULL), |
| 883 | B("TriGem", "Lomita", 1, "http://www.e4allupgraders.info/dir1/motherboards/socket370/lomita.shtml", NULL), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 884 | B("Tyan", "S5375-1U (Tempest i5100X)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=610", NULL), |
| 885 | B("Tyan", "S1846 (Tsunami ATX)", 1, "http://www.tyan.com/archive/products/html/tsunamiatx.html", NULL), |
| 886 | B("Tyan", "S2466 (Tiger MPX)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=461", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 887 | B("Tyan", "S2498 (Tomcat K7M)", 1, "http://www.tyan.com/archive/products/html/tomcatk7m.html", NULL), |
Uwe Hermann | 19f46f2 | 2011-06-18 22:56:14 +0000 | [diff] [blame] | 888 | B("Tyan", "S2723 (Tiger i7501)", 1, "http://www.tyan.com/archive/products/html/tigeri7501.html", NULL), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 889 | B("Tyan", "S2881 (Thunder K8SR)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=115", NULL), |
| 890 | B("Tyan", "S2882 (Thunder K8S Pro)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=121", NULL), |
| 891 | B("Tyan", "S2882-D (Thunder K8SD Pro)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=127", NULL), |
| 892 | B("Tyan", "S2891 (Thunder K8SRE)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=144", NULL), |
| 893 | B("Tyan", "S2892 (Thunder K8SE)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=145", NULL), |
| 894 | B("Tyan", "S2895 (Thunder K8WE)", 1, "http://www.tyan.com/archive/products/html/thunderk8we.html", NULL), |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 895 | B("Tyan", "S2912 (Thunder n3600R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=157", NULL), |
Uwe Hermann | 49228cb | 2010-07-29 19:26:15 +0000 | [diff] [blame] | 896 | B("Tyan", "S2915 (Thunder n6650W)", 1, "http://tyan.com/product_board_detail.aspx?pid=163", NULL), |
Uwe Hermann | a347324 | 2010-09-14 22:59:39 +0000 | [diff] [blame] | 897 | B("Tyan", "S2915-E (Thunder n6650W)", 1, "http://tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=541&SKU=600000041", NULL), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 898 | B("Tyan", "S2933 (Thunder n3600S)", 1, "http://tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=478&SKU=600000063", NULL), |
| 899 | B("Tyan", "S3095 (Tomcat i945GM)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=181", NULL), |
| 900 | B("Tyan", "S3992 (Thunder h2000M)", 1, "http://tyan.com/product_board_detail.aspx?pid=235", NULL), |
| 901 | B("Tyan", "S5180 (Toledo i965R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=456", NULL), |
| 902 | B("Tyan", "S5191 (Toledo i3000R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=343", NULL), |
| 903 | B("Tyan", "S5197 (Toledo i3010W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=349", NULL), |
| 904 | B("Tyan", "S5211 (Toledo i3210W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=591", NULL), |
| 905 | B("Tyan", "S5211-1U (Toledo i3200R)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=593", NULL), |
| 906 | B("Tyan", "S5220 (Toledo q35T)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=597", NULL), |
| 907 | B("Tyan", "S5375 (Tempest i5100X)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=566", NULL), |
| 908 | B("Tyan", "S5376 (Tempest i5100W)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=605", "Both S5376G2NR and S5376WAG2NR should work."), |
| 909 | B("Tyan", "S5377 (Tempest i5100T)", 1, "http://www.tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=642&SKU=600000017", NULL), |
Uwe Hermann | 49228cb | 2010-07-29 19:26:15 +0000 | [diff] [blame] | 910 | B("Tyan", "S5382 (Tempest i5000PW)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=439", NULL), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 911 | B("Tyan", "S5397 (Tempest i5400PW)", 1, "http://www.tyan.com/product_board_detail.aspx?pid=560", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 912 | 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 */ |
| 913 | B("VIA", "EPIA SP", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=261", NULL), |
| 914 | B("VIA", "EPIA-CN", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=400", NULL), |
Michael Karcher | bcd2556 | 2010-06-12 17:27:44 +0000 | [diff] [blame] | 915 | B("VIA", "EPIA EK", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?motherboard_id=420", NULL), |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 916 | B("VIA", "EPIA-EX15000G", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=450", NULL), |
| 917 | B("VIA", "EPIA-LN", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=473", NULL), |
| 918 | B("VIA", "EPIA-M700", 1, "http://via.com.tw/servlet/downloadSvl?motherboard_id=670&download_file_id=3700", NULL), |
| 919 | 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 */ |
| 920 | B("VIA", "EPIA-NX15000G", 1, "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=470", NULL), |
| 921 | B("VIA", "NAB74X0", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=590", NULL), |
| 922 | B("VIA", "pc2500e", 1, "http://www.via.com.tw/en/initiatives/empowered/pc2500_mainboard/index.jsp", NULL), |
| 923 | B("VIA", "PC3500G", 1, "http://www.via.com.tw/en/initiatives/empowered/pc3500_mainboard/index.jsp", NULL), |
| 924 | B("VIA", "VB700X", 1, "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=490", NULL), |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 925 | B("ZOTAC", "Fusion-ITX WiFi (FUSION350-A-E)", 1, NULL, NULL), |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 926 | B("ZOTAC", "GeForce 8200", 1, "http://pden.zotac.com/index.php?page=shop.product_details&product_id=129&category_id=92", NULL), |
Stefan Tauner | af2db61 | 2011-12-02 21:48:17 +0000 | [diff] [blame] | 927 | B("ZOTAC", "H67-ITX WiFi (H67ITX-C-E)", 0, NULL, "Probing works (Winbond W25Q32, 4096 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME region is locked."), |
Uwe Hermann | 431f4f7 | 2010-09-05 12:41:25 +0000 | [diff] [blame] | 928 | B("ZOTAC", "ZBOX HD-ID11", 1, "http://pdde.zotac.com/index.php?page=shop.product_details&product_id=240&category_id=75", NULL), |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 929 | #endif |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 930 | |
Uwe Hermann | d0e347d | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 931 | {}, |
| 932 | }; |
| 933 | |
| 934 | /* Please keep this list alphabetically ordered by vendor/board. */ |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 935 | const struct board_info laptops_known[] = { |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 936 | #if defined(__i386__) || defined(__x86_64__) |
Uwe Hermann | 301703b | 2010-06-03 16:35:51 +0000 | [diff] [blame] | 937 | B("Acer", "Aspire 1520", 1, "http://support.acer.com/us/en/acerpanam/notebook/0000/Acer/Aspire1520/Aspire1520nv.shtml", NULL), |
| 938 | B("Acer", "Aspire One", 0, NULL, "http://www.coreboot.org/pipermail/coreboot/2009-May/048041.html"), |
Benjamin Bellec | 83c92e9 | 2011-12-08 07:49:11 +0000 | [diff] [blame] | 939 | B("ASUS", "A8Jm", 1, NULL, NULL), |
| 940 | B("ASUS", "Eee PC 701 4G", 0, "http://www.asus.com/Eee/Eee_PC/Eee_PC_4G/", "It seems the chip (25X40VSIG) is behind some SPI flash translation layer (likely in the EC, the ENE KB3310)."), |
| 941 | B("ASUS", "M6Ne", 0, "http://www.asus.com/Notebooks/Versatile_Performance/M6NNe/", "Untested board enable."), |
Uwe Hermann | 301703b | 2010-06-03 16:35:51 +0000 | [diff] [blame] | 942 | B("Dell", "Latitude CPi A366XT", 0, "http://www.coreboot.org/Dell_Latitude_CPi_A366XT", "The laptop immediately powers off if you try to hot-swap the chip. It's not yet tested if write/erase would work on this laptop."), |
Uwe Hermann | 49228cb | 2010-07-29 19:26:15 +0000 | [diff] [blame] | 943 | 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 Hermann | 301703b | 2010-06-03 16:35:51 +0000 | [diff] [blame] | 944 | 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)."), |
| 945 | B("IBM/Lenovo", "Thinkpad T40p", 0, "http://www.thinkwiki.org/wiki/Category:T40p", NULL), |
Stefan Tauner | 82f54e5 | 2011-05-18 01:31:17 +0000 | [diff] [blame] | 946 | B("IBM/Lenovo", "Thinkpad T410s", 0, "http://www.thinkwiki.org/wiki/Category:T410s", "Probing works (Winbond W25x64, 8192 kB, SPI), but parts of the flash are problematic: descriptor is r/o (conforming to ICH reqs), ME and platform are locked."), |
Uwe Hermann | 301703b | 2010-06-03 16:35:51 +0000 | [diff] [blame] | 947 | 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."), |
| 948 | B("Lenovo", "3000 V100 TF05Cxx", 1, "http://www5.pc.ibm.com/europe/products.nsf/products?openagent&brand=Lenovo3000Notebook&series=Lenovo+3000+V+Series#viewallmodelstop", NULL), |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 949 | #endif |
Uwe Hermann | d0e347d | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 950 | |
Uwe Hermann | d0e347d | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 951 | {}, |
| 952 | }; |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 953 | #endif |