blob: 119c6f8d051309935e72775c4fc7fa68d4796502 [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.
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000018 */
19
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000020#include <stdio.h>
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000021#include <fcntl.h>
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000022#include <sys/stat.h>
23#include <string.h>
24#include <stdlib.h>
25#include <getopt.h>
26#include "flash.h"
27#include "flashchips.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000028#include "programmer.h"
Nico Huber18781102012-12-10 13:34:12 +000029#include "libflashrom.h"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000030
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000031static void cli_classic_usage(const char *name)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000032{
Stefan Taunerb226cb12012-11-24 18:59:39 +000033 printf("Please note that the command line interface for flashrom has changed between\n"
34 "0.9.5 and 0.9.6 and will change again before flashrom 1.0.\n\n");
35
36 printf("Usage: %s [-h|-R|-L|"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000037#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000038 "-z|"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000039#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000040 "-p <programmername>[:<parameters>] [-c <chipname>]\n"
Nico Huber305f4172013-06-14 11:55:26 +020041 "[-E|(-r|-w|-v) <file>] [(-l <layoutfile>|--ifd) [-i <imagename>]...] [-n] [-N] [-f]]\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000042 "[-V[V[V]]] [-o <logfile>]\n\n", name);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000043
Stefan Taunerb226cb12012-11-24 18:59:39 +000044 printf(" -h | --help print this help text\n"
45 " -R | --version print version (release)\n"
46 " -r | --read <file> read flash and save to <file>\n"
47 " -w | --write <file> write <file> to flash\n"
48 " -v | --verify <file> verify flash against <file>\n"
49 " -E | --erase erase flash memory\n"
50 " -V | --verbose more verbose output\n"
51 " -c | --chip <chipname> probe only for specified flash chip\n"
52 " -f | --force force specific operations (see man page)\n"
53 " -n | --noverify don't auto-verify\n"
Nico Huber99d15952016-05-02 16:54:24 +020054 " -N | --noverify-all verify included regions only (cf. -i)\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000055 " -l | --layout <layoutfile> read ROM layout from <layoutfile>\n"
Nico Huber305f4172013-06-14 11:55:26 +020056 " --ifd read layout from an Intel Firmware Descriptor\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000057 " -i | --image <name> only flash image <name> from flash layout\n"
58 " -o | --output <logfile> log output to <logfile>\n"
Paul Kocialkowskif701f342018-01-15 01:10:36 +030059 " --flash-contents <ref-file> assume flash contents to be <ref-file>\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000060 " -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;
Nico Huber305f4172013-06-14 11:55:26 +0200100 int startchip = -1, chipcount = 0, option_index = 0, force = 0, ifd = 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;
Nico Huber99d15952016-05-02 16:54:24 +0200105 int dont_verify_it = 0, dont_verify_all = 0, list_supported = 0, operation_specified = 0;
Nico Huber305f4172013-06-14 11:55:26 +0200106 struct flashrom_layout *layout = NULL;
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000107 enum programmer prog = PROGRAMMER_INVALID;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300108 enum {
109 OPTION_IFD = 0x0100,
110 OPTION_FLASH_CONTENTS,
111 };
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000112 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000113
Nico Huber99d15952016-05-02 16:54:24 +0200114 static const char optstring[] = "r:Rw:v:nNVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000115 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000116 {"read", 1, NULL, 'r'},
117 {"write", 1, NULL, 'w'},
118 {"erase", 0, NULL, 'E'},
119 {"verify", 1, NULL, 'v'},
120 {"noverify", 0, NULL, 'n'},
Nico Huber99d15952016-05-02 16:54:24 +0200121 {"noverify-all", 0, NULL, 'N'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000122 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000123 {"verbose", 0, NULL, 'V'},
124 {"force", 0, NULL, 'f'},
125 {"layout", 1, NULL, 'l'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300126 {"ifd", 0, NULL, OPTION_IFD},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000127 {"image", 1, NULL, 'i'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300128 {"flash-contents", 1, NULL, OPTION_FLASH_CONTENTS},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000129 {"list-supported", 0, NULL, 'L'},
130 {"list-supported-wiki", 0, NULL, 'z'},
131 {"programmer", 1, NULL, 'p'},
132 {"help", 0, NULL, 'h'},
133 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000134 {"output", 1, NULL, 'o'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000135 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000136 };
137
138 char *filename = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300139 char *referencefile = NULL;
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000140 char *layoutfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000141#ifndef STANDALONE
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000142 char *logfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000143#endif /* !STANDALONE */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000144 char *tempstr = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000145 char *pparam = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000146
Nico Huber18781102012-12-10 13:34:12 +0000147 flashrom_set_log_callback((flashrom_log_callback *)&flashrom_print_cb);
148
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000149 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000150 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000151
152 if (selfcheck())
153 exit(1);
154
155 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000156 /* FIXME: Delay all operation_specified checks until after command
157 * line parsing to allow --help overriding everything else.
158 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000159 while ((opt = getopt_long(argc, argv, optstring,
160 long_options, &option_index)) != EOF) {
161 switch (opt) {
162 case 'r':
163 if (++operation_specified > 1) {
164 fprintf(stderr, "More than one operation "
165 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000166 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000167 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000168 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000169 read_it = 1;
170 break;
171 case 'w':
172 if (++operation_specified > 1) {
173 fprintf(stderr, "More than one operation "
174 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000175 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000176 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000177 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000178 write_it = 1;
179 break;
180 case 'v':
181 //FIXME: gracefully handle superfluous -v
182 if (++operation_specified > 1) {
183 fprintf(stderr, "More than one operation "
184 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000185 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000186 }
187 if (dont_verify_it) {
Stefan Taunerc4f44df2013-08-12 22:58:43 +0000188 fprintf(stderr, "--verify and --noverify are mutually exclusive. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000189 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000190 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000191 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000192 verify_it = 1;
193 break;
194 case 'n':
195 if (verify_it) {
Stefan Taunerc4f44df2013-08-12 22:58:43 +0000196 fprintf(stderr, "--verify and --noverify are mutually exclusive. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000197 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000198 }
199 dont_verify_it = 1;
200 break;
Nico Huber99d15952016-05-02 16:54:24 +0200201 case 'N':
202 dont_verify_all = 1;
203 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000204 case 'c':
205 chip_to_probe = strdup(optarg);
206 break;
207 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000208 verbose_screen++;
Nico Huberd152fb92017-06-19 12:57:10 +0200209 if (verbose_screen > FLASHROM_MSG_DEBUG2)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000210 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000211 break;
212 case 'E':
213 if (++operation_specified > 1) {
214 fprintf(stderr, "More than one operation "
215 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000216 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000217 }
218 erase_it = 1;
219 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000220 case 'f':
221 force = 1;
222 break;
223 case 'l':
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000224 if (layoutfile) {
225 fprintf(stderr, "Error: --layout specified "
226 "more than once. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000227 cli_classic_abort_usage();
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000228 }
Nico Huber305f4172013-06-14 11:55:26 +0200229 if (ifd) {
230 fprintf(stderr, "Error: --layout and --ifd both specified. Aborting.\n");
231 cli_classic_abort_usage();
232 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000233 layoutfile = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000234 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300235 case OPTION_IFD:
Nico Huber305f4172013-06-14 11:55:26 +0200236 if (layoutfile) {
237 fprintf(stderr, "Error: --layout and --ifd both specified. Aborting.\n");
238 cli_classic_abort_usage();
239 }
240 ifd = 1;
241 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000242 case 'i':
243 tempstr = strdup(optarg);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000244 if (register_include_arg(tempstr)) {
245 free(tempstr);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000246 cli_classic_abort_usage();
Stefan Taunerb8911d62012-12-26 07:55:00 +0000247 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000248 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300249 case OPTION_FLASH_CONTENTS:
250 referencefile = strdup(optarg);
251 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000252 case 'L':
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000253 if (++operation_specified > 1) {
254 fprintf(stderr, "More than one operation "
255 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000256 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000257 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000258 list_supported = 1;
259 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000260 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000261#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000262 if (++operation_specified > 1) {
263 fprintf(stderr, "More than one operation "
264 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000265 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000266 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000267 list_supported_wiki = 1;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000268#else
269 fprintf(stderr, "Error: Wiki output was not compiled "
270 "in. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000271 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000272#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000273 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000274 case 'p':
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000275 if (prog != PROGRAMMER_INVALID) {
276 fprintf(stderr, "Error: --programmer specified "
277 "more than once. You can separate "
278 "multiple\nparameters for a programmer "
279 "with \",\". Please see the man page "
280 "for details.\n");
281 cli_classic_abort_usage();
282 }
283 for (prog = 0; prog < PROGRAMMER_INVALID; prog++) {
284 name = programmer_table[prog].name;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000285 namelen = strlen(name);
286 if (strncmp(optarg, name, namelen) == 0) {
287 switch (optarg[namelen]) {
288 case ':':
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000289 pparam = strdup(optarg + namelen + 1);
290 if (!strlen(pparam)) {
291 free(pparam);
292 pparam = NULL;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000293 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000294 break;
295 case '\0':
296 break;
297 default:
298 /* The continue refers to the
299 * for loop. It is here to be
300 * able to differentiate between
301 * foo and foobar.
302 */
303 continue;
304 }
305 break;
306 }
307 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000308 if (prog == PROGRAMMER_INVALID) {
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000309 fprintf(stderr, "Error: Unknown programmer \"%s\". Valid choices are:\n",
310 optarg);
311 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000312 msg_ginfo(".\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000313 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000314 }
315 break;
316 case 'R':
317 /* print_version() is always called during startup. */
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000318 if (++operation_specified > 1) {
319 fprintf(stderr, "More than one operation "
320 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000321 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000322 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000323 exit(0);
324 break;
325 case 'h':
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000326 if (++operation_specified > 1) {
327 fprintf(stderr, "More than one operation "
328 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000329 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000330 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000331 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000332 exit(0);
333 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000334 case 'o':
335#ifdef STANDALONE
336 fprintf(stderr, "Log file not supported in standalone mode. Aborting.\n");
337 cli_classic_abort_usage();
338#else /* STANDALONE */
339 logfile = strdup(optarg);
340 if (logfile[0] == '\0') {
341 fprintf(stderr, "No log filename specified.\n");
342 cli_classic_abort_usage();
343 }
344#endif /* STANDALONE */
345 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000346 default:
Uwe Hermann2db77a02010-06-04 17:07:39 +0000347 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000348 break;
349 }
350 }
351
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000352 if (optind < argc) {
353 fprintf(stderr, "Error: Extra parameter found.\n");
354 cli_classic_abort_usage();
355 }
356
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000357 if ((read_it | write_it | verify_it) && check_filename(filename, "image")) {
358 cli_classic_abort_usage();
359 }
360 if (layoutfile && check_filename(layoutfile, "layout")) {
361 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000362 }
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300363 if (referencefile && check_filename(referencefile, "reference")) {
364 cli_classic_abort_usage();
365 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000366
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000367#ifndef STANDALONE
368 if (logfile && check_filename(logfile, "log"))
369 cli_classic_abort_usage();
370 if (logfile && open_logfile(logfile))
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000371 cli_classic_abort_usage();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000372#endif /* !STANDALONE */
373
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000374#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000375 if (list_supported_wiki) {
376 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000377 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000378 }
379#endif
380
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000381 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000382 if (print_supported())
383 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000384 goto out;
385 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000386
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000387#ifndef STANDALONE
388 start_logging();
389#endif /* !STANDALONE */
390
391 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000392 msg_gdbg("Command line (%i args):", argc - 1);
393 for (i = 0; i < argc; i++) {
394 msg_gdbg(" %s", argv[i]);
395 }
396 msg_gdbg("\n");
397
398 if (layoutfile && read_romlayout(layoutfile)) {
399 ret = 1;
400 goto out;
401 }
Nico Huber305f4172013-06-14 11:55:26 +0200402 if (!ifd && process_include_args(get_global_layout())) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000403 ret = 1;
404 goto out;
405 }
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000406 /* Does a chip with the requested name exist in the flashchips array? */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000407 if (chip_to_probe) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000408 for (chip = flashchips; chip && chip->name; chip++)
409 if (!strcmp(chip->name, chip_to_probe))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000410 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000411 if (!chip || !chip->name) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000412 msg_cerr("Error: Unknown chip '%s' specified.\n", chip_to_probe);
413 msg_gerr("Run flashrom -L to view the hardware supported in this flashrom version.\n");
414 ret = 1;
415 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000416 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000417 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000418 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000419
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000420 if (prog == PROGRAMMER_INVALID) {
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000421 if (CONFIG_DEFAULT_PROGRAMMER != PROGRAMMER_INVALID) {
422 prog = CONFIG_DEFAULT_PROGRAMMER;
Stefan Tauner265fcac2014-06-02 00:12:23 +0000423 /* We need to strdup here because we free(pparam) unconditionally later. */
424 pparam = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
425 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
426 programmer_table[CONFIG_DEFAULT_PROGRAMMER].name, pparam);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000427 } else {
428 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000429 "Previously this was not necessary because there was a default set.\n"
430#if CONFIG_INTERNAL == 1
431 "To choose the mainboard of this computer use 'internal'. "
432#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000433 "Valid choices are:\n");
434 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000435 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000436 ret = 1;
437 goto out;
438 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000439 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000440
Carl-Daniel Hailfinger49884202010-05-22 07:10:46 +0000441 /* FIXME: Delay calibration should happen in programmer code. */
442 myusec_calibrate_delay();
443
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000444 if (programmer_init(prog, pparam)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000445 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000446 ret = 1;
447 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000448 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000449 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000450 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000451 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000452
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000453 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000454 startchip = 0;
Michael Karcher222bf102011-12-22 23:27:03 +0000455 while (chipcount < ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000456 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000457 if (startchip == -1)
458 break;
459 chipcount++;
460 startchip++;
461 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000462 }
463
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000464 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000465 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
466 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000467 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000468 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000469 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000470 ret = 1;
471 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000472 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000473 msg_cinfo("No EEPROM/flash device found.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000474 if (!force || !chip_to_probe) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000475 msg_cinfo("Note: flashrom can never write if the flash chip isn't found "
476 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000477 }
478 if (force && read_it && chip_to_probe) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000479 struct registered_master *mst;
480 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000481 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000482 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000483 for (j = 0; j < registered_master_count; j++) {
484 mst = &registered_masters[j];
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000485 /* chip is still set from the chip_to_probe earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000486 if (mst->buses_supported & chip->bustype)
487 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000488 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000489 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000490 msg_cinfo("No compatible controller found for the requested flash chip.\n");
491 ret = 1;
492 goto out_shutdown;
493 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000494 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000495 msg_cinfo("More than one compatible controller found for the requested flash "
496 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000497 for (j = 0; j < registered_master_count; j++) {
498 mst = &registered_masters[j];
499 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000500 if (startchip != -1)
501 break;
502 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000503 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000504 // FIXME: This should never happen! Ask for a bug report?
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000505 msg_cinfo("Probing for flash chip '%s' failed.\n", chip_to_probe);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000506 ret = 1;
507 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000508 }
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000509 if (map_flash(&flashes[0]) != 0) {
510 free(flashes[0].chip);
511 ret = 1;
512 goto out_shutdown;
513 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000514 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
515 ret = read_flash_to_file(&flashes[0], filename);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000516 unmap_flash(&flashes[0]);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000517 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000518 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000519 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000520 ret = 1;
521 goto out_shutdown;
Stefan Tauner1d947632011-09-11 22:08:58 +0000522 } else if (!chip_to_probe) {
523 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000524 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000525 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000526 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000527 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000528 }
529
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000530 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000531
Stefan Tauner9b32de92014-08-08 23:52:33 +0000532 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000533
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000534 unsigned int limitexceeded = count_max_decode_exceedings(fill_flash);
535 if (limitexceeded > 0 && !force) {
536 enum chipbustype commonbuses = fill_flash->mst->buses_supported & fill_flash->chip->bustype;
537
538 /* Sometimes chip and programmer have more than one bus in common,
539 * and the limit is not exceeded on all buses. Tell the user. */
540 if ((bitcount(commonbuses) > limitexceeded)) {
541 msg_pdbg("There is at least one interface available which could support the size of\n"
542 "the selected flash chip.\n");
543 }
544 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
545 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000546 ret = 1;
547 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000548 }
549
550 if (!(read_it | write_it | verify_it | erase_it)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000551 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000552 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000553 }
554
Nico Huber305f4172013-06-14 11:55:26 +0200555 if (layoutfile) {
556 layout = get_global_layout();
557 } else if (ifd && (flashrom_layout_read_from_ifd(&layout, fill_flash, NULL, 0) ||
558 process_include_args(layout))) {
559 ret = 1;
560 goto out_shutdown;
561 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000562
Nico Huber305f4172013-06-14 11:55:26 +0200563 flashrom_layout_set(fill_flash, layout);
Nico Huber899e4ec2016-04-29 18:39:01 +0200564 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE, !!force);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300565#if CONFIG_INTERNAL == 1
Nico Huber899e4ec2016-04-29 18:39:01 +0200566 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE_BOARDMISMATCH, !!force_boardmismatch);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300567#endif
Nico Huber899e4ec2016-04-29 18:39:01 +0200568 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_AFTER_WRITE, !dont_verify_it);
Nico Huber99d15952016-05-02 16:54:24 +0200569 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_WHOLE_CHIP, !dont_verify_all);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000570
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000571 /* FIXME: We should issue an unconditional chip reset here. This can be
572 * done once we have a .reset function in struct flashchip.
573 * Give the chip time to settle.
574 */
575 programmer_delay(100000);
Nico Huber899e4ec2016-04-29 18:39:01 +0200576 if (read_it)
577 ret = do_read(fill_flash, filename);
578 else if (erase_it)
579 ret = do_erase(fill_flash);
580 else if (write_it)
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300581 ret = do_write(fill_flash, filename, referencefile);
Nico Huber899e4ec2016-04-29 18:39:01 +0200582 else if (verify_it)
583 ret = do_verify(fill_flash, filename);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000584
Nico Huber305f4172013-06-14 11:55:26 +0200585 flashrom_layout_release(layout);
586
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000587out_shutdown:
588 programmer_shutdown();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000589out:
Stefan Taunerb8911d62012-12-26 07:55:00 +0000590 for (i = 0; i < chipcount; i++)
591 free(flashes[i].chip);
592
Stefan Tauner949ccc82013-09-15 14:01:06 +0000593 layout_cleanup();
Stefan Taunerb8911d62012-12-26 07:55:00 +0000594 free(filename);
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300595 free(referencefile);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000596 free(layoutfile);
597 free(pparam);
598 /* clean up global variables */
Nico Huberbcb2e5a2012-12-30 01:23:17 +0000599 free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000600 chip_to_probe = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000601#ifndef STANDALONE
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000602 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000603 ret |= close_logfile();
604#endif /* !STANDALONE */
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000605 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000606}