Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +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 | |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 22 | #include <stdio.h> |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 23 | #include <string.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <time.h> |
| 26 | #include "flash.h" |
| 27 | #include "flashchips.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 28 | #include "programmer.h" |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 29 | |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 30 | static const char wiki_header[] = "= Supported devices =\n\n\ |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 31 | <div style=\"margin-top:0.5em; padding:0.5em 0.5em 0.5em 0.5em; \ |
Stefan Tauner | f74a7b9 | 2011-09-14 22:09:48 +0000 | [diff] [blame] | 32 | background-color:#eeeeee; text-align:right; border:1px solid #aabbcc;\">\ |
| 33 | <small>\n\ |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 34 | Please do '''not''' edit these tables in the wiki directly, they are \ |
| 35 | generated by pasting '''flashrom -z''' output.<br />\ |
| 36 | '''Last update:''' %s(generated by flashrom %s)\n</small></div>\n"; |
| 37 | |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 38 | #if CONFIG_INTERNAL == 1 |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 39 | static const char chipset_th[] = "{| border=\"0\" style=\"font-size: smaller\"\n\ |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 40 | |- bgcolor=\"#6699dd\"\n! align=\"left\" | Vendor\n\ |
Stefan Tauner | f74a7b9 | 2011-09-14 22:09:48 +0000 | [diff] [blame] | 41 | ! align=\"left\" | Southbridge\n! align=\"center\" | PCI IDs\n\ |
| 42 | ! align=\"center\" | Status\n\n"; |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 43 | |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 44 | static const char board_th[] = "{| border=\"0\" style=\"font-size: smaller\" \ |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 45 | valign=\"top\"\n|- bgcolor=\"#6699dd\"\n! align=\"left\" | Vendor\n\ |
Stefan Tauner | f74a7b9 | 2011-09-14 22:09:48 +0000 | [diff] [blame] | 46 | ! align=\"left\" | Mainboard\n! align=\"left\" | Required option\n\ |
| 47 | ! align=\"center\" | Status\n\n"; |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 48 | |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 49 | static const char board_intro[] = "\ |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 50 | \n== Supported mainboards ==\n\n\ |
| 51 | In general, it is very likely that flashrom works out of the box even if your \ |
| 52 | mainboard is not listed below.\n\nThis is a list of mainboards where we have \ |
| 53 | verified that they either do or do not need any special initialization to \ |
| 54 | make flashrom work (given flashrom supports the respective chipset and flash \ |
| 55 | chip), or that they do not yet work at all. If they do not work, support may \ |
| 56 | or may not be added later.\n\n\ |
Stefan Tauner | d06d941 | 2011-06-12 19:47:55 +0000 | [diff] [blame] | 57 | Mainboards (or individual revisions) which don't appear in the list may or may \ |
| 58 | not work (we don't know, someone has to give it a try). Please report any \ |
| 59 | further verified mainboards on the [[Mailinglist|mailing list]].\n"; |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 60 | #endif |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 61 | |
Stefan Tauner | f74a7b9 | 2011-09-14 22:09:48 +0000 | [diff] [blame] | 62 | static const char chip_th[] = "{\ |
| 63 | | border=\"0\" style=\"font-size: smaller\" valign=\"top\"\n\ |
| 64 | |- bgcolor=\"#6699dd\"\n\ |
| 65 | ! align=\"left\" | Vendor\n\ |
| 66 | ! align=\"left\" | Device\n\ |
| 67 | ! align=\"center\" | Size [kB]\n\ |
| 68 | ! align=\"center\" | Type\n\ |
| 69 | ! align=\"center\" colspan=\"4\" | Status\n\ |
| 70 | ! align=\"center\" colspan=\"2\" | Voltage [V]\n\n\ |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 71 | |- bgcolor=\"#6699ff\"\n| colspan=\"4\" | \n\ |
Stefan Tauner | f74a7b9 | 2011-09-14 22:09:48 +0000 | [diff] [blame] | 72 | | Probe\n| Read\n| Erase\n| Write\n\ |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 73 | | align=\"center\" | Min \n| align=\"center\" | Max\n\n"; |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 74 | |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 75 | static const char programmer_section[] = "\ |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 76 | \n== Supported programmers ==\n\nThis is a list \ |
| 77 | of supported PCI devices flashrom can use as programmer:\n\n{| border=\"0\" \ |
| 78 | valign=\"top\"\n| valign=\"top\"|\n\n{| border=\"0\" style=\"font-size: \ |
| 79 | smaller\" valign=\"top\"\n|- bgcolor=\"#6699dd\"\n! align=\"left\" | Vendor\n\ |
Stefan Tauner | f74a7b9 | 2011-09-14 22:09:48 +0000 | [diff] [blame] | 80 | ! align=\"left\" | Device\n! align=\"center\" | PCI IDs\n\ |
| 81 | ! align=\"center\" | Status\n\n"; |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 82 | |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 83 | #if CONFIG_INTERNAL == 1 |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 84 | static const char laptop_intro[] = "\n== Supported laptops/notebooks ==\n\n\ |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 85 | In general, flashing laptops is more difficult because laptops\n\n\ |
| 86 | * often use the flash chip for stuff besides the BIOS,\n\ |
| 87 | * often have special protection stuff which has to be handled by flashrom,\n\ |
| 88 | * often use flash translation circuits which need drivers in flashrom.\n\n\ |
| 89 | <div style=\"margin-top:0.5em; padding:0.5em 0.5em 0.5em 0.5em; \ |
| 90 | background-color:#ff6666; align:right; border:1px solid #000000;\">\n\ |
| 91 | '''IMPORTANT:''' At this point we recommend to '''not''' use flashrom on \ |
| 92 | untested laptops unless you have a means to recover from a flashing that goes \ |
| 93 | wrong (a working backup flash chip and/or good soldering skills).\n</div>\n"; |
| 94 | |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 95 | static void print_supported_chipsets_wiki(int cols) |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 96 | { |
| 97 | int i, j, enablescount = 0, color = 1; |
| 98 | const struct penable *e; |
| 99 | |
| 100 | for (e = chipset_enables; e->vendor_name != NULL; e++) |
| 101 | enablescount++; |
| 102 | |
| 103 | printf("\n== Supported chipsets ==\n\nTotal amount of supported " |
| 104 | "chipsets: '''%d'''\n\n{| border=\"0\" valign=\"top\"\n| " |
| 105 | "valign=\"top\"|\n\n%s", enablescount, chipset_th); |
| 106 | |
| 107 | e = chipset_enables; |
| 108 | for (i = 0, j = 0; e[i].vendor_name != NULL; i++, j++) { |
| 109 | /* Alternate colors if the vendor changes. */ |
| 110 | if (i > 0 && strcmp(e[i].vendor_name, e[i - 1].vendor_name)) |
| 111 | color = !color; |
| 112 | |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 113 | printf("|- bgcolor=\"#%s\"\n| %s || %s " |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 114 | "|| %04x:%04x || %s\n", (color) ? "eeeeee" : "dddddd", |
| 115 | e[i].vendor_name, e[i].device_name, |
| 116 | e[i].vendor_id, e[i].device_id, |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 117 | (e[i].status == OK) ? "{{OK}}" : "{{?3}}"); |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 118 | |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 119 | /* Split table in 'cols' columns. */ |
| 120 | if (j >= (enablescount / cols + 1)) { |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 121 | printf("\n|}\n\n| valign=\"top\"|\n\n%s", chipset_th); |
| 122 | j = 0; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | printf("\n|}\n\n|}\n"); |
| 127 | } |
| 128 | |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 129 | static void wiki_helper(const char *devicetype, int cols, |
| 130 | const struct board_info boards[]) |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 131 | { |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 132 | int i, j, k = 0, boardcount_good = 0, boardcount_bad = 0, color = 1; |
| 133 | int num_notes = 0; |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 134 | char *notes = calloc(1, 1); |
| 135 | char tmp[900 + 1]; |
Carl-Daniel Hailfinger | 97d5b12 | 2011-08-31 16:19:50 +0000 | [diff] [blame] | 136 | const struct board_match *b = board_matches; |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 137 | |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 138 | for (i = 0; boards[i].vendor != NULL; i++) { |
| 139 | if (boards[i].working) |
| 140 | boardcount_good++; |
| 141 | else |
| 142 | boardcount_bad++; |
| 143 | } |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 144 | |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 145 | printf("\n\nTotal amount of supported %s: '''%d'''. " |
| 146 | "Not yet supported (i.e., known-bad): '''%d'''.\n\n" |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 147 | "{| border=\"0\" valign=\"top\"\n| valign=\"top\"|\n\n%s", |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 148 | devicetype, boardcount_good, boardcount_bad, board_th); |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 149 | |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 150 | for (i = 0, j = 0; boards[i].vendor != NULL; i++, j++) { |
| 151 | |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 152 | /* Alternate colors if the vendor changes. */ |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 153 | if (i > 0 && strcmp(boards[i].vendor, boards[i - 1].vendor)) |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 154 | color = !color; |
| 155 | |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 156 | k = 0; |
Carl-Daniel Hailfinger | 4146ced | 2010-06-07 11:10:43 +0000 | [diff] [blame] | 157 | while ((b[k].vendor_name != NULL) && |
| 158 | (strcmp(b[k].vendor_name, boards[i].vendor) || |
| 159 | strcmp(b[k].board_name, boards[i].name))) { |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 160 | k++; |
| 161 | } |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 162 | |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 163 | printf("|- bgcolor=\"#%s\"\n| %s || %s%s %s%s || %s%s%s%s " |
| 164 | "|| {{%s}}", (color) ? "eeeeee" : "dddddd", |
| 165 | boards[i].vendor, |
| 166 | boards[i].url ? "[" : "", |
| 167 | boards[i].url ? boards[i].url : "", |
| 168 | boards[i].name, |
| 169 | boards[i].url ? "]" : "", |
Carl-Daniel Hailfinger | 2d927fb | 2012-01-04 00:48:27 +0000 | [diff] [blame] | 170 | b[k].lb_vendor ? "-p internal:mainboard=" : "—", |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 171 | b[k].lb_vendor ? b[k].lb_vendor : "", |
| 172 | b[k].lb_vendor ? ":" : "", |
| 173 | b[k].lb_vendor ? b[k].lb_part : "", |
| 174 | (boards[i].working) ? "OK" : "No"); |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 175 | |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 176 | if (boards[i].note) { |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 177 | printf("<sup>%d</sup>\n", num_notes + 1); |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 178 | snprintf(tmp, sizeof(tmp), "<sup>%d</sup> %s<br />\n", |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 179 | 1 + num_notes++, boards[i].note); |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 180 | notes = strcat_realloc(notes, tmp); |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 181 | } else { |
| 182 | printf("\n"); |
| 183 | } |
| 184 | |
| 185 | /* Split table in 'cols' columns. */ |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 186 | if (j >= ((boardcount_good + boardcount_bad) / cols + 1)) { |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 187 | printf("\n|}\n\n| valign=\"top\"|\n\n%s", board_th); |
| 188 | j = 0; |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | printf("\n|}\n\n|}\n"); |
| 193 | |
| 194 | if (num_notes > 0) |
| 195 | printf("\n<small>\n%s</small>\n", notes); |
| 196 | free(notes); |
| 197 | } |
| 198 | |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 199 | static void print_supported_boards_wiki(void) |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 200 | { |
| 201 | printf("%s", board_intro); |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 202 | wiki_helper("boards", 2, boards_known); |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 203 | |
| 204 | printf("%s", laptop_intro); |
Peter Lemenkov | 4adf8a6 | 2010-06-01 10:13:17 +0000 | [diff] [blame] | 205 | wiki_helper("laptops", 1, laptops_known); |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 206 | } |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 207 | #endif |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 208 | |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 209 | static void print_supported_chips_wiki(int cols) |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 210 | { |
| 211 | int i = 0, c = 1, chipcount = 0; |
Carl-Daniel Hailfinger | 4c82318 | 2011-05-04 00:39:50 +0000 | [diff] [blame] | 212 | const struct flashchip *f, *old = NULL; |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 213 | uint32_t t; |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 214 | char *s; |
Stefan Tauner | f74a7b9 | 2011-09-14 22:09:48 +0000 | [diff] [blame] | 215 | char vmax[6]; |
| 216 | char vmin[6]; |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 217 | |
Stefan Tauner | 93f7023 | 2011-07-26 14:33:46 +0000 | [diff] [blame] | 218 | for (f = flashchips; f->name != NULL; f++) { |
Stefan Tauner | 035492a | 2012-02-03 22:32:09 +0000 | [diff] [blame] | 219 | /* Don't count generic entries. */ |
| 220 | if (!strncmp(f->vendor, "Unknown", 7) || |
| 221 | !strncmp(f->vendor, "Programmer", 10) || |
| 222 | !strncmp(f->name, "unknown", 7)) |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 223 | chipcount++; |
Stefan Tauner | 93f7023 | 2011-07-26 14:33:46 +0000 | [diff] [blame] | 224 | } |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 225 | |
| 226 | printf("\n== Supported chips ==\n\nTotal amount of supported " |
| 227 | "chips: '''%d'''\n\n{| border=\"0\" valign=\"top\"\n" |
| 228 | "| valign=\"top\"|\n\n%s", chipcount, chip_th); |
| 229 | |
| 230 | for (f = flashchips; f->name != NULL; f++, i++) { |
Stefan Tauner | 035492a | 2012-02-03 22:32:09 +0000 | [diff] [blame] | 231 | /* Don't print generic entries. */ |
| 232 | if (!strncmp(f->vendor, "Unknown", 7) || |
| 233 | !strncmp(f->vendor, "Programmer", 10) || |
| 234 | !strncmp(f->name, "unknown", 7)) |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 235 | continue; |
| 236 | |
| 237 | /* Alternate colors if the vendor changes. */ |
| 238 | if (old != NULL && strcmp(old->vendor, f->vendor)) |
| 239 | c = !c; |
| 240 | |
| 241 | t = f->tested; |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 242 | s = flashbuses_to_text(f->bustype); |
Stefan Tauner | f74a7b9 | 2011-09-14 22:09:48 +0000 | [diff] [blame] | 243 | sprintf(vmin, "%0.03f", f->voltage.min / (double)1000); |
| 244 | sprintf(vmax, "%0.03f", f->voltage.max / (double)1000); |
| 245 | /* '{{%s}}' is used in combination with 'OK', 'No' and '?3' to |
| 246 | * select special formatting templates for the bg color. */ |
| 247 | printf("|- bgcolor=\"#%s\"\n| %s || %s || align=\"right\" | %d " |
| 248 | "|| %s || {{%s}} || {{%s}} || {{%s}} || {{%s}}" |
| 249 | "|| %s || %s \n", |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 250 | (c == 1) ? "eeeeee" : "dddddd", f->vendor, f->name, |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 251 | f->total_size, s, |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 252 | (t & TEST_OK_PROBE) ? "OK" : |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 253 | (t & TEST_BAD_PROBE) ? "No" : "?3", |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 254 | (t & TEST_OK_READ) ? "OK" : |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 255 | (t & TEST_BAD_READ) ? "No" : "?3", |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 256 | (t & TEST_OK_ERASE) ? "OK" : |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 257 | (t & TEST_BAD_ERASE) ? "No" : "?3", |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 258 | (t & TEST_OK_WRITE) ? "OK" : |
Stefan Tauner | f74a7b9 | 2011-09-14 22:09:48 +0000 | [diff] [blame] | 259 | (t & TEST_BAD_WRITE) ? "No" : "?3", |
| 260 | f->voltage.min ? vmin : "N/A", |
| 261 | f->voltage.min ? vmax : "N/A"); |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 262 | free(s); |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 263 | |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 264 | /* Split table into 'cols' columns. */ |
| 265 | if (i >= (chipcount / cols + 1)) { |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 266 | printf("\n|}\n\n| valign=\"top\"|\n\n%s", chip_th); |
| 267 | i = 0; |
| 268 | } |
| 269 | |
| 270 | old = f; |
| 271 | } |
| 272 | |
| 273 | printf("\n|}\n\n|}\n"); |
| 274 | } |
| 275 | |
Carl-Daniel Hailfinger | d953558 | 2011-03-08 00:09:11 +0000 | [diff] [blame] | 276 | /* Not needed for CONFIG_INTERNAL, but for all other PCI-based programmers. */ |
Carl-Daniel Hailfinger | b713d2e | 2011-05-08 00:24:18 +0000 | [diff] [blame] | 277 | #if CONFIG_NIC3COM+CONFIG_NICREALTEK+CONFIG_NICNATSEMI+CONFIG_GFXNVIDIA+CONFIG_DRKAISER+CONFIG_SATASII+CONFIG_ATAHPT+CONFIG_NICINTEL+CONFIG_NICINTEL_SPI+CONFIG_OGP_SPI+CONFIG_SATAMV >= 1 |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 278 | static void print_supported_pcidevs_wiki(const struct pcidev_status *devs) |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 279 | { |
| 280 | int i = 0; |
| 281 | static int c = 0; |
| 282 | |
| 283 | /* Alternate colors if the vendor changes. */ |
| 284 | c = !c; |
| 285 | |
| 286 | for (i = 0; devs[i].vendor_name != NULL; i++) { |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 287 | printf("|- bgcolor=\"#%s\"\n| %s || %s || " |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 288 | "%04x:%04x || {{%s}}\n", (c) ? "eeeeee" : "dddddd", |
| 289 | devs[i].vendor_name, devs[i].device_name, |
| 290 | devs[i].vendor_id, devs[i].device_id, |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 291 | (devs[i].status == NT) ? "?3" : "OK"); |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 292 | } |
| 293 | } |
Carl-Daniel Hailfinger | d953558 | 2011-03-08 00:09:11 +0000 | [diff] [blame] | 294 | #endif |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 295 | |
Carl-Daniel Hailfinger | f529205 | 2009-11-17 09:57:34 +0000 | [diff] [blame] | 296 | void print_supported_wiki(void) |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 297 | { |
| 298 | time_t t = time(NULL); |
| 299 | |
| 300 | printf(wiki_header, ctime(&t), flashrom_version); |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 301 | print_supported_chips_wiki(2); |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 302 | #if CONFIG_INTERNAL == 1 |
Uwe Hermann | a6d9c4b | 2010-05-24 15:28:12 +0000 | [diff] [blame] | 303 | print_supported_chipsets_wiki(3); |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 304 | print_supported_boards_wiki(); |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 305 | #endif |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 306 | printf("%s", programmer_section); |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 307 | #if CONFIG_NIC3COM == 1 |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 308 | print_supported_pcidevs_wiki(nics_3com); |
| 309 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 310 | #if CONFIG_NICREALTEK == 1 |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 311 | print_supported_pcidevs_wiki(nics_realtek); |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 312 | #endif |
Andrew Morgan | 74a828a | 2010-07-21 15:12:07 +0000 | [diff] [blame] | 313 | #if CONFIG_NICNATSEMI == 1 |
| 314 | print_supported_pcidevs_wiki(nics_natsemi); |
| 315 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 316 | #if CONFIG_GFXNVIDIA == 1 |
Uwe Hermann | 2b5cb51 | 2009-10-06 20:25:48 +0000 | [diff] [blame] | 317 | print_supported_pcidevs_wiki(gfx_nvidia); |
| 318 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 319 | #if CONFIG_DRKAISER == 1 |
Uwe Hermann | 07c54c8 | 2009-09-25 01:31:51 +0000 | [diff] [blame] | 320 | print_supported_pcidevs_wiki(drkaiser_pcidev); |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 321 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 322 | #if CONFIG_SATASII == 1 |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 323 | print_supported_pcidevs_wiki(satas_sii); |
| 324 | #endif |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 325 | #if CONFIG_ATAHPT == 1 |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 326 | print_supported_pcidevs_wiki(ata_hpt); |
| 327 | #endif |
Carl-Daniel Hailfinger | b713d2e | 2011-05-08 00:24:18 +0000 | [diff] [blame] | 328 | #if CONFIG_NICINTEL == 1 |
| 329 | print_supported_pcidevs_wiki(nics_intel); |
| 330 | #endif |
Idwer Vollering | 004f4b7 | 2010-09-03 18:21:21 +0000 | [diff] [blame] | 331 | #if CONFIG_NICINTEL_SPI == 1 |
| 332 | print_supported_pcidevs_wiki(nics_intel_spi); |
| 333 | #endif |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 334 | #if CONFIG_OGP_SPI == 1 |
| 335 | print_supported_pcidevs_wiki(ogp_spi); |
| 336 | #endif |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 337 | #if CONFIG_SATAMV == 1 |
| 338 | print_supported_pcidevs_wiki(satas_mv); |
| 339 | #endif |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 340 | printf("\n|}\n"); |
| 341 | } |
| 342 | |