blob: 701c3f5df1c77fcafee453a6c98e7a30c7fb1704 [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>
Jack Rosenthal85777562021-04-09 10:03:14 -060024#include <stdbool.h>
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000025#include <stdlib.h>
26#include <getopt.h>
27#include "flash.h"
28#include "flashchips.h"
Arthur Heymansc82900b2018-01-10 12:48:16 +010029#include "fmap.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000030#include "programmer.h"
Nico Huberc3b02dc2023-08-12 01:13:45 +020031#include "libflashprog.h"
Nico Huber34e783a2023-02-11 00:30:27 +010032#include "cli.h"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000033
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000034static void cli_classic_usage(const char *name)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000035{
Stefan Taunerb226cb12012-11-24 18:59:39 +000036 printf("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
Edward O'Callaghan16ec45c2019-10-04 20:24:53 +100040 "\n\t-p <programmername>[:<parameters>] [-c <chipname>]\n"
41 "\t\t(--flash-name|--flash-size|\n"
42 "\t\t [-E|(-r|-w|-v) <file>]\n"
43 "\t\t [(-l <layoutfile>|--ifd| --fmap|--fmap-file <file>) [-i <imagename>]...]\n"
44 "\t\t [-n] [-N] [-f])]\n"
45 "\t[-V[V[V]]] [-o <logfile>]\n\n", name);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000046
Stefan Taunerb226cb12012-11-24 18:59:39 +000047 printf(" -h | --help print this help text\n"
48 " -R | --version print version (release)\n"
49 " -r | --read <file> read flash and save to <file>\n"
Daniel Campellod12b6bc2022-03-14 11:43:16 -060050 " -w | --write (<file>|-) write <file> or the content provided\n"
Daniel Campello8eaef7d2021-04-15 10:36:04 -060051 " on the standard input to flash\n"
Daniel Campellod12b6bc2022-03-14 11:43:16 -060052 " -v | --verify (<file>|-) verify flash against <file>\n"
Daniel Campello8eaef7d2021-04-15 10:36:04 -060053 " or the content provided on the standard input\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000054 " -E | --erase erase flash memory\n"
55 " -V | --verbose more verbose output\n"
56 " -c | --chip <chipname> probe only for specified flash chip\n"
57 " -f | --force force specific operations (see man page)\n"
58 " -n | --noverify don't auto-verify\n"
Nico Huber99d15952016-05-02 16:54:24 +020059 " -N | --noverify-all verify included regions only (cf. -i)\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000060 " -l | --layout <layoutfile> read ROM layout from <layoutfile>\n"
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +100061 " --flash-name read out the detected flash name\n"
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +100062 " --flash-size read out the detected flash size\n"
Arthur Heymansc82900b2018-01-10 12:48:16 +010063 " --fmap read ROM layout from fmap embedded in ROM\n"
64 " --fmap-file <fmapfile> read ROM layout from fmap in <fmapfile>\n"
Nico Huber305f4172013-06-14 11:55:26 +020065 " --ifd read layout from an Intel Firmware Descriptor\n"
Anastasia Klimchuka7cb7e92022-11-25 18:10:43 +110066 " -i | --include <region> only read/write image <region> from layout\n"
67 " --image <region> deprecated, please use --include\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000068 " -o | --output <logfile> log output to <logfile>\n"
Paul Kocialkowskif701f342018-01-15 01:10:36 +030069 " --flash-contents <ref-file> assume flash contents to be <ref-file>\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000070 " -L | --list-supported print supported devices\n"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000071#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000072 " -z | --list-supported-wiki print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000073#endif
Richard Hughes842d6782021-01-15 09:48:12 +000074 " --progress show progress percentage on the standard output\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000075 " -p | --programmer <name>[:<param>] specify the programmer device. One of\n");
76 list_programmers_linebreak(4, 80, 0);
77 printf(".\n\nYou can specify one of -h, -R, -L, "
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000078#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000079 "-z, "
80#endif
81 "-E, -r, -w, -v or no operation.\n"
Nico Huberc3b02dc2023-08-12 01:13:45 +020082 "If no operation is specified, flashprog will only probe for flash chips.\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000083}
84
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100085static void cli_classic_abort_usage(const char *msg)
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000086{
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100087 if (msg)
88 fprintf(stderr, "%s", msg);
Nico Huberc3b02dc2023-08-12 01:13:45 +020089 printf("Please run \"flashprog --help\" for usage info.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000090 exit(1);
91}
92
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100093static void cli_classic_validate_singleop(int *operation_specified)
94{
95 if (++(*operation_specified) > 1) {
96 cli_classic_abort_usage("More than one operation specified. Aborting.\n");
97 }
98}
99
Jack Rosenthal85777562021-04-09 10:03:14 -0600100/* Ensure a file is open by means of fstat */
101static bool check_file(FILE *file)
102{
Jack Rosenthal85777562021-04-09 10:03:14 -0600103 struct stat statbuf;
104
105 if (fstat(fileno(file), &statbuf) < 0)
106 return false;
Jack Rosenthal85777562021-04-09 10:03:14 -0600107 return true;
108}
109
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100110static int do_read(struct flashctx *const flash, const char *const filename)
111{
112 int ret;
113
Nico Huberc3b02dc2023-08-12 01:13:45 +0200114 unsigned long size = flashprog_flash_getsize(flash);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100115 unsigned char *buf = calloc(size, sizeof(unsigned char));
116 if (!buf) {
117 msg_gerr("Memory allocation failed!\n");
118 return 1;
119 }
120
Nico Huberc3b02dc2023-08-12 01:13:45 +0200121 ret = flashprog_image_read(flash, buf, size);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100122 if (ret > 0)
123 goto free_out;
124
125 ret = write_buf_to_file(buf, size, filename);
126
127free_out:
128 free(buf);
129 return ret;
130}
131
132static int do_write(struct flashctx *const flash, const char *const filename, const char *const referencefile)
133{
Nico Huberc3b02dc2023-08-12 01:13:45 +0200134 const size_t flash_size = flashprog_flash_getsize(flash);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100135 int ret = 1;
136
137 uint8_t *const newcontents = malloc(flash_size);
138 uint8_t *const refcontents = referencefile ? malloc(flash_size) : NULL;
139
140 if (!newcontents || (referencefile && !refcontents)) {
141 msg_gerr("Out of memory!\n");
142 goto _free_ret;
143 }
144
145 if (read_buf_from_file(newcontents, flash_size, filename))
146 goto _free_ret;
147
148 if (referencefile) {
149 if (read_buf_from_file(refcontents, flash_size, referencefile))
150 goto _free_ret;
151 }
152
Nico Huberc3b02dc2023-08-12 01:13:45 +0200153 ret = flashprog_image_write(flash, newcontents, flash_size, refcontents);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100154
155_free_ret:
156 free(refcontents);
157 free(newcontents);
158 return ret;
159}
160
161static int do_verify(struct flashctx *const flash, const char *const filename)
162{
Nico Huberc3b02dc2023-08-12 01:13:45 +0200163 const size_t flash_size = flashprog_flash_getsize(flash);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100164 int ret = 1;
165
166 uint8_t *const newcontents = malloc(flash_size);
167 if (!newcontents) {
168 msg_gerr("Out of memory!\n");
169 goto _free_ret;
170 }
171
172 if (read_buf_from_file(newcontents, flash_size, filename))
173 goto _free_ret;
174
Nico Huberc3b02dc2023-08-12 01:13:45 +0200175 ret = flashprog_image_verify(flash, newcontents, flash_size);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100176
177_free_ret:
178 free(newcontents);
179 return ret;
180}
181
Nico Huber89569d62023-01-12 23:31:40 +0100182/* Returns true if the flash chip cannot be completely accessed due to size/address limits of the programmer. */
183static bool max_decode_exceeded(const struct registered_master *const mst, const struct flashctx *const flash)
Edward O'Callaghanaba36582022-09-05 11:09:28 +1000184{
Nico Huber89569d62023-01-12 23:31:40 +0100185 if (flashprog_flash_getsize(flash) <= mst->max_rom_decode)
186 return false;
Edward O'Callaghanaba36582022-09-05 11:09:28 +1000187
Nico Huber89569d62023-01-12 23:31:40 +0100188 msg_pdbg("Chip size %u kB is bigger than supported size %zu kB of\n"
189 "chipset/board/programmer for memory-mapped interface, probe/read/erase/write\n"
190 "may fail.\n", flash->chip->total_size, mst->max_rom_decode / KiB);
191 return true;
Edward O'Callaghanaba36582022-09-05 11:09:28 +1000192}
193
Uwe Hermann394ee782011-08-20 14:14:22 +0000194int main(int argc, char *argv[])
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000195{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000196 const struct flashchip *chip = NULL;
Jernej Å krabece814a9b2014-12-12 00:32:03 +0000197 /* Probe for up to eight flash chips. */
198 struct flashctx flashes[8] = {{0}};
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000199 struct flashctx *fill_flash;
Nico Hubere68b08b2023-02-11 00:00:54 +0100200 int opt, i, j;
Felix Singer2a768e42022-05-22 02:04:18 +0200201 int startchip = -1, chipcount = 0, option_index = 0;
202 int operation_specified = 0;
Nico Huberd91822a2023-02-11 00:43:54 +0100203 bool force = false;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000204#if CONFIG_PRINT_WIKI == 1
Felix Singer2a768e42022-05-22 02:04:18 +0200205 bool list_supported_wiki = false;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000206#endif
Felix Singer2a768e42022-05-22 02:04:18 +0200207 bool flash_name = false, flash_size = false;
208 bool read_it = false, write_it = false, erase_it = false, verify_it = false;
209 bool dont_verify_it = false, dont_verify_all = false;
210 bool list_supported = false;
Richard Hughes842d6782021-01-15 09:48:12 +0000211 bool show_progress = false;
Nico Huberc3b02dc2023-08-12 01:13:45 +0200212 struct flashprog_layout *layout = NULL;
Nico Hubere68b08b2023-02-11 00:00:54 +0100213 struct flashprog_programmer *prog = NULL;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000214 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000215
Nico Huber99d15952016-05-02 16:54:24 +0200216 static const char optstring[] = "r:Rw:v:nNVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000217 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000218 {"read", 1, NULL, 'r'},
219 {"write", 1, NULL, 'w'},
220 {"erase", 0, NULL, 'E'},
221 {"verify", 1, NULL, 'v'},
222 {"noverify", 0, NULL, 'n'},
Nico Huber99d15952016-05-02 16:54:24 +0200223 {"noverify-all", 0, NULL, 'N'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000224 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000225 {"verbose", 0, NULL, 'V'},
226 {"force", 0, NULL, 'f'},
227 {"layout", 1, NULL, 'l'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300228 {"ifd", 0, NULL, OPTION_IFD},
Arthur Heymansc82900b2018-01-10 12:48:16 +0100229 {"fmap", 0, NULL, OPTION_FMAP},
230 {"fmap-file", 1, NULL, OPTION_FMAP_FILE},
Anastasia Klimchuka7cb7e92022-11-25 18:10:43 +1100231 {"image", 1, NULL, 'i'}, // (deprecated): back compatibility.
232 {"include", 1, NULL, 'i'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300233 {"flash-contents", 1, NULL, OPTION_FLASH_CONTENTS},
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000234 {"flash-name", 0, NULL, OPTION_FLASH_NAME},
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000235 {"flash-size", 0, NULL, OPTION_FLASH_SIZE},
236 {"get-size", 0, NULL, OPTION_FLASH_SIZE}, // (deprecated): back compatibility.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000237 {"list-supported", 0, NULL, 'L'},
238 {"list-supported-wiki", 0, NULL, 'z'},
239 {"programmer", 1, NULL, 'p'},
240 {"help", 0, NULL, 'h'},
241 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000242 {"output", 1, NULL, 'o'},
Richard Hughes842d6782021-01-15 09:48:12 +0000243 {"progress", 0, NULL, OPTION_PROGRESS},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000244 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000245 };
246
247 char *filename = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300248 char *referencefile = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000249 char *logfile = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000250 char *tempstr = NULL;
Nico Huber34e783a2023-02-11 00:30:27 +0100251 struct flash_args flash_args = { 0 };
Nico Huberd91822a2023-02-11 00:43:54 +0100252 struct layout_args layout_args = { 0 };
Arthur Heymansb04fef92019-02-05 17:35:05 +0100253 struct layout_include_args *include_args = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000254
Jack Rosenthal85777562021-04-09 10:03:14 -0600255 /*
256 * Safety-guard against a user who has (mistakenly) closed
Nico Huberc3b02dc2023-08-12 01:13:45 +0200257 * stdout or stderr before exec'ing flashprog. We disable
Jack Rosenthal85777562021-04-09 10:03:14 -0600258 * logging in this case to prevent writing log data to a flash
259 * chip when a flash device gets opened with fd 1 or 2.
260 */
261 if (check_file(stdout) && check_file(stderr)) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200262 flashprog_set_log_callback(
263 (flashprog_log_callback *)&flashprog_print_cb);
Jack Rosenthal85777562021-04-09 10:03:14 -0600264 }
Nico Huber18781102012-12-10 13:34:12 +0000265
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000266 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000267 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000268
Edward O'Callaghand58496b2022-02-03 12:52:02 +1100269 /* FIXME: Delay calibration should happen in programmer code. */
Nico Huberc3b02dc2023-08-12 01:13:45 +0200270 if (flashprog_init(1))
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000271 exit(1);
272
273 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000274 /* FIXME: Delay all operation_specified checks until after command
275 * line parsing to allow --help overriding everything else.
276 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000277 while ((opt = getopt_long(argc, argv, optstring,
278 long_options, &option_index)) != EOF) {
279 switch (opt) {
280 case 'r':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000281 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000282 filename = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200283 read_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000284 break;
285 case 'w':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000286 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000287 filename = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200288 write_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000289 break;
290 case 'v':
291 //FIXME: gracefully handle superfluous -v
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000292 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000293 if (dont_verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000294 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000295 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000296 filename = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200297 verify_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000298 break;
299 case 'n':
300 if (verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000301 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000302 }
Felix Singer2a768e42022-05-22 02:04:18 +0200303 dont_verify_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000304 break;
Nico Huber99d15952016-05-02 16:54:24 +0200305 case 'N':
Felix Singer2a768e42022-05-22 02:04:18 +0200306 dont_verify_all = true;
Nico Huber99d15952016-05-02 16:54:24 +0200307 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000308 case 'c':
Nico Huber34e783a2023-02-11 00:30:27 +0100309 case 'p':
310 ret = cli_parse_flash_args(&flash_args, opt, optarg);
311 if (ret == 1)
312 cli_classic_abort_usage(NULL);
313 else if (ret)
314 exit(1);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000315 break;
316 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000317 verbose_screen++;
Nico Huberc3b02dc2023-08-12 01:13:45 +0200318 if (verbose_screen > FLASHPROG_MSG_DEBUG2)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000319 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000320 break;
321 case 'E':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000322 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200323 erase_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000324 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000325 case 'f':
Felix Singer2a768e42022-05-22 02:04:18 +0200326 force = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000327 break;
Nico Huberd91822a2023-02-11 00:43:54 +0100328 case OPTION_LAYOUT:
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300329 case OPTION_IFD:
Arthur Heymansc82900b2018-01-10 12:48:16 +0100330 case OPTION_FMAP:
Nico Huberd91822a2023-02-11 00:43:54 +0100331 case OPTION_FMAP_FILE:
332 ret = cli_parse_layout_args(&layout_args, opt, optarg);
333 if (ret == 1)
334 cli_classic_abort_usage(NULL);
335 else if (ret)
336 exit(1);
Arthur Heymansc82900b2018-01-10 12:48:16 +0100337 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000338 case 'i':
339 tempstr = strdup(optarg);
Arthur Heymansb04fef92019-02-05 17:35:05 +0100340 if (register_include_arg(&include_args, tempstr)) {
Stefan Taunerb8911d62012-12-26 07:55:00 +0000341 free(tempstr);
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000342 cli_classic_abort_usage(NULL);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000343 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000344 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300345 case OPTION_FLASH_CONTENTS:
Angel Ponsa60f6412020-03-31 15:02:02 +0200346 if (referencefile)
347 cli_classic_abort_usage("Error: --flash-contents specified more than once."
348 "Aborting.\n");
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300349 referencefile = strdup(optarg);
350 break;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000351 case OPTION_FLASH_NAME:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000352 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200353 flash_name = true;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000354 break;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000355 case OPTION_FLASH_SIZE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000356 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200357 flash_size = true;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000358 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000359 case 'L':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000360 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200361 list_supported = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000362 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000363 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000364#if CONFIG_PRINT_WIKI == 1
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000365 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200366 list_supported_wiki = true;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000367#else
Idwer Vollering40407b62020-12-08 00:24:39 +0100368 cli_classic_abort_usage("Error: Wiki output was not "
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000369 "compiled in. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000370#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000371 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000372 case 'R':
373 /* print_version() is always called during startup. */
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000374 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000375 exit(0);
376 break;
377 case 'h':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000378 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000379 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000380 exit(0);
381 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000382 case 'o':
Elyes HAOUASef78de42019-07-18 15:08:10 +0200383 if (logfile) {
384 fprintf(stderr, "Warning: -o/--output specified multiple times.\n");
385 free(logfile);
386 }
387
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000388 logfile = strdup(optarg);
389 if (logfile[0] == '\0') {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000390 cli_classic_abort_usage("No log filename specified.\n");
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000391 }
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000392 break;
Richard Hughes842d6782021-01-15 09:48:12 +0000393 case OPTION_PROGRESS:
394 show_progress = true;
395 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000396 default:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000397 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000398 break;
399 }
400 }
401
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000402 if (optind < argc)
403 cli_classic_abort_usage("Error: Extra parameter found.\n");
Nico Huberd91822a2023-02-11 00:43:54 +0100404 if ((read_it | write_it | verify_it) && cli_check_filename(filename, "image"))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000405 cli_classic_abort_usage(NULL);
Nico Huberd91822a2023-02-11 00:43:54 +0100406 if (referencefile && cli_check_filename(referencefile, "reference"))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000407 cli_classic_abort_usage(NULL);
Nico Huberd91822a2023-02-11 00:43:54 +0100408 if (logfile && cli_check_filename(logfile, "log"))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000409 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000410 if (logfile && open_logfile(logfile))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000411 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000412
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000413#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000414 if (list_supported_wiki) {
415 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000416 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000417 }
418#endif
419
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000420 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000421 if (print_supported())
422 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000423 goto out;
424 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000425
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000426 start_logging();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000427
428 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000429 msg_gdbg("Command line (%i args):", argc - 1);
430 for (i = 0; i < argc; i++) {
431 msg_gdbg(" %s", argv[i]);
432 }
433 msg_gdbg("\n");
434
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000435 /* Does a chip with the requested name exist in the flashchips array? */
Nico Huber34e783a2023-02-11 00:30:27 +0100436 if (flash_args.chip) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000437 for (chip = flashchips; chip && chip->name; chip++)
Nico Huber34e783a2023-02-11 00:30:27 +0100438 if (!strcmp(chip->name, flash_args.chip))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000439 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000440 if (!chip || !chip->name) {
Nico Huber34e783a2023-02-11 00:30:27 +0100441 msg_cerr("Error: Unknown chip '%s' specified.\n", flash_args.chip);
Nico Huberc3b02dc2023-08-12 01:13:45 +0200442 msg_gerr("Run flashprog -L to view the hardware supported in this flashprog version.\n");
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000443 ret = 1;
444 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000445 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000446 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000447 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000448
Nico Huber34e783a2023-02-11 00:30:27 +0100449 if (flash_args.prog_name == NULL) {
Nico Hubere68b08b2023-02-11 00:00:54 +0100450 const char *const default_programmer = CONFIG_DEFAULT_PROGRAMMER_NAME;
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200451
Nico Hubere68b08b2023-02-11 00:00:54 +0100452 if (default_programmer[0]) {
453 /* We need to strdup here because we free() unconditionally later. */
Nico Huber34e783a2023-02-11 00:30:27 +0100454 flash_args.prog_name = strdup(default_programmer);
455 flash_args.prog_args = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
456 if (!flash_args.prog_name || !flash_args.prog_args) {
Nico Hubere68b08b2023-02-11 00:00:54 +0100457 fprintf(stderr, "Out of memory!\n");
458 ret = 1;
459 goto out;
460 }
Stefan Tauner265fcac2014-06-02 00:12:23 +0000461 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
Nico Huber34e783a2023-02-11 00:30:27 +0100462 flash_args.prog_name, flash_args.prog_args);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000463 } else {
464 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000465#if CONFIG_INTERNAL == 1
466 "To choose the mainboard of this computer use 'internal'. "
467#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000468 "Valid choices are:\n");
469 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000470 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000471 ret = 1;
472 goto out;
473 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000474 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000475
Nico Huber34e783a2023-02-11 00:30:27 +0100476 if (flashprog_programmer_init(&prog, flash_args.prog_name, flash_args.prog_args)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000477 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000478 ret = 1;
Nico Huber2b66ad92023-01-11 20:15:15 +0100479 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000480 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000481 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000482 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000483 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000484
Nico Huber34e783a2023-02-11 00:30:27 +0100485 chip_to_probe = flash_args.chip;
Nico Huber89569d62023-01-12 23:31:40 +0100486 struct registered_master *matched_master = NULL;
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000487 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000488 startchip = 0;
Nico Huber519be662018-12-23 20:03:35 +0100489 while (chipcount < (int)ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000490 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000491 if (startchip == -1)
492 break;
Nico Huber89569d62023-01-12 23:31:40 +0100493 if (chipcount == 0)
494 matched_master = &registered_masters[j];
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000495 chipcount++;
496 startchip++;
497 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000498 }
499
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000500 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000501 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
502 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000503 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000504 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000505 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000506 ret = 1;
507 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000508 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000509 msg_cinfo("No EEPROM/flash device found.\n");
Nico Huber34e783a2023-02-11 00:30:27 +0100510 if (!force || !flash_args.chip) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200511 msg_cinfo("Note: flashprog can never write if the flash chip isn't found "
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000512 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000513 }
Nico Huber34e783a2023-02-11 00:30:27 +0100514 if (force && read_it && flash_args.chip) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000515 struct registered_master *mst;
516 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000517 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000518 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000519 for (j = 0; j < registered_master_count; j++) {
520 mst = &registered_masters[j];
Nico Huber34e783a2023-02-11 00:30:27 +0100521 /* chip is still set from the search earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000522 if (mst->buses_supported & chip->bustype)
523 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000524 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000525 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000526 msg_cinfo("No compatible controller found for the requested flash chip.\n");
527 ret = 1;
528 goto out_shutdown;
529 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000530 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000531 msg_cinfo("More than one compatible controller found for the requested flash "
532 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000533 for (j = 0; j < registered_master_count; j++) {
534 mst = &registered_masters[j];
535 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000536 if (startchip != -1)
537 break;
538 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000539 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000540 // FIXME: This should never happen! Ask for a bug report?
Nico Huber34e783a2023-02-11 00:30:27 +0100541 msg_cinfo("Probing for flash chip '%s' failed.\n", flash_args.chip);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000542 ret = 1;
543 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000544 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000545 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
Nico Huberc3b02dc2023-08-12 01:13:45 +0200546 flashprog_flag_set(&flashes[0], FLASHPROG_FLAG_FORCE, force);
Edward O'Callaghan2d170412021-11-15 15:47:15 +1100547 ret = do_read(&flashes[0], filename);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000548 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000549 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000550 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000551 ret = 1;
552 goto out_shutdown;
Nico Huber34e783a2023-02-11 00:30:27 +0100553 } else if (!flash_args.chip) {
Stefan Tauner1d947632011-09-11 22:08:58 +0000554 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000555 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000556 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000557 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000558 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000559 }
560
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000561 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000562
Richard Hughes842d6782021-01-15 09:48:12 +0000563 if (show_progress)
564 flashprog_set_progress_callback(fill_flash, &flashprog_progress_cb, NULL);
565
Stefan Tauner9b32de92014-08-08 23:52:33 +0000566 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000567
Nico Huber89569d62023-01-12 23:31:40 +0100568 if (max_decode_exceeded(matched_master, fill_flash) && !force) {
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000569 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
570 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000571 ret = 1;
572 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000573 }
574
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000575 if (!(read_it | write_it | verify_it | erase_it | flash_name | flash_size)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000576 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000577 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000578 }
579
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000580 if (flash_name) {
581 if (fill_flash->chip->vendor && fill_flash->chip->name) {
582 printf("vendor=\"%s\" name=\"%s\"\n",
583 fill_flash->chip->vendor,
584 fill_flash->chip->name);
585 } else {
586 ret = -1;
587 }
588 goto out_shutdown;
589 }
590
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000591 if (flash_size) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200592 printf("%zu\n", flashprog_flash_getsize(fill_flash));
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000593 goto out_shutdown;
594 }
595
Nico Huber0da839b2023-02-11 01:40:07 +0100596 ret = cli_process_layout_args(&layout, fill_flash, &layout_args);
597 if (ret)
Nico Huber305f4172013-06-14 11:55:26 +0200598 goto out_shutdown;
Nico Huber0da839b2023-02-11 01:40:07 +0100599 ret = process_include_args(layout, include_args);
600 if (ret)
Arthur Heymansc82900b2018-01-10 12:48:16 +0100601 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000602
Nico Huberc3b02dc2023-08-12 01:13:45 +0200603 flashprog_layout_set(fill_flash, layout);
604 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_FORCE, force);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300605#if CONFIG_INTERNAL == 1
Nico Huberc3b02dc2023-08-12 01:13:45 +0200606 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_FORCE_BOARDMISMATCH, force_boardmismatch);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300607#endif
Nico Huberc3b02dc2023-08-12 01:13:45 +0200608 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_VERIFY_AFTER_WRITE, !dont_verify_it);
609 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_VERIFY_WHOLE_CHIP, !dont_verify_all);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000610
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000611 /* FIXME: We should issue an unconditional chip reset here. This can be
612 * done once we have a .reset function in struct flashchip.
613 * Give the chip time to settle.
614 */
615 programmer_delay(100000);
Nico Huber899e4ec2016-04-29 18:39:01 +0200616 if (read_it)
617 ret = do_read(fill_flash, filename);
Edward O'Callaghanc72d20a2021-12-13 12:30:03 +1100618 else if (erase_it) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200619 ret = flashprog_flash_erase(fill_flash);
Edward O'Callaghanc72d20a2021-12-13 12:30:03 +1100620 /*
621 * FIXME: Do we really want the scary warning if erase failed?
622 * After all, after erase the chip is either blank or partially
623 * blank or it has the old contents. A blank chip won't boot,
624 * so if the user wanted erase and reboots afterwards, the user
625 * knows very well that booting won't work.
626 */
627 if (ret)
628 emergency_help_message();
629 }
Nico Huber899e4ec2016-04-29 18:39:01 +0200630 else if (write_it)
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300631 ret = do_write(fill_flash, filename, referencefile);
Nico Huber899e4ec2016-04-29 18:39:01 +0200632 else if (verify_it)
633 ret = do_verify(fill_flash, filename);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000634
Nico Huberc3b02dc2023-08-12 01:13:45 +0200635 flashprog_layout_release(layout);
Nico Huber305f4172013-06-14 11:55:26 +0200636
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000637out_shutdown:
Nico Hubere68b08b2023-02-11 00:00:54 +0100638 flashprog_programmer_shutdown(prog);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000639out:
Nico Huber5bd990c2019-06-16 19:46:46 +0200640 for (i = 0; i < chipcount; i++) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200641 flashprog_layout_release(flashes[i].default_layout);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000642 free(flashes[i].chip);
Nico Huber5bd990c2019-06-16 19:46:46 +0200643 }
Stefan Taunerb8911d62012-12-26 07:55:00 +0000644
Nico Huber345f65a2021-05-14 01:11:08 +0200645 cleanup_include_args(&include_args);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000646 free(filename);
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300647 free(referencefile);
Nico Huberd91822a2023-02-11 00:43:54 +0100648 free(layout_args.fmapfile);
649 free(layout_args.layoutfile);
Nico Huber34e783a2023-02-11 00:30:27 +0100650 free(flash_args.prog_args);
651 free(flash_args.prog_name);
652 free(flash_args.chip);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000653 /* clean up global variables */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000654 chip_to_probe = NULL;
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000655 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000656 ret |= close_logfile();
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000657 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000658}