blob: de6ce04b7492c1305f2c50b2fefa00718a1845f4 [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
Edward O'Callaghan16ec45c2019-10-04 20:24:53 +100038 "\n\t-p <programmername>[:<parameters>] [-c <chipname>]\n"
39 "\t\t(--flash-name|--flash-size|\n"
40 "\t\t [-E|(-r|-w|-v) <file>]\n"
41 "\t\t [(-l <layoutfile>|--ifd| --fmap|--fmap-file <file>) [-i <imagename>]...]\n"
42 "\t\t [-n] [-N] [-f])]\n"
43 "\t[-V[V[V]]] [-o <logfile>]\n\n", name);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000044
Stefan Taunerb226cb12012-11-24 18:59:39 +000045 printf(" -h | --help print this help text\n"
46 " -R | --version print version (release)\n"
47 " -r | --read <file> read flash and save to <file>\n"
48 " -w | --write <file> write <file> to flash\n"
49 " -v | --verify <file> verify flash against <file>\n"
50 " -E | --erase erase flash memory\n"
51 " -V | --verbose more verbose output\n"
52 " -c | --chip <chipname> probe only for specified flash chip\n"
53 " -f | --force force specific operations (see man page)\n"
54 " -n | --noverify don't auto-verify\n"
Nico Huber99d15952016-05-02 16:54:24 +020055 " -N | --noverify-all verify included regions only (cf. -i)\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000056 " -l | --layout <layoutfile> read ROM layout from <layoutfile>\n"
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +100057 " --flash-name read out the detected flash name\n"
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +100058 " --flash-size read out the detected flash size\n"
Arthur Heymansc82900b2018-01-10 12:48:16 +010059 " --fmap read ROM layout from fmap embedded in ROM\n"
60 " --fmap-file <fmapfile> read ROM layout from fmap in <fmapfile>\n"
Nico Huber305f4172013-06-14 11:55:26 +020061 " --ifd read layout from an Intel Firmware Descriptor\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000062 " -i | --image <name> only flash image <name> from flash layout\n"
63 " -o | --output <logfile> log output to <logfile>\n"
Paul Kocialkowskif701f342018-01-15 01:10:36 +030064 " --flash-contents <ref-file> assume flash contents to be <ref-file>\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000065 " -L | --list-supported print supported devices\n"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000066#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000067 " -z | --list-supported-wiki print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000068#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000069 " -p | --programmer <name>[:<param>] specify the programmer device. One of\n");
70 list_programmers_linebreak(4, 80, 0);
71 printf(".\n\nYou can specify one of -h, -R, -L, "
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000072#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000073 "-z, "
74#endif
75 "-E, -r, -w, -v or no operation.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000076 "If no operation is specified, flashrom will only probe for flash chips.\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000077}
78
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000079static void cli_classic_abort_usage(void)
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000080{
Uwe Hermann2db77a02010-06-04 17:07:39 +000081 printf("Please run \"flashrom --help\" for usage info.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000082 exit(1);
83}
84
Jacob Garber4a84ec22019-07-25 19:12:31 -060085static int check_filename(char *filename, const char *type)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +000086{
87 if (!filename || (filename[0] == '\0')) {
88 fprintf(stderr, "Error: No %s file specified.\n", type);
89 return 1;
90 }
91 /* Not an error, but maybe the user intended to specify a CLI option instead of a file name. */
92 if (filename[0] == '-')
93 fprintf(stderr, "Warning: Supplied %s file name starts with -\n", type);
94 return 0;
95}
96
Uwe Hermann394ee782011-08-20 14:14:22 +000097int main(int argc, char *argv[])
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000098{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000099 const struct flashchip *chip = NULL;
Jernej Škrabece814a9b2014-12-12 00:32:03 +0000100 /* Probe for up to eight flash chips. */
101 struct flashctx flashes[8] = {{0}};
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000102 struct flashctx *fill_flash;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000103 const char *name;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000104 int namelen, opt, i, j;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100105 int startchip = -1, chipcount = 0, option_index = 0, force = 0, ifd = 0, fmap = 0;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000106#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000107 int list_supported_wiki = 0;
108#endif
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000109 int flash_name = 0, flash_size = 0;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000110 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
Nico Huber99d15952016-05-02 16:54:24 +0200111 int dont_verify_it = 0, dont_verify_all = 0, list_supported = 0, operation_specified = 0;
Nico Huber305f4172013-06-14 11:55:26 +0200112 struct flashrom_layout *layout = NULL;
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000113 enum programmer prog = PROGRAMMER_INVALID;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300114 enum {
115 OPTION_IFD = 0x0100,
Arthur Heymansc82900b2018-01-10 12:48:16 +0100116 OPTION_FMAP,
117 OPTION_FMAP_FILE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300118 OPTION_FLASH_CONTENTS,
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000119 OPTION_FLASH_NAME,
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000120 OPTION_FLASH_SIZE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300121 };
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000122 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000123
Nico Huber99d15952016-05-02 16:54:24 +0200124 static const char optstring[] = "r:Rw:v:nNVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000125 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000126 {"read", 1, NULL, 'r'},
127 {"write", 1, NULL, 'w'},
128 {"erase", 0, NULL, 'E'},
129 {"verify", 1, NULL, 'v'},
130 {"noverify", 0, NULL, 'n'},
Nico Huber99d15952016-05-02 16:54:24 +0200131 {"noverify-all", 0, NULL, 'N'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000132 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000133 {"verbose", 0, NULL, 'V'},
134 {"force", 0, NULL, 'f'},
135 {"layout", 1, NULL, 'l'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300136 {"ifd", 0, NULL, OPTION_IFD},
Arthur Heymansc82900b2018-01-10 12:48:16 +0100137 {"fmap", 0, NULL, OPTION_FMAP},
138 {"fmap-file", 1, NULL, OPTION_FMAP_FILE},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000139 {"image", 1, NULL, 'i'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300140 {"flash-contents", 1, NULL, OPTION_FLASH_CONTENTS},
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000141 {"flash-name", 0, NULL, OPTION_FLASH_NAME},
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000142 {"flash-size", 0, NULL, OPTION_FLASH_SIZE},
143 {"get-size", 0, NULL, OPTION_FLASH_SIZE}, // (deprecated): back compatibility.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000144 {"list-supported", 0, NULL, 'L'},
145 {"list-supported-wiki", 0, NULL, 'z'},
146 {"programmer", 1, NULL, 'p'},
147 {"help", 0, NULL, 'h'},
148 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000149 {"output", 1, NULL, 'o'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000150 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000151 };
152
153 char *filename = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300154 char *referencefile = NULL;
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000155 char *layoutfile = NULL;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100156 char *fmapfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000157#ifndef STANDALONE
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000158 char *logfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000159#endif /* !STANDALONE */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000160 char *tempstr = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000161 char *pparam = NULL;
Arthur Heymansb04fef92019-02-05 17:35:05 +0100162 struct layout_include_args *include_args = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000163
Nico Huber18781102012-12-10 13:34:12 +0000164 flashrom_set_log_callback((flashrom_log_callback *)&flashrom_print_cb);
165
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000166 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000167 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000168
169 if (selfcheck())
170 exit(1);
171
172 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000173 /* FIXME: Delay all operation_specified checks until after command
174 * line parsing to allow --help overriding everything else.
175 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000176 while ((opt = getopt_long(argc, argv, optstring,
177 long_options, &option_index)) != EOF) {
178 switch (opt) {
179 case 'r':
180 if (++operation_specified > 1) {
181 fprintf(stderr, "More than one operation "
182 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000183 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000184 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000185 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000186 read_it = 1;
187 break;
188 case 'w':
189 if (++operation_specified > 1) {
190 fprintf(stderr, "More than one operation "
191 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000192 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000193 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000194 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000195 write_it = 1;
196 break;
197 case 'v':
198 //FIXME: gracefully handle superfluous -v
199 if (++operation_specified > 1) {
200 fprintf(stderr, "More than one operation "
201 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000202 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000203 }
204 if (dont_verify_it) {
Stefan Taunerc4f44df2013-08-12 22:58:43 +0000205 fprintf(stderr, "--verify and --noverify are mutually exclusive. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000206 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000207 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000208 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000209 verify_it = 1;
210 break;
211 case 'n':
212 if (verify_it) {
Stefan Taunerc4f44df2013-08-12 22:58:43 +0000213 fprintf(stderr, "--verify and --noverify are mutually exclusive. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000214 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000215 }
216 dont_verify_it = 1;
217 break;
Nico Huber99d15952016-05-02 16:54:24 +0200218 case 'N':
219 dont_verify_all = 1;
220 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000221 case 'c':
222 chip_to_probe = strdup(optarg);
223 break;
224 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000225 verbose_screen++;
Nico Huberd152fb92017-06-19 12:57:10 +0200226 if (verbose_screen > FLASHROM_MSG_DEBUG2)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000227 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000228 break;
229 case 'E':
230 if (++operation_specified > 1) {
231 fprintf(stderr, "More than one operation "
232 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000233 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000234 }
235 erase_it = 1;
236 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000237 case 'f':
238 force = 1;
239 break;
240 case 'l':
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000241 if (layoutfile) {
242 fprintf(stderr, "Error: --layout specified "
243 "more than once. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000244 cli_classic_abort_usage();
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000245 }
Nico Huber305f4172013-06-14 11:55:26 +0200246 if (ifd) {
247 fprintf(stderr, "Error: --layout and --ifd both specified. Aborting.\n");
248 cli_classic_abort_usage();
249 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100250 if (fmap) {
251 fprintf(stderr, "Error: --layout and --fmap-file both specified. Aborting.\n");
252 cli_classic_abort_usage();
253 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000254 layoutfile = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000255 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300256 case OPTION_IFD:
Nico Huber305f4172013-06-14 11:55:26 +0200257 if (layoutfile) {
258 fprintf(stderr, "Error: --layout and --ifd both specified. Aborting.\n");
259 cli_classic_abort_usage();
260 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100261 if (fmap) {
262 fprintf(stderr, "Error: --fmap-file and --ifd both specified. Aborting.\n");
263 cli_classic_abort_usage();
264 }
Nico Huber305f4172013-06-14 11:55:26 +0200265 ifd = 1;
266 break;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100267 case OPTION_FMAP_FILE:
268 if (fmap) {
269 fprintf(stderr, "Error: --fmap or --fmap-file specified "
270 "more than once. Aborting.\n");
271 cli_classic_abort_usage();
272 }
273 if (ifd) {
274 fprintf(stderr, "Error: --fmap-file and --ifd both specified. Aborting.\n");
275 cli_classic_abort_usage();
276 }
277 if (layoutfile) {
278 fprintf(stderr, "Error: --fmap-file and --layout both specified. Aborting.\n");
279 cli_classic_abort_usage();
280 }
281 fmapfile = strdup(optarg);
282 fmap = 1;
283 break;
284 case OPTION_FMAP:
285 if (fmap) {
286 fprintf(stderr, "Error: --fmap or --fmap-file specified "
287 "more than once. Aborting.\n");
288 cli_classic_abort_usage();
289 }
290 if (ifd) {
291 fprintf(stderr, "Error: --fmap and --ifd both specified. Aborting.\n");
292 cli_classic_abort_usage();
293 }
294 if (layoutfile) {
295 fprintf(stderr, "Error: --layout and --fmap both specified. Aborting.\n");
296 cli_classic_abort_usage();
297 }
298 fmap = 1;
299 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000300 case 'i':
301 tempstr = strdup(optarg);
Arthur Heymansb04fef92019-02-05 17:35:05 +0100302 if (register_include_arg(&include_args, tempstr)) {
Stefan Taunerb8911d62012-12-26 07:55:00 +0000303 free(tempstr);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000304 cli_classic_abort_usage();
Stefan Taunerb8911d62012-12-26 07:55:00 +0000305 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000306 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300307 case OPTION_FLASH_CONTENTS:
308 referencefile = strdup(optarg);
309 break;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000310 case OPTION_FLASH_NAME:
311 if (++operation_specified > 1) {
312 fprintf(stderr, "More than one operation "
313 "specified. Aborting.\n");
314 cli_classic_abort_usage();
315 }
316 flash_name = 1;
317 break;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000318 case OPTION_FLASH_SIZE:
319 if (++operation_specified > 1) {
320 fprintf(stderr, "More than one operation "
321 "specified. Aborting.\n");
322 cli_classic_abort_usage();
323 }
324 flash_size = 1;
325 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000326 case 'L':
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000327 if (++operation_specified > 1) {
328 fprintf(stderr, "More than one operation "
329 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000330 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000331 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000332 list_supported = 1;
333 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000334 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000335#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000336 if (++operation_specified > 1) {
337 fprintf(stderr, "More than one operation "
338 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000339 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000340 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000341 list_supported_wiki = 1;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000342#else
343 fprintf(stderr, "Error: Wiki output was not compiled "
344 "in. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000345 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000346#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000347 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000348 case 'p':
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000349 if (prog != PROGRAMMER_INVALID) {
350 fprintf(stderr, "Error: --programmer specified "
351 "more than once. You can separate "
352 "multiple\nparameters for a programmer "
353 "with \",\". Please see the man page "
354 "for details.\n");
355 cli_classic_abort_usage();
356 }
357 for (prog = 0; prog < PROGRAMMER_INVALID; prog++) {
358 name = programmer_table[prog].name;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000359 namelen = strlen(name);
360 if (strncmp(optarg, name, namelen) == 0) {
361 switch (optarg[namelen]) {
362 case ':':
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000363 pparam = strdup(optarg + namelen + 1);
364 if (!strlen(pparam)) {
365 free(pparam);
366 pparam = NULL;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000367 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000368 break;
369 case '\0':
370 break;
371 default:
372 /* The continue refers to the
373 * for loop. It is here to be
374 * able to differentiate between
375 * foo and foobar.
376 */
377 continue;
378 }
379 break;
380 }
381 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000382 if (prog == PROGRAMMER_INVALID) {
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000383 fprintf(stderr, "Error: Unknown programmer \"%s\". Valid choices are:\n",
384 optarg);
385 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000386 msg_ginfo(".\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000387 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000388 }
389 break;
390 case 'R':
391 /* print_version() is always called during startup. */
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000392 if (++operation_specified > 1) {
393 fprintf(stderr, "More than one operation "
394 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000395 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000396 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000397 exit(0);
398 break;
399 case 'h':
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000400 if (++operation_specified > 1) {
401 fprintf(stderr, "More than one operation "
402 "specified. Aborting.\n");
Uwe Hermann2db77a02010-06-04 17:07:39 +0000403 cli_classic_abort_usage();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000404 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000405 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000406 exit(0);
407 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000408 case 'o':
409#ifdef STANDALONE
410 fprintf(stderr, "Log file not supported in standalone mode. Aborting.\n");
411 cli_classic_abort_usage();
412#else /* STANDALONE */
Elyes HAOUASef78de42019-07-18 15:08:10 +0200413 if (logfile) {
414 fprintf(stderr, "Warning: -o/--output specified multiple times.\n");
415 free(logfile);
416 }
417
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000418 logfile = strdup(optarg);
419 if (logfile[0] == '\0') {
420 fprintf(stderr, "No log filename specified.\n");
421 cli_classic_abort_usage();
422 }
423#endif /* STANDALONE */
424 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000425 default:
Uwe Hermann2db77a02010-06-04 17:07:39 +0000426 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000427 break;
428 }
429 }
430
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000431 if (optind < argc) {
432 fprintf(stderr, "Error: Extra parameter found.\n");
433 cli_classic_abort_usage();
434 }
435
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000436 if ((read_it | write_it | verify_it) && check_filename(filename, "image")) {
437 cli_classic_abort_usage();
438 }
439 if (layoutfile && check_filename(layoutfile, "layout")) {
440 cli_classic_abort_usage();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000441 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100442 if (fmapfile && check_filename(fmapfile, "fmap")) {
443 cli_classic_abort_usage();
444 }
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300445 if (referencefile && check_filename(referencefile, "reference")) {
446 cli_classic_abort_usage();
447 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000448
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000449#ifndef STANDALONE
450 if (logfile && check_filename(logfile, "log"))
451 cli_classic_abort_usage();
452 if (logfile && open_logfile(logfile))
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000453 cli_classic_abort_usage();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000454#endif /* !STANDALONE */
455
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000456#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000457 if (list_supported_wiki) {
458 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000459 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000460 }
461#endif
462
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000463 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000464 if (print_supported())
465 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000466 goto out;
467 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000468
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000469#ifndef STANDALONE
470 start_logging();
471#endif /* !STANDALONE */
472
473 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000474 msg_gdbg("Command line (%i args):", argc - 1);
475 for (i = 0; i < argc; i++) {
476 msg_gdbg(" %s", argv[i]);
477 }
478 msg_gdbg("\n");
479
480 if (layoutfile && read_romlayout(layoutfile)) {
481 ret = 1;
482 goto out;
483 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100484
Arthur Heymansb04fef92019-02-05 17:35:05 +0100485 if (!ifd && !fmap && process_include_args(get_global_layout(), include_args)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000486 ret = 1;
487 goto out;
488 }
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000489 /* Does a chip with the requested name exist in the flashchips array? */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000490 if (chip_to_probe) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000491 for (chip = flashchips; chip && chip->name; chip++)
492 if (!strcmp(chip->name, chip_to_probe))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000493 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000494 if (!chip || !chip->name) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000495 msg_cerr("Error: Unknown chip '%s' specified.\n", chip_to_probe);
496 msg_gerr("Run flashrom -L to view the hardware supported in this flashrom version.\n");
497 ret = 1;
498 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000499 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000500 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000501 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000502
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000503 if (prog == PROGRAMMER_INVALID) {
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000504 if (CONFIG_DEFAULT_PROGRAMMER != PROGRAMMER_INVALID) {
505 prog = CONFIG_DEFAULT_PROGRAMMER;
Stefan Tauner265fcac2014-06-02 00:12:23 +0000506 /* We need to strdup here because we free(pparam) unconditionally later. */
507 pparam = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
508 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
509 programmer_table[CONFIG_DEFAULT_PROGRAMMER].name, pparam);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000510 } else {
511 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000512#if CONFIG_INTERNAL == 1
513 "To choose the mainboard of this computer use 'internal'. "
514#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000515 "Valid choices are:\n");
516 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000517 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000518 ret = 1;
519 goto out;
520 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000521 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000522
Carl-Daniel Hailfinger49884202010-05-22 07:10:46 +0000523 /* FIXME: Delay calibration should happen in programmer code. */
524 myusec_calibrate_delay();
525
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000526 if (programmer_init(prog, pparam)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000527 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000528 ret = 1;
529 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000530 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000531 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000532 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000533 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000534
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000535 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000536 startchip = 0;
Nico Huber519be662018-12-23 20:03:35 +0100537 while (chipcount < (int)ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000538 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000539 if (startchip == -1)
540 break;
541 chipcount++;
542 startchip++;
543 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000544 }
545
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000546 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000547 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
548 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000549 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000550 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000551 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000552 ret = 1;
553 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000554 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000555 msg_cinfo("No EEPROM/flash device found.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000556 if (!force || !chip_to_probe) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000557 msg_cinfo("Note: flashrom can never write if the flash chip isn't found "
558 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000559 }
560 if (force && read_it && chip_to_probe) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000561 struct registered_master *mst;
562 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000563 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000564 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000565 for (j = 0; j < registered_master_count; j++) {
566 mst = &registered_masters[j];
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000567 /* chip is still set from the chip_to_probe earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000568 if (mst->buses_supported & chip->bustype)
569 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000570 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000571 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000572 msg_cinfo("No compatible controller found for the requested flash chip.\n");
573 ret = 1;
574 goto out_shutdown;
575 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000576 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000577 msg_cinfo("More than one compatible controller found for the requested flash "
578 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000579 for (j = 0; j < registered_master_count; j++) {
580 mst = &registered_masters[j];
581 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000582 if (startchip != -1)
583 break;
584 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000585 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000586 // FIXME: This should never happen! Ask for a bug report?
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000587 msg_cinfo("Probing for flash chip '%s' failed.\n", chip_to_probe);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000588 ret = 1;
589 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000590 }
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000591 if (map_flash(&flashes[0]) != 0) {
592 free(flashes[0].chip);
593 ret = 1;
594 goto out_shutdown;
595 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000596 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
597 ret = read_flash_to_file(&flashes[0], filename);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000598 unmap_flash(&flashes[0]);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000599 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000600 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000601 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000602 ret = 1;
603 goto out_shutdown;
Stefan Tauner1d947632011-09-11 22:08:58 +0000604 } else if (!chip_to_probe) {
605 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000606 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000607 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000608 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000609 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000610 }
611
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000612 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000613
Stefan Tauner9b32de92014-08-08 23:52:33 +0000614 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000615
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000616 unsigned int limitexceeded = count_max_decode_exceedings(fill_flash);
617 if (limitexceeded > 0 && !force) {
618 enum chipbustype commonbuses = fill_flash->mst->buses_supported & fill_flash->chip->bustype;
619
620 /* Sometimes chip and programmer have more than one bus in common,
621 * and the limit is not exceeded on all buses. Tell the user. */
622 if ((bitcount(commonbuses) > limitexceeded)) {
623 msg_pdbg("There is at least one interface available which could support the size of\n"
624 "the selected flash chip.\n");
625 }
626 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
627 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000628 ret = 1;
629 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000630 }
631
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000632 if (!(read_it | write_it | verify_it | erase_it | flash_name | flash_size)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000633 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000634 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000635 }
636
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000637 if (flash_name) {
638 if (fill_flash->chip->vendor && fill_flash->chip->name) {
639 printf("vendor=\"%s\" name=\"%s\"\n",
640 fill_flash->chip->vendor,
641 fill_flash->chip->name);
642 } else {
643 ret = -1;
644 }
645 goto out_shutdown;
646 }
647
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000648 if (flash_size) {
649 printf("%d\n", fill_flash->chip->total_size * 1024);
650 goto out_shutdown;
651 }
652
Nico Huber305f4172013-06-14 11:55:26 +0200653 if (layoutfile) {
654 layout = get_global_layout();
655 } else if (ifd && (flashrom_layout_read_from_ifd(&layout, fill_flash, NULL, 0) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100656 process_include_args(layout, include_args))) {
Nico Huber305f4172013-06-14 11:55:26 +0200657 ret = 1;
658 goto out_shutdown;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100659 } else if (fmap && fmapfile) {
660 struct stat s;
661 if (stat(fmapfile, &s) != 0) {
662 msg_gerr("Failed to stat fmapfile \"%s\"\n", fmapfile);
663 ret = 1;
664 goto out_shutdown;
665 }
666
667 size_t fmapfile_size = s.st_size;
668 uint8_t *fmapfile_buffer = malloc(fmapfile_size);
669 if (!fmapfile_buffer) {
670 ret = 1;
671 goto out_shutdown;
672 }
673
674 if (read_buf_from_file(fmapfile_buffer, fmapfile_size, fmapfile)) {
675 ret = 1;
676 free(fmapfile_buffer);
677 goto out_shutdown;
678 }
679
680 if (flashrom_layout_read_fmap_from_buffer(&layout, fill_flash, fmapfile_buffer, fmapfile_size) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100681 process_include_args(layout, include_args)) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100682 ret = 1;
683 free(fmapfile_buffer);
684 goto out_shutdown;
685 }
686 free(fmapfile_buffer);
687 } else if (fmap && (flashrom_layout_read_fmap_from_rom(&layout, fill_flash, 0,
Arthur Heymansb04fef92019-02-05 17:35:05 +0100688 fill_flash->chip->total_size * 1024) || process_include_args(layout, include_args))) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100689 ret = 1;
690 goto out_shutdown;
Nico Huber305f4172013-06-14 11:55:26 +0200691 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000692
Nico Huber305f4172013-06-14 11:55:26 +0200693 flashrom_layout_set(fill_flash, layout);
Nico Huber899e4ec2016-04-29 18:39:01 +0200694 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE, !!force);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300695#if CONFIG_INTERNAL == 1
Nico Huber899e4ec2016-04-29 18:39:01 +0200696 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE_BOARDMISMATCH, !!force_boardmismatch);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300697#endif
Nico Huber899e4ec2016-04-29 18:39:01 +0200698 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_AFTER_WRITE, !dont_verify_it);
Nico Huber99d15952016-05-02 16:54:24 +0200699 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_WHOLE_CHIP, !dont_verify_all);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000700
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000701 /* FIXME: We should issue an unconditional chip reset here. This can be
702 * done once we have a .reset function in struct flashchip.
703 * Give the chip time to settle.
704 */
705 programmer_delay(100000);
Nico Huber899e4ec2016-04-29 18:39:01 +0200706 if (read_it)
707 ret = do_read(fill_flash, filename);
708 else if (erase_it)
709 ret = do_erase(fill_flash);
710 else if (write_it)
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300711 ret = do_write(fill_flash, filename, referencefile);
Nico Huber899e4ec2016-04-29 18:39:01 +0200712 else if (verify_it)
713 ret = do_verify(fill_flash, filename);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000714
Nico Huber305f4172013-06-14 11:55:26 +0200715 flashrom_layout_release(layout);
716
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000717out_shutdown:
718 programmer_shutdown();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000719out:
Stefan Taunerb8911d62012-12-26 07:55:00 +0000720 for (i = 0; i < chipcount; i++)
721 free(flashes[i].chip);
722
Arthur Heymansb04fef92019-02-05 17:35:05 +0100723 layout_cleanup(&include_args);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000724 free(filename);
Richard Hughes6eca7612018-12-19 15:40:27 +0000725 free(fmapfile);
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300726 free(referencefile);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000727 free(layoutfile);
728 free(pparam);
729 /* clean up global variables */
Nico Huberbcb2e5a2012-12-30 01:23:17 +0000730 free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000731 chip_to_probe = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000732#ifndef STANDALONE
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000733 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000734 ret |= close_logfile();
735#endif /* !STANDALONE */
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000736 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000737}