blob: d23298e9da302a1e9f50b5096213e033f20d0499 [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"
Arthur Heymansc82900b2018-01-10 12:48:16 +010028#include "fmap.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000029#include "programmer.h"
Nico Huber18781102012-12-10 13:34:12 +000030#include "libflashrom.h"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000031
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000032static void cli_classic_usage(const char *name)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000033{
Stefan Taunerb226cb12012-11-24 18:59:39 +000034 printf("Usage: %s [-h|-R|-L|"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000035#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000036 "-z|"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000037#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000038 "-p <programmername>[:<parameters>] [-c <chipname>]\n"
Nico Huber305f4172013-06-14 11:55:26 +020039 "[-E|(-r|-w|-v) <file>] [(-l <layoutfile>|--ifd) [-i <imagename>]...] [-n] [-N] [-f]]\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000040 "[-V[V[V]]] [-o <logfile>]\n\n", name);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000041
Stefan Taunerb226cb12012-11-24 18:59:39 +000042 printf(" -h | --help print this help text\n"
43 " -R | --version print version (release)\n"
44 " -r | --read <file> read flash and save to <file>\n"
45 " -w | --write <file> write <file> to flash\n"
46 " -v | --verify <file> verify flash against <file>\n"
47 " -E | --erase erase flash memory\n"
48 " -V | --verbose more verbose output\n"
49 " -c | --chip <chipname> probe only for specified flash chip\n"
50 " -f | --force force specific operations (see man page)\n"
51 " -n | --noverify don't auto-verify\n"
Nico Huber99d15952016-05-02 16:54:24 +020052 " -N | --noverify-all verify included regions only (cf. -i)\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000053 " -l | --layout <layoutfile> read ROM layout from <layoutfile>\n"
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +100054 " --flash-name read out the detected flash name\n"
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +100055 " --flash-size read out the detected flash size\n"
Arthur Heymansc82900b2018-01-10 12:48:16 +010056 " --fmap read ROM layout from fmap embedded in ROM\n"
57 " --fmap-file <fmapfile> read ROM layout from fmap in <fmapfile>\n"
Nico Huber305f4172013-06-14 11:55:26 +020058 " --ifd read layout from an Intel Firmware Descriptor\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000059 " -i | --image <name> only flash image <name> from flash layout\n"
60 " -o | --output <logfile> log output to <logfile>\n"
Paul Kocialkowskif701f342018-01-15 01:10:36 +030061 " --flash-contents <ref-file> assume flash contents to be <ref-file>\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000062 " -L | --list-supported print supported devices\n"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000063#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000064 " -z | --list-supported-wiki print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000065#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000066 " -p | --programmer <name>[:<param>] specify the programmer device. One of\n");
67 list_programmers_linebreak(4, 80, 0);
68 printf(".\n\nYou can specify one of -h, -R, -L, "
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000069#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000070 "-z, "
71#endif
72 "-E, -r, -w, -v or no operation.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000073 "If no operation is specified, flashrom will only probe for flash chips.\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000074}
75
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000076static void cli_classic_abort_usage(void)
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000077{
Uwe Hermann2db77a02010-06-04 17:07:39 +000078 printf("Please run \"flashrom --help\" for usage info.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000079 exit(1);
80}
81
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +000082static int check_filename(char *filename, char *type)
83{
84 if (!filename || (filename[0] == '\0')) {
85 fprintf(stderr, "Error: No %s file specified.\n", type);
86 return 1;
87 }
88 /* Not an error, but maybe the user intended to specify a CLI option instead of a file name. */
89 if (filename[0] == '-')
90 fprintf(stderr, "Warning: Supplied %s file name starts with -\n", type);
91 return 0;
92}
93
Uwe Hermann394ee782011-08-20 14:14:22 +000094int main(int argc, char *argv[])
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000095{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000096 const struct flashchip *chip = NULL;
Jernej Škrabece814a9b2014-12-12 00:32:03 +000097 /* Probe for up to eight flash chips. */
98 struct flashctx flashes[8] = {{0}};
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000099 struct flashctx *fill_flash;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000100 const char *name;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000101 int namelen, opt, i, j;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100102 int startchip = -1, chipcount = 0, option_index = 0, force = 0, ifd = 0, fmap = 0;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000103#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000104 int list_supported_wiki = 0;
105#endif
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000106 int flash_name = 0, flash_size = 0;
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;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300111 enum {
112 OPTION_IFD = 0x0100,
Arthur Heymansc82900b2018-01-10 12:48:16 +0100113 OPTION_FMAP,
114 OPTION_FMAP_FILE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300115 OPTION_FLASH_CONTENTS,
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000116 OPTION_FLASH_NAME,
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000117 OPTION_FLASH_SIZE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300118 };
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000119 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000120
Nico Huber99d15952016-05-02 16:54:24 +0200121 static const char optstring[] = "r:Rw:v:nNVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000122 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000123 {"read", 1, NULL, 'r'},
124 {"write", 1, NULL, 'w'},
125 {"erase", 0, NULL, 'E'},
126 {"verify", 1, NULL, 'v'},
127 {"noverify", 0, NULL, 'n'},
Nico Huber99d15952016-05-02 16:54:24 +0200128 {"noverify-all", 0, NULL, 'N'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000129 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000130 {"verbose", 0, NULL, 'V'},
131 {"force", 0, NULL, 'f'},
132 {"layout", 1, NULL, 'l'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300133 {"ifd", 0, NULL, OPTION_IFD},
Arthur Heymansc82900b2018-01-10 12:48:16 +0100134 {"fmap", 0, NULL, OPTION_FMAP},
135 {"fmap-file", 1, NULL, OPTION_FMAP_FILE},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000136 {"image", 1, NULL, 'i'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300137 {"flash-contents", 1, NULL, OPTION_FLASH_CONTENTS},
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000138 {"flash-name", 0, NULL, OPTION_FLASH_NAME},
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000139 {"flash-size", 0, NULL, OPTION_FLASH_SIZE},
140 {"get-size", 0, NULL, OPTION_FLASH_SIZE}, // (deprecated): back compatibility.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000141 {"list-supported", 0, NULL, 'L'},
142 {"list-supported-wiki", 0, NULL, 'z'},
143 {"programmer", 1, NULL, 'p'},
144 {"help", 0, NULL, 'h'},
145 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000146 {"output", 1, NULL, 'o'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000147 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000148 };
149
150 char *filename = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300151 char *referencefile = NULL;
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000152 char *layoutfile = NULL;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100153 char *fmapfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000154#ifndef STANDALONE
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000155 char *logfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000156#endif /* !STANDALONE */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000157 char *tempstr = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000158 char *pparam = NULL;
Arthur Heymansb04fef92019-02-05 17:35:05 +0100159 struct layout_include_args *include_args = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000160
Nico Huber18781102012-12-10 13:34:12 +0000161 flashrom_set_log_callback((flashrom_log_callback *)&flashrom_print_cb);
162
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000163 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000164 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000165
166 if (selfcheck())
167 exit(1);
168
169 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000170 /* FIXME: Delay all operation_specified checks until after command
171 * line parsing to allow --help overriding everything else.
172 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000173 while ((opt = getopt_long(argc, argv, optstring,
174 long_options, &option_index)) != EOF) {
175 switch (opt) {
176 case 'r':
177 if (++operation_specified > 1) {
178 fprintf(stderr, "More than one operation "
179 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000180 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000181 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000182 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000183 read_it = 1;
184 break;
185 case 'w':
186 if (++operation_specified > 1) {
187 fprintf(stderr, "More than one operation "
188 "specified. 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 write_it = 1;
193 break;
194 case 'v':
195 //FIXME: gracefully handle superfluous -v
196 if (++operation_specified > 1) {
197 fprintf(stderr, "More than one operation "
198 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000199 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000200 }
201 if (dont_verify_it) {
Stefan Taunerc4f44df2013-08-12 22:58:43 +0000202 fprintf(stderr, "--verify and --noverify are mutually exclusive. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000203 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000204 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000205 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000206 verify_it = 1;
207 break;
208 case 'n':
209 if (verify_it) {
Stefan Taunerc4f44df2013-08-12 22:58:43 +0000210 fprintf(stderr, "--verify and --noverify are mutually exclusive. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000211 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000212 }
213 dont_verify_it = 1;
214 break;
Nico Huber99d15952016-05-02 16:54:24 +0200215 case 'N':
216 dont_verify_all = 1;
217 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000218 case 'c':
219 chip_to_probe = strdup(optarg);
220 break;
221 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000222 verbose_screen++;
Nico Huberd152fb92017-06-19 12:57:10 +0200223 if (verbose_screen > FLASHROM_MSG_DEBUG2)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000224 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000225 break;
226 case 'E':
227 if (++operation_specified > 1) {
228 fprintf(stderr, "More than one operation "
229 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000230 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000231 }
232 erase_it = 1;
233 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000234 case 'f':
235 force = 1;
236 break;
237 case 'l':
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000238 if (layoutfile) {
239 fprintf(stderr, "Error: --layout specified "
240 "more than once. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000241 cli_classic_abort_usage();
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000242 }
Nico Huber305f4172013-06-14 11:55:26 +0200243 if (ifd) {
244 fprintf(stderr, "Error: --layout and --ifd both specified. Aborting.\n");
245 cli_classic_abort_usage();
246 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100247 if (fmap) {
248 fprintf(stderr, "Error: --layout and --fmap-file both specified. Aborting.\n");
249 cli_classic_abort_usage();
250 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000251 layoutfile = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000252 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300253 case OPTION_IFD:
Nico Huber305f4172013-06-14 11:55:26 +0200254 if (layoutfile) {
255 fprintf(stderr, "Error: --layout and --ifd both specified. Aborting.\n");
256 cli_classic_abort_usage();
257 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100258 if (fmap) {
259 fprintf(stderr, "Error: --fmap-file and --ifd both specified. Aborting.\n");
260 cli_classic_abort_usage();
261 }
Nico Huber305f4172013-06-14 11:55:26 +0200262 ifd = 1;
263 break;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100264 case OPTION_FMAP_FILE:
265 if (fmap) {
266 fprintf(stderr, "Error: --fmap or --fmap-file specified "
267 "more than once. Aborting.\n");
268 cli_classic_abort_usage();
269 }
270 if (ifd) {
271 fprintf(stderr, "Error: --fmap-file and --ifd both specified. Aborting.\n");
272 cli_classic_abort_usage();
273 }
274 if (layoutfile) {
275 fprintf(stderr, "Error: --fmap-file and --layout both specified. Aborting.\n");
276 cli_classic_abort_usage();
277 }
278 fmapfile = strdup(optarg);
279 fmap = 1;
280 break;
281 case OPTION_FMAP:
282 if (fmap) {
283 fprintf(stderr, "Error: --fmap or --fmap-file specified "
284 "more than once. Aborting.\n");
285 cli_classic_abort_usage();
286 }
287 if (ifd) {
288 fprintf(stderr, "Error: --fmap and --ifd both specified. Aborting.\n");
289 cli_classic_abort_usage();
290 }
291 if (layoutfile) {
292 fprintf(stderr, "Error: --layout and --fmap both specified. Aborting.\n");
293 cli_classic_abort_usage();
294 }
295 fmap = 1;
296 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000297 case 'i':
298 tempstr = strdup(optarg);
Arthur Heymansb04fef92019-02-05 17:35:05 +0100299 if (register_include_arg(&include_args, tempstr)) {
Stefan Taunerb8911d62012-12-26 07:55:00 +0000300 free(tempstr);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000301 cli_classic_abort_usage();
Stefan Taunerb8911d62012-12-26 07:55:00 +0000302 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000303 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300304 case OPTION_FLASH_CONTENTS:
305 referencefile = strdup(optarg);
306 break;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000307 case OPTION_FLASH_NAME:
308 if (++operation_specified > 1) {
309 fprintf(stderr, "More than one operation "
310 "specified. Aborting.\n");
311 cli_classic_abort_usage();
312 }
313 flash_name = 1;
314 break;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000315 case OPTION_FLASH_SIZE:
316 if (++operation_specified > 1) {
317 fprintf(stderr, "More than one operation "
318 "specified. Aborting.\n");
319 cli_classic_abort_usage();
320 }
321 flash_size = 1;
322 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000323 case 'L':
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000324 if (++operation_specified > 1) {
325 fprintf(stderr, "More than one operation "
326 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000327 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000328 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000329 list_supported = 1;
330 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000331 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000332#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000333 if (++operation_specified > 1) {
334 fprintf(stderr, "More than one operation "
335 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000336 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000337 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000338 list_supported_wiki = 1;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000339#else
340 fprintf(stderr, "Error: Wiki output was not compiled "
341 "in. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000342 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000343#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000344 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000345 case 'p':
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000346 if (prog != PROGRAMMER_INVALID) {
347 fprintf(stderr, "Error: --programmer specified "
348 "more than once. You can separate "
349 "multiple\nparameters for a programmer "
350 "with \",\". Please see the man page "
351 "for details.\n");
352 cli_classic_abort_usage();
353 }
354 for (prog = 0; prog < PROGRAMMER_INVALID; prog++) {
355 name = programmer_table[prog].name;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000356 namelen = strlen(name);
357 if (strncmp(optarg, name, namelen) == 0) {
358 switch (optarg[namelen]) {
359 case ':':
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000360 pparam = strdup(optarg + namelen + 1);
361 if (!strlen(pparam)) {
362 free(pparam);
363 pparam = NULL;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000364 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000365 break;
366 case '\0':
367 break;
368 default:
369 /* The continue refers to the
370 * for loop. It is here to be
371 * able to differentiate between
372 * foo and foobar.
373 */
374 continue;
375 }
376 break;
377 }
378 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000379 if (prog == PROGRAMMER_INVALID) {
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000380 fprintf(stderr, "Error: Unknown programmer \"%s\". Valid choices are:\n",
381 optarg);
382 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000383 msg_ginfo(".\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000384 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000385 }
386 break;
387 case 'R':
388 /* print_version() is always called during startup. */
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000389 if (++operation_specified > 1) {
390 fprintf(stderr, "More than one operation "
391 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000392 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000393 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000394 exit(0);
395 break;
396 case 'h':
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000397 if (++operation_specified > 1) {
398 fprintf(stderr, "More than one operation "
399 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000400 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000401 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000402 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000403 exit(0);
404 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000405 case 'o':
406#ifdef STANDALONE
407 fprintf(stderr, "Log file not supported in standalone mode. Aborting.\n");
408 cli_classic_abort_usage();
409#else /* STANDALONE */
Elyes HAOUASef78de42019-07-18 15:08:10 +0200410 if (logfile) {
411 fprintf(stderr, "Warning: -o/--output specified multiple times.\n");
412 free(logfile);
413 }
414
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000415 logfile = strdup(optarg);
416 if (logfile[0] == '\0') {
417 fprintf(stderr, "No log filename specified.\n");
418 cli_classic_abort_usage();
419 }
420#endif /* STANDALONE */
421 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000422 default:
Uwe Hermann2db77a02010-06-04 17:07:39 +0000423 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000424 break;
425 }
426 }
427
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000428 if (optind < argc) {
429 fprintf(stderr, "Error: Extra parameter found.\n");
430 cli_classic_abort_usage();
431 }
432
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000433 if ((read_it | write_it | verify_it) && check_filename(filename, "image")) {
434 cli_classic_abort_usage();
435 }
436 if (layoutfile && check_filename(layoutfile, "layout")) {
437 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000438 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100439 if (fmapfile && check_filename(fmapfile, "fmap")) {
440 cli_classic_abort_usage();
441 }
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300442 if (referencefile && check_filename(referencefile, "reference")) {
443 cli_classic_abort_usage();
444 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000445
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000446#ifndef STANDALONE
447 if (logfile && check_filename(logfile, "log"))
448 cli_classic_abort_usage();
449 if (logfile && open_logfile(logfile))
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000450 cli_classic_abort_usage();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000451#endif /* !STANDALONE */
452
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000453#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000454 if (list_supported_wiki) {
455 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000456 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000457 }
458#endif
459
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000460 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000461 if (print_supported())
462 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000463 goto out;
464 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000465
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000466#ifndef STANDALONE
467 start_logging();
468#endif /* !STANDALONE */
469
470 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000471 msg_gdbg("Command line (%i args):", argc - 1);
472 for (i = 0; i < argc; i++) {
473 msg_gdbg(" %s", argv[i]);
474 }
475 msg_gdbg("\n");
476
477 if (layoutfile && read_romlayout(layoutfile)) {
478 ret = 1;
479 goto out;
480 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100481
Arthur Heymansb04fef92019-02-05 17:35:05 +0100482 if (!ifd && !fmap && process_include_args(get_global_layout(), include_args)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000483 ret = 1;
484 goto out;
485 }
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000486 /* Does a chip with the requested name exist in the flashchips array? */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000487 if (chip_to_probe) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000488 for (chip = flashchips; chip && chip->name; chip++)
489 if (!strcmp(chip->name, chip_to_probe))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000490 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000491 if (!chip || !chip->name) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000492 msg_cerr("Error: Unknown chip '%s' specified.\n", chip_to_probe);
493 msg_gerr("Run flashrom -L to view the hardware supported in this flashrom version.\n");
494 ret = 1;
495 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000496 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000497 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000498 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000499
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000500 if (prog == PROGRAMMER_INVALID) {
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000501 if (CONFIG_DEFAULT_PROGRAMMER != PROGRAMMER_INVALID) {
502 prog = CONFIG_DEFAULT_PROGRAMMER;
Stefan Tauner265fcac2014-06-02 00:12:23 +0000503 /* We need to strdup here because we free(pparam) unconditionally later. */
504 pparam = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
505 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
506 programmer_table[CONFIG_DEFAULT_PROGRAMMER].name, pparam);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000507 } else {
508 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000509#if CONFIG_INTERNAL == 1
510 "To choose the mainboard of this computer use 'internal'. "
511#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000512 "Valid choices are:\n");
513 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000514 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000515 ret = 1;
516 goto out;
517 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000518 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000519
Carl-Daniel Hailfinger49884202010-05-22 07:10:46 +0000520 /* FIXME: Delay calibration should happen in programmer code. */
521 myusec_calibrate_delay();
522
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000523 if (programmer_init(prog, pparam)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000524 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000525 ret = 1;
526 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000527 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000528 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000529 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000530 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000531
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000532 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000533 startchip = 0;
Nico Huber519be662018-12-23 20:03:35 +0100534 while (chipcount < (int)ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000535 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000536 if (startchip == -1)
537 break;
538 chipcount++;
539 startchip++;
540 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000541 }
542
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000543 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000544 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
545 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000546 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000547 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000548 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000549 ret = 1;
550 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000551 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000552 msg_cinfo("No EEPROM/flash device found.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000553 if (!force || !chip_to_probe) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000554 msg_cinfo("Note: flashrom can never write if the flash chip isn't found "
555 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000556 }
557 if (force && read_it && chip_to_probe) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000558 struct registered_master *mst;
559 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000560 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000561 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000562 for (j = 0; j < registered_master_count; j++) {
563 mst = &registered_masters[j];
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000564 /* chip is still set from the chip_to_probe earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000565 if (mst->buses_supported & chip->bustype)
566 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000567 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000568 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000569 msg_cinfo("No compatible controller found for the requested flash chip.\n");
570 ret = 1;
571 goto out_shutdown;
572 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000573 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000574 msg_cinfo("More than one compatible controller found for the requested flash "
575 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000576 for (j = 0; j < registered_master_count; j++) {
577 mst = &registered_masters[j];
578 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000579 if (startchip != -1)
580 break;
581 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000582 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000583 // FIXME: This should never happen! Ask for a bug report?
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000584 msg_cinfo("Probing for flash chip '%s' failed.\n", chip_to_probe);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000585 ret = 1;
586 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000587 }
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000588 if (map_flash(&flashes[0]) != 0) {
589 free(flashes[0].chip);
590 ret = 1;
591 goto out_shutdown;
592 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000593 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
594 ret = read_flash_to_file(&flashes[0], filename);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000595 unmap_flash(&flashes[0]);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000596 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000597 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000598 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000599 ret = 1;
600 goto out_shutdown;
Stefan Tauner1d947632011-09-11 22:08:58 +0000601 } else if (!chip_to_probe) {
602 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000603 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000604 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000605 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000606 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000607 }
608
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000609 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000610
Stefan Tauner9b32de92014-08-08 23:52:33 +0000611 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000612
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000613 unsigned int limitexceeded = count_max_decode_exceedings(fill_flash);
614 if (limitexceeded > 0 && !force) {
615 enum chipbustype commonbuses = fill_flash->mst->buses_supported & fill_flash->chip->bustype;
616
617 /* Sometimes chip and programmer have more than one bus in common,
618 * and the limit is not exceeded on all buses. Tell the user. */
619 if ((bitcount(commonbuses) > limitexceeded)) {
620 msg_pdbg("There is at least one interface available which could support the size of\n"
621 "the selected flash chip.\n");
622 }
623 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
624 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000625 ret = 1;
626 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000627 }
628
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000629 if (!(read_it | write_it | verify_it | erase_it | flash_name | flash_size)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000630 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000631 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000632 }
633
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000634 if (flash_name) {
635 if (fill_flash->chip->vendor && fill_flash->chip->name) {
636 printf("vendor=\"%s\" name=\"%s\"\n",
637 fill_flash->chip->vendor,
638 fill_flash->chip->name);
639 } else {
640 ret = -1;
641 }
642 goto out_shutdown;
643 }
644
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000645 if (flash_size) {
646 printf("%d\n", fill_flash->chip->total_size * 1024);
647 goto out_shutdown;
648 }
649
Nico Huber305f4172013-06-14 11:55:26 +0200650 if (layoutfile) {
651 layout = get_global_layout();
652 } else if (ifd && (flashrom_layout_read_from_ifd(&layout, fill_flash, NULL, 0) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100653 process_include_args(layout, include_args))) {
Nico Huber305f4172013-06-14 11:55:26 +0200654 ret = 1;
655 goto out_shutdown;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100656 } else if (fmap && fmapfile) {
657 struct stat s;
658 if (stat(fmapfile, &s) != 0) {
659 msg_gerr("Failed to stat fmapfile \"%s\"\n", fmapfile);
660 ret = 1;
661 goto out_shutdown;
662 }
663
664 size_t fmapfile_size = s.st_size;
665 uint8_t *fmapfile_buffer = malloc(fmapfile_size);
666 if (!fmapfile_buffer) {
667 ret = 1;
668 goto out_shutdown;
669 }
670
671 if (read_buf_from_file(fmapfile_buffer, fmapfile_size, fmapfile)) {
672 ret = 1;
673 free(fmapfile_buffer);
674 goto out_shutdown;
675 }
676
677 if (flashrom_layout_read_fmap_from_buffer(&layout, fill_flash, fmapfile_buffer, fmapfile_size) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100678 process_include_args(layout, include_args)) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100679 ret = 1;
680 free(fmapfile_buffer);
681 goto out_shutdown;
682 }
683 free(fmapfile_buffer);
684 } else if (fmap && (flashrom_layout_read_fmap_from_rom(&layout, fill_flash, 0,
Arthur Heymansb04fef92019-02-05 17:35:05 +0100685 fill_flash->chip->total_size * 1024) || process_include_args(layout, include_args))) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100686 ret = 1;
687 goto out_shutdown;
Nico Huber305f4172013-06-14 11:55:26 +0200688 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000689
Nico Huber305f4172013-06-14 11:55:26 +0200690 flashrom_layout_set(fill_flash, layout);
Nico Huber899e4ec2016-04-29 18:39:01 +0200691 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE, !!force);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300692#if CONFIG_INTERNAL == 1
Nico Huber899e4ec2016-04-29 18:39:01 +0200693 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE_BOARDMISMATCH, !!force_boardmismatch);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300694#endif
Nico Huber899e4ec2016-04-29 18:39:01 +0200695 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_AFTER_WRITE, !dont_verify_it);
Nico Huber99d15952016-05-02 16:54:24 +0200696 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_WHOLE_CHIP, !dont_verify_all);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000697
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000698 /* FIXME: We should issue an unconditional chip reset here. This can be
699 * done once we have a .reset function in struct flashchip.
700 * Give the chip time to settle.
701 */
702 programmer_delay(100000);
Nico Huber899e4ec2016-04-29 18:39:01 +0200703 if (read_it)
704 ret = do_read(fill_flash, filename);
705 else if (erase_it)
706 ret = do_erase(fill_flash);
707 else if (write_it)
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300708 ret = do_write(fill_flash, filename, referencefile);
Nico Huber899e4ec2016-04-29 18:39:01 +0200709 else if (verify_it)
710 ret = do_verify(fill_flash, filename);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000711
Nico Huber305f4172013-06-14 11:55:26 +0200712 flashrom_layout_release(layout);
713
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000714out_shutdown:
715 programmer_shutdown();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000716out:
Stefan Taunerb8911d62012-12-26 07:55:00 +0000717 for (i = 0; i < chipcount; i++)
718 free(flashes[i].chip);
719
Arthur Heymansb04fef92019-02-05 17:35:05 +0100720 layout_cleanup(&include_args);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000721 free(filename);
Richard Hughes6eca7612018-12-19 15:40:27 +0000722 free(fmapfile);
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300723 free(referencefile);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000724 free(layoutfile);
725 free(pparam);
726 /* clean up global variables */
Nico Huberbcb2e5a2012-12-30 01:23:17 +0000727 free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000728 chip_to_probe = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000729#ifndef STANDALONE
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000730 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000731 ret |= close_logfile();
732#endif /* !STANDALONE */
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000733 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000734}