blob: f20166ce7d798ee94da1a0ef609f94f8f8d113c7 [file] [log] [blame]
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp <yhlu@tyan.com>
6 * Copyright (C) 2005-2008 coresystems GmbH
7 * Copyright (C) 2008,2009,2010 Carl-Daniel Hailfinger
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000018 */
19
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000020#include <stdio.h>
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000021#include <fcntl.h>
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000022#include <sys/stat.h>
23#include <string.h>
24#include <stdlib.h>
25#include <getopt.h>
26#include "flash.h"
27#include "flashchips.h"
Arthur Heymansc82900b2018-01-10 12:48:16 +010028#include "fmap.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000029#include "programmer.h"
Nico Huber18781102012-12-10 13:34:12 +000030#include "libflashrom.h"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000031
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000032static void cli_classic_usage(const char *name)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000033{
Stefan Taunerb226cb12012-11-24 18:59:39 +000034 printf("Usage: %s [-h|-R|-L|"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000035#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000036 "-z|"
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000037#endif
Edward O'Callaghan16ec45c2019-10-04 20:24:53 +100038 "\n\t-p <programmername>[:<parameters>] [-c <chipname>]\n"
39 "\t\t(--flash-name|--flash-size|\n"
40 "\t\t [-E|(-r|-w|-v) <file>]\n"
41 "\t\t [(-l <layoutfile>|--ifd| --fmap|--fmap-file <file>) [-i <imagename>]...]\n"
42 "\t\t [-n] [-N] [-f])]\n"
43 "\t[-V[V[V]]] [-o <logfile>]\n\n", name);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000044
Stefan Taunerb226cb12012-11-24 18:59:39 +000045 printf(" -h | --help print this help text\n"
46 " -R | --version print version (release)\n"
47 " -r | --read <file> read flash and save to <file>\n"
Daniel Campello8eaef7d2021-04-15 10:36:04 -060048 " -w | --write <file|-> write <file> or the content provided\n"
49 " on the standard input to flash\n"
50 " -v | --verify <file|-> verify flash against <file>\n"
51 " or the content provided on the standard input\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000052 " -E | --erase erase flash memory\n"
53 " -V | --verbose more verbose output\n"
54 " -c | --chip <chipname> probe only for specified flash chip\n"
55 " -f | --force force specific operations (see man page)\n"
56 " -n | --noverify don't auto-verify\n"
Nico Huber99d15952016-05-02 16:54:24 +020057 " -N | --noverify-all verify included regions only (cf. -i)\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000058 " -l | --layout <layoutfile> read ROM layout from <layoutfile>\n"
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +100059 " --flash-name read out the detected flash name\n"
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +100060 " --flash-size read out the detected flash size\n"
Arthur Heymansc82900b2018-01-10 12:48:16 +010061 " --fmap read ROM layout from fmap embedded in ROM\n"
62 " --fmap-file <fmapfile> read ROM layout from fmap in <fmapfile>\n"
Nico Huber305f4172013-06-14 11:55:26 +020063 " --ifd read layout from an Intel Firmware Descriptor\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000064 " -i | --image <name> only flash image <name> from flash layout\n"
65 " -o | --output <logfile> log output to <logfile>\n"
Paul Kocialkowskif701f342018-01-15 01:10:36 +030066 " --flash-contents <ref-file> assume flash contents to be <ref-file>\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000067 " -L | --list-supported print supported devices\n"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000068#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000069 " -z | --list-supported-wiki print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000070#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000071 " -p | --programmer <name>[:<param>] specify the programmer device. One of\n");
72 list_programmers_linebreak(4, 80, 0);
73 printf(".\n\nYou can specify one of -h, -R, -L, "
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000074#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000075 "-z, "
76#endif
77 "-E, -r, -w, -v or no operation.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000078 "If no operation is specified, flashrom will only probe for flash chips.\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000079}
80
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100081static void cli_classic_abort_usage(const char *msg)
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000082{
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100083 if (msg)
84 fprintf(stderr, "%s", msg);
Uwe Hermann2db77a02010-06-04 17:07:39 +000085 printf("Please run \"flashrom --help\" for usage info.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000086 exit(1);
87}
88
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100089static void cli_classic_validate_singleop(int *operation_specified)
90{
91 if (++(*operation_specified) > 1) {
92 cli_classic_abort_usage("More than one operation specified. Aborting.\n");
93 }
94}
95
Jacob Garber4a84ec22019-07-25 19:12:31 -060096static int check_filename(char *filename, const char *type)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +000097{
98 if (!filename || (filename[0] == '\0')) {
99 fprintf(stderr, "Error: No %s file specified.\n", type);
100 return 1;
101 }
102 /* 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 -0600103 if (filename[0] == '-' && filename[1] != '\0')
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000104 fprintf(stderr, "Warning: Supplied %s file name starts with -\n", type);
105 return 0;
106}
107
Uwe Hermann394ee782011-08-20 14:14:22 +0000108int main(int argc, char *argv[])
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000109{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000110 const struct flashchip *chip = NULL;
Jernej Škrabece814a9b2014-12-12 00:32:03 +0000111 /* Probe for up to eight flash chips. */
112 struct flashctx flashes[8] = {{0}};
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000113 struct flashctx *fill_flash;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000114 const char *name;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000115 int namelen, opt, i, j;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100116 int startchip = -1, chipcount = 0, option_index = 0, force = 0, ifd = 0, fmap = 0;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000117#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000118 int list_supported_wiki = 0;
119#endif
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000120 int flash_name = 0, flash_size = 0;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000121 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
Nico Huber99d15952016-05-02 16:54:24 +0200122 int dont_verify_it = 0, dont_verify_all = 0, list_supported = 0, operation_specified = 0;
Nico Huber305f4172013-06-14 11:55:26 +0200123 struct flashrom_layout *layout = NULL;
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200124 // enum programmer prog = PROGRAMMER_INVALID;
125 static const struct programmer_entry *prog = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300126 enum {
127 OPTION_IFD = 0x0100,
Arthur Heymansc82900b2018-01-10 12:48:16 +0100128 OPTION_FMAP,
129 OPTION_FMAP_FILE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300130 OPTION_FLASH_CONTENTS,
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000131 OPTION_FLASH_NAME,
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000132 OPTION_FLASH_SIZE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300133 };
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000134 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000135
Nico Huber99d15952016-05-02 16:54:24 +0200136 static const char optstring[] = "r:Rw:v:nNVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000137 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000138 {"read", 1, NULL, 'r'},
139 {"write", 1, NULL, 'w'},
140 {"erase", 0, NULL, 'E'},
141 {"verify", 1, NULL, 'v'},
142 {"noverify", 0, NULL, 'n'},
Nico Huber99d15952016-05-02 16:54:24 +0200143 {"noverify-all", 0, NULL, 'N'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000144 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000145 {"verbose", 0, NULL, 'V'},
146 {"force", 0, NULL, 'f'},
147 {"layout", 1, NULL, 'l'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300148 {"ifd", 0, NULL, OPTION_IFD},
Arthur Heymansc82900b2018-01-10 12:48:16 +0100149 {"fmap", 0, NULL, OPTION_FMAP},
150 {"fmap-file", 1, NULL, OPTION_FMAP_FILE},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000151 {"image", 1, NULL, 'i'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300152 {"flash-contents", 1, NULL, OPTION_FLASH_CONTENTS},
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000153 {"flash-name", 0, NULL, OPTION_FLASH_NAME},
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000154 {"flash-size", 0, NULL, OPTION_FLASH_SIZE},
155 {"get-size", 0, NULL, OPTION_FLASH_SIZE}, // (deprecated): back compatibility.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000156 {"list-supported", 0, NULL, 'L'},
157 {"list-supported-wiki", 0, NULL, 'z'},
158 {"programmer", 1, NULL, 'p'},
159 {"help", 0, NULL, 'h'},
160 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000161 {"output", 1, NULL, 'o'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000162 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000163 };
164
165 char *filename = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300166 char *referencefile = NULL;
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000167 char *layoutfile = NULL;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100168 char *fmapfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000169#ifndef STANDALONE
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000170 char *logfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000171#endif /* !STANDALONE */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000172 char *tempstr = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000173 char *pparam = NULL;
Arthur Heymansb04fef92019-02-05 17:35:05 +0100174 struct layout_include_args *include_args = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000175
Nico Huber18781102012-12-10 13:34:12 +0000176 flashrom_set_log_callback((flashrom_log_callback *)&flashrom_print_cb);
177
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000178 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000179 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000180
181 if (selfcheck())
182 exit(1);
183
184 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000185 /* FIXME: Delay all operation_specified checks until after command
186 * line parsing to allow --help overriding everything else.
187 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000188 while ((opt = getopt_long(argc, argv, optstring,
189 long_options, &option_index)) != EOF) {
190 switch (opt) {
191 case 'r':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000192 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000193 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000194 read_it = 1;
195 break;
196 case 'w':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000197 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000198 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000199 write_it = 1;
200 break;
201 case 'v':
202 //FIXME: gracefully handle superfluous -v
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000203 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000204 if (dont_verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000205 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000206 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000207 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000208 verify_it = 1;
209 break;
210 case 'n':
211 if (verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000212 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000213 }
214 dont_verify_it = 1;
215 break;
Nico Huber99d15952016-05-02 16:54:24 +0200216 case 'N':
217 dont_verify_all = 1;
218 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000219 case 'c':
220 chip_to_probe = strdup(optarg);
221 break;
222 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000223 verbose_screen++;
Nico Huberd152fb92017-06-19 12:57:10 +0200224 if (verbose_screen > FLASHROM_MSG_DEBUG2)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000225 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000226 break;
227 case 'E':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000228 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000229 erase_it = 1;
230 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000231 case 'f':
232 force = 1;
233 break;
234 case 'l':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000235 if (layoutfile)
236 cli_classic_abort_usage("Error: --layout specified more than once. Aborting.\n");
237 if (ifd)
238 cli_classic_abort_usage("Error: --layout and --ifd both specified. Aborting.\n");
239 if (fmap)
240 cli_classic_abort_usage("Error: --layout and --fmap-file both specified. Aborting.\n");
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000241 layoutfile = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000242 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300243 case OPTION_IFD:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000244 if (layoutfile)
245 cli_classic_abort_usage("Error: --layout and --ifd both specified. Aborting.\n");
246 if (fmap)
247 cli_classic_abort_usage("Error: --fmap-file and --ifd both specified. Aborting.\n");
Nico Huber305f4172013-06-14 11:55:26 +0200248 ifd = 1;
249 break;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100250 case OPTION_FMAP_FILE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000251 if (fmap)
252 cli_classic_abort_usage("Error: --fmap or --fmap-file specified "
Arthur Heymansc82900b2018-01-10 12:48:16 +0100253 "more than once. Aborting.\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000254 if (ifd)
255 cli_classic_abort_usage("Error: --fmap-file and --ifd both specified. Aborting.\n");
256 if (layoutfile)
257 cli_classic_abort_usage("Error: --fmap-file and --layout both specified. Aborting.\n");
Arthur Heymansc82900b2018-01-10 12:48:16 +0100258 fmapfile = strdup(optarg);
259 fmap = 1;
260 break;
261 case OPTION_FMAP:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000262 if (fmap)
263 cli_classic_abort_usage("Error: --fmap or --fmap-file specified "
Arthur Heymansc82900b2018-01-10 12:48:16 +0100264 "more than once. Aborting.\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000265 if (ifd)
266 cli_classic_abort_usage("Error: --fmap and --ifd both specified. Aborting.\n");
267 if (layoutfile)
268 cli_classic_abort_usage("Error: --layout and --fmap both specified. Aborting.\n");
Arthur Heymansc82900b2018-01-10 12:48:16 +0100269 fmap = 1;
270 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000271 case 'i':
272 tempstr = strdup(optarg);
Arthur Heymansb04fef92019-02-05 17:35:05 +0100273 if (register_include_arg(&include_args, tempstr)) {
Stefan Taunerb8911d62012-12-26 07:55:00 +0000274 free(tempstr);
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000275 cli_classic_abort_usage(NULL);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000276 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000277 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300278 case OPTION_FLASH_CONTENTS:
279 referencefile = strdup(optarg);
280 break;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000281 case OPTION_FLASH_NAME:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000282 cli_classic_validate_singleop(&operation_specified);
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000283 flash_name = 1;
284 break;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000285 case OPTION_FLASH_SIZE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000286 cli_classic_validate_singleop(&operation_specified);
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000287 flash_size = 1;
288 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000289 case 'L':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000290 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000291 list_supported = 1;
292 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000293 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000294#if CONFIG_PRINT_WIKI == 1
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000295 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000296 list_supported_wiki = 1;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000297#else
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000298 cli_classic_abort_usage("Error: Wiki output was not"
299 "compiled in. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000300#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000301 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000302 case 'p':
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200303 if (prog != NULL) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000304 cli_classic_abort_usage("Error: --programmer specified "
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000305 "more than once. You can separate "
306 "multiple\nparameters for a programmer "
307 "with \",\". Please see the man page "
308 "for details.\n");
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000309 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200310 size_t p;
311 for (p = 0; p < programmer_table_size; p++) {
312 name = programmer_table[p]->name;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000313 namelen = strlen(name);
314 if (strncmp(optarg, name, namelen) == 0) {
315 switch (optarg[namelen]) {
316 case ':':
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000317 pparam = strdup(optarg + namelen + 1);
318 if (!strlen(pparam)) {
319 free(pparam);
320 pparam = NULL;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000321 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200322 prog = programmer_table[p];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000323 break;
324 case '\0':
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200325 prog = programmer_table[p];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000326 break;
327 default:
328 /* The continue refers to the
329 * for loop. It is here to be
330 * able to differentiate between
331 * foo and foobar.
332 */
333 continue;
334 }
335 break;
336 }
337 }
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200338 if (prog == NULL) {
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000339 fprintf(stderr, "Error: Unknown programmer \"%s\". Valid choices are:\n",
340 optarg);
341 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000342 msg_ginfo(".\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000343 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000344 }
345 break;
346 case 'R':
347 /* print_version() is always called during startup. */
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000348 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000349 exit(0);
350 break;
351 case 'h':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000352 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000353 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000354 exit(0);
355 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000356 case 'o':
357#ifdef STANDALONE
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000358 cli_classic_abort_usage("Log file not supported in standalone mode. Aborting.\n");
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000359#else /* STANDALONE */
Elyes HAOUASef78de42019-07-18 15:08:10 +0200360 if (logfile) {
361 fprintf(stderr, "Warning: -o/--output specified multiple times.\n");
362 free(logfile);
363 }
364
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000365 logfile = strdup(optarg);
366 if (logfile[0] == '\0') {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000367 cli_classic_abort_usage("No log filename specified.\n");
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000368 }
369#endif /* STANDALONE */
370 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000371 default:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000372 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000373 break;
374 }
375 }
376
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000377 if (optind < argc)
378 cli_classic_abort_usage("Error: Extra parameter found.\n");
379 if ((read_it | write_it | verify_it) && check_filename(filename, "image"))
380 cli_classic_abort_usage(NULL);
381 if (layoutfile && check_filename(layoutfile, "layout"))
382 cli_classic_abort_usage(NULL);
383 if (fmapfile && check_filename(fmapfile, "fmap"))
384 cli_classic_abort_usage(NULL);
385 if (referencefile && check_filename(referencefile, "reference"))
386 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000387
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000388#ifndef STANDALONE
389 if (logfile && check_filename(logfile, "log"))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000390 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000391 if (logfile && open_logfile(logfile))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000392 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000393#endif /* !STANDALONE */
394
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000395#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000396 if (list_supported_wiki) {
397 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000398 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000399 }
400#endif
401
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000402 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000403 if (print_supported())
404 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000405 goto out;
406 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000407
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000408#ifndef STANDALONE
409 start_logging();
410#endif /* !STANDALONE */
411
412 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000413 msg_gdbg("Command line (%i args):", argc - 1);
414 for (i = 0; i < argc; i++) {
415 msg_gdbg(" %s", argv[i]);
416 }
417 msg_gdbg("\n");
418
419 if (layoutfile && read_romlayout(layoutfile)) {
420 ret = 1;
421 goto out;
422 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100423
Arthur Heymansb04fef92019-02-05 17:35:05 +0100424 if (!ifd && !fmap && process_include_args(get_global_layout(), include_args)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000425 ret = 1;
426 goto out;
427 }
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000428 /* Does a chip with the requested name exist in the flashchips array? */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000429 if (chip_to_probe) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000430 for (chip = flashchips; chip && chip->name; chip++)
431 if (!strcmp(chip->name, chip_to_probe))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000432 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000433 if (!chip || !chip->name) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000434 msg_cerr("Error: Unknown chip '%s' specified.\n", chip_to_probe);
435 msg_gerr("Run flashrom -L to view the hardware supported in this flashrom version.\n");
436 ret = 1;
437 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000438 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000439 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000440 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000441
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200442 if (prog == NULL) {
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000443 if (CONFIG_DEFAULT_PROGRAMMER != PROGRAMMER_INVALID) {
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200444 prog = programmer_table[CONFIG_DEFAULT_PROGRAMMER];
Stefan Tauner265fcac2014-06-02 00:12:23 +0000445 /* We need to strdup here because we free(pparam) unconditionally later. */
446 pparam = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
447 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
Thomas Heijligen633d6db2021-03-31 19:09:44 +0200448 programmer_table[CONFIG_DEFAULT_PROGRAMMER]->name, pparam);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000449 } else {
450 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000451#if CONFIG_INTERNAL == 1
452 "To choose the mainboard of this computer use 'internal'. "
453#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000454 "Valid choices are:\n");
455 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000456 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000457 ret = 1;
458 goto out;
459 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000460 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000461
Carl-Daniel Hailfinger49884202010-05-22 07:10:46 +0000462 /* FIXME: Delay calibration should happen in programmer code. */
463 myusec_calibrate_delay();
464
Thomas Heijligenacd9c942021-06-01 14:51:13 +0200465 if (programmer_init(prog, pparam)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000466 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000467 ret = 1;
468 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000469 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000470 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000471 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000472 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000473
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000474 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000475 startchip = 0;
Nico Huber519be662018-12-23 20:03:35 +0100476 while (chipcount < (int)ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000477 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000478 if (startchip == -1)
479 break;
480 chipcount++;
481 startchip++;
482 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000483 }
484
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000485 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000486 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
487 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000488 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000489 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000490 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000491 ret = 1;
492 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000493 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000494 msg_cinfo("No EEPROM/flash device found.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000495 if (!force || !chip_to_probe) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000496 msg_cinfo("Note: flashrom can never write if the flash chip isn't found "
497 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000498 }
499 if (force && read_it && chip_to_probe) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000500 struct registered_master *mst;
501 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000502 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000503 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000504 for (j = 0; j < registered_master_count; j++) {
505 mst = &registered_masters[j];
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000506 /* chip is still set from the chip_to_probe earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000507 if (mst->buses_supported & chip->bustype)
508 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000509 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000510 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000511 msg_cinfo("No compatible controller found for the requested flash chip.\n");
512 ret = 1;
513 goto out_shutdown;
514 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000515 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000516 msg_cinfo("More than one compatible controller found for the requested flash "
517 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000518 for (j = 0; j < registered_master_count; j++) {
519 mst = &registered_masters[j];
520 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000521 if (startchip != -1)
522 break;
523 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000524 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000525 // FIXME: This should never happen! Ask for a bug report?
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000526 msg_cinfo("Probing for flash chip '%s' failed.\n", chip_to_probe);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000527 ret = 1;
528 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000529 }
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000530 if (map_flash(&flashes[0]) != 0) {
531 free(flashes[0].chip);
532 ret = 1;
533 goto out_shutdown;
534 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000535 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
536 ret = read_flash_to_file(&flashes[0], filename);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000537 unmap_flash(&flashes[0]);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000538 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000539 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000540 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000541 ret = 1;
542 goto out_shutdown;
Stefan Tauner1d947632011-09-11 22:08:58 +0000543 } else if (!chip_to_probe) {
544 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000545 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000546 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000547 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000548 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000549 }
550
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000551 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000552
Stefan Tauner9b32de92014-08-08 23:52:33 +0000553 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000554
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000555 unsigned int limitexceeded = count_max_decode_exceedings(fill_flash);
556 if (limitexceeded > 0 && !force) {
557 enum chipbustype commonbuses = fill_flash->mst->buses_supported & fill_flash->chip->bustype;
558
559 /* Sometimes chip and programmer have more than one bus in common,
560 * and the limit is not exceeded on all buses. Tell the user. */
561 if ((bitcount(commonbuses) > limitexceeded)) {
562 msg_pdbg("There is at least one interface available which could support the size of\n"
563 "the selected flash chip.\n");
564 }
565 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
566 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000567 ret = 1;
568 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000569 }
570
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000571 if (!(read_it | write_it | verify_it | erase_it | flash_name | flash_size)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000572 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000573 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000574 }
575
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000576 if (flash_name) {
577 if (fill_flash->chip->vendor && fill_flash->chip->name) {
578 printf("vendor=\"%s\" name=\"%s\"\n",
579 fill_flash->chip->vendor,
580 fill_flash->chip->name);
581 } else {
582 ret = -1;
583 }
584 goto out_shutdown;
585 }
586
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000587 if (flash_size) {
588 printf("%d\n", fill_flash->chip->total_size * 1024);
589 goto out_shutdown;
590 }
591
Nico Huber305f4172013-06-14 11:55:26 +0200592 if (layoutfile) {
593 layout = get_global_layout();
594 } else if (ifd && (flashrom_layout_read_from_ifd(&layout, fill_flash, NULL, 0) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100595 process_include_args(layout, include_args))) {
Nico Huber305f4172013-06-14 11:55:26 +0200596 ret = 1;
597 goto out_shutdown;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100598 } else if (fmap && fmapfile) {
599 struct stat s;
600 if (stat(fmapfile, &s) != 0) {
601 msg_gerr("Failed to stat fmapfile \"%s\"\n", fmapfile);
602 ret = 1;
603 goto out_shutdown;
604 }
605
606 size_t fmapfile_size = s.st_size;
607 uint8_t *fmapfile_buffer = malloc(fmapfile_size);
608 if (!fmapfile_buffer) {
609 ret = 1;
610 goto out_shutdown;
611 }
612
613 if (read_buf_from_file(fmapfile_buffer, fmapfile_size, fmapfile)) {
614 ret = 1;
615 free(fmapfile_buffer);
616 goto out_shutdown;
617 }
618
619 if (flashrom_layout_read_fmap_from_buffer(&layout, fill_flash, fmapfile_buffer, fmapfile_size) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100620 process_include_args(layout, include_args)) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100621 ret = 1;
622 free(fmapfile_buffer);
623 goto out_shutdown;
624 }
625 free(fmapfile_buffer);
626 } else if (fmap && (flashrom_layout_read_fmap_from_rom(&layout, fill_flash, 0,
Arthur Heymansb04fef92019-02-05 17:35:05 +0100627 fill_flash->chip->total_size * 1024) || process_include_args(layout, include_args))) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100628 ret = 1;
629 goto out_shutdown;
Nico Huber305f4172013-06-14 11:55:26 +0200630 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000631
Nico Huber305f4172013-06-14 11:55:26 +0200632 flashrom_layout_set(fill_flash, layout);
Nico Huber899e4ec2016-04-29 18:39:01 +0200633 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE, !!force);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300634#if CONFIG_INTERNAL == 1
Nico Huber899e4ec2016-04-29 18:39:01 +0200635 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE_BOARDMISMATCH, !!force_boardmismatch);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300636#endif
Nico Huber899e4ec2016-04-29 18:39:01 +0200637 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_AFTER_WRITE, !dont_verify_it);
Nico Huber99d15952016-05-02 16:54:24 +0200638 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_WHOLE_CHIP, !dont_verify_all);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000639
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000640 /* FIXME: We should issue an unconditional chip reset here. This can be
641 * done once we have a .reset function in struct flashchip.
642 * Give the chip time to settle.
643 */
644 programmer_delay(100000);
Nico Huber899e4ec2016-04-29 18:39:01 +0200645 if (read_it)
646 ret = do_read(fill_flash, filename);
647 else if (erase_it)
648 ret = do_erase(fill_flash);
649 else if (write_it)
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300650 ret = do_write(fill_flash, filename, referencefile);
Nico Huber899e4ec2016-04-29 18:39:01 +0200651 else if (verify_it)
652 ret = do_verify(fill_flash, filename);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000653
Nico Huber305f4172013-06-14 11:55:26 +0200654 flashrom_layout_release(layout);
655
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000656out_shutdown:
657 programmer_shutdown();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000658out:
Stefan Taunerb8911d62012-12-26 07:55:00 +0000659 for (i = 0; i < chipcount; i++)
660 free(flashes[i].chip);
661
Arthur Heymansb04fef92019-02-05 17:35:05 +0100662 layout_cleanup(&include_args);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000663 free(filename);
Richard Hughes6eca7612018-12-19 15:40:27 +0000664 free(fmapfile);
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300665 free(referencefile);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000666 free(layoutfile);
667 free(pparam);
668 /* clean up global variables */
Nico Huberbcb2e5a2012-12-30 01:23:17 +0000669 free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000670 chip_to_probe = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000671#ifndef STANDALONE
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000672 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000673 ret |= close_logfile();
674#endif /* !STANDALONE */
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000675 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000676}