blob: 73cc41791561487ce4d3a928924002e71feed66f [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"
48 " -w | --write <file> write <file> to flash\n"
49 " -v | --verify <file> verify flash against <file>\n"
50 " -E | --erase erase flash memory\n"
51 " -V | --verbose more verbose output\n"
52 " -c | --chip <chipname> probe only for specified flash chip\n"
53 " -f | --force force specific operations (see man page)\n"
54 " -n | --noverify don't auto-verify\n"
Nico Huber99d15952016-05-02 16:54:24 +020055 " -N | --noverify-all verify included regions only (cf. -i)\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000056 " -l | --layout <layoutfile> read ROM layout from <layoutfile>\n"
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +100057 " --flash-name read out the detected flash name\n"
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +100058 " --flash-size read out the detected flash size\n"
Arthur Heymansc82900b2018-01-10 12:48:16 +010059 " --fmap read ROM layout from fmap embedded in ROM\n"
60 " --fmap-file <fmapfile> read ROM layout from fmap in <fmapfile>\n"
Nico Huber305f4172013-06-14 11:55:26 +020061 " --ifd read layout from an Intel Firmware Descriptor\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000062 " -i | --image <name> only flash image <name> from flash layout\n"
63 " -o | --output <logfile> log output to <logfile>\n"
Paul Kocialkowskif701f342018-01-15 01:10:36 +030064 " --flash-contents <ref-file> assume flash contents to be <ref-file>\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000065 " -L | --list-supported print supported devices\n"
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000066#if CONFIG_PRINT_WIKI == 1
Stefan Taunerb226cb12012-11-24 18:59:39 +000067 " -z | --list-supported-wiki print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000068#endif
Stefan Taunerb226cb12012-11-24 18:59:39 +000069 " -p | --programmer <name>[:<param>] specify the programmer device. One of\n");
70 list_programmers_linebreak(4, 80, 0);
71 printf(".\n\nYou can specify one of -h, -R, -L, "
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000072#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000073 "-z, "
74#endif
75 "-E, -r, -w, -v or no operation.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +000076 "If no operation is specified, flashrom will only probe for flash chips.\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000077}
78
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100079static void cli_classic_abort_usage(const char *msg)
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +000080{
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100081 if (msg)
82 fprintf(stderr, "%s", msg);
Uwe Hermann2db77a02010-06-04 17:07:39 +000083 printf("Please run \"flashrom --help\" for usage info.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +000084 exit(1);
85}
86
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +100087static void cli_classic_validate_singleop(int *operation_specified)
88{
89 if (++(*operation_specified) > 1) {
90 cli_classic_abort_usage("More than one operation specified. Aborting.\n");
91 }
92}
93
Jacob Garber4a84ec22019-07-25 19:12:31 -060094static int check_filename(char *filename, const char *type)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +000095{
96 if (!filename || (filename[0] == '\0')) {
97 fprintf(stderr, "Error: No %s file specified.\n", type);
98 return 1;
99 }
100 /* Not an error, but maybe the user intended to specify a CLI option instead of a file name. */
101 if (filename[0] == '-')
102 fprintf(stderr, "Warning: Supplied %s file name starts with -\n", type);
103 return 0;
104}
105
Uwe Hermann394ee782011-08-20 14:14:22 +0000106int main(int argc, char *argv[])
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000107{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000108 const struct flashchip *chip = NULL;
Jernej Škrabece814a9b2014-12-12 00:32:03 +0000109 /* Probe for up to eight flash chips. */
110 struct flashctx flashes[8] = {{0}};
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000111 struct flashctx *fill_flash;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000112 const char *name;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000113 int namelen, opt, i, j;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100114 int startchip = -1, chipcount = 0, option_index = 0, force = 0, ifd = 0, fmap = 0;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000115#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000116 int list_supported_wiki = 0;
117#endif
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000118 int flash_name = 0, flash_size = 0;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000119 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
Nico Huber99d15952016-05-02 16:54:24 +0200120 int dont_verify_it = 0, dont_verify_all = 0, list_supported = 0, operation_specified = 0;
Nico Huber305f4172013-06-14 11:55:26 +0200121 struct flashrom_layout *layout = NULL;
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000122 enum programmer prog = PROGRAMMER_INVALID;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300123 enum {
124 OPTION_IFD = 0x0100,
Arthur Heymansc82900b2018-01-10 12:48:16 +0100125 OPTION_FMAP,
126 OPTION_FMAP_FILE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300127 OPTION_FLASH_CONTENTS,
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000128 OPTION_FLASH_NAME,
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000129 OPTION_FLASH_SIZE,
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300130 };
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000131 int ret = 0;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000132
Nico Huber99d15952016-05-02 16:54:24 +0200133 static const char optstring[] = "r:Rw:v:nNVEfc:l:i:p:Lzho:";
Mathias Krausea60faab2011-01-17 07:50:42 +0000134 static const struct option long_options[] = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000135 {"read", 1, NULL, 'r'},
136 {"write", 1, NULL, 'w'},
137 {"erase", 0, NULL, 'E'},
138 {"verify", 1, NULL, 'v'},
139 {"noverify", 0, NULL, 'n'},
Nico Huber99d15952016-05-02 16:54:24 +0200140 {"noverify-all", 0, NULL, 'N'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000141 {"chip", 1, NULL, 'c'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000142 {"verbose", 0, NULL, 'V'},
143 {"force", 0, NULL, 'f'},
144 {"layout", 1, NULL, 'l'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300145 {"ifd", 0, NULL, OPTION_IFD},
Arthur Heymansc82900b2018-01-10 12:48:16 +0100146 {"fmap", 0, NULL, OPTION_FMAP},
147 {"fmap-file", 1, NULL, OPTION_FMAP_FILE},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000148 {"image", 1, NULL, 'i'},
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300149 {"flash-contents", 1, NULL, OPTION_FLASH_CONTENTS},
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000150 {"flash-name", 0, NULL, OPTION_FLASH_NAME},
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000151 {"flash-size", 0, NULL, OPTION_FLASH_SIZE},
152 {"get-size", 0, NULL, OPTION_FLASH_SIZE}, // (deprecated): back compatibility.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000153 {"list-supported", 0, NULL, 'L'},
154 {"list-supported-wiki", 0, NULL, 'z'},
155 {"programmer", 1, NULL, 'p'},
156 {"help", 0, NULL, 'h'},
157 {"version", 0, NULL, 'R'},
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000158 {"output", 1, NULL, 'o'},
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000159 {NULL, 0, NULL, 0},
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000160 };
161
162 char *filename = NULL;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300163 char *referencefile = NULL;
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000164 char *layoutfile = NULL;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100165 char *fmapfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000166#ifndef STANDALONE
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000167 char *logfile = NULL;
Stefan Taunerb8911d62012-12-26 07:55:00 +0000168#endif /* !STANDALONE */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000169 char *tempstr = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000170 char *pparam = NULL;
Arthur Heymansb04fef92019-02-05 17:35:05 +0100171 struct layout_include_args *include_args = NULL;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000172
Nico Huber18781102012-12-10 13:34:12 +0000173 flashrom_set_log_callback((flashrom_log_callback *)&flashrom_print_cb);
174
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000175 print_version();
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000176 print_banner();
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000177
178 if (selfcheck())
179 exit(1);
180
181 setbuf(stdout, NULL);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000182 /* FIXME: Delay all operation_specified checks until after command
183 * line parsing to allow --help overriding everything else.
184 */
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000185 while ((opt = getopt_long(argc, argv, optstring,
186 long_options, &option_index)) != EOF) {
187 switch (opt) {
188 case 'r':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000189 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000190 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000191 read_it = 1;
192 break;
193 case 'w':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000194 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000195 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000196 write_it = 1;
197 break;
198 case 'v':
199 //FIXME: gracefully handle superfluous -v
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000200 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000201 if (dont_verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000202 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000203 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000204 filename = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000205 verify_it = 1;
206 break;
207 case 'n':
208 if (verify_it) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000209 cli_classic_abort_usage("--verify and --noverify are mutually exclusive. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000210 }
211 dont_verify_it = 1;
212 break;
Nico Huber99d15952016-05-02 16:54:24 +0200213 case 'N':
214 dont_verify_all = 1;
215 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000216 case 'c':
217 chip_to_probe = strdup(optarg);
218 break;
219 case 'V':
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000220 verbose_screen++;
Nico Huberd152fb92017-06-19 12:57:10 +0200221 if (verbose_screen > FLASHROM_MSG_DEBUG2)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000222 verbose_logfile = verbose_screen;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000223 break;
224 case 'E':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000225 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000226 erase_it = 1;
227 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000228 case 'f':
229 force = 1;
230 break;
231 case 'l':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000232 if (layoutfile)
233 cli_classic_abort_usage("Error: --layout specified more than once. Aborting.\n");
234 if (ifd)
235 cli_classic_abort_usage("Error: --layout and --ifd both specified. Aborting.\n");
236 if (fmap)
237 cli_classic_abort_usage("Error: --layout and --fmap-file both specified. Aborting.\n");
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000238 layoutfile = strdup(optarg);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000239 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300240 case OPTION_IFD:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000241 if (layoutfile)
242 cli_classic_abort_usage("Error: --layout and --ifd both specified. Aborting.\n");
243 if (fmap)
244 cli_classic_abort_usage("Error: --fmap-file and --ifd both specified. Aborting.\n");
Nico Huber305f4172013-06-14 11:55:26 +0200245 ifd = 1;
246 break;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100247 case OPTION_FMAP_FILE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000248 if (fmap)
249 cli_classic_abort_usage("Error: --fmap or --fmap-file specified "
Arthur Heymansc82900b2018-01-10 12:48:16 +0100250 "more than once. Aborting.\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000251 if (ifd)
252 cli_classic_abort_usage("Error: --fmap-file and --ifd both specified. Aborting.\n");
253 if (layoutfile)
254 cli_classic_abort_usage("Error: --fmap-file and --layout both specified. Aborting.\n");
Arthur Heymansc82900b2018-01-10 12:48:16 +0100255 fmapfile = strdup(optarg);
256 fmap = 1;
257 break;
258 case OPTION_FMAP:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000259 if (fmap)
260 cli_classic_abort_usage("Error: --fmap or --fmap-file specified "
Arthur Heymansc82900b2018-01-10 12:48:16 +0100261 "more than once. Aborting.\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000262 if (ifd)
263 cli_classic_abort_usage("Error: --fmap and --ifd both specified. Aborting.\n");
264 if (layoutfile)
265 cli_classic_abort_usage("Error: --layout and --fmap both specified. Aborting.\n");
Arthur Heymansc82900b2018-01-10 12:48:16 +0100266 fmap = 1;
267 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000268 case 'i':
269 tempstr = strdup(optarg);
Arthur Heymansb04fef92019-02-05 17:35:05 +0100270 if (register_include_arg(&include_args, tempstr)) {
Stefan Taunerb8911d62012-12-26 07:55:00 +0000271 free(tempstr);
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000272 cli_classic_abort_usage(NULL);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000273 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000274 break;
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300275 case OPTION_FLASH_CONTENTS:
276 referencefile = strdup(optarg);
277 break;
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000278 case OPTION_FLASH_NAME:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000279 cli_classic_validate_singleop(&operation_specified);
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000280 flash_name = 1;
281 break;
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000282 case OPTION_FLASH_SIZE:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000283 cli_classic_validate_singleop(&operation_specified);
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000284 flash_size = 1;
285 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000286 case 'L':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000287 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000288 list_supported = 1;
289 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000290 case 'z':
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000291#if CONFIG_PRINT_WIKI == 1
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000292 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000293 list_supported_wiki = 1;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000294#else
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000295 cli_classic_abort_usage("Error: Wiki output was not"
296 "compiled in. Aborting.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000297#endif
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000298 break;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000299 case 'p':
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000300 if (prog != PROGRAMMER_INVALID) {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000301 cli_classic_abort_usage("Error: --programmer specified "
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000302 "more than once. You can separate "
303 "multiple\nparameters for a programmer "
304 "with \",\". Please see the man page "
305 "for details.\n");
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000306 }
307 for (prog = 0; prog < PROGRAMMER_INVALID; prog++) {
308 name = programmer_table[prog].name;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000309 namelen = strlen(name);
310 if (strncmp(optarg, name, namelen) == 0) {
311 switch (optarg[namelen]) {
312 case ':':
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000313 pparam = strdup(optarg + namelen + 1);
314 if (!strlen(pparam)) {
315 free(pparam);
316 pparam = NULL;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000317 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000318 break;
319 case '\0':
320 break;
321 default:
322 /* The continue refers to the
323 * for loop. It is here to be
324 * able to differentiate between
325 * foo and foobar.
326 */
327 continue;
328 }
329 break;
330 }
331 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000332 if (prog == PROGRAMMER_INVALID) {
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000333 fprintf(stderr, "Error: Unknown programmer \"%s\". Valid choices are:\n",
334 optarg);
335 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000336 msg_ginfo(".\n");
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000337 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000338 }
339 break;
340 case 'R':
341 /* print_version() is always called during startup. */
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000342 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000343 exit(0);
344 break;
345 case 'h':
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000346 cli_classic_validate_singleop(&operation_specified);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000347 cli_classic_usage(argv[0]);
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000348 exit(0);
349 break;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000350 case 'o':
351#ifdef STANDALONE
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000352 cli_classic_abort_usage("Log file not supported in standalone mode. Aborting.\n");
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000353#else /* STANDALONE */
Elyes HAOUASef78de42019-07-18 15:08:10 +0200354 if (logfile) {
355 fprintf(stderr, "Warning: -o/--output specified multiple times.\n");
356 free(logfile);
357 }
358
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000359 logfile = strdup(optarg);
360 if (logfile[0] == '\0') {
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000361 cli_classic_abort_usage("No log filename specified.\n");
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000362 }
363#endif /* STANDALONE */
364 break;
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000365 default:
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000366 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000367 break;
368 }
369 }
370
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000371 if (optind < argc)
372 cli_classic_abort_usage("Error: Extra parameter found.\n");
373 if ((read_it | write_it | verify_it) && check_filename(filename, "image"))
374 cli_classic_abort_usage(NULL);
375 if (layoutfile && check_filename(layoutfile, "layout"))
376 cli_classic_abort_usage(NULL);
377 if (fmapfile && check_filename(fmapfile, "fmap"))
378 cli_classic_abort_usage(NULL);
379 if (referencefile && check_filename(referencefile, "reference"))
380 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000381
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000382#ifndef STANDALONE
383 if (logfile && check_filename(logfile, "log"))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000384 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000385 if (logfile && open_logfile(logfile))
Edward O'Callaghan8b60fc72019-09-26 11:17:20 +1000386 cli_classic_abort_usage(NULL);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000387#endif /* !STANDALONE */
388
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000389#if CONFIG_PRINT_WIKI == 1
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000390 if (list_supported_wiki) {
391 print_supported_wiki();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000392 goto out;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000393 }
394#endif
395
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000396 if (list_supported) {
Niklas Söderlundede2fa42012-10-23 13:06:46 +0000397 if (print_supported())
398 ret = 1;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000399 goto out;
400 }
Carl-Daniel Hailfinger46284452012-01-11 02:10:11 +0000401
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000402#ifndef STANDALONE
403 start_logging();
404#endif /* !STANDALONE */
405
406 print_buildinfo();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000407 msg_gdbg("Command line (%i args):", argc - 1);
408 for (i = 0; i < argc; i++) {
409 msg_gdbg(" %s", argv[i]);
410 }
411 msg_gdbg("\n");
412
413 if (layoutfile && read_romlayout(layoutfile)) {
414 ret = 1;
415 goto out;
416 }
Arthur Heymansc82900b2018-01-10 12:48:16 +0100417
Arthur Heymansb04fef92019-02-05 17:35:05 +0100418 if (!ifd && !fmap && process_include_args(get_global_layout(), include_args)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000419 ret = 1;
420 goto out;
421 }
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000422 /* Does a chip with the requested name exist in the flashchips array? */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000423 if (chip_to_probe) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000424 for (chip = flashchips; chip && chip->name; chip++)
425 if (!strcmp(chip->name, chip_to_probe))
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000426 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000427 if (!chip || !chip->name) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000428 msg_cerr("Error: Unknown chip '%s' specified.\n", chip_to_probe);
429 msg_gerr("Run flashrom -L to view the hardware supported in this flashrom version.\n");
430 ret = 1;
431 goto out;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000432 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000433 /* Keep chip around for later usage in case a forced read is requested. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000434 }
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +0000435
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000436 if (prog == PROGRAMMER_INVALID) {
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000437 if (CONFIG_DEFAULT_PROGRAMMER != PROGRAMMER_INVALID) {
438 prog = CONFIG_DEFAULT_PROGRAMMER;
Stefan Tauner265fcac2014-06-02 00:12:23 +0000439 /* We need to strdup here because we free(pparam) unconditionally later. */
440 pparam = strdup(CONFIG_DEFAULT_PROGRAMMER_ARGS);
441 msg_pinfo("Using default programmer \"%s\" with arguments \"%s\".\n",
442 programmer_table[CONFIG_DEFAULT_PROGRAMMER].name, pparam);
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000443 } else {
444 msg_perr("Please select a programmer with the --programmer parameter.\n"
Stefan Taunerb226cb12012-11-24 18:59:39 +0000445#if CONFIG_INTERNAL == 1
446 "To choose the mainboard of this computer use 'internal'. "
447#endif
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000448 "Valid choices are:\n");
449 list_programmers_linebreak(0, 80, 0);
Stefan Taunerb226cb12012-11-24 18:59:39 +0000450 msg_ginfo(".\n");
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000451 ret = 1;
452 goto out;
453 }
Carl-Daniel Hailfinger4e3391f2012-07-22 12:01:43 +0000454 }
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000455
Carl-Daniel Hailfinger49884202010-05-22 07:10:46 +0000456 /* FIXME: Delay calibration should happen in programmer code. */
457 myusec_calibrate_delay();
458
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000459 if (programmer_init(prog, pparam)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000460 msg_perr("Error: Programmer initialization failed.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000461 ret = 1;
462 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000463 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000464 tempstr = flashbuses_to_text(get_buses_supported());
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000465 msg_pdbg("The following protocols are supported: %s.\n", tempstr);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000466 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000467
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000468 for (j = 0; j < registered_master_count; j++) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000469 startchip = 0;
Nico Huber519be662018-12-23 20:03:35 +0100470 while (chipcount < (int)ARRAY_SIZE(flashes)) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000471 startchip = probe_flash(&registered_masters[j], startchip, &flashes[chipcount], 0);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000472 if (startchip == -1)
473 break;
474 chipcount++;
475 startchip++;
476 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000477 }
478
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000479 if (chipcount > 1) {
Stefan Tauner0554ca52013-07-25 22:54:25 +0000480 msg_cinfo("Multiple flash chip definitions match the detected chip(s): \"%s\"",
481 flashes[0].chip->name);
Stefan Tauner716e0982011-07-25 20:38:52 +0000482 for (i = 1; i < chipcount; i++)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000483 msg_cinfo(", \"%s\"", flashes[i].chip->name);
Stefan Tauner0554ca52013-07-25 22:54:25 +0000484 msg_cinfo("\nPlease specify which chip definition to use with the -c <chipname> option.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000485 ret = 1;
486 goto out_shutdown;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000487 } else if (!chipcount) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000488 msg_cinfo("No EEPROM/flash device found.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000489 if (!force || !chip_to_probe) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000490 msg_cinfo("Note: flashrom can never write if the flash chip isn't found "
491 "automatically.\n");
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000492 }
493 if (force && read_it && chip_to_probe) {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000494 struct registered_master *mst;
495 int compatible_masters = 0;
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000496 msg_cinfo("Force read (-f -r -c) requested, pretending the chip is there:\n");
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000497 /* This loop just counts compatible controllers. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000498 for (j = 0; j < registered_master_count; j++) {
499 mst = &registered_masters[j];
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000500 /* chip is still set from the chip_to_probe earlier in this function. */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000501 if (mst->buses_supported & chip->bustype)
502 compatible_masters++;
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000503 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000504 if (!compatible_masters) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000505 msg_cinfo("No compatible controller found for the requested flash chip.\n");
506 ret = 1;
507 goto out_shutdown;
508 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000509 if (compatible_masters > 1)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000510 msg_cinfo("More than one compatible controller found for the requested flash "
511 "chip, using the first one.\n");
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000512 for (j = 0; j < registered_master_count; j++) {
513 mst = &registered_masters[j];
514 startchip = probe_flash(mst, 0, &flashes[0], 1);
Carl-Daniel Hailfingerb428e972012-02-16 20:31:25 +0000515 if (startchip != -1)
516 break;
517 }
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000518 if (startchip == -1) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000519 // FIXME: This should never happen! Ask for a bug report?
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000520 msg_cinfo("Probing for flash chip '%s' failed.\n", chip_to_probe);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000521 ret = 1;
522 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000523 }
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000524 if (map_flash(&flashes[0]) != 0) {
525 free(flashes[0].chip);
526 ret = 1;
527 goto out_shutdown;
528 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000529 msg_cinfo("Please note that forced reads most likely contain garbage.\n");
530 ret = read_flash_to_file(&flashes[0], filename);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000531 unmap_flash(&flashes[0]);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000532 free(flashes[0].chip);
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000533 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000534 }
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000535 ret = 1;
536 goto out_shutdown;
Stefan Tauner1d947632011-09-11 22:08:58 +0000537 } else if (!chip_to_probe) {
538 /* repeat for convenience when looking at foreign logs */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000539 tempstr = flashbuses_to_text(flashes[0].chip->bustype);
Stefan Tauner1d947632011-09-11 22:08:58 +0000540 msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000541 flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr);
Stefan Tauner1d947632011-09-11 22:08:58 +0000542 free(tempstr);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000543 }
544
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000545 fill_flash = &flashes[0];
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000546
Stefan Tauner9b32de92014-08-08 23:52:33 +0000547 print_chip_support_status(fill_flash->chip);
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000548
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000549 unsigned int limitexceeded = count_max_decode_exceedings(fill_flash);
550 if (limitexceeded > 0 && !force) {
551 enum chipbustype commonbuses = fill_flash->mst->buses_supported & fill_flash->chip->bustype;
552
553 /* Sometimes chip and programmer have more than one bus in common,
554 * and the limit is not exceeded on all buses. Tell the user. */
555 if ((bitcount(commonbuses) > limitexceeded)) {
556 msg_pdbg("There is at least one interface available which could support the size of\n"
557 "the selected flash chip.\n");
558 }
559 msg_cerr("This flash chip is too big for this programmer (--verbose/-V gives details).\n"
560 "Use --force/-f to override at your own risk.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000561 ret = 1;
562 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000563 }
564
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000565 if (!(read_it | write_it | verify_it | erase_it | flash_name | flash_size)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000566 msg_ginfo("No operations were specified.\n");
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000567 goto out_shutdown;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000568 }
569
Edward O'Callaghan0cd11d82019-09-23 22:46:12 +1000570 if (flash_name) {
571 if (fill_flash->chip->vendor && fill_flash->chip->name) {
572 printf("vendor=\"%s\" name=\"%s\"\n",
573 fill_flash->chip->vendor,
574 fill_flash->chip->name);
575 } else {
576 ret = -1;
577 }
578 goto out_shutdown;
579 }
580
Edward O'Callaghan7d6b5262019-09-23 22:53:14 +1000581 if (flash_size) {
582 printf("%d\n", fill_flash->chip->total_size * 1024);
583 goto out_shutdown;
584 }
585
Nico Huber305f4172013-06-14 11:55:26 +0200586 if (layoutfile) {
587 layout = get_global_layout();
588 } else if (ifd && (flashrom_layout_read_from_ifd(&layout, fill_flash, NULL, 0) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100589 process_include_args(layout, include_args))) {
Nico Huber305f4172013-06-14 11:55:26 +0200590 ret = 1;
591 goto out_shutdown;
Arthur Heymansc82900b2018-01-10 12:48:16 +0100592 } else if (fmap && fmapfile) {
593 struct stat s;
594 if (stat(fmapfile, &s) != 0) {
595 msg_gerr("Failed to stat fmapfile \"%s\"\n", fmapfile);
596 ret = 1;
597 goto out_shutdown;
598 }
599
600 size_t fmapfile_size = s.st_size;
601 uint8_t *fmapfile_buffer = malloc(fmapfile_size);
602 if (!fmapfile_buffer) {
603 ret = 1;
604 goto out_shutdown;
605 }
606
607 if (read_buf_from_file(fmapfile_buffer, fmapfile_size, fmapfile)) {
608 ret = 1;
609 free(fmapfile_buffer);
610 goto out_shutdown;
611 }
612
613 if (flashrom_layout_read_fmap_from_buffer(&layout, fill_flash, fmapfile_buffer, fmapfile_size) ||
Arthur Heymansb04fef92019-02-05 17:35:05 +0100614 process_include_args(layout, include_args)) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100615 ret = 1;
616 free(fmapfile_buffer);
617 goto out_shutdown;
618 }
619 free(fmapfile_buffer);
620 } else if (fmap && (flashrom_layout_read_fmap_from_rom(&layout, fill_flash, 0,
Arthur Heymansb04fef92019-02-05 17:35:05 +0100621 fill_flash->chip->total_size * 1024) || process_include_args(layout, include_args))) {
Arthur Heymansc82900b2018-01-10 12:48:16 +0100622 ret = 1;
623 goto out_shutdown;
Nico Huber305f4172013-06-14 11:55:26 +0200624 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000625
Nico Huber305f4172013-06-14 11:55:26 +0200626 flashrom_layout_set(fill_flash, layout);
Nico Huber899e4ec2016-04-29 18:39:01 +0200627 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE, !!force);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300628#if CONFIG_INTERNAL == 1
Nico Huber899e4ec2016-04-29 18:39:01 +0200629 flashrom_flag_set(fill_flash, FLASHROM_FLAG_FORCE_BOARDMISMATCH, !!force_boardmismatch);
Urja Rannikko7258cf52017-06-17 11:31:57 +0300630#endif
Nico Huber899e4ec2016-04-29 18:39:01 +0200631 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_AFTER_WRITE, !dont_verify_it);
Nico Huber99d15952016-05-02 16:54:24 +0200632 flashrom_flag_set(fill_flash, FLASHROM_FLAG_VERIFY_WHOLE_CHIP, !dont_verify_all);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000633
Carl-Daniel Hailfinger9ad42552010-09-15 10:20:16 +0000634 /* FIXME: We should issue an unconditional chip reset here. This can be
635 * done once we have a .reset function in struct flashchip.
636 * Give the chip time to settle.
637 */
638 programmer_delay(100000);
Nico Huber899e4ec2016-04-29 18:39:01 +0200639 if (read_it)
640 ret = do_read(fill_flash, filename);
641 else if (erase_it)
642 ret = do_erase(fill_flash);
643 else if (write_it)
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300644 ret = do_write(fill_flash, filename, referencefile);
Nico Huber899e4ec2016-04-29 18:39:01 +0200645 else if (verify_it)
646 ret = do_verify(fill_flash, filename);
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000647
Nico Huber305f4172013-06-14 11:55:26 +0200648 flashrom_layout_release(layout);
649
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000650out_shutdown:
651 programmer_shutdown();
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +0000652out:
Stefan Taunerb8911d62012-12-26 07:55:00 +0000653 for (i = 0; i < chipcount; i++)
654 free(flashes[i].chip);
655
Arthur Heymansb04fef92019-02-05 17:35:05 +0100656 layout_cleanup(&include_args);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000657 free(filename);
Richard Hughes6eca7612018-12-19 15:40:27 +0000658 free(fmapfile);
Paul Kocialkowskif701f342018-01-15 01:10:36 +0300659 free(referencefile);
Stefan Taunerb8911d62012-12-26 07:55:00 +0000660 free(layoutfile);
661 free(pparam);
662 /* clean up global variables */
Nico Huberbcb2e5a2012-12-30 01:23:17 +0000663 free((char *)chip_to_probe); /* Silence! Freeing is not modifying contents. */
Stefan Taunerb8911d62012-12-26 07:55:00 +0000664 chip_to_probe = NULL;
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000665#ifndef STANDALONE
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000666 free(logfile);
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +0000667 ret |= close_logfile();
668#endif /* !STANDALONE */
Carl-Daniel Hailfingerd5660142011-07-15 23:47:45 +0000669 return ret;
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000670}