blob: c490d3fd126c96158f0eb9ce6bf0aa4739a9432d [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 Huber18781102012-12-10 13:34:12 +000031#include "libflashrom.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"
Stefan Taunerb226cb12012-11-24 18:59:39 +000065 " -i | --image <name> only flash image <name> from flash layout\n"
66 " -o | --output <logfile> log output to <logfile>\n"
Paul Kocialkowskif701f342018-01-15 01:10:36 +030067 " --flash-contents <ref-file> assume flash contents to be <ref-file>\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000068 " -L | --list-supported print supported devices\n"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000069#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000070 " -z | --list-supported-wiki print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000071#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000072 " -p | --programmer <name>[:<param>] specify the programmer device. One of\n");
73 list_programmers_linebreak(4, 80, 0);
74 printf(".\n\nYou can specify one of -h, -R, -L, "
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000075#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000076 "-z, "
77#endif
78 "-E, -r, -w, -v or no operation.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000079 "If no operation is specified, flashrom will only probe for flash chips.\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000080}
81
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100082static void cli_classic_abort_usage(const char *msg)
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000083{
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100084 if (msg)
85 fprintf(stderr, "%s", msg);
Uwe Hermann2db77a02010-06-04 17:07:39 +000086 printf("Please run \"flashrom --help\" for usage info.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000087 exit(1);
88}
89
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100090static void cli_classic_validate_singleop(int *operation_specified)
91{
92 if (++(*operation_specified) > 1) {
93 cli_classic_abort_usage("More than one operation specified. Aborting.\n");
94 }
95}
96
Jacob Garber4a84ec22019-07-25 19:12:31 -060097static int check_filename(char *filename, const char *type)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +000098{
99 if (!filename || (filename[0] == '\0')) {
100 fprintf(stderr, "Error: No %s file specified.\n", type);
101 return 1;
102 }
103 /* 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 -0600104 if (filename[0] == '-' && filename[1] != '\0')
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000105 fprintf(stderr, "Warning: Supplied %s file name starts with -\n", type);
106 return 0;
107}
108
Jack Rosenthal85777562021-04-09 10:03:14 -0600109/* Ensure a file is open by means of fstat */
110static bool check_file(FILE *file)
111{
112#ifndef STANDALONE
113 struct stat statbuf;
114
115 if (fstat(fileno(file), &statbuf) < 0)
116 return false;
117#endif /* !STANDALONE */
118 return true;
119}
120
Uwe Hermann394ee782011-08-20 14:14:22 +0000121int main(int argc, char *argv[])
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000122{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000123 const struct flashchip *chip = NULL;
Jernej Å krabece814a9b2014-12-12 00:32:03 +0000124 /* Probe for up to eight flash chips. */
125 struct flashctx flashes[8] = {{0}};
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000126 struct flashctx *fill_flash;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000127 const char *name;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000128 int namelen, opt, i, j;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100129 int startchip = -1, chipcount = 0, option_index = 0, force = 0, ifd = 0, fmap = 0;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000130#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000131 int list_supported_wiki = 0;
132#endif
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000133 int flash_name = 0, flash_size = 0;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000134 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
Nico Huber99d15952016-05-02 16:54:24 +0200135 int dont_verify_it = 0, dont_verify_all = 0, list_supported = 0, operation_specified = 0;
Nico Huber305f4172013-06-14 11:55:26 +0200136 struct flashrom_layout *layout = NULL;
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200137 static const struct programmer_entry *prog = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300138 enum {
139 OPTION_IFD = 0x0100,
Arthur Heymansc82900b2018-01-10 12:48:16 +0100140 OPTION_FMAP,
141 OPTION_FMAP_FILE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300142 OPTION_FLASH_CONTENTS,
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000143 OPTION_FLASH_NAME,
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000144 OPTION_FLASH_SIZE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300145 };
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000146 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000147
Nico Huber99d15952016-05-02 16:54:24 +0200148 static const char optstring[] = "r:Rw:v:nNVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000149 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000150 {"read", 1, NULL, 'r'},
151 {"write", 1, NULL, 'w'},
152 {"erase", 0, NULL, 'E'},
153 {"verify", 1, NULL, 'v'},
154 {"noverify", 0, NULL, 'n'},
Nico Huber99d15952016-05-02 16:54:24 +0200155 {"noverify-all", 0, NULL, 'N'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000156 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000157 {"verbose", 0, NULL, 'V'},
158 {"force", 0, NULL, 'f'},
159 {"layout", 1, NULL, 'l'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300160 {"ifd", 0, NULL, OPTION_IFD},
Arthur Heymansc82900b2018-01-10 12:48:16 +0100161 {"fmap", 0, NULL, OPTION_FMAP},
162 {"fmap-file", 1, NULL, OPTION_FMAP_FILE},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000163 {"image", 1, NULL, 'i'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300164 {"flash-contents", 1, NULL, OPTION_FLASH_CONTENTS},
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000165 {"flash-name", 0, NULL, OPTION_FLASH_NAME},
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000166 {"flash-size", 0, NULL, OPTION_FLASH_SIZE},
167 {"get-size", 0, NULL, OPTION_FLASH_SIZE}, // (deprecated): back compatibility.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000168 {"list-supported", 0, NULL, 'L'},
169 {"list-supported-wiki", 0, NULL, 'z'},
170 {"programmer", 1, NULL, 'p'},
171 {"help", 0, NULL, 'h'},
172 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000173 {"output", 1, NULL, 'o'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000174 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000175 };
176
177 char *filename = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300178 char *referencefile = NULL;
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000179 char *layoutfile = NULL;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100180 char *fmapfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000181#ifndef STANDALONE
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000182 char *logfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000183#endif /* !STANDALONE */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000184 char *tempstr = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000185 char *pparam = NULL;
Arthur Heymansb04fef92019-02-05 17:35:05 +0100186 struct layout_include_args *include_args = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000187
Jack Rosenthal85777562021-04-09 10:03:14 -0600188 /*
189 * Safety-guard against a user who has (mistakenly) closed
190 * stdout or stderr before exec'ing flashrom. We disable
191 * logging in this case to prevent writing log data to a flash
192 * chip when a flash device gets opened with fd 1 or 2.
193 */
194 if (check_file(stdout) && check_file(stderr)) {
195 flashrom_set_log_callback(
196 (flashrom_log_callback *)&flashrom_print_cb);
197 }
Nico Huber18781102012-12-10 13:34:12 +0000198
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000199 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000200 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000201
202 if (selfcheck())
203 exit(1);
204
205 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000206 /* FIXME: Delay all operation_specified checks until after command
207 * line parsing to allow --help overriding everything else.
208 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000209 while ((opt = getopt_long(argc, argv, optstring,
210 long_options, &option_index)) != EOF) {
211 switch (opt) {
212 case 'r':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000213 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000214 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000215 read_it = 1;
216 break;
217 case 'w':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000218 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000219 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000220 write_it = 1;
221 break;
222 case 'v':
223 //FIXME: gracefully handle superfluous -v
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000224 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000225 if (dont_verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000226 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000227 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000228 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000229 verify_it = 1;
230 break;
231 case 'n':
232 if (verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000233 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000234 }
235 dont_verify_it = 1;
236 break;
Nico Huber99d15952016-05-02 16:54:24 +0200237 case 'N':
238 dont_verify_all = 1;
239 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000240 case 'c':
241 chip_to_probe = strdup(optarg);
242 break;
243 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000244 verbose_screen++;
Nico Huberd152fb92017-06-19 12:57:10 +0200245 if (verbose_screen > FLASHROM_MSG_DEBUG2)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000246 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000247 break;
248 case 'E':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000249 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000250 erase_it = 1;
251 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000252 case 'f':
253 force = 1;
254 break;
255 case 'l':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000256 if (layoutfile)
257 cli_classic_abort_usage("Error: --layout specified more than once. Aborting.\n");
258 if (ifd)
259 cli_classic_abort_usage("Error: --layout and --ifd both specified. Aborting.\n");
260 if (fmap)
261 cli_classic_abort_usage("Error: --layout and --fmap-file both specified. Aborting.\n");
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000262 layoutfile = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000263 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300264 case OPTION_IFD:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000265 if (layoutfile)
266 cli_classic_abort_usage("Error: --layout and --ifd both specified. Aborting.\n");
267 if (fmap)
268 cli_classic_abort_usage("Error: --fmap-file and --ifd both specified. Aborting.\n");
Nico Huber305f4172013-06-14 11:55:26 +0200269 ifd = 1;
270 break;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100271 case OPTION_FMAP_FILE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000272 if (fmap)
273 cli_classic_abort_usage("Error: --fmap or --fmap-file specified "
Arthur Heymansc82900b2018-01-10 12:48:16 +0100274 "more than once. Aborting.\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000275 if (ifd)
276 cli_classic_abort_usage("Error: --fmap-file and --ifd both specified. Aborting.\n");
277 if (layoutfile)
278 cli_classic_abort_usage("Error: --fmap-file and --layout both specified. Aborting.\n");
Arthur Heymansc82900b2018-01-10 12:48:16 +0100279 fmapfile = strdup(optarg);
280 fmap = 1;
281 break;
282 case OPTION_FMAP:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000283 if (fmap)
284 cli_classic_abort_usage("Error: --fmap or --fmap-file specified "
Arthur Heymansc82900b2018-01-10 12:48:16 +0100285 "more than once. Aborting.\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000286 if (ifd)
287 cli_classic_abort_usage("Error: --fmap and --ifd both specified. Aborting.\n");
288 if (layoutfile)
289 cli_classic_abort_usage("Error: --layout and --fmap both specified. Aborting.\n");
Arthur Heymansc82900b2018-01-10 12:48:16 +0100290 fmap = 1;
291 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000292 case 'i':
293 tempstr = strdup(optarg);
Arthur Heymansb04fef92019-02-05 17:35:05 +0100294 if (register_include_arg(&include_args, tempstr)) {
Stefan Taunerb8911d62012-12-26 07:55:00 +0000295 free(tempstr);
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000296 cli_classic_abort_usage(NULL);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000297 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000298 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300299 case OPTION_FLASH_CONTENTS:
Angel Ponsa60f6412020-03-31 15:02:02 +0200300 if (referencefile)
301 cli_classic_abort_usage("Error: --flash-contents specified more than once."
302 "Aborting.\n");
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300303 referencefile = strdup(optarg);
304 break;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000305 case OPTION_FLASH_NAME:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000306 cli_classic_validate_singleop(&operation_specified);
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000307 flash_name = 1;
308 break;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000309 case OPTION_FLASH_SIZE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000310 cli_classic_validate_singleop(&operation_specified);
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000311 flash_size = 1;
312 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000313 case 'L':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000314 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000315 list_supported = 1;
316 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000317 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000318#if CONFIG_PRINT_WIKI == 1
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000319 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000320 list_supported_wiki = 1;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000321#else
Idwer Vollering40407b62020-12-08 00:24:39 +0100322 cli_classic_abort_usage("Error: Wiki output was not "
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000323 "compiled in. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000324#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000325 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000326 case 'p':
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200327 if (prog != NULL) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000328 cli_classic_abort_usage("Error: --programmer specified "
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000329 "more than once. You can separate "
330 "multiple\nparameters for a programmer "
331 "with \",\". Please see the man page "
332 "for details.\n");
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000333 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200334 size_t p;
335 for (p = 0; p < programmer_table_size; p++) {
336 name = programmer_table[p]->name;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000337 namelen = strlen(name);
338 if (strncmp(optarg, name, namelen) == 0) {
339 switch (optarg[namelen]) {
340 case ':':
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000341 pparam = strdup(optarg + namelen + 1);
342 if (!strlen(pparam)) {
343 free(pparam);
344 pparam = NULL;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000345 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200346 prog = programmer_table[p];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000347 break;
348 case '\0':
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200349 prog = programmer_table[p];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000350 break;
351 default:
352 /* The continue refers to the
353 * for loop. It is here to be
354 * able to differentiate between
355 * foo and foobar.
356 */
357 continue;
358 }
359 break;
360 }
361 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200362 if (prog == NULL) {
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000363 fprintf(stderr, "Error: Unknown programmer \"%s\". Valid choices are:\n",
364 optarg);
365 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000366 msg_ginfo(".\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000367 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000368 }
369 break;
370 case 'R':
371 /* print_version() is always called during startup. */
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000372 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000373 exit(0);
374 break;
375 case 'h':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000376 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000377 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000378 exit(0);
379 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000380 case 'o':
381#ifdef STANDALONE
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000382 cli_classic_abort_usage("Log file not supported in standalone mode. Aborting.\n");
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000383#else /* STANDALONE */
Elyes HAOUASef78de42019-07-18 15:08:10 +0200384 if (logfile) {
385 fprintf(stderr, "Warning: -o/--output specified multiple times.\n");
386 free(logfile);
387 }
388
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000389 logfile = strdup(optarg);
390 if (logfile[0] == '\0') {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000391 cli_classic_abort_usage("No log filename specified.\n");
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000392 }
393#endif /* STANDALONE */
394 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000395 default:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000396 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000397 break;
398 }
399 }
400
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000401 if (optind < argc)
402 cli_classic_abort_usage("Error: Extra parameter found.\n");
403 if ((read_it | write_it | verify_it) && check_filename(filename, "image"))
404 cli_classic_abort_usage(NULL);
405 if (layoutfile && check_filename(layoutfile, "layout"))
406 cli_classic_abort_usage(NULL);
407 if (fmapfile && check_filename(fmapfile, "fmap"))
408 cli_classic_abort_usage(NULL);
409 if (referencefile && check_filename(referencefile, "reference"))
410 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000411
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000412#ifndef STANDALONE
413 if (logfile && check_filename(logfile, "log"))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000414 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000415 if (logfile && open_logfile(logfile))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000416 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000417#endif /* !STANDALONE */
418
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000419#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000420 if (list_supported_wiki) {
421 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000422 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000423 }
424#endif
425
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000426 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000427 if (print_supported())
428 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000429 goto out;
430 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000431
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000432#ifndef STANDALONE
433 start_logging();
434#endif /* !STANDALONE */
435
436 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000437 msg_gdbg("Command line (%i args):", argc - 1);
438 for (i = 0; i < argc; i++) {
439 msg_gdbg(" %s", argv[i]);
440 }
441 msg_gdbg("\n");
442
443 if (layoutfile && read_romlayout(layoutfile)) {
444 ret = 1;
445 goto out;
446 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100447
Arthur Heymansb04fef92019-02-05 17:35:05 +0100448 if (!ifd && !fmap && process_include_args(get_global_layout(), include_args)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000449 ret = 1;
450 goto out;
451 }
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000452 /* Does a chip with the requested name exist in the flashchips array? */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000453 if (chip_to_probe) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000454 for (chip = flashchips; chip && chip->name; chip++)
455 if (!strcmp(chip->name, chip_to_probe))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000456 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000457 if (!chip || !chip->name) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000458 msg_cerr("Error: Unknown chip '%s' specified.\n", chip_to_probe);
459 msg_gerr("Run flashrom -L to view the hardware supported in this flashrom version.\n");
460 ret = 1;
461 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000462 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000463 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000464 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000465
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200466 if (prog == NULL) {
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200467 const struct programmer_entry *const default_programmer = CONFIG_DEFAULT_PROGRAMMER_NAME;
468
469 if (default_programmer) {
470 prog = default_programmer;
Stefan Tauner265fcac2014-06-02 00:12:23 +0000471 /* We need to strdup here because we free(pparam) unconditionally later. */
472 pparam = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
473 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200474 default_programmer->name, pparam);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000475 } else {
476 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000477#if CONFIG_INTERNAL == 1
478 "To choose the mainboard of this computer use 'internal'. "
479#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000480 "Valid choices are:\n");
481 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000482 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000483 ret = 1;
484 goto out;
485 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000486 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000487
Carl-Daniel Hailfinger49884202010-05-22 07:10:46 +0000488 /* FIXME: Delay calibration should happen in programmer code. */
489 myusec_calibrate_delay();
490
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200491 if (programmer_init(prog, pparam)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000492 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000493 ret = 1;
494 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000495 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000496 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000497 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000498 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000499
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000500 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000501 startchip = 0;
Nico Huber519be662018-12-23 20:03:35 +0100502 while (chipcount < (int)ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000503 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000504 if (startchip == -1)
505 break;
506 chipcount++;
507 startchip++;
508 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000509 }
510
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000511 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000512 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
513 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000514 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000515 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000516 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000517 ret = 1;
518 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000519 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000520 msg_cinfo("No EEPROM/flash device found.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000521 if (!force || !chip_to_probe) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000522 msg_cinfo("Note: flashrom can never write if the flash chip isn't found "
523 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000524 }
525 if (force && read_it && chip_to_probe) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000526 struct registered_master *mst;
527 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000528 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000529 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000530 for (j = 0; j < registered_master_count; j++) {
531 mst = &registered_masters[j];
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000532 /* chip is still set from the chip_to_probe earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000533 if (mst->buses_supported & chip->bustype)
534 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000535 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000536 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000537 msg_cinfo("No compatible controller found for the requested flash chip.\n");
538 ret = 1;
539 goto out_shutdown;
540 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000541 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000542 msg_cinfo("More than one compatible controller found for the requested flash "
543 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000544 for (j = 0; j < registered_master_count; j++) {
545 mst = &registered_masters[j];
546 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000547 if (startchip != -1)
548 break;
549 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000550 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000551 // FIXME: This should never happen! Ask for a bug report?
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000552 msg_cinfo("Probing for flash chip '%s' failed.\n", chip_to_probe);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000553 ret = 1;
554 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000555 }
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000556 if (map_flash(&flashes[0]) != 0) {
557 free(flashes[0].chip);
558 ret = 1;
559 goto out_shutdown;
560 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000561 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
562 ret = read_flash_to_file(&flashes[0], filename);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000563 unmap_flash(&flashes[0]);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000564 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000565 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000566 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000567 ret = 1;
568 goto out_shutdown;
Stefan Tauner1d947632011-09-11 22:08:58 +0000569 } else if (!chip_to_probe) {
570 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000571 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000572 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000573 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000574 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000575 }
576
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000577 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000578
Stefan Tauner9b32de92014-08-08 23:52:33 +0000579 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000580
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000581 unsigned int limitexceeded = count_max_decode_exceedings(fill_flash);
582 if (limitexceeded > 0 && !force) {
583 enum chipbustype commonbuses = fill_flash->mst->buses_supported & fill_flash->chip->bustype;
584
585 /* Sometimes chip and programmer have more than one bus in common,
586 * and the limit is not exceeded on all buses. Tell the user. */
587 if ((bitcount(commonbuses) > limitexceeded)) {
588 msg_pdbg("There is at least one interface available which could support the size of\n"
589 "the selected flash chip.\n");
590 }
591 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
592 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000593 ret = 1;
594 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000595 }
596
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000597 if (!(read_it | write_it | verify_it | erase_it | flash_name | flash_size)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000598 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000599 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000600 }
601
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000602 if (flash_name) {
603 if (fill_flash->chip->vendor && fill_flash->chip->name) {
604 printf("vendor=\"%s\" name=\"%s\"\n",
605 fill_flash->chip->vendor,
606 fill_flash->chip->name);
607 } else {
608 ret = -1;
609 }
610 goto out_shutdown;
611 }
612
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000613 if (flash_size) {
614 printf("%d\n", fill_flash->chip->total_size * 1024);
615 goto out_shutdown;
616 }
617
Nico Huber305f4172013-06-14 11:55:26 +0200618 if (layoutfile) {
619 layout = get_global_layout();
620 } else if (ifd && (flashrom_layout_read_from_ifd(&layout, fill_flash, NULL, 0) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100621 process_include_args(layout, include_args))) {
Nico Huber305f4172013-06-14 11:55:26 +0200622 ret = 1;
623 goto out_shutdown;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100624 } else if (fmap && fmapfile) {
625 struct stat s;
626 if (stat(fmapfile, &s) != 0) {
627 msg_gerr("Failed to stat fmapfile \"%s\"\n", fmapfile);
628 ret = 1;
629 goto out_shutdown;
630 }
631
632 size_t fmapfile_size = s.st_size;
633 uint8_t *fmapfile_buffer = malloc(fmapfile_size);
634 if (!fmapfile_buffer) {
635 ret = 1;
636 goto out_shutdown;
637 }
638
639 if (read_buf_from_file(fmapfile_buffer, fmapfile_size, fmapfile)) {
640 ret = 1;
641 free(fmapfile_buffer);
642 goto out_shutdown;
643 }
644
645 if (flashrom_layout_read_fmap_from_buffer(&layout, fill_flash, fmapfile_buffer, fmapfile_size) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100646 process_include_args(layout, include_args)) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100647 ret = 1;
648 free(fmapfile_buffer);
649 goto out_shutdown;
650 }
651 free(fmapfile_buffer);
652 } else if (fmap && (flashrom_layout_read_fmap_from_rom(&layout, fill_flash, 0,
Arthur Heymansb04fef92019-02-05 17:35:05 +0100653 fill_flash->chip->total_size * 1024) || process_include_args(layout, include_args))) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100654 ret = 1;
655 goto out_shutdown;
Nico Huber305f4172013-06-14 11:55:26 +0200656 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000657
Nico Huber305f4172013-06-14 11:55:26 +0200658 flashrom_layout_set(fill_flash, layout);
Nico Huber899e4ec2016-04-29 18:39:01 +0200659 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE, !!force);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300660#if CONFIG_INTERNAL == 1
Nico Huber899e4ec2016-04-29 18:39:01 +0200661 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE_BOARDMISMATCH, !!force_boardmismatch);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300662#endif
Nico Huber899e4ec2016-04-29 18:39:01 +0200663 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_AFTER_WRITE, !dont_verify_it);
Nico Huber99d15952016-05-02 16:54:24 +0200664 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_WHOLE_CHIP, !dont_verify_all);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000665
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000666 /* FIXME: We should issue an unconditional chip reset here. This can be
667 * done once we have a .reset function in struct flashchip.
668 * Give the chip time to settle.
669 */
670 programmer_delay(100000);
Nico Huber899e4ec2016-04-29 18:39:01 +0200671 if (read_it)
672 ret = do_read(fill_flash, filename);
673 else if (erase_it)
674 ret = do_erase(fill_flash);
675 else if (write_it)
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300676 ret = do_write(fill_flash, filename, referencefile);
Nico Huber899e4ec2016-04-29 18:39:01 +0200677 else if (verify_it)
678 ret = do_verify(fill_flash, filename);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000679
Nico Huber305f4172013-06-14 11:55:26 +0200680 flashrom_layout_release(layout);
681
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000682out_shutdown:
683 programmer_shutdown();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000684out:
Stefan Taunerb8911d62012-12-26 07:55:00 +0000685 for (i = 0; i < chipcount; i++)
686 free(flashes[i].chip);
687
Arthur Heymansb04fef92019-02-05 17:35:05 +0100688 layout_cleanup(&include_args);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000689 free(filename);
Richard Hughes6eca7612018-12-19 15:40:27 +0000690 free(fmapfile);
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300691 free(referencefile);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000692 free(layoutfile);
693 free(pparam);
694 /* clean up global variables */
Nico Huberbcb2e5a2012-12-30 01:23:17 +0000695 free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000696 chip_to_probe = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000697#ifndef STANDALONE
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000698 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000699 ret |= close_logfile();
700#endif /* !STANDALONE */
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000701 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000702}