blob: fede2ca767a62f52eea754e4ec50ad447e74a876 [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
Stefan Taunerb226cb12012-11-24 18:59:39 +000073 " -p | --programmer <name>[:<param>] specify the programmer device. One of\n");
74 list_programmers_linebreak(4, 80, 0);
75 printf(".\n\nYou can specify one of -h, -R, -L, "
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000076#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000077 "-z, "
78#endif
79 "-E, -r, -w, -v or no operation.\n"
Nico Huberc3b02dc2023-08-12 01:13:45 +020080 "If no operation is specified, flashprog will only probe for flash chips.\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000081}
82
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100083static void cli_classic_abort_usage(const char *msg)
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000084{
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100085 if (msg)
86 fprintf(stderr, "%s", msg);
Nico Huberc3b02dc2023-08-12 01:13:45 +020087 printf("Please run \"flashprog --help\" for usage info.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000088 exit(1);
89}
90
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100091static void cli_classic_validate_singleop(int *operation_specified)
92{
93 if (++(*operation_specified) > 1) {
94 cli_classic_abort_usage("More than one operation specified. Aborting.\n");
95 }
96}
97
Jacob Garber4a84ec22019-07-25 19:12:31 -060098static int check_filename(char *filename, const char *type)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +000099{
100 if (!filename || (filename[0] == '\0')) {
101 fprintf(stderr, "Error: No %s file specified.\n", type);
102 return 1;
103 }
104 /* 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 -0600105 if (filename[0] == '-' && filename[1] != '\0')
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000106 fprintf(stderr, "Warning: Supplied %s file name starts with -\n", type);
107 return 0;
108}
109
Jack Rosenthal85777562021-04-09 10:03:14 -0600110/* Ensure a file is open by means of fstat */
111static bool check_file(FILE *file)
112{
Jack Rosenthal85777562021-04-09 10:03:14 -0600113 struct stat statbuf;
114
115 if (fstat(fileno(file), &statbuf) < 0)
116 return false;
Jack Rosenthal85777562021-04-09 10:03:14 -0600117 return true;
118}
119
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100120static int do_read(struct flashctx *const flash, const char *const filename)
121{
122 int ret;
123
Nico Huberc3b02dc2023-08-12 01:13:45 +0200124 unsigned long size = flashprog_flash_getsize(flash);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100125 unsigned char *buf = calloc(size, sizeof(unsigned char));
126 if (!buf) {
127 msg_gerr("Memory allocation failed!\n");
128 return 1;
129 }
130
Nico Huberc3b02dc2023-08-12 01:13:45 +0200131 ret = flashprog_image_read(flash, buf, size);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100132 if (ret > 0)
133 goto free_out;
134
135 ret = write_buf_to_file(buf, size, filename);
136
137free_out:
138 free(buf);
139 return ret;
140}
141
142static int do_write(struct flashctx *const flash, const char *const filename, const char *const referencefile)
143{
Nico Huberc3b02dc2023-08-12 01:13:45 +0200144 const size_t flash_size = flashprog_flash_getsize(flash);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100145 int ret = 1;
146
147 uint8_t *const newcontents = malloc(flash_size);
148 uint8_t *const refcontents = referencefile ? malloc(flash_size) : NULL;
149
150 if (!newcontents || (referencefile && !refcontents)) {
151 msg_gerr("Out of memory!\n");
152 goto _free_ret;
153 }
154
155 if (read_buf_from_file(newcontents, flash_size, filename))
156 goto _free_ret;
157
158 if (referencefile) {
159 if (read_buf_from_file(refcontents, flash_size, referencefile))
160 goto _free_ret;
161 }
162
Nico Huberc3b02dc2023-08-12 01:13:45 +0200163 ret = flashprog_image_write(flash, newcontents, flash_size, refcontents);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100164
165_free_ret:
166 free(refcontents);
167 free(newcontents);
168 return ret;
169}
170
171static int do_verify(struct flashctx *const flash, const char *const filename)
172{
Nico Huberc3b02dc2023-08-12 01:13:45 +0200173 const size_t flash_size = flashprog_flash_getsize(flash);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100174 int ret = 1;
175
176 uint8_t *const newcontents = malloc(flash_size);
177 if (!newcontents) {
178 msg_gerr("Out of memory!\n");
179 goto _free_ret;
180 }
181
182 if (read_buf_from_file(newcontents, flash_size, filename))
183 goto _free_ret;
184
Nico Huberc3b02dc2023-08-12 01:13:45 +0200185 ret = flashprog_image_verify(flash, newcontents, flash_size);
Edward O'Callaghan98cfa692021-12-13 12:46:12 +1100186
187_free_ret:
188 free(newcontents);
189 return ret;
190}
191
Nico Huber89569d62023-01-12 23:31:40 +0100192/* Returns true if the flash chip cannot be completely accessed due to size/address limits of the programmer. */
193static bool max_decode_exceeded(const struct registered_master *const mst, const struct flashctx *const flash)
Edward O'Callaghanaba36582022-09-05 11:09:28 +1000194{
Nico Huber89569d62023-01-12 23:31:40 +0100195 if (flashprog_flash_getsize(flash) <= mst->max_rom_decode)
196 return false;
Edward O'Callaghanaba36582022-09-05 11:09:28 +1000197
Nico Huber89569d62023-01-12 23:31:40 +0100198 msg_pdbg("Chip size %u kB is bigger than supported size %zu kB of\n"
199 "chipset/board/programmer for memory-mapped interface, probe/read/erase/write\n"
200 "may fail.\n", flash->chip->total_size, mst->max_rom_decode / KiB);
201 return true;
Edward O'Callaghanaba36582022-09-05 11:09:28 +1000202}
203
Uwe Hermann394ee782011-08-20 14:14:22 +0000204int main(int argc, char *argv[])
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000205{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000206 const struct flashchip *chip = NULL;
Jernej Å krabece814a9b2014-12-12 00:32:03 +0000207 /* Probe for up to eight flash chips. */
208 struct flashctx flashes[8] = {{0}};
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000209 struct flashctx *fill_flash;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000210 const char *name;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000211 int namelen, opt, i, j;
Felix Singer2a768e42022-05-22 02:04:18 +0200212 int startchip = -1, chipcount = 0, option_index = 0;
213 int operation_specified = 0;
214 bool force = false, ifd = false, fmap = false;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000215#if CONFIG_PRINT_WIKI == 1
Felix Singer2a768e42022-05-22 02:04:18 +0200216 bool list_supported_wiki = false;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000217#endif
Felix Singer2a768e42022-05-22 02:04:18 +0200218 bool flash_name = false, flash_size = false;
219 bool read_it = false, write_it = false, erase_it = false, verify_it = false;
220 bool dont_verify_it = false, dont_verify_all = false;
221 bool list_supported = false;
Nico Huberc3b02dc2023-08-12 01:13:45 +0200222 struct flashprog_layout *layout = NULL;
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200223 static const struct programmer_entry *prog = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300224 enum {
225 OPTION_IFD = 0x0100,
Arthur Heymansc82900b2018-01-10 12:48:16 +0100226 OPTION_FMAP,
227 OPTION_FMAP_FILE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300228 OPTION_FLASH_CONTENTS,
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000229 OPTION_FLASH_NAME,
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000230 OPTION_FLASH_SIZE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300231 };
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000232 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000233
Nico Huber99d15952016-05-02 16:54:24 +0200234 static const char optstring[] = "r:Rw:v:nNVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000235 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000236 {"read", 1, NULL, 'r'},
237 {"write", 1, NULL, 'w'},
238 {"erase", 0, NULL, 'E'},
239 {"verify", 1, NULL, 'v'},
240 {"noverify", 0, NULL, 'n'},
Nico Huber99d15952016-05-02 16:54:24 +0200241 {"noverify-all", 0, NULL, 'N'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000242 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000243 {"verbose", 0, NULL, 'V'},
244 {"force", 0, NULL, 'f'},
245 {"layout", 1, NULL, 'l'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300246 {"ifd", 0, NULL, OPTION_IFD},
Arthur Heymansc82900b2018-01-10 12:48:16 +0100247 {"fmap", 0, NULL, OPTION_FMAP},
248 {"fmap-file", 1, NULL, OPTION_FMAP_FILE},
Anastasia Klimchuka7cb7e92022-11-25 18:10:43 +1100249 {"image", 1, NULL, 'i'}, // (deprecated): back compatibility.
250 {"include", 1, NULL, 'i'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300251 {"flash-contents", 1, NULL, OPTION_FLASH_CONTENTS},
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000252 {"flash-name", 0, NULL, OPTION_FLASH_NAME},
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000253 {"flash-size", 0, NULL, OPTION_FLASH_SIZE},
254 {"get-size", 0, NULL, OPTION_FLASH_SIZE}, // (deprecated): back compatibility.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000255 {"list-supported", 0, NULL, 'L'},
256 {"list-supported-wiki", 0, NULL, 'z'},
257 {"programmer", 1, NULL, 'p'},
258 {"help", 0, NULL, 'h'},
259 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000260 {"output", 1, NULL, 'o'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000261 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000262 };
263
264 char *filename = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300265 char *referencefile = NULL;
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000266 char *layoutfile = NULL;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100267 char *fmapfile = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000268 char *logfile = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000269 char *tempstr = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000270 char *pparam = NULL;
Arthur Heymansb04fef92019-02-05 17:35:05 +0100271 struct layout_include_args *include_args = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000272
Jack Rosenthal85777562021-04-09 10:03:14 -0600273 /*
274 * Safety-guard against a user who has (mistakenly) closed
Nico Huberc3b02dc2023-08-12 01:13:45 +0200275 * stdout or stderr before exec'ing flashprog. We disable
Jack Rosenthal85777562021-04-09 10:03:14 -0600276 * logging in this case to prevent writing log data to a flash
277 * chip when a flash device gets opened with fd 1 or 2.
278 */
279 if (check_file(stdout) && check_file(stderr)) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200280 flashprog_set_log_callback(
281 (flashprog_log_callback *)&flashprog_print_cb);
Jack Rosenthal85777562021-04-09 10:03:14 -0600282 }
Nico Huber18781102012-12-10 13:34:12 +0000283
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000284 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000285 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000286
Edward O'Callaghand58496b2022-02-03 12:52:02 +1100287 /* FIXME: Delay calibration should happen in programmer code. */
Nico Huberc3b02dc2023-08-12 01:13:45 +0200288 if (flashprog_init(1))
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000289 exit(1);
290
291 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000292 /* FIXME: Delay all operation_specified checks until after command
293 * line parsing to allow --help overriding everything else.
294 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000295 while ((opt = getopt_long(argc, argv, optstring,
296 long_options, &option_index)) != EOF) {
297 switch (opt) {
298 case 'r':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000299 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000300 filename = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200301 read_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000302 break;
303 case 'w':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000304 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000305 filename = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200306 write_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000307 break;
308 case 'v':
309 //FIXME: gracefully handle superfluous -v
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000310 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000311 if (dont_verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000312 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000313 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000314 filename = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200315 verify_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000316 break;
317 case 'n':
318 if (verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000319 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000320 }
Felix Singer2a768e42022-05-22 02:04:18 +0200321 dont_verify_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000322 break;
Nico Huber99d15952016-05-02 16:54:24 +0200323 case 'N':
Felix Singer2a768e42022-05-22 02:04:18 +0200324 dont_verify_all = true;
Nico Huber99d15952016-05-02 16:54:24 +0200325 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000326 case 'c':
327 chip_to_probe = strdup(optarg);
328 break;
329 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000330 verbose_screen++;
Nico Huberc3b02dc2023-08-12 01:13:45 +0200331 if (verbose_screen > FLASHPROG_MSG_DEBUG2)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000332 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000333 break;
334 case 'E':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000335 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200336 erase_it = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000337 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000338 case 'f':
Felix Singer2a768e42022-05-22 02:04:18 +0200339 force = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000340 break;
341 case 'l':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000342 if (layoutfile)
343 cli_classic_abort_usage("Error: --layout specified more than once. Aborting.\n");
344 if (ifd)
345 cli_classic_abort_usage("Error: --layout and --ifd both specified. Aborting.\n");
346 if (fmap)
347 cli_classic_abort_usage("Error: --layout and --fmap-file both specified. Aborting.\n");
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000348 layoutfile = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000349 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300350 case OPTION_IFD:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000351 if (layoutfile)
352 cli_classic_abort_usage("Error: --layout and --ifd both specified. Aborting.\n");
353 if (fmap)
354 cli_classic_abort_usage("Error: --fmap-file and --ifd both specified. Aborting.\n");
Felix Singer2a768e42022-05-22 02:04:18 +0200355 ifd = true;
Nico Huber305f4172013-06-14 11:55:26 +0200356 break;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100357 case OPTION_FMAP_FILE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000358 if (fmap)
359 cli_classic_abort_usage("Error: --fmap or --fmap-file specified "
Arthur Heymansc82900b2018-01-10 12:48:16 +0100360 "more than once. Aborting.\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000361 if (ifd)
362 cli_classic_abort_usage("Error: --fmap-file and --ifd both specified. Aborting.\n");
363 if (layoutfile)
364 cli_classic_abort_usage("Error: --fmap-file and --layout both specified. Aborting.\n");
Arthur Heymansc82900b2018-01-10 12:48:16 +0100365 fmapfile = strdup(optarg);
Felix Singer2a768e42022-05-22 02:04:18 +0200366 fmap = true;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100367 break;
368 case OPTION_FMAP:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000369 if (fmap)
370 cli_classic_abort_usage("Error: --fmap or --fmap-file specified "
Arthur Heymansc82900b2018-01-10 12:48:16 +0100371 "more than once. Aborting.\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000372 if (ifd)
373 cli_classic_abort_usage("Error: --fmap and --ifd both specified. Aborting.\n");
374 if (layoutfile)
375 cli_classic_abort_usage("Error: --layout and --fmap both specified. Aborting.\n");
Felix Singer2a768e42022-05-22 02:04:18 +0200376 fmap = true;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100377 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000378 case 'i':
379 tempstr = strdup(optarg);
Arthur Heymansb04fef92019-02-05 17:35:05 +0100380 if (register_include_arg(&include_args, tempstr)) {
Stefan Taunerb8911d62012-12-26 07:55:00 +0000381 free(tempstr);
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000382 cli_classic_abort_usage(NULL);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000383 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000384 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300385 case OPTION_FLASH_CONTENTS:
Angel Ponsa60f6412020-03-31 15:02:02 +0200386 if (referencefile)
387 cli_classic_abort_usage("Error: --flash-contents specified more than once."
388 "Aborting.\n");
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300389 referencefile = strdup(optarg);
390 break;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000391 case OPTION_FLASH_NAME:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000392 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200393 flash_name = true;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000394 break;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000395 case OPTION_FLASH_SIZE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000396 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200397 flash_size = true;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000398 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000399 case 'L':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000400 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200401 list_supported = true;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000402 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000403 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000404#if CONFIG_PRINT_WIKI == 1
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000405 cli_classic_validate_singleop(&operation_specified);
Felix Singer2a768e42022-05-22 02:04:18 +0200406 list_supported_wiki = true;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000407#else
Idwer Vollering40407b62020-12-08 00:24:39 +0100408 cli_classic_abort_usage("Error: Wiki output was not "
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000409 "compiled in. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000410#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000411 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000412 case 'p':
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200413 if (prog != NULL) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000414 cli_classic_abort_usage("Error: --programmer specified "
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000415 "more than once. You can separate "
416 "multiple\nparameters for a programmer "
417 "with \",\". Please see the man page "
418 "for details.\n");
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000419 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200420 size_t p;
421 for (p = 0; p < programmer_table_size; p++) {
422 name = programmer_table[p]->name;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000423 namelen = strlen(name);
424 if (strncmp(optarg, name, namelen) == 0) {
425 switch (optarg[namelen]) {
426 case ':':
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000427 pparam = strdup(optarg + namelen + 1);
428 if (!strlen(pparam)) {
429 free(pparam);
430 pparam = NULL;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000431 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200432 prog = programmer_table[p];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000433 break;
434 case '\0':
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200435 prog = programmer_table[p];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000436 break;
437 default:
438 /* The continue refers to the
439 * for loop. It is here to be
440 * able to differentiate between
441 * foo and foobar.
442 */
443 continue;
444 }
445 break;
446 }
447 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200448 if (prog == NULL) {
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000449 fprintf(stderr, "Error: Unknown programmer \"%s\". Valid choices are:\n",
450 optarg);
451 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000452 msg_ginfo(".\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000453 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000454 }
455 break;
456 case 'R':
457 /* print_version() is always called during startup. */
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000458 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000459 exit(0);
460 break;
461 case 'h':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000462 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000463 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000464 exit(0);
465 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000466 case 'o':
Elyes HAOUASef78de42019-07-18 15:08:10 +0200467 if (logfile) {
468 fprintf(stderr, "Warning: -o/--output specified multiple times.\n");
469 free(logfile);
470 }
471
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000472 logfile = strdup(optarg);
473 if (logfile[0] == '\0') {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000474 cli_classic_abort_usage("No log filename specified.\n");
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000475 }
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000476 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000477 default:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000478 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000479 break;
480 }
481 }
482
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000483 if (optind < argc)
484 cli_classic_abort_usage("Error: Extra parameter found.\n");
485 if ((read_it | write_it | verify_it) && check_filename(filename, "image"))
486 cli_classic_abort_usage(NULL);
487 if (layoutfile && check_filename(layoutfile, "layout"))
488 cli_classic_abort_usage(NULL);
489 if (fmapfile && check_filename(fmapfile, "fmap"))
490 cli_classic_abort_usage(NULL);
491 if (referencefile && check_filename(referencefile, "reference"))
492 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000493 if (logfile && check_filename(logfile, "log"))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000494 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000495 if (logfile && open_logfile(logfile))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000496 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000497
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000498#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000499 if (list_supported_wiki) {
500 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000501 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000502 }
503#endif
504
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000505 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000506 if (print_supported())
507 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000508 goto out;
509 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000510
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000511 start_logging();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000512
513 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000514 msg_gdbg("Command line (%i args):", argc - 1);
515 for (i = 0; i < argc; i++) {
516 msg_gdbg(" %s", argv[i]);
517 }
518 msg_gdbg("\n");
519
Nico Huberd9b57712021-05-14 01:07:28 +0200520 if (layoutfile && layout_from_file(&layout, layoutfile)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000521 ret = 1;
522 goto out;
523 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100524
Nico Huberd9b57712021-05-14 01:07:28 +0200525 if (!ifd && !fmap && process_include_args(layout, include_args)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000526 ret = 1;
527 goto out;
528 }
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000529 /* Does a chip with the requested name exist in the flashchips array? */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000530 if (chip_to_probe) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000531 for (chip = flashchips; chip && chip->name; chip++)
532 if (!strcmp(chip->name, chip_to_probe))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000533 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000534 if (!chip || !chip->name) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000535 msg_cerr("Error: Unknown chip '%s' specified.\n", chip_to_probe);
Nico Huberc3b02dc2023-08-12 01:13:45 +0200536 msg_gerr("Run flashprog -L to view the hardware supported in this flashprog version.\n");
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000537 ret = 1;
538 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000539 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000540 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000541 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000542
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200543 if (prog == NULL) {
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200544 const struct programmer_entry *const default_programmer = CONFIG_DEFAULT_PROGRAMMER_NAME;
545
546 if (default_programmer) {
547 prog = default_programmer;
Stefan Tauner265fcac2014-06-02 00:12:23 +0000548 /* We need to strdup here because we free(pparam) unconditionally later. */
549 pparam = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
550 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200551 default_programmer->name, pparam);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000552 } else {
553 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000554#if CONFIG_INTERNAL == 1
555 "To choose the mainboard of this computer use 'internal'. "
556#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000557 "Valid choices are:\n");
558 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000559 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000560 ret = 1;
561 goto out;
562 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000563 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000564
Nico Huber2b66ad92023-01-11 20:15:15 +0100565 struct flashprog_programmer *flashprog;
566 if (flashprog_programmer_init(&flashprog, prog->name, pparam)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000567 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000568 ret = 1;
Nico Huber2b66ad92023-01-11 20:15:15 +0100569 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000570 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000571 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000572 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000573 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000574
Nico Huber89569d62023-01-12 23:31:40 +0100575 struct registered_master *matched_master = NULL;
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000576 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000577 startchip = 0;
Nico Huber519be662018-12-23 20:03:35 +0100578 while (chipcount < (int)ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000579 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000580 if (startchip == -1)
581 break;
Nico Huber89569d62023-01-12 23:31:40 +0100582 if (chipcount == 0)
583 matched_master = &registered_masters[j];
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000584 chipcount++;
585 startchip++;
586 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000587 }
588
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000589 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000590 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
591 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000592 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000593 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000594 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000595 ret = 1;
596 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000597 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000598 msg_cinfo("No EEPROM/flash device found.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000599 if (!force || !chip_to_probe) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200600 msg_cinfo("Note: flashprog can never write if the flash chip isn't found "
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000601 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000602 }
603 if (force && read_it && chip_to_probe) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000604 struct registered_master *mst;
605 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000606 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000607 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000608 for (j = 0; j < registered_master_count; j++) {
609 mst = &registered_masters[j];
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000610 /* chip is still set from the chip_to_probe earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000611 if (mst->buses_supported & chip->bustype)
612 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000613 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000614 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000615 msg_cinfo("No compatible controller found for the requested flash chip.\n");
616 ret = 1;
617 goto out_shutdown;
618 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000619 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000620 msg_cinfo("More than one compatible controller found for the requested flash "
621 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000622 for (j = 0; j < registered_master_count; j++) {
623 mst = &registered_masters[j];
624 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000625 if (startchip != -1)
626 break;
627 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000628 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000629 // FIXME: This should never happen! Ask for a bug report?
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000630 msg_cinfo("Probing for flash chip '%s' failed.\n", chip_to_probe);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000631 ret = 1;
632 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000633 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000634 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
Nico Huberc3b02dc2023-08-12 01:13:45 +0200635 flashprog_flag_set(&flashes[0], FLASHPROG_FLAG_FORCE, force);
Edward O'Callaghan2d170412021-11-15 15:47:15 +1100636 ret = do_read(&flashes[0], filename);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000637 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000638 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000639 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000640 ret = 1;
641 goto out_shutdown;
Stefan Tauner1d947632011-09-11 22:08:58 +0000642 } else if (!chip_to_probe) {
643 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000644 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000645 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000646 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000647 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000648 }
649
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000650 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000651
Stefan Tauner9b32de92014-08-08 23:52:33 +0000652 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000653
Nico Huber89569d62023-01-12 23:31:40 +0100654 if (max_decode_exceeded(matched_master, fill_flash) && !force) {
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000655 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
656 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000657 ret = 1;
658 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000659 }
660
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000661 if (!(read_it | write_it | verify_it | erase_it | flash_name | flash_size)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000662 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000663 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000664 }
665
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000666 if (flash_name) {
667 if (fill_flash->chip->vendor && fill_flash->chip->name) {
668 printf("vendor=\"%s\" name=\"%s\"\n",
669 fill_flash->chip->vendor,
670 fill_flash->chip->name);
671 } else {
672 ret = -1;
673 }
674 goto out_shutdown;
675 }
676
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000677 if (flash_size) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200678 printf("%zu\n", flashprog_flash_getsize(fill_flash));
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000679 goto out_shutdown;
680 }
681
Nico Huberc3b02dc2023-08-12 01:13:45 +0200682 if (ifd && (flashprog_layout_read_from_ifd(&layout, fill_flash, NULL, 0) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100683 process_include_args(layout, include_args))) {
Nico Huber305f4172013-06-14 11:55:26 +0200684 ret = 1;
685 goto out_shutdown;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100686 } else if (fmap && fmapfile) {
687 struct stat s;
688 if (stat(fmapfile, &s) != 0) {
689 msg_gerr("Failed to stat fmapfile \"%s\"\n", fmapfile);
690 ret = 1;
691 goto out_shutdown;
692 }
693
694 size_t fmapfile_size = s.st_size;
695 uint8_t *fmapfile_buffer = malloc(fmapfile_size);
696 if (!fmapfile_buffer) {
697 ret = 1;
698 goto out_shutdown;
699 }
700
701 if (read_buf_from_file(fmapfile_buffer, fmapfile_size, fmapfile)) {
702 ret = 1;
703 free(fmapfile_buffer);
704 goto out_shutdown;
705 }
706
Nico Huberc3b02dc2023-08-12 01:13:45 +0200707 if (flashprog_layout_read_fmap_from_buffer(&layout, fill_flash, fmapfile_buffer, fmapfile_size) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100708 process_include_args(layout, include_args)) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100709 ret = 1;
710 free(fmapfile_buffer);
711 goto out_shutdown;
712 }
713 free(fmapfile_buffer);
Nico Huberc3b02dc2023-08-12 01:13:45 +0200714 } else if (fmap && (flashprog_layout_read_fmap_from_rom(&layout, fill_flash, 0,
715 flashprog_flash_getsize(fill_flash)) || process_include_args(layout, include_args))) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100716 ret = 1;
717 goto out_shutdown;
Nico Huber305f4172013-06-14 11:55:26 +0200718 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000719
Nico Huberc3b02dc2023-08-12 01:13:45 +0200720 flashprog_layout_set(fill_flash, layout);
721 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_FORCE, force);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300722#if CONFIG_INTERNAL == 1
Nico Huberc3b02dc2023-08-12 01:13:45 +0200723 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_FORCE_BOARDMISMATCH, force_boardmismatch);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300724#endif
Nico Huberc3b02dc2023-08-12 01:13:45 +0200725 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_VERIFY_AFTER_WRITE, !dont_verify_it);
726 flashprog_flag_set(fill_flash, FLASHPROG_FLAG_VERIFY_WHOLE_CHIP, !dont_verify_all);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000727
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000728 /* FIXME: We should issue an unconditional chip reset here. This can be
729 * done once we have a .reset function in struct flashchip.
730 * Give the chip time to settle.
731 */
732 programmer_delay(100000);
Nico Huber899e4ec2016-04-29 18:39:01 +0200733 if (read_it)
734 ret = do_read(fill_flash, filename);
Edward O'Callaghanc72d20a2021-12-13 12:30:03 +1100735 else if (erase_it) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200736 ret = flashprog_flash_erase(fill_flash);
Edward O'Callaghanc72d20a2021-12-13 12:30:03 +1100737 /*
738 * FIXME: Do we really want the scary warning if erase failed?
739 * After all, after erase the chip is either blank or partially
740 * blank or it has the old contents. A blank chip won't boot,
741 * so if the user wanted erase and reboots afterwards, the user
742 * knows very well that booting won't work.
743 */
744 if (ret)
745 emergency_help_message();
746 }
Nico Huber899e4ec2016-04-29 18:39:01 +0200747 else if (write_it)
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300748 ret = do_write(fill_flash, filename, referencefile);
Nico Huber899e4ec2016-04-29 18:39:01 +0200749 else if (verify_it)
750 ret = do_verify(fill_flash, filename);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000751
Nico Huberc3b02dc2023-08-12 01:13:45 +0200752 flashprog_layout_release(layout);
Nico Huber305f4172013-06-14 11:55:26 +0200753
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000754out_shutdown:
Nico Huber2b66ad92023-01-11 20:15:15 +0100755 flashprog_programmer_shutdown(flashprog);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000756out:
Nico Huber5bd990c2019-06-16 19:46:46 +0200757 for (i = 0; i < chipcount; i++) {
Nico Huberc3b02dc2023-08-12 01:13:45 +0200758 flashprog_layout_release(flashes[i].default_layout);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000759 free(flashes[i].chip);
Nico Huber5bd990c2019-06-16 19:46:46 +0200760 }
Stefan Taunerb8911d62012-12-26 07:55:00 +0000761
Nico Huber345f65a2021-05-14 01:11:08 +0200762 cleanup_include_args(&include_args);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000763 free(filename);
Richard Hughes6eca7612018-12-19 15:40:27 +0000764 free(fmapfile);
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300765 free(referencefile);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000766 free(layoutfile);
767 free(pparam);
768 /* clean up global variables */
Nico Huberbcb2e5a2012-12-30 01:23:17 +0000769 free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000770 chip_to_probe = NULL;
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000771 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000772 ret |= close_logfile();
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000773 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000774}