blob: 251482e4bae5d013d276d9ce8d4c2a791f0c1be1 [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"
Thomas Heijligen74b4aa02021-12-14 17:52:30 +010040#include "hwaccess_physmap.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 "
Nico Huberac90af62022-12-18 00:22:47 +0000300 "flashrom-stable@flashrom.org\n", __func__);
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000301 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;
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300387 const uint8_t erased_value = ERASED_VALUE(flash);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000388
Edward O'Callaghanf60f64f2022-11-12 12:08:01 +1100389 uint8_t *cmpbuf = malloc(len);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000390 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);
Edward O'Callaghanf60f64f2022-11-12 12:08:01 +1100396
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000397 free(cmpbuf);
398 return ret;
399}
400
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000401/*
Carl-Daniel Hailfingerd0250a32009-11-25 17:05:52 +0000402 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000403 * flash content at location start
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000404 * @start offset to the base address of the flash chip
405 * @len length of the verified area
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000406 * @return 0 for success, -1 for failure
407 */
Mark Marshallf20b7be2014-05-09 21:16:21 +0000408int verify_range(struct flashctx *flash, const uint8_t *cmpbuf, unsigned int start, unsigned int len)
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000409{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000410 if (!len)
Stefan Taunerdf64a422014-05-27 00:06:14 +0000411 return -1;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000412
Edward O'Callaghan6ae640b2021-11-17 14:24:04 +1100413 if (start + len > flash->chip->total_size * 1024) {
414 msg_gerr("Error: %s called with start 0x%x + len 0x%x >"
415 " total_size 0x%x\n", __func__, start, len,
416 flash->chip->total_size * 1024);
417 return -1;
418 }
419
Stefan Taunerdf64a422014-05-27 00:06:14 +0000420 uint8_t *readbuf = malloc(len);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000421 if (!readbuf) {
Edward O'Callaghana31a5722022-11-12 12:05:36 +1100422 msg_gerr("Out of memory!\n");
Stefan Taunerdf64a422014-05-27 00:06:14 +0000423 return -1;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000424 }
425
Edward O'Callaghan6ae640b2021-11-17 14:24:04 +1100426 int ret = flash->chip->read(flash, readbuf, start, len);
Carl-Daniel Hailfingerd8369412010-11-16 17:21:58 +0000427 if (ret) {
428 msg_gerr("Verification impossible because read failed "
429 "at 0x%x (len 0x%x)\n", start, len);
Stefan Taunerdf64a422014-05-27 00:06:14 +0000430 ret = -1;
431 goto out_free;
Carl-Daniel Hailfingerd8369412010-11-16 17:21:58 +0000432 }
433
Stefan Tauner78ffbea2012-10-27 15:36:56 +0000434 ret = compare_range(cmpbuf, readbuf, start, len);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000435out_free:
436 free(readbuf);
437 return ret;
438}
439
Stefan Tauner02437452013-04-01 19:34:53 +0000440/* Helper function for need_erase() that focuses on granularities of gran bytes. */
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300441static int need_erase_gran_bytes(const uint8_t *have, const uint8_t *want, unsigned int len,
442 unsigned int gran, const uint8_t erased_value)
Stefan Tauner02437452013-04-01 19:34:53 +0000443{
444 unsigned int i, j, limit;
445 for (j = 0; j < len / gran; j++) {
446 limit = min (gran, len - j * gran);
447 /* Are 'have' and 'want' identical? */
448 if (!memcmp(have + j * gran, want + j * gran, limit))
449 continue;
450 /* have needs to be in erased state. */
451 for (i = 0; i < limit; i++)
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300452 if (have[j * gran + i] != erased_value)
Stefan Tauner02437452013-04-01 19:34:53 +0000453 return 1;
454 }
455 return 0;
456}
457
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000458/*
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000459 * Check if the buffer @have can be programmed to the content of @want without
460 * erasing. This is only possible if all chunks of size @gran are either kept
461 * as-is or changed from an all-ones state to any other state.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000462 *
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000463 * Warning: This function assumes that @have and @want point to naturally
464 * aligned regions.
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000465 *
466 * @have buffer with current content
467 * @want buffer with desired content
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000468 * @len length of the checked area
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000469 * @gran write granularity (enum, not count)
470 * @return 0 if no erase is needed, 1 otherwise
471 */
Edward O'Callaghana1805092022-05-16 11:10:36 +1000472static int need_erase(const uint8_t *have, const uint8_t *want, unsigned int len,
473 enum write_granularity gran, const uint8_t erased_value)
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000474{
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000475 int result = 0;
Stefan Tauner02437452013-04-01 19:34:53 +0000476 unsigned int i;
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000477
478 switch (gran) {
479 case write_gran_1bit:
480 for (i = 0; i < len; i++)
481 if ((have[i] & want[i]) != want[i]) {
482 result = 1;
483 break;
484 }
485 break;
486 case write_gran_1byte:
487 for (i = 0; i < len; i++)
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300488 if ((have[i] != want[i]) && (have[i] != erased_value)) {
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000489 result = 1;
490 break;
491 }
492 break;
Paul Kocialkowskic8305e12015-10-16 02:16:20 +0000493 case write_gran_128bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300494 result = need_erase_gran_bytes(have, want, len, 128, erased_value);
Paul Kocialkowskic8305e12015-10-16 02:16:20 +0000495 break;
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000496 case write_gran_256bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300497 result = need_erase_gran_bytes(have, want, len, 256, erased_value);
Stefan Tauner02437452013-04-01 19:34:53 +0000498 break;
499 case write_gran_264bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300500 result = need_erase_gran_bytes(have, want, len, 264, erased_value);
Stefan Tauner02437452013-04-01 19:34:53 +0000501 break;
502 case write_gran_512bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300503 result = need_erase_gran_bytes(have, want, len, 512, erased_value);
Stefan Tauner02437452013-04-01 19:34:53 +0000504 break;
505 case write_gran_528bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300506 result = need_erase_gran_bytes(have, want, len, 528, erased_value);
Stefan Tauner02437452013-04-01 19:34:53 +0000507 break;
508 case write_gran_1024bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300509 result = need_erase_gran_bytes(have, want, len, 1024, erased_value);
Stefan Tauner02437452013-04-01 19:34:53 +0000510 break;
511 case write_gran_1056bytes:
Paul Kocialkowski995f7552018-01-15 01:06:09 +0300512 result = need_erase_gran_bytes(have, want, len, 1056, erased_value);
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000513 break;
Carl-Daniel Hailfinger1b0e9fc2014-06-16 22:36:17 +0000514 case write_gran_1byte_implicit_erase:
515 /* Do not erase, handle content changes from anything->0xff by writing 0xff. */
516 result = 0;
517 break;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000518 default:
519 msg_cerr("%s: Unsupported granularity! Please report a bug at "
Nico Huberac90af62022-12-18 00:22:47 +0000520 "flashrom-stable@flashrom.org\n", __func__);
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000521 }
522 return result;
523}
524
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000525/**
526 * Check if the buffer @have needs to be programmed to get the content of @want.
527 * If yes, return 1 and fill in first_start with the start address of the
528 * write operation and first_len with the length of the first to-be-written
529 * chunk. If not, return 0 and leave first_start and first_len undefined.
530 *
531 * Warning: This function assumes that @have and @want point to naturally
532 * aligned regions.
533 *
534 * @have buffer with current content
535 * @want buffer with desired content
536 * @len length of the checked area
537 * @gran write granularity (enum, not count)
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000538 * @first_start offset of the first byte which needs to be written (passed in
539 * value is increased by the offset of the first needed write
540 * relative to have/want or unchanged if no write is needed)
541 * @return length of the first contiguous area which needs to be written
542 * 0 if no write is needed
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000543 *
544 * FIXME: This function needs a parameter which tells it about coalescing
545 * in relation to the max write length of the programmer and the max write
546 * length of the chip.
547 */
Mark Marshallf20b7be2014-05-09 21:16:21 +0000548static unsigned int get_next_write(const uint8_t *have, const uint8_t *want, unsigned int len,
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000549 unsigned int *first_start,
550 enum write_granularity gran)
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000551{
Felix Singerf25447e2022-08-19 02:44:28 +0200552 bool need_write = false;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000553 unsigned int rel_start = 0, first_len = 0;
554 unsigned int i, limit, stride;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000555
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000556 switch (gran) {
557 case write_gran_1bit:
558 case write_gran_1byte:
Carl-Daniel Hailfinger1b0e9fc2014-06-16 22:36:17 +0000559 case write_gran_1byte_implicit_erase:
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000560 stride = 1;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000561 break;
Paul Kocialkowskic8305e12015-10-16 02:16:20 +0000562 case write_gran_128bytes:
563 stride = 128;
564 break;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000565 case write_gran_256bytes:
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000566 stride = 256;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000567 break;
Stefan Tauner02437452013-04-01 19:34:53 +0000568 case write_gran_264bytes:
569 stride = 264;
570 break;
571 case write_gran_512bytes:
572 stride = 512;
573 break;
574 case write_gran_528bytes:
575 stride = 528;
576 break;
577 case write_gran_1024bytes:
578 stride = 1024;
579 break;
580 case write_gran_1056bytes:
581 stride = 1056;
582 break;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000583 default:
584 msg_cerr("%s: Unsupported granularity! Please report a bug at "
Nico Huberac90af62022-12-18 00:22:47 +0000585 "flashrom-stable@flashrom.org\n", __func__);
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000586 /* Claim that no write was needed. A write with unknown
587 * granularity is too dangerous to try.
588 */
589 return 0;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000590 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000591 for (i = 0; i < len / stride; i++) {
592 limit = min(stride, len - i * stride);
593 /* Are 'have' and 'want' identical? */
594 if (memcmp(have + i * stride, want + i * stride, limit)) {
595 if (!need_write) {
596 /* First location where have and want differ. */
Felix Singerf25447e2022-08-19 02:44:28 +0200597 need_write = true;
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000598 rel_start = i * stride;
599 }
600 } else {
601 if (need_write) {
602 /* First location where have and want
603 * do not differ anymore.
604 */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000605 break;
606 }
607 }
608 }
Carl-Daniel Hailfinger202bf532010-12-06 13:05:44 +0000609 if (need_write)
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000610 first_len = min(i * stride - rel_start, len);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000611 *first_start += rel_start;
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000612 return first_len;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000613}
614
Martin Rothf6c1cb12022-03-15 10:55:25 -0600615/* Returns the number of buses commonly supported by the current programmer and flash chip where the latter
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000616 * can not be completely accessed due to size/address limits of the programmer. */
617unsigned int count_max_decode_exceedings(const struct flashctx *flash)
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000618{
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000619 unsigned int limitexceeded = 0;
620 uint32_t size = flash->chip->total_size * 1024;
621 enum chipbustype buses = flash->mst->buses_supported & flash->chip->bustype;
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000622
623 if ((buses & BUS_PARALLEL) && (max_rom_decode.parallel < size)) {
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000624 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000625 msg_pdbg("Chip size %u kB is bigger than supported "
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000626 "size %u kB of chipset/board/programmer "
627 "for %s interface, "
628 "probe/read/erase/write may fail. ", size / 1024,
629 max_rom_decode.parallel / 1024, "Parallel");
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000630 }
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000631 if ((buses & BUS_LPC) && (max_rom_decode.lpc < size)) {
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000632 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000633 msg_pdbg("Chip size %u kB is bigger than supported "
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000634 "size %u kB of chipset/board/programmer "
635 "for %s interface, "
636 "probe/read/erase/write may fail. ", size / 1024,
637 max_rom_decode.lpc / 1024, "LPC");
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000638 }
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000639 if ((buses & BUS_FWH) && (max_rom_decode.fwh < size)) {
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000640 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000641 msg_pdbg("Chip size %u kB is bigger than supported "
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000642 "size %u kB of chipset/board/programmer "
643 "for %s interface, "
644 "probe/read/erase/write may fail. ", size / 1024,
645 max_rom_decode.fwh / 1024, "FWH");
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000646 }
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000647 if ((buses & BUS_SPI) && (max_rom_decode.spi < size)) {
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000648 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000649 msg_pdbg("Chip size %u kB is bigger than supported "
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000650 "size %u kB of chipset/board/programmer "
651 "for %s interface, "
652 "probe/read/erase/write may fail. ", size / 1024,
653 max_rom_decode.spi / 1024, "SPI");
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000654 }
Stefan Tauner9e3a6982014-08-15 17:17:59 +0000655 return limitexceeded;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000656}
657
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000658void unmap_flash(struct flashctx *flash)
659{
660 if (flash->virtual_registers != (chipaddr)ERROR_PTR) {
661 programmer_unmap_flash_region((void *)flash->virtual_registers, flash->chip->total_size * 1024);
662 flash->physical_registers = 0;
663 flash->virtual_registers = (chipaddr)ERROR_PTR;
664 }
665
666 if (flash->virtual_memory != (chipaddr)ERROR_PTR) {
667 programmer_unmap_flash_region((void *)flash->virtual_memory, flash->chip->total_size * 1024);
668 flash->physical_memory = 0;
669 flash->virtual_memory = (chipaddr)ERROR_PTR;
670 }
671}
672
673int map_flash(struct flashctx *flash)
674{
675 /* Init pointers to the fail-safe state to distinguish them later from legit values. */
676 flash->virtual_memory = (chipaddr)ERROR_PTR;
677 flash->virtual_registers = (chipaddr)ERROR_PTR;
678
679 /* FIXME: This avoids mapping (and unmapping) of flash chip definitions with size 0.
680 * These are used for various probing-related hacks that would not map successfully anyway and should be
681 * removed ASAP. */
682 if (flash->chip->total_size == 0)
683 return 0;
684
685 const chipsize_t size = flash->chip->total_size * 1024;
686 uintptr_t base = flashbase ? flashbase : (0xffffffff - size + 1);
687 void *addr = programmer_map_flash_region(flash->chip->name, base, size);
688 if (addr == ERROR_PTR) {
689 msg_perr("Could not map flash chip %s at 0x%0*" PRIxPTR ".\n",
690 flash->chip->name, PRIxPTR_WIDTH, base);
691 return 1;
692 }
693 flash->physical_memory = base;
694 flash->virtual_memory = (chipaddr)addr;
695
696 /* FIXME: Special function registers normally live 4 MByte below flash space, but it might be somewhere
697 * completely different on some chips and programmers, or not mappable at all.
698 * Ignore these problems for now and always report success. */
699 if (flash->chip->feature_bits & FEATURE_REGISTERMAP) {
700 base = 0xffffffff - size - 0x400000 + 1;
701 addr = programmer_map_flash_region("flash chip registers", base, size);
702 if (addr == ERROR_PTR) {
703 msg_pdbg2("Could not map flash chip registers %s at 0x%0*" PRIxPTR ".\n",
704 flash->chip->name, PRIxPTR_WIDTH, base);
705 return 0;
706 }
707 flash->physical_registers = base;
708 flash->virtual_registers = (chipaddr)addr;
709 }
710 return 0;
711}
712
Nico Huber2d625722016-05-03 10:48:02 +0200713/*
714 * Return a string corresponding to the bustype parameter.
715 * Memory is obtained with malloc() and must be freed with free() by the caller.
716 */
717char *flashbuses_to_text(enum chipbustype bustype)
718{
719 char *ret = calloc(1, 1);
720 /*
721 * FIXME: Once all chipsets and flash chips have been updated, NONSPI
722 * will cease to exist and should be eliminated here as well.
723 */
724 if (bustype == BUS_NONSPI) {
725 ret = strcat_realloc(ret, "Non-SPI, ");
726 } else {
727 if (bustype & BUS_PARALLEL)
728 ret = strcat_realloc(ret, "Parallel, ");
729 if (bustype & BUS_LPC)
730 ret = strcat_realloc(ret, "LPC, ");
731 if (bustype & BUS_FWH)
732 ret = strcat_realloc(ret, "FWH, ");
733 if (bustype & BUS_SPI)
734 ret = strcat_realloc(ret, "SPI, ");
735 if (bustype & BUS_PROG)
736 ret = strcat_realloc(ret, "Programmer-specific, ");
737 if (bustype == BUS_NONE)
738 ret = strcat_realloc(ret, "None, ");
739 }
740 /* Kill last comma. */
741 ret[strlen(ret) - 2] = '\0';
742 ret = realloc(ret, strlen(ret) + 1);
743 return ret;
744}
745
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000746int probe_flash(struct registered_master *mst, int startchip, struct flashctx *flash, int force)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000747{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000748 const struct flashchip *chip;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000749 enum chipbustype buses_common;
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000750 char *tmp;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000751
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000752 for (chip = flashchips + startchip; chip && chip->name; chip++) {
753 if (chip_to_probe && strcmp(chip->name, chip_to_probe) != 0)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000754 continue;
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000755 buses_common = mst->buses_supported & chip->bustype;
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000756 if (!buses_common)
Carl-Daniel Hailfinger6573b742011-06-17 22:38:53 +0000757 continue;
Mike Banon31b5e3b2018-01-15 01:10:00 +0300758 /* Only probe for SPI25 chips by default. */
759 if (chip->bustype == BUS_SPI && !chip_to_probe && chip->spi_cmd_set != SPI25)
760 continue;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000761 msg_gdbg("Probing for %s %s, %d kB: ", chip->vendor, chip->name, chip->total_size);
762 if (!chip->probe && !force) {
763 msg_gdbg("failed! flashrom has no probe function for this flash chip.\n");
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000764 continue;
765 }
Stefan Reinauer70385642007-04-06 11:58:03 +0000766
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000767 /* Start filling in the dynamic data. */
Angel Pons690a9442021-06-07 12:33:53 +0200768 flash->chip = calloc(1, sizeof(*flash->chip));
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000769 if (!flash->chip) {
770 msg_gerr("Out of memory!\n");
771 exit(1);
772 }
Angel Pons7e134562021-06-07 13:29:13 +0200773 *flash->chip = *chip;
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000774 flash->mst = mst;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000775
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000776 if (map_flash(flash) != 0)
Martin Schiller57a3b732017-11-23 06:24:57 +0100777 goto notfound;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000778
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000779 /* We handle a forced match like a real match, we just avoid probing. Note that probe_flash()
780 * is only called with force=1 after normal probing failed.
781 */
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000782 if (force)
783 break;
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000784
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000785 if (flash->chip->probe(flash) != 1)
Peter Stuge483b8f02008-09-03 23:10:05 +0000786 goto notfound;
787
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000788 /* If this is the first chip found, accept it.
789 * If this is not the first chip found, accept it only if it is
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000790 * a non-generic match. SFDP and CFI are generic matches.
791 * startchip==0 means this call to probe_flash() is the first
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000792 * one for this programmer interface (master) and thus no other chip has
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000793 * been found on this interface.
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000794 */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000795 if (startchip == 0 && flash->chip->model_id == SFDP_DEVICE_ID) {
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000796 msg_cinfo("===\n"
797 "SFDP has autodetected a flash chip which is "
798 "not natively supported by flashrom yet.\n");
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000799 if (count_usable_erasers(flash) == 0)
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000800 msg_cinfo("The standard operations read and "
801 "verify should work, but to support "
802 "erase, write and all other "
803 "possible features");
804 else
805 msg_cinfo("All standard operations (read, "
806 "verify, erase and write) should "
807 "work, but to support all possible "
808 "features");
809
Stefan Taunerb4e06bd2012-08-20 00:24:22 +0000810 msg_cinfo(" we need to add them manually.\n"
811 "You can help us by mailing us the output of the following command to "
Nico Huberac90af62022-12-18 00:22:47 +0000812 "flashrom-stable@flashrom.org:\n"
Stefan Taunerb4e06bd2012-08-20 00:24:22 +0000813 "'flashrom -VV [plus the -p/--programmer parameter]'\n"
814 "Thanks for your help!\n"
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000815 "===\n");
816 }
817
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000818 /* First flash chip detected on this bus. */
819 if (startchip == 0)
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000820 break;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000821 /* Not the first flash chip detected on this bus, but not a generic match either. */
822 if ((flash->chip->model_id != GENERIC_DEVICE_ID) && (flash->chip->model_id != SFDP_DEVICE_ID))
823 break;
824 /* 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 +0000825notfound:
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000826 unmap_flash(flash);
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000827 free(flash->chip);
828 flash->chip = NULL;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000829 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000830
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000831 if (!flash->chip)
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000832 return -1;
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000833
Nico Huber5bd990c2019-06-16 19:46:46 +0200834 /* Fill default layout covering the whole chip. */
Nico Huber671c0f02019-06-16 20:17:19 +0200835 if (flashrom_layout_new(&flash->default_layout) ||
Nico Huber5bd990c2019-06-16 19:46:46 +0200836 flashrom_layout_add_region(flash->default_layout,
Nico Huber92e0b622019-06-15 15:55:11 +0200837 0, flash->chip->total_size * 1024 - 1, "complete flash") ||
Nico Huber5bd990c2019-06-16 19:46:46 +0200838 flashrom_layout_include_region(flash->default_layout, "complete flash"))
839 return -1;
Stefan Reinauer051e2362011-01-19 06:21:54 +0000840
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000841 tmp = flashbuses_to_text(flash->chip->bustype);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000842 msg_cinfo("%s %s flash chip \"%s\" (%d kB, %s) ", force ? "Assuming" : "Found",
843 flash->chip->vendor, flash->chip->name, flash->chip->total_size, tmp);
Stefan Tauner00155492011-06-26 20:45:35 +0000844 free(tmp);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000845#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200846 if (programmer->map_flash_region == physmap)
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000847 msg_cinfo("mapped at physical address 0x%0*" PRIxPTR ".\n",
848 PRIxPTR_WIDTH, flash->physical_memory);
849 else
850#endif
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200851 msg_cinfo("on %s.\n", programmer->name);
Uwe Hermann9899cad2009-06-28 21:47:57 +0000852
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000853 /* Flash registers may more likely not be mapped if the chip was forced.
854 * Lock info may be stored in registers, so avoid lock info printing. */
Carl-Daniel Hailfinger859f3f02010-12-02 21:59:42 +0000855 if (!force)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000856 if (flash->chip->printlock)
857 flash->chip->printlock(flash);
Sean Nelson6e0b9122010-02-19 00:52:10 +0000858
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000859 /* Get out of the way for later runs. */
860 unmap_flash(flash);
861
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000862 /* Return position of matching chip. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000863 return chip - flashchips;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000864}
865
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000866int read_buf_from_file(unsigned char *buf, unsigned long size,
867 const char *filename)
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000868{
Nico Huber7562f7d2013-08-30 21:29:45 +0000869#ifdef __LIBPAYLOAD__
870 msg_gerr("Error: No file I/O support in libpayload\n");
871 return 1;
872#else
Stefan Tauner16687702015-12-25 21:59:45 +0000873 int ret = 0;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000874
Stefan Tauner16687702015-12-25 21:59:45 +0000875 FILE *image;
Daniel Campello8eaef7d2021-04-15 10:36:04 -0600876 if (!strcmp(filename, "-"))
877 image = fdopen(fileno(stdin), "rb");
878 else
879 image = fopen(filename, "rb");
880 if (image == NULL) {
Stefan Tauner363fd7e2013-04-07 13:08:30 +0000881 msg_gerr("Error: opening file \"%s\" failed: %s\n", filename, strerror(errno));
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000882 return 1;
883 }
Stefan Tauner16687702015-12-25 21:59:45 +0000884
885 struct stat image_stat;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000886 if (fstat(fileno(image), &image_stat) != 0) {
Stefan Tauner363fd7e2013-04-07 13:08:30 +0000887 msg_gerr("Error: getting metadata of file \"%s\" failed: %s\n", filename, strerror(errno));
Stefan Tauner16687702015-12-25 21:59:45 +0000888 ret = 1;
889 goto out;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000890 }
Daniel Campello8eaef7d2021-04-15 10:36:04 -0600891 if ((image_stat.st_size != (intmax_t)size) && strcmp(filename, "-")) {
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000892 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 +0000893 (intmax_t)image_stat.st_size, size);
Stefan Tauner16687702015-12-25 21:59:45 +0000894 ret = 1;
895 goto out;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000896 }
Stefan Tauner16687702015-12-25 21:59:45 +0000897
898 unsigned long numbytes = fread(buf, 1, size, image);
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000899 if (numbytes != size) {
900 msg_gerr("Error: Failed to read complete file. Got %ld bytes, "
901 "wanted %ld!\n", numbytes, size);
Stefan Tauner16687702015-12-25 21:59:45 +0000902 ret = 1;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000903 }
Stefan Tauner16687702015-12-25 21:59:45 +0000904out:
905 (void)fclose(image);
906 return ret;
Nico Huber7562f7d2013-08-30 21:29:45 +0000907#endif
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000908}
909
Mark Marshallf20b7be2014-05-09 21:16:21 +0000910int write_buf_to_file(const unsigned char *buf, unsigned long size, const char *filename)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000911{
Nico Huber7562f7d2013-08-30 21:29:45 +0000912#ifdef __LIBPAYLOAD__
913 msg_gerr("Error: No file I/O support in libpayload\n");
914 return 1;
915#else
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000916 FILE *image;
Stefan Tauner16687702015-12-25 21:59:45 +0000917 int ret = 0;
Stephan Guilloux21dd55b2009-06-01 22:07:52 +0000918
919 if (!filename) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000920 msg_gerr("No filename specified.\n");
Stephan Guilloux21dd55b2009-06-01 22:07:52 +0000921 return 1;
922 }
Patrick Georgi0bf842d2010-01-25 22:55:33 +0000923 if ((image = fopen(filename, "wb")) == NULL) {
Stefan Tauner363fd7e2013-04-07 13:08:30 +0000924 msg_gerr("Error: opening file \"%s\" failed: %s\n", filename, strerror(errno));
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000925 return 1;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000926 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000927
Stefan Tauner16687702015-12-25 21:59:45 +0000928 unsigned long numbytes = fwrite(buf, 1, size, image);
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000929 if (numbytes != size) {
Stefan Tauner16687702015-12-25 21:59:45 +0000930 msg_gerr("Error: file %s could not be written completely.\n", filename);
931 ret = 1;
932 goto out;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000933 }
Stefan Tauner16687702015-12-25 21:59:45 +0000934 if (fflush(image)) {
935 msg_gerr("Error: flushing file \"%s\" failed: %s\n", filename, strerror(errno));
936 ret = 1;
937 }
938 // Try to fsync() only regular files and if that function is available at all (e.g. not on MinGW).
939#if defined(_POSIX_FSYNC) && (_POSIX_FSYNC != -1)
940 struct stat image_stat;
941 if (fstat(fileno(image), &image_stat) != 0) {
942 msg_gerr("Error: getting metadata of file \"%s\" failed: %s\n", filename, strerror(errno));
943 ret = 1;
944 goto out;
945 }
946 if (S_ISREG(image_stat.st_mode)) {
947 if (fsync(fileno(image))) {
948 msg_gerr("Error: fsyncing file \"%s\" failed: %s\n", filename, strerror(errno));
949 ret = 1;
950 }
951 }
952#endif
953out:
954 if (fclose(image)) {
955 msg_gerr("Error: closing file \"%s\" failed: %s\n", filename, strerror(errno));
956 ret = 1;
957 }
958 return ret;
Nico Huber7562f7d2013-08-30 21:29:45 +0000959#endif
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000960}
961
Nico Huber899e4ec2016-04-29 18:39:01 +0200962static int read_by_layout(struct flashctx *, uint8_t *);
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000963int read_flash_to_file(struct flashctx *flash, const char *filename)
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000964{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000965 unsigned long size = flash->chip->total_size * 1024;
Richard Hughes84b453e2018-12-19 15:30:39 +0000966 unsigned char *buf = calloc(size, sizeof(unsigned char));
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000967 int ret = 0;
968
969 msg_cinfo("Reading flash... ");
970 if (!buf) {
971 msg_gerr("Memory allocation failed!\n");
972 msg_cinfo("FAILED.\n");
973 return 1;
974 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000975 if (!flash->chip->read) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000976 msg_cerr("No read function available for this flash chip.\n");
977 ret = 1;
978 goto out_free;
979 }
Nico Huber899e4ec2016-04-29 18:39:01 +0200980 if (read_by_layout(flash, buf)) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000981 msg_cerr("Read operation failed!\n");
982 ret = 1;
983 goto out_free;
984 }
985
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000986 ret = write_buf_to_file(buf, size, filename);
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000987out_free:
988 free(buf);
989 msg_cinfo("%s.\n", ret ? "FAILED" : "done");
990 return ret;
991}
992
Stefan Tauner96658be2014-05-26 22:05:31 +0000993/* Even if an error is found, the function will keep going and check the rest. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000994static int selfcheck_eraseblocks(const struct flashchip *chip)
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +0000995{
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000996 int i, j, k;
997 int ret = 0;
Aarya Chaumal478e1792022-06-04 01:34:44 +0530998 unsigned int prev_eraseblock_count = chip->total_size * 1024;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +0000999
1000 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
1001 unsigned int done = 0;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001002 struct block_eraser eraser = chip->block_erasers[k];
Aarya Chaumal478e1792022-06-04 01:34:44 +05301003 unsigned int curr_eraseblock_count = 0;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001004
1005 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1006 /* Blocks with zero size are bugs in flashchips.c. */
1007 if (eraser.eraseblocks[i].count &&
1008 !eraser.eraseblocks[i].size) {
Nico Huberac90af62022-12-18 00:22:47 +00001009 msg_gerr("ERROR: Flash chip %s erase function %i region %i has size 0.\n"
1010 "Please report a bug at flashrom-stable@flashrom.org\n",
1011 chip->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001012 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001013 }
1014 /* Blocks with zero count are bugs in flashchips.c. */
1015 if (!eraser.eraseblocks[i].count &&
1016 eraser.eraseblocks[i].size) {
Nico Huberac90af62022-12-18 00:22:47 +00001017 msg_gerr("ERROR: Flash chip %s erase function %i region %i has count 0.\n"
1018 "Please report a bug at flashrom-stable@flashrom.org\n",
1019 chip->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001020 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001021 }
1022 done += eraser.eraseblocks[i].count *
1023 eraser.eraseblocks[i].size;
Aarya Chaumal478e1792022-06-04 01:34:44 +05301024 curr_eraseblock_count += eraser.eraseblocks[i].count;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001025 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001026 /* Empty eraseblock definition with erase function. */
1027 if (!done && eraser.block_erase)
Sean Nelson316a29f2010-05-07 20:09:04 +00001028 msg_gspew("Strange: Empty eraseblock definition with "
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001029 "non-empty erase function. Not an error.\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001030 if (!done)
1031 continue;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001032 if (done != chip->total_size * 1024) {
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001033 msg_gerr("ERROR: Flash chip %s erase function %i "
1034 "region walking resulted in 0x%06x bytes total,"
Nico Huberac90af62022-12-18 00:22:47 +00001035 " expected 0x%06x bytes.\n"
1036 "Please report a bug at flashrom-stable@flashrom.org\n",
1037 chip->name, k, done, chip->total_size * 1024);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001038 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001039 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001040 if (!eraser.block_erase)
1041 continue;
1042 /* Check if there are identical erase functions for different
1043 * layouts. That would imply "magic" erase functions. The
1044 * easiest way to check this is with function pointers.
1045 */
Uwe Hermann43959702010-03-13 17:28:29 +00001046 for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) {
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001047 if (eraser.block_erase ==
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001048 chip->block_erasers[j].block_erase) {
Nico Huberac90af62022-12-18 00:22:47 +00001049 msg_gerr("ERROR: Flash chip %s erase function %i and %i are identical.\n"
1050 "Please report a bug at flashrom-stable@flashrom.org\n",
1051 chip->name, k, j);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001052 ret = 1;
1053 }
Uwe Hermann43959702010-03-13 17:28:29 +00001054 }
Aarya Chaumal478e1792022-06-04 01:34:44 +05301055 if(curr_eraseblock_count > prev_eraseblock_count)
1056 {
Nico Huberac90af62022-12-18 00:22:47 +00001057 msg_gerr("ERROR: Flash chip %s erase function %i is not in order.\n"
1058 "Please report a bug at flashrom-stable@flashrom.org\n",
1059 chip->name, k);
Aarya Chaumal478e1792022-06-04 01:34:44 +05301060 ret = 1;
1061 }
1062 prev_eraseblock_count = curr_eraseblock_count;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001063 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001064 return ret;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001065}
1066
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +00001067static int check_block_eraser(const struct flashctx *flash, int k, int log)
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001068{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001069 struct block_eraser eraser = flash->chip->block_erasers[k];
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001070
1071 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
1072 if (log)
1073 msg_cdbg("not defined. ");
1074 return 1;
1075 }
1076 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
1077 if (log)
1078 msg_cdbg("eraseblock layout is known, but matching "
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001079 "block erase function is not implemented. ");
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001080 return 1;
1081 }
1082 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
1083 if (log)
1084 msg_cdbg("block erase function found, but "
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001085 "eraseblock layout is not defined. ");
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001086 return 1;
1087 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001088 // TODO: Once erase functions are annotated with allowed buses, check that as well.
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001089 return 0;
1090}
1091
Nico Huber7af0e792016-04-29 16:40:15 +02001092/**
1093 * @brief Reads the included layout regions into a buffer.
1094 *
1095 * If there is no layout set in the given flash context, the whole chip will
1096 * be read.
1097 *
1098 * @param flashctx Flash context to be used.
1099 * @param buffer Buffer of full chip size to read into.
1100 * @return 0 on success,
1101 * 1 if any read fails.
1102 */
1103static int read_by_layout(struct flashctx *const flashctx, uint8_t *const buffer)
1104{
1105 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber5ca55232019-06-15 22:29:08 +02001106 const struct romentry *entry = NULL;
Nico Huber7af0e792016-04-29 16:40:15 +02001107
Nico Huber5ca55232019-06-15 22:29:08 +02001108 while ((entry = layout_next_included(layout, entry))) {
1109 const chipoff_t region_start = entry->start;
1110 const chipsize_t region_len = entry->end - entry->start + 1;
Nico Huber7af0e792016-04-29 16:40:15 +02001111
1112 if (flashctx->chip->read(flashctx, buffer + region_start, region_start, region_len))
1113 return 1;
1114 }
1115 return 0;
1116}
1117
1118typedef int (*erasefn_t)(struct flashctx *, unsigned int addr, unsigned int len);
1119/**
1120 * @private
1121 *
1122 * For read-erase-write, `curcontents` and `newcontents` shall point
1123 * to buffers of the chip's size. Both are supposed to be prefilled
1124 * with at least the included layout regions of the current flash
1125 * contents (`curcontents`) and the data to be written to the flash
1126 * (`newcontents`).
1127 *
1128 * For erase, `curcontents` and `newcontents` shall be NULL-pointers.
1129 *
1130 * The `chipoff_t` values are used internally by `walk_by_layout()`.
1131 */
1132struct walk_info {
1133 uint8_t *curcontents;
1134 const uint8_t *newcontents;
1135 chipoff_t region_start;
1136 chipoff_t region_end;
1137 chipoff_t erase_start;
1138 chipoff_t erase_end;
1139};
1140/* returns 0 on success, 1 to retry with another erase function, 2 for immediate abort */
1141typedef int (*per_blockfn_t)(struct flashctx *, const struct walk_info *, erasefn_t);
1142
1143static int walk_eraseblocks(struct flashctx *const flashctx,
1144 struct walk_info *const info,
1145 const size_t erasefunction, const per_blockfn_t per_blockfn)
1146{
1147 int ret;
1148 size_t i, j;
1149 bool first = true;
1150 struct block_eraser *const eraser = &flashctx->chip->block_erasers[erasefunction];
1151
1152 info->erase_start = 0;
1153 for (i = 0; i < NUM_ERASEREGIONS; ++i) {
1154 /* count==0 for all automatically initialized array
1155 members so the loop below won't be executed for them. */
1156 for (j = 0; j < eraser->eraseblocks[i].count; ++j, info->erase_start = info->erase_end + 1) {
1157 info->erase_end = info->erase_start + eraser->eraseblocks[i].size - 1;
1158
1159 /* Skip any eraseblock that is completely outside the current region. */
1160 if (info->erase_end < info->region_start)
1161 continue;
1162 if (info->region_end < info->erase_start)
1163 break;
1164
1165 /* Print this for every block except the first one. */
1166 if (first)
1167 first = false;
1168 else
1169 msg_cdbg(", ");
1170 msg_cdbg("0x%06x-0x%06x:", info->erase_start, info->erase_end);
1171
1172 ret = per_blockfn(flashctx, info, eraser->block_erase);
1173 if (ret)
1174 return ret;
1175 }
1176 if (info->region_end < info->erase_start)
1177 break;
1178 }
1179 msg_cdbg("\n");
1180 return 0;
1181}
1182
1183static int walk_by_layout(struct flashctx *const flashctx, struct walk_info *const info,
1184 const per_blockfn_t per_blockfn)
1185{
1186 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber5ca55232019-06-15 22:29:08 +02001187 const struct romentry *entry = NULL;
Nico Huber7af0e792016-04-29 16:40:15 +02001188
1189 all_skipped = true;
1190 msg_cinfo("Erasing and writing flash chip... ");
1191
Nico Huber5ca55232019-06-15 22:29:08 +02001192 while ((entry = layout_next_included(layout, entry))) {
1193 info->region_start = entry->start;
1194 info->region_end = entry->end;
Nico Huber7af0e792016-04-29 16:40:15 +02001195
1196 size_t j;
1197 int error = 1; /* retry as long as it's 1 */
1198 for (j = 0; j < NUM_ERASEFUNCTIONS; ++j) {
1199 if (j != 0)
1200 msg_cinfo("Looking for another erase function.\n");
1201 msg_cdbg("Trying erase function %zi... ", j);
1202 if (check_block_eraser(flashctx, j, 1))
1203 continue;
1204
1205 error = walk_eraseblocks(flashctx, info, j, per_blockfn);
1206 if (error != 1)
1207 break;
1208
1209 if (info->curcontents) {
1210 msg_cinfo("Reading current flash chip contents... ");
1211 if (read_by_layout(flashctx, info->curcontents)) {
1212 /* Now we are truly screwed. Read failed as well. */
1213 msg_cerr("Can't read anymore! Aborting.\n");
1214 /* We have no idea about the flash chip contents, so
1215 retrying with another erase function is pointless. */
1216 error = 2;
1217 break;
1218 }
1219 msg_cinfo("done. ");
1220 }
1221 }
1222 if (error == 1)
1223 msg_cinfo("No usable erase functions left.\n");
1224 if (error) {
1225 msg_cerr("FAILED!\n");
1226 return 1;
1227 }
1228 }
1229 if (all_skipped)
1230 msg_cinfo("\nWarning: Chip content is identical to the requested image.\n");
1231 msg_cinfo("Erase/write done.\n");
1232 return 0;
1233}
1234
1235static int erase_block(struct flashctx *const flashctx,
1236 const struct walk_info *const info, const erasefn_t erasefn)
1237{
1238 const unsigned int erase_len = info->erase_end + 1 - info->erase_start;
Nico Huber6e61e0c2019-01-23 17:07:49 +01001239 const bool region_unaligned = info->region_start > info->erase_start ||
1240 info->erase_end > info->region_end;
1241 uint8_t *backup_contents = NULL, *erased_contents = NULL;
1242 int ret = 2;
Nico Huber7af0e792016-04-29 16:40:15 +02001243
Nico Huber6e61e0c2019-01-23 17:07:49 +01001244 /*
1245 * If the region is not erase-block aligned, merge current flash con-
1246 * tents into a new buffer `backup_contents`.
1247 */
1248 if (region_unaligned) {
1249 backup_contents = malloc(erase_len);
1250 erased_contents = malloc(erase_len);
1251 if (!backup_contents || !erased_contents) {
1252 msg_cerr("Out of memory!\n");
1253 ret = 1;
1254 goto _free_ret;
1255 }
1256 memset(backup_contents, ERASED_VALUE(flashctx), erase_len);
1257 memset(erased_contents, ERASED_VALUE(flashctx), erase_len);
1258
1259 msg_cdbg("R");
1260 /* Merge data preceding the current region. */
1261 if (info->region_start > info->erase_start) {
1262 const chipoff_t start = info->erase_start;
1263 const chipsize_t len = info->region_start - info->erase_start;
1264 if (flashctx->chip->read(flashctx, backup_contents, start, len)) {
1265 msg_cerr("Can't read! Aborting.\n");
1266 goto _free_ret;
1267 }
1268 }
1269 /* Merge data following the current region. */
1270 if (info->erase_end > info->region_end) {
1271 const chipoff_t start = info->region_end + 1;
1272 const chipoff_t rel_start = start - info->erase_start; /* within this erase block */
1273 const chipsize_t len = info->erase_end - info->region_end;
1274 if (flashctx->chip->read(flashctx, backup_contents + rel_start, start, len)) {
1275 msg_cerr("Can't read! Aborting.\n");
1276 goto _free_ret;
1277 }
1278 }
1279 }
1280
1281 ret = 1;
Nico Huber7af0e792016-04-29 16:40:15 +02001282 all_skipped = false;
1283
1284 msg_cdbg("E");
1285 if (erasefn(flashctx, info->erase_start, erase_len))
Nico Huber6e61e0c2019-01-23 17:07:49 +01001286 goto _free_ret;
Nico Huber7af0e792016-04-29 16:40:15 +02001287 if (check_erased_range(flashctx, info->erase_start, erase_len)) {
1288 msg_cerr("ERASE FAILED!\n");
Nico Huber6e61e0c2019-01-23 17:07:49 +01001289 goto _free_ret;
Nico Huber7af0e792016-04-29 16:40:15 +02001290 }
Nico Huber6e61e0c2019-01-23 17:07:49 +01001291
1292 if (region_unaligned) {
1293 unsigned int starthere = 0, lenhere = 0, writecount = 0;
1294 /* get_next_write() sets starthere to a new value after the call. */
1295 while ((lenhere = get_next_write(erased_contents + starthere, backup_contents + starthere,
1296 erase_len - starthere, &starthere, flashctx->chip->gran))) {
1297 if (!writecount++)
1298 msg_cdbg("W");
1299 /* Needs the partial write function signature. */
1300 if (flashctx->chip->write(flashctx, backup_contents + starthere,
1301 info->erase_start + starthere, lenhere))
1302 goto _free_ret;
1303 starthere += lenhere;
1304 }
1305 }
1306
1307 ret = 0;
1308
1309_free_ret:
1310 free(erased_contents);
1311 free(backup_contents);
1312 return ret;
Nico Huber7af0e792016-04-29 16:40:15 +02001313}
1314
1315/**
1316 * @brief Erases the included layout regions.
1317 *
1318 * If there is no layout set in the given flash context, the whole chip will
1319 * be erased.
1320 *
1321 * @param flashctx Flash context to be used.
Nico Huber7af0e792016-04-29 16:40:15 +02001322 * @return 0 on success,
1323 * 1 if all available erase functions failed.
1324 */
Nico Huber454f6132012-12-10 13:34:10 +00001325static int erase_by_layout(struct flashctx *const flashctx)
Nico Huber7af0e792016-04-29 16:40:15 +02001326{
1327 struct walk_info info = { 0 };
1328 return walk_by_layout(flashctx, &info, &erase_block);
1329}
1330
1331static int read_erase_write_block(struct flashctx *const flashctx,
1332 const struct walk_info *const info, const erasefn_t erasefn)
1333{
1334 const chipsize_t erase_len = info->erase_end + 1 - info->erase_start;
1335 const bool region_unaligned = info->region_start > info->erase_start ||
1336 info->erase_end > info->region_end;
1337 const uint8_t *newcontents = NULL;
1338 int ret = 2;
1339
1340 /*
1341 * If the region is not erase-block aligned, merge current flash con-
1342 * tents into `info->curcontents` and a new buffer `newc`. The former
1343 * is necessary since we have no guarantee that the full erase block
1344 * was already read into `info->curcontents`. For the latter a new
1345 * buffer is used since `info->newcontents` might contain data for
1346 * other unaligned regions that touch this erase block too.
1347 */
1348 if (region_unaligned) {
1349 msg_cdbg("R");
1350 uint8_t *const newc = malloc(erase_len);
1351 if (!newc) {
1352 msg_cerr("Out of memory!\n");
1353 return 1;
1354 }
1355 memcpy(newc, info->newcontents + info->erase_start, erase_len);
1356
1357 /* Merge data preceding the current region. */
1358 if (info->region_start > info->erase_start) {
1359 const chipoff_t start = info->erase_start;
1360 const chipsize_t len = info->region_start - info->erase_start;
1361 if (flashctx->chip->read(flashctx, newc, start, len)) {
1362 msg_cerr("Can't read! Aborting.\n");
1363 goto _free_ret;
1364 }
1365 memcpy(info->curcontents + start, newc, len);
1366 }
1367 /* Merge data following the current region. */
1368 if (info->erase_end > info->region_end) {
1369 const chipoff_t start = info->region_end + 1;
1370 const chipoff_t rel_start = start - info->erase_start; /* within this erase block */
1371 const chipsize_t len = info->erase_end - info->region_end;
1372 if (flashctx->chip->read(flashctx, newc + rel_start, start, len)) {
1373 msg_cerr("Can't read! Aborting.\n");
1374 goto _free_ret;
1375 }
1376 memcpy(info->curcontents + start, newc + rel_start, len);
1377 }
1378
1379 newcontents = newc;
1380 } else {
1381 newcontents = info->newcontents + info->erase_start;
1382 }
1383
1384 ret = 1;
1385 bool skipped = true;
1386 uint8_t *const curcontents = info->curcontents + info->erase_start;
Paul Kocialkowski995f7552018-01-15 01:06:09 +03001387 const uint8_t erased_value = ERASED_VALUE(flashctx);
David Hendricksf9a30552015-05-23 20:30:30 -07001388 if (!(flashctx->chip->feature_bits & FEATURE_NO_ERASE) &&
1389 need_erase(curcontents, newcontents, erase_len, flashctx->chip->gran, erased_value)) {
Nico Huber7af0e792016-04-29 16:40:15 +02001390 if (erase_block(flashctx, info, erasefn))
1391 goto _free_ret;
1392 /* Erase was successful. Adjust curcontents. */
Paul Kocialkowski995f7552018-01-15 01:06:09 +03001393 memset(curcontents, erased_value, erase_len);
Nico Huber7af0e792016-04-29 16:40:15 +02001394 skipped = false;
1395 }
1396
1397 unsigned int starthere = 0, lenhere = 0, writecount = 0;
1398 /* get_next_write() sets starthere to a new value after the call. */
1399 while ((lenhere = get_next_write(curcontents + starthere, newcontents + starthere,
1400 erase_len - starthere, &starthere, flashctx->chip->gran))) {
1401 if (!writecount++)
1402 msg_cdbg("W");
1403 /* Needs the partial write function signature. */
1404 if (flashctx->chip->write(flashctx, newcontents + starthere,
1405 info->erase_start + starthere, lenhere))
1406 goto _free_ret;
1407 starthere += lenhere;
1408 skipped = false;
1409 }
1410 if (skipped)
1411 msg_cdbg("S");
1412 else
1413 all_skipped = false;
1414
1415 /* Update curcontents, other regions with overlapping erase blocks
1416 might rely on this. */
1417 memcpy(curcontents, newcontents, erase_len);
1418 ret = 0;
1419
1420_free_ret:
1421 if (region_unaligned)
1422 free((void *)newcontents);
1423 return ret;
1424}
1425
1426/**
1427 * @brief Writes the included layout regions from a given image.
1428 *
1429 * If there is no layout set in the given flash context, the whole image
1430 * will be written.
1431 *
1432 * @param flashctx Flash context to be used.
1433 * @param curcontents A buffer of full chip size with current chip contents of included regions.
1434 * @param newcontents The new image to be written.
1435 * @return 0 on success,
1436 * 1 if anything has gone wrong.
1437 */
Nico Huber454f6132012-12-10 13:34:10 +00001438static int write_by_layout(struct flashctx *const flashctx,
1439 void *const curcontents, const void *const newcontents)
Nico Huber7af0e792016-04-29 16:40:15 +02001440{
1441 struct walk_info info;
1442 info.curcontents = curcontents;
1443 info.newcontents = newcontents;
1444 return walk_by_layout(flashctx, &info, read_erase_write_block);
1445}
1446
1447/**
1448 * @brief Compares the included layout regions with content from a buffer.
1449 *
1450 * If there is no layout set in the given flash context, the whole chip's
1451 * contents will be compared.
1452 *
1453 * @param flashctx Flash context to be used.
Nico Huber74d09d42019-06-16 03:27:26 +02001454 * @param layout Flash layout information.
Nico Huber7af0e792016-04-29 16:40:15 +02001455 * @param curcontents A buffer of full chip size to read current chip contents into.
1456 * @param newcontents The new image to compare to.
1457 * @return 0 on success,
1458 * 1 if reading failed,
1459 * 3 if the contents don't match.
1460 */
Nico Huber74d09d42019-06-16 03:27:26 +02001461static int verify_by_layout(
1462 struct flashctx *const flashctx,
1463 const struct flashrom_layout *const layout,
1464 void *const curcontents, const uint8_t *const newcontents)
Nico Huber7af0e792016-04-29 16:40:15 +02001465{
Nico Huber5ca55232019-06-15 22:29:08 +02001466 const struct romentry *entry = NULL;
Nico Huber7af0e792016-04-29 16:40:15 +02001467
Nico Huber5ca55232019-06-15 22:29:08 +02001468 while ((entry = layout_next_included(layout, entry))) {
1469 const chipoff_t region_start = entry->start;
1470 const chipsize_t region_len = entry->end - entry->start + 1;
Nico Huber7af0e792016-04-29 16:40:15 +02001471
1472 if (flashctx->chip->read(flashctx, curcontents + region_start, region_start, region_len))
1473 return 1;
1474 if (compare_range(newcontents + region_start, curcontents + region_start,
1475 region_start, region_len))
1476 return 3;
1477 }
1478 return 0;
1479}
1480
Stefan Tauner136388f2013-07-15 10:47:53 +00001481static void nonfatal_help_message(void)
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001482{
Stefan Taunera58f6e92014-05-10 09:25:44 +00001483 msg_gerr("Good, writing to the flash chip apparently didn't do anything.\n");
Stefan Tauner136388f2013-07-15 10:47:53 +00001484#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +02001485 if (programmer == &programmer_internal)
Stefan Tauner136388f2013-07-15 10:47:53 +00001486 msg_gerr("This means we have to add special support for your board, programmer or flash\n"
Nico Huberac90af62022-12-18 00:22:47 +00001487 "chip. Please report this to the mailing list at flashrom-stable@flashrom.org or\n"
1488 "on IRC (see https://www.flashrom.org/Contact for details), thanks!\n"
Stefan Tauner136388f2013-07-15 10:47:53 +00001489 "-------------------------------------------------------------------------------\n"
1490 "You may now reboot or simply leave the machine running.\n");
1491 else
1492#endif
1493 msg_gerr("Please check the connections (especially those to write protection pins) between\n"
1494 "the programmer and the flash chip. If you think the error is caused by flashrom\n"
Nico Huberac90af62022-12-18 00:22:47 +00001495 "please report this to the mailing list at flashrom-stable@flashrom.org or on IRC\n"
1496 "(see https://www.flashrom.org/Contact for details), thanks!\n");
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001497}
1498
Edward O'Callaghanc72d20a2021-12-13 12:30:03 +11001499void emergency_help_message(void)
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001500{
Stefan Tauner136388f2013-07-15 10:47:53 +00001501 msg_gerr("Your flash chip is in an unknown state.\n");
1502#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +02001503 if (programmer == &programmer_internal)
Angel Pons1900e1d2021-07-02 12:42:23 +02001504 msg_gerr("Get help on IRC (see https://www.flashrom.org/Contact) or mail\n"
Nico Huberac90af62022-12-18 00:22:47 +00001505 "flashrom-stable@flashrom.org with the subject \"FAILED: <your board name>\"!\n"
Stefan Tauner136388f2013-07-15 10:47:53 +00001506 "-------------------------------------------------------------------------------\n"
1507 "DO NOT REBOOT OR POWEROFF!\n");
1508 else
1509#endif
Nico Huberac90af62022-12-18 00:22:47 +00001510 msg_gerr("Please report this to the mailing list at flashrom-stable@flashrom.org\n"
1511 "or on IRC (see https://www.flashrom.org/Contact for details), thanks!\n");
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001512}
1513
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001514void list_programmers_linebreak(int startcol, int cols, int paren)
1515{
1516 const char *pname;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001517 int pnamelen;
1518 int remaining = 0, firstline = 1;
Thomas Heijligen9163b812021-06-01 14:25:01 +02001519 size_t p;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001520 int i;
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001521
Thomas Heijligend45cb592021-05-19 14:12:18 +02001522 for (p = 0; p < programmer_table_size; p++) {
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001523 pname = programmer_table[p]->name;
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001524 pnamelen = strlen(pname);
1525 if (remaining - pnamelen - 2 < 0) {
1526 if (firstline)
1527 firstline = 0;
1528 else
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001529 msg_ginfo("\n");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001530 for (i = 0; i < startcol; i++)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001531 msg_ginfo(" ");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001532 remaining = cols - startcol;
1533 } else {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001534 msg_ginfo(" ");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001535 remaining--;
1536 }
1537 if (paren && (p == 0)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001538 msg_ginfo("(");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001539 remaining--;
1540 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001541 msg_ginfo("%s", pname);
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001542 remaining -= pnamelen;
Thomas Heijligend45cb592021-05-19 14:12:18 +02001543 if (p < programmer_table_size - 1) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001544 msg_ginfo(",");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001545 remaining--;
1546 } else {
1547 if (paren)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001548 msg_ginfo(")");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001549 }
1550 }
1551}
1552
Jacob Garberbeeb8bc2019-06-21 15:24:17 -06001553static void print_sysinfo(void)
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001554{
Stefan Taunerb0eee9b2015-01-10 09:32:50 +00001555#if IS_WINDOWS
Angel Pons7e134562021-06-07 13:29:13 +02001556 SYSTEM_INFO si = { 0 };
1557 OSVERSIONINFOEX osvi = { 0 };
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001558
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +00001559 msg_ginfo(" on Windows");
1560 /* Tell Windows which version of the structure we want. */
1561 osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
1562 if (GetVersionEx((OSVERSIONINFO*) &osvi))
1563 msg_ginfo(" %lu.%lu", osvi.dwMajorVersion, osvi.dwMinorVersion);
1564 else
1565 msg_ginfo(" unknown version");
1566 GetSystemInfo(&si);
1567 switch (si.wProcessorArchitecture) {
1568 case PROCESSOR_ARCHITECTURE_AMD64:
1569 msg_ginfo(" (x86_64)");
1570 break;
1571 case PROCESSOR_ARCHITECTURE_INTEL:
1572 msg_ginfo(" (x86)");
1573 break;
1574 default:
1575 msg_ginfo(" (unknown arch)");
1576 break;
1577 }
1578#elif HAVE_UTSNAME == 1
1579 struct utsname osinfo;
1580
1581 uname(&osinfo);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001582 msg_ginfo(" on %s %s (%s)", osinfo.sysname, osinfo.release,
1583 osinfo.machine);
1584#else
1585 msg_ginfo(" on unknown machine");
1586#endif
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001587}
1588
1589void print_buildinfo(void)
1590{
1591 msg_gdbg("flashrom was built with");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001592#if NEED_PCI == 1
1593#ifdef PCILIB_VERSION
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001594 msg_gdbg(" libpci %s,", PCILIB_VERSION);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001595#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001596 msg_gdbg(" unknown PCI library,");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001597#endif
1598#endif
1599#ifdef __clang__
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001600 msg_gdbg(" LLVM Clang");
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001601#ifdef __clang_version__
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001602 msg_gdbg(" %s,", __clang_version__);
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001603#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001604 msg_gdbg(" unknown version (before r102686),");
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001605#endif
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001606#elif defined(__GNUC__)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001607 msg_gdbg(" GCC");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001608#ifdef __VERSION__
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001609 msg_gdbg(" %s,", __VERSION__);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001610#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001611 msg_gdbg(" unknown version,");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001612#endif
1613#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001614 msg_gdbg(" unknown compiler,");
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001615#endif
1616#if defined (__FLASHROM_LITTLE_ENDIAN__)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001617 msg_gdbg(" little endian");
Carl-Daniel Hailfinger06b9efa2012-08-07 11:59:59 +00001618#elif defined (__FLASHROM_BIG_ENDIAN__)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001619 msg_gdbg(" big endian");
Carl-Daniel Hailfinger06b9efa2012-08-07 11:59:59 +00001620#else
1621#error Endianness could not be determined
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001622#endif
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001623 msg_gdbg("\n");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001624}
1625
Bernhard Walle201bde32008-01-21 15:24:22 +00001626void print_version(void)
1627{
Nico Huberac90af62022-12-18 00:22:47 +00001628 msg_ginfo("flashrom-stable %s", flashrom_version);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001629 print_sysinfo();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001630 msg_ginfo("\n");
Bernhard Walle201bde32008-01-21 15:24:22 +00001631}
1632
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001633void print_banner(void)
1634{
1635 msg_ginfo("flashrom is free software, get the source code at "
Stefan Tauner4c723152016-01-14 22:47:55 +00001636 "https://flashrom.org\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001637 msg_ginfo("\n");
1638}
1639
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001640int selfcheck(void)
1641{
Stefan Tauner96658be2014-05-26 22:05:31 +00001642 unsigned int i;
Stefan Taunera6d96482012-12-26 19:51:23 +00001643 int ret = 0;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001644
Thomas Heijligend45cb592021-05-19 14:12:18 +02001645 for (i = 0; i < programmer_table_size; i++) {
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001646 const struct programmer_entry *const p = programmer_table[i];
1647 if (p == NULL) {
1648 msg_gerr("Programmer with index %d is NULL instead of a valid pointer!\n", i);
1649 ret = 1;
1650 continue;
1651 }
1652 if (p->name == NULL) {
Stefan Taunera6d96482012-12-26 19:51:23 +00001653 msg_gerr("All programmers need a valid name, but the one with index %d does not!\n", i);
1654 ret = 1;
1655 /* This might hide other problems with this programmer, but allows for better error
1656 * messages below without jumping through hoops. */
1657 continue;
1658 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001659 switch (p->type) {
Stefan Tauneraf358d62012-12-27 18:40:26 +00001660 case USB:
1661 case PCI:
1662 case OTHER:
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001663 if (p->devs.note == NULL) {
1664 if (strcmp("internal", p->name) == 0)
Stefan Tauneraf358d62012-12-27 18:40:26 +00001665 break; /* This one has its device list stored separately. */
1666 msg_gerr("Programmer %s has neither a device list nor a textual description!\n",
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001667 p->name);
Stefan Tauneraf358d62012-12-27 18:40:26 +00001668 ret = 1;
1669 }
1670 break;
1671 default:
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001672 msg_gerr("Programmer %s does not have a valid type set!\n", p->name);
Stefan Tauneraf358d62012-12-27 18:40:26 +00001673 ret = 1;
1674 break;
1675 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001676 if (p->init == NULL) {
1677 msg_gerr("Programmer %s does not have a valid init function!\n", p->name);
Stefan Taunera6d96482012-12-26 19:51:23 +00001678 ret = 1;
1679 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001680 if (p->delay == NULL) {
1681 msg_gerr("Programmer %s does not have a valid delay function!\n", p->name);
Stefan Taunera6d96482012-12-26 19:51:23 +00001682 ret = 1;
1683 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001684 if (p->map_flash_region == NULL) {
1685 msg_gerr("Programmer %s does not have a valid map_flash_region function!\n", p->name);
Stefan Taunera6d96482012-12-26 19:51:23 +00001686 ret = 1;
1687 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001688 if (p->unmap_flash_region == NULL) {
1689 msg_gerr("Programmer %s does not have a valid unmap_flash_region function!\n", p->name);
Stefan Taunera6d96482012-12-26 19:51:23 +00001690 ret = 1;
1691 }
1692 }
Stefan Tauner96658be2014-05-26 22:05:31 +00001693
1694 /* It would be favorable if we could check for the correct layout (especially termination) of various
1695 * constant arrays: flashchips, chipset_enables, board_matches, boards_known, laptops_known.
1696 * They are all defined as externs in this compilation unit so we don't know their sizes which vary
1697 * depending on compiler flags, e.g. the target architecture, and can sometimes be 0.
1698 * For 'flashchips' we export the size explicitly to work around this and to be able to implement the
1699 * checks below. */
Stefan Tauner6697f712014-08-06 15:09:15 +00001700 if (flashchips_size <= 1 || flashchips[flashchips_size - 1].name != NULL) {
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001701 msg_gerr("Flashchips table miscompilation!\n");
1702 ret = 1;
Stefan Tauner96658be2014-05-26 22:05:31 +00001703 } else {
1704 for (i = 0; i < flashchips_size - 1; i++) {
1705 const struct flashchip *chip = &flashchips[i];
1706 if (chip->vendor == NULL || chip->name == NULL || chip->bustype == BUS_NONE) {
1707 ret = 1;
1708 msg_gerr("ERROR: Some field of flash chip #%d (%s) is misconfigured.\n"
Nico Huberac90af62022-12-18 00:22:47 +00001709 "Please report a bug at flashrom-stable@flashrom.org\n", i,
Stefan Tauner96658be2014-05-26 22:05:31 +00001710 chip->name == NULL ? "unnamed" : chip->name);
1711 }
1712 if (selfcheck_eraseblocks(chip)) {
1713 ret = 1;
1714 }
1715 }
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001716 }
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001717
Stefan Tauner600576b2014-06-12 22:57:36 +00001718#if CONFIG_INTERNAL == 1
1719 ret |= selfcheck_board_enables();
1720#endif
1721
Stefan Tauner96658be2014-05-26 22:05:31 +00001722 /* TODO: implement similar sanity checks for other arrays where deemed necessary. */
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001723 return ret;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001724}
1725
Edward O'Callaghanacb24d42021-04-15 13:44:39 +10001726/* FIXME: This function signature needs to be improved once prepare_flash_access()
1727 * has a better function signature.
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001728 */
Jacob Garberbeeb8bc2019-06-21 15:24:17 -06001729static int chip_safety_check(const struct flashctx *flash, int force,
1730 int read_it, int write_it, int erase_it, int verify_it)
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001731{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001732 const struct flashchip *chip = flash->chip;
1733
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001734 if (!programmer_may_write && (write_it || erase_it)) {
1735 msg_perr("Write/erase is not working yet on your programmer in "
1736 "its current configuration.\n");
1737 /* --force is the wrong approach, but it's the best we can do
1738 * until the generic programmer parameter parser is merged.
1739 */
1740 if (!force)
1741 return 1;
1742 msg_cerr("Continuing anyway.\n");
1743 }
1744
1745 if (read_it || erase_it || write_it || verify_it) {
1746 /* Everything needs read. */
Stefan Tauner6455dff2014-05-26 00:36:24 +00001747 if (chip->tested.read == BAD) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001748 msg_cerr("Read is not working on this chip. ");
1749 if (!force)
1750 return 1;
1751 msg_cerr("Continuing anyway.\n");
1752 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001753 if (!chip->read) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001754 msg_cerr("flashrom has no read function for this "
1755 "flash chip.\n");
1756 return 1;
1757 }
1758 }
1759 if (erase_it || write_it) {
1760 /* Write needs erase. */
Stefan Tauner6455dff2014-05-26 00:36:24 +00001761 if (chip->tested.erase == NA) {
1762 msg_cerr("Erase is not possible on this chip.\n");
1763 return 1;
1764 }
1765 if (chip->tested.erase == BAD) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001766 msg_cerr("Erase is not working on this chip. ");
1767 if (!force)
1768 return 1;
1769 msg_cerr("Continuing anyway.\n");
1770 }
Sylvain "ythier" Hitier9db45512011-07-04 07:27:17 +00001771 if(count_usable_erasers(flash) == 0) {
Stefan Tauner5368dca2011-07-01 00:19:12 +00001772 msg_cerr("flashrom has no erase function for this "
1773 "flash chip.\n");
1774 return 1;
1775 }
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001776 }
1777 if (write_it) {
Stefan Tauner6455dff2014-05-26 00:36:24 +00001778 if (chip->tested.write == NA) {
1779 msg_cerr("Write is not possible on this chip.\n");
1780 return 1;
1781 }
1782 if (chip->tested.write == BAD) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001783 msg_cerr("Write is not working on this chip. ");
1784 if (!force)
1785 return 1;
1786 msg_cerr("Continuing anyway.\n");
1787 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001788 if (!chip->write) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001789 msg_cerr("flashrom has no write function for this "
1790 "flash chip.\n");
1791 return 1;
1792 }
1793 }
1794 return 0;
1795}
1796
Nico Huber305f4172013-06-14 11:55:26 +02001797int prepare_flash_access(struct flashctx *const flash,
1798 const bool read_it, const bool write_it,
1799 const bool erase_it, const bool verify_it)
Nico Huber454f6132012-12-10 13:34:10 +00001800{
1801 if (chip_safety_check(flash, flash->flags.force, read_it, write_it, erase_it, verify_it)) {
1802 msg_cerr("Aborting.\n");
1803 return 1;
1804 }
1805
Nico Hubere0ed4122021-05-14 00:48:28 +02001806 if (layout_sanity_checks(flash)) {
Nico Huber454f6132012-12-10 13:34:10 +00001807 msg_cerr("Requested regions can not be handled. Aborting.\n");
1808 return 1;
1809 }
1810
1811 if (map_flash(flash) != 0)
1812 return 1;
1813
Nikolai Artemiev4ad48642020-11-05 13:54:27 +11001814 /* Initialize chip_restore_fn_count before chip unlock calls. */
1815 flash->chip_restore_fn_count = 0;
1816
Nico Huber454f6132012-12-10 13:34:10 +00001817 /* Given the existence of read locks, we want to unlock for read,
1818 erase and write. */
1819 if (flash->chip->unlock)
1820 flash->chip->unlock(flash);
1821
Nico Huberf43c6542017-10-14 17:47:28 +02001822 flash->address_high_byte = -1;
1823 flash->in_4ba_mode = false;
1824
Nico Huberdc5af542018-12-22 16:54:59 +01001825 /* Be careful about 4BA chips and broken masters */
1826 if (flash->chip->total_size > 16 * 1024 && spi_master_no_4ba_modes(flash)) {
1827 /* If we can't use native instructions, bail out */
1828 if ((flash->chip->feature_bits & FEATURE_4BA_NATIVE) != FEATURE_4BA_NATIVE
1829 || !spi_master_4ba(flash)) {
1830 msg_cerr("Programmer doesn't support this chip. Aborting.\n");
1831 return 1;
1832 }
1833 }
1834
Ed Swierkcc20a9b2017-07-03 13:17:18 -07001835 /* Enable/disable 4-byte addressing mode if flash chip supports it */
Nico Huber86bddb52018-03-13 18:14:52 +01001836 if (flash->chip->feature_bits & (FEATURE_4BA_ENTER | FEATURE_4BA_ENTER_WREN | FEATURE_4BA_ENTER_EAR7)) {
Nico Huberfe34d2a2017-11-10 21:10:20 +01001837 int ret;
1838 if (spi_master_4ba(flash))
1839 ret = spi_enter_4ba(flash);
1840 else
1841 ret = spi_exit_4ba(flash);
1842 if (ret) {
1843 msg_cerr("Failed to set correct 4BA mode! Aborting.\n");
Ed Swierkcc20a9b2017-07-03 13:17:18 -07001844 return 1;
Boris Baykov7fe85692016-06-11 18:29:03 +02001845 }
Boris Baykov99127182016-06-11 18:29:00 +02001846 }
1847
Nico Huber454f6132012-12-10 13:34:10 +00001848 return 0;
1849}
1850
Nico Huber305f4172013-06-14 11:55:26 +02001851void finalize_flash_access(struct flashctx *const flash)
Nico Huber454f6132012-12-10 13:34:10 +00001852{
Nikolai Artemiev4ad48642020-11-05 13:54:27 +11001853 deregister_chip_restore(flash);
Nico Huber454f6132012-12-10 13:34:10 +00001854 unmap_flash(flash);
1855}
1856
1857/**
1858 * @addtogroup flashrom-flash
1859 * @{
1860 */
1861
1862/**
1863 * @brief Erase the specified ROM chip.
1864 *
1865 * If a layout is set in the given flash context, only included regions
1866 * will be erased.
1867 *
1868 * @param flashctx The context of the flash chip to erase.
1869 * @return 0 on success.
1870 */
1871int flashrom_flash_erase(struct flashctx *const flashctx)
1872{
1873 if (prepare_flash_access(flashctx, false, false, true, false))
1874 return 1;
1875
1876 const int ret = erase_by_layout(flashctx);
1877
1878 finalize_flash_access(flashctx);
1879
1880 return ret;
1881}
1882
1883/** @} */ /* end flashrom-flash */
1884
1885/**
1886 * @defgroup flashrom-ops Operations
1887 * @{
1888 */
1889
1890/**
1891 * @brief Read the current image from the specified ROM chip.
1892 *
1893 * If a layout is set in the specified flash context, only included regions
1894 * will be read.
1895 *
1896 * @param flashctx The context of the flash chip.
1897 * @param buffer Target buffer to write image to.
1898 * @param buffer_len Size of target buffer in bytes.
1899 * @return 0 on success,
1900 * 2 if buffer_len is too short for the flash chip's contents,
1901 * or 1 on any other failure.
1902 */
1903int flashrom_image_read(struct flashctx *const flashctx, void *const buffer, const size_t buffer_len)
1904{
1905 const size_t flash_size = flashctx->chip->total_size * 1024;
1906
1907 if (flash_size > buffer_len)
1908 return 2;
1909
1910 if (prepare_flash_access(flashctx, true, false, false, false))
1911 return 1;
1912
1913 msg_cinfo("Reading flash... ");
1914
1915 int ret = 1;
1916 if (read_by_layout(flashctx, buffer)) {
1917 msg_cerr("Read operation failed!\n");
1918 msg_cinfo("FAILED.\n");
1919 goto _finalize_ret;
1920 }
1921 msg_cinfo("done.\n");
1922 ret = 0;
1923
1924_finalize_ret:
1925 finalize_flash_access(flashctx);
1926 return ret;
1927}
1928
1929static void combine_image_by_layout(const struct flashctx *const flashctx,
1930 uint8_t *const newcontents, const uint8_t *const oldcontents)
1931{
1932 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber3d7b1e32018-12-22 00:53:14 +01001933 const struct romentry *included;
1934 chipoff_t start = 0;
Nico Huber454f6132012-12-10 13:34:10 +00001935
Nico Huber3d7b1e32018-12-22 00:53:14 +01001936 while ((included = layout_next_included_region(layout, start))) {
1937 if (included->start > start) {
1938 /* copy everything up to the start of this included region */
1939 memcpy(newcontents + start, oldcontents + start, included->start - start);
1940 }
1941 /* skip this included region */
1942 start = included->end + 1;
1943 if (start == 0)
1944 return;
Nico Huber454f6132012-12-10 13:34:10 +00001945 }
Nico Huber3d7b1e32018-12-22 00:53:14 +01001946
1947 /* copy the rest of the chip */
1948 const chipsize_t copy_len = flashctx->chip->total_size * 1024 - start;
1949 memcpy(newcontents + start, oldcontents + start, copy_len);
Nico Huber454f6132012-12-10 13:34:10 +00001950}
1951
1952/**
1953 * @brief Write the specified image to the ROM chip.
1954 *
1955 * If a layout is set in the specified flash context, only erase blocks
1956 * containing included regions will be touched.
1957 *
1958 * @param flashctx The context of the flash chip.
Nico Huber1b172f22017-06-19 12:35:24 +02001959 * @param buffer Source buffer to read image from (may be altered for full verification).
Nico Huber454f6132012-12-10 13:34:10 +00001960 * @param buffer_len Size of source buffer in bytes.
Paul Kocialkowskif701f342018-01-15 01:10:36 +03001961 * @param refbuffer If given, assume flash chip contains same data as `refbuffer`.
Nico Huber454f6132012-12-10 13:34:10 +00001962 * @return 0 on success,
1963 * 4 if buffer_len doesn't match the size of the flash chip,
1964 * 3 if write was tried but nothing has changed,
1965 * 2 if write failed and flash contents changed,
1966 * or 1 on any other failure.
1967 */
Paul Kocialkowskif701f342018-01-15 01:10:36 +03001968int flashrom_image_write(struct flashctx *const flashctx, void *const buffer, const size_t buffer_len,
1969 const void *const refbuffer)
Nico Huber454f6132012-12-10 13:34:10 +00001970{
1971 const size_t flash_size = flashctx->chip->total_size * 1024;
1972 const bool verify_all = flashctx->flags.verify_whole_chip;
1973 const bool verify = flashctx->flags.verify_after_write;
Nico Huber74d09d42019-06-16 03:27:26 +02001974 const struct flashrom_layout *const verify_layout =
1975 verify_all ? get_default_layout(flashctx) : get_layout(flashctx);
Nico Huber454f6132012-12-10 13:34:10 +00001976
1977 if (buffer_len != flash_size)
1978 return 4;
1979
1980 int ret = 1;
1981
1982 uint8_t *const newcontents = buffer;
Paul Kocialkowskif701f342018-01-15 01:10:36 +03001983 const uint8_t *const refcontents = refbuffer;
Nico Huber454f6132012-12-10 13:34:10 +00001984 uint8_t *const curcontents = malloc(flash_size);
1985 uint8_t *oldcontents = NULL;
1986 if (verify_all)
1987 oldcontents = malloc(flash_size);
1988 if (!curcontents || (verify_all && !oldcontents)) {
1989 msg_gerr("Out of memory!\n");
1990 goto _free_ret;
1991 }
1992
1993#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +02001994 if (programmer == &programmer_internal && cb_check_image(newcontents, flash_size) < 0) {
Nico Huber454f6132012-12-10 13:34:10 +00001995 if (flashctx->flags.force_boardmismatch) {
1996 msg_pinfo("Proceeding anyway because user forced us to.\n");
1997 } else {
1998 msg_perr("Aborting. You can override this with "
1999 "-p internal:boardmismatch=force.\n");
2000 goto _free_ret;
2001 }
2002 }
2003#endif
2004
2005 if (prepare_flash_access(flashctx, false, true, false, verify))
2006 goto _free_ret;
2007
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002008 /* If given, assume flash chip contains same data as `refcontents`. */
2009 if (refcontents) {
2010 msg_cinfo("Assuming old flash chip contents as ref-file...\n");
2011 memcpy(curcontents, refcontents, flash_size);
2012 if (oldcontents)
2013 memcpy(oldcontents, refcontents, flash_size);
Nico Huber454f6132012-12-10 13:34:10 +00002014 } else {
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002015 /*
2016 * Read the whole chip to be able to check whether regions need to be
2017 * erased and to give better diagnostics in case write fails.
2018 * The alternative is to read only the regions which are to be
2019 * preserved, but in that case we might perform unneeded erase which
2020 * takes time as well.
2021 */
2022 msg_cinfo("Reading old flash chip contents... ");
2023 if (verify_all) {
2024 if (flashctx->chip->read(flashctx, oldcontents, 0, flash_size)) {
2025 msg_cinfo("FAILED.\n");
2026 goto _finalize_ret;
2027 }
2028 memcpy(curcontents, oldcontents, flash_size);
2029 } else {
2030 if (read_by_layout(flashctx, curcontents)) {
2031 msg_cinfo("FAILED.\n");
2032 goto _finalize_ret;
2033 }
Nico Huber454f6132012-12-10 13:34:10 +00002034 }
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002035 msg_cinfo("done.\n");
Nico Huber454f6132012-12-10 13:34:10 +00002036 }
Nico Huber454f6132012-12-10 13:34:10 +00002037
2038 if (write_by_layout(flashctx, curcontents, newcontents)) {
2039 msg_cerr("Uh oh. Erase/write failed. ");
2040 ret = 2;
2041 if (verify_all) {
2042 msg_cerr("Checking if anything has changed.\n");
2043 msg_cinfo("Reading current flash chip contents... ");
2044 if (!flashctx->chip->read(flashctx, curcontents, 0, flash_size)) {
2045 msg_cinfo("done.\n");
2046 if (!memcmp(oldcontents, curcontents, flash_size)) {
2047 nonfatal_help_message();
2048 goto _finalize_ret;
2049 }
2050 msg_cerr("Apparently at least some data has changed.\n");
2051 } else
2052 msg_cerr("Can't even read anymore!\n");
2053 emergency_help_message();
2054 goto _finalize_ret;
2055 } else {
2056 msg_cerr("\n");
2057 }
2058 emergency_help_message();
2059 goto _finalize_ret;
2060 }
2061
2062 /* Verify only if we actually changed something. */
2063 if (verify && !all_skipped) {
Nico Huber454f6132012-12-10 13:34:10 +00002064 msg_cinfo("Verifying flash... ");
2065
2066 /* Work around chips which need some time to calm down. */
2067 programmer_delay(1000*1000);
2068
Nico Huber74d09d42019-06-16 03:27:26 +02002069 if (verify_all)
Nico Huber454f6132012-12-10 13:34:10 +00002070 combine_image_by_layout(flashctx, newcontents, oldcontents);
Nico Huber74d09d42019-06-16 03:27:26 +02002071 ret = verify_by_layout(flashctx, verify_layout, curcontents, newcontents);
Nico Huber454f6132012-12-10 13:34:10 +00002072 /* If we tried to write, and verification now fails, we
2073 might have an emergency situation. */
2074 if (ret)
2075 emergency_help_message();
2076 else
2077 msg_cinfo("VERIFIED.\n");
2078 } else {
2079 /* We didn't change anything. */
2080 ret = 0;
2081 }
2082
2083_finalize_ret:
2084 finalize_flash_access(flashctx);
2085_free_ret:
2086 free(oldcontents);
2087 free(curcontents);
2088 return ret;
2089}
2090
2091/**
2092 * @brief Verify the ROM chip's contents with the specified image.
2093 *
2094 * If a layout is set in the specified flash context, only included regions
2095 * will be verified.
2096 *
2097 * @param flashctx The context of the flash chip.
2098 * @param buffer Source buffer to verify with.
2099 * @param buffer_len Size of source buffer in bytes.
2100 * @return 0 on success,
2101 * 3 if the chip's contents don't match,
2102 * 2 if buffer_len doesn't match the size of the flash chip,
2103 * or 1 on any other failure.
2104 */
2105int flashrom_image_verify(struct flashctx *const flashctx, const void *const buffer, const size_t buffer_len)
2106{
Nico Huber74d09d42019-06-16 03:27:26 +02002107 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber454f6132012-12-10 13:34:10 +00002108 const size_t flash_size = flashctx->chip->total_size * 1024;
2109
2110 if (buffer_len != flash_size)
2111 return 2;
2112
2113 const uint8_t *const newcontents = buffer;
2114 uint8_t *const curcontents = malloc(flash_size);
2115 if (!curcontents) {
2116 msg_gerr("Out of memory!\n");
2117 return 1;
2118 }
2119
2120 int ret = 1;
2121
2122 if (prepare_flash_access(flashctx, false, false, false, true))
2123 goto _free_ret;
2124
2125 msg_cinfo("Verifying flash... ");
Nico Huber74d09d42019-06-16 03:27:26 +02002126 ret = verify_by_layout(flashctx, layout, curcontents, newcontents);
Nico Huber454f6132012-12-10 13:34:10 +00002127 if (!ret)
2128 msg_cinfo("VERIFIED.\n");
2129
2130 finalize_flash_access(flashctx);
2131_free_ret:
2132 free(curcontents);
2133 return ret;
2134}
2135
2136/** @} */ /* end flashrom-ops */