blob: 441fc919c5e345bdce1ddd64991f68b71ae33c14 [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"
Nico Huber18781102012-12-10 13:34:12 +000033#include "libflashrom.h"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000034
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000035static void cli_classic_usage(const char *name)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000036{
Stefan Taunerb226cb12012-11-24 18:59:39 +000037 printf("Please note that the command line interface for flashrom has changed between\n"
38 "0.9.5 and 0.9.6 and will change again before flashrom 1.0.\n\n");
39
40 printf("Usage: %s [-h|-R|-L|"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000041#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000042 "-z|"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000043#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000044 "-p <programmername>[:<parameters>] [-c <chipname>]\n"
Nico Huber305f4172013-06-14 11:55:26 +020045 "[-E|(-r|-w|-v) <file>] [(-l <layoutfile>|--ifd) [-i <imagename>]...] [-n] [-N] [-f]]\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000046 "[-V[V[V]]] [-o <logfile>]\n\n", name);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000047
Stefan Taunerb226cb12012-11-24 18:59:39 +000048 printf(" -h | --help print this help text\n"
49 " -R | --version print version (release)\n"
50 " -r | --read <file> read flash and save to <file>\n"
51 " -w | --write <file> write <file> to flash\n"
52 " -v | --verify <file> verify flash against <file>\n"
53 " -E | --erase erase flash memory\n"
54 " -V | --verbose more verbose output\n"
55 " -c | --chip <chipname> probe only for specified flash chip\n"
56 " -f | --force force specific operations (see man page)\n"
57 " -n | --noverify don't auto-verify\n"
Nico Huber99d15952016-05-02 16:54:24 +020058 " -N | --noverify-all verify included regions only (cf. -i)\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000059 " -l | --layout <layoutfile> read ROM layout from <layoutfile>\n"
Nico Huber305f4172013-06-14 11:55:26 +020060 " --ifd read layout from an Intel Firmware Descriptor\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000061 " -i | --image <name> only flash image <name> from flash layout\n"
62 " -o | --output <logfile> log output to <logfile>\n"
63 " -L | --list-supported print supported devices\n"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000064#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000065 " -z | --list-supported-wiki print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000066#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000067 " -p | --programmer <name>[:<param>] specify the programmer device. One of\n");
68 list_programmers_linebreak(4, 80, 0);
69 printf(".\n\nYou can specify one of -h, -R, -L, "
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000070#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000071 "-z, "
72#endif
73 "-E, -r, -w, -v or no operation.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000074 "If no operation is specified, flashrom will only probe for flash chips.\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000075}
76
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000077static void cli_classic_abort_usage(void)
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000078{
Uwe Hermann2db77a02010-06-04 17:07:39 +000079 printf("Please run \"flashrom --help\" for usage info.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000080 exit(1);
81}
82
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +000083static int check_filename(char *filename, char *type)
84{
85 if (!filename || (filename[0] == '\0')) {
86 fprintf(stderr, "Error: No %s file specified.\n", type);
87 return 1;
88 }
89 /* Not an error, but maybe the user intended to specify a CLI option instead of a file name. */
90 if (filename[0] == '-')
91 fprintf(stderr, "Warning: Supplied %s file name starts with -\n", type);
92 return 0;
93}
94
Uwe Hermann394ee782011-08-20 14:14:22 +000095int main(int argc, char *argv[])
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000096{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000097 const struct flashchip *chip = NULL;
Jernej Škrabece814a9b2014-12-12 00:32:03 +000098 /* Probe for up to eight flash chips. */
99 struct flashctx flashes[8] = {{0}};
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000100 struct flashctx *fill_flash;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000101 const char *name;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000102 int namelen, opt, i, j;
Nico Huber305f4172013-06-14 11:55:26 +0200103 int startchip = -1, chipcount = 0, option_index = 0, force = 0, ifd = 0;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000104#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000105 int list_supported_wiki = 0;
106#endif
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000107 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
Nico Huber99d15952016-05-02 16:54:24 +0200108 int dont_verify_it = 0, dont_verify_all = 0, list_supported = 0, operation_specified = 0;
Nico Huber305f4172013-06-14 11:55:26 +0200109 struct flashrom_layout *layout = NULL;
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000110 enum programmer prog = PROGRAMMER_INVALID;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000111 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000112
Nico Huber99d15952016-05-02 16:54:24 +0200113 static const char optstring[] = "r:Rw:v:nNVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000114 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000115 {"read", 1, NULL, 'r'},
116 {"write", 1, NULL, 'w'},
117 {"erase", 0, NULL, 'E'},
118 {"verify", 1, NULL, 'v'},
119 {"noverify", 0, NULL, 'n'},
Nico Huber99d15952016-05-02 16:54:24 +0200120 {"noverify-all", 0, NULL, 'N'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000121 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000122 {"verbose", 0, NULL, 'V'},
123 {"force", 0, NULL, 'f'},
124 {"layout", 1, NULL, 'l'},
Nico Huber305f4172013-06-14 11:55:26 +0200125 {"ifd", 0, NULL, 0x0100},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000126 {"image", 1, NULL, 'i'},
127 {"list-supported", 0, NULL, 'L'},
128 {"list-supported-wiki", 0, NULL, 'z'},
129 {"programmer", 1, NULL, 'p'},
130 {"help", 0, NULL, 'h'},
131 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000132 {"output", 1, NULL, 'o'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000133 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000134 };
135
136 char *filename = NULL;
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000137 char *layoutfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000138#ifndef STANDALONE
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000139 char *logfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000140#endif /* !STANDALONE */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000141 char *tempstr = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000142 char *pparam = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000143
Nico Huber18781102012-12-10 13:34:12 +0000144 flashrom_set_log_callback((flashrom_log_callback *)&flashrom_print_cb);
145
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000146 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000147 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000148
149 if (selfcheck())
150 exit(1);
151
152 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000153 /* FIXME: Delay all operation_specified checks until after command
154 * line parsing to allow --help overriding everything else.
155 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000156 while ((opt = getopt_long(argc, argv, optstring,
157 long_options, &option_index)) != EOF) {
158 switch (opt) {
159 case 'r':
160 if (++operation_specified > 1) {
161 fprintf(stderr, "More than one operation "
162 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000163 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000164 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000165 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000166 read_it = 1;
167 break;
168 case 'w':
169 if (++operation_specified > 1) {
170 fprintf(stderr, "More than one operation "
171 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000172 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000173 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000174 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000175 write_it = 1;
176 break;
177 case 'v':
178 //FIXME: gracefully handle superfluous -v
179 if (++operation_specified > 1) {
180 fprintf(stderr, "More than one operation "
181 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000182 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000183 }
184 if (dont_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 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000188 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000189 verify_it = 1;
190 break;
191 case 'n':
192 if (verify_it) {
Stefan Taunerc4f44df2013-08-12 22:58:43 +0000193 fprintf(stderr, "--verify and --noverify are mutually exclusive. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000194 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000195 }
196 dont_verify_it = 1;
197 break;
Nico Huber99d15952016-05-02 16:54:24 +0200198 case 'N':
199 dont_verify_all = 1;
200 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000201 case 'c':
202 chip_to_probe = strdup(optarg);
203 break;
204 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000205 verbose_screen++;
Nico Huberd152fb92017-06-19 12:57:10 +0200206 if (verbose_screen > FLASHROM_MSG_DEBUG2)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000207 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000208 break;
209 case 'E':
210 if (++operation_specified > 1) {
211 fprintf(stderr, "More than one operation "
212 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000213 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000214 }
215 erase_it = 1;
216 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000217 case 'f':
218 force = 1;
219 break;
220 case 'l':
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000221 if (layoutfile) {
222 fprintf(stderr, "Error: --layout specified "
223 "more than once. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000224 cli_classic_abort_usage();
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000225 }
Nico Huber305f4172013-06-14 11:55:26 +0200226 if (ifd) {
227 fprintf(stderr, "Error: --layout and --ifd both specified. Aborting.\n");
228 cli_classic_abort_usage();
229 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000230 layoutfile = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000231 break;
Nico Huber305f4172013-06-14 11:55:26 +0200232 case 0x0100:
233 if (layoutfile) {
234 fprintf(stderr, "Error: --layout and --ifd both specified. Aborting.\n");
235 cli_classic_abort_usage();
236 }
237 ifd = 1;
238 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000239 case 'i':
240 tempstr = strdup(optarg);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000241 if (register_include_arg(tempstr)) {
242 free(tempstr);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000243 cli_classic_abort_usage();
Stefan Taunerb8911d62012-12-26 07:55:00 +0000244 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000245 break;
246 case 'L':
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000247 if (++operation_specified > 1) {
248 fprintf(stderr, "More than one operation "
249 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000250 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000251 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000252 list_supported = 1;
253 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000254 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000255#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000256 if (++operation_specified > 1) {
257 fprintf(stderr, "More than one operation "
258 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000259 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000260 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000261 list_supported_wiki = 1;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000262#else
263 fprintf(stderr, "Error: Wiki output was not compiled "
264 "in. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000265 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000266#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000267 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000268 case 'p':
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000269 if (prog != PROGRAMMER_INVALID) {
270 fprintf(stderr, "Error: --programmer specified "
271 "more than once. You can separate "
272 "multiple\nparameters for a programmer "
273 "with \",\". Please see the man page "
274 "for details.\n");
275 cli_classic_abort_usage();
276 }
277 for (prog = 0; prog < PROGRAMMER_INVALID; prog++) {
278 name = programmer_table[prog].name;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000279 namelen = strlen(name);
280 if (strncmp(optarg, name, namelen) == 0) {
281 switch (optarg[namelen]) {
282 case ':':
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000283 pparam = strdup(optarg + namelen + 1);
284 if (!strlen(pparam)) {
285 free(pparam);
286 pparam = NULL;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000287 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000288 break;
289 case '\0':
290 break;
291 default:
292 /* The continue refers to the
293 * for loop. It is here to be
294 * able to differentiate between
295 * foo and foobar.
296 */
297 continue;
298 }
299 break;
300 }
301 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000302 if (prog == PROGRAMMER_INVALID) {
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000303 fprintf(stderr, "Error: Unknown programmer \"%s\". Valid choices are:\n",
304 optarg);
305 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000306 msg_ginfo(".\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000307 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000308 }
309 break;
310 case 'R':
311 /* print_version() is always called during startup. */
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000312 if (++operation_specified > 1) {
313 fprintf(stderr, "More than one operation "
314 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000315 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000316 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000317 exit(0);
318 break;
319 case 'h':
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000320 if (++operation_specified > 1) {
321 fprintf(stderr, "More than one operation "
322 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000323 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000324 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000325 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000326 exit(0);
327 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000328 case 'o':
329#ifdef STANDALONE
330 fprintf(stderr, "Log file not supported in standalone mode. Aborting.\n");
331 cli_classic_abort_usage();
332#else /* STANDALONE */
333 logfile = strdup(optarg);
334 if (logfile[0] == '\0') {
335 fprintf(stderr, "No log filename specified.\n");
336 cli_classic_abort_usage();
337 }
338#endif /* STANDALONE */
339 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000340 default:
Uwe Hermann2db77a02010-06-04 17:07:39 +0000341 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000342 break;
343 }
344 }
345
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000346 if (optind < argc) {
347 fprintf(stderr, "Error: Extra parameter found.\n");
348 cli_classic_abort_usage();
349 }
350
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000351 if ((read_it | write_it | verify_it) && check_filename(filename, "image")) {
352 cli_classic_abort_usage();
353 }
354 if (layoutfile && check_filename(layoutfile, "layout")) {
355 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000356 }
357
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000358#ifndef STANDALONE
359 if (logfile && check_filename(logfile, "log"))
360 cli_classic_abort_usage();
361 if (logfile && open_logfile(logfile))
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000362 cli_classic_abort_usage();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000363#endif /* !STANDALONE */
364
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000365#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000366 if (list_supported_wiki) {
367 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000368 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000369 }
370#endif
371
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000372 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000373 if (print_supported())
374 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000375 goto out;
376 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000377
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000378#ifndef STANDALONE
379 start_logging();
380#endif /* !STANDALONE */
381
382 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000383 msg_gdbg("Command line (%i args):", argc - 1);
384 for (i = 0; i < argc; i++) {
385 msg_gdbg(" %s", argv[i]);
386 }
387 msg_gdbg("\n");
388
389 if (layoutfile && read_romlayout(layoutfile)) {
390 ret = 1;
391 goto out;
392 }
Nico Huber305f4172013-06-14 11:55:26 +0200393 if (!ifd && process_include_args(get_global_layout())) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000394 ret = 1;
395 goto out;
396 }
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000397 /* Does a chip with the requested name exist in the flashchips array? */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000398 if (chip_to_probe) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000399 for (chip = flashchips; chip && chip->name; chip++)
400 if (!strcmp(chip->name, chip_to_probe))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000401 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000402 if (!chip || !chip->name) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000403 msg_cerr("Error: Unknown chip '%s' specified.\n", chip_to_probe);
404 msg_gerr("Run flashrom -L to view the hardware supported in this flashrom version.\n");
405 ret = 1;
406 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000407 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000408 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000409 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000410
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000411 if (prog == PROGRAMMER_INVALID) {
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000412 if (CONFIG_DEFAULT_PROGRAMMER != PROGRAMMER_INVALID) {
413 prog = CONFIG_DEFAULT_PROGRAMMER;
Stefan Tauner265fcac2014-06-02 00:12:23 +0000414 /* We need to strdup here because we free(pparam) unconditionally later. */
415 pparam = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
416 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
417 programmer_table[CONFIG_DEFAULT_PROGRAMMER].name, pparam);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000418 } else {
419 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000420 "Previously this was not necessary because there was a default set.\n"
421#if CONFIG_INTERNAL == 1
422 "To choose the mainboard of this computer use 'internal'. "
423#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000424 "Valid choices are:\n");
425 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000426 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000427 ret = 1;
428 goto out;
429 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000430 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000431
Carl-Daniel Hailfinger49884202010-05-22 07:10:46 +0000432 /* FIXME: Delay calibration should happen in programmer code. */
433 myusec_calibrate_delay();
434
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000435 if (programmer_init(prog, pparam)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000436 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000437 ret = 1;
438 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000439 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000440 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000441 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000442 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000443
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000444 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000445 startchip = 0;
Michael Karcher222bf102011-12-22 23:27:03 +0000446 while (chipcount < ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000447 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000448 if (startchip == -1)
449 break;
450 chipcount++;
451 startchip++;
452 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000453 }
454
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000455 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000456 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
457 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000458 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000459 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000460 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000461 ret = 1;
462 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000463 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000464 msg_cinfo("No EEPROM/flash device found.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000465 if (!force || !chip_to_probe) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000466 msg_cinfo("Note: flashrom can never write if the flash chip isn't found "
467 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000468 }
469 if (force && read_it && chip_to_probe) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000470 struct registered_master *mst;
471 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000472 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000473 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000474 for (j = 0; j < registered_master_count; j++) {
475 mst = &registered_masters[j];
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000476 /* chip is still set from the chip_to_probe earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000477 if (mst->buses_supported & chip->bustype)
478 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000479 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000480 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000481 msg_cinfo("No compatible controller found for the requested flash chip.\n");
482 ret = 1;
483 goto out_shutdown;
484 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000485 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000486 msg_cinfo("More than one compatible controller found for the requested flash "
487 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000488 for (j = 0; j < registered_master_count; j++) {
489 mst = &registered_masters[j];
490 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000491 if (startchip != -1)
492 break;
493 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000494 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000495 // FIXME: This should never happen! Ask for a bug report?
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000496 msg_cinfo("Probing for flash chip '%s' failed.\n", chip_to_probe);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000497 ret = 1;
498 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000499 }
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000500 if (map_flash(&flashes[0]) != 0) {
501 free(flashes[0].chip);
502 ret = 1;
503 goto out_shutdown;
504 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000505 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
506 ret = read_flash_to_file(&flashes[0], filename);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000507 unmap_flash(&flashes[0]);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000508 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000509 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000510 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000511 ret = 1;
512 goto out_shutdown;
Stefan Tauner1d947632011-09-11 22:08:58 +0000513 } else if (!chip_to_probe) {
514 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000515 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000516 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000517 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000518 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000519 }
520
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000521 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000522
Stefan Tauner9b32de92014-08-08 23:52:33 +0000523 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000524
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000525 unsigned int limitexceeded = count_max_decode_exceedings(fill_flash);
526 if (limitexceeded > 0 && !force) {
527 enum chipbustype commonbuses = fill_flash->mst->buses_supported & fill_flash->chip->bustype;
528
529 /* Sometimes chip and programmer have more than one bus in common,
530 * and the limit is not exceeded on all buses. Tell the user. */
531 if ((bitcount(commonbuses) > limitexceeded)) {
532 msg_pdbg("There is at least one interface available which could support the size of\n"
533 "the selected flash chip.\n");
534 }
535 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
536 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000537 ret = 1;
538 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000539 }
540
541 if (!(read_it | write_it | verify_it | erase_it)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000542 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000543 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000544 }
545
Nico Huber305f4172013-06-14 11:55:26 +0200546 if (layoutfile) {
547 layout = get_global_layout();
548 } else if (ifd && (flashrom_layout_read_from_ifd(&layout, fill_flash, NULL, 0) ||
549 process_include_args(layout))) {
550 ret = 1;
551 goto out_shutdown;
552 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000553
Nico Huber305f4172013-06-14 11:55:26 +0200554 flashrom_layout_set(fill_flash, layout);
Nico Huber899e4ec2016-04-29 18:39:01 +0200555 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE, !!force);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300556#if CONFIG_INTERNAL == 1
Nico Huber899e4ec2016-04-29 18:39:01 +0200557 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE_BOARDMISMATCH, !!force_boardmismatch);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300558#endif
Nico Huber899e4ec2016-04-29 18:39:01 +0200559 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_AFTER_WRITE, !dont_verify_it);
Nico Huber99d15952016-05-02 16:54:24 +0200560 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_WHOLE_CHIP, !dont_verify_all);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000561
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000562 /* FIXME: We should issue an unconditional chip reset here. This can be
563 * done once we have a .reset function in struct flashchip.
564 * Give the chip time to settle.
565 */
566 programmer_delay(100000);
Nico Huber899e4ec2016-04-29 18:39:01 +0200567 if (read_it)
568 ret = do_read(fill_flash, filename);
569 else if (erase_it)
570 ret = do_erase(fill_flash);
571 else if (write_it)
572 ret = do_write(fill_flash, filename);
573 else if (verify_it)
574 ret = do_verify(fill_flash, filename);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000575
Nico Huber305f4172013-06-14 11:55:26 +0200576 flashrom_layout_release(layout);
577
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000578out_shutdown:
579 programmer_shutdown();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000580out:
Stefan Taunerb8911d62012-12-26 07:55:00 +0000581 for (i = 0; i < chipcount; i++)
582 free(flashes[i].chip);
583
Stefan Tauner949ccc82013-09-15 14:01:06 +0000584 layout_cleanup();
Stefan Taunerb8911d62012-12-26 07:55:00 +0000585 free(filename);
586 free(layoutfile);
587 free(pparam);
588 /* clean up global variables */
Nico Huberbcb2e5a2012-12-30 01:23:17 +0000589 free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000590 chip_to_probe = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000591#ifndef STANDALONE
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000592 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000593 ret |= close_logfile();
594#endif /* !STANDALONE */
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000595 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000596}