blob: 2fb42fbc6f5e271e901438df7d214da17b07c7f0 [file] [log] [blame]
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00003 *
Uwe Hermannd22a1d42007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp <yhlu@tyan.com>
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +00006 * Copyright (C) 2005-2008 coresystems GmbH
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007 * Copyright (C) 2008,2009 Carl-Daniel Hailfinger
Nico Huber7af0e792016-04-29 16:40:15 +02008 * Copyright (C) 2016 secunet Security Networks AG
9 * (Written by Nico Huber <nico.huber@secunet.com> for secunet)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000010 *
Uwe Hermannd1107642007-08-29 17:52:32 +000011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000015 *
Uwe Hermannd1107642007-08-29 17:52:32 +000016 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000020 */
21
Felix Singerf25447e2022-08-19 02:44:28 +020022#include <stdbool.h>
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000023#include <stdio.h>
Stefan Reinauer018aca82006-11-21 23:48:51 +000024#include <sys/types.h>
Patrick Georgia9095a92010-09-30 17:03:32 +000025#ifndef __LIBPAYLOAD__
26#include <fcntl.h>
Stefan Reinauer018aca82006-11-21 23:48:51 +000027#include <sys/stat.h>
Patrick Georgia9095a92010-09-30 17:03:32 +000028#endif
Ronald G. Minnichceec4202003-07-25 04:37:41 +000029#include <string.h>
Stefan Tauner16687702015-12-25 21:59:45 +000030#include <unistd.h>
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000031#include <stdlib.h>
Stefan Tauner363fd7e2013-04-07 13:08:30 +000032#include <errno.h>
Carl-Daniel Hailfingerc2441382010-11-09 22:00:31 +000033#include <ctype.h>
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +000034#if HAVE_UTSNAME == 1
35#include <sys/utsname.h>
36#endif
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000037#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000038#include "flashchips.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000039#include "programmer.h"
Carl-Daniel Hailfinger06b9efa2012-08-07 11:59:59 +000040#include "hwaccess.h"
Nico Huberfe34d2a2017-11-10 21:10:20 +010041#include "chipdrivers.h"
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000042
Mathias Krausea60faab2011-01-17 07:50:42 +000043const char flashrom_version[] = FLASHROM_VERSION;
Nico Huberbcb2e5a2012-12-30 01:23:17 +000044const char *chip_to_probe = NULL;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000045
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +020046static const struct programmer_entry *programmer = NULL;
Nico Huber6a2ebeb2022-08-26 11:36:48 +020047static char *programmer_param = NULL;
Stefan Reinauer70385642007-04-06 11:58:03 +000048
Uwe Hermann48ec1b12010-08-08 17:01:18 +000049/*
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000050 * Programmers supporting multiple buses can have differing size limits on
51 * each bus. Store the limits for each bus in a common struct.
52 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000053struct decode_sizes max_rom_decode;
54
55/* If nonzero, used as the start address of bottom-aligned flash. */
56unsigned long flashbase;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000057
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +000058/* Is writing allowed with this programmer? */
Felix Singer980d6b82022-08-19 02:48:15 +020059bool programmer_may_write;
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +000060
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +000061#define SHUTDOWN_MAXFN 32
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000062static int shutdown_fn_count = 0;
Nico Huber454f6132012-12-10 13:34:10 +000063/** @private */
Richard Hughes93e16252018-12-19 11:54:47 +000064static struct shutdown_func_data {
David Hendricks8bb20212011-06-14 01:35:36 +000065 int (*func) (void *data);
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000066 void *data;
Richard Hughes93e16252018-12-19 11:54:47 +000067} shutdown_fn[SHUTDOWN_MAXFN];
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000068/* Initialize to 0 to make sure nobody registers a shutdown function before
69 * programmer init.
70 */
Felix Singerf25447e2022-08-19 02:44:28 +020071static bool may_register_shutdown = false;
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000072
Stefan Taunerc4f44df2013-08-12 22:58:43 +000073/* Did we change something or was every erase/write skipped (if any)? */
74static bool all_skipped = true;
75
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000076static int check_block_eraser(const struct flashctx *flash, int k, int log);
Stefan Tauner5368dca2011-07-01 00:19:12 +000077
Stefan Tauner2a1ed772014-08-31 00:09:21 +000078int shutdown_free(void *data)
79{
80 free(data);
81 return 0;
82}
83
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000084/* Register a function to be executed on programmer shutdown.
85 * The advantage over atexit() is that you can supply a void pointer which will
86 * be used as parameter to the registered function upon programmer shutdown.
87 * This pointer can point to arbitrary data used by said function, e.g. undo
88 * information for GPIO settings etc. If unneeded, set data=NULL.
89 * Please note that the first (void *data) belongs to the function signature of
90 * the function passed as first parameter.
91 */
David Hendricks8bb20212011-06-14 01:35:36 +000092int register_shutdown(int (*function) (void *data), void *data)
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000093{
94 if (shutdown_fn_count >= SHUTDOWN_MAXFN) {
Carl-Daniel Hailfinger9f5f2152010-06-04 23:20:21 +000095 msg_perr("Tried to register more than %i shutdown functions.\n",
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +000096 SHUTDOWN_MAXFN);
97 return 1;
98 }
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000099 if (!may_register_shutdown) {
100 msg_perr("Tried to register a shutdown function before "
101 "programmer init.\n");
102 return 1;
103 }
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000104 shutdown_fn[shutdown_fn_count].func = function;
105 shutdown_fn[shutdown_fn_count].data = data;
106 shutdown_fn_count++;
107
108 return 0;
109}
110
Nikolai Artemiev4ad48642020-11-05 13:54:27 +1100111int register_chip_restore(chip_restore_fn_cb_t func,
112 struct flashctx *flash, uint8_t status)
113{
114 if (flash->chip_restore_fn_count >= MAX_CHIP_RESTORE_FUNCTIONS) {
115 msg_perr("Tried to register more than %i chip restore"
116 " functions.\n", MAX_CHIP_RESTORE_FUNCTIONS);
117 return 1;
118 }
119 flash->chip_restore_fn[flash->chip_restore_fn_count].func = func;
120 flash->chip_restore_fn[flash->chip_restore_fn_count].status = status;
121 flash->chip_restore_fn_count++;
122
123 return 0;
124}
125
126static int deregister_chip_restore(struct flashctx *flash)
127{
128 int rc = 0;
129
130 while (flash->chip_restore_fn_count > 0) {
131 int i = --flash->chip_restore_fn_count;
132 rc |= flash->chip_restore_fn[i].func(
133 flash, flash->chip_restore_fn[i].status);
134 }
135
136 return rc;
137}
138
Thomas Heijligene0e93cf2021-06-01 14:37:12 +0200139int programmer_init(const struct programmer_entry *prog, const char *param)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000140{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000141 int ret;
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000142
Thomas Heijligene0e93cf2021-06-01 14:37:12 +0200143 if (prog == NULL) {
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000144 msg_perr("Invalid programmer specified!\n");
145 return -1;
146 }
Thomas Heijligene0e93cf2021-06-01 14:37:12 +0200147 programmer = prog;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000148 /* Initialize all programmer specific data. */
149 /* Default to unlimited decode sizes. */
150 max_rom_decode = (const struct decode_sizes) {
151 .parallel = 0xffffffff,
152 .lpc = 0xffffffff,
153 .fwh = 0xffffffff,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000154 .spi = 0xffffffff,
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000155 };
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000156 /* Default to top aligned flash at 4 GB. */
157 flashbase = 0;
158 /* Registering shutdown functions is now allowed. */
Felix Singerf25447e2022-08-19 02:44:28 +0200159 may_register_shutdown = true;
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +0000160 /* Default to allowing writes. Broken programmers set this to 0. */
Felix Singer980d6b82022-08-19 02:48:15 +0200161 programmer_may_write = true;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000162
Nico Huber6a2ebeb2022-08-26 11:36:48 +0200163 if (param) {
164 programmer_param = strdup(param);
165 if (!programmer_param) {
166 msg_perr("Out of memory!\n");
167 return ERROR_FATAL;
168 }
169 } else {
170 programmer_param = NULL;
171 }
172
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200173 msg_pdbg("Initializing %s programmer\n", programmer->name);
174 ret = programmer->init();
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000175 if (programmer_param && strlen(programmer_param)) {
Carl-Daniel Hailfinger20a36ba2013-08-13 07:09:57 +0000176 if (ret != 0) {
177 /* It is quite possible that any unhandled programmer parameter would have been valid,
178 * but an error in actual programmer init happened before the parameter was evaluated.
179 */
180 msg_pwarn("Unhandled programmer parameters (possibly due to another failure): %s\n",
181 programmer_param);
182 } else {
183 /* Actual programmer init was successful, but the user specified an invalid or unusable
184 * (for the current programmer configuration) parameter.
185 */
186 msg_perr("Unhandled programmer parameters: %s\n", programmer_param);
187 msg_perr("Aborting.\n");
188 ret = ERROR_FATAL;
189 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000190 }
Nico Huber6a2ebeb2022-08-26 11:36:48 +0200191 free(programmer_param);
192 programmer_param = NULL;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000193 return ret;
Uwe Hermann09e04f72009-05-16 22:36:00 +0000194}
195
Stefan Tauner20da4aa2014-05-07 22:07:23 +0000196/** Calls registered shutdown functions and resets internal programmer-related variables.
197 * Calling it is safe even without previous initialization, but further interactions with programmer support
198 * require a call to programmer_init() (afterwards).
199 *
200 * @return The OR-ed result values of all shutdown functions (i.e. 0 on success). */
Uwe Hermann09e04f72009-05-16 22:36:00 +0000201int programmer_shutdown(void)
202{
David Hendricks8bb20212011-06-14 01:35:36 +0000203 int ret = 0;
204
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000205 /* Registering shutdown functions is no longer allowed. */
Felix Singerf25447e2022-08-19 02:44:28 +0200206 may_register_shutdown = false;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000207 while (shutdown_fn_count > 0) {
208 int i = --shutdown_fn_count;
David Hendricks8bb20212011-06-14 01:35:36 +0000209 ret |= shutdown_fn[i].func(shutdown_fn[i].data);
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000210 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000211 registered_master_count = 0;
Stefan Taunere34e3e82013-01-01 00:06:51 +0000212
David Hendricks8bb20212011-06-14 01:35:36 +0000213 return ret;
Uwe Hermann09e04f72009-05-16 22:36:00 +0000214}
215
Stefan Tauner305e0b92013-07-17 23:46:44 +0000216void *programmer_map_flash_region(const char *descr, uintptr_t phys_addr, size_t len)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000217{
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200218 void *ret = programmer->map_flash_region(descr, phys_addr, len);
Stefan Tauner26e7a152013-09-13 17:21:05 +0000219 msg_gspew("%s: mapping %s from 0x%0*" PRIxPTR " to 0x%0*" PRIxPTR "\n",
220 __func__, descr, PRIxPTR_WIDTH, phys_addr, PRIxPTR_WIDTH, (uintptr_t) ret);
221 return ret;
Uwe Hermann09e04f72009-05-16 22:36:00 +0000222}
223
224void programmer_unmap_flash_region(void *virt_addr, size_t len)
225{
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200226 programmer->unmap_flash_region(virt_addr, len);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000227 msg_gspew("%s: unmapped 0x%0*" PRIxPTR "\n", __func__, PRIxPTR_WIDTH, (uintptr_t)virt_addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000228}
229
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000230void chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000231{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000232 flash->mst->par.chip_writeb(flash, val, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000233}
234
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000235void chip_writew(const struct flashctx *flash, uint16_t val, chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000236{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000237 flash->mst->par.chip_writew(flash, val, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000238}
239
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000240void chip_writel(const struct flashctx *flash, uint32_t val, chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000241{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000242 flash->mst->par.chip_writel(flash, val, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000243}
244
Mark Marshallf20b7be2014-05-09 21:16:21 +0000245void chip_writen(const struct flashctx *flash, const uint8_t *buf, chipaddr addr, size_t len)
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000246{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000247 flash->mst->par.chip_writen(flash, buf, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000248}
249
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000250uint8_t chip_readb(const struct flashctx *flash, const chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000251{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000252 return flash->mst->par.chip_readb(flash, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000253}
254
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000255uint16_t chip_readw(const struct flashctx *flash, const chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000256{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000257 return flash->mst->par.chip_readw(flash, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000258}
259
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000260uint32_t chip_readl(const struct flashctx *flash, const chipaddr addr)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000261{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000262 return flash->mst->par.chip_readl(flash, addr);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000263}
264
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000265void chip_readn(const struct flashctx *flash, uint8_t *buf, chipaddr addr,
266 size_t len)
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000267{
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000268 flash->mst->par.chip_readn(flash, buf, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000269}
270
Stefan Taunerf80419c2014-05-02 15:41:42 +0000271void programmer_delay(unsigned int usecs)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000272{
Urja Rannikko8d7ec2a2013-10-21 21:49:08 +0000273 if (usecs > 0)
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200274 programmer->delay(usecs);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000275}
276
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000277int read_memmapped(struct flashctx *flash, uint8_t *buf, unsigned int start,
278 int unsigned len)
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000279{
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000280 chip_readn(flash, buf, flash->virtual_memory + start, len);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000281
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000282 return 0;
283}
284
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000285/* This is a somewhat hacked function similar in some ways to strtok().
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000286 * It will look for needle with a subsequent '=' in haystack, return a copy of
287 * needle and remove everything from the first occurrence of needle to the next
288 * delimiter from haystack.
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000289 */
Nico Huber6a2ebeb2022-08-26 11:36:48 +0200290static char *extract_param(char *const *haystack, const char *needle, const char *delim)
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000291{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000292 char *param_pos, *opt_pos, *rest;
293 char *opt = NULL;
294 int optlen;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000295 int needlelen;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000296
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000297 needlelen = strlen(needle);
298 if (!needlelen) {
299 msg_gerr("%s: empty needle! Please report a bug at "
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 Huber7af0e792016-04-29 16:40:15 +0200834 /* Fill fallback layout covering the whole chip. */
835 struct single_layout *const fallback = &flash->fallback_layout;
836 fallback->base.entries = &fallback->entry;
837 fallback->base.num_entries = 1;
838 fallback->entry.start = 0;
839 fallback->entry.end = flash->chip->total_size * 1024 - 1;
840 fallback->entry.included = true;
Nico Huber70461a92019-06-15 14:56:19 +0200841 fallback->entry.name = strdup("complete flash");
842 if (!fallback->entry.name) {
843 msg_cerr("Failed to probe chip: %s\n", strerror(errno));
844 return -1;
845 }
Stefan Reinauer051e2362011-01-19 06:21:54 +0000846
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000847 tmp = flashbuses_to_text(flash->chip->bustype);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000848 msg_cinfo("%s %s flash chip \"%s\" (%d kB, %s) ", force ? "Assuming" : "Found",
849 flash->chip->vendor, flash->chip->name, flash->chip->total_size, tmp);
Stefan Tauner00155492011-06-26 20:45:35 +0000850 free(tmp);
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000851#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200852 if (programmer->map_flash_region == physmap)
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000853 msg_cinfo("mapped at physical address 0x%0*" PRIxPTR ".\n",
854 PRIxPTR_WIDTH, flash->physical_memory);
855 else
856#endif
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +0200857 msg_cinfo("on %s.\n", programmer->name);
Uwe Hermann9899cad2009-06-28 21:47:57 +0000858
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000859 /* Flash registers may more likely not be mapped if the chip was forced.
860 * Lock info may be stored in registers, so avoid lock info printing. */
Carl-Daniel Hailfinger859f3f02010-12-02 21:59:42 +0000861 if (!force)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000862 if (flash->chip->printlock)
863 flash->chip->printlock(flash);
Sean Nelson6e0b9122010-02-19 00:52:10 +0000864
Stefan Tauner4e32ec12014-08-30 23:39:51 +0000865 /* Get out of the way for later runs. */
866 unmap_flash(flash);
867
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +0000868 /* Return position of matching chip. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000869 return chip - flashchips;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000870}
871
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000872int read_buf_from_file(unsigned char *buf, unsigned long size,
873 const char *filename)
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000874{
Nico Huber7562f7d2013-08-30 21:29:45 +0000875#ifdef __LIBPAYLOAD__
876 msg_gerr("Error: No file I/O support in libpayload\n");
877 return 1;
878#else
Stefan Tauner16687702015-12-25 21:59:45 +0000879 int ret = 0;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000880
Stefan Tauner16687702015-12-25 21:59:45 +0000881 FILE *image;
Daniel Campello8eaef7d2021-04-15 10:36:04 -0600882 if (!strcmp(filename, "-"))
883 image = fdopen(fileno(stdin), "rb");
884 else
885 image = fopen(filename, "rb");
886 if (image == NULL) {
Stefan Tauner363fd7e2013-04-07 13:08:30 +0000887 msg_gerr("Error: opening file \"%s\" failed: %s\n", filename, strerror(errno));
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000888 return 1;
889 }
Stefan Tauner16687702015-12-25 21:59:45 +0000890
891 struct stat image_stat;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000892 if (fstat(fileno(image), &image_stat) != 0) {
Stefan Tauner363fd7e2013-04-07 13:08:30 +0000893 msg_gerr("Error: getting metadata of file \"%s\" failed: %s\n", filename, strerror(errno));
Stefan Tauner16687702015-12-25 21:59:45 +0000894 ret = 1;
895 goto out;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000896 }
Daniel Campello8eaef7d2021-04-15 10:36:04 -0600897 if ((image_stat.st_size != (intmax_t)size) && strcmp(filename, "-")) {
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000898 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 +0000899 (intmax_t)image_stat.st_size, size);
Stefan Tauner16687702015-12-25 21:59:45 +0000900 ret = 1;
901 goto out;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000902 }
Stefan Tauner16687702015-12-25 21:59:45 +0000903
904 unsigned long numbytes = fread(buf, 1, size, image);
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000905 if (numbytes != size) {
906 msg_gerr("Error: Failed to read complete file. Got %ld bytes, "
907 "wanted %ld!\n", numbytes, size);
Stefan Tauner16687702015-12-25 21:59:45 +0000908 ret = 1;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000909 }
Stefan Tauner16687702015-12-25 21:59:45 +0000910out:
911 (void)fclose(image);
912 return ret;
Nico Huber7562f7d2013-08-30 21:29:45 +0000913#endif
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +0000914}
915
Mark Marshallf20b7be2014-05-09 21:16:21 +0000916int write_buf_to_file(const unsigned char *buf, unsigned long size, const char *filename)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000917{
Nico Huber7562f7d2013-08-30 21:29:45 +0000918#ifdef __LIBPAYLOAD__
919 msg_gerr("Error: No file I/O support in libpayload\n");
920 return 1;
921#else
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000922 FILE *image;
Stefan Tauner16687702015-12-25 21:59:45 +0000923 int ret = 0;
Stephan Guilloux21dd55b2009-06-01 22:07:52 +0000924
925 if (!filename) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000926 msg_gerr("No filename specified.\n");
Stephan Guilloux21dd55b2009-06-01 22:07:52 +0000927 return 1;
928 }
Patrick Georgi0bf842d2010-01-25 22:55:33 +0000929 if ((image = fopen(filename, "wb")) == NULL) {
Stefan Tauner363fd7e2013-04-07 13:08:30 +0000930 msg_gerr("Error: opening file \"%s\" failed: %s\n", filename, strerror(errno));
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000931 return 1;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000932 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000933
Stefan Tauner16687702015-12-25 21:59:45 +0000934 unsigned long numbytes = fwrite(buf, 1, size, image);
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000935 if (numbytes != size) {
Stefan Tauner16687702015-12-25 21:59:45 +0000936 msg_gerr("Error: file %s could not be written completely.\n", filename);
937 ret = 1;
938 goto out;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000939 }
Stefan Tauner16687702015-12-25 21:59:45 +0000940 if (fflush(image)) {
941 msg_gerr("Error: flushing file \"%s\" failed: %s\n", filename, strerror(errno));
942 ret = 1;
943 }
944 // Try to fsync() only regular files and if that function is available at all (e.g. not on MinGW).
945#if defined(_POSIX_FSYNC) && (_POSIX_FSYNC != -1)
946 struct stat image_stat;
947 if (fstat(fileno(image), &image_stat) != 0) {
948 msg_gerr("Error: getting metadata of file \"%s\" failed: %s\n", filename, strerror(errno));
949 ret = 1;
950 goto out;
951 }
952 if (S_ISREG(image_stat.st_mode)) {
953 if (fsync(fileno(image))) {
954 msg_gerr("Error: fsyncing file \"%s\" failed: %s\n", filename, strerror(errno));
955 ret = 1;
956 }
957 }
958#endif
959out:
960 if (fclose(image)) {
961 msg_gerr("Error: closing file \"%s\" failed: %s\n", filename, strerror(errno));
962 ret = 1;
963 }
964 return ret;
Nico Huber7562f7d2013-08-30 21:29:45 +0000965#endif
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000966}
967
Nico Huber899e4ec2016-04-29 18:39:01 +0200968static int read_by_layout(struct flashctx *, uint8_t *);
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000969int read_flash_to_file(struct flashctx *flash, const char *filename)
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000970{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000971 unsigned long size = flash->chip->total_size * 1024;
Richard Hughes84b453e2018-12-19 15:30:39 +0000972 unsigned char *buf = calloc(size, sizeof(unsigned char));
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000973 int ret = 0;
974
975 msg_cinfo("Reading flash... ");
976 if (!buf) {
977 msg_gerr("Memory allocation failed!\n");
978 msg_cinfo("FAILED.\n");
979 return 1;
980 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000981 if (!flash->chip->read) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000982 msg_cerr("No read function available for this flash chip.\n");
983 ret = 1;
984 goto out_free;
985 }
Nico Huber899e4ec2016-04-29 18:39:01 +0200986 if (read_by_layout(flash, buf)) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000987 msg_cerr("Read operation failed!\n");
988 ret = 1;
989 goto out_free;
990 }
991
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000992 ret = write_buf_to_file(buf, size, filename);
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +0000993out_free:
994 free(buf);
995 msg_cinfo("%s.\n", ret ? "FAILED" : "done");
996 return ret;
997}
998
Stefan Tauner96658be2014-05-26 22:05:31 +0000999/* Even if an error is found, the function will keep going and check the rest. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001000static int selfcheck_eraseblocks(const struct flashchip *chip)
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001001{
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001002 int i, j, k;
1003 int ret = 0;
Aarya Chaumal478e1792022-06-04 01:34:44 +05301004 unsigned int prev_eraseblock_count = chip->total_size * 1024;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001005
1006 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
1007 unsigned int done = 0;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001008 struct block_eraser eraser = chip->block_erasers[k];
Aarya Chaumal478e1792022-06-04 01:34:44 +05301009 unsigned int curr_eraseblock_count = 0;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001010
1011 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1012 /* Blocks with zero size are bugs in flashchips.c. */
1013 if (eraser.eraseblocks[i].count &&
1014 !eraser.eraseblocks[i].size) {
Nico Huberac90af62022-12-18 00:22:47 +00001015 msg_gerr("ERROR: Flash chip %s erase function %i region %i has size 0.\n"
1016 "Please report a bug at flashrom-stable@flashrom.org\n",
1017 chip->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001018 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001019 }
1020 /* Blocks with zero count are bugs in flashchips.c. */
1021 if (!eraser.eraseblocks[i].count &&
1022 eraser.eraseblocks[i].size) {
Nico Huberac90af62022-12-18 00:22:47 +00001023 msg_gerr("ERROR: Flash chip %s erase function %i region %i has count 0.\n"
1024 "Please report a bug at flashrom-stable@flashrom.org\n",
1025 chip->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001026 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001027 }
1028 done += eraser.eraseblocks[i].count *
1029 eraser.eraseblocks[i].size;
Aarya Chaumal478e1792022-06-04 01:34:44 +05301030 curr_eraseblock_count += eraser.eraseblocks[i].count;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001031 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001032 /* Empty eraseblock definition with erase function. */
1033 if (!done && eraser.block_erase)
Sean Nelson316a29f2010-05-07 20:09:04 +00001034 msg_gspew("Strange: Empty eraseblock definition with "
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001035 "non-empty erase function. Not an error.\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001036 if (!done)
1037 continue;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001038 if (done != chip->total_size * 1024) {
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001039 msg_gerr("ERROR: Flash chip %s erase function %i "
1040 "region walking resulted in 0x%06x bytes total,"
Nico Huberac90af62022-12-18 00:22:47 +00001041 " expected 0x%06x bytes.\n"
1042 "Please report a bug at flashrom-stable@flashrom.org\n",
1043 chip->name, k, done, chip->total_size * 1024);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001044 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001045 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001046 if (!eraser.block_erase)
1047 continue;
1048 /* Check if there are identical erase functions for different
1049 * layouts. That would imply "magic" erase functions. The
1050 * easiest way to check this is with function pointers.
1051 */
Uwe Hermann43959702010-03-13 17:28:29 +00001052 for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) {
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001053 if (eraser.block_erase ==
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001054 chip->block_erasers[j].block_erase) {
Nico Huberac90af62022-12-18 00:22:47 +00001055 msg_gerr("ERROR: Flash chip %s erase function %i and %i are identical.\n"
1056 "Please report a bug at flashrom-stable@flashrom.org\n",
1057 chip->name, k, j);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001058 ret = 1;
1059 }
Uwe Hermann43959702010-03-13 17:28:29 +00001060 }
Aarya Chaumal478e1792022-06-04 01:34:44 +05301061 if(curr_eraseblock_count > prev_eraseblock_count)
1062 {
Nico Huberac90af62022-12-18 00:22:47 +00001063 msg_gerr("ERROR: Flash chip %s erase function %i is not in order.\n"
1064 "Please report a bug at flashrom-stable@flashrom.org\n",
1065 chip->name, k);
Aarya Chaumal478e1792022-06-04 01:34:44 +05301066 ret = 1;
1067 }
1068 prev_eraseblock_count = curr_eraseblock_count;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001069 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001070 return ret;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001071}
1072
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +00001073static int check_block_eraser(const struct flashctx *flash, int k, int log)
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001074{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001075 struct block_eraser eraser = flash->chip->block_erasers[k];
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001076
1077 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
1078 if (log)
1079 msg_cdbg("not defined. ");
1080 return 1;
1081 }
1082 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
1083 if (log)
1084 msg_cdbg("eraseblock layout is known, but matching "
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001085 "block erase function is not implemented. ");
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001086 return 1;
1087 }
1088 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
1089 if (log)
1090 msg_cdbg("block erase function found, but "
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001091 "eraseblock layout is not defined. ");
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001092 return 1;
1093 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001094 // TODO: Once erase functions are annotated with allowed buses, check that as well.
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001095 return 0;
1096}
1097
Nico Huber7af0e792016-04-29 16:40:15 +02001098/**
1099 * @brief Reads the included layout regions into a buffer.
1100 *
1101 * If there is no layout set in the given flash context, the whole chip will
1102 * be read.
1103 *
1104 * @param flashctx Flash context to be used.
1105 * @param buffer Buffer of full chip size to read into.
1106 * @return 0 on success,
1107 * 1 if any read fails.
1108 */
1109static int read_by_layout(struct flashctx *const flashctx, uint8_t *const buffer)
1110{
1111 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber5ca55232019-06-15 22:29:08 +02001112 const struct romentry *entry = NULL;
Nico Huber7af0e792016-04-29 16:40:15 +02001113
Nico Huber5ca55232019-06-15 22:29:08 +02001114 while ((entry = layout_next_included(layout, entry))) {
1115 const chipoff_t region_start = entry->start;
1116 const chipsize_t region_len = entry->end - entry->start + 1;
Nico Huber7af0e792016-04-29 16:40:15 +02001117
1118 if (flashctx->chip->read(flashctx, buffer + region_start, region_start, region_len))
1119 return 1;
1120 }
1121 return 0;
1122}
1123
1124typedef int (*erasefn_t)(struct flashctx *, unsigned int addr, unsigned int len);
1125/**
1126 * @private
1127 *
1128 * For read-erase-write, `curcontents` and `newcontents` shall point
1129 * to buffers of the chip's size. Both are supposed to be prefilled
1130 * with at least the included layout regions of the current flash
1131 * contents (`curcontents`) and the data to be written to the flash
1132 * (`newcontents`).
1133 *
1134 * For erase, `curcontents` and `newcontents` shall be NULL-pointers.
1135 *
1136 * The `chipoff_t` values are used internally by `walk_by_layout()`.
1137 */
1138struct walk_info {
1139 uint8_t *curcontents;
1140 const uint8_t *newcontents;
1141 chipoff_t region_start;
1142 chipoff_t region_end;
1143 chipoff_t erase_start;
1144 chipoff_t erase_end;
1145};
1146/* returns 0 on success, 1 to retry with another erase function, 2 for immediate abort */
1147typedef int (*per_blockfn_t)(struct flashctx *, const struct walk_info *, erasefn_t);
1148
1149static int walk_eraseblocks(struct flashctx *const flashctx,
1150 struct walk_info *const info,
1151 const size_t erasefunction, const per_blockfn_t per_blockfn)
1152{
1153 int ret;
1154 size_t i, j;
1155 bool first = true;
1156 struct block_eraser *const eraser = &flashctx->chip->block_erasers[erasefunction];
1157
1158 info->erase_start = 0;
1159 for (i = 0; i < NUM_ERASEREGIONS; ++i) {
1160 /* count==0 for all automatically initialized array
1161 members so the loop below won't be executed for them. */
1162 for (j = 0; j < eraser->eraseblocks[i].count; ++j, info->erase_start = info->erase_end + 1) {
1163 info->erase_end = info->erase_start + eraser->eraseblocks[i].size - 1;
1164
1165 /* Skip any eraseblock that is completely outside the current region. */
1166 if (info->erase_end < info->region_start)
1167 continue;
1168 if (info->region_end < info->erase_start)
1169 break;
1170
1171 /* Print this for every block except the first one. */
1172 if (first)
1173 first = false;
1174 else
1175 msg_cdbg(", ");
1176 msg_cdbg("0x%06x-0x%06x:", info->erase_start, info->erase_end);
1177
1178 ret = per_blockfn(flashctx, info, eraser->block_erase);
1179 if (ret)
1180 return ret;
1181 }
1182 if (info->region_end < info->erase_start)
1183 break;
1184 }
1185 msg_cdbg("\n");
1186 return 0;
1187}
1188
1189static int walk_by_layout(struct flashctx *const flashctx, struct walk_info *const info,
1190 const per_blockfn_t per_blockfn)
1191{
1192 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber5ca55232019-06-15 22:29:08 +02001193 const struct romentry *entry = NULL;
Nico Huber7af0e792016-04-29 16:40:15 +02001194
1195 all_skipped = true;
1196 msg_cinfo("Erasing and writing flash chip... ");
1197
Nico Huber5ca55232019-06-15 22:29:08 +02001198 while ((entry = layout_next_included(layout, entry))) {
1199 info->region_start = entry->start;
1200 info->region_end = entry->end;
Nico Huber7af0e792016-04-29 16:40:15 +02001201
1202 size_t j;
1203 int error = 1; /* retry as long as it's 1 */
1204 for (j = 0; j < NUM_ERASEFUNCTIONS; ++j) {
1205 if (j != 0)
1206 msg_cinfo("Looking for another erase function.\n");
1207 msg_cdbg("Trying erase function %zi... ", j);
1208 if (check_block_eraser(flashctx, j, 1))
1209 continue;
1210
1211 error = walk_eraseblocks(flashctx, info, j, per_blockfn);
1212 if (error != 1)
1213 break;
1214
1215 if (info->curcontents) {
1216 msg_cinfo("Reading current flash chip contents... ");
1217 if (read_by_layout(flashctx, info->curcontents)) {
1218 /* Now we are truly screwed. Read failed as well. */
1219 msg_cerr("Can't read anymore! Aborting.\n");
1220 /* We have no idea about the flash chip contents, so
1221 retrying with another erase function is pointless. */
1222 error = 2;
1223 break;
1224 }
1225 msg_cinfo("done. ");
1226 }
1227 }
1228 if (error == 1)
1229 msg_cinfo("No usable erase functions left.\n");
1230 if (error) {
1231 msg_cerr("FAILED!\n");
1232 return 1;
1233 }
1234 }
1235 if (all_skipped)
1236 msg_cinfo("\nWarning: Chip content is identical to the requested image.\n");
1237 msg_cinfo("Erase/write done.\n");
1238 return 0;
1239}
1240
1241static int erase_block(struct flashctx *const flashctx,
1242 const struct walk_info *const info, const erasefn_t erasefn)
1243{
1244 const unsigned int erase_len = info->erase_end + 1 - info->erase_start;
Nico Huber6e61e0c2019-01-23 17:07:49 +01001245 const bool region_unaligned = info->region_start > info->erase_start ||
1246 info->erase_end > info->region_end;
1247 uint8_t *backup_contents = NULL, *erased_contents = NULL;
1248 int ret = 2;
Nico Huber7af0e792016-04-29 16:40:15 +02001249
Nico Huber6e61e0c2019-01-23 17:07:49 +01001250 /*
1251 * If the region is not erase-block aligned, merge current flash con-
1252 * tents into a new buffer `backup_contents`.
1253 */
1254 if (region_unaligned) {
1255 backup_contents = malloc(erase_len);
1256 erased_contents = malloc(erase_len);
1257 if (!backup_contents || !erased_contents) {
1258 msg_cerr("Out of memory!\n");
1259 ret = 1;
1260 goto _free_ret;
1261 }
1262 memset(backup_contents, ERASED_VALUE(flashctx), erase_len);
1263 memset(erased_contents, ERASED_VALUE(flashctx), erase_len);
1264
1265 msg_cdbg("R");
1266 /* Merge data preceding the current region. */
1267 if (info->region_start > info->erase_start) {
1268 const chipoff_t start = info->erase_start;
1269 const chipsize_t len = info->region_start - info->erase_start;
1270 if (flashctx->chip->read(flashctx, backup_contents, start, len)) {
1271 msg_cerr("Can't read! Aborting.\n");
1272 goto _free_ret;
1273 }
1274 }
1275 /* Merge data following the current region. */
1276 if (info->erase_end > info->region_end) {
1277 const chipoff_t start = info->region_end + 1;
1278 const chipoff_t rel_start = start - info->erase_start; /* within this erase block */
1279 const chipsize_t len = info->erase_end - info->region_end;
1280 if (flashctx->chip->read(flashctx, backup_contents + rel_start, start, len)) {
1281 msg_cerr("Can't read! Aborting.\n");
1282 goto _free_ret;
1283 }
1284 }
1285 }
1286
1287 ret = 1;
Nico Huber7af0e792016-04-29 16:40:15 +02001288 all_skipped = false;
1289
1290 msg_cdbg("E");
1291 if (erasefn(flashctx, info->erase_start, erase_len))
Nico Huber6e61e0c2019-01-23 17:07:49 +01001292 goto _free_ret;
Nico Huber7af0e792016-04-29 16:40:15 +02001293 if (check_erased_range(flashctx, info->erase_start, erase_len)) {
1294 msg_cerr("ERASE FAILED!\n");
Nico Huber6e61e0c2019-01-23 17:07:49 +01001295 goto _free_ret;
Nico Huber7af0e792016-04-29 16:40:15 +02001296 }
Nico Huber6e61e0c2019-01-23 17:07:49 +01001297
1298 if (region_unaligned) {
1299 unsigned int starthere = 0, lenhere = 0, writecount = 0;
1300 /* get_next_write() sets starthere to a new value after the call. */
1301 while ((lenhere = get_next_write(erased_contents + starthere, backup_contents + starthere,
1302 erase_len - starthere, &starthere, flashctx->chip->gran))) {
1303 if (!writecount++)
1304 msg_cdbg("W");
1305 /* Needs the partial write function signature. */
1306 if (flashctx->chip->write(flashctx, backup_contents + starthere,
1307 info->erase_start + starthere, lenhere))
1308 goto _free_ret;
1309 starthere += lenhere;
1310 }
1311 }
1312
1313 ret = 0;
1314
1315_free_ret:
1316 free(erased_contents);
1317 free(backup_contents);
1318 return ret;
Nico Huber7af0e792016-04-29 16:40:15 +02001319}
1320
1321/**
1322 * @brief Erases the included layout regions.
1323 *
1324 * If there is no layout set in the given flash context, the whole chip will
1325 * be erased.
1326 *
1327 * @param flashctx Flash context to be used.
Nico Huber7af0e792016-04-29 16:40:15 +02001328 * @return 0 on success,
1329 * 1 if all available erase functions failed.
1330 */
Nico Huber454f6132012-12-10 13:34:10 +00001331static int erase_by_layout(struct flashctx *const flashctx)
Nico Huber7af0e792016-04-29 16:40:15 +02001332{
1333 struct walk_info info = { 0 };
1334 return walk_by_layout(flashctx, &info, &erase_block);
1335}
1336
1337static int read_erase_write_block(struct flashctx *const flashctx,
1338 const struct walk_info *const info, const erasefn_t erasefn)
1339{
1340 const chipsize_t erase_len = info->erase_end + 1 - info->erase_start;
1341 const bool region_unaligned = info->region_start > info->erase_start ||
1342 info->erase_end > info->region_end;
1343 const uint8_t *newcontents = NULL;
1344 int ret = 2;
1345
1346 /*
1347 * If the region is not erase-block aligned, merge current flash con-
1348 * tents into `info->curcontents` and a new buffer `newc`. The former
1349 * is necessary since we have no guarantee that the full erase block
1350 * was already read into `info->curcontents`. For the latter a new
1351 * buffer is used since `info->newcontents` might contain data for
1352 * other unaligned regions that touch this erase block too.
1353 */
1354 if (region_unaligned) {
1355 msg_cdbg("R");
1356 uint8_t *const newc = malloc(erase_len);
1357 if (!newc) {
1358 msg_cerr("Out of memory!\n");
1359 return 1;
1360 }
1361 memcpy(newc, info->newcontents + info->erase_start, erase_len);
1362
1363 /* Merge data preceding the current region. */
1364 if (info->region_start > info->erase_start) {
1365 const chipoff_t start = info->erase_start;
1366 const chipsize_t len = info->region_start - info->erase_start;
1367 if (flashctx->chip->read(flashctx, newc, start, len)) {
1368 msg_cerr("Can't read! Aborting.\n");
1369 goto _free_ret;
1370 }
1371 memcpy(info->curcontents + start, newc, len);
1372 }
1373 /* Merge data following the current region. */
1374 if (info->erase_end > info->region_end) {
1375 const chipoff_t start = info->region_end + 1;
1376 const chipoff_t rel_start = start - info->erase_start; /* within this erase block */
1377 const chipsize_t len = info->erase_end - info->region_end;
1378 if (flashctx->chip->read(flashctx, newc + rel_start, start, len)) {
1379 msg_cerr("Can't read! Aborting.\n");
1380 goto _free_ret;
1381 }
1382 memcpy(info->curcontents + start, newc + rel_start, len);
1383 }
1384
1385 newcontents = newc;
1386 } else {
1387 newcontents = info->newcontents + info->erase_start;
1388 }
1389
1390 ret = 1;
1391 bool skipped = true;
1392 uint8_t *const curcontents = info->curcontents + info->erase_start;
Paul Kocialkowski995f7552018-01-15 01:06:09 +03001393 const uint8_t erased_value = ERASED_VALUE(flashctx);
David Hendricksf9a30552015-05-23 20:30:30 -07001394 if (!(flashctx->chip->feature_bits & FEATURE_NO_ERASE) &&
1395 need_erase(curcontents, newcontents, erase_len, flashctx->chip->gran, erased_value)) {
Nico Huber7af0e792016-04-29 16:40:15 +02001396 if (erase_block(flashctx, info, erasefn))
1397 goto _free_ret;
1398 /* Erase was successful. Adjust curcontents. */
Paul Kocialkowski995f7552018-01-15 01:06:09 +03001399 memset(curcontents, erased_value, erase_len);
Nico Huber7af0e792016-04-29 16:40:15 +02001400 skipped = false;
1401 }
1402
1403 unsigned int starthere = 0, lenhere = 0, writecount = 0;
1404 /* get_next_write() sets starthere to a new value after the call. */
1405 while ((lenhere = get_next_write(curcontents + starthere, newcontents + starthere,
1406 erase_len - starthere, &starthere, flashctx->chip->gran))) {
1407 if (!writecount++)
1408 msg_cdbg("W");
1409 /* Needs the partial write function signature. */
1410 if (flashctx->chip->write(flashctx, newcontents + starthere,
1411 info->erase_start + starthere, lenhere))
1412 goto _free_ret;
1413 starthere += lenhere;
1414 skipped = false;
1415 }
1416 if (skipped)
1417 msg_cdbg("S");
1418 else
1419 all_skipped = false;
1420
1421 /* Update curcontents, other regions with overlapping erase blocks
1422 might rely on this. */
1423 memcpy(curcontents, newcontents, erase_len);
1424 ret = 0;
1425
1426_free_ret:
1427 if (region_unaligned)
1428 free((void *)newcontents);
1429 return ret;
1430}
1431
1432/**
1433 * @brief Writes the included layout regions from a given image.
1434 *
1435 * If there is no layout set in the given flash context, the whole image
1436 * will be written.
1437 *
1438 * @param flashctx Flash context to be used.
1439 * @param curcontents A buffer of full chip size with current chip contents of included regions.
1440 * @param newcontents The new image to be written.
1441 * @return 0 on success,
1442 * 1 if anything has gone wrong.
1443 */
Nico Huber454f6132012-12-10 13:34:10 +00001444static int write_by_layout(struct flashctx *const flashctx,
1445 void *const curcontents, const void *const newcontents)
Nico Huber7af0e792016-04-29 16:40:15 +02001446{
1447 struct walk_info info;
1448 info.curcontents = curcontents;
1449 info.newcontents = newcontents;
1450 return walk_by_layout(flashctx, &info, read_erase_write_block);
1451}
1452
1453/**
1454 * @brief Compares the included layout regions with content from a buffer.
1455 *
1456 * If there is no layout set in the given flash context, the whole chip's
1457 * contents will be compared.
1458 *
1459 * @param flashctx Flash context to be used.
1460 * @param curcontents A buffer of full chip size to read current chip contents into.
1461 * @param newcontents The new image to compare to.
1462 * @return 0 on success,
1463 * 1 if reading failed,
1464 * 3 if the contents don't match.
1465 */
Nico Huber454f6132012-12-10 13:34:10 +00001466static int verify_by_layout(struct flashctx *const flashctx,
1467 void *const curcontents, const uint8_t *const newcontents)
Nico Huber7af0e792016-04-29 16:40:15 +02001468{
1469 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber5ca55232019-06-15 22:29:08 +02001470 const struct romentry *entry = NULL;
Nico Huber7af0e792016-04-29 16:40:15 +02001471
Nico Huber5ca55232019-06-15 22:29:08 +02001472 while ((entry = layout_next_included(layout, entry))) {
1473 const chipoff_t region_start = entry->start;
1474 const chipsize_t region_len = entry->end - entry->start + 1;
Nico Huber7af0e792016-04-29 16:40:15 +02001475
1476 if (flashctx->chip->read(flashctx, curcontents + region_start, region_start, region_len))
1477 return 1;
1478 if (compare_range(newcontents + region_start, curcontents + region_start,
1479 region_start, region_len))
1480 return 3;
1481 }
1482 return 0;
1483}
1484
Stefan Tauner136388f2013-07-15 10:47:53 +00001485static void nonfatal_help_message(void)
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001486{
Stefan Taunera58f6e92014-05-10 09:25:44 +00001487 msg_gerr("Good, writing to the flash chip apparently didn't do anything.\n");
Stefan Tauner136388f2013-07-15 10:47:53 +00001488#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +02001489 if (programmer == &programmer_internal)
Stefan Tauner136388f2013-07-15 10:47:53 +00001490 msg_gerr("This means we have to add special support for your board, programmer or flash\n"
Nico Huberac90af62022-12-18 00:22:47 +00001491 "chip. Please report this to the mailing list at flashrom-stable@flashrom.org or\n"
1492 "on IRC (see https://www.flashrom.org/Contact for details), thanks!\n"
Stefan Tauner136388f2013-07-15 10:47:53 +00001493 "-------------------------------------------------------------------------------\n"
1494 "You may now reboot or simply leave the machine running.\n");
1495 else
1496#endif
1497 msg_gerr("Please check the connections (especially those to write protection pins) between\n"
1498 "the programmer and the flash chip. If you think the error is caused by flashrom\n"
Nico Huberac90af62022-12-18 00:22:47 +00001499 "please report this to the mailing list at flashrom-stable@flashrom.org or on IRC\n"
1500 "(see https://www.flashrom.org/Contact for details), thanks!\n");
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001501}
1502
Stefan Tauner136388f2013-07-15 10:47:53 +00001503static void emergency_help_message(void)
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001504{
Stefan Tauner136388f2013-07-15 10:47:53 +00001505 msg_gerr("Your flash chip is in an unknown state.\n");
1506#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +02001507 if (programmer == &programmer_internal)
Angel Pons1900e1d2021-07-02 12:42:23 +02001508 msg_gerr("Get help on IRC (see https://www.flashrom.org/Contact) or mail\n"
Nico Huberac90af62022-12-18 00:22:47 +00001509 "flashrom-stable@flashrom.org with the subject \"FAILED: <your board name>\"!\n"
Stefan Tauner136388f2013-07-15 10:47:53 +00001510 "-------------------------------------------------------------------------------\n"
1511 "DO NOT REBOOT OR POWEROFF!\n");
1512 else
1513#endif
Nico Huberac90af62022-12-18 00:22:47 +00001514 msg_gerr("Please report this to the mailing list at flashrom-stable@flashrom.org\n"
1515 "or on IRC (see https://www.flashrom.org/Contact for details), thanks!\n");
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001516}
1517
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001518void list_programmers_linebreak(int startcol, int cols, int paren)
1519{
1520 const char *pname;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001521 int pnamelen;
1522 int remaining = 0, firstline = 1;
Thomas Heijligen9163b812021-06-01 14:25:01 +02001523 size_t p;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001524 int i;
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001525
Thomas Heijligend45cb592021-05-19 14:12:18 +02001526 for (p = 0; p < programmer_table_size; p++) {
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001527 pname = programmer_table[p]->name;
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001528 pnamelen = strlen(pname);
1529 if (remaining - pnamelen - 2 < 0) {
1530 if (firstline)
1531 firstline = 0;
1532 else
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001533 msg_ginfo("\n");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001534 for (i = 0; i < startcol; i++)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001535 msg_ginfo(" ");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001536 remaining = cols - startcol;
1537 } else {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001538 msg_ginfo(" ");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001539 remaining--;
1540 }
1541 if (paren && (p == 0)) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001542 msg_ginfo("(");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001543 remaining--;
1544 }
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001545 msg_ginfo("%s", pname);
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001546 remaining -= pnamelen;
Thomas Heijligend45cb592021-05-19 14:12:18 +02001547 if (p < programmer_table_size - 1) {
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001548 msg_ginfo(",");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001549 remaining--;
1550 } else {
1551 if (paren)
Carl-Daniel Hailfinger901a3ba2012-05-14 22:54:58 +00001552 msg_ginfo(")");
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001553 }
1554 }
1555}
1556
Jacob Garberbeeb8bc2019-06-21 15:24:17 -06001557static void print_sysinfo(void)
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001558{
Stefan Taunerb0eee9b2015-01-10 09:32:50 +00001559#if IS_WINDOWS
Angel Pons7e134562021-06-07 13:29:13 +02001560 SYSTEM_INFO si = { 0 };
1561 OSVERSIONINFOEX osvi = { 0 };
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001562
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +00001563 msg_ginfo(" on Windows");
1564 /* Tell Windows which version of the structure we want. */
1565 osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
1566 if (GetVersionEx((OSVERSIONINFO*) &osvi))
1567 msg_ginfo(" %lu.%lu", osvi.dwMajorVersion, osvi.dwMinorVersion);
1568 else
1569 msg_ginfo(" unknown version");
1570 GetSystemInfo(&si);
1571 switch (si.wProcessorArchitecture) {
1572 case PROCESSOR_ARCHITECTURE_AMD64:
1573 msg_ginfo(" (x86_64)");
1574 break;
1575 case PROCESSOR_ARCHITECTURE_INTEL:
1576 msg_ginfo(" (x86)");
1577 break;
1578 default:
1579 msg_ginfo(" (unknown arch)");
1580 break;
1581 }
1582#elif HAVE_UTSNAME == 1
1583 struct utsname osinfo;
1584
1585 uname(&osinfo);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001586 msg_ginfo(" on %s %s (%s)", osinfo.sysname, osinfo.release,
1587 osinfo.machine);
1588#else
1589 msg_ginfo(" on unknown machine");
1590#endif
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001591}
1592
1593void print_buildinfo(void)
1594{
1595 msg_gdbg("flashrom was built with");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001596#if NEED_PCI == 1
1597#ifdef PCILIB_VERSION
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001598 msg_gdbg(" libpci %s,", PCILIB_VERSION);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001599#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001600 msg_gdbg(" unknown PCI library,");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001601#endif
1602#endif
1603#ifdef __clang__
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001604 msg_gdbg(" LLVM Clang");
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001605#ifdef __clang_version__
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001606 msg_gdbg(" %s,", __clang_version__);
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001607#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001608 msg_gdbg(" unknown version (before r102686),");
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001609#endif
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001610#elif defined(__GNUC__)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001611 msg_gdbg(" GCC");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001612#ifdef __VERSION__
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001613 msg_gdbg(" %s,", __VERSION__);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001614#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001615 msg_gdbg(" unknown version,");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001616#endif
1617#else
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001618 msg_gdbg(" unknown compiler,");
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001619#endif
1620#if defined (__FLASHROM_LITTLE_ENDIAN__)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001621 msg_gdbg(" little endian");
Carl-Daniel Hailfinger06b9efa2012-08-07 11:59:59 +00001622#elif defined (__FLASHROM_BIG_ENDIAN__)
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001623 msg_gdbg(" big endian");
Carl-Daniel Hailfinger06b9efa2012-08-07 11:59:59 +00001624#else
1625#error Endianness could not be determined
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001626#endif
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001627 msg_gdbg("\n");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001628}
1629
Bernhard Walle201bde32008-01-21 15:24:22 +00001630void print_version(void)
1631{
Nico Huberac90af62022-12-18 00:22:47 +00001632 msg_ginfo("flashrom-stable %s", flashrom_version);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001633 print_sysinfo();
Carl-Daniel Hailfinger1c155482012-06-06 09:17:06 +00001634 msg_ginfo("\n");
Bernhard Walle201bde32008-01-21 15:24:22 +00001635}
1636
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001637void print_banner(void)
1638{
1639 msg_ginfo("flashrom is free software, get the source code at "
Stefan Tauner4c723152016-01-14 22:47:55 +00001640 "https://flashrom.org\n");
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001641 msg_ginfo("\n");
1642}
1643
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001644int selfcheck(void)
1645{
Stefan Tauner96658be2014-05-26 22:05:31 +00001646 unsigned int i;
Stefan Taunera6d96482012-12-26 19:51:23 +00001647 int ret = 0;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001648
Thomas Heijligend45cb592021-05-19 14:12:18 +02001649 for (i = 0; i < programmer_table_size; i++) {
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001650 const struct programmer_entry *const p = programmer_table[i];
1651 if (p == NULL) {
1652 msg_gerr("Programmer with index %d is NULL instead of a valid pointer!\n", i);
1653 ret = 1;
1654 continue;
1655 }
1656 if (p->name == NULL) {
Stefan Taunera6d96482012-12-26 19:51:23 +00001657 msg_gerr("All programmers need a valid name, but the one with index %d does not!\n", i);
1658 ret = 1;
1659 /* This might hide other problems with this programmer, but allows for better error
1660 * messages below without jumping through hoops. */
1661 continue;
1662 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001663 switch (p->type) {
Stefan Tauneraf358d62012-12-27 18:40:26 +00001664 case USB:
1665 case PCI:
1666 case OTHER:
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001667 if (p->devs.note == NULL) {
1668 if (strcmp("internal", p->name) == 0)
Stefan Tauneraf358d62012-12-27 18:40:26 +00001669 break; /* This one has its device list stored separately. */
1670 msg_gerr("Programmer %s has neither a device list nor a textual description!\n",
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001671 p->name);
Stefan Tauneraf358d62012-12-27 18:40:26 +00001672 ret = 1;
1673 }
1674 break;
1675 default:
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001676 msg_gerr("Programmer %s does not have a valid type set!\n", p->name);
Stefan Tauneraf358d62012-12-27 18:40:26 +00001677 ret = 1;
1678 break;
1679 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001680 if (p->init == NULL) {
1681 msg_gerr("Programmer %s does not have a valid init 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->delay == NULL) {
1685 msg_gerr("Programmer %s does not have a valid delay 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->map_flash_region == NULL) {
1689 msg_gerr("Programmer %s does not have a valid map_flash_region function!\n", p->name);
Stefan Taunera6d96482012-12-26 19:51:23 +00001690 ret = 1;
1691 }
Thomas Heijligen633d6db2021-03-31 19:09:44 +02001692 if (p->unmap_flash_region == NULL) {
1693 msg_gerr("Programmer %s does not have a valid unmap_flash_region function!\n", p->name);
Stefan Taunera6d96482012-12-26 19:51:23 +00001694 ret = 1;
1695 }
1696 }
Stefan Tauner96658be2014-05-26 22:05:31 +00001697
1698 /* It would be favorable if we could check for the correct layout (especially termination) of various
1699 * constant arrays: flashchips, chipset_enables, board_matches, boards_known, laptops_known.
1700 * They are all defined as externs in this compilation unit so we don't know their sizes which vary
1701 * depending on compiler flags, e.g. the target architecture, and can sometimes be 0.
1702 * For 'flashchips' we export the size explicitly to work around this and to be able to implement the
1703 * checks below. */
Stefan Tauner6697f712014-08-06 15:09:15 +00001704 if (flashchips_size <= 1 || flashchips[flashchips_size - 1].name != NULL) {
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001705 msg_gerr("Flashchips table miscompilation!\n");
1706 ret = 1;
Stefan Tauner96658be2014-05-26 22:05:31 +00001707 } else {
1708 for (i = 0; i < flashchips_size - 1; i++) {
1709 const struct flashchip *chip = &flashchips[i];
1710 if (chip->vendor == NULL || chip->name == NULL || chip->bustype == BUS_NONE) {
1711 ret = 1;
1712 msg_gerr("ERROR: Some field of flash chip #%d (%s) is misconfigured.\n"
Nico Huberac90af62022-12-18 00:22:47 +00001713 "Please report a bug at flashrom-stable@flashrom.org\n", i,
Stefan Tauner96658be2014-05-26 22:05:31 +00001714 chip->name == NULL ? "unnamed" : chip->name);
1715 }
1716 if (selfcheck_eraseblocks(chip)) {
1717 ret = 1;
1718 }
1719 }
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001720 }
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001721
Stefan Tauner600576b2014-06-12 22:57:36 +00001722#if CONFIG_INTERNAL == 1
1723 ret |= selfcheck_board_enables();
1724#endif
1725
Stefan Tauner96658be2014-05-26 22:05:31 +00001726 /* TODO: implement similar sanity checks for other arrays where deemed necessary. */
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001727 return ret;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001728}
1729
Edward O'Callaghanacb24d42021-04-15 13:44:39 +10001730/* FIXME: This function signature needs to be improved once prepare_flash_access()
1731 * has a better function signature.
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001732 */
Jacob Garberbeeb8bc2019-06-21 15:24:17 -06001733static int chip_safety_check(const struct flashctx *flash, int force,
1734 int read_it, int write_it, int erase_it, int verify_it)
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001735{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001736 const struct flashchip *chip = flash->chip;
1737
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001738 if (!programmer_may_write && (write_it || erase_it)) {
1739 msg_perr("Write/erase is not working yet on your programmer in "
1740 "its current configuration.\n");
1741 /* --force is the wrong approach, but it's the best we can do
1742 * until the generic programmer parameter parser is merged.
1743 */
1744 if (!force)
1745 return 1;
1746 msg_cerr("Continuing anyway.\n");
1747 }
1748
1749 if (read_it || erase_it || write_it || verify_it) {
1750 /* Everything needs read. */
Stefan Tauner6455dff2014-05-26 00:36:24 +00001751 if (chip->tested.read == BAD) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001752 msg_cerr("Read is not working on this chip. ");
1753 if (!force)
1754 return 1;
1755 msg_cerr("Continuing anyway.\n");
1756 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001757 if (!chip->read) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001758 msg_cerr("flashrom has no read function for this "
1759 "flash chip.\n");
1760 return 1;
1761 }
1762 }
1763 if (erase_it || write_it) {
1764 /* Write needs erase. */
Stefan Tauner6455dff2014-05-26 00:36:24 +00001765 if (chip->tested.erase == NA) {
1766 msg_cerr("Erase is not possible on this chip.\n");
1767 return 1;
1768 }
1769 if (chip->tested.erase == BAD) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001770 msg_cerr("Erase is not working on this chip. ");
1771 if (!force)
1772 return 1;
1773 msg_cerr("Continuing anyway.\n");
1774 }
Sylvain "ythier" Hitier9db45512011-07-04 07:27:17 +00001775 if(count_usable_erasers(flash) == 0) {
Stefan Tauner5368dca2011-07-01 00:19:12 +00001776 msg_cerr("flashrom has no erase function for this "
1777 "flash chip.\n");
1778 return 1;
1779 }
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001780 }
1781 if (write_it) {
Stefan Tauner6455dff2014-05-26 00:36:24 +00001782 if (chip->tested.write == NA) {
1783 msg_cerr("Write is not possible on this chip.\n");
1784 return 1;
1785 }
1786 if (chip->tested.write == BAD) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001787 msg_cerr("Write is not working on this chip. ");
1788 if (!force)
1789 return 1;
1790 msg_cerr("Continuing anyway.\n");
1791 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001792 if (!chip->write) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001793 msg_cerr("flashrom has no write function for this "
1794 "flash chip.\n");
1795 return 1;
1796 }
1797 }
1798 return 0;
1799}
1800
Nico Huber305f4172013-06-14 11:55:26 +02001801int prepare_flash_access(struct flashctx *const flash,
1802 const bool read_it, const bool write_it,
1803 const bool erase_it, const bool verify_it)
Nico Huber454f6132012-12-10 13:34:10 +00001804{
1805 if (chip_safety_check(flash, flash->flags.force, read_it, write_it, erase_it, verify_it)) {
1806 msg_cerr("Aborting.\n");
1807 return 1;
1808 }
1809
1810 if (flash->layout == get_global_layout() && normalize_romentries(flash)) {
1811 msg_cerr("Requested regions can not be handled. Aborting.\n");
1812 return 1;
1813 }
1814
1815 if (map_flash(flash) != 0)
1816 return 1;
1817
Nikolai Artemiev4ad48642020-11-05 13:54:27 +11001818 /* Initialize chip_restore_fn_count before chip unlock calls. */
1819 flash->chip_restore_fn_count = 0;
1820
Nico Huber454f6132012-12-10 13:34:10 +00001821 /* Given the existence of read locks, we want to unlock for read,
1822 erase and write. */
1823 if (flash->chip->unlock)
1824 flash->chip->unlock(flash);
1825
Nico Huberf43c6542017-10-14 17:47:28 +02001826 flash->address_high_byte = -1;
1827 flash->in_4ba_mode = false;
1828
Nico Huberdc5af542018-12-22 16:54:59 +01001829 /* Be careful about 4BA chips and broken masters */
1830 if (flash->chip->total_size > 16 * 1024 && spi_master_no_4ba_modes(flash)) {
1831 /* If we can't use native instructions, bail out */
1832 if ((flash->chip->feature_bits & FEATURE_4BA_NATIVE) != FEATURE_4BA_NATIVE
1833 || !spi_master_4ba(flash)) {
1834 msg_cerr("Programmer doesn't support this chip. Aborting.\n");
1835 return 1;
1836 }
1837 }
1838
Ed Swierkcc20a9b2017-07-03 13:17:18 -07001839 /* Enable/disable 4-byte addressing mode if flash chip supports it */
Nico Huber86bddb52018-03-13 18:14:52 +01001840 if (flash->chip->feature_bits & (FEATURE_4BA_ENTER | FEATURE_4BA_ENTER_WREN | FEATURE_4BA_ENTER_EAR7)) {
Nico Huberfe34d2a2017-11-10 21:10:20 +01001841 int ret;
1842 if (spi_master_4ba(flash))
1843 ret = spi_enter_4ba(flash);
1844 else
1845 ret = spi_exit_4ba(flash);
1846 if (ret) {
1847 msg_cerr("Failed to set correct 4BA mode! Aborting.\n");
Ed Swierkcc20a9b2017-07-03 13:17:18 -07001848 return 1;
Boris Baykov7fe85692016-06-11 18:29:03 +02001849 }
Boris Baykov99127182016-06-11 18:29:00 +02001850 }
1851
Nico Huber454f6132012-12-10 13:34:10 +00001852 return 0;
1853}
1854
Nico Huber305f4172013-06-14 11:55:26 +02001855void finalize_flash_access(struct flashctx *const flash)
Nico Huber454f6132012-12-10 13:34:10 +00001856{
Nikolai Artemiev4ad48642020-11-05 13:54:27 +11001857 deregister_chip_restore(flash);
Nico Huber454f6132012-12-10 13:34:10 +00001858 unmap_flash(flash);
1859}
1860
1861/**
1862 * @addtogroup flashrom-flash
1863 * @{
1864 */
1865
1866/**
1867 * @brief Erase the specified ROM chip.
1868 *
1869 * If a layout is set in the given flash context, only included regions
1870 * will be erased.
1871 *
1872 * @param flashctx The context of the flash chip to erase.
1873 * @return 0 on success.
1874 */
1875int flashrom_flash_erase(struct flashctx *const flashctx)
1876{
1877 if (prepare_flash_access(flashctx, false, false, true, false))
1878 return 1;
1879
1880 const int ret = erase_by_layout(flashctx);
1881
1882 finalize_flash_access(flashctx);
1883
1884 return ret;
1885}
1886
1887/** @} */ /* end flashrom-flash */
1888
1889/**
1890 * @defgroup flashrom-ops Operations
1891 * @{
1892 */
1893
1894/**
1895 * @brief Read the current image from the specified ROM chip.
1896 *
1897 * If a layout is set in the specified flash context, only included regions
1898 * will be read.
1899 *
1900 * @param flashctx The context of the flash chip.
1901 * @param buffer Target buffer to write image to.
1902 * @param buffer_len Size of target buffer in bytes.
1903 * @return 0 on success,
1904 * 2 if buffer_len is too short for the flash chip's contents,
1905 * or 1 on any other failure.
1906 */
1907int flashrom_image_read(struct flashctx *const flashctx, void *const buffer, const size_t buffer_len)
1908{
1909 const size_t flash_size = flashctx->chip->total_size * 1024;
1910
1911 if (flash_size > buffer_len)
1912 return 2;
1913
1914 if (prepare_flash_access(flashctx, true, false, false, false))
1915 return 1;
1916
1917 msg_cinfo("Reading flash... ");
1918
1919 int ret = 1;
1920 if (read_by_layout(flashctx, buffer)) {
1921 msg_cerr("Read operation failed!\n");
1922 msg_cinfo("FAILED.\n");
1923 goto _finalize_ret;
1924 }
1925 msg_cinfo("done.\n");
1926 ret = 0;
1927
1928_finalize_ret:
1929 finalize_flash_access(flashctx);
1930 return ret;
1931}
1932
1933static void combine_image_by_layout(const struct flashctx *const flashctx,
1934 uint8_t *const newcontents, const uint8_t *const oldcontents)
1935{
1936 const struct flashrom_layout *const layout = get_layout(flashctx);
Nico Huber3d7b1e32018-12-22 00:53:14 +01001937 const struct romentry *included;
1938 chipoff_t start = 0;
Nico Huber454f6132012-12-10 13:34:10 +00001939
Nico Huber3d7b1e32018-12-22 00:53:14 +01001940 while ((included = layout_next_included_region(layout, start))) {
1941 if (included->start > start) {
1942 /* copy everything up to the start of this included region */
1943 memcpy(newcontents + start, oldcontents + start, included->start - start);
1944 }
1945 /* skip this included region */
1946 start = included->end + 1;
1947 if (start == 0)
1948 return;
Nico Huber454f6132012-12-10 13:34:10 +00001949 }
Nico Huber3d7b1e32018-12-22 00:53:14 +01001950
1951 /* copy the rest of the chip */
1952 const chipsize_t copy_len = flashctx->chip->total_size * 1024 - start;
1953 memcpy(newcontents + start, oldcontents + start, copy_len);
Nico Huber454f6132012-12-10 13:34:10 +00001954}
1955
1956/**
1957 * @brief Write the specified image to the ROM chip.
1958 *
1959 * If a layout is set in the specified flash context, only erase blocks
1960 * containing included regions will be touched.
1961 *
1962 * @param flashctx The context of the flash chip.
Nico Huber1b172f22017-06-19 12:35:24 +02001963 * @param buffer Source buffer to read image from (may be altered for full verification).
Nico Huber454f6132012-12-10 13:34:10 +00001964 * @param buffer_len Size of source buffer in bytes.
Paul Kocialkowskif701f342018-01-15 01:10:36 +03001965 * @param refbuffer If given, assume flash chip contains same data as `refbuffer`.
Nico Huber454f6132012-12-10 13:34:10 +00001966 * @return 0 on success,
1967 * 4 if buffer_len doesn't match the size of the flash chip,
1968 * 3 if write was tried but nothing has changed,
1969 * 2 if write failed and flash contents changed,
1970 * or 1 on any other failure.
1971 */
Paul Kocialkowskif701f342018-01-15 01:10:36 +03001972int flashrom_image_write(struct flashctx *const flashctx, void *const buffer, const size_t buffer_len,
1973 const void *const refbuffer)
Nico Huber454f6132012-12-10 13:34:10 +00001974{
1975 const size_t flash_size = flashctx->chip->total_size * 1024;
1976 const bool verify_all = flashctx->flags.verify_whole_chip;
1977 const bool verify = flashctx->flags.verify_after_write;
1978
1979 if (buffer_len != flash_size)
1980 return 4;
1981
1982 int ret = 1;
1983
1984 uint8_t *const newcontents = buffer;
Paul Kocialkowskif701f342018-01-15 01:10:36 +03001985 const uint8_t *const refcontents = refbuffer;
Nico Huber454f6132012-12-10 13:34:10 +00001986 uint8_t *const curcontents = malloc(flash_size);
1987 uint8_t *oldcontents = NULL;
1988 if (verify_all)
1989 oldcontents = malloc(flash_size);
1990 if (!curcontents || (verify_all && !oldcontents)) {
1991 msg_gerr("Out of memory!\n");
1992 goto _free_ret;
1993 }
1994
1995#if CONFIG_INTERNAL == 1
Thomas Heijligenc7e5b8b2021-06-01 14:21:41 +02001996 if (programmer == &programmer_internal && cb_check_image(newcontents, flash_size) < 0) {
Nico Huber454f6132012-12-10 13:34:10 +00001997 if (flashctx->flags.force_boardmismatch) {
1998 msg_pinfo("Proceeding anyway because user forced us to.\n");
1999 } else {
2000 msg_perr("Aborting. You can override this with "
2001 "-p internal:boardmismatch=force.\n");
2002 goto _free_ret;
2003 }
2004 }
2005#endif
2006
2007 if (prepare_flash_access(flashctx, false, true, false, verify))
2008 goto _free_ret;
2009
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002010 /* If given, assume flash chip contains same data as `refcontents`. */
2011 if (refcontents) {
2012 msg_cinfo("Assuming old flash chip contents as ref-file...\n");
2013 memcpy(curcontents, refcontents, flash_size);
2014 if (oldcontents)
2015 memcpy(oldcontents, refcontents, flash_size);
Nico Huber454f6132012-12-10 13:34:10 +00002016 } else {
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002017 /*
2018 * Read the whole chip to be able to check whether regions need to be
2019 * erased and to give better diagnostics in case write fails.
2020 * The alternative is to read only the regions which are to be
2021 * preserved, but in that case we might perform unneeded erase which
2022 * takes time as well.
2023 */
2024 msg_cinfo("Reading old flash chip contents... ");
2025 if (verify_all) {
2026 if (flashctx->chip->read(flashctx, oldcontents, 0, flash_size)) {
2027 msg_cinfo("FAILED.\n");
2028 goto _finalize_ret;
2029 }
2030 memcpy(curcontents, oldcontents, flash_size);
2031 } else {
2032 if (read_by_layout(flashctx, curcontents)) {
2033 msg_cinfo("FAILED.\n");
2034 goto _finalize_ret;
2035 }
Nico Huber454f6132012-12-10 13:34:10 +00002036 }
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002037 msg_cinfo("done.\n");
Nico Huber454f6132012-12-10 13:34:10 +00002038 }
Nico Huber454f6132012-12-10 13:34:10 +00002039
2040 if (write_by_layout(flashctx, curcontents, newcontents)) {
2041 msg_cerr("Uh oh. Erase/write failed. ");
2042 ret = 2;
2043 if (verify_all) {
2044 msg_cerr("Checking if anything has changed.\n");
2045 msg_cinfo("Reading current flash chip contents... ");
2046 if (!flashctx->chip->read(flashctx, curcontents, 0, flash_size)) {
2047 msg_cinfo("done.\n");
2048 if (!memcmp(oldcontents, curcontents, flash_size)) {
2049 nonfatal_help_message();
2050 goto _finalize_ret;
2051 }
2052 msg_cerr("Apparently at least some data has changed.\n");
2053 } else
2054 msg_cerr("Can't even read anymore!\n");
2055 emergency_help_message();
2056 goto _finalize_ret;
2057 } else {
2058 msg_cerr("\n");
2059 }
2060 emergency_help_message();
2061 goto _finalize_ret;
2062 }
2063
2064 /* Verify only if we actually changed something. */
2065 if (verify && !all_skipped) {
2066 const struct flashrom_layout *const layout_bak = flashctx->layout;
2067
2068 msg_cinfo("Verifying flash... ");
2069
2070 /* Work around chips which need some time to calm down. */
2071 programmer_delay(1000*1000);
2072
2073 if (verify_all) {
2074 combine_image_by_layout(flashctx, newcontents, oldcontents);
2075 flashctx->layout = NULL;
2076 }
2077 ret = verify_by_layout(flashctx, curcontents, newcontents);
2078 flashctx->layout = layout_bak;
2079 /* If we tried to write, and verification now fails, we
2080 might have an emergency situation. */
2081 if (ret)
2082 emergency_help_message();
2083 else
2084 msg_cinfo("VERIFIED.\n");
2085 } else {
2086 /* We didn't change anything. */
2087 ret = 0;
2088 }
2089
2090_finalize_ret:
2091 finalize_flash_access(flashctx);
2092_free_ret:
2093 free(oldcontents);
2094 free(curcontents);
2095 return ret;
2096}
2097
2098/**
2099 * @brief Verify the ROM chip's contents with the specified image.
2100 *
2101 * If a layout is set in the specified flash context, only included regions
2102 * will be verified.
2103 *
2104 * @param flashctx The context of the flash chip.
2105 * @param buffer Source buffer to verify with.
2106 * @param buffer_len Size of source buffer in bytes.
2107 * @return 0 on success,
2108 * 3 if the chip's contents don't match,
2109 * 2 if buffer_len doesn't match the size of the flash chip,
2110 * or 1 on any other failure.
2111 */
2112int flashrom_image_verify(struct flashctx *const flashctx, const void *const buffer, const size_t buffer_len)
2113{
2114 const size_t flash_size = flashctx->chip->total_size * 1024;
2115
2116 if (buffer_len != flash_size)
2117 return 2;
2118
2119 const uint8_t *const newcontents = buffer;
2120 uint8_t *const curcontents = malloc(flash_size);
2121 if (!curcontents) {
2122 msg_gerr("Out of memory!\n");
2123 return 1;
2124 }
2125
2126 int ret = 1;
2127
2128 if (prepare_flash_access(flashctx, false, false, false, true))
2129 goto _free_ret;
2130
2131 msg_cinfo("Verifying flash... ");
2132 ret = verify_by_layout(flashctx, curcontents, newcontents);
2133 if (!ret)
2134 msg_cinfo("VERIFIED.\n");
2135
2136 finalize_flash_access(flashctx);
2137_free_ret:
2138 free(curcontents);
2139 return ret;
2140}
2141
2142/** @} */ /* end flashrom-ops */
Nico Huber899e4ec2016-04-29 18:39:01 +02002143
2144int do_read(struct flashctx *const flash, const char *const filename)
2145{
2146 if (prepare_flash_access(flash, true, false, false, false))
2147 return 1;
2148
2149 const int ret = read_flash_to_file(flash, filename);
2150
2151 finalize_flash_access(flash);
2152
2153 return ret;
2154}
2155
2156int do_erase(struct flashctx *const flash)
2157{
2158 const int ret = flashrom_flash_erase(flash);
2159
2160 /*
2161 * FIXME: Do we really want the scary warning if erase failed?
2162 * After all, after erase the chip is either blank or partially
2163 * blank or it has the old contents. A blank chip won't boot,
2164 * so if the user wanted erase and reboots afterwards, the user
2165 * knows very well that booting won't work.
2166 */
2167 if (ret)
2168 emergency_help_message();
2169
2170 return ret;
2171}
2172
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002173int do_write(struct flashctx *const flash, const char *const filename, const char *const referencefile)
Nico Huber899e4ec2016-04-29 18:39:01 +02002174{
2175 const size_t flash_size = flash->chip->total_size * 1024;
2176 int ret = 1;
2177
2178 uint8_t *const newcontents = malloc(flash_size);
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002179 uint8_t *const refcontents = referencefile ? malloc(flash_size) : NULL;
2180
2181 if (!newcontents || (referencefile && !refcontents)) {
Nico Huber899e4ec2016-04-29 18:39:01 +02002182 msg_gerr("Out of memory!\n");
2183 goto _free_ret;
2184 }
2185
2186 if (read_buf_from_file(newcontents, flash_size, filename))
2187 goto _free_ret;
2188
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002189 if (referencefile) {
2190 if (read_buf_from_file(refcontents, flash_size, referencefile))
2191 goto _free_ret;
2192 }
2193
2194 ret = flashrom_image_write(flash, newcontents, flash_size, refcontents);
Nico Huber899e4ec2016-04-29 18:39:01 +02002195
2196_free_ret:
Paul Kocialkowskif701f342018-01-15 01:10:36 +03002197 free(refcontents);
Nico Huber899e4ec2016-04-29 18:39:01 +02002198 free(newcontents);
2199 return ret;
2200}
2201
2202int do_verify(struct flashctx *const flash, const char *const filename)
2203{
2204 const size_t flash_size = flash->chip->total_size * 1024;
2205 int ret = 1;
2206
2207 uint8_t *const newcontents = malloc(flash_size);
2208 if (!newcontents) {
2209 msg_gerr("Out of memory!\n");
2210 goto _free_ret;
2211 }
2212
2213 if (read_buf_from_file(newcontents, flash_size, filename))
2214 goto _free_ret;
2215
2216 ret = flashrom_image_verify(flash, newcontents, flash_size);
2217
2218_free_ret:
2219 free(newcontents);
2220 return ret;
2221}