blob: 7291efe27cbabb8c738c10ac5cff9c079bcba01a [file] [log] [blame]
Uwe Hermannba290d12009-06-17 12:07:12 +00001/*
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>
24#include "flash.h"
25#include "flashchips.h"
26
27/*
28 * Return a string corresponding to the bustype parameter.
29 * Memory is obtained with malloc() and can be freed with free().
30 */
31char *flashbuses_to_text(enum chipbustype bustype)
32{
33 char *ret = calloc(1, 1);
34 if (bustype == CHIP_BUSTYPE_UNKNOWN) {
35 ret = strcat_realloc(ret, "Unknown,");
36 /*
37 * FIXME: Once all chipsets and flash chips have been updated, NONSPI
38 * will cease to exist and should be eliminated here as well.
39 */
40 } else if (bustype == CHIP_BUSTYPE_NONSPI) {
41 ret = strcat_realloc(ret, "Non-SPI,");
42 } else {
43 if (bustype & CHIP_BUSTYPE_PARALLEL)
44 ret = strcat_realloc(ret, "Parallel,");
45 if (bustype & CHIP_BUSTYPE_LPC)
46 ret = strcat_realloc(ret, "LPC,");
47 if (bustype & CHIP_BUSTYPE_FWH)
48 ret = strcat_realloc(ret, "FWH,");
49 if (bustype & CHIP_BUSTYPE_SPI)
50 ret = strcat_realloc(ret, "SPI,");
51 if (bustype == CHIP_BUSTYPE_NONE)
52 ret = strcat_realloc(ret, "None,");
53 }
54 /* Kill last comma. */
55 ret[strlen(ret) - 1] = '\0';
56 ret = realloc(ret, strlen(ret) + 1);
57 return ret;
58}
59
60#define POS_PRINT(x) do { pos += strlen(x); printf(x); } while (0)
61
62static int digits(int n)
63{
64 int i;
65
66 if (!n)
67 return 1;
68
69 for (i = 0; n; ++i)
70 n /= 10;
71
72 return i;
73}
74
75void print_supported_chips(void)
76{
77 int okcol = 0, pos = 0, i, chipcount = 0;
78 struct flashchip *f;
79
80 for (f = flashchips; f->name != NULL; f++) {
81 if (GENERIC_DEVICE_ID == f->model_id)
82 continue;
83 okcol = max(okcol, strlen(f->vendor) + 1 + strlen(f->name));
84 }
85 okcol = (okcol + 7) & ~7;
86
87 for (f = flashchips; f->name != NULL; f++)
88 chipcount++;
89
90 printf("\nSupported flash chips (total: %d):\n\n", chipcount);
91 POS_PRINT("Vendor: Device:");
92 while (pos < okcol) {
93 printf("\t");
94 pos += 8 - (pos % 8);
95 }
96
97 printf("Tested OK:\tKnown BAD: Size/KB: Type:\n\n");
98 printf("(P = PROBE, R = READ, E = ERASE, W = WRITE)\n\n");
99
100 for (f = flashchips; f->name != NULL; f++) {
101 /* Don't print "unknown XXXX SPI chip" entries. */
102 if (!strncmp(f->name, "unknown", 7))
103 continue;
104
105 printf("%s", f->vendor);
106 for (i = 0; i < 10 - strlen(f->vendor); i++)
107 printf(" ");
108 printf("%s", f->name);
109
110 pos = 10 + strlen(f->name);
111 while (pos < okcol) {
112 printf("\t");
113 pos += 8 - (pos % 8);
114 }
115 if ((f->tested & TEST_OK_MASK)) {
116 if ((f->tested & TEST_OK_PROBE))
117 POS_PRINT("P ");
118 if ((f->tested & TEST_OK_READ))
119 POS_PRINT("R ");
120 if ((f->tested & TEST_OK_ERASE))
121 POS_PRINT("E ");
122 if ((f->tested & TEST_OK_WRITE))
123 POS_PRINT("W ");
124 }
125 while (pos < okcol + 9) {
126 printf("\t");
127 pos += 8 - (pos % 8);
128 }
129 if ((f->tested & TEST_BAD_MASK)) {
130 if ((f->tested & TEST_BAD_PROBE))
131 printf("P ");
132 if ((f->tested & TEST_BAD_READ))
133 printf("R ");
134 if ((f->tested & TEST_BAD_ERASE))
135 printf("E ");
136 if ((f->tested & TEST_BAD_WRITE))
137 printf("W ");
138 }
139
140 printf("\t %d", f->total_size);
141 for (i = 0; i < 10 - digits(f->total_size); i++)
142 printf(" ");
143 printf("%s\n", flashbuses_to_text(f->bustype));
144 }
145}
146
147void print_supported_chipsets(void)
148{
149 int i, j, chipsetcount = 0;
150 const struct penable *c = chipset_enables;
151
152 for (i = 0; c[i].vendor_name != NULL; i++)
153 chipsetcount++;
154
155 printf("\nSupported chipsets (total: %d):\n\nVendor: "
156 "Chipset: PCI IDs:\n\n", chipsetcount);
157
158 for (i = 0; c[i].vendor_name != NULL; i++) {
159 printf("%s", c[i].vendor_name);
160 for (j = 0; j < 25 - strlen(c[i].vendor_name); j++)
161 printf(" ");
162 printf("%s", c[i].device_name);
163 for (j = 0; j < 25 - strlen(c[i].device_name); j++)
164 printf(" ");
165 printf("%04x:%04x%s\n", c[i].vendor_id, c[i].device_id,
166 (c[i].status == OK) ? "" : " (untested)");
167 }
168}
169
Uwe Hermanne1aa75e2009-06-18 14:04:44 +0000170void print_supported_boards_helper(const struct board_info *b, const char *msg)
Uwe Hermannba290d12009-06-17 12:07:12 +0000171{
172 int i, j, boardcount = 0;
173
174 for (i = 0; b[i].vendor != NULL; i++)
175 boardcount++;
176
Uwe Hermanne1aa75e2009-06-18 14:04:44 +0000177 printf("\n%s (total: %d):\n\n", msg, boardcount);
178
Uwe Hermannba290d12009-06-17 12:07:12 +0000179 for (i = 0; b[i].vendor != NULL; i++) {
180 printf("%s", b[i].vendor);
181 for (j = 0; j < 25 - strlen(b[i].vendor); j++)
182 printf(" ");
183 printf("%s", b[i].name);
Uwe Hermann57146142009-09-25 01:22:42 +0000184 for (j = 0; j < 28 - strlen(b[i].name); j++)
Uwe Hermannba290d12009-06-17 12:07:12 +0000185 printf(" ");
186 printf("\n");
187 }
188}
189
190void print_supported_boards(void)
191{
192 int i, j, boardcount = 0;
193 struct board_pciid_enable *b = board_pciid_enables;
194
195 for (i = 0; b[i].vendor_name != NULL; i++)
196 boardcount++;
197
198 printf("\nSupported boards which need write-enable code (total: %d):"
Uwe Hermann57146142009-09-25 01:22:42 +0000199 "\n\nVendor: Board: "
Uwe Hermannba290d12009-06-17 12:07:12 +0000200 "Required option:\n\n", boardcount);
201
202 for (i = 0; b[i].vendor_name != NULL; i++) {
203 printf("%s", b[i].vendor_name);
204 for (j = 0; j < 25 - strlen(b[i].vendor_name); j++)
205 printf(" ");
206 printf("%s", b[i].board_name);
Uwe Hermann57146142009-09-25 01:22:42 +0000207 for (j = 0; j < 30 - strlen(b[i].board_name); j++)
Uwe Hermannba290d12009-06-17 12:07:12 +0000208 printf(" ");
209 if (b[i].lb_vendor != NULL)
210 printf("-m %s:%s\n", b[i].lb_vendor, b[i].lb_part);
211 else
212 printf("(none, board is autodetected)\n");
213 }
214
Uwe Hermanne1aa75e2009-06-18 14:04:44 +0000215 print_supported_boards_helper(boards_ok,
216 "Supported boards which don't need write-enable code");
217 print_supported_boards_helper(boards_bad,
218 "Boards which have been verified to NOT work yet");
219 print_supported_boards_helper(laptops_ok,
220 "Laptops which have been verified to work");
221 print_supported_boards_helper(laptops_bad,
222 "Laptops which have been verified to NOT work yet");
Uwe Hermannba290d12009-06-17 12:07:12 +0000223}
Uwe Hermannd0e347d2009-10-06 13:00:00 +0000224
225
226/* Please keep this list alphabetically ordered by vendor/board. */
227const struct board_info boards_ok[] = {
228 /* Verified working boards that don't need write-enables. */
229 { "Abit", "AX8", },
230 { "Abit", "Fatal1ty F-I90HD", },
231 { "Advantech", "PCM-5820", },
232 { "ASI", "MB-5BLMP", },
233 { "ASRock", "A770CrossFire", },
234 { "ASUS", "A7N8X Deluxe", },
235 { "ASUS", "A7N8X-E Deluxe", },
236 { "ASUS", "A7V400-MX", },
237 { "ASUS", "A7V8X-MX", },
238 { "ASUS", "A8N-E", },
239 { "ASUS", "A8NE-FM/S", },
240 { "ASUS", "A8N-SLI", },
241 { "ASUS", "A8N-SLI Premium", },
242 { "ASUS", "A8V Deluxe", },
243 { "ASUS", "A8V-E Deluxe", },
244 { "ASUS", "A8V-E SE", },
245 { "ASUS", "M2A-MX", },
246 { "ASUS", "M2A-VM", },
247 { "ASUS", "M2N-E", },
248 { "ASUS", "M2V", },
249 { "ASUS", "M3A78-EM", },
250 { "ASUS", "P2B", },
251 { "ASUS", "P2B-D", },
252 { "ASUS", "P2B-DS", },
253 { "ASUS", "P2B-F", },
254 { "ASUS", "P2L97-S", },
255 { "ASUS", "P5B-Deluxe", },
256 { "ASUS", "P5KC", },
257 { "ASUS", "P5L-MX", },
258 { "ASUS", "P6T Deluxe V2", },
259 { "A-Trend", "ATC-6220", },
260 { "BCOM", "WinNET100", },
261 { "Elitegroup", "P6VAP-A+", },
262 { "GIGABYTE", "GA-6BXC", },
263 { "GIGABYTE", "GA-6BXDU", },
264 { "GIGABYTE", "GA-6ZMA", },
265 { "GIGABYTE", "GA-7ZM", },
266 { "GIGABYTE", "GA-EP35-DS3L", },
267 { "GIGABYTE", "GA-EX58-UD4P", },
268 { "GIGABYTE", "GA-MA78GPM-DS2H", },
269 { "GIGABYTE", "GA-MA790GP-DS4H", },
270 { "GIGABYTE", "GA-MA770T-UD3P", },
271 { "Intel", "EP80759", },
272 { "Jetway", "J7F4K1G5D-PB", },
273 { "MSI", "MS-6570 (K7N2)", },
274 { "MSI", "MS-7065", },
275 { "MSI", "MS-7168 (Orion)", },
276 { "MSI", "MS-7236 (945PL Neo3)", },
277 { "MSI", "MS-7255 (P4M890M)", },
278 { "MSI", "MS-7345 (P35 Neo2-FIR)", },
279 { "MSI", "MS-7368 (K9AG Neo2-Digital)", },
280 { "NEC", "PowerMate 2000", },
281 { "PC Engines", "Alix.1c", },
282 { "PC Engines", "Alix.2c2", },
283 { "PC Engines", "Alix.2c3", },
284 { "PC Engines", "Alix.3c3", },
285 { "PC Engines", "Alix.3d3", },
286 { "RCA", "RM4100", },
287 { "Sun", "Blade x6250", },
288 { "Supermicro", "H8QC8", },
289 { "Thomson", "IP1000", },
290 { "TriGem", "Lomita", },
291 { "T-Online", "S-100", },
292 { "Tyan", "iS5375-1U", },
293 { "Tyan", "S1846", },
294 { "Tyan", "S2466", },
295 { "Tyan", "S2881", },
296 { "Tyan", "S2882", },
297 { "Tyan", "S2882-D", },
298 { "Tyan", "S2891", },
299 { "Tyan", "S2892", },
300 { "Tyan", "S2895", },
301 { "Tyan", "S3095", },
302 { "Tyan", "S5180", },
303 { "Tyan", "S5191", },
304 { "Tyan", "S5197", },
305 { "Tyan", "S5211", },
306 { "Tyan", "S5211-1U", },
307 { "Tyan", "S5220", },
308 { "Tyan", "S5375", },
309 { "Tyan", "S5376G2NR/S5376WAG2NR", },
310 { "Tyan", "S5377", },
311 { "Tyan", "S5397", },
312 { "VIA", "EPIA-EX15000G", },
313 { "VIA", "EPIA-LN", },
314 { "VIA", "EPIA-M700", },
315 { "VIA", "EPIA-NX15000G", },
316 { "VIA", "NAB74X0", },
317 { "VIA", "pc2500e", },
318 { "VIA", "VB700X", },
319
320 {},
321};
322
323/* Please keep this list alphabetically ordered by vendor/board. */
324const struct board_info boards_bad[] = {
325 /* Verified non-working boards (for now). */
326 { "Abit", "IS-10", },
327 { "ASRock", "K7VT4A+", },
328 { "ASUS", "MEW-AM", },
329 { "ASUS", "MEW-VM", },
330 { "ASUS", "P3B-F", },
331 { "ASUS", "P5B", },
332 { "ASUS", "P5BV-M", },
333 { "Biostar", "M6TBA", },
334 { "Boser", "HS-6637", },
335 { "DFI", "855GME-MGF", },
336 { "FIC", "VA-502", },
337 { "MSI", "MS-6178", },
338 { "MSI", "MS-7260 (K9N Neo)", },
339 { "Soyo", "SY-5VD", },
340 { "Sun", "Fire x4150", },
341 { "Sun", "Fire x4200", },
342 { "Sun", "Fire x4540", },
343 { "Sun", "Fire x4600", },
344
345 {},
346};
347
348/* Please keep this list alphabetically ordered by vendor/board. */
349const struct board_info laptops_ok[] = {
350 /* Verified working laptops. */
351 { "Lenovo", "3000 V100 TF05Cxx", },
352
353 {},
354};
355
356/* Please keep this list alphabetically ordered by vendor/board. */
357const struct board_info laptops_bad[] = {
358 /* Verified non-working laptops (for now). */
359 { "Acer", "Aspire One", },
360 { "ASUS", "Eee PC 701 4G", },
361 { "Dell", "Latitude CPi A366XT", },
362 { "HP/Compaq", "nx9010", },
363 { "IBM/Lenovo", "Thinkpad T40p", },
364 { "IBM/Lenovo", "240", },
365
366 {},
367};
368