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 | |
| 22 | #include <string.h> |
| 23 | #include <stdlib.h> |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 24 | #include <time.h> |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 25 | #include "flash.h" |
| 26 | #include "flashchips.h" |
| 27 | |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 28 | struct board_info_url { |
| 29 | const char *vendor; |
| 30 | const char *name; |
| 31 | const char *url; |
| 32 | }; |
| 33 | |
| 34 | struct board_info_notes { |
| 35 | const char *vendor; |
| 36 | const char *name; |
| 37 | const char *note; |
| 38 | }; |
| 39 | |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 40 | /* |
| 41 | * Return a string corresponding to the bustype parameter. |
| 42 | * Memory is obtained with malloc() and can be freed with free(). |
| 43 | */ |
| 44 | char *flashbuses_to_text(enum chipbustype bustype) |
| 45 | { |
| 46 | char *ret = calloc(1, 1); |
| 47 | if (bustype == CHIP_BUSTYPE_UNKNOWN) { |
| 48 | ret = strcat_realloc(ret, "Unknown,"); |
| 49 | /* |
| 50 | * FIXME: Once all chipsets and flash chips have been updated, NONSPI |
| 51 | * will cease to exist and should be eliminated here as well. |
| 52 | */ |
| 53 | } else if (bustype == CHIP_BUSTYPE_NONSPI) { |
| 54 | ret = strcat_realloc(ret, "Non-SPI,"); |
| 55 | } else { |
| 56 | if (bustype & CHIP_BUSTYPE_PARALLEL) |
| 57 | ret = strcat_realloc(ret, "Parallel,"); |
| 58 | if (bustype & CHIP_BUSTYPE_LPC) |
| 59 | ret = strcat_realloc(ret, "LPC,"); |
| 60 | if (bustype & CHIP_BUSTYPE_FWH) |
| 61 | ret = strcat_realloc(ret, "FWH,"); |
| 62 | if (bustype & CHIP_BUSTYPE_SPI) |
| 63 | ret = strcat_realloc(ret, "SPI,"); |
| 64 | if (bustype == CHIP_BUSTYPE_NONE) |
| 65 | ret = strcat_realloc(ret, "None,"); |
| 66 | } |
| 67 | /* Kill last comma. */ |
| 68 | ret[strlen(ret) - 1] = '\0'; |
| 69 | ret = realloc(ret, strlen(ret) + 1); |
| 70 | return ret; |
| 71 | } |
| 72 | |
| 73 | #define POS_PRINT(x) do { pos += strlen(x); printf(x); } while (0) |
| 74 | |
| 75 | static int digits(int n) |
| 76 | { |
| 77 | int i; |
| 78 | |
| 79 | if (!n) |
| 80 | return 1; |
| 81 | |
| 82 | for (i = 0; n; ++i) |
| 83 | n /= 10; |
| 84 | |
| 85 | return i; |
| 86 | } |
| 87 | |
| 88 | void print_supported_chips(void) |
| 89 | { |
| 90 | int okcol = 0, pos = 0, i, chipcount = 0; |
| 91 | struct flashchip *f; |
| 92 | |
| 93 | for (f = flashchips; f->name != NULL; f++) { |
| 94 | if (GENERIC_DEVICE_ID == f->model_id) |
| 95 | continue; |
| 96 | okcol = max(okcol, strlen(f->vendor) + 1 + strlen(f->name)); |
| 97 | } |
| 98 | okcol = (okcol + 7) & ~7; |
| 99 | |
| 100 | for (f = flashchips; f->name != NULL; f++) |
| 101 | chipcount++; |
| 102 | |
| 103 | printf("\nSupported flash chips (total: %d):\n\n", chipcount); |
| 104 | POS_PRINT("Vendor: Device:"); |
| 105 | while (pos < okcol) { |
| 106 | printf("\t"); |
| 107 | pos += 8 - (pos % 8); |
| 108 | } |
| 109 | |
| 110 | printf("Tested OK:\tKnown BAD: Size/KB: Type:\n\n"); |
| 111 | printf("(P = PROBE, R = READ, E = ERASE, W = WRITE)\n\n"); |
| 112 | |
| 113 | for (f = flashchips; f->name != NULL; f++) { |
| 114 | /* Don't print "unknown XXXX SPI chip" entries. */ |
| 115 | if (!strncmp(f->name, "unknown", 7)) |
| 116 | continue; |
| 117 | |
| 118 | printf("%s", f->vendor); |
| 119 | for (i = 0; i < 10 - strlen(f->vendor); i++) |
| 120 | printf(" "); |
| 121 | printf("%s", f->name); |
| 122 | |
| 123 | pos = 10 + strlen(f->name); |
| 124 | while (pos < okcol) { |
| 125 | printf("\t"); |
| 126 | pos += 8 - (pos % 8); |
| 127 | } |
| 128 | if ((f->tested & TEST_OK_MASK)) { |
| 129 | if ((f->tested & TEST_OK_PROBE)) |
| 130 | POS_PRINT("P "); |
| 131 | if ((f->tested & TEST_OK_READ)) |
| 132 | POS_PRINT("R "); |
| 133 | if ((f->tested & TEST_OK_ERASE)) |
| 134 | POS_PRINT("E "); |
| 135 | if ((f->tested & TEST_OK_WRITE)) |
| 136 | POS_PRINT("W "); |
| 137 | } |
| 138 | while (pos < okcol + 9) { |
| 139 | printf("\t"); |
| 140 | pos += 8 - (pos % 8); |
| 141 | } |
| 142 | if ((f->tested & TEST_BAD_MASK)) { |
| 143 | if ((f->tested & TEST_BAD_PROBE)) |
| 144 | printf("P "); |
| 145 | if ((f->tested & TEST_BAD_READ)) |
| 146 | printf("R "); |
| 147 | if ((f->tested & TEST_BAD_ERASE)) |
| 148 | printf("E "); |
| 149 | if ((f->tested & TEST_BAD_WRITE)) |
| 150 | printf("W "); |
| 151 | } |
| 152 | |
| 153 | printf("\t %d", f->total_size); |
| 154 | for (i = 0; i < 10 - digits(f->total_size); i++) |
| 155 | printf(" "); |
| 156 | printf("%s\n", flashbuses_to_text(f->bustype)); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | void print_supported_chipsets(void) |
| 161 | { |
| 162 | int i, j, chipsetcount = 0; |
| 163 | const struct penable *c = chipset_enables; |
| 164 | |
| 165 | for (i = 0; c[i].vendor_name != NULL; i++) |
| 166 | chipsetcount++; |
| 167 | |
| 168 | printf("\nSupported chipsets (total: %d):\n\nVendor: " |
| 169 | "Chipset: PCI IDs:\n\n", chipsetcount); |
| 170 | |
| 171 | for (i = 0; c[i].vendor_name != NULL; i++) { |
| 172 | printf("%s", c[i].vendor_name); |
| 173 | for (j = 0; j < 25 - strlen(c[i].vendor_name); j++) |
| 174 | printf(" "); |
| 175 | printf("%s", c[i].device_name); |
| 176 | for (j = 0; j < 25 - strlen(c[i].device_name); j++) |
| 177 | printf(" "); |
| 178 | printf("%04x:%04x%s\n", c[i].vendor_id, c[i].device_id, |
| 179 | (c[i].status == OK) ? "" : " (untested)"); |
| 180 | } |
| 181 | } |
| 182 | |
Uwe Hermann | e1aa75e | 2009-06-18 14:04:44 +0000 | [diff] [blame] | 183 | void print_supported_boards_helper(const struct board_info *b, const char *msg) |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 184 | { |
| 185 | int i, j, boardcount = 0; |
| 186 | |
| 187 | for (i = 0; b[i].vendor != NULL; i++) |
| 188 | boardcount++; |
| 189 | |
Uwe Hermann | e1aa75e | 2009-06-18 14:04:44 +0000 | [diff] [blame] | 190 | printf("\n%s (total: %d):\n\n", msg, boardcount); |
| 191 | |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 192 | for (i = 0; b[i].vendor != NULL; i++) { |
| 193 | printf("%s", b[i].vendor); |
| 194 | for (j = 0; j < 25 - strlen(b[i].vendor); j++) |
| 195 | printf(" "); |
| 196 | printf("%s", b[i].name); |
| 197 | for (j = 0; j < 23 - strlen(b[i].name); j++) |
| 198 | printf(" "); |
| 199 | printf("\n"); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | void print_supported_boards(void) |
| 204 | { |
| 205 | int i, j, boardcount = 0; |
| 206 | struct board_pciid_enable *b = board_pciid_enables; |
| 207 | |
| 208 | for (i = 0; b[i].vendor_name != NULL; i++) |
| 209 | boardcount++; |
| 210 | |
| 211 | printf("\nSupported boards which need write-enable code (total: %d):" |
| 212 | "\n\nVendor: Board: " |
| 213 | "Required option:\n\n", boardcount); |
| 214 | |
| 215 | for (i = 0; b[i].vendor_name != NULL; i++) { |
| 216 | printf("%s", b[i].vendor_name); |
| 217 | for (j = 0; j < 25 - strlen(b[i].vendor_name); j++) |
| 218 | printf(" "); |
| 219 | printf("%s", b[i].board_name); |
| 220 | for (j = 0; j < 25 - strlen(b[i].board_name); j++) |
| 221 | printf(" "); |
| 222 | if (b[i].lb_vendor != NULL) |
| 223 | printf("-m %s:%s\n", b[i].lb_vendor, b[i].lb_part); |
| 224 | else |
| 225 | printf("(none, board is autodetected)\n"); |
| 226 | } |
| 227 | |
Uwe Hermann | e1aa75e | 2009-06-18 14:04:44 +0000 | [diff] [blame] | 228 | print_supported_boards_helper(boards_ok, |
| 229 | "Supported boards which don't need write-enable code"); |
| 230 | print_supported_boards_helper(boards_bad, |
| 231 | "Boards which have been verified to NOT work yet"); |
| 232 | print_supported_boards_helper(laptops_ok, |
| 233 | "Laptops which have been verified to work"); |
| 234 | print_supported_boards_helper(laptops_bad, |
| 235 | "Laptops which have been verified to NOT work yet"); |
Uwe Hermann | ba290d1 | 2009-06-17 12:07:12 +0000 | [diff] [blame] | 236 | } |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 237 | |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 238 | const char *wiki_header = "= Supported devices =\n\n\ |
| 239 | <div style=\"margin-top:0.5em; padding:0.5em 0.5em 0.5em 0.5em; \ |
| 240 | background-color:#eeeeee; align:right; border:1px solid #aabbcc;\"><small>\n\ |
| 241 | Please do '''not''' edit these tables in the wiki directly, they are \ |
Uwe Hermann | e19e86d | 2009-07-03 23:51:19 +0000 | [diff] [blame] | 242 | generated by pasting '''flashrom -z''' output.<br />\ |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 243 | '''Last update:''' %s(generated by flashrom %s)\n</small></div>\n"; |
| 244 | |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 245 | const char *chipset_th = "{| border=\"0\" style=\"font-size: smaller\"\n\ |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 246 | |- bgcolor=\"#6699dd\"\n! align=\"left\" | Vendor\n\ |
| 247 | ! align=\"left\" | Southbridge\n! align=\"left\" | PCI IDs\n\ |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 248 | ! align=\"left\" | Status\n\n"; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 249 | |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 250 | const char *board_th = "{| border=\"0\" style=\"font-size: smaller\" \ |
| 251 | valign=\"top\"\n|- bgcolor=\"#6699dd\"\n! align=\"left\" | Vendor\n\ |
| 252 | ! align=\"left\" | Mainboard\n! align=\"left\" | Status\n\n"; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 253 | |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 254 | const char *board_th2 = "{| border=\"0\" style=\"font-size: smaller\" \ |
| 255 | valign=\"top\"\n|- bgcolor=\"#6699dd\"\n! align=\"left\" | Vendor\n\ |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 256 | ! align=\"left\" | Mainboard\n! align=\"left\" | Required option\n\ |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 257 | ! align=\"left\" | Status\n\n"; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 258 | |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 259 | const char *board_intro = "\ |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 260 | \n== Supported mainboards ==\n\n\ |
| 261 | In general, it is very likely that flashrom works out of the box even if your \ |
| 262 | mainboard is not listed below.\n\nThis is a list of mainboards where we have \ |
| 263 | verified that they either do or do not need any special initialization to \ |
| 264 | make flashrom work (given flashrom supports the respective chipset and flash \ |
| 265 | chip), or that they do not yet work at all. If they do not work, support may \ |
| 266 | or may not be added later.\n\n\ |
| 267 | Mainboards which don't appear in the list may or may not work (we don't \ |
| 268 | know, someone has to give it a try). Please report any further verified \ |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 269 | mainboards on the [[Mailinglist|mailing list]].\n"; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 270 | |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 271 | const char *chip_th = "{| border=\"0\" style=\"font-size: smaller\" \ |
| 272 | valign=\"top\"\n|- bgcolor=\"#6699dd\"\n! align=\"left\" | Vendor\n\ |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 273 | ! align=\"left\" | Device\n! align=\"left\" | Size / KB\n\ |
| 274 | ! align=\"left\" | Type\n! align=\"left\" colspan=\"4\" | Status\n\n\ |
| 275 | |- bgcolor=\"#6699ff\"\n| colspan=\"4\" | \n\ |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 276 | | Probe\n| Read\n| Write\n| Erase\n\n"; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 277 | |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 278 | const char *programmer_section = "\ |
| 279 | \n== Supported programmers ==\n\nThis is a list \ |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 280 | of supported PCI devices flashrom can use as programmer:\n\n{| border=\"0\" \ |
| 281 | valign=\"top\"\n| valign=\"top\"|\n\n{| border=\"0\" style=\"font-size: \ |
| 282 | smaller\" valign=\"top\"\n|- bgcolor=\"#6699dd\"\n! align=\"left\" | Vendor\n\ |
| 283 | ! align=\"left\" | Device\n! align=\"left\" | PCI IDs\n\ |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 284 | ! align=\"left\" | Status\n\n"; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 285 | |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 286 | const char *laptop_intro = "\n== Supported laptops/notebooks ==\n\n\ |
| 287 | In general, flashing laptops is more difficult because laptops\n\n\ |
| 288 | * often use the flash chip for stuff besides the BIOS,\n\ |
| 289 | * often have special protection stuff which has to be handled by flashrom,\n\ |
| 290 | * often use flash translation circuits which need drivers in flashrom.\n\n\ |
| 291 | <div style=\"margin-top:0.5em; padding:0.5em 0.5em 0.5em 0.5em; \ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 292 | background-color:#ff6666; align:right; border:1px solid #000000;\">\n\ |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 293 | '''IMPORTANT:''' At this point we recommend to '''not''' use flashrom on \ |
| 294 | untested laptops unless you have a means to recover from a flashing that goes \ |
| 295 | wrong (a working backup flash chip and/or good soldering skills).\n</div>\n"; |
| 296 | |
| 297 | /* Please keep these lists alphabetically ordered by vendor/board. */ |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 298 | const struct board_info_url boards_url[] = { |
| 299 | /* Verified working boards that don't need write-enables. */ |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 300 | { "Abit", "AX8", "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?DEFTITLE=Y&fMTYPE=Socket%20939&pMODEL_NAME=AX8" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 301 | { "Advantech", "PCM-5820", "http://www.emacinc.com/sbc_pc_compatible/pcm_5820.htm" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 302 | { "ASI", "MB-5BLMP", "http://www.hojerteknik.com/winnet.htm" }, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 303 | { "ASRock", "A770CrossFire", "http://www.asrock.com/mb/overview.asp?Model=A770CrossFire&s=AM2\%2b" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 304 | { "ASUS", "A7N8X Deluxe", "http://www.asus.com/Product.aspx?P_ID=wAsRYm41KTp78MFC" }, |
| 305 | { "ASUS", "A7N8X-E Deluxe", "http://www.asus.com/products.aspx?l1=3&l2=13&l3=56&l4=0&model=217&modelmenu=1" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 306 | { "ASUS", "A7V400-MX", "http://www.asus.com.tw/products.aspx?l1=3&l2=13&l3=63&l4=0&model=228&modelmenu=1" }, |
| 307 | { "ASUS", "A7V8X-MX", "http://www.asus.com.tw/products.aspx?l1=3&l2=13&l3=64&l4=0&model=229&modelmenu=1" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 308 | { "ASUS", "A8N-E", "http://www.asus.com.tw/products.aspx?l1=3&l2=15&l3=171&l4=0&model=455&modelmenu=2" }, |
| 309 | { "ASUS", "A8NE-FM/S", "http://www.hardwareschotte.de/hardware/preise/proid_1266090/preis_ASUS+A8NE-FM" }, |
| 310 | { "ASUS", "A8N-SLI", "http://asus.com/product.aspx?P_ID=J9FKa8z2xVId3pDK" }, |
| 311 | { "ASUS", "A8N-SLI Premium", "http://www.asus.com.tw/products.aspx?l1=3&l2=15&l3=148&l4=0&model=539&modelmenu=1" }, |
| 312 | { "ASUS", "A8V-E Deluxe", "http://www.asus.com.tw/products.aspx?l1=3&l2=15&l3=143&l4=0&model=376&modelmenu=1" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 313 | { "ASUS", "A8V-E SE", "http://www.asus.com.tw/products.aspx?l1=3&l2=15&l3=143&l4=0&model=576&modelmenu=1" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 314 | { "ASUS", "M2A-MX", "http://www.asus.com/products.aspx?l1=3&l2=101&l3=583&l4=0&model=1909&modelmenu=1" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 315 | { "ASUS", "M2A-VM", "http://www.asus.com.tw/products.aspx?l1=3&l2=101&l3=496&l4=0&model=1568&modelmenu=1" }, |
| 316 | { "ASUS", "M2N-E", "http://www.asus.com/products.aspx?l1=3&l2=101&l3=308&l4=0&model=1181&modelmenu=1" }, |
| 317 | { "ASUS", "M2V", "http://asus.com/Product.aspx?P_ID=OqYlEDFfF6ZqZGvp" }, |
| 318 | { "ASUS", "P2B", "http://www.motherboard.cz/mb/asus/P2B.htm" }, |
| 319 | { "ASUS", "P2B-D", "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/" }, |
| 320 | { "ASUS", "P2B-DS", "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-ds/" }, |
| 321 | { "ASUS", "P2B-F", "http://www.motherboard.cz/mb/asus/P2B-F.htm" }, |
| 322 | { "ASUS", "P2L97-S", "http://www.motherboard.cz/mb/asus/P2L97-S.htm" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 323 | { "ASUS", "P5B-Deluxe", "ftp://ftp.asus.com.tw/pub/ASUS/mb/socket775/P5B-Deluxe/" }, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 324 | { "ASUS", "P5KC", "http://www.asus.com/product.aspx?P_ID=fFZ8oUIGmLpwNMjj" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 325 | { "ASUS", "P6T Deluxe V2", "http://www.asus.com/product.aspx?P_ID=iRlP8RG9han6saZx" }, |
| 326 | { "A-Trend", "ATC-6220", "http://www.motherboard.cz/mb/atrend/atc6220.htm" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 327 | { "BCOM", "WinNET100", "http://www.coreboot.org/BCOM_WINNET100" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 328 | { "GIGABYTE", "GA-6BXC", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ClassValue=Motherboard&ProductID=1445&ProductName=GA-6BXC" }, |
| 329 | { "GIGABYTE", "GA-6BXDU", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=1429" }, |
| 330 | { "GIGABYTE", "GA-6ZMA", "http://www.gigabyte.de/Support/Motherboard/BIOS_Model.aspx?ProductID=3289" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 331 | { "GIGABYTE", "GA-EX58-UD4P", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=2986" }, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 332 | { "GIGABYTE", "GA-EP35-DS3L", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=2778" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 333 | { "Intel", "EP80759", NULL }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 334 | { "Jetway", "J7F4K1G5D-PB", "http://www.jetway.com.tw/jetway/system/productshow2.asp?id=389&proname=J7F4K1G5D-P" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 335 | { "MSI", "MS-6570 (K7N2)", "http://www.msi-computer.de/index.php?func=proddesc&prod_no=519&maincat_no=1" }, |
| 336 | { "MSI", "MS-7065", "http://browse.geekbench.ca/geekbench2/view/53114" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 337 | { "MSI", "MS-7168 (Orion)", "http://support.packardbell.co.uk/uk/item/index.php?i=spec_orion&pi=platform_honeymoon_istart" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 338 | { "MSI", "MS-7236 (945PL Neo3)", "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=1173" }, |
| 339 | { "MSI", "MS-7255 (P4M890M)", "http://www.tcsbahamas.com/P4M89.htm" }, |
| 340 | { "MSI", "MS-7345 (P35 Neo2-FIR)","http://www.msi.com/index.php?func=prodcpusupport&maincat_no=1&cat2_no=170&cat3_no=&prod_no=1261" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 341 | { "NEC", "PowerMate 2000", "http://support.necam.com/mobilesolutions/hardware/Desktops/pm2000/celeron/" }, |
| 342 | { "PC Engines", "Alix.1c", "http://pcengines.ch/alix1c.htm" }, |
| 343 | { "PC Engines", "Alix.2c2", "http://pcengines.ch/alix2c2.htm" }, |
| 344 | { "PC Engines", "Alix.2c3", "http://pcengines.ch/alix2c3.htm" }, |
| 345 | { "PC Engines", "Alix.3c3", "http://pcengines.ch/alix3c3.htm" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 346 | { "PC Engines", "Alix.3d3", "http://pcengines.ch/alix3d3.htm" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 347 | { "RCA", "RM4100", "http://www.settoplinux.org/index.php?title=RCA_RM4100" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 348 | { "Sun", "Blade x6250", "http://www.sun.com/servers/blades/x6250/" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 349 | { "Supermicro", "H8QC8", "http://www.supermicro.com/Aplus/motherboard/Opteron/nforce/H8QC8.cfm" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 350 | { "Thomson", "IP1000", "http://www.settoplinux.org/index.php?title=Thomson_IP1000" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 351 | { "T-Online", "S-100", "http://wiki.freifunk-hannover.de/T-Online_S_100" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 352 | { "Tyan", "iS5375-1U", "http://www.tyan.com/product_board_detail.aspx?pid=610" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 353 | { "Tyan", "S1846", "http://www.tyan.com/archive/products/html/tsunamiatx.html" }, |
Uwe Hermann | a02d666 | 2009-08-20 18:45:18 +0000 | [diff] [blame] | 354 | { "Tyan", "S2466", "http://www.tyan.com/product_board_detail.aspx?pid=461" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 355 | { "Tyan", "S2881", "http://www.tyan.com/product_board_detail.aspx?pid=115" }, |
| 356 | { "Tyan", "S2882", "http://www.tyan.com/product_board_detail.aspx?pid=121" }, |
| 357 | { "Tyan", "S2882-D", "http://www.tyan.com/product_board_detail.aspx?pid=127" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 358 | { "Tyan", "S2891", "http://www.tyan.com/product_board_detail.aspx?pid=144" }, |
| 359 | { "Tyan", "S2892", "http://www.tyan.com/product_board_detail.aspx?pid=145" }, |
| 360 | { "Tyan", "S2895", "http://www.tyan.com/archive/products/html/thunderk8we.html" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 361 | { "Tyan", "S3095", "http://www.tyan.com/product_board_detail.aspx?pid=181" }, |
| 362 | { "Tyan", "S5180", "http://www.tyan.com/product_board_detail.aspx?pid=456" }, |
| 363 | { "Tyan", "S5191", "http://www.tyan.com/product_board_detail.aspx?pid=343" }, |
| 364 | { "Tyan", "S5197", "http://www.tyan.com/product_board_detail.aspx?pid=349" }, |
| 365 | { "Tyan", "S5211", "http://www.tyan.com/product_board_detail.aspx?pid=591" }, |
| 366 | { "Tyan", "S5211-1U", "http://www.tyan.com/product_board_detail.aspx?pid=593" }, |
| 367 | { "Tyan", "S5220", "http://www.tyan.com/product_board_detail.aspx?pid=597" }, |
| 368 | { "Tyan", "S5375", "http://www.tyan.com/product_board_detail.aspx?pid=566" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 369 | { "Tyan", "S5376G2NR/S5376WAG2NR","http://www.tyan.com/product_board_detail.aspx?pid=605" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 370 | { "Tyan", "S5377", "http://www.tyan.com/product_SKU_spec.aspx?ProductType=MB&pid=642&SKU=600000017" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 371 | { "Tyan", "S5397", "http://www.tyan.com/product_board_detail.aspx?pid=560" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 372 | { "VIA", "EPIA-EX15000G", "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=450" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 373 | { "VIA", "EPIA-LN", "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=473" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 374 | { "VIA", "EPIA-M700", "http://via.com.tw/servlet/downloadSvl?motherboard_id=670&download_file_id=3700" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 375 | { "VIA", "EPIA-NX15000G", "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=470" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 376 | { "VIA", "NAB74X0", "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=590" }, |
| 377 | { "VIA", "pc2500e", "http://www.via.com.tw/en/initiatives/empowered/pc2500_mainboard/index.jsp" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 378 | { "VIA", "VB700X", "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=490" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 379 | |
| 380 | /* Verified working boards that DO need write-enables. */ |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 381 | { "Acorp", "6A815EPD", "http://web.archive.org/web/20021206163652/www.acorp.com.tw/English/default.asp" }, |
| 382 | { "agami", "Aruma", "http://web.archive.org/web/20080212111524/http://www.agami.com/site/ais-6000-series" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 383 | { "Albatron", "PM266A Pro", "http://www.albatron.com.tw/English/Product/MB/pro_detail.asp?rlink=Overview&no=56" }, /* FIXME */ |
Uwe Hermann | a02d666 | 2009-08-20 18:45:18 +0000 | [diff] [blame] | 384 | { "AOpen", "vKM400Am-S", "http://usa.aopen.com/products_detail.aspx?Auno=824" }, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 385 | { "Artec Group", "DBE61", "http://wiki.thincan.org/DBE61" }, |
| 386 | { "Artec Group", "DBE62", "http://wiki.thincan.org/DBE62" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 387 | { "ASUS", "A7V8X-MX SE", "http://www.asus.com/product.aspx?P_ID=1guVBT1qV5oqhHyZ" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 388 | { "ASUS", "P4B266", "http://www.ciao.co.uk/ASUS_Intel_845D_Chipset_P4B266__5409807#productdetail" }, |
Uwe Hermann | a02d666 | 2009-08-20 18:45:18 +0000 | [diff] [blame] | 389 | { "ASUS", "P4P800-E Deluxe", "http://www.asus.com/product.aspx?P_ID=INIJUvLlif7LHp3g" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 390 | { "ASUS", "P5A", "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock7/ali/p5a/" }, |
| 391 | { "Biostar", "P4M80-M4", "http://www.biostar-usa.com/mbdetails.asp?model=p4m80-m4" }, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 392 | { "Elitegroup", "K7VTA3", "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=264&CategoryID=1&DetailName=Specification&MenuID=52&LanID=0" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 393 | { "EPoX", "EP-8K5A2", "http://www.epox.com/product.asp?ID=EP-8K5A2" }, |
| 394 | { "EPoX", "EP-BX3", "http://www.epox.com/product.asp?ID=EP-BX3" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 395 | { "GIGABYTE", "GA-2761GXDK", "http://www.computerbase.de/news/hardware/mainboards/amd-systeme/2007/mai/gigabyte_dtx-mainboard/" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 396 | { "GIGABYTE", "GA-7VT600", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=1666" }, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 397 | { "GIGABYTE", "GA-7ZM", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=1366" }, |
| 398 | { "GIGABYTE", "GA-K8N-SLI", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=1928" }, |
| 399 | { "GIGABYTE", "GA-M57SLI-S4", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=2287&ModelName=GA-M57SLI-S4" }, |
| 400 | { "GIGABYTE", "GA-M61P-S3", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=2434" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 401 | { "GIGABYTE", "GA-MA78G-DS3H", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=2800" }, /* TODO: Rev 1.x or 2.x? */ |
| 402 | { "GIGABYTE", "GA-MA78GM-S2H", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=2758" }, /* TODO: Rev. 1.0, 1.1, or 2.x? */ |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 403 | { "GIGABYTE", "GA-MA790FX-DQ6", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=2690" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 404 | { "HP", "DL145 G3", "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00816835&lang=en&cc=us&taskId=101&prodSeriesId=3219755&prodTypeId=15351" }, |
| 405 | { "IBM", "x3455", "http://www-03.ibm.com/systems/x/hardware/rack/x3455/index.html" }, |
| 406 | { "Intel", "D201GLY", "http://www.intel.com/support/motherboards/desktop/d201gly/index.htm" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 407 | { "IWILL", "DK8-HTX", "http://web.archive.org/web/20060507170150/http://www.iwill.net/product_2.asp?p_id=98" }, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 408 | { "Kontron", "986LCD-M", "http://de.kontron.com/products/boards+and+mezzanines/embedded+motherboards/miniitx+motherboards/986lcdmmitx.html" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 409 | { "Mitac", "6513WU", "http://web.archive.org/web/20050313054828/http://www.mitac.com/micweb/products/tyan/6513wu/6513wu.htm" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 410 | { "MSI", "MS-6590 (KT4 Ultra)", "http://www.msicomputer.com/product/p_spec.asp?model=KT4_Ultra&class=mb" }, |
| 411 | { "MSI", "MS-6702E (K8T Neo2-F)","http://www.msicomputer.com/product/p_spec.asp?model=K8T_Neo2-F&class=mb" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 412 | { "MSI", "MS-6712 (KT4V)", "http://www.msi.com/index.php?func=proddesc&maincat_no=1&cat2_no=&cat3_no=&prod_no=505" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 413 | { "MSI", "MS-7046", "http://www.heimir.de/ms7046/" }, |
| 414 | { "MSI", "MS-7135 (K8N Neo3)", "http://www.msi-computer.de/index.php?func=proddesc&prod_no=170&maincat_no=1" }, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 415 | { "Shuttle", "AK38N", "http://eu.shuttle.com/en/desktopdefault.aspx/tabid-36/558_read-9889/" }, |
| 416 | { "Soyo", "SY-7VCA", "http://www.tomshardware.com/reviews/12-socket-370-motherboards,196-15.html" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 417 | { "Tyan", "S2498 (Tomcat K7M)", "http://www.tyan.com/archive/products/html/tomcatk7m.html" }, |
| 418 | { "VIA", "EPIA-CN", "http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=400" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 419 | { "VIA", "EPIA M/MII/...", "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=202" }, /* EPIA-MII link for now */ |
| 420 | { "VIA", "EPIA-N/NL", "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=221" }, /* EPIA-N link for now */ |
| 421 | { "VIA", "EPIA SP", "http://www.via.com.tw/en/products/embedded/ProductDetail.jsp?productLine=1&motherboard_id=261" }, |
| 422 | { "VIA", "PC3500G", "http://www.via.com.tw/en/initiatives/empowered/pc3500_mainboard/index.jsp" }, |
| 423 | |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 424 | /* Verified non-working boards (for now). */ |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 425 | { "Abit", "IS-10", "http://www.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=IS-10&fMTYPE=Socket+478" }, |
Uwe Hermann | a02d666 | 2009-08-20 18:45:18 +0000 | [diff] [blame] | 426 | { "ASRock", "K7VT4A+", "http://www.asrock.com/mb/overview.asp?Model=K7VT4A%%2b&s=" }, |
| 427 | { "ASUS", "A7V600-X", "http://www.asus.com/product.aspx?P_ID=L2XYS0rmtCjeOr4k" }, |
| 428 | { "ASUS", "M2N68", "http://www.asus.com/product.aspx?P_ID=iDZQ9yNK2CbKW6Zv"}, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 429 | { "ASUS", "M3N78 Pro", "http://www.asus.com/product.aspx?P_ID=DVvm9CU0G1bCC4gp" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 430 | { "ASUS", "MEW-AM", "ftp://ftp.asus.com.tw/pub/ASUS/mb/sock370/810/mew-am/" }, |
| 431 | { "ASUS", "MEW-VM", "http://www.elhvb.com/mboards/OEM/HP/manual/ASUS%20MEW-VM.htm" }, |
| 432 | { "ASUS", "P3B-F", "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p3b-f/" }, |
| 433 | { "ASUS", "P5B", "ftp://ftp.asus.com.tw/pub/ASUS/mb/socket775/P5B/" }, |
| 434 | { "ASUS", "P5BV-M", "ftp://ftp.asus.com.tw/pub/ASUS/mb/socket775/P5B-VM/" }, |
| 435 | { "Biostar", "M6TBA", "ftp://ftp.biostar-usa.com/manuals/M6TBA/" }, |
| 436 | { "Boser", "HS-6637", "http://www.boser.com.tw/manual/HS-62376637v3.4.pdf" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 437 | { "DFI", "855GME-MGF", "http://www.dfi.com.tw/portal/CM/cmproduct/XX_cmproddetail/XX_WbProdsWindow?action=e&downloadType=&windowstate=normal&mode=view&downloadFlag=false&itemId=433" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 438 | { "FIC", "VA-502", "ftp://ftp.fic.com.tw/motherboard/manual/socket7/va-502/" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 439 | { "MSI", "MS-6178", "http://www.msi-technology.de/index.php?func=proddesc&prod_no=343&maincat_no=1" }, |
| 440 | { "MSI", "MS-7260 (K9N Neo)", "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=255" }, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 441 | { "PCCHIPS", "M537DMA33", "http://motherboards.mbarron.net/models/pcchips/m537dma.htm" }, |
| 442 | { "Soyo", "SY-5VD", "http://www.soyo.com/content/Downloads/163/&c=80&p=464&l=English" }, |
| 443 | { "Sun", "Fire x4540", "http://www.sun.com/servers/x64/x4540/" }, |
| 444 | { "Sun", "Fire x4150", "http://www.sun.com/servers/x64/x4150/" }, |
| 445 | { "Sun", "Fire x4200", "http://www.sun.com/servers/entry/x4200/" }, |
| 446 | { "Sun", "Fire x4600", "http://www.sun.com/servers/x64/x4600/" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 447 | |
| 448 | /* Verified working laptops. */ |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 449 | { "Lenovo", "3000 V100 TF05Cxx", "http://www5.pc.ibm.com/europe/products.nsf/products?openagent&brand=Lenovo3000Notebook&series=Lenovo+3000+V+Series#viewallmodelstop" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 450 | |
| 451 | /* Verified non-working laptops (for now). */ |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 452 | { "Acer", "Aspire One", NULL }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 453 | { "ASUS", "Eee PC 701 4G", "http://www.asus.com/product.aspx?P_ID=h6SPd3tEzLEsrEiS" }, |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 454 | { "Dell", "Latitude CPi A366XT", "http://www.coreboot.org/Dell_Latitude_CPi_A366XT" }, |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 455 | { "HP/Compaq", "nx9010", "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&objectID=c00348514" }, |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 456 | { "IBM/Lenovo", "Thinkpad T40p", "http://www.thinkwiki.org/wiki/Category:T40p" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 457 | { "IBM/Lenovo", "240", "http://www.stanford.edu/~bresnan//tp240.html" }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 458 | |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 459 | { NULL, NULL, 0 }, |
| 460 | }; |
| 461 | |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 462 | /* Please keep these lists alphabetically ordered by vendor/board. */ |
| 463 | const struct board_info_notes boards_notes[] = { |
| 464 | /* Verified working boards that don't need write-enables. */ |
| 465 | { "ASI", "MB-5BLMP", "Used in the IGEL WinNET III thin client." }, |
| 466 | { "ASUS", "A8V-E SE", "See http://www.coreboot.org/pipermail/coreboot/2007-October/026496.html." }, |
| 467 | { "ASUS", "M2A-VM", "See http://www.coreboot.org/pipermail/coreboot/2007-September/025281.html." }, |
| 468 | { "BCOM", "WinNET100", "Used in the IGEL-316 thin client." }, |
Uwe Hermann | bca6aa1 | 2009-06-22 01:37:06 +0000 | [diff] [blame] | 469 | { "GIGABYTE", "GA-7ZM", "Works fine iff you remove jumper JP9 on the board and disable the flash protection BIOS option." }, |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 470 | |
| 471 | /* Verified working boards that DO need write-enables. */ |
| 472 | { "Acer", "Aspire One", "See http://www.coreboot.org/pipermail/coreboot/2009-May/048041.html." }, |
| 473 | |
| 474 | /* Verified non-working boards (for now). */ |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 475 | { "ASUS", "M3N78 Pro", "SPI flash translation seems to be done in the NVIDIA MCP78 southbridge, but we don't have MCP78 datasheets." }, |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 476 | { "MSI", "MS-6178", "Immediately powers off if you try to hot-plug the chip. However, this does '''not''' happen if you use coreboot." }, |
| 477 | { "MSI", "MS-7260 (K9N Neo)", "Interestingly flashrom does not work when the vendor BIOS is booted, but it ''does'' work flawlessly when the machine is booted with coreboot." }, |
| 478 | |
| 479 | /* Verified working laptops. */ |
| 480 | /* None which need comments, yet... */ |
| 481 | |
| 482 | /* Verified non-working laptops (for now). */ |
| 483 | { "Acer", "Aspire One", "http://www.coreboot.org/pipermail/coreboot/2009-May/048041.html" }, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 484 | { "ASUS", "Eee PC 701 4G", "It seems the chip (25X40VSIG) is behind some SPI flash translation layer (likely in the EC, the ENE KB3310)." }, |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 485 | { "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 | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 486 | { "HP/Compaq", "nx9010", "Hangs upon '''flashrom -V''' (needs hard power-cycle then)." }, |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 487 | { "IBM/Lenovo", "Thinkpad T40p", "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." }, |
| 488 | |
| 489 | { NULL, NULL, 0 }, |
| 490 | }; |
| 491 | |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 492 | static int url(const char *vendor, const char *board) |
| 493 | { |
| 494 | int i; |
| 495 | const struct board_info_url *b = boards_url; |
| 496 | |
| 497 | for (i = 0; b[i].vendor != NULL; i++) { |
| 498 | if (!strcmp(vendor, b[i].vendor) && !strcmp(board, b[i].name)) |
| 499 | return i; |
| 500 | } |
| 501 | |
| 502 | return -1; |
| 503 | } |
| 504 | |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 505 | static int note(const char *vendor, const char *board) |
| 506 | { |
| 507 | int i; |
| 508 | const struct board_info_notes *n = boards_notes; |
| 509 | |
| 510 | for (i = 0; n[i].vendor != NULL; i++) { |
| 511 | if (!strcmp(vendor, n[i].vendor) && !strcmp(board, n[i].name)) |
| 512 | return i; |
| 513 | } |
| 514 | |
| 515 | return -1; |
| 516 | } |
| 517 | |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 518 | void print_supported_chipsets_wiki(void) |
| 519 | { |
| 520 | int i, j, enablescount = 0, color = 1; |
| 521 | const struct penable *e; |
| 522 | |
| 523 | for (e = chipset_enables; e->vendor_name != NULL; e++) |
| 524 | enablescount++; |
| 525 | |
| 526 | printf("\n== Supported chipsets ==\n\nTotal amount of supported " |
| 527 | "chipsets: '''%d'''\n\n{| border=\"0\" valign=\"top\"\n| " |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 528 | "valign=\"top\"|\n\n%s", enablescount, chipset_th); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 529 | |
| 530 | e = chipset_enables; |
| 531 | for (i = 0, j = 0; e[i].vendor_name != NULL; i++, j++) { |
| 532 | /* Alternate colors if the vendor changes. */ |
| 533 | if (i > 0 && strcmp(e[i].vendor_name, e[i - 1].vendor_name)) |
| 534 | color = !color; |
| 535 | |
| 536 | printf("|- bgcolor=\"#%s\" valign=\"top\"\n| %s || %s " |
| 537 | "|| %04x:%04x || %s\n", (color) ? "eeeeee" : "dddddd", |
| 538 | e[i].vendor_name, e[i].device_name, |
| 539 | e[i].vendor_id, e[i].device_id, |
| 540 | (e[i].status == OK) ? "{{OK}}" : "?"); |
| 541 | |
| 542 | /* Split table in three columns. */ |
| 543 | if (j >= (enablescount / 3 + 1)) { |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 544 | printf("\n|}\n\n| valign=\"top\"|\n\n%s", chipset_th); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 545 | j = 0; |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | printf("\n|}\n\n|}\n"); |
| 550 | } |
| 551 | |
| 552 | static void wiki_helper(const char *heading, const char *status, |
| 553 | int cols, const struct board_info boards[]) |
| 554 | { |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 555 | int i, j, k, c, boardcount = 0, color = 1, num_notes = 0; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 556 | const struct board_info *b; |
| 557 | const struct board_info_url *u = boards_url; |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 558 | char *notes = calloc(1, 1); |
| 559 | char tmp[900 + 1]; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 560 | |
| 561 | for (b = boards; b->vendor != NULL; b++) |
| 562 | boardcount++; |
| 563 | |
| 564 | printf("\n'''%s'''\n\nTotal amount of boards: '''%d'''\n\n" |
| 565 | "{| border=\"0\" valign=\"top\"\n| valign=\"top\"|\n\n%s", |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 566 | heading, boardcount, board_th); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 567 | |
| 568 | for (i = 0, j = 0, b = boards; b[i].vendor != NULL; i++, j++) { |
| 569 | /* Alternate colors if the vendor changes. */ |
| 570 | if (i > 0 && strcmp(b[i].vendor, b[i - 1].vendor)) |
| 571 | color = !color; |
| 572 | |
| 573 | k = url(b[i].vendor, b[i].name); |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 574 | c = note(b[i].vendor, b[i].name); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 575 | |
| 576 | printf("|- bgcolor=\"#%s\" valign=\"top\"\n| %s || %s%s %s%s ||" |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 577 | " {{%s}}", (color) ? "eeeeee" : "dddddd", b[i].vendor, |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 578 | (k != -1 && u[k].url) ? "[" : "", |
| 579 | (k != -1 && u[k].url) ? u[k].url : "", |
| 580 | b[i].name, (k != -1 && u[k].url) ? "]" : "", status); |
| 581 | |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 582 | if (c != -1) { |
| 583 | printf("<sup>%d</sup>\n", num_notes + 1); |
| 584 | snprintf((char *)&tmp, 900, "<sup>%d</sup> %s<br />\n", |
| 585 | 1 + num_notes++, boards_notes[c].note); |
| 586 | notes = strcat_realloc(notes, (char *)&tmp); |
| 587 | } else { |
| 588 | printf("\n"); |
| 589 | } |
| 590 | |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 591 | /* Split table in 'cols' columns. */ |
| 592 | if (j >= (boardcount / cols + 1)) { |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 593 | printf("\n|}\n\n| valign=\"top\"|\n\n%s", board_th); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 594 | j = 0; |
| 595 | } |
| 596 | } |
| 597 | |
| 598 | printf("\n|}\n\n|}\n"); |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 599 | |
| 600 | if (num_notes > 0) |
| 601 | printf("\n<small>\n%s</small>\n", notes); |
| 602 | free(notes); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | static void wiki_helper2(const char *heading, int cols) |
| 606 | { |
Uwe Hermann | e19e86d | 2009-07-03 23:51:19 +0000 | [diff] [blame] | 607 | int i, j, k, boardcount = 0, color = 1; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 608 | struct board_pciid_enable *b; |
Uwe Hermann | e19e86d | 2009-07-03 23:51:19 +0000 | [diff] [blame] | 609 | const struct board_info_url *u = boards_url; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 610 | |
| 611 | for (b = board_pciid_enables; b->vendor_name != NULL; b++) |
| 612 | boardcount++; |
| 613 | |
| 614 | printf("\n'''%s'''\n\nTotal amount of boards: '''%d'''\n\n" |
| 615 | "{| border=\"0\" valign=\"top\"\n| valign=\"top\"|\n\n%s", |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 616 | heading, boardcount, board_th2); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 617 | |
| 618 | b = board_pciid_enables; |
| 619 | for (i = 0, j = 0; b[i].vendor_name != NULL; i++, j++) { |
| 620 | /* Alternate colors if the vendor changes. */ |
| 621 | if (i > 0 && strcmp(b[i].vendor_name, b[i - 1].vendor_name)) |
| 622 | color = !color; |
| 623 | |
Uwe Hermann | e19e86d | 2009-07-03 23:51:19 +0000 | [diff] [blame] | 624 | k = url(b[i].vendor_name, b[i].board_name); |
| 625 | |
| 626 | printf("|- bgcolor=\"#%s\" valign=\"top\"\n| %s || %s%s %s%s " |
| 627 | "|| %s%s%s%s || {{OK}}\n", (color) ? "eeeeee" : "dddddd", |
| 628 | b[i].vendor_name, (k != -1 && u[k].url) ? "[" : "", |
| 629 | (k != -1 && u[k].url) ? u[k].url : "", b[i].board_name, |
| 630 | (k != -1 && u[k].url) ? "]" : "", |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 631 | (b[i].lb_vendor) ? "-m " : "—", |
| 632 | (b[i].lb_vendor) ? b[i].lb_vendor : "", |
| 633 | (b[i].lb_vendor) ? ":" : "", |
| 634 | (b[i].lb_vendor) ? b[i].lb_part : ""); |
| 635 | |
| 636 | /* Split table in three columns. */ |
| 637 | if (j >= (boardcount / cols + 1)) { |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 638 | printf("\n|}\n\n| valign=\"top\"|\n\n%s", board_th2); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 639 | j = 0; |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | printf("\n|}\n\n|}\n"); |
| 644 | } |
| 645 | |
| 646 | void print_supported_boards_wiki(void) |
| 647 | { |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 648 | printf("%s", board_intro); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 649 | wiki_helper("Known good (worked out of the box)", "OK", 3, boards_ok); |
| 650 | wiki_helper2("Known good (with write-enable code in flashrom)", 3); |
| 651 | wiki_helper("Not supported (yet)", "No", 3, boards_bad); |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 652 | |
| 653 | printf("%s", laptop_intro); |
| 654 | wiki_helper("Known good (worked out of the box)", "OK", 1, laptops_ok); |
| 655 | wiki_helper("Not supported (yet)", "No", 1, laptops_bad); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | void print_supported_chips_wiki(void) |
| 659 | { |
| 660 | int i = 0, c = 1, chipcount = 0; |
| 661 | struct flashchip *f, *old = NULL; |
Uwe Hermann | e19e86d | 2009-07-03 23:51:19 +0000 | [diff] [blame] | 662 | uint32_t t; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 663 | |
| 664 | for (f = flashchips; f->name != NULL; f++) |
| 665 | chipcount++; |
| 666 | |
| 667 | printf("\n== Supported chips ==\n\nTotal amount of supported " |
| 668 | "chips: '''%d'''\n\n{| border=\"0\" valign=\"top\"\n" |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 669 | "| valign=\"top\"|\n\n%s", chipcount, chip_th); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 670 | |
| 671 | for (f = flashchips; f->name != NULL; f++, i++) { |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 672 | /* Don't print "unknown XXXX SPI chip" entries. */ |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 673 | if (!strncmp(f->name, "unknown", 7)) |
| 674 | continue; |
| 675 | |
| 676 | /* Alternate colors if the vendor changes. */ |
| 677 | if (old != NULL && strcmp(old->vendor, f->vendor)) |
| 678 | c = !c; |
| 679 | |
Uwe Hermann | e19e86d | 2009-07-03 23:51:19 +0000 | [diff] [blame] | 680 | t = f->tested; |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 681 | printf("|- bgcolor=\"#%s\" valign=\"top\"\n| %s || %s || %d " |
| 682 | "|| %s || {{%s}} || {{%s}} || {{%s}} || {{%s}}\n", |
| 683 | (c == 1) ? "eeeeee" : "dddddd", f->vendor, f->name, |
| 684 | f->total_size, flashbuses_to_text(f->bustype), |
Uwe Hermann | e19e86d | 2009-07-03 23:51:19 +0000 | [diff] [blame] | 685 | (t & TEST_OK_PROBE) ? "OK" : |
| 686 | (t & TEST_BAD_PROBE) ? "No" : ((c) ? "?2" : "?"), |
| 687 | (t & TEST_OK_READ) ? "OK" : |
| 688 | (t & TEST_BAD_READ) ? "No" : ((c) ? "?2" : "?"), |
| 689 | (t & TEST_OK_ERASE) ? "OK" : |
| 690 | (t & TEST_BAD_ERASE) ? "No" : ((c) ? "?2" : "?"), |
| 691 | (t & TEST_OK_WRITE) ? "OK" : |
| 692 | (t & TEST_BAD_WRITE) ? "No" : ((c) ? "?2" : "?")); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 693 | |
| 694 | /* Split table into three columns. */ |
| 695 | if (i >= (chipcount / 3 + 1)) { |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 696 | printf("\n|}\n\n| valign=\"top\"|\n\n%s", chip_th); |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 697 | i = 0; |
| 698 | } |
| 699 | |
| 700 | old = f; |
| 701 | } |
| 702 | |
| 703 | printf("\n|}\n\n|}\n"); |
| 704 | } |
| 705 | |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 706 | void print_supported_pcidevs_wiki(struct pcidev_status *devs) |
| 707 | { |
| 708 | int i = 0; |
| 709 | static int c = 0; |
| 710 | |
| 711 | /* Alternate colors if the vendor changes. */ |
| 712 | c = !c; |
| 713 | |
| 714 | for (i = 0; devs[i].vendor_name != NULL; i++) { |
| 715 | printf("|- bgcolor=\"#%s\" valign=\"top\"\n| %s || %s || " |
| 716 | "%04x:%04x || {{%s}}\n", (c) ? "eeeeee" : "dddddd", |
| 717 | devs[i].vendor_name, devs[i].device_name, |
| 718 | devs[i].vendor_id, devs[i].device_id, |
| 719 | (devs[i].status == PCI_NT) ? (c) ? "?2" : "?" : "OK"); |
| 720 | } |
| 721 | } |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 722 | |
| 723 | void print_wiki_tables(void) |
| 724 | { |
| 725 | time_t t = time(NULL); |
| 726 | |
Carl-Daniel Hailfinger | a80cfbc | 2009-07-22 20:13:00 +0000 | [diff] [blame] | 727 | printf(wiki_header, ctime(&t), flashrom_version); |
Uwe Hermann | a2d0501 | 2009-06-20 01:21:38 +0000 | [diff] [blame] | 728 | print_supported_chips_wiki(); |
| 729 | print_supported_chipsets_wiki(); |
| 730 | print_supported_boards_wiki(); |
| 731 | printf("%s", programmer_section); |
| 732 | print_supported_pcidevs_wiki(nics_3com); |
| 733 | print_supported_pcidevs_wiki(satas_sii); |
| 734 | printf("\n|}\n"); |
| 735 | } |
| 736 | |