blob: 234f1353168f605d7140c532b472e1399413f2fe [file] [log] [blame]
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00003 *
Uwe Hermannd22a1d42007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp <yhlu@tyan.com>
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +00006 * Copyright (C) 2005-2008 coresystems GmbH
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007 * Copyright (C) 2008,2009 Carl-Daniel Hailfinger
Nico Huber7af0e792016-04-29 16:40:15 +02008 * Copyright (C) 2016 secunet Security Networks AG
9 * (Written by Nico Huber <nico.huber@secunet.com> for secunet)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000010 *
Uwe Hermannd1107642007-08-29 17:52:32 +000011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000015 *
Uwe Hermannd1107642007-08-29 17:52:32 +000016 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000020 */
21
Felix Singerf25447e2022-08-19 02:44:28 +020022#include <stdbool.h>
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000023#include <stdio.h>
Stefan Reinauer018aca82006-11-21 23:48:51 +000024#include <sys/types.h>
Patrick Georgia9095a92010-09-30 17:03:32 +000025#ifndef __LIBPAYLOAD__
26#include <fcntl.h>
Stefan Reinauer018aca82006-11-21 23:48:51 +000027#include <sys/stat.h>
Patrick Georgia9095a92010-09-30 17:03:32 +000028#endif
Ronald G. Minnichceec4202003-07-25 04:37:41 +000029#include <string.h>
Stefan Tauner16687702015-12-25 21:59:45 +000030#include <unistd.h>
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000031#include <stdlib.h>
Stefan Tauner363fd7e2013-04-07 13:08:30 +000032#include <errno.h>
Carl-Daniel Hailfingerc2441382010-11-09 22:00:31 +000033#include <ctype.h>
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +000034#if HAVE_UTSNAME == 1
35#include <sys/utsname.h>
36#endif
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000037#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000038#include "flashchips.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000039#include "programmer.h"
Carl-Daniel Hailfinger06b9efa2012-08-07 11:59:59 +000040#include "hwaccess.h"
Nico Huberfe34d2a2017-11-10 21:10:20 +010041#include "chipdrivers.h"
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000042
Mathias Krausea60faab2011-01-17 07:50:42 +000043const char flashrom_version[] = FLASHROM_VERSION;
Nico Huberbcb2e5a2012-12-30 01:23:17 +000044const char *chip_to_probe = NULL;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000045
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +020046static const struct programmer_entry *programmer = NULL;
Nico Huber6a2ebeb2022-08-26 11:36:48 +020047static char *programmer_param = NULL;
Stefan Reinauer70385642007-04-06 11:58:03 +000048
Uwe Hermann48ec1b12010-08-08 17:01:18 +000049/*
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000050 * Programmers supporting multiple buses can have differing size limits on
51 * each bus. Store the limits for each bus in a common struct.
52 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000053struct decode_sizes max_rom_decode;
54
55/* If nonzero, used as the start address of bottom-aligned flash. */
56unsigned long flashbase;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000057
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +000058/* Is writing allowed with this programmer? */
Felix Singer980d6b82022-08-19 02:48:15 +020059bool programmer_may_write;
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +000060
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +000061#define SHUTDOWN_MAXFN 32
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000062static int shutdown_fn_count = 0;
Nico Huber454f6132012-12-10 13:34:10 +000063/** @private */
Richard Hughes93e16252018-12-19 11:54:47 +000064static struct shutdown_func_data {
David Hendricks8bb20212011-06-14 01:35:36 +000065 int (*func) (void *data);
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000066 void *data;
Richard Hughes93e16252018-12-19 11:54:47 +000067} shutdown_fn[SHUTDOWN_MAXFN];
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000068/* Initialize to 0 to make sure nobody registers a shutdown function before
69 * programmer init.
70 */
Felix Singerf25447e2022-08-19 02:44:28 +020071static bool may_register_shutdown = false;
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000072
Stefan Taunerc4f44df2013-08-12 22:58:43 +000073/* Did we change something or was every erase/write skipped (if any)? */
74static bool all_skipped = true;
75
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000076static int check_block_eraser(const struct flashctx *flash, int k, int log);
Stefan Tauner5368dca2011-07-01 00:19:12 +000077
Stefan Tauner2a1ed772014-08-31 00:09:21 +000078int shutdown_free(void *data)
79{
80 free(data);
81 return 0;
82}
83
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000084/* Register a function to be executed on programmer shutdown.
85 * The advantage over atexit() is that you can supply a void pointer which will
86 * be used as parameter to the registered function upon programmer shutdown.
87 * This pointer can point to arbitrary data used by said function, e.g. undo
88 * information for GPIO settings etc. If unneeded, set data=NULL.
89 * Please note that the first (void *data) belongs to the function signature of
90 * the function passed as first parameter.
91 */
David Hendricks8bb20212011-06-14 01:35:36 +000092int register_shutdown(int (*function) (void *data), void *data)
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000093{
94 if (shutdown_fn_count >= SHUTDOWN_MAXFN) {
Carl-Daniel Hailfinger9f5f2152010-06-04 23:20:21 +000095 msg_perr("Tried to register more than %i shutdown functions.\n",
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000096 SHUTDOWN_MAXFN);
97 return 1;
98 }
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000099 if (!may_register_shutdown) {
100 msg_perr("Tried to register a shutdown function before "
101 "programmer init.\n");
102 return 1;
103 }
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000104 shutdown_fn[shutdown_fn_count].func = function;
105 shutdown_fn[shutdown_fn_count].data = data;
106 shutdown_fn_count++;
107
108 return 0;
109}
110
Nikolai Artemiev4ad48642020-11-05 13:54:27 +1100111int register_chip_restore(chip_restore_fn_cb_t func,
112 struct flashctx *flash, uint8_t status)
113{
114 if (flash->chip_restore_fn_count >= MAX_CHIP_RESTORE_FUNCTIONS) {
115 msg_perr("Tried to register more than %i chip restore"
116 " functions.\n", MAX_CHIP_RESTORE_FUNCTIONS);
117 return 1;
118 }
119 flash->chip_restore_fn[flash->chip_restore_fn_count].func = func;
120 flash->chip_restore_fn[flash->chip_restore_fn_count].status = status;
121 flash->chip_restore_fn_count++;
122
123 return 0;
124}
125
126static int deregister_chip_restore(struct flashctx *flash)
127{
128 int rc = 0;
129
130 while (flash->chip_restore_fn_count > 0) {
131 int i = --flash->chip_restore_fn_count;
132 rc |= flash->chip_restore_fn[i].func(
133 flash, flash->chip_restore_fn[i].status);
134 }
135
136 return rc;
137}
138
Thomas Heijligene0e93cf2021-06-01 14:37:12 +0200139int programmer_init(const struct programmer_entry *prog, const char *param)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000140{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000141 int ret;
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000142
Thomas Heijligene0e93cf2021-06-01 14:37:12 +0200143 if (prog == NULL) {
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000144 msg_perr("Invalid programmer specified!\n");
145 return -1;
146 }
Thomas Heijligene0e93cf2021-06-01 14:37:12 +0200147 programmer = prog;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000148 /* Initialize all programmer specific data. */
149 /* Default to unlimited decode sizes. */
150 max_rom_decode = (const struct decode_sizes) {
151 .parallel = 0xffffffff,
152 .lpc = 0xffffffff,
153 .fwh = 0xffffffff,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000154 .spi = 0xffffffff,
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000155 };
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000156 /* Default to top aligned flash at 4 GB. */
157 flashbase = 0;
158 /* Registering shutdown functions is now allowed. */
Felix Singerf25447e2022-08-19 02:44:28 +0200159 may_register_shutdown = true;
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +0000160 /* Default to allowing writes. Broken programmers set this to 0. */
Felix Singer980d6b82022-08-19 02:48:15 +0200161 programmer_may_write = true;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000162
Nico Huber6a2ebeb2022-08-26 11:36:48 +0200163 if (param) {
164 programmer_param = strdup(param);
165 if (!programmer_param) {
166 msg_perr("Out of memory!\n");
167 return ERROR_FATAL;
168 }
169 } else {
170 programmer_param = NULL;
171 }
172
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200173 msg_pdbg("Initializing %s programmer\n", programmer->name);
174 ret = programmer->init();
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000175 if (programmer_param && strlen(programmer_param)) {
Carl-Daniel Hailfinger20a36ba2013-08-13 07:09:57 +0000176 if (ret != 0) {
177 /* It is quite possible that any unhandled programmer parameter would have been valid,
178 * but an error in actual programmer init happened before the parameter was evaluated.
179 */
180 msg_pwarn("Unhandled programmer parameters (possibly due to another failure): %s\n",
181 programmer_param);
182 } else {
183 /* Actual programmer init was successful, but the user specified an invalid or unusable
184 * (for the current programmer configuration) parameter.
185 */
186 msg_perr("Unhandled programmer parameters: %s\n", programmer_param);
187 msg_perr("Aborting.\n");
188 ret = ERROR_FATAL;
189 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000190 }
Nico Huber6a2ebeb2022-08-26 11:36:48 +0200191 free(programmer_param);
192 programmer_param = NULL;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000193 return ret;
Uwe Hermann09e04f72009-05-16 22:36:00 +0000194}
195
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000196/** Calls registered shutdown functions and resets internal programmer-related variables.
197 * Calling it is safe even without previous initialization, but further interactions with programmer support
198 * require a call to programmer_init() (afterwards).
199 *
200 * @return The OR-ed result values of all shutdown functions (i.e. 0 on success). */
Uwe Hermann09e04f72009-05-16 22:36:00 +0000201int programmer_shutdown(void)
202{
David Hendricks8bb20212011-06-14 01:35:36 +0000203 int ret = 0;
204
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000205 /* Registering shutdown functions is no longer allowed. */
Felix Singerf25447e2022-08-19 02:44:28 +0200206 may_register_shutdown = false;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000207 while (shutdown_fn_count > 0) {
208 int i = --shutdown_fn_count;
David Hendricks8bb20212011-06-14 01:35:36 +0000209 ret |= shutdown_fn[i].func(shutdown_fn[i].data);
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000210 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000211 registered_master_count = 0;
Stefan Taunere34e3e82013-01-01 00:06:51 +0000212
David Hendricks8bb20212011-06-14 01:35:36 +0000213 return ret;
Uwe Hermann09e04f72009-05-16 22:36:00 +0000214}
215
Stefan Tauner305e0b92013-07-17 23:46:44 +0000216void *programmer_map_flash_region(const char *descr, uintptr_t phys_addr, size_t len)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000217{
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200218 void *ret = programmer->map_flash_region(descr, phys_addr, len);
Stefan Tauner26e7a152013-09-13 17:21:05 +0000219 msg_gspew("%s: mapping %s from 0x%0*" PRIxPTR " to 0x%0*" PRIxPTR "\n",
220 __func__, descr, PRIxPTR_WIDTH, phys_addr, PRIxPTR_WIDTH, (uintptr_t) ret);
221 return ret;
Uwe Hermann09e04f72009-05-16 22:36:00 +0000222}
223
224void programmer_unmap_flash_region(void *virt_addr, size_t len)
225{
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200226 programmer->unmap_flash_region(virt_addr, len);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000227 msg_gspew("%s: unmapped 0x%0*" PRIxPTR "\n", __func__, PRIxPTR_WIDTH, (uintptr_t)virt_addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000228}
229
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000230void chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000231{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000232 flash->mst->par.chip_writeb(flash, val, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000233}
234
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000235void chip_writew(const struct flashctx *flash, uint16_t val, chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000236{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000237 flash->mst->par.chip_writew(flash, val, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000238}
239
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000240void chip_writel(const struct flashctx *flash, uint32_t val, chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000241{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000242 flash->mst->par.chip_writel(flash, val, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000243}
244
Mark Marshallf20b7be2014-05-09 21:16:21 +0000245void chip_writen(const struct flashctx *flash, const uint8_t *buf, chipaddr addr, size_t len)
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000246{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000247 flash->mst->par.chip_writen(flash, buf, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000248}
249
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000250uint8_t chip_readb(const struct flashctx *flash, const chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000251{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000252 return flash->mst->par.chip_readb(flash, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000253}
254
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000255uint16_t chip_readw(const struct flashctx *flash, const chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000256{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000257 return flash->mst->par.chip_readw(flash, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000258}
259
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000260uint32_t chip_readl(const struct flashctx *flash, const chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000261{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000262 return flash->mst->par.chip_readl(flash, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000263}
264
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000265void chip_readn(const struct flashctx *flash, uint8_t *buf, chipaddr addr,
266 size_t len)
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000267{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000268 flash->mst->par.chip_readn(flash, buf, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000269}
270
Stefan Taunerf80419c2014-05-02 15:41:42 +0000271void programmer_delay(unsigned int usecs)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000272{
Urja Rannikko8d7ec2a2013-10-21 21:49:08 +0000273 if (usecs > 0)
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200274 programmer->delay(usecs);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000275}
276
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000277int read_memmapped(struct flashctx *flash, uint8_t *buf, unsigned int start,
278 int unsigned len)
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000279{
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000280 chip_readn(flash, buf, flash->virtual_memory + start, len);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000281
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000282 return 0;
283}
284
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000285/* This is a somewhat hacked function similar in some ways to strtok().
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000286 * It will look for needle with a subsequent '=' in haystack, return a copy of
287 * needle and remove everything from the first occurrence of needle to the next
288 * delimiter from haystack.
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000289 */
Nico Huber6a2ebeb2022-08-26 11:36:48 +0200290static char *extract_param(char *const *haystack, const char *needle, const char *delim)
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000291{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000292 char *param_pos, *opt_pos, *rest;
293 char *opt = NULL;
294 int optlen;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000295 int needlelen;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000296
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000297 needlelen = strlen(needle);
298 if (!needlelen) {
299 msg_gerr("%s: empty needle! Please report a bug at "
300 "flashrom@flashrom.org\n", __func__);
301 return NULL;
302 }
303 /* No programmer parameters given. */
304 if (*haystack == NULL)
305 return NULL;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000306 param_pos = strstr(*haystack, needle);
307 do {
308 if (!param_pos)
309 return NULL;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000310 /* Needle followed by '='? */
311 if (param_pos[needlelen] == '=') {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000312 /* Beginning of the string? */
313 if (param_pos == *haystack)
314 break;
315 /* After a delimiter? */
316 if (strchr(delim, *(param_pos - 1)))
317 break;
318 }
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000319 /* Continue searching. */
320 param_pos++;
321 param_pos = strstr(param_pos, needle);
322 } while (1);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000323
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000324 if (param_pos) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000325 /* Get the string after needle and '='. */
326 opt_pos = param_pos + needlelen + 1;
327 optlen = strcspn(opt_pos, delim);
328 /* Return an empty string if the parameter was empty. */
329 opt = malloc(optlen + 1);
330 if (!opt) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000331 msg_gerr("Out of memory!\n");
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000332 exit(1);
333 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000334 strncpy(opt, opt_pos, optlen);
335 opt[optlen] = '\0';
336 rest = opt_pos + optlen;
337 /* Skip all delimiters after the current parameter. */
338 rest += strspn(rest, delim);
339 memmove(param_pos, rest, strlen(rest) + 1);
340 /* We could shrink haystack, but the effort is not worth it. */
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000341 }
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000342
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000343 return opt;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000344}
345
Stefan Tauner66652442011-06-26 17:38:17 +0000346char *extract_programmer_param(const char *param_name)
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000347{
348 return extract_param(&programmer_param, param_name, ",");
349}
350
Sylvain "ythier" Hitier9db45512011-07-04 07:27:17 +0000351/* Returns the number of well-defined erasers for a chip. */
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000352static unsigned int count_usable_erasers(const struct flashctx *flash)
Stefan Tauner5368dca2011-07-01 00:19:12 +0000353{
354 unsigned int usable_erasefunctions = 0;
355 int k;
356 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
357 if (!check_block_eraser(flash, k, 0))
358 usable_erasefunctions++;
359 }
360 return usable_erasefunctions;
361}
362
Mark Marshallf20b7be2014-05-09 21:16:21 +0000363static int compare_range(const uint8_t *wantbuf, const uint8_t *havebuf, unsigned int start, unsigned int len)
Stefan Tauner78ffbea2012-10-27 15:36:56 +0000364{
365 int ret = 0, failcount = 0;
366 unsigned int i;
367 for (i = 0; i < len; i++) {
368 if (wantbuf[i] != havebuf[i]) {
369 /* Only print the first failure. */
370 if (!failcount++)
371 msg_cerr("FAILED at 0x%08x! Expected=0x%02x, Found=0x%02x,",
372 start + i, wantbuf[i], havebuf[i]);
373 }
374 }
375 if (failcount) {
376 msg_cerr(" failed byte count from 0x%08x-0x%08x: 0x%x\n",
377 start, start + len - 1, failcount);
378 ret = -1;
379 }
380 return ret;
381}
382
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000383/* start is an offset to the base address of the flash chip */
Jacob Garberbeeb8bc2019-06-21 15:24:17 -0600384static int check_erased_range(struct flashctx *flash, unsigned int start, unsigned int len)
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000385{
386 int ret;
387 uint8_t *cmpbuf = malloc(len);
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300388 const uint8_t erased_value = ERASED_VALUE(flash);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000389
390 if (!cmpbuf) {
Edward O'Callaghana31a5722022-11-12 12:05:36 +1100391 msg_gerr("Out of memory!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000392 exit(1);
393 }
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300394 memset(cmpbuf, erased_value, len);
Stefan Tauner78ffbea2012-10-27 15:36:56 +0000395 ret = verify_range(flash, cmpbuf, start, len);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000396 free(cmpbuf);
397 return ret;
398}
399
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000400/*
Carl-Daniel Hailfingerd0250a32009-11-25 17:05:52 +0000401 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000402 * flash content at location start
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000403 * @start offset to the base address of the flash chip
404 * @len length of the verified area
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000405 * @return 0 for success, -1 for failure
406 */
Mark Marshallf20b7be2014-05-09 21:16:21 +0000407int verify_range(struct flashctx *flash, const uint8_t *cmpbuf, unsigned int start, unsigned int len)
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000408{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000409 if (!len)
Stefan Taunerdf64a422014-05-27 00:06:14 +0000410 return -1;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000411
Edward O'Callaghan6ae640b2021-11-17 14:24:04 +1100412 if (start + len > flash->chip->total_size * 1024) {
413 msg_gerr("Error: %s called with start 0x%x + len 0x%x >"
414 " total_size 0x%x\n", __func__, start, len,
415 flash->chip->total_size * 1024);
416 return -1;
417 }
418
Stefan Taunerdf64a422014-05-27 00:06:14 +0000419 uint8_t *readbuf = malloc(len);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000420 if (!readbuf) {
Edward O'Callaghana31a5722022-11-12 12:05:36 +1100421 msg_gerr("Out of memory!\n");
Stefan Taunerdf64a422014-05-27 00:06:14 +0000422 return -1;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000423 }
424
Edward O'Callaghan6ae640b2021-11-17 14:24:04 +1100425 int ret = flash->chip->read(flash, readbuf, start, len);
Carl-Daniel Hailfingerd8369412010-11-16 17:21:58 +0000426 if (ret) {
427 msg_gerr("Verification impossible because read failed "
428 "at 0x%x (len 0x%x)\n", start, len);
Stefan Taunerdf64a422014-05-27 00:06:14 +0000429 ret = -1;
430 goto out_free;
Carl-Daniel Hailfingerd8369412010-11-16 17:21:58 +0000431 }
432
Stefan Tauner78ffbea2012-10-27 15:36:56 +0000433 ret = compare_range(cmpbuf, readbuf, start, len);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000434out_free:
435 free(readbuf);
436 return ret;
437}
438
Stefan Tauner02437452013-04-01 19:34:53 +0000439/* Helper function for need_erase() that focuses on granularities of gran bytes. */
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300440static int need_erase_gran_bytes(const uint8_t *have, const uint8_t *want, unsigned int len,
441 unsigned int gran, const uint8_t erased_value)
Stefan Tauner02437452013-04-01 19:34:53 +0000442{
443 unsigned int i, j, limit;
444 for (j = 0; j < len / gran; j++) {
445 limit = min (gran, len - j * gran);
446 /* Are 'have' and 'want' identical? */
447 if (!memcmp(have + j * gran, want + j * gran, limit))
448 continue;
449 /* have needs to be in erased state. */
450 for (i = 0; i < limit; i++)
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300451 if (have[j * gran + i] != erased_value)
Stefan Tauner02437452013-04-01 19:34:53 +0000452 return 1;
453 }
454 return 0;
455}
456
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000457/*
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000458 * Check if the buffer @have can be programmed to the content of @want without
459 * erasing. This is only possible if all chunks of size @gran are either kept
460 * as-is or changed from an all-ones state to any other state.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000461 *
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000462 * Warning: This function assumes that @have and @want point to naturally
463 * aligned regions.
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000464 *
465 * @have buffer with current content
466 * @want buffer with desired content
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000467 * @len length of the checked area
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000468 * @gran write granularity (enum, not count)
469 * @return 0 if no erase is needed, 1 otherwise
470 */
Edward O'Callaghana1805092022-05-16 11:10:36 +1000471static int need_erase(const uint8_t *have, const uint8_t *want, unsigned int len,
472 enum write_granularity gran, const uint8_t erased_value)
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000473{
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000474 int result = 0;
Stefan Tauner02437452013-04-01 19:34:53 +0000475 unsigned int i;
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000476
477 switch (gran) {
478 case write_gran_1bit:
479 for (i = 0; i < len; i++)
480 if ((have[i] & want[i]) != want[i]) {
481 result = 1;
482 break;
483 }
484 break;
485 case write_gran_1byte:
486 for (i = 0; i < len; i++)
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300487 if ((have[i] != want[i]) && (have[i] != erased_value)) {
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000488 result = 1;
489 break;
490 }
491 break;
Paul Kocialkowskic8305e12015-10-16 02:16:20 +0000492 case write_gran_128bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300493 result = need_erase_gran_bytes(have, want, len, 128, erased_value);
Paul Kocialkowskic8305e12015-10-16 02:16:20 +0000494 break;
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000495 case write_gran_256bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300496 result = need_erase_gran_bytes(have, want, len, 256, erased_value);
Stefan Tauner02437452013-04-01 19:34:53 +0000497 break;
498 case write_gran_264bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300499 result = need_erase_gran_bytes(have, want, len, 264, erased_value);
Stefan Tauner02437452013-04-01 19:34:53 +0000500 break;
501 case write_gran_512bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300502 result = need_erase_gran_bytes(have, want, len, 512, erased_value);
Stefan Tauner02437452013-04-01 19:34:53 +0000503 break;
504 case write_gran_528bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300505 result = need_erase_gran_bytes(have, want, len, 528, erased_value);
Stefan Tauner02437452013-04-01 19:34:53 +0000506 break;
507 case write_gran_1024bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300508 result = need_erase_gran_bytes(have, want, len, 1024, erased_value);
Stefan Tauner02437452013-04-01 19:34:53 +0000509 break;
510 case write_gran_1056bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300511 result = need_erase_gran_bytes(have, want, len, 1056, erased_value);
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000512 break;
Carl-Daniel Hailfinger1b0e9fc2014-06-16 22:36:17 +0000513 case write_gran_1byte_implicit_erase:
514 /* Do not erase, handle content changes from anything->0xff by writing 0xff. */
515 result = 0;
516 break;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000517 default:
518 msg_cerr("%s: Unsupported granularity! Please report a bug at "
519 "flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000520 }
521 return result;
522}
523
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000524/**
525 * Check if the buffer @have needs to be programmed to get the content of @want.
526 * If yes, return 1 and fill in first_start with the start address of the
527 * write operation and first_len with the length of the first to-be-written
528 * chunk. If not, return 0 and leave first_start and first_len undefined.
529 *
530 * Warning: This function assumes that @have and @want point to naturally
531 * aligned regions.
532 *
533 * @have buffer with current content
534 * @want buffer with desired content
535 * @len length of the checked area
536 * @gran write granularity (enum, not count)
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000537 * @first_start offset of the first byte which needs to be written (passed in
538 * value is increased by the offset of the first needed write
539 * relative to have/want or unchanged if no write is needed)
540 * @return length of the first contiguous area which needs to be written
541 * 0 if no write is needed
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000542 *
543 * FIXME: This function needs a parameter which tells it about coalescing
544 * in relation to the max write length of the programmer and the max write
545 * length of the chip.
546 */
Mark Marshallf20b7be2014-05-09 21:16:21 +0000547static unsigned int get_next_write(const uint8_t *have, const uint8_t *want, unsigned int len,
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000548 unsigned int *first_start,
549 enum write_granularity gran)
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000550{
Felix Singerf25447e2022-08-19 02:44:28 +0200551 bool need_write = false;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000552 unsigned int rel_start = 0, first_len = 0;
553 unsigned int i, limit, stride;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000554
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000555 switch (gran) {
556 case write_gran_1bit:
557 case write_gran_1byte:
Carl-Daniel Hailfinger1b0e9fc2014-06-16 22:36:17 +0000558 case write_gran_1byte_implicit_erase:
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000559 stride = 1;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000560 break;
Paul Kocialkowskic8305e12015-10-16 02:16:20 +0000561 case write_gran_128bytes:
562 stride = 128;
563 break;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000564 case write_gran_256bytes:
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000565 stride = 256;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000566 break;
Stefan Tauner02437452013-04-01 19:34:53 +0000567 case write_gran_264bytes:
568 stride = 264;
569 break;
570 case write_gran_512bytes:
571 stride = 512;
572 break;
573 case write_gran_528bytes:
574 stride = 528;
575 break;
576 case write_gran_1024bytes:
577 stride = 1024;
578 break;
579 case write_gran_1056bytes:
580 stride = 1056;
581 break;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000582 default:
583 msg_cerr("%s: Unsupported granularity! Please report a bug at "
584 "flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000585 /* Claim that no write was needed. A write with unknown
586 * granularity is too dangerous to try.
587 */
588 return 0;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000589 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000590 for (i = 0; i < len / stride; i++) {
591 limit = min(stride, len - i * stride);
592 /* Are 'have' and 'want' identical? */
593 if (memcmp(have + i * stride, want + i * stride, limit)) {
594 if (!need_write) {
595 /* First location where have and want differ. */
Felix Singerf25447e2022-08-19 02:44:28 +0200596 need_write = true;
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000597 rel_start = i * stride;
598 }
599 } else {
600 if (need_write) {
601 /* First location where have and want
602 * do not differ anymore.
603 */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000604 break;
605 }
606 }
607 }
Carl-Daniel Hailfinger202bf532010-12-06 13:05:44 +0000608 if (need_write)
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000609 first_len = min(i * stride - rel_start, len);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000610 *first_start += rel_start;
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000611 return first_len;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000612}
613
Martin Rothf6c1cb12022-03-15 10:55:25 -0600614/* Returns the number of buses commonly supported by the current programmer and flash chip where the latter
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000615 * can not be completely accessed due to size/address limits of the programmer. */
616unsigned int count_max_decode_exceedings(const struct flashctx *flash)
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000617{
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000618 unsigned int limitexceeded = 0;
619 uint32_t size = flash->chip->total_size * 1024;
620 enum chipbustype buses = flash->mst->buses_supported & flash->chip->bustype;
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000621
622 if ((buses & BUS_PARALLEL) && (max_rom_decode.parallel < size)) {
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000623 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000624 msg_pdbg("Chip size %u kB is bigger than supported "
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000625 "size %u kB of chipset/board/programmer "
626 "for %s interface, "
627 "probe/read/erase/write may fail. ", size / 1024,
628 max_rom_decode.parallel / 1024, "Parallel");
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000629 }
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000630 if ((buses & BUS_LPC) && (max_rom_decode.lpc < size)) {
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000631 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000632 msg_pdbg("Chip size %u kB is bigger than supported "
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000633 "size %u kB of chipset/board/programmer "
634 "for %s interface, "
635 "probe/read/erase/write may fail. ", size / 1024,
636 max_rom_decode.lpc / 1024, "LPC");
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000637 }
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000638 if ((buses & BUS_FWH) && (max_rom_decode.fwh < size)) {
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000639 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000640 msg_pdbg("Chip size %u kB is bigger than supported "
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000641 "size %u kB of chipset/board/programmer "
642 "for %s interface, "
643 "probe/read/erase/write may fail. ", size / 1024,
644 max_rom_decode.fwh / 1024, "FWH");
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000645 }
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000646 if ((buses & BUS_SPI) && (max_rom_decode.spi < size)) {
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000647 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000648 msg_pdbg("Chip size %u kB is bigger than supported "
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000649 "size %u kB of chipset/board/programmer "
650 "for %s interface, "
651 "probe/read/erase/write may fail. ", size / 1024,
652 max_rom_decode.spi / 1024, "SPI");
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000653 }
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000654 return limitexceeded;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000655}
656
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000657void unmap_flash(struct flashctx *flash)
658{
659 if (flash->virtual_registers != (chipaddr)ERROR_PTR) {
660 programmer_unmap_flash_region((void *)flash->virtual_registers, flash->chip->total_size * 1024);
661 flash->physical_registers = 0;
662 flash->virtual_registers = (chipaddr)ERROR_PTR;
663 }
664
665 if (flash->virtual_memory != (chipaddr)ERROR_PTR) {
666 programmer_unmap_flash_region((void *)flash->virtual_memory, flash->chip->total_size * 1024);
667 flash->physical_memory = 0;
668 flash->virtual_memory = (chipaddr)ERROR_PTR;
669 }
670}
671
672int map_flash(struct flashctx *flash)
673{
674 /* Init pointers to the fail-safe state to distinguish them later from legit values. */
675 flash->virtual_memory = (chipaddr)ERROR_PTR;
676 flash->virtual_registers = (chipaddr)ERROR_PTR;
677
678 /* FIXME: This avoids mapping (and unmapping) of flash chip definitions with size 0.
679 * These are used for various probing-related hacks that would not map successfully anyway and should be
680 * removed ASAP. */
681 if (flash->chip->total_size == 0)
682 return 0;
683
684 const chipsize_t size = flash->chip->total_size * 1024;
685 uintptr_t base = flashbase ? flashbase : (0xffffffff - size + 1);
686 void *addr = programmer_map_flash_region(flash->chip->name, base, size);
687 if (addr == ERROR_PTR) {
688 msg_perr("Could not map flash chip %s at 0x%0*" PRIxPTR ".\n",
689 flash->chip->name, PRIxPTR_WIDTH, base);
690 return 1;
691 }
692 flash->physical_memory = base;
693 flash->virtual_memory = (chipaddr)addr;
694
695 /* FIXME: Special function registers normally live 4 MByte below flash space, but it might be somewhere
696 * completely different on some chips and programmers, or not mappable at all.
697 * Ignore these problems for now and always report success. */
698 if (flash->chip->feature_bits & FEATURE_REGISTERMAP) {
699 base = 0xffffffff - size - 0x400000 + 1;
700 addr = programmer_map_flash_region("flash chip registers", base, size);
701 if (addr == ERROR_PTR) {
702 msg_pdbg2("Could not map flash chip registers %s at 0x%0*" PRIxPTR ".\n",
703 flash->chip->name, PRIxPTR_WIDTH, base);
704 return 0;
705 }
706 flash->physical_registers = base;
707 flash->virtual_registers = (chipaddr)addr;
708 }
709 return 0;
710}
711
Nico Huber2d625722016-05-03 10:48:02 +0200712/*
713 * Return a string corresponding to the bustype parameter.
714 * Memory is obtained with malloc() and must be freed with free() by the caller.
715 */
716char *flashbuses_to_text(enum chipbustype bustype)
717{
718 char *ret = calloc(1, 1);
719 /*
720 * FIXME: Once all chipsets and flash chips have been updated, NONSPI
721 * will cease to exist and should be eliminated here as well.
722 */
723 if (bustype == BUS_NONSPI) {
724 ret = strcat_realloc(ret, "Non-SPI, ");
725 } else {
726 if (bustype & BUS_PARALLEL)
727 ret = strcat_realloc(ret, "Parallel, ");
728 if (bustype & BUS_LPC)
729 ret = strcat_realloc(ret, "LPC, ");
730 if (bustype & BUS_FWH)
731 ret = strcat_realloc(ret, "FWH, ");
732 if (bustype & BUS_SPI)
733 ret = strcat_realloc(ret, "SPI, ");
734 if (bustype & BUS_PROG)
735 ret = strcat_realloc(ret, "Programmer-specific, ");
736 if (bustype == BUS_NONE)
737 ret = strcat_realloc(ret, "None, ");
738 }
739 /* Kill last comma. */
740 ret[strlen(ret) - 2] = '\0';
741 ret = realloc(ret, strlen(ret) + 1);
742 return ret;
743}
744
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000745int probe_flash(struct registered_master *mst, int startchip, struct flashctx *flash, int force)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000746{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000747 const struct flashchip *chip;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000748 enum chipbustype buses_common;
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000749 char *tmp;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000750
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000751 for (chip = flashchips + startchip; chip && chip->name; chip++) {
752 if (chip_to_probe && strcmp(chip->name, chip_to_probe) != 0)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000753 continue;
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000754 buses_common = mst->buses_supported & chip->bustype;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000755 if (!buses_common)
Carl-Daniel Hailfinger6573b742011-06-17 22:38:53 +0000756 continue;
Mike Banon31b5e3b2018-01-15 01:10:00 +0300757 /* Only probe for SPI25 chips by default. */
758 if (chip->bustype == BUS_SPI && !chip_to_probe && chip->spi_cmd_set != SPI25)
759 continue;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000760 msg_gdbg("Probing for %s %s, %d kB: ", chip->vendor, chip->name, chip->total_size);
761 if (!chip->probe && !force) {
762 msg_gdbg("failed! flashrom has no probe function for this flash chip.\n");
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000763 continue;
764 }
Stefan Reinauer70385642007-04-06 11:58:03 +0000765
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000766 /* Start filling in the dynamic data. */
Angel Pons690a9442021-06-07 12:33:53 +0200767 flash->chip = calloc(1, sizeof(*flash->chip));
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000768 if (!flash->chip) {
769 msg_gerr("Out of memory!\n");
770 exit(1);
771 }
Angel Pons7e134562021-06-07 13:29:13 +0200772 *flash->chip = *chip;
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000773 flash->mst = mst;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000774
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000775 if (map_flash(flash) != 0)
Martin Schiller57a3b732017-11-23 06:24:57 +0100776 goto notfound;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000777
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000778 /* We handle a forced match like a real match, we just avoid probing. Note that probe_flash()
779 * is only called with force=1 after normal probing failed.
780 */
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000781 if (force)
782 break;
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000783
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000784 if (flash->chip->probe(flash) != 1)
Peter Stuge483b8f02008-09-03 23:10:05 +0000785 goto notfound;
786
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000787 /* If this is the first chip found, accept it.
788 * If this is not the first chip found, accept it only if it is
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000789 * a non-generic match. SFDP and CFI are generic matches.
790 * startchip==0 means this call to probe_flash() is the first
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000791 * one for this programmer interface (master) and thus no other chip has
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000792 * been found on this interface.
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000793 */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000794 if (startchip == 0 && flash->chip->model_id == SFDP_DEVICE_ID) {
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000795 msg_cinfo("===\n"
796 "SFDP has autodetected a flash chip which is "
797 "not natively supported by flashrom yet.\n");
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000798 if (count_usable_erasers(flash) == 0)
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000799 msg_cinfo("The standard operations read and "
800 "verify should work, but to support "
801 "erase, write and all other "
802 "possible features");
803 else
804 msg_cinfo("All standard operations (read, "
805 "verify, erase and write) should "
806 "work, but to support all possible "
807 "features");
808
Stefan Taunerb4e06bd2012-08-20 00:24:22 +0000809 msg_cinfo(" we need to add them manually.\n"
810 "You can help us by mailing us the output of the following command to "
811 "flashrom@flashrom.org:\n"
812 "'flashrom -VV [plus the -p/--programmer parameter]'\n"
813 "Thanks for your help!\n"
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000814 "===\n");
815 }
816
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000817 /* First flash chip detected on this bus. */
818 if (startchip == 0)
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000819 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000820 /* Not the first flash chip detected on this bus, but not a generic match either. */
821 if ((flash->chip->model_id != GENERIC_DEVICE_ID) && (flash->chip->model_id != SFDP_DEVICE_ID))
822 break;
823 /* Not the first flash chip detected on this bus, and it's just a generic match. Ignore it. */
Peter Stuge483b8f02008-09-03 23:10:05 +0000824notfound:
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000825 unmap_flash(flash);
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000826 free(flash->chip);
827 flash->chip = NULL;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000828 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000829
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000830 if (!flash->chip)
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000831 return -1;
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000832
Nico Huber7af0e792016-04-29 16:40:15 +0200833 /* Fill fallback layout covering the whole chip. */
834 struct single_layout *const fallback = &flash->fallback_layout;
835 fallback->base.entries = &fallback->entry;
836 fallback->base.num_entries = 1;
837 fallback->entry.start = 0;
838 fallback->entry.end = flash->chip->total_size * 1024 - 1;
839 fallback->entry.included = true;
Nico Huber70461a92019-06-15 14:56:19 +0200840 fallback->entry.name = strdup("complete flash");
841 if (!fallback->entry.name) {
842 msg_cerr("Failed to probe chip: %s\n", strerror(errno));
843 return -1;
844 }
Stefan Reinauer051e2362011-01-19 06:21:54 +0000845
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000846 tmp = flashbuses_to_text(flash->chip->bustype);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000847 msg_cinfo("%s %s flash chip \"%s\" (%d kB, %s) ", force ? "Assuming" : "Found",
848 flash->chip->vendor, flash->chip->name, flash->chip->total_size, tmp);
Stefan Tauner00155492011-06-26 20:45:35 +0000849 free(tmp);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000850#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200851 if (programmer->map_flash_region == physmap)
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000852 msg_cinfo("mapped at physical address 0x%0*" PRIxPTR ".\n",
853 PRIxPTR_WIDTH, flash->physical_memory);
854 else
855#endif
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200856 msg_cinfo("on %s.\n", programmer->name);
Uwe Hermann9899cad2009-06-28 21:47:57 +0000857
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000858 /* Flash registers may more likely not be mapped if the chip was forced.
859 * Lock info may be stored in registers, so avoid lock info printing. */
Carl-Daniel Hailfinger859f3f02010-12-02 21:59:42 +0000860 if (!force)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000861 if (flash->chip->printlock)
862 flash->chip->printlock(flash);
Sean Nelson6e0b9122010-02-19 00:52:10 +0000863
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000864 /* Get out of the way for later runs. */
865 unmap_flash(flash);
866
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000867 /* Return position of matching chip. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000868 return chip - flashchips;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000869}
870
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000871int read_buf_from_file(unsigned char *buf, unsigned long size,
872 const char *filename)
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000873{
Nico Huber7562f7d2013-08-30 21:29:45 +0000874#ifdef __LIBPAYLOAD__
875 msg_gerr("Error: No file I/O support in libpayload\n");
876 return 1;
877#else
Stefan Tauner16687702015-12-25 21:59:45 +0000878 int ret = 0;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000879
Stefan Tauner16687702015-12-25 21:59:45 +0000880 FILE *image;
Daniel Campello8eaef7d2021-04-15 10:36:04 -0600881 if (!strcmp(filename, "-"))
882 image = fdopen(fileno(stdin), "rb");
883 else
884 image = fopen(filename, "rb");
885 if (image == NULL) {
Stefan Tauner363fd7e2013-04-07 13:08:30 +0000886 msg_gerr("Error: opening file \"%s\" failed: %s\n", filename, strerror(errno));
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000887 return 1;
888 }
Stefan Tauner16687702015-12-25 21:59:45 +0000889
890 struct stat image_stat;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000891 if (fstat(fileno(image), &image_stat) != 0) {
Stefan Tauner363fd7e2013-04-07 13:08:30 +0000892 msg_gerr("Error: getting metadata of file \"%s\" failed: %s\n", filename, strerror(errno));
Stefan Tauner16687702015-12-25 21:59:45 +0000893 ret = 1;
894 goto out;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000895 }
Daniel Campello8eaef7d2021-04-15 10:36:04 -0600896 if ((image_stat.st_size != (intmax_t)size) && strcmp(filename, "-")) {
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000897 msg_gerr("Error: Image size (%jd B) doesn't match the flash chip's size (%lu B)!\n",
Stefan Taunere038e902013-02-04 04:38:42 +0000898 (intmax_t)image_stat.st_size, size);
Stefan Tauner16687702015-12-25 21:59:45 +0000899 ret = 1;
900 goto out;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000901 }
Stefan Tauner16687702015-12-25 21:59:45 +0000902
903 unsigned long numbytes = fread(buf, 1, size, image);
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000904 if (numbytes != size) {
905 msg_gerr("Error: Failed to read complete file. Got %ld bytes, "
906 "wanted %ld!\n", numbytes, size);
Stefan Tauner16687702015-12-25 21:59:45 +0000907 ret = 1;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000908 }
Stefan Tauner16687702015-12-25 21:59:45 +0000909out:
910 (void)fclose(image);
911 return ret;
Nico Huber7562f7d2013-08-30 21:29:45 +0000912#endif
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000913}
914
Mark Marshallf20b7be2014-05-09 21:16:21 +0000915int write_buf_to_file(const unsigned char *buf, unsigned long size, const char *filename)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000916{
Nico Huber7562f7d2013-08-30 21:29:45 +0000917#ifdef __LIBPAYLOAD__
918 msg_gerr("Error: No file I/O support in libpayload\n");
919 return 1;
920#else
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000921 FILE *image;
Stefan Tauner16687702015-12-25 21:59:45 +0000922 int ret = 0;
Stephan Guilloux21dd55b2009-06-01 22:07:52 +0000923
924 if (!filename) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000925 msg_gerr("No filename specified.\n");
Stephan Guilloux21dd55b2009-06-01 22:07:52 +0000926 return 1;
927 }
Patrick Georgi0bf842d2010-01-25 22:55:33 +0000928 if ((image = fopen(filename, "wb")) == NULL) {
Stefan Tauner363fd7e2013-04-07 13:08:30 +0000929 msg_gerr("Error: opening file \"%s\" failed: %s\n", filename, strerror(errno));
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000930 return 1;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000931 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000932
Stefan Tauner16687702015-12-25 21:59:45 +0000933 unsigned long numbytes = fwrite(buf, 1, size, image);
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000934 if (numbytes != size) {
Stefan Tauner16687702015-12-25 21:59:45 +0000935 msg_gerr("Error: file %s could not be written completely.\n", filename);
936 ret = 1;
937 goto out;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000938 }
Stefan Tauner16687702015-12-25 21:59:45 +0000939 if (fflush(image)) {
940 msg_gerr("Error: flushing file \"%s\" failed: %s\n", filename, strerror(errno));
941 ret = 1;
942 }
943 // Try to fsync() only regular files and if that function is available at all (e.g. not on MinGW).
944#if defined(_POSIX_FSYNC) && (_POSIX_FSYNC != -1)
945 struct stat image_stat;
946 if (fstat(fileno(image), &image_stat) != 0) {
947 msg_gerr("Error: getting metadata of file \"%s\" failed: %s\n", filename, strerror(errno));
948 ret = 1;
949 goto out;
950 }
951 if (S_ISREG(image_stat.st_mode)) {
952 if (fsync(fileno(image))) {
953 msg_gerr("Error: fsyncing file \"%s\" failed: %s\n", filename, strerror(errno));
954 ret = 1;
955 }
956 }
957#endif
958out:
959 if (fclose(image)) {
960 msg_gerr("Error: closing file \"%s\" failed: %s\n", filename, strerror(errno));
961 ret = 1;
962 }
963 return ret;
Nico Huber7562f7d2013-08-30 21:29:45 +0000964#endif
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000965}
966
Nico Huber899e4ec2016-04-29 18:39:01 +0200967static int read_by_layout(struct flashctx *, uint8_t *);
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000968int read_flash_to_file(struct flashctx *flash, const char *filename)
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000969{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000970 unsigned long size = flash->chip->total_size * 1024;
Richard Hughes84b453e2018-12-19 15:30:39 +0000971 unsigned char *buf = calloc(size, sizeof(unsigned char));
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000972 int ret = 0;
973
974 msg_cinfo("Reading flash... ");
975 if (!buf) {
976 msg_gerr("Memory allocation failed!\n");
977 msg_cinfo("FAILED.\n");
978 return 1;
979 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000980 if (!flash->chip->read) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000981 msg_cerr("No read function available for this flash chip.\n");
982 ret = 1;
983 goto out_free;
984 }
Nico Huber899e4ec2016-04-29 18:39:01 +0200985 if (read_by_layout(flash, buf)) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000986 msg_cerr("Read operation failed!\n");
987 ret = 1;
988 goto out_free;
989 }
990
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000991 ret = write_buf_to_file(buf, size, filename);
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000992out_free:
993 free(buf);
994 msg_cinfo("%s.\n", ret ? "FAILED" : "done");
995 return ret;
996}
997
Stefan Tauner96658be2014-05-26 22:05:31 +0000998/* Even if an error is found, the function will keep going and check the rest. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000999static int selfcheck_eraseblocks(const struct flashchip *chip)
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001000{
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001001 int i, j, k;
1002 int ret = 0;
Aarya Chaumal478e1792022-06-04 01:34:44 +05301003 unsigned int prev_eraseblock_count = chip->total_size * 1024;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001004
1005 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
1006 unsigned int done = 0;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001007 struct block_eraser eraser = chip->block_erasers[k];
Aarya Chaumal478e1792022-06-04 01:34:44 +05301008 unsigned int curr_eraseblock_count = 0;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001009
1010 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1011 /* Blocks with zero size are bugs in flashchips.c. */
1012 if (eraser.eraseblocks[i].count &&
1013 !eraser.eraseblocks[i].size) {
1014 msg_gerr("ERROR: Flash chip %s erase function "
1015 "%i region %i has size 0. Please report"
1016 " a bug at flashrom@flashrom.org\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001017 chip->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001018 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001019 }
1020 /* Blocks with zero count are bugs in flashchips.c. */
1021 if (!eraser.eraseblocks[i].count &&
1022 eraser.eraseblocks[i].size) {
1023 msg_gerr("ERROR: Flash chip %s erase function "
1024 "%i region %i has count 0. Please report"
1025 " a bug at flashrom@flashrom.org\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001026 chip->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001027 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001028 }
1029 done += eraser.eraseblocks[i].count *
1030 eraser.eraseblocks[i].size;
Aarya Chaumal478e1792022-06-04 01:34:44 +05301031 curr_eraseblock_count += eraser.eraseblocks[i].count;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001032 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001033 /* Empty eraseblock definition with erase function. */
1034 if (!done && eraser.block_erase)
Sean Nelson316a29f2010-05-07 20:09:04 +00001035 msg_gspew("Strange: Empty eraseblock definition with "
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001036 "non-empty erase function. Not an error.\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001037 if (!done)
1038 continue;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001039 if (done != chip->total_size * 1024) {
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001040 msg_gerr("ERROR: Flash chip %s erase function %i "
1041 "region walking resulted in 0x%06x bytes total,"
1042 " expected 0x%06x bytes. Please report a bug at"
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001043 " flashrom@flashrom.org\n", chip->name, k,
1044 done, chip->total_size * 1024);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001045 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001046 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001047 if (!eraser.block_erase)
1048 continue;
1049 /* Check if there are identical erase functions for different
1050 * layouts. That would imply "magic" erase functions. The
1051 * easiest way to check this is with function pointers.
1052 */
Uwe Hermann43959702010-03-13 17:28:29 +00001053 for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) {
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001054 if (eraser.block_erase ==
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001055 chip->block_erasers[j].block_erase) {
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001056 msg_gerr("ERROR: Flash chip %s erase function "
1057 "%i and %i are identical. Please report"
1058 " a bug at flashrom@flashrom.org\n",
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001059 chip->name, k, j);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001060 ret = 1;
1061 }
Uwe Hermann43959702010-03-13 17:28:29 +00001062 }
Aarya Chaumal478e1792022-06-04 01:34:44 +05301063 if(curr_eraseblock_count > prev_eraseblock_count)
1064 {
1065 msg_gerr("ERROR: Flash chip %s erase function %i is not "
1066 "in order. Please report a bug at flashrom@flashrom.org\n",
1067 chip->name, k);
1068 ret = 1;
1069 }
1070 prev_eraseblock_count = curr_eraseblock_count;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001071 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001072 return ret;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001073}
1074
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +00001075static int check_block_eraser(const struct flashctx *flash, int k, int log)
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001076{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001077 struct block_eraser eraser = flash->chip->block_erasers[k];
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001078
1079 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
1080 if (log)
1081 msg_cdbg("not defined. ");
1082 return 1;
1083 }
1084 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
1085 if (log)
1086 msg_cdbg("eraseblock layout is known, but matching "
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001087 "block erase function is not implemented. ");
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001088 return 1;
1089 }
1090 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
1091 if (log)
1092 msg_cdbg("block erase function found, but "
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001093 "eraseblock layout is not defined. ");
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001094 return 1;
1095 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001096 // TODO: Once erase functions are annotated with allowed buses, check that as well.
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001097 return 0;
1098}
1099
Nico Huber7af0e792016-04-29 16:40:15 +02001100/**
1101 * @brief Reads the included layout regions into a buffer.
1102 *
1103 * If there is no layout set in the given flash context, the whole chip will
1104 * be read.
1105 *
1106 * @param flashctx Flash context to be used.
1107 * @param buffer Buffer of full chip size to read into.
1108 * @return 0 on success,
1109 * 1 if any read fails.
1110 */
1111static int read_by_layout(struct flashctx *const flashctx, uint8_t *const buffer)
1112{
1113 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber5ca55232019-06-15 22:29:08 +02001114 const struct romentry *entry = NULL;
Nico Huber7af0e792016-04-29 16:40:15 +02001115
Nico Huber5ca55232019-06-15 22:29:08 +02001116 while ((entry = layout_next_included(layout, entry))) {
1117 const chipoff_t region_start = entry->start;
1118 const chipsize_t region_len = entry->end - entry->start + 1;
Nico Huber7af0e792016-04-29 16:40:15 +02001119
1120 if (flashctx->chip->read(flashctx, buffer + region_start, region_start, region_len))
1121 return 1;
1122 }
1123 return 0;
1124}
1125
1126typedef int (*erasefn_t)(struct flashctx *, unsigned int addr, unsigned int len);
1127/**
1128 * @private
1129 *
1130 * For read-erase-write, `curcontents` and `newcontents` shall point
1131 * to buffers of the chip's size. Both are supposed to be prefilled
1132 * with at least the included layout regions of the current flash
1133 * contents (`curcontents`) and the data to be written to the flash
1134 * (`newcontents`).
1135 *
1136 * For erase, `curcontents` and `newcontents` shall be NULL-pointers.
1137 *
1138 * The `chipoff_t` values are used internally by `walk_by_layout()`.
1139 */
1140struct walk_info {
1141 uint8_t *curcontents;
1142 const uint8_t *newcontents;
1143 chipoff_t region_start;
1144 chipoff_t region_end;
1145 chipoff_t erase_start;
1146 chipoff_t erase_end;
1147};
1148/* returns 0 on success, 1 to retry with another erase function, 2 for immediate abort */
1149typedef int (*per_blockfn_t)(struct flashctx *, const struct walk_info *, erasefn_t);
1150
1151static int walk_eraseblocks(struct flashctx *const flashctx,
1152 struct walk_info *const info,
1153 const size_t erasefunction, const per_blockfn_t per_blockfn)
1154{
1155 int ret;
1156 size_t i, j;
1157 bool first = true;
1158 struct block_eraser *const eraser = &flashctx->chip->block_erasers[erasefunction];
1159
1160 info->erase_start = 0;
1161 for (i = 0; i < NUM_ERASEREGIONS; ++i) {
1162 /* count==0 for all automatically initialized array
1163 members so the loop below won't be executed for them. */
1164 for (j = 0; j < eraser->eraseblocks[i].count; ++j, info->erase_start = info->erase_end + 1) {
1165 info->erase_end = info->erase_start + eraser->eraseblocks[i].size - 1;
1166
1167 /* Skip any eraseblock that is completely outside the current region. */
1168 if (info->erase_end < info->region_start)
1169 continue;
1170 if (info->region_end < info->erase_start)
1171 break;
1172
1173 /* Print this for every block except the first one. */
1174 if (first)
1175 first = false;
1176 else
1177 msg_cdbg(", ");
1178 msg_cdbg("0x%06x-0x%06x:", info->erase_start, info->erase_end);
1179
1180 ret = per_blockfn(flashctx, info, eraser->block_erase);
1181 if (ret)
1182 return ret;
1183 }
1184 if (info->region_end < info->erase_start)
1185 break;
1186 }
1187 msg_cdbg("\n");
1188 return 0;
1189}
1190
1191static int walk_by_layout(struct flashctx *const flashctx, struct walk_info *const info,
1192 const per_blockfn_t per_blockfn)
1193{
1194 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber5ca55232019-06-15 22:29:08 +02001195 const struct romentry *entry = NULL;
Nico Huber7af0e792016-04-29 16:40:15 +02001196
1197 all_skipped = true;
1198 msg_cinfo("Erasing and writing flash chip... ");
1199
Nico Huber5ca55232019-06-15 22:29:08 +02001200 while ((entry = layout_next_included(layout, entry))) {
1201 info->region_start = entry->start;
1202 info->region_end = entry->end;
Nico Huber7af0e792016-04-29 16:40:15 +02001203
1204 size_t j;
1205 int error = 1; /* retry as long as it's 1 */
1206 for (j = 0; j < NUM_ERASEFUNCTIONS; ++j) {
1207 if (j != 0)
1208 msg_cinfo("Looking for another erase function.\n");
1209 msg_cdbg("Trying erase function %zi... ", j);
1210 if (check_block_eraser(flashctx, j, 1))
1211 continue;
1212
1213 error = walk_eraseblocks(flashctx, info, j, per_blockfn);
1214 if (error != 1)
1215 break;
1216
1217 if (info->curcontents) {
1218 msg_cinfo("Reading current flash chip contents... ");
1219 if (read_by_layout(flashctx, info->curcontents)) {
1220 /* Now we are truly screwed. Read failed as well. */
1221 msg_cerr("Can't read anymore! Aborting.\n");
1222 /* We have no idea about the flash chip contents, so
1223 retrying with another erase function is pointless. */
1224 error = 2;
1225 break;
1226 }
1227 msg_cinfo("done. ");
1228 }
1229 }
1230 if (error == 1)
1231 msg_cinfo("No usable erase functions left.\n");
1232 if (error) {
1233 msg_cerr("FAILED!\n");
1234 return 1;
1235 }
1236 }
1237 if (all_skipped)
1238 msg_cinfo("\nWarning: Chip content is identical to the requested image.\n");
1239 msg_cinfo("Erase/write done.\n");
1240 return 0;
1241}
1242
1243static int erase_block(struct flashctx *const flashctx,
1244 const struct walk_info *const info, const erasefn_t erasefn)
1245{
1246 const unsigned int erase_len = info->erase_end + 1 - info->erase_start;
Nico Huber6e61e0c2019-01-23 17:07:49 +01001247 const bool region_unaligned = info->region_start > info->erase_start ||
1248 info->erase_end > info->region_end;
1249 uint8_t *backup_contents = NULL, *erased_contents = NULL;
1250 int ret = 2;
Nico Huber7af0e792016-04-29 16:40:15 +02001251
Nico Huber6e61e0c2019-01-23 17:07:49 +01001252 /*
1253 * If the region is not erase-block aligned, merge current flash con-
1254 * tents into a new buffer `backup_contents`.
1255 */
1256 if (region_unaligned) {
1257 backup_contents = malloc(erase_len);
1258 erased_contents = malloc(erase_len);
1259 if (!backup_contents || !erased_contents) {
1260 msg_cerr("Out of memory!\n");
1261 ret = 1;
1262 goto _free_ret;
1263 }
1264 memset(backup_contents, ERASED_VALUE(flashctx), erase_len);
1265 memset(erased_contents, ERASED_VALUE(flashctx), erase_len);
1266
1267 msg_cdbg("R");
1268 /* Merge data preceding the current region. */
1269 if (info->region_start > info->erase_start) {
1270 const chipoff_t start = info->erase_start;
1271 const chipsize_t len = info->region_start - info->erase_start;
1272 if (flashctx->chip->read(flashctx, backup_contents, start, len)) {
1273 msg_cerr("Can't read! Aborting.\n");
1274 goto _free_ret;
1275 }
1276 }
1277 /* Merge data following the current region. */
1278 if (info->erase_end > info->region_end) {
1279 const chipoff_t start = info->region_end + 1;
1280 const chipoff_t rel_start = start - info->erase_start; /* within this erase block */
1281 const chipsize_t len = info->erase_end - info->region_end;
1282 if (flashctx->chip->read(flashctx, backup_contents + rel_start, start, len)) {
1283 msg_cerr("Can't read! Aborting.\n");
1284 goto _free_ret;
1285 }
1286 }
1287 }
1288
1289 ret = 1;
Nico Huber7af0e792016-04-29 16:40:15 +02001290 all_skipped = false;
1291
1292 msg_cdbg("E");
1293 if (erasefn(flashctx, info->erase_start, erase_len))
Nico Huber6e61e0c2019-01-23 17:07:49 +01001294 goto _free_ret;
Nico Huber7af0e792016-04-29 16:40:15 +02001295 if (check_erased_range(flashctx, info->erase_start, erase_len)) {
1296 msg_cerr("ERASE FAILED!\n");
Nico Huber6e61e0c2019-01-23 17:07:49 +01001297 goto _free_ret;
Nico Huber7af0e792016-04-29 16:40:15 +02001298 }
Nico Huber6e61e0c2019-01-23 17:07:49 +01001299
1300 if (region_unaligned) {
1301 unsigned int starthere = 0, lenhere = 0, writecount = 0;
1302 /* get_next_write() sets starthere to a new value after the call. */
1303 while ((lenhere = get_next_write(erased_contents + starthere, backup_contents + starthere,
1304 erase_len - starthere, &starthere, flashctx->chip->gran))) {
1305 if (!writecount++)
1306 msg_cdbg("W");
1307 /* Needs the partial write function signature. */
1308 if (flashctx->chip->write(flashctx, backup_contents + starthere,
1309 info->erase_start + starthere, lenhere))
1310 goto _free_ret;
1311 starthere += lenhere;
1312 }
1313 }
1314
1315 ret = 0;
1316
1317_free_ret:
1318 free(erased_contents);
1319 free(backup_contents);
1320 return ret;
Nico Huber7af0e792016-04-29 16:40:15 +02001321}
1322
1323/**
1324 * @brief Erases the included layout regions.
1325 *
1326 * If there is no layout set in the given flash context, the whole chip will
1327 * be erased.
1328 *
1329 * @param flashctx Flash context to be used.
Nico Huber7af0e792016-04-29 16:40:15 +02001330 * @return 0 on success,
1331 * 1 if all available erase functions failed.
1332 */
Nico Huber454f6132012-12-10 13:34:10 +00001333static int erase_by_layout(struct flashctx *const flashctx)
Nico Huber7af0e792016-04-29 16:40:15 +02001334{
1335 struct walk_info info = { 0 };
1336 return walk_by_layout(flashctx, &info, &erase_block);
1337}
1338
1339static int read_erase_write_block(struct flashctx *const flashctx,
1340 const struct walk_info *const info, const erasefn_t erasefn)
1341{
1342 const chipsize_t erase_len = info->erase_end + 1 - info->erase_start;
1343 const bool region_unaligned = info->region_start > info->erase_start ||
1344 info->erase_end > info->region_end;
1345 const uint8_t *newcontents = NULL;
1346 int ret = 2;
1347
1348 /*
1349 * If the region is not erase-block aligned, merge current flash con-
1350 * tents into `info->curcontents` and a new buffer `newc`. The former
1351 * is necessary since we have no guarantee that the full erase block
1352 * was already read into `info->curcontents`. For the latter a new
1353 * buffer is used since `info->newcontents` might contain data for
1354 * other unaligned regions that touch this erase block too.
1355 */
1356 if (region_unaligned) {
1357 msg_cdbg("R");
1358 uint8_t *const newc = malloc(erase_len);
1359 if (!newc) {
1360 msg_cerr("Out of memory!\n");
1361 return 1;
1362 }
1363 memcpy(newc, info->newcontents + info->erase_start, erase_len);
1364
1365 /* Merge data preceding the current region. */
1366 if (info->region_start > info->erase_start) {
1367 const chipoff_t start = info->erase_start;
1368 const chipsize_t len = info->region_start - info->erase_start;
1369 if (flashctx->chip->read(flashctx, newc, start, len)) {
1370 msg_cerr("Can't read! Aborting.\n");
1371 goto _free_ret;
1372 }
1373 memcpy(info->curcontents + start, newc, len);
1374 }
1375 /* Merge data following the current region. */
1376 if (info->erase_end > info->region_end) {
1377 const chipoff_t start = info->region_end + 1;
1378 const chipoff_t rel_start = start - info->erase_start; /* within this erase block */
1379 const chipsize_t len = info->erase_end - info->region_end;
1380 if (flashctx->chip->read(flashctx, newc + rel_start, start, len)) {
1381 msg_cerr("Can't read! Aborting.\n");
1382 goto _free_ret;
1383 }
1384 memcpy(info->curcontents + start, newc + rel_start, len);
1385 }
1386
1387 newcontents = newc;
1388 } else {
1389 newcontents = info->newcontents + info->erase_start;
1390 }
1391
1392 ret = 1;
1393 bool skipped = true;
1394 uint8_t *const curcontents = info->curcontents + info->erase_start;
Paul Kocialkowski995f7552018-01-15 01:06:09 +03001395 const uint8_t erased_value = ERASED_VALUE(flashctx);
David Hendricksf9a30552015-05-23 20:30:30 -07001396 if (!(flashctx->chip->feature_bits & FEATURE_NO_ERASE) &&
1397 need_erase(curcontents, newcontents, erase_len, flashctx->chip->gran, erased_value)) {
Nico Huber7af0e792016-04-29 16:40:15 +02001398 if (erase_block(flashctx, info, erasefn))
1399 goto _free_ret;
1400 /* Erase was successful. Adjust curcontents. */
Paul Kocialkowski995f7552018-01-15 01:06:09 +03001401 memset(curcontents, erased_value, erase_len);
Nico Huber7af0e792016-04-29 16:40:15 +02001402 skipped = false;
1403 }
1404
1405 unsigned int starthere = 0, lenhere = 0, writecount = 0;
1406 /* get_next_write() sets starthere to a new value after the call. */
1407 while ((lenhere = get_next_write(curcontents + starthere, newcontents + starthere,
1408 erase_len - starthere, &starthere, flashctx->chip->gran))) {
1409 if (!writecount++)
1410 msg_cdbg("W");
1411 /* Needs the partial write function signature. */
1412 if (flashctx->chip->write(flashctx, newcontents + starthere,
1413 info->erase_start + starthere, lenhere))
1414 goto _free_ret;
1415 starthere += lenhere;
1416 skipped = false;
1417 }
1418 if (skipped)
1419 msg_cdbg("S");
1420 else
1421 all_skipped = false;
1422
1423 /* Update curcontents, other regions with overlapping erase blocks
1424 might rely on this. */
1425 memcpy(curcontents, newcontents, erase_len);
1426 ret = 0;
1427
1428_free_ret:
1429 if (region_unaligned)
1430 free((void *)newcontents);
1431 return ret;
1432}
1433
1434/**
1435 * @brief Writes the included layout regions from a given image.
1436 *
1437 * If there is no layout set in the given flash context, the whole image
1438 * will be written.
1439 *
1440 * @param flashctx Flash context to be used.
1441 * @param curcontents A buffer of full chip size with current chip contents of included regions.
1442 * @param newcontents The new image to be written.
1443 * @return 0 on success,
1444 * 1 if anything has gone wrong.
1445 */
Nico Huber454f6132012-12-10 13:34:10 +00001446static int write_by_layout(struct flashctx *const flashctx,
1447 void *const curcontents, const void *const newcontents)
Nico Huber7af0e792016-04-29 16:40:15 +02001448{
1449 struct walk_info info;
1450 info.curcontents = curcontents;
1451 info.newcontents = newcontents;
1452 return walk_by_layout(flashctx, &info, read_erase_write_block);
1453}
1454
1455/**
1456 * @brief Compares the included layout regions with content from a buffer.
1457 *
1458 * If there is no layout set in the given flash context, the whole chip's
1459 * contents will be compared.
1460 *
1461 * @param flashctx Flash context to be used.
1462 * @param curcontents A buffer of full chip size to read current chip contents into.
1463 * @param newcontents The new image to compare to.
1464 * @return 0 on success,
1465 * 1 if reading failed,
1466 * 3 if the contents don't match.
1467 */
Nico Huber454f6132012-12-10 13:34:10 +00001468static int verify_by_layout(struct flashctx *const flashctx,
1469 void *const curcontents, const uint8_t *const newcontents)
Nico Huber7af0e792016-04-29 16:40:15 +02001470{
1471 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber5ca55232019-06-15 22:29:08 +02001472 const struct romentry *entry = NULL;
Nico Huber7af0e792016-04-29 16:40:15 +02001473
Nico Huber5ca55232019-06-15 22:29:08 +02001474 while ((entry = layout_next_included(layout, entry))) {
1475 const chipoff_t region_start = entry->start;
1476 const chipsize_t region_len = entry->end - entry->start + 1;
Nico Huber7af0e792016-04-29 16:40:15 +02001477
1478 if (flashctx->chip->read(flashctx, curcontents + region_start, region_start, region_len))
1479 return 1;
1480 if (compare_range(newcontents + region_start, curcontents + region_start,
1481 region_start, region_len))
1482 return 3;
1483 }
1484 return 0;
1485}
1486
Stefan Tauner136388f2013-07-15 10:47:53 +00001487static void nonfatal_help_message(void)
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001488{
Stefan Taunera58f6e92014-05-10 09:25:44 +00001489 msg_gerr("Good, writing to the flash chip apparently didn't do anything.\n");
Stefan Tauner136388f2013-07-15 10:47:53 +00001490#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +02001491 if (programmer == &programmer_internal)
Stefan Tauner136388f2013-07-15 10:47:53 +00001492 msg_gerr("This means we have to add special support for your board, programmer or flash\n"
Angel Pons1900e1d2021-07-02 12:42:23 +02001493 "chip. Please report this to the mailing list at flashrom@flashrom.org or on\n"
1494 "IRC (see https://www.flashrom.org/Contact for details), thanks!\n"
Stefan Tauner136388f2013-07-15 10:47:53 +00001495 "-------------------------------------------------------------------------------\n"
1496 "You may now reboot or simply leave the machine running.\n");
1497 else
1498#endif
1499 msg_gerr("Please check the connections (especially those to write protection pins) between\n"
1500 "the programmer and the flash chip. If you think the error is caused by flashrom\n"
Angel Pons1900e1d2021-07-02 12:42:23 +02001501 "please report this to the mailing list at flashrom@flashrom.org or on IRC (see\n"
1502 "https://www.flashrom.org/Contact for details), thanks!\n");
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001503}
1504
Stefan Tauner136388f2013-07-15 10:47:53 +00001505static void emergency_help_message(void)
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001506{
Stefan Tauner136388f2013-07-15 10:47:53 +00001507 msg_gerr("Your flash chip is in an unknown state.\n");
1508#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +02001509 if (programmer == &programmer_internal)
Angel Pons1900e1d2021-07-02 12:42:23 +02001510 msg_gerr("Get help on IRC (see https://www.flashrom.org/Contact) or mail\n"
1511 "flashrom@flashrom.org with the subject \"FAILED: <your board name>\"!"
Stefan Tauner136388f2013-07-15 10:47:53 +00001512 "-------------------------------------------------------------------------------\n"
1513 "DO NOT REBOOT OR POWEROFF!\n");
1514 else
1515#endif
Angel Pons1900e1d2021-07-02 12:42:23 +02001516 msg_gerr("Please report this to the mailing list at flashrom@flashrom.org or\n"
1517 "on IRC (see https://www.flashrom.org/Contact for details), thanks!\n");
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001518}
1519
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001520void list_programmers_linebreak(int startcol, int cols, int paren)
1521{
1522 const char *pname;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001523 int pnamelen;
1524 int remaining = 0, firstline = 1;
Thomas Heijligen9163b812021-06-01 14:25:01 +02001525 size_t p;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001526 int i;
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001527
Thomas Heijligend45cb592021-05-19 14:12:18 +02001528 for (p = 0; p < programmer_table_size; p++) {
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001529 pname = programmer_table[p]->name;
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001530 pnamelen = strlen(pname);
1531 if (remaining - pnamelen - 2 < 0) {
1532 if (firstline)
1533 firstline = 0;
1534 else
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001535 msg_ginfo("\n");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001536 for (i = 0; i < startcol; i++)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001537 msg_ginfo(" ");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001538 remaining = cols - startcol;
1539 } else {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001540 msg_ginfo(" ");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001541 remaining--;
1542 }
1543 if (paren && (p == 0)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001544 msg_ginfo("(");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001545 remaining--;
1546 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001547 msg_ginfo("%s", pname);
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001548 remaining -= pnamelen;
Thomas Heijligend45cb592021-05-19 14:12:18 +02001549 if (p < programmer_table_size - 1) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001550 msg_ginfo(",");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001551 remaining--;
1552 } else {
1553 if (paren)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001554 msg_ginfo(")");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001555 }
1556 }
1557}
1558
Jacob Garberbeeb8bc2019-06-21 15:24:17 -06001559static void print_sysinfo(void)
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001560{
Stefan Taunerb0eee9b2015-01-10 09:32:50 +00001561#if IS_WINDOWS
Angel Pons7e134562021-06-07 13:29:13 +02001562 SYSTEM_INFO si = { 0 };
1563 OSVERSIONINFOEX osvi = { 0 };
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001564
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +00001565 msg_ginfo(" on Windows");
1566 /* Tell Windows which version of the structure we want. */
1567 osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
1568 if (GetVersionEx((OSVERSIONINFO*) &osvi))
1569 msg_ginfo(" %lu.%lu", osvi.dwMajorVersion, osvi.dwMinorVersion);
1570 else
1571 msg_ginfo(" unknown version");
1572 GetSystemInfo(&si);
1573 switch (si.wProcessorArchitecture) {
1574 case PROCESSOR_ARCHITECTURE_AMD64:
1575 msg_ginfo(" (x86_64)");
1576 break;
1577 case PROCESSOR_ARCHITECTURE_INTEL:
1578 msg_ginfo(" (x86)");
1579 break;
1580 default:
1581 msg_ginfo(" (unknown arch)");
1582 break;
1583 }
1584#elif HAVE_UTSNAME == 1
1585 struct utsname osinfo;
1586
1587 uname(&osinfo);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001588 msg_ginfo(" on %s %s (%s)", osinfo.sysname, osinfo.release,
1589 osinfo.machine);
1590#else
1591 msg_ginfo(" on unknown machine");
1592#endif
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001593}
1594
1595void print_buildinfo(void)
1596{
1597 msg_gdbg("flashrom was built with");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001598#if NEED_PCI == 1
1599#ifdef PCILIB_VERSION
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001600 msg_gdbg(" libpci %s,", PCILIB_VERSION);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001601#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001602 msg_gdbg(" unknown PCI library,");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001603#endif
1604#endif
1605#ifdef __clang__
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001606 msg_gdbg(" LLVM Clang");
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001607#ifdef __clang_version__
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001608 msg_gdbg(" %s,", __clang_version__);
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001609#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001610 msg_gdbg(" unknown version (before r102686),");
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001611#endif
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001612#elif defined(__GNUC__)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001613 msg_gdbg(" GCC");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001614#ifdef __VERSION__
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001615 msg_gdbg(" %s,", __VERSION__);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001616#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001617 msg_gdbg(" unknown version,");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001618#endif
1619#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001620 msg_gdbg(" unknown compiler,");
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001621#endif
1622#if defined (__FLASHROM_LITTLE_ENDIAN__)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001623 msg_gdbg(" little endian");
Carl-Daniel Hailfinger06b9efa2012-08-07 11:59:59 +00001624#elif defined (__FLASHROM_BIG_ENDIAN__)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001625 msg_gdbg(" big endian");
Carl-Daniel Hailfinger06b9efa2012-08-07 11:59:59 +00001626#else
1627#error Endianness could not be determined
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001628#endif
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001629 msg_gdbg("\n");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001630}
1631
Bernhard Walle201bde32008-01-21 15:24:22 +00001632void print_version(void)
1633{
Stefan Tauner76347082016-11-27 17:45:49 +01001634 msg_ginfo("flashrom %s", flashrom_version);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001635 print_sysinfo();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001636 msg_ginfo("\n");
Bernhard Walle201bde32008-01-21 15:24:22 +00001637}
1638
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001639void print_banner(void)
1640{
1641 msg_ginfo("flashrom is free software, get the source code at "
Stefan Tauner4c723152016-01-14 22:47:55 +00001642 "https://flashrom.org\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001643 msg_ginfo("\n");
1644}
1645
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001646int selfcheck(void)
1647{
Stefan Tauner96658be2014-05-26 22:05:31 +00001648 unsigned int i;
Stefan Taunera6d96482012-12-26 19:51:23 +00001649 int ret = 0;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001650
Thomas Heijligend45cb592021-05-19 14:12:18 +02001651 for (i = 0; i < programmer_table_size; i++) {
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001652 const struct programmer_entry *const p = programmer_table[i];
1653 if (p == NULL) {
1654 msg_gerr("Programmer with index %d is NULL instead of a valid pointer!\n", i);
1655 ret = 1;
1656 continue;
1657 }
1658 if (p->name == NULL) {
Stefan Taunera6d96482012-12-26 19:51:23 +00001659 msg_gerr("All programmers need a valid name, but the one with index %d does not!\n", i);
1660 ret = 1;
1661 /* This might hide other problems with this programmer, but allows for better error
1662 * messages below without jumping through hoops. */
1663 continue;
1664 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001665 switch (p->type) {
Stefan Tauneraf358d62012-12-27 18:40:26 +00001666 case USB:
1667 case PCI:
1668 case OTHER:
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001669 if (p->devs.note == NULL) {
1670 if (strcmp("internal", p->name) == 0)
Stefan Tauneraf358d62012-12-27 18:40:26 +00001671 break; /* This one has its device list stored separately. */
1672 msg_gerr("Programmer %s has neither a device list nor a textual description!\n",
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001673 p->name);
Stefan Tauneraf358d62012-12-27 18:40:26 +00001674 ret = 1;
1675 }
1676 break;
1677 default:
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001678 msg_gerr("Programmer %s does not have a valid type set!\n", p->name);
Stefan Tauneraf358d62012-12-27 18:40:26 +00001679 ret = 1;
1680 break;
1681 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001682 if (p->init == NULL) {
1683 msg_gerr("Programmer %s does not have a valid init function!\n", p->name);
Stefan Taunera6d96482012-12-26 19:51:23 +00001684 ret = 1;
1685 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001686 if (p->delay == NULL) {
1687 msg_gerr("Programmer %s does not have a valid delay function!\n", p->name);
Stefan Taunera6d96482012-12-26 19:51:23 +00001688 ret = 1;
1689 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001690 if (p->map_flash_region == NULL) {
1691 msg_gerr("Programmer %s does not have a valid map_flash_region function!\n", p->name);
Stefan Taunera6d96482012-12-26 19:51:23 +00001692 ret = 1;
1693 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001694 if (p->unmap_flash_region == NULL) {
1695 msg_gerr("Programmer %s does not have a valid unmap_flash_region function!\n", p->name);
Stefan Taunera6d96482012-12-26 19:51:23 +00001696 ret = 1;
1697 }
1698 }
Stefan Tauner96658be2014-05-26 22:05:31 +00001699
1700 /* It would be favorable if we could check for the correct layout (especially termination) of various
1701 * constant arrays: flashchips, chipset_enables, board_matches, boards_known, laptops_known.
1702 * They are all defined as externs in this compilation unit so we don't know their sizes which vary
1703 * depending on compiler flags, e.g. the target architecture, and can sometimes be 0.
1704 * For 'flashchips' we export the size explicitly to work around this and to be able to implement the
1705 * checks below. */
Stefan Tauner6697f712014-08-06 15:09:15 +00001706 if (flashchips_size <= 1 || flashchips[flashchips_size - 1].name != NULL) {
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001707 msg_gerr("Flashchips table miscompilation!\n");
1708 ret = 1;
Stefan Tauner96658be2014-05-26 22:05:31 +00001709 } else {
1710 for (i = 0; i < flashchips_size - 1; i++) {
1711 const struct flashchip *chip = &flashchips[i];
1712 if (chip->vendor == NULL || chip->name == NULL || chip->bustype == BUS_NONE) {
1713 ret = 1;
1714 msg_gerr("ERROR: Some field of flash chip #%d (%s) is misconfigured.\n"
1715 "Please report a bug at flashrom@flashrom.org\n", i,
1716 chip->name == NULL ? "unnamed" : chip->name);
1717 }
1718 if (selfcheck_eraseblocks(chip)) {
1719 ret = 1;
1720 }
1721 }
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001722 }
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001723
Stefan Tauner600576b2014-06-12 22:57:36 +00001724#if CONFIG_INTERNAL == 1
1725 ret |= selfcheck_board_enables();
1726#endif
1727
Stefan Tauner96658be2014-05-26 22:05:31 +00001728 /* TODO: implement similar sanity checks for other arrays where deemed necessary. */
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001729 return ret;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001730}
1731
Edward O'Callaghanacb24d42021-04-15 13:44:39 +10001732/* FIXME: This function signature needs to be improved once prepare_flash_access()
1733 * has a better function signature.
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001734 */
Jacob Garberbeeb8bc2019-06-21 15:24:17 -06001735static int chip_safety_check(const struct flashctx *flash, int force,
1736 int read_it, int write_it, int erase_it, int verify_it)
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001737{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001738 const struct flashchip *chip = flash->chip;
1739
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001740 if (!programmer_may_write && (write_it || erase_it)) {
1741 msg_perr("Write/erase is not working yet on your programmer in "
1742 "its current configuration.\n");
1743 /* --force is the wrong approach, but it's the best we can do
1744 * until the generic programmer parameter parser is merged.
1745 */
1746 if (!force)
1747 return 1;
1748 msg_cerr("Continuing anyway.\n");
1749 }
1750
1751 if (read_it || erase_it || write_it || verify_it) {
1752 /* Everything needs read. */
Stefan Tauner6455dff2014-05-26 00:36:24 +00001753 if (chip->tested.read == BAD) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001754 msg_cerr("Read is not working on this chip. ");
1755 if (!force)
1756 return 1;
1757 msg_cerr("Continuing anyway.\n");
1758 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001759 if (!chip->read) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001760 msg_cerr("flashrom has no read function for this "
1761 "flash chip.\n");
1762 return 1;
1763 }
1764 }
1765 if (erase_it || write_it) {
1766 /* Write needs erase. */
Stefan Tauner6455dff2014-05-26 00:36:24 +00001767 if (chip->tested.erase == NA) {
1768 msg_cerr("Erase is not possible on this chip.\n");
1769 return 1;
1770 }
1771 if (chip->tested.erase == BAD) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001772 msg_cerr("Erase is not working on this chip. ");
1773 if (!force)
1774 return 1;
1775 msg_cerr("Continuing anyway.\n");
1776 }
Sylvain "ythier" Hitier9db45512011-07-04 07:27:17 +00001777 if(count_usable_erasers(flash) == 0) {
Stefan Tauner5368dca2011-07-01 00:19:12 +00001778 msg_cerr("flashrom has no erase function for this "
1779 "flash chip.\n");
1780 return 1;
1781 }
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001782 }
1783 if (write_it) {
Stefan Tauner6455dff2014-05-26 00:36:24 +00001784 if (chip->tested.write == NA) {
1785 msg_cerr("Write is not possible on this chip.\n");
1786 return 1;
1787 }
1788 if (chip->tested.write == BAD) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001789 msg_cerr("Write is not working on this chip. ");
1790 if (!force)
1791 return 1;
1792 msg_cerr("Continuing anyway.\n");
1793 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001794 if (!chip->write) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001795 msg_cerr("flashrom has no write function for this "
1796 "flash chip.\n");
1797 return 1;
1798 }
1799 }
1800 return 0;
1801}
1802
Nico Huber305f4172013-06-14 11:55:26 +02001803int prepare_flash_access(struct flashctx *const flash,
1804 const bool read_it, const bool write_it,
1805 const bool erase_it, const bool verify_it)
Nico Huber454f6132012-12-10 13:34:10 +00001806{
1807 if (chip_safety_check(flash, flash->flags.force, read_it, write_it, erase_it, verify_it)) {
1808 msg_cerr("Aborting.\n");
1809 return 1;
1810 }
1811
1812 if (flash->layout == get_global_layout() && normalize_romentries(flash)) {
1813 msg_cerr("Requested regions can not be handled. Aborting.\n");
1814 return 1;
1815 }
1816
1817 if (map_flash(flash) != 0)
1818 return 1;
1819
Nikolai Artemiev4ad48642020-11-05 13:54:27 +11001820 /* Initialize chip_restore_fn_count before chip unlock calls. */
1821 flash->chip_restore_fn_count = 0;
1822
Nico Huber454f6132012-12-10 13:34:10 +00001823 /* Given the existence of read locks, we want to unlock for read,
1824 erase and write. */
1825 if (flash->chip->unlock)
1826 flash->chip->unlock(flash);
1827
Nico Huberf43c6542017-10-14 17:47:28 +02001828 flash->address_high_byte = -1;
1829 flash->in_4ba_mode = false;
1830
Nico Huberdc5af542018-12-22 16:54:59 +01001831 /* Be careful about 4BA chips and broken masters */
1832 if (flash->chip->total_size > 16 * 1024 && spi_master_no_4ba_modes(flash)) {
1833 /* If we can't use native instructions, bail out */
1834 if ((flash->chip->feature_bits & FEATURE_4BA_NATIVE) != FEATURE_4BA_NATIVE
1835 || !spi_master_4ba(flash)) {
1836 msg_cerr("Programmer doesn't support this chip. Aborting.\n");
1837 return 1;
1838 }
1839 }
1840
Ed Swierkcc20a9b2017-07-03 13:17:18 -07001841 /* Enable/disable 4-byte addressing mode if flash chip supports it */
Nico Huber86bddb52018-03-13 18:14:52 +01001842 if (flash->chip->feature_bits & (FEATURE_4BA_ENTER | FEATURE_4BA_ENTER_WREN | FEATURE_4BA_ENTER_EAR7)) {
Nico Huberfe34d2a2017-11-10 21:10:20 +01001843 int ret;
1844 if (spi_master_4ba(flash))
1845 ret = spi_enter_4ba(flash);
1846 else
1847 ret = spi_exit_4ba(flash);
1848 if (ret) {
1849 msg_cerr("Failed to set correct 4BA mode! Aborting.\n");
Ed Swierkcc20a9b2017-07-03 13:17:18 -07001850 return 1;
Boris Baykov7fe85692016-06-11 18:29:03 +02001851 }
Boris Baykov99127182016-06-11 18:29:00 +02001852 }
1853
Nico Huber454f6132012-12-10 13:34:10 +00001854 return 0;
1855}
1856
Nico Huber305f4172013-06-14 11:55:26 +02001857void finalize_flash_access(struct flashctx *const flash)
Nico Huber454f6132012-12-10 13:34:10 +00001858{
Nikolai Artemiev4ad48642020-11-05 13:54:27 +11001859 deregister_chip_restore(flash);
Nico Huber454f6132012-12-10 13:34:10 +00001860 unmap_flash(flash);
1861}
1862
1863/**
1864 * @addtogroup flashrom-flash
1865 * @{
1866 */
1867
1868/**
1869 * @brief Erase the specified ROM chip.
1870 *
1871 * If a layout is set in the given flash context, only included regions
1872 * will be erased.
1873 *
1874 * @param flashctx The context of the flash chip to erase.
1875 * @return 0 on success.
1876 */
1877int flashrom_flash_erase(struct flashctx *const flashctx)
1878{
1879 if (prepare_flash_access(flashctx, false, false, true, false))
1880 return 1;
1881
1882 const int ret = erase_by_layout(flashctx);
1883
1884 finalize_flash_access(flashctx);
1885
1886 return ret;
1887}
1888
1889/** @} */ /* end flashrom-flash */
1890
1891/**
1892 * @defgroup flashrom-ops Operations
1893 * @{
1894 */
1895
1896/**
1897 * @brief Read the current image from the specified ROM chip.
1898 *
1899 * If a layout is set in the specified flash context, only included regions
1900 * will be read.
1901 *
1902 * @param flashctx The context of the flash chip.
1903 * @param buffer Target buffer to write image to.
1904 * @param buffer_len Size of target buffer in bytes.
1905 * @return 0 on success,
1906 * 2 if buffer_len is too short for the flash chip's contents,
1907 * or 1 on any other failure.
1908 */
1909int flashrom_image_read(struct flashctx *const flashctx, void *const buffer, const size_t buffer_len)
1910{
1911 const size_t flash_size = flashctx->chip->total_size * 1024;
1912
1913 if (flash_size > buffer_len)
1914 return 2;
1915
1916 if (prepare_flash_access(flashctx, true, false, false, false))
1917 return 1;
1918
1919 msg_cinfo("Reading flash... ");
1920
1921 int ret = 1;
1922 if (read_by_layout(flashctx, buffer)) {
1923 msg_cerr("Read operation failed!\n");
1924 msg_cinfo("FAILED.\n");
1925 goto _finalize_ret;
1926 }
1927 msg_cinfo("done.\n");
1928 ret = 0;
1929
1930_finalize_ret:
1931 finalize_flash_access(flashctx);
1932 return ret;
1933}
1934
1935static void combine_image_by_layout(const struct flashctx *const flashctx,
1936 uint8_t *const newcontents, const uint8_t *const oldcontents)
1937{
1938 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber3d7b1e32018-12-22 00:53:14 +01001939 const struct romentry *included;
1940 chipoff_t start = 0;
Nico Huber454f6132012-12-10 13:34:10 +00001941
Nico Huber3d7b1e32018-12-22 00:53:14 +01001942 while ((included = layout_next_included_region(layout, start))) {
1943 if (included->start > start) {
1944 /* copy everything up to the start of this included region */
1945 memcpy(newcontents + start, oldcontents + start, included->start - start);
1946 }
1947 /* skip this included region */
1948 start = included->end + 1;
1949 if (start == 0)
1950 return;
Nico Huber454f6132012-12-10 13:34:10 +00001951 }
Nico Huber3d7b1e32018-12-22 00:53:14 +01001952
1953 /* copy the rest of the chip */
1954 const chipsize_t copy_len = flashctx->chip->total_size * 1024 - start;
1955 memcpy(newcontents + start, oldcontents + start, copy_len);
Nico Huber454f6132012-12-10 13:34:10 +00001956}
1957
1958/**
1959 * @brief Write the specified image to the ROM chip.
1960 *
1961 * If a layout is set in the specified flash context, only erase blocks
1962 * containing included regions will be touched.
1963 *
1964 * @param flashctx The context of the flash chip.
Nico Huber1b172f22017-06-19 12:35:24 +02001965 * @param buffer Source buffer to read image from (may be altered for full verification).
Nico Huber454f6132012-12-10 13:34:10 +00001966 * @param buffer_len Size of source buffer in bytes.
Paul Kocialkowskif701f342018-01-15 01:10:36 +03001967 * @param refbuffer If given, assume flash chip contains same data as `refbuffer`.
Nico Huber454f6132012-12-10 13:34:10 +00001968 * @return 0 on success,
1969 * 4 if buffer_len doesn't match the size of the flash chip,
1970 * 3 if write was tried but nothing has changed,
1971 * 2 if write failed and flash contents changed,
1972 * or 1 on any other failure.
1973 */
Paul Kocialkowskif701f342018-01-15 01:10:36 +03001974int flashrom_image_write(struct flashctx *const flashctx, void *const buffer, const size_t buffer_len,
1975 const void *const refbuffer)
Nico Huber454f6132012-12-10 13:34:10 +00001976{
1977 const size_t flash_size = flashctx->chip->total_size * 1024;
1978 const bool verify_all = flashctx->flags.verify_whole_chip;
1979 const bool verify = flashctx->flags.verify_after_write;
1980
1981 if (buffer_len != flash_size)
1982 return 4;
1983
1984 int ret = 1;
1985
1986 uint8_t *const newcontents = buffer;
Paul Kocialkowskif701f342018-01-15 01:10:36 +03001987 const uint8_t *const refcontents = refbuffer;
Nico Huber454f6132012-12-10 13:34:10 +00001988 uint8_t *const curcontents = malloc(flash_size);
1989 uint8_t *oldcontents = NULL;
1990 if (verify_all)
1991 oldcontents = malloc(flash_size);
1992 if (!curcontents || (verify_all && !oldcontents)) {
1993 msg_gerr("Out of memory!\n");
1994 goto _free_ret;
1995 }
1996
1997#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +02001998 if (programmer == &programmer_internal && cb_check_image(newcontents, flash_size) < 0) {
Nico Huber454f6132012-12-10 13:34:10 +00001999 if (flashctx->flags.force_boardmismatch) {
2000 msg_pinfo("Proceeding anyway because user forced us to.\n");
2001 } else {
2002 msg_perr("Aborting. You can override this with "
2003 "-p internal:boardmismatch=force.\n");
2004 goto _free_ret;
2005 }
2006 }
2007#endif
2008
2009 if (prepare_flash_access(flashctx, false, true, false, verify))
2010 goto _free_ret;
2011
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002012 /* If given, assume flash chip contains same data as `refcontents`. */
2013 if (refcontents) {
2014 msg_cinfo("Assuming old flash chip contents as ref-file...\n");
2015 memcpy(curcontents, refcontents, flash_size);
2016 if (oldcontents)
2017 memcpy(oldcontents, refcontents, flash_size);
Nico Huber454f6132012-12-10 13:34:10 +00002018 } else {
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002019 /*
2020 * Read the whole chip to be able to check whether regions need to be
2021 * erased and to give better diagnostics in case write fails.
2022 * The alternative is to read only the regions which are to be
2023 * preserved, but in that case we might perform unneeded erase which
2024 * takes time as well.
2025 */
2026 msg_cinfo("Reading old flash chip contents... ");
2027 if (verify_all) {
2028 if (flashctx->chip->read(flashctx, oldcontents, 0, flash_size)) {
2029 msg_cinfo("FAILED.\n");
2030 goto _finalize_ret;
2031 }
2032 memcpy(curcontents, oldcontents, flash_size);
2033 } else {
2034 if (read_by_layout(flashctx, curcontents)) {
2035 msg_cinfo("FAILED.\n");
2036 goto _finalize_ret;
2037 }
Nico Huber454f6132012-12-10 13:34:10 +00002038 }
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002039 msg_cinfo("done.\n");
Nico Huber454f6132012-12-10 13:34:10 +00002040 }
Nico Huber454f6132012-12-10 13:34:10 +00002041
2042 if (write_by_layout(flashctx, curcontents, newcontents)) {
2043 msg_cerr("Uh oh. Erase/write failed. ");
2044 ret = 2;
2045 if (verify_all) {
2046 msg_cerr("Checking if anything has changed.\n");
2047 msg_cinfo("Reading current flash chip contents... ");
2048 if (!flashctx->chip->read(flashctx, curcontents, 0, flash_size)) {
2049 msg_cinfo("done.\n");
2050 if (!memcmp(oldcontents, curcontents, flash_size)) {
2051 nonfatal_help_message();
2052 goto _finalize_ret;
2053 }
2054 msg_cerr("Apparently at least some data has changed.\n");
2055 } else
2056 msg_cerr("Can't even read anymore!\n");
2057 emergency_help_message();
2058 goto _finalize_ret;
2059 } else {
2060 msg_cerr("\n");
2061 }
2062 emergency_help_message();
2063 goto _finalize_ret;
2064 }
2065
2066 /* Verify only if we actually changed something. */
2067 if (verify && !all_skipped) {
2068 const struct flashrom_layout *const layout_bak = flashctx->layout;
2069
2070 msg_cinfo("Verifying flash... ");
2071
2072 /* Work around chips which need some time to calm down. */
2073 programmer_delay(1000*1000);
2074
2075 if (verify_all) {
2076 combine_image_by_layout(flashctx, newcontents, oldcontents);
2077 flashctx->layout = NULL;
2078 }
2079 ret = verify_by_layout(flashctx, curcontents, newcontents);
2080 flashctx->layout = layout_bak;
2081 /* If we tried to write, and verification now fails, we
2082 might have an emergency situation. */
2083 if (ret)
2084 emergency_help_message();
2085 else
2086 msg_cinfo("VERIFIED.\n");
2087 } else {
2088 /* We didn't change anything. */
2089 ret = 0;
2090 }
2091
2092_finalize_ret:
2093 finalize_flash_access(flashctx);
2094_free_ret:
2095 free(oldcontents);
2096 free(curcontents);
2097 return ret;
2098}
2099
2100/**
2101 * @brief Verify the ROM chip's contents with the specified image.
2102 *
2103 * If a layout is set in the specified flash context, only included regions
2104 * will be verified.
2105 *
2106 * @param flashctx The context of the flash chip.
2107 * @param buffer Source buffer to verify with.
2108 * @param buffer_len Size of source buffer in bytes.
2109 * @return 0 on success,
2110 * 3 if the chip's contents don't match,
2111 * 2 if buffer_len doesn't match the size of the flash chip,
2112 * or 1 on any other failure.
2113 */
2114int flashrom_image_verify(struct flashctx *const flashctx, const void *const buffer, const size_t buffer_len)
2115{
2116 const size_t flash_size = flashctx->chip->total_size * 1024;
2117
2118 if (buffer_len != flash_size)
2119 return 2;
2120
2121 const uint8_t *const newcontents = buffer;
2122 uint8_t *const curcontents = malloc(flash_size);
2123 if (!curcontents) {
2124 msg_gerr("Out of memory!\n");
2125 return 1;
2126 }
2127
2128 int ret = 1;
2129
2130 if (prepare_flash_access(flashctx, false, false, false, true))
2131 goto _free_ret;
2132
2133 msg_cinfo("Verifying flash... ");
2134 ret = verify_by_layout(flashctx, curcontents, newcontents);
2135 if (!ret)
2136 msg_cinfo("VERIFIED.\n");
2137
2138 finalize_flash_access(flashctx);
2139_free_ret:
2140 free(curcontents);
2141 return ret;
2142}
2143
2144/** @} */ /* end flashrom-ops */
Nico Huber899e4ec2016-04-29 18:39:01 +02002145
2146int do_read(struct flashctx *const flash, const char *const filename)
2147{
2148 if (prepare_flash_access(flash, true, false, false, false))
2149 return 1;
2150
2151 const int ret = read_flash_to_file(flash, filename);
2152
2153 finalize_flash_access(flash);
2154
2155 return ret;
2156}
2157
2158int do_erase(struct flashctx *const flash)
2159{
2160 const int ret = flashrom_flash_erase(flash);
2161
2162 /*
2163 * FIXME: Do we really want the scary warning if erase failed?
2164 * After all, after erase the chip is either blank or partially
2165 * blank or it has the old contents. A blank chip won't boot,
2166 * so if the user wanted erase and reboots afterwards, the user
2167 * knows very well that booting won't work.
2168 */
2169 if (ret)
2170 emergency_help_message();
2171
2172 return ret;
2173}
2174
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002175int do_write(struct flashctx *const flash, const char *const filename, const char *const referencefile)
Nico Huber899e4ec2016-04-29 18:39:01 +02002176{
2177 const size_t flash_size = flash->chip->total_size * 1024;
2178 int ret = 1;
2179
2180 uint8_t *const newcontents = malloc(flash_size);
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002181 uint8_t *const refcontents = referencefile ? malloc(flash_size) : NULL;
2182
2183 if (!newcontents || (referencefile && !refcontents)) {
Nico Huber899e4ec2016-04-29 18:39:01 +02002184 msg_gerr("Out of memory!\n");
2185 goto _free_ret;
2186 }
2187
2188 if (read_buf_from_file(newcontents, flash_size, filename))
2189 goto _free_ret;
2190
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002191 if (referencefile) {
2192 if (read_buf_from_file(refcontents, flash_size, referencefile))
2193 goto _free_ret;
2194 }
2195
2196 ret = flashrom_image_write(flash, newcontents, flash_size, refcontents);
Nico Huber899e4ec2016-04-29 18:39:01 +02002197
2198_free_ret:
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002199 free(refcontents);
Nico Huber899e4ec2016-04-29 18:39:01 +02002200 free(newcontents);
2201 return ret;
2202}
2203
2204int do_verify(struct flashctx *const flash, const char *const filename)
2205{
2206 const size_t flash_size = flash->chip->total_size * 1024;
2207 int ret = 1;
2208
2209 uint8_t *const newcontents = malloc(flash_size);
2210 if (!newcontents) {
2211 msg_gerr("Out of memory!\n");
2212 goto _free_ret;
2213 }
2214
2215 if (read_buf_from_file(newcontents, flash_size, filename))
2216 goto _free_ret;
2217
2218 ret = flashrom_image_verify(flash, newcontents, flash_size);
2219
2220_free_ret:
2221 free(newcontents);
2222 return ret;
2223}