blob: ab5f8b18d9da39035b55362ce241a209669ad142 [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"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000032
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000033static void cli_classic_usage(const char *name)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000034{
Stefan Taunerb226cb12012-11-24 18:59:39 +000035 printf("Usage: %s [-h|-R|-L|"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000036#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000037 "-z|"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000038#endif
Edward O'Callaghan16ec45c2019-10-04 20:24:53 +100039 "\n\t-p <programmername>[:<parameters>] [-c <chipname>]\n"
40 "\t\t(--flash-name|--flash-size|\n"
41 "\t\t [-E|(-r|-w|-v) <file>]\n"
42 "\t\t [(-l <layoutfile>|--ifd| --fmap|--fmap-file <file>) [-i <imagename>]...]\n"
43 "\t\t [-n] [-N] [-f])]\n"
44 "\t[-V[V[V]]] [-o <logfile>]\n\n", name);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000045
Stefan Taunerb226cb12012-11-24 18:59:39 +000046 printf(" -h | --help print this help text\n"
47 " -R | --version print version (release)\n"
48 " -r | --read <file> read flash and save to <file>\n"
Daniel Campellod12b6bc2022-03-14 11:43:16 -060049 " -w | --write (<file>|-) write <file> or the content provided\n"
Daniel Campello8eaef7d2021-04-15 10:36:04 -060050 " on the standard input to flash\n"
Daniel Campellod12b6bc2022-03-14 11:43:16 -060051 " -v | --verify (<file>|-) verify flash against <file>\n"
Daniel Campello8eaef7d2021-04-15 10:36:04 -060052 " or the content provided on the standard input\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000053 " -E | --erase erase flash memory\n"
54 " -V | --verbose more verbose output\n"
55 " -c | --chip <chipname> probe only for specified flash chip\n"
56 " -f | --force force specific operations (see man page)\n"
57 " -n | --noverify don't auto-verify\n"
Nico Huber99d15952016-05-02 16:54:24 +020058 " -N | --noverify-all verify included regions only (cf. -i)\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000059 " -l | --layout <layoutfile> read ROM layout from <layoutfile>\n"
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +100060 " --flash-name read out the detected flash name\n"
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +100061 " --flash-size read out the detected flash size\n"
Arthur Heymansc82900b2018-01-10 12:48:16 +010062 " --fmap read ROM layout from fmap embedded in ROM\n"
63 " --fmap-file <fmapfile> read ROM layout from fmap in <fmapfile>\n"
Nico Huber305f4172013-06-14 11:55:26 +020064 " --ifd read layout from an Intel Firmware Descriptor\n"
Anastasia Klimchuka7cb7e92022-11-25 18:10:43 +110065 " -i | --include <region> only read/write image <region> from layout\n"
66 " --image <region> deprecated, please use --include\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000067 " -o | --output <logfile> log output to <logfile>\n"
Paul Kocialkowskif701f342018-01-15 01:10:36 +030068 " --flash-contents <ref-file> assume flash contents to be <ref-file>\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000069 " -L | --list-supported print supported devices\n"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000070#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000071 " -z | --list-supported-wiki print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000072#endif
Richard Hughes842d6782021-01-15 09:48:12 +000073 " --progress show progress percentage on the standard output\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000074 " -p | --programmer <name>[:<param>] specify the programmer device. One of\n");
75 list_programmers_linebreak(4, 80, 0);
76 printf(".\n\nYou can specify one of -h, -R, -L, "
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000077#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000078 "-z, "
79#endif
80 "-E, -r, -w, -v or no operation.\n"
Nico Huberc3b02dc2023-08-12 01:13:45 +020081 "If no operation is specified, flashprog will only probe for flash chips.\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000082}
83
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100084static void cli_classic_abort_usage(const char *msg)
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000085{
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100086 if (msg)
87 fprintf(stderr, "%s", msg);
Nico Huberc3b02dc2023-08-12 01:13:45 +020088 printf("Please run \"flashprog --help\" for usage info.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000089 exit(1);
90}
91
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100092static void cli_classic_validate_singleop(int *operation_specified)
93{
94 if (++(*operation_specified) > 1) {
95 cli_classic_abort_usage("More than one operation specified. Aborting.\n");
96 }
97}
98
Jacob Garber4a84ec22019-07-25 19:12:31 -060099static int check_filename(char *filename, const char *type)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000100{
101 if (!filename || (filename[0] == '\0')) {
102 fprintf(stderr, "Error: No %s file specified.\n", type);
103 return 1;
104 }
105 /* Not an error, but maybe the user intended to specify a CLI option instead of a file name. */
Daniel Campello8eaef7d2021-04-15 10:36:04 -0600106 if (filename[0] == '-' && filename[1] != '\0')
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000107 fprintf(stderr, "Warning: Supplied %s file name starts with -\n", type);
108 return 0;
109}
110
Jack Rosenthal85777562021-04-09 10:03:14 -0600111/* Ensure a file is open by means of fstat */
112static bool check_file(FILE *file)
113{
Jack Rosenthal85777562021-04-09 10:03:14 -0600114 struct stat statbuf;
115
116 if (fstat(fileno(file), &statbuf) < 0)
117 return false;
Jack Rosenthal85777562021-04-09 10:03:14 -0600118 return true;
119}
120
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100121static int do_read(struct flashctx *const flash, const char *const filename)
122{
123 int ret;
124
Nico Huberc3b02dc2023-08-12 01:13:45 +0200125 unsigned long size = flashprog_flash_getsize(flash);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100126 unsigned char *buf = calloc(size, sizeof(unsigned char));
127 if (!buf) {
128 msg_gerr("Memory allocation failed!\n");
129 return 1;
130 }
131
Nico Huberc3b02dc2023-08-12 01:13:45 +0200132 ret = flashprog_image_read(flash, buf, size);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100133 if (ret > 0)
134 goto free_out;
135
136 ret = write_buf_to_file(buf, size, filename);
137
138free_out:
139 free(buf);
140 return ret;
141}
142
143static int do_write(struct flashctx *const flash, const char *const filename, const char *const referencefile)
144{
Nico Huberc3b02dc2023-08-12 01:13:45 +0200145 const size_t flash_size = flashprog_flash_getsize(flash);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100146 int ret = 1;
147
148 uint8_t *const newcontents = malloc(flash_size);
149 uint8_t *const refcontents = referencefile ? malloc(flash_size) : NULL;
150
151 if (!newcontents || (referencefile && !refcontents)) {
152 msg_gerr("Out of memory!\n");
153 goto _free_ret;
154 }
155
156 if (read_buf_from_file(newcontents, flash_size, filename))
157 goto _free_ret;
158
159 if (referencefile) {
160 if (read_buf_from_file(refcontents, flash_size, referencefile))
161 goto _free_ret;
162 }
163
Nico Huberc3b02dc2023-08-12 01:13:45 +0200164 ret = flashprog_image_write(flash, newcontents, flash_size, refcontents);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100165
166_free_ret:
167 free(refcontents);
168 free(newcontents);
169 return ret;
170}
171
172static int do_verify(struct flashctx *const flash, const char *const filename)
173{
Nico Huberc3b02dc2023-08-12 01:13:45 +0200174 const size_t flash_size = flashprog_flash_getsize(flash);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100175 int ret = 1;
176
177 uint8_t *const newcontents = malloc(flash_size);
178 if (!newcontents) {
179 msg_gerr("Out of memory!\n");
180 goto _free_ret;
181 }
182
183 if (read_buf_from_file(newcontents, flash_size, filename))
184 goto _free_ret;
185
Nico Huberc3b02dc2023-08-12 01:13:45 +0200186 ret = flashprog_image_verify(flash, newcontents, flash_size);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100187
188_free_ret:
189 free(newcontents);
190 return ret;
191}
192
Nico Huber89569d62023-01-12 23:31:40 +0100193/* Returns true if the flash chip cannot be completely accessed due to size/address limits of the programmer. */
194static bool max_decode_exceeded(const struct registered_master *const mst, const struct flashctx *const flash)
Edward O'Callaghanaba36582022-09-05 11:09:28 +1000195{
Nico Huber89569d62023-01-12 23:31:40 +0100196 if (flashprog_flash_getsize(flash) <= mst->max_rom_decode)
197 return false;
Edward O'Callaghanaba36582022-09-05 11:09:28 +1000198
Nico Huber89569d62023-01-12 23:31:40 +0100199 msg_pdbg("Chip size %u kB is bigger than supported size %zu kB of\n"
200 "chipset/board/programmer for memory-mapped interface, probe/read/erase/write\n"
201 "may fail.\n", flash->chip->total_size, mst->max_rom_decode / KiB);
202 return true;
Edward O'Callaghanaba36582022-09-05 11:09:28 +1000203}
204
Uwe Hermann394ee782011-08-20 14:14:22 +0000205int main(int argc, char *argv[])
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000206{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000207 const struct flashchip *chip = NULL;
Jernej Å krabece814a9b2014-12-12 00:32:03 +0000208 /* Probe for up to eight flash chips. */
209 struct flashctx flashes[8] = {{0}};
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000210 struct flashctx *fill_flash;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000211 const char *name;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000212 int namelen, opt, i, j;
Felix Singer2a768e42022-05-22 02:04:18 +0200213 int startchip = -1, chipcount = 0, option_index = 0;
214 int operation_specified = 0;
215 bool force = false, ifd = false, fmap = false;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000216#if CONFIG_PRINT_WIKI == 1
Felix Singer2a768e42022-05-22 02:04:18 +0200217 bool list_supported_wiki = false;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000218#endif
Felix Singer2a768e42022-05-22 02:04:18 +0200219 bool flash_name = false, flash_size = false;
220 bool read_it = false, write_it = false, erase_it = false, verify_it = false;
221 bool dont_verify_it = false, dont_verify_all = false;
222 bool list_supported = false;
Richard Hughes842d6782021-01-15 09:48:12 +0000223 bool show_progress = false;
Nico Huberc3b02dc2023-08-12 01:13:45 +0200224 struct flashprog_layout *layout = NULL;
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200225 static const struct programmer_entry *prog = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300226 enum {
227 OPTION_IFD = 0x0100,
Arthur Heymansc82900b2018-01-10 12:48:16 +0100228 OPTION_FMAP,
229 OPTION_FMAP_FILE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300230 OPTION_FLASH_CONTENTS,
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000231 OPTION_FLASH_NAME,
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000232 OPTION_FLASH_SIZE,
Richard Hughes842d6782021-01-15 09:48:12 +0000233 OPTION_PROGRESS,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300234 };
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000235 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000236
Nico Huber99d15952016-05-02 16:54:24 +0200237 static const char optstring[] = "r:Rw:v:nNVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000238 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000239 {"read", 1, NULL, 'r'},
240 {"write", 1, NULL, 'w'},
241 {"erase", 0, NULL, 'E'},
242 {"verify", 1, NULL, 'v'},
243 {"noverify", 0, NULL, 'n'},
Nico Huber99d15952016-05-02 16:54:24 +0200244 {"noverify-all", 0, NULL, 'N'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000245 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000246 {"verbose", 0, NULL, 'V'},
247 {"force", 0, NULL, 'f'},
248 {"layout", 1, NULL, 'l'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300249 {"ifd", 0, NULL, OPTION_IFD},
Arthur Heymansc82900b2018-01-10 12:48:16 +0100250 {"fmap", 0, NULL, OPTION_FMAP},
251 {"fmap-file", 1, NULL, OPTION_FMAP_FILE},
Anastasia Klimchuka7cb7e92022-11-25 18:10:43 +1100252 {"image", 1, NULL, 'i'}, // (deprecated): back compatibility.
253 {"include", 1, NULL, 'i'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300254 {"flash-contents", 1, NULL, OPTION_FLASH_CONTENTS},
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000255 {"flash-name", 0, NULL, OPTION_FLASH_NAME},
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000256 {"flash-size", 0, NULL, OPTION_FLASH_SIZE},
257 {"get-size", 0, NULL, OPTION_FLASH_SIZE}, // (deprecated): back compatibility.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000258 {"list-supported", 0, NULL, 'L'},
259 {"list-supported-wiki", 0, NULL, 'z'},
260 {"programmer", 1, NULL, 'p'},
261 {"help", 0, NULL, 'h'},
262 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000263 {"output", 1, NULL, 'o'},
Richard Hughes842d6782021-01-15 09:48:12 +0000264 {"progress", 0, NULL, OPTION_PROGRESS},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000265 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000266 };
267
268 char *filename = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300269 char *referencefile = NULL;
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000270 char *layoutfile = NULL;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100271 char *fmapfile = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000272 char *logfile = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000273 char *tempstr = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000274 char *pparam = NULL;
Arthur Heymansb04fef92019-02-05 17:35:05 +0100275 struct layout_include_args *include_args = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000276
Jack Rosenthal85777562021-04-09 10:03:14 -0600277 /*
278 * Safety-guard against a user who has (mistakenly) closed
Nico Huberc3b02dc2023-08-12 01:13:45 +0200279 * stdout or stderr before exec'ing flashprog. We disable
Jack Rosenthal85777562021-04-09 10:03:14 -0600280 * logging in this case to prevent writing log data to a flash
281 * chip when a flash device gets opened with fd 1 or 2.
282 */
283 if (check_file(stdout) && check_file(stderr)) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200284 flashprog_set_log_callback(
285 (flashprog_log_callback *)&flashprog_print_cb);
Jack Rosenthal85777562021-04-09 10:03:14 -0600286 }
Nico Huber18781102012-12-10 13:34:12 +0000287
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000288 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000289 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000290
Edward O'Callaghand58496b2022-02-03 12:52:02 +1100291 /* FIXME: Delay calibration should happen in programmer code. */
Nico Huberc3b02dc2023-08-12 01:13:45 +0200292 if (flashprog_init(1))
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000293 exit(1);
294
295 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000296 /* FIXME: Delay all operation_specified checks until after command
297 * line parsing to allow --help overriding everything else.
298 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000299 while ((opt = getopt_long(argc, argv, optstring,
300 long_options, &option_index)) != EOF) {
301 switch (opt) {
302 case 'r':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000303 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000304 filename = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200305 read_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000306 break;
307 case 'w':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000308 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000309 filename = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200310 write_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000311 break;
312 case 'v':
313 //FIXME: gracefully handle superfluous -v
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000314 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000315 if (dont_verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000316 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000317 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000318 filename = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200319 verify_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000320 break;
321 case 'n':
322 if (verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000323 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000324 }
Felix Singer2a768e42022-05-22 02:04:18 +0200325 dont_verify_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000326 break;
Nico Huber99d15952016-05-02 16:54:24 +0200327 case 'N':
Felix Singer2a768e42022-05-22 02:04:18 +0200328 dont_verify_all = true;
Nico Huber99d15952016-05-02 16:54:24 +0200329 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000330 case 'c':
331 chip_to_probe = strdup(optarg);
332 break;
333 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000334 verbose_screen++;
Nico Huberc3b02dc2023-08-12 01:13:45 +0200335 if (verbose_screen > FLASHPROG_MSG_DEBUG2)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000336 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000337 break;
338 case 'E':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000339 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200340 erase_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000341 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000342 case 'f':
Felix Singer2a768e42022-05-22 02:04:18 +0200343 force = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000344 break;
345 case 'l':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000346 if (layoutfile)
347 cli_classic_abort_usage("Error: --layout specified more than once. Aborting.\n");
348 if (ifd)
349 cli_classic_abort_usage("Error: --layout and --ifd both specified. Aborting.\n");
350 if (fmap)
351 cli_classic_abort_usage("Error: --layout and --fmap-file both specified. Aborting.\n");
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000352 layoutfile = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000353 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300354 case OPTION_IFD:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000355 if (layoutfile)
356 cli_classic_abort_usage("Error: --layout and --ifd both specified. Aborting.\n");
357 if (fmap)
358 cli_classic_abort_usage("Error: --fmap-file and --ifd both specified. Aborting.\n");
Felix Singer2a768e42022-05-22 02:04:18 +0200359 ifd = true;
Nico Huber305f4172013-06-14 11:55:26 +0200360 break;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100361 case OPTION_FMAP_FILE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000362 if (fmap)
363 cli_classic_abort_usage("Error: --fmap or --fmap-file specified "
Arthur Heymansc82900b2018-01-10 12:48:16 +0100364 "more than once. Aborting.\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000365 if (ifd)
366 cli_classic_abort_usage("Error: --fmap-file and --ifd both specified. Aborting.\n");
367 if (layoutfile)
368 cli_classic_abort_usage("Error: --fmap-file and --layout both specified. Aborting.\n");
Arthur Heymansc82900b2018-01-10 12:48:16 +0100369 fmapfile = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200370 fmap = true;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100371 break;
372 case OPTION_FMAP:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000373 if (fmap)
374 cli_classic_abort_usage("Error: --fmap or --fmap-file specified "
Arthur Heymansc82900b2018-01-10 12:48:16 +0100375 "more than once. Aborting.\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000376 if (ifd)
377 cli_classic_abort_usage("Error: --fmap and --ifd both specified. Aborting.\n");
378 if (layoutfile)
379 cli_classic_abort_usage("Error: --layout and --fmap both specified. Aborting.\n");
Felix Singer2a768e42022-05-22 02:04:18 +0200380 fmap = true;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100381 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000382 case 'i':
383 tempstr = strdup(optarg);
Arthur Heymansb04fef92019-02-05 17:35:05 +0100384 if (register_include_arg(&include_args, tempstr)) {
Stefan Taunerb8911d62012-12-26 07:55:00 +0000385 free(tempstr);
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000386 cli_classic_abort_usage(NULL);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000387 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000388 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300389 case OPTION_FLASH_CONTENTS:
Angel Ponsa60f6412020-03-31 15:02:02 +0200390 if (referencefile)
391 cli_classic_abort_usage("Error: --flash-contents specified more than once."
392 "Aborting.\n");
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300393 referencefile = strdup(optarg);
394 break;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000395 case OPTION_FLASH_NAME:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000396 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200397 flash_name = true;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000398 break;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000399 case OPTION_FLASH_SIZE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000400 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200401 flash_size = true;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000402 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000403 case 'L':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000404 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200405 list_supported = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000406 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000407 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000408#if CONFIG_PRINT_WIKI == 1
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000409 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200410 list_supported_wiki = true;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000411#else
Idwer Vollering40407b62020-12-08 00:24:39 +0100412 cli_classic_abort_usage("Error: Wiki output was not "
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000413 "compiled in. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000414#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000415 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000416 case 'p':
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200417 if (prog != NULL) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000418 cli_classic_abort_usage("Error: --programmer specified "
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000419 "more than once. You can separate "
420 "multiple\nparameters for a programmer "
421 "with \",\". Please see the man page "
422 "for details.\n");
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000423 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200424 size_t p;
425 for (p = 0; p < programmer_table_size; p++) {
426 name = programmer_table[p]->name;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000427 namelen = strlen(name);
428 if (strncmp(optarg, name, namelen) == 0) {
429 switch (optarg[namelen]) {
430 case ':':
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000431 pparam = strdup(optarg + namelen + 1);
432 if (!strlen(pparam)) {
433 free(pparam);
434 pparam = NULL;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000435 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200436 prog = programmer_table[p];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000437 break;
438 case '\0':
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200439 prog = programmer_table[p];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000440 break;
441 default:
442 /* The continue refers to the
443 * for loop. It is here to be
444 * able to differentiate between
445 * foo and foobar.
446 */
447 continue;
448 }
449 break;
450 }
451 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200452 if (prog == NULL) {
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000453 fprintf(stderr, "Error: Unknown programmer \"%s\". Valid choices are:\n",
454 optarg);
455 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000456 msg_ginfo(".\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000457 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000458 }
459 break;
460 case 'R':
461 /* print_version() is always called during startup. */
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000462 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000463 exit(0);
464 break;
465 case 'h':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000466 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000467 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000468 exit(0);
469 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000470 case 'o':
Elyes HAOUASef78de42019-07-18 15:08:10 +0200471 if (logfile) {
472 fprintf(stderr, "Warning: -o/--output specified multiple times.\n");
473 free(logfile);
474 }
475
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000476 logfile = strdup(optarg);
477 if (logfile[0] == '\0') {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000478 cli_classic_abort_usage("No log filename specified.\n");
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000479 }
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000480 break;
Richard Hughes842d6782021-01-15 09:48:12 +0000481 case OPTION_PROGRESS:
482 show_progress = true;
483 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000484 default:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000485 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000486 break;
487 }
488 }
489
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000490 if (optind < argc)
491 cli_classic_abort_usage("Error: Extra parameter found.\n");
492 if ((read_it | write_it | verify_it) && check_filename(filename, "image"))
493 cli_classic_abort_usage(NULL);
494 if (layoutfile && check_filename(layoutfile, "layout"))
495 cli_classic_abort_usage(NULL);
496 if (fmapfile && check_filename(fmapfile, "fmap"))
497 cli_classic_abort_usage(NULL);
498 if (referencefile && check_filename(referencefile, "reference"))
499 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000500 if (logfile && check_filename(logfile, "log"))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000501 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000502 if (logfile && open_logfile(logfile))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000503 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000504
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000505#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000506 if (list_supported_wiki) {
507 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000508 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000509 }
510#endif
511
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000512 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000513 if (print_supported())
514 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000515 goto out;
516 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000517
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000518 start_logging();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000519
520 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000521 msg_gdbg("Command line (%i args):", argc - 1);
522 for (i = 0; i < argc; i++) {
523 msg_gdbg(" %s", argv[i]);
524 }
525 msg_gdbg("\n");
526
Nico Huberd9b57712021-05-14 01:07:28 +0200527 if (layoutfile && layout_from_file(&layout, layoutfile)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000528 ret = 1;
529 goto out;
530 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100531
Nico Huberd9b57712021-05-14 01:07:28 +0200532 if (!ifd && !fmap && process_include_args(layout, include_args)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000533 ret = 1;
534 goto out;
535 }
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000536 /* Does a chip with the requested name exist in the flashchips array? */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000537 if (chip_to_probe) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000538 for (chip = flashchips; chip && chip->name; chip++)
539 if (!strcmp(chip->name, chip_to_probe))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000540 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000541 if (!chip || !chip->name) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000542 msg_cerr("Error: Unknown chip '%s' specified.\n", chip_to_probe);
Nico Huberc3b02dc2023-08-12 01:13:45 +0200543 msg_gerr("Run flashprog -L to view the hardware supported in this flashprog version.\n");
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000544 ret = 1;
545 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000546 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000547 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000548 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000549
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200550 if (prog == NULL) {
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200551 const struct programmer_entry *const default_programmer = CONFIG_DEFAULT_PROGRAMMER_NAME;
552
553 if (default_programmer) {
554 prog = default_programmer;
Stefan Tauner265fcac2014-06-02 00:12:23 +0000555 /* We need to strdup here because we free(pparam) unconditionally later. */
556 pparam = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
557 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200558 default_programmer->name, pparam);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000559 } else {
560 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000561#if CONFIG_INTERNAL == 1
562 "To choose the mainboard of this computer use 'internal'. "
563#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000564 "Valid choices are:\n");
565 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000566 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000567 ret = 1;
568 goto out;
569 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000570 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000571
Nico Huber2b66ad92023-01-11 20:15:15 +0100572 struct flashprog_programmer *flashprog;
573 if (flashprog_programmer_init(&flashprog, prog->name, pparam)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000574 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000575 ret = 1;
Nico Huber2b66ad92023-01-11 20:15:15 +0100576 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000577 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000578 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000579 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000580 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000581
Nico Huber89569d62023-01-12 23:31:40 +0100582 struct registered_master *matched_master = NULL;
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000583 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000584 startchip = 0;
Nico Huber519be662018-12-23 20:03:35 +0100585 while (chipcount < (int)ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000586 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000587 if (startchip == -1)
588 break;
Nico Huber89569d62023-01-12 23:31:40 +0100589 if (chipcount == 0)
590 matched_master = &registered_masters[j];
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000591 chipcount++;
592 startchip++;
593 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000594 }
595
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000596 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000597 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
598 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000599 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000600 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000601 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000602 ret = 1;
603 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000604 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000605 msg_cinfo("No EEPROM/flash device found.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000606 if (!force || !chip_to_probe) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200607 msg_cinfo("Note: flashprog can never write if the flash chip isn't found "
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000608 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000609 }
610 if (force && read_it && chip_to_probe) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000611 struct registered_master *mst;
612 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000613 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000614 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000615 for (j = 0; j < registered_master_count; j++) {
616 mst = &registered_masters[j];
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000617 /* chip is still set from the chip_to_probe earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000618 if (mst->buses_supported & chip->bustype)
619 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000620 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000621 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000622 msg_cinfo("No compatible controller found for the requested flash chip.\n");
623 ret = 1;
624 goto out_shutdown;
625 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000626 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000627 msg_cinfo("More than one compatible controller found for the requested flash "
628 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000629 for (j = 0; j < registered_master_count; j++) {
630 mst = &registered_masters[j];
631 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000632 if (startchip != -1)
633 break;
634 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000635 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000636 // FIXME: This should never happen! Ask for a bug report?
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000637 msg_cinfo("Probing for flash chip '%s' failed.\n", chip_to_probe);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000638 ret = 1;
639 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000640 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000641 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
Nico Huberc3b02dc2023-08-12 01:13:45 +0200642 flashprog_flag_set(&flashes[0], FLASHPROG_FLAG_FORCE, force);
Edward O'Callaghan2d170412021-11-15 15:47:15 +1100643 ret = do_read(&flashes[0], filename);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000644 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000645 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000646 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000647 ret = 1;
648 goto out_shutdown;
Stefan Tauner1d947632011-09-11 22:08:58 +0000649 } else if (!chip_to_probe) {
650 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000651 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000652 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000653 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000654 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000655 }
656
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000657 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000658
Richard Hughes842d6782021-01-15 09:48:12 +0000659 if (show_progress)
660 flashprog_set_progress_callback(fill_flash, &flashprog_progress_cb, NULL);
661
Stefan Tauner9b32de92014-08-08 23:52:33 +0000662 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000663
Nico Huber89569d62023-01-12 23:31:40 +0100664 if (max_decode_exceeded(matched_master, fill_flash) && !force) {
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000665 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
666 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000667 ret = 1;
668 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000669 }
670
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000671 if (!(read_it | write_it | verify_it | erase_it | flash_name | flash_size)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000672 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000673 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000674 }
675
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000676 if (flash_name) {
677 if (fill_flash->chip->vendor && fill_flash->chip->name) {
678 printf("vendor=\"%s\" name=\"%s\"\n",
679 fill_flash->chip->vendor,
680 fill_flash->chip->name);
681 } else {
682 ret = -1;
683 }
684 goto out_shutdown;
685 }
686
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000687 if (flash_size) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200688 printf("%zu\n", flashprog_flash_getsize(fill_flash));
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000689 goto out_shutdown;
690 }
691
Nico Huberc3b02dc2023-08-12 01:13:45 +0200692 if (ifd && (flashprog_layout_read_from_ifd(&layout, fill_flash, NULL, 0) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100693 process_include_args(layout, include_args))) {
Nico Huber305f4172013-06-14 11:55:26 +0200694 ret = 1;
695 goto out_shutdown;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100696 } else if (fmap && fmapfile) {
697 struct stat s;
698 if (stat(fmapfile, &s) != 0) {
699 msg_gerr("Failed to stat fmapfile \"%s\"\n", fmapfile);
700 ret = 1;
701 goto out_shutdown;
702 }
703
704 size_t fmapfile_size = s.st_size;
705 uint8_t *fmapfile_buffer = malloc(fmapfile_size);
706 if (!fmapfile_buffer) {
707 ret = 1;
708 goto out_shutdown;
709 }
710
711 if (read_buf_from_file(fmapfile_buffer, fmapfile_size, fmapfile)) {
712 ret = 1;
713 free(fmapfile_buffer);
714 goto out_shutdown;
715 }
716
Nico Huberc3b02dc2023-08-12 01:13:45 +0200717 if (flashprog_layout_read_fmap_from_buffer(&layout, fill_flash, fmapfile_buffer, fmapfile_size) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100718 process_include_args(layout, include_args)) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100719 ret = 1;
720 free(fmapfile_buffer);
721 goto out_shutdown;
722 }
723 free(fmapfile_buffer);
Nico Huberc3b02dc2023-08-12 01:13:45 +0200724 } else if (fmap && (flashprog_layout_read_fmap_from_rom(&layout, fill_flash, 0,
725 flashprog_flash_getsize(fill_flash)) || process_include_args(layout, include_args))) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100726 ret = 1;
727 goto out_shutdown;
Nico Huber305f4172013-06-14 11:55:26 +0200728 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000729
Nico Huberc3b02dc2023-08-12 01:13:45 +0200730 flashprog_layout_set(fill_flash, layout);
731 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_FORCE, force);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300732#if CONFIG_INTERNAL == 1
Nico Huberc3b02dc2023-08-12 01:13:45 +0200733 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_FORCE_BOARDMISMATCH, force_boardmismatch);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300734#endif
Nico Huberc3b02dc2023-08-12 01:13:45 +0200735 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_VERIFY_AFTER_WRITE, !dont_verify_it);
736 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_VERIFY_WHOLE_CHIP, !dont_verify_all);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000737
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000738 /* FIXME: We should issue an unconditional chip reset here. This can be
739 * done once we have a .reset function in struct flashchip.
740 * Give the chip time to settle.
741 */
742 programmer_delay(100000);
Nico Huber899e4ec2016-04-29 18:39:01 +0200743 if (read_it)
744 ret = do_read(fill_flash, filename);
Edward O'Callaghanc72d20a2021-12-13 12:30:03 +1100745 else if (erase_it) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200746 ret = flashprog_flash_erase(fill_flash);
Edward O'Callaghanc72d20a2021-12-13 12:30:03 +1100747 /*
748 * FIXME: Do we really want the scary warning if erase failed?
749 * After all, after erase the chip is either blank or partially
750 * blank or it has the old contents. A blank chip won't boot,
751 * so if the user wanted erase and reboots afterwards, the user
752 * knows very well that booting won't work.
753 */
754 if (ret)
755 emergency_help_message();
756 }
Nico Huber899e4ec2016-04-29 18:39:01 +0200757 else if (write_it)
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300758 ret = do_write(fill_flash, filename, referencefile);
Nico Huber899e4ec2016-04-29 18:39:01 +0200759 else if (verify_it)
760 ret = do_verify(fill_flash, filename);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000761
Nico Huberc3b02dc2023-08-12 01:13:45 +0200762 flashprog_layout_release(layout);
Nico Huber305f4172013-06-14 11:55:26 +0200763
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000764out_shutdown:
Nico Huber2b66ad92023-01-11 20:15:15 +0100765 flashprog_programmer_shutdown(flashprog);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000766out:
Nico Huber5bd990c2019-06-16 19:46:46 +0200767 for (i = 0; i < chipcount; i++) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200768 flashprog_layout_release(flashes[i].default_layout);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000769 free(flashes[i].chip);
Nico Huber5bd990c2019-06-16 19:46:46 +0200770 }
Stefan Taunerb8911d62012-12-26 07:55:00 +0000771
Nico Huber345f65a2021-05-14 01:11:08 +0200772 cleanup_include_args(&include_args);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000773 free(filename);
Richard Hughes6eca7612018-12-19 15:40:27 +0000774 free(fmapfile);
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300775 free(referencefile);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000776 free(layoutfile);
777 free(pparam);
778 /* clean up global variables */
Nico Huberbcb2e5a2012-12-30 01:23:17 +0000779 free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000780 chip_to_probe = NULL;
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000781 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000782 ret |= close_logfile();
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000783 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000784}