blob: a2c20141cfcd0682b0a313c654764a039b8708a2 [file] [log] [blame]
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp <yhlu@tyan.com>
6 * Copyright (C) 2005-2008 coresystems GmbH
7 * Copyright (C) 2008,2009,2010 Carl-Daniel Hailfinger
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000024#include <stdio.h>
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000025#include <fcntl.h>
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000026#include <sys/stat.h>
27#include <string.h>
28#include <stdlib.h>
29#include <getopt.h>
30#include "flash.h"
31#include "flashchips.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000032#include "programmer.h"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000033
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000034static void cli_classic_usage(const char *name)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000035{
Stefan Taunerb226cb12012-11-24 18:59:39 +000036 printf("Please note that the command line interface for flashrom has changed between\n"
37 "0.9.5 and 0.9.6 and will change again before flashrom 1.0.\n\n");
38
39 printf("Usage: %s [-h|-R|-L|"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000040#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000041 "-z|"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000042#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000043 "-p <programmername>[:<parameters>] [-c <chipname>]\n"
44 "[-E|(-r|-w|-v) <file>] [-l <layoutfile> [-i <imagename>]...] [-n] [-f]]\n"
45 "[-V[V[V]]] [-o <logfile>]\n\n", name);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000046
Stefan Taunerb226cb12012-11-24 18:59:39 +000047 printf(" -h | --help print this help text\n"
48 " -R | --version print version (release)\n"
49 " -r | --read <file> read flash and save to <file>\n"
50 " -w | --write <file> write <file> to flash\n"
51 " -v | --verify <file> verify flash against <file>\n"
52 " -E | --erase erase flash memory\n"
53 " -V | --verbose more verbose output\n"
54 " -c | --chip <chipname> probe only for specified flash chip\n"
55 " -f | --force force specific operations (see man page)\n"
56 " -n | --noverify don't auto-verify\n"
57 " -l | --layout <layoutfile> read ROM layout from <layoutfile>\n"
58 " -i | --image <name> only flash image <name> from flash layout\n"
59 " -o | --output <logfile> log output to <logfile>\n"
60 " -L | --list-supported print supported devices\n"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000061#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000062 " -z | --list-supported-wiki print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000063#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000064 " -p | --programmer <name>[:<param>] specify the programmer device. One of\n");
65 list_programmers_linebreak(4, 80, 0);
66 printf(".\n\nYou can specify one of -h, -R, -L, "
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000067#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000068 "-z, "
69#endif
70 "-E, -r, -w, -v or no operation.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000071 "If no operation is specified, flashrom will only probe for flash chips.\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000072}
73
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000074static void cli_classic_abort_usage(void)
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000075{
Uwe Hermann2db77a02010-06-04 17:07:39 +000076 printf("Please run \"flashrom --help\" for usage info.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000077 exit(1);
78}
79
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +000080static int check_filename(char *filename, char *type)
81{
82 if (!filename || (filename[0] == '\0')) {
83 fprintf(stderr, "Error: No %s file specified.\n", type);
84 return 1;
85 }
86 /* Not an error, but maybe the user intended to specify a CLI option instead of a file name. */
87 if (filename[0] == '-')
88 fprintf(stderr, "Warning: Supplied %s file name starts with -\n", type);
89 return 0;
90}
91
Uwe Hermann394ee782011-08-20 14:14:22 +000092int main(int argc, char *argv[])
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000093{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000094 const struct flashchip *chip = NULL;
Jernej Škrabece814a9b2014-12-12 00:32:03 +000095 /* Probe for up to eight flash chips. */
96 struct flashctx flashes[8] = {{0}};
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000097 struct flashctx *fill_flash;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000098 const char *name;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +000099 int namelen, opt, i, j;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000100 int startchip = -1, chipcount = 0, option_index = 0, force = 0;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000101#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000102 int list_supported_wiki = 0;
103#endif
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000104 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
105 int dont_verify_it = 0, list_supported = 0, operation_specified = 0;
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000106 enum programmer prog = PROGRAMMER_INVALID;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000107 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000108
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000109 static const char optstring[] = "r:Rw:v:nVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000110 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000111 {"read", 1, NULL, 'r'},
112 {"write", 1, NULL, 'w'},
113 {"erase", 0, NULL, 'E'},
114 {"verify", 1, NULL, 'v'},
115 {"noverify", 0, NULL, 'n'},
116 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000117 {"verbose", 0, NULL, 'V'},
118 {"force", 0, NULL, 'f'},
119 {"layout", 1, NULL, 'l'},
120 {"image", 1, NULL, 'i'},
121 {"list-supported", 0, NULL, 'L'},
122 {"list-supported-wiki", 0, NULL, 'z'},
123 {"programmer", 1, NULL, 'p'},
124 {"help", 0, NULL, 'h'},
125 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000126 {"output", 1, NULL, 'o'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000127 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000128 };
129
130 char *filename = NULL;
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000131 char *layoutfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000132#ifndef STANDALONE
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000133 char *logfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000134#endif /* !STANDALONE */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000135 char *tempstr = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000136 char *pparam = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000137
138 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000139 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000140
141 if (selfcheck())
142 exit(1);
143
144 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000145 /* FIXME: Delay all operation_specified checks until after command
146 * line parsing to allow --help overriding everything else.
147 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000148 while ((opt = getopt_long(argc, argv, optstring,
149 long_options, &option_index)) != EOF) {
150 switch (opt) {
151 case 'r':
152 if (++operation_specified > 1) {
153 fprintf(stderr, "More than one operation "
154 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000155 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000156 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000157 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000158 read_it = 1;
159 break;
160 case 'w':
161 if (++operation_specified > 1) {
162 fprintf(stderr, "More than one operation "
163 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000164 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000165 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000166 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000167 write_it = 1;
168 break;
169 case 'v':
170 //FIXME: gracefully handle superfluous -v
171 if (++operation_specified > 1) {
172 fprintf(stderr, "More than one operation "
173 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000174 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000175 }
176 if (dont_verify_it) {
Stefan Taunerc4f44df2013-08-12 22:58:43 +0000177 fprintf(stderr, "--verify and --noverify are mutually exclusive. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000178 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000179 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000180 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000181 verify_it = 1;
182 break;
183 case 'n':
184 if (verify_it) {
Stefan Taunerc4f44df2013-08-12 22:58:43 +0000185 fprintf(stderr, "--verify and --noverify are mutually exclusive. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000186 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000187 }
188 dont_verify_it = 1;
189 break;
190 case 'c':
191 chip_to_probe = strdup(optarg);
192 break;
193 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000194 verbose_screen++;
195 if (verbose_screen > MSG_DEBUG2)
196 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000197 break;
198 case 'E':
199 if (++operation_specified > 1) {
200 fprintf(stderr, "More than one operation "
201 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000202 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000203 }
204 erase_it = 1;
205 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000206 case 'f':
207 force = 1;
208 break;
209 case 'l':
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000210 if (layoutfile) {
211 fprintf(stderr, "Error: --layout specified "
212 "more than once. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000213 cli_classic_abort_usage();
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000214 }
215 layoutfile = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000216 break;
217 case 'i':
218 tempstr = strdup(optarg);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000219 if (register_include_arg(tempstr)) {
220 free(tempstr);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000221 cli_classic_abort_usage();
Stefan Taunerb8911d62012-12-26 07:55:00 +0000222 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000223 break;
224 case 'L':
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000225 if (++operation_specified > 1) {
226 fprintf(stderr, "More than one operation "
227 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000228 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000229 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000230 list_supported = 1;
231 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000232 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000233#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000234 if (++operation_specified > 1) {
235 fprintf(stderr, "More than one operation "
236 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000237 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000238 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000239 list_supported_wiki = 1;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000240#else
241 fprintf(stderr, "Error: Wiki output was not compiled "
242 "in. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000243 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000244#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000245 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000246 case 'p':
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000247 if (prog != PROGRAMMER_INVALID) {
248 fprintf(stderr, "Error: --programmer specified "
249 "more than once. You can separate "
250 "multiple\nparameters for a programmer "
251 "with \",\". Please see the man page "
252 "for details.\n");
253 cli_classic_abort_usage();
254 }
255 for (prog = 0; prog < PROGRAMMER_INVALID; prog++) {
256 name = programmer_table[prog].name;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000257 namelen = strlen(name);
258 if (strncmp(optarg, name, namelen) == 0) {
259 switch (optarg[namelen]) {
260 case ':':
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000261 pparam = strdup(optarg + namelen + 1);
262 if (!strlen(pparam)) {
263 free(pparam);
264 pparam = NULL;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000265 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000266 break;
267 case '\0':
268 break;
269 default:
270 /* The continue refers to the
271 * for loop. It is here to be
272 * able to differentiate between
273 * foo and foobar.
274 */
275 continue;
276 }
277 break;
278 }
279 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000280 if (prog == PROGRAMMER_INVALID) {
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000281 fprintf(stderr, "Error: Unknown programmer \"%s\". Valid choices are:\n",
282 optarg);
283 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000284 msg_ginfo(".\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000285 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000286 }
287 break;
288 case 'R':
289 /* print_version() is always called during startup. */
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000290 if (++operation_specified > 1) {
291 fprintf(stderr, "More than one operation "
292 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000293 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000294 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000295 exit(0);
296 break;
297 case 'h':
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000298 if (++operation_specified > 1) {
299 fprintf(stderr, "More than one operation "
300 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000301 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000302 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000303 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000304 exit(0);
305 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000306 case 'o':
307#ifdef STANDALONE
308 fprintf(stderr, "Log file not supported in standalone mode. Aborting.\n");
309 cli_classic_abort_usage();
310#else /* STANDALONE */
311 logfile = strdup(optarg);
312 if (logfile[0] == '\0') {
313 fprintf(stderr, "No log filename specified.\n");
314 cli_classic_abort_usage();
315 }
316#endif /* STANDALONE */
317 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000318 default:
Uwe Hermann2db77a02010-06-04 17:07:39 +0000319 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000320 break;
321 }
322 }
323
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000324 if (optind < argc) {
325 fprintf(stderr, "Error: Extra parameter found.\n");
326 cli_classic_abort_usage();
327 }
328
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000329 if ((read_it | write_it | verify_it) && check_filename(filename, "image")) {
330 cli_classic_abort_usage();
331 }
332 if (layoutfile && check_filename(layoutfile, "layout")) {
333 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000334 }
335
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000336#ifndef STANDALONE
337 if (logfile && check_filename(logfile, "log"))
338 cli_classic_abort_usage();
339 if (logfile && open_logfile(logfile))
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000340 cli_classic_abort_usage();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000341#endif /* !STANDALONE */
342
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000343#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000344 if (list_supported_wiki) {
345 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000346 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000347 }
348#endif
349
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000350 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000351 if (print_supported())
352 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000353 goto out;
354 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000355
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000356#ifndef STANDALONE
357 start_logging();
358#endif /* !STANDALONE */
359
360 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000361 msg_gdbg("Command line (%i args):", argc - 1);
362 for (i = 0; i < argc; i++) {
363 msg_gdbg(" %s", argv[i]);
364 }
365 msg_gdbg("\n");
366
367 if (layoutfile && read_romlayout(layoutfile)) {
368 ret = 1;
369 goto out;
370 }
Stefan Tauner8268fdb2013-09-23 14:21:06 +0000371 if (layoutfile != NULL && !write_it) {
372 msg_gerr("Layout files are currently supported for write operations only.\n");
373 ret = 1;
374 goto out;
375 }
376
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000377 if (process_include_args()) {
378 ret = 1;
379 goto out;
380 }
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000381 /* Does a chip with the requested name exist in the flashchips array? */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000382 if (chip_to_probe) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000383 for (chip = flashchips; chip && chip->name; chip++)
384 if (!strcmp(chip->name, chip_to_probe))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000385 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000386 if (!chip || !chip->name) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000387 msg_cerr("Error: Unknown chip '%s' specified.\n", chip_to_probe);
388 msg_gerr("Run flashrom -L to view the hardware supported in this flashrom version.\n");
389 ret = 1;
390 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000391 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000392 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000393 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000394
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000395 if (prog == PROGRAMMER_INVALID) {
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000396 if (CONFIG_DEFAULT_PROGRAMMER != PROGRAMMER_INVALID) {
397 prog = CONFIG_DEFAULT_PROGRAMMER;
Stefan Tauner265fcac2014-06-02 00:12:23 +0000398 /* We need to strdup here because we free(pparam) unconditionally later. */
399 pparam = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
400 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
401 programmer_table[CONFIG_DEFAULT_PROGRAMMER].name, pparam);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000402 } else {
403 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000404 "Previously this was not necessary because there was a default set.\n"
405#if CONFIG_INTERNAL == 1
406 "To choose the mainboard of this computer use 'internal'. "
407#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000408 "Valid choices are:\n");
409 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000410 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000411 ret = 1;
412 goto out;
413 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000414 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000415
Carl-Daniel Hailfinger49884202010-05-22 07:10:46 +0000416 /* FIXME: Delay calibration should happen in programmer code. */
417 myusec_calibrate_delay();
418
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000419 if (programmer_init(prog, pparam)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000420 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000421 ret = 1;
422 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000423 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000424 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000425 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000426 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000427
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000428 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000429 startchip = 0;
Michael Karcher222bf102011-12-22 23:27:03 +0000430 while (chipcount < ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000431 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000432 if (startchip == -1)
433 break;
434 chipcount++;
435 startchip++;
436 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000437 }
438
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000439 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000440 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
441 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000442 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000443 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000444 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000445 ret = 1;
446 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000447 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000448 msg_cinfo("No EEPROM/flash device found.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000449 if (!force || !chip_to_probe) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000450 msg_cinfo("Note: flashrom can never write if the flash chip isn't found "
451 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000452 }
453 if (force && read_it && chip_to_probe) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000454 struct registered_master *mst;
455 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000456 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000457 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000458 for (j = 0; j < registered_master_count; j++) {
459 mst = &registered_masters[j];
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000460 /* chip is still set from the chip_to_probe earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000461 if (mst->buses_supported & chip->bustype)
462 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000463 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000464 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000465 msg_cinfo("No compatible controller found for the requested flash chip.\n");
466 ret = 1;
467 goto out_shutdown;
468 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000469 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000470 msg_cinfo("More than one compatible controller found for the requested flash "
471 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000472 for (j = 0; j < registered_master_count; j++) {
473 mst = &registered_masters[j];
474 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000475 if (startchip != -1)
476 break;
477 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000478 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000479 // FIXME: This should never happen! Ask for a bug report?
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000480 msg_cinfo("Probing for flash chip '%s' failed.\n", chip_to_probe);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000481 ret = 1;
482 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000483 }
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000484 if (map_flash(&flashes[0]) != 0) {
485 free(flashes[0].chip);
486 ret = 1;
487 goto out_shutdown;
488 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000489 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
490 ret = read_flash_to_file(&flashes[0], filename);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000491 unmap_flash(&flashes[0]);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000492 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000493 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000494 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000495 ret = 1;
496 goto out_shutdown;
Stefan Tauner1d947632011-09-11 22:08:58 +0000497 } else if (!chip_to_probe) {
498 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000499 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000500 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000501 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000502 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000503 }
504
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000505 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000506
Stefan Tauner9b32de92014-08-08 23:52:33 +0000507 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000508
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000509 unsigned int limitexceeded = count_max_decode_exceedings(fill_flash);
510 if (limitexceeded > 0 && !force) {
511 enum chipbustype commonbuses = fill_flash->mst->buses_supported & fill_flash->chip->bustype;
512
513 /* Sometimes chip and programmer have more than one bus in common,
514 * and the limit is not exceeded on all buses. Tell the user. */
515 if ((bitcount(commonbuses) > limitexceeded)) {
516 msg_pdbg("There is at least one interface available which could support the size of\n"
517 "the selected flash chip.\n");
518 }
519 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
520 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000521 ret = 1;
522 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000523 }
524
525 if (!(read_it | write_it | verify_it | erase_it)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000526 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000527 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000528 }
529
530 /* Always verify write operations unless -n is used. */
531 if (write_it && !dont_verify_it)
532 verify_it = 1;
533
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000534 /* Map the selected flash chip again. */
535 if (map_flash(fill_flash) != 0) {
536 ret = 1;
537 goto out_shutdown;
538 }
539
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000540 /* FIXME: We should issue an unconditional chip reset here. This can be
541 * done once we have a .reset function in struct flashchip.
542 * Give the chip time to settle.
543 */
544 programmer_delay(100000);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000545 ret |= doit(fill_flash, force, filename, read_it, write_it, erase_it, verify_it);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000546
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000547 unmap_flash(fill_flash);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000548out_shutdown:
549 programmer_shutdown();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000550out:
Stefan Taunerb8911d62012-12-26 07:55:00 +0000551 for (i = 0; i < chipcount; i++)
552 free(flashes[i].chip);
553
Stefan Tauner949ccc82013-09-15 14:01:06 +0000554 layout_cleanup();
Stefan Taunerb8911d62012-12-26 07:55:00 +0000555 free(filename);
556 free(layoutfile);
557 free(pparam);
558 /* clean up global variables */
Nico Huberbcb2e5a2012-12-30 01:23:17 +0000559 free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000560 chip_to_probe = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000561#ifndef STANDALONE
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000562 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000563 ret |= close_logfile();
564#endif /* !STANDALONE */
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000565 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000566}