Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 1 | /* |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 2 | * This file is part of the flashrom project. |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 3 | * |
Uwe Hermann | d22a1d4 | 2007-09-09 20:21:05 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
| 5 | * Copyright (C) 2004 Tyan Corp <yhlu@tyan.com> |
Uwe Hermann | c7e8a0c | 2009-05-19 14:14:21 +0000 | [diff] [blame] | 6 | * Copyright (C) 2005-2008 coresystems GmbH |
Carl-Daniel Hailfinger | 03b4e71 | 2009-05-08 12:49:03 +0000 | [diff] [blame] | 7 | * Copyright (C) 2008,2009 Carl-Daniel Hailfinger |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 8 | * Copyright (C) 2016 secunet Security Networks AG |
| 9 | * (Written by Nico Huber <nico.huber@secunet.com> for secunet) |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 10 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 11 | * 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. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 15 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 16 | * 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. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 20 | */ |
| 21 | |
Felix Singer | f25447e | 2022-08-19 02:44:28 +0200 | [diff] [blame] | 22 | #include <stdbool.h> |
Carl-Daniel Hailfinger | 831e8f4 | 2010-05-30 22:24:40 +0000 | [diff] [blame] | 23 | #include <stdio.h> |
Stefan Reinauer | 018aca8 | 2006-11-21 23:48:51 +0000 | [diff] [blame] | 24 | #include <sys/types.h> |
Ronald G. Minnich | ceec420 | 2003-07-25 04:37:41 +0000 | [diff] [blame] | 25 | #include <string.h> |
Stefan Tauner | 1668770 | 2015-12-25 21:59:45 +0000 | [diff] [blame] | 26 | #include <unistd.h> |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 27 | #include <stdlib.h> |
Stefan Tauner | 363fd7e | 2013-04-07 13:08:30 +0000 | [diff] [blame] | 28 | #include <errno.h> |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 29 | #include <ctype.h> |
Edward O'Callaghan | 3b64d81 | 2022-08-12 13:07:51 +1000 | [diff] [blame] | 30 | |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 31 | #include "flash.h" |
Carl-Daniel Hailfinger | 0845464 | 2009-06-15 14:14:48 +0000 | [diff] [blame] | 32 | #include "flashchips.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 33 | #include "programmer.h" |
Thomas Heijligen | 74b4aa0 | 2021-12-14 17:52:30 +0100 | [diff] [blame] | 34 | #include "hwaccess_physmap.h" |
Nico Huber | fe34d2a | 2017-11-10 21:10:20 +0100 | [diff] [blame] | 35 | #include "chipdrivers.h" |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 36 | |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 37 | const char flashrom_version[] = FLASHROM_VERSION; |
Nico Huber | bcb2e5a | 2012-12-30 01:23:17 +0000 | [diff] [blame] | 38 | const char *chip_to_probe = NULL; |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 39 | |
Thomas Heijligen | c7e5b8b | 2021-06-01 14:21:41 +0200 | [diff] [blame] | 40 | static const struct programmer_entry *programmer = NULL; |
Nico Huber | 6a2ebeb | 2022-08-26 11:36:48 +0200 | [diff] [blame] | 41 | static char *programmer_param = NULL; |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 42 | |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 43 | /* |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 44 | * Programmers supporting multiple buses can have differing size limits on |
| 45 | * each bus. Store the limits for each bus in a common struct. |
| 46 | */ |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 47 | struct decode_sizes max_rom_decode; |
| 48 | |
| 49 | /* If nonzero, used as the start address of bottom-aligned flash. */ |
| 50 | unsigned long flashbase; |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 51 | |
Carl-Daniel Hailfinger | d1be52d | 2010-07-03 12:14:25 +0000 | [diff] [blame] | 52 | /* Is writing allowed with this programmer? */ |
Felix Singer | 980d6b8 | 2022-08-19 02:48:15 +0200 | [diff] [blame] | 53 | bool programmer_may_write; |
Carl-Daniel Hailfinger | d1be52d | 2010-07-03 12:14:25 +0000 | [diff] [blame] | 54 | |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 55 | #define SHUTDOWN_MAXFN 32 |
Carl-Daniel Hailfinger | cc389fc | 2010-02-14 01:20:28 +0000 | [diff] [blame] | 56 | static int shutdown_fn_count = 0; |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 57 | /** @private */ |
Richard Hughes | 93e1625 | 2018-12-19 11:54:47 +0000 | [diff] [blame] | 58 | static struct shutdown_func_data { |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 59 | int (*func) (void *data); |
Carl-Daniel Hailfinger | cc389fc | 2010-02-14 01:20:28 +0000 | [diff] [blame] | 60 | void *data; |
Richard Hughes | 93e1625 | 2018-12-19 11:54:47 +0000 | [diff] [blame] | 61 | } shutdown_fn[SHUTDOWN_MAXFN]; |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 62 | /* Initialize to 0 to make sure nobody registers a shutdown function before |
| 63 | * programmer init. |
| 64 | */ |
Felix Singer | f25447e | 2022-08-19 02:44:28 +0200 | [diff] [blame] | 65 | static bool may_register_shutdown = false; |
Carl-Daniel Hailfinger | cc389fc | 2010-02-14 01:20:28 +0000 | [diff] [blame] | 66 | |
Stefan Tauner | c4f44df | 2013-08-12 22:58:43 +0000 | [diff] [blame] | 67 | /* Did we change something or was every erase/write skipped (if any)? */ |
| 68 | static bool all_skipped = true; |
| 69 | |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 70 | static int check_block_eraser(const struct flashctx *flash, int k, int log); |
Stefan Tauner | 5368dca | 2011-07-01 00:19:12 +0000 | [diff] [blame] | 71 | |
Stefan Tauner | 2a1ed77 | 2014-08-31 00:09:21 +0000 | [diff] [blame] | 72 | int shutdown_free(void *data) |
| 73 | { |
| 74 | free(data); |
| 75 | return 0; |
| 76 | } |
| 77 | |
Carl-Daniel Hailfinger | cc389fc | 2010-02-14 01:20:28 +0000 | [diff] [blame] | 78 | /* Register a function to be executed on programmer shutdown. |
| 79 | * The advantage over atexit() is that you can supply a void pointer which will |
| 80 | * be used as parameter to the registered function upon programmer shutdown. |
| 81 | * This pointer can point to arbitrary data used by said function, e.g. undo |
| 82 | * information for GPIO settings etc. If unneeded, set data=NULL. |
| 83 | * Please note that the first (void *data) belongs to the function signature of |
| 84 | * the function passed as first parameter. |
| 85 | */ |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 86 | int register_shutdown(int (*function) (void *data), void *data) |
Carl-Daniel Hailfinger | cc389fc | 2010-02-14 01:20:28 +0000 | [diff] [blame] | 87 | { |
| 88 | if (shutdown_fn_count >= SHUTDOWN_MAXFN) { |
Carl-Daniel Hailfinger | 9f5f215 | 2010-06-04 23:20:21 +0000 | [diff] [blame] | 89 | msg_perr("Tried to register more than %i shutdown functions.\n", |
Carl-Daniel Hailfinger | cc389fc | 2010-02-14 01:20:28 +0000 | [diff] [blame] | 90 | SHUTDOWN_MAXFN); |
| 91 | return 1; |
| 92 | } |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 93 | if (!may_register_shutdown) { |
| 94 | msg_perr("Tried to register a shutdown function before " |
| 95 | "programmer init.\n"); |
| 96 | return 1; |
| 97 | } |
Carl-Daniel Hailfinger | cc389fc | 2010-02-14 01:20:28 +0000 | [diff] [blame] | 98 | shutdown_fn[shutdown_fn_count].func = function; |
| 99 | shutdown_fn[shutdown_fn_count].data = data; |
| 100 | shutdown_fn_count++; |
| 101 | |
| 102 | return 0; |
| 103 | } |
| 104 | |
Nikolai Artemiev | 4ad4864 | 2020-11-05 13:54:27 +1100 | [diff] [blame] | 105 | int register_chip_restore(chip_restore_fn_cb_t func, |
| 106 | struct flashctx *flash, uint8_t status) |
| 107 | { |
| 108 | if (flash->chip_restore_fn_count >= MAX_CHIP_RESTORE_FUNCTIONS) { |
| 109 | msg_perr("Tried to register more than %i chip restore" |
| 110 | " functions.\n", MAX_CHIP_RESTORE_FUNCTIONS); |
| 111 | return 1; |
| 112 | } |
| 113 | flash->chip_restore_fn[flash->chip_restore_fn_count].func = func; |
| 114 | flash->chip_restore_fn[flash->chip_restore_fn_count].status = status; |
| 115 | flash->chip_restore_fn_count++; |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | static int deregister_chip_restore(struct flashctx *flash) |
| 121 | { |
| 122 | int rc = 0; |
| 123 | |
| 124 | while (flash->chip_restore_fn_count > 0) { |
| 125 | int i = --flash->chip_restore_fn_count; |
| 126 | rc |= flash->chip_restore_fn[i].func( |
| 127 | flash, flash->chip_restore_fn[i].status); |
| 128 | } |
| 129 | |
| 130 | return rc; |
| 131 | } |
| 132 | |
Thomas Heijligen | e0e93cf | 2021-06-01 14:37:12 +0200 | [diff] [blame] | 133 | int programmer_init(const struct programmer_entry *prog, const char *param) |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 134 | { |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 135 | int ret; |
Carl-Daniel Hailfinger | 2e68160 | 2011-09-08 00:00:29 +0000 | [diff] [blame] | 136 | |
Thomas Heijligen | e0e93cf | 2021-06-01 14:37:12 +0200 | [diff] [blame] | 137 | if (prog == NULL) { |
Carl-Daniel Hailfinger | 2e68160 | 2011-09-08 00:00:29 +0000 | [diff] [blame] | 138 | msg_perr("Invalid programmer specified!\n"); |
| 139 | return -1; |
| 140 | } |
Thomas Heijligen | e0e93cf | 2021-06-01 14:37:12 +0200 | [diff] [blame] | 141 | programmer = prog; |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 142 | /* Initialize all programmer specific data. */ |
| 143 | /* Default to unlimited decode sizes. */ |
| 144 | max_rom_decode = (const struct decode_sizes) { |
| 145 | .parallel = 0xffffffff, |
| 146 | .lpc = 0xffffffff, |
| 147 | .fwh = 0xffffffff, |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 148 | .spi = 0xffffffff, |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 149 | }; |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 150 | /* Default to top aligned flash at 4 GB. */ |
| 151 | flashbase = 0; |
| 152 | /* Registering shutdown functions is now allowed. */ |
Felix Singer | f25447e | 2022-08-19 02:44:28 +0200 | [diff] [blame] | 153 | may_register_shutdown = true; |
Carl-Daniel Hailfinger | d1be52d | 2010-07-03 12:14:25 +0000 | [diff] [blame] | 154 | /* Default to allowing writes. Broken programmers set this to 0. */ |
Felix Singer | 980d6b8 | 2022-08-19 02:48:15 +0200 | [diff] [blame] | 155 | programmer_may_write = true; |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 156 | |
Nico Huber | 6a2ebeb | 2022-08-26 11:36:48 +0200 | [diff] [blame] | 157 | if (param) { |
| 158 | programmer_param = strdup(param); |
| 159 | if (!programmer_param) { |
| 160 | msg_perr("Out of memory!\n"); |
| 161 | return ERROR_FATAL; |
| 162 | } |
| 163 | } else { |
| 164 | programmer_param = NULL; |
| 165 | } |
| 166 | |
Thomas Heijligen | c7e5b8b | 2021-06-01 14:21:41 +0200 | [diff] [blame] | 167 | msg_pdbg("Initializing %s programmer\n", programmer->name); |
| 168 | ret = programmer->init(); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 169 | if (programmer_param && strlen(programmer_param)) { |
Carl-Daniel Hailfinger | 20a36ba | 2013-08-13 07:09:57 +0000 | [diff] [blame] | 170 | if (ret != 0) { |
| 171 | /* It is quite possible that any unhandled programmer parameter would have been valid, |
| 172 | * but an error in actual programmer init happened before the parameter was evaluated. |
| 173 | */ |
| 174 | msg_pwarn("Unhandled programmer parameters (possibly due to another failure): %s\n", |
| 175 | programmer_param); |
| 176 | } else { |
| 177 | /* Actual programmer init was successful, but the user specified an invalid or unusable |
| 178 | * (for the current programmer configuration) parameter. |
| 179 | */ |
| 180 | msg_perr("Unhandled programmer parameters: %s\n", programmer_param); |
| 181 | msg_perr("Aborting.\n"); |
| 182 | ret = ERROR_FATAL; |
| 183 | } |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 184 | } |
Nico Huber | 6a2ebeb | 2022-08-26 11:36:48 +0200 | [diff] [blame] | 185 | free(programmer_param); |
| 186 | programmer_param = NULL; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 187 | return ret; |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 188 | } |
| 189 | |
Stefan Tauner | 20da4aa | 2014-05-07 22:07:23 +0000 | [diff] [blame] | 190 | /** Calls registered shutdown functions and resets internal programmer-related variables. |
| 191 | * Calling it is safe even without previous initialization, but further interactions with programmer support |
| 192 | * require a call to programmer_init() (afterwards). |
| 193 | * |
| 194 | * @return The OR-ed result values of all shutdown functions (i.e. 0 on success). */ |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 195 | int programmer_shutdown(void) |
| 196 | { |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 197 | int ret = 0; |
| 198 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 199 | /* Registering shutdown functions is no longer allowed. */ |
Felix Singer | f25447e | 2022-08-19 02:44:28 +0200 | [diff] [blame] | 200 | may_register_shutdown = false; |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 201 | while (shutdown_fn_count > 0) { |
| 202 | int i = --shutdown_fn_count; |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 203 | ret |= shutdown_fn[i].func(shutdown_fn[i].data); |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 204 | } |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 205 | registered_master_count = 0; |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 206 | |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 207 | return ret; |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 208 | } |
| 209 | |
Stefan Tauner | 305e0b9 | 2013-07-17 23:46:44 +0000 | [diff] [blame] | 210 | void *programmer_map_flash_region(const char *descr, uintptr_t phys_addr, size_t len) |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 211 | { |
Thomas Heijligen | c7e5b8b | 2021-06-01 14:21:41 +0200 | [diff] [blame] | 212 | void *ret = programmer->map_flash_region(descr, phys_addr, len); |
Stefan Tauner | 26e7a15 | 2013-09-13 17:21:05 +0000 | [diff] [blame] | 213 | msg_gspew("%s: mapping %s from 0x%0*" PRIxPTR " to 0x%0*" PRIxPTR "\n", |
| 214 | __func__, descr, PRIxPTR_WIDTH, phys_addr, PRIxPTR_WIDTH, (uintptr_t) ret); |
| 215 | return ret; |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | void programmer_unmap_flash_region(void *virt_addr, size_t len) |
| 219 | { |
Thomas Heijligen | c7e5b8b | 2021-06-01 14:21:41 +0200 | [diff] [blame] | 220 | programmer->unmap_flash_region(virt_addr, len); |
Stefan Tauner | 4e32ec1 | 2014-08-30 23:39:51 +0000 | [diff] [blame] | 221 | msg_gspew("%s: unmapped 0x%0*" PRIxPTR "\n", __func__, PRIxPTR_WIDTH, (uintptr_t)virt_addr); |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Stefan Tauner | f80419c | 2014-05-02 15:41:42 +0000 | [diff] [blame] | 224 | void programmer_delay(unsigned int usecs) |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 225 | { |
Urja Rannikko | 8d7ec2a | 2013-10-21 21:49:08 +0000 | [diff] [blame] | 226 | if (usecs > 0) |
Thomas Heijligen | c7e5b8b | 2021-06-01 14:21:41 +0200 | [diff] [blame] | 227 | programmer->delay(usecs); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 230 | int read_memmapped(struct flashctx *flash, uint8_t *buf, unsigned int start, |
| 231 | int unsigned len) |
Carl-Daniel Hailfinger | 03b4e71 | 2009-05-08 12:49:03 +0000 | [diff] [blame] | 232 | { |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 233 | chip_readn(flash, buf, flash->virtual_memory + start, len); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 234 | |
Carl-Daniel Hailfinger | 03b4e71 | 2009-05-08 12:49:03 +0000 | [diff] [blame] | 235 | return 0; |
| 236 | } |
| 237 | |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 238 | /* This is a somewhat hacked function similar in some ways to strtok(). |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 239 | * It will look for needle with a subsequent '=' in haystack, return a copy of |
| 240 | * needle and remove everything from the first occurrence of needle to the next |
| 241 | * delimiter from haystack. |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 242 | */ |
Nico Huber | 6a2ebeb | 2022-08-26 11:36:48 +0200 | [diff] [blame] | 243 | static char *extract_param(char *const *haystack, const char *needle, const char *delim) |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 244 | { |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 245 | char *param_pos, *opt_pos, *rest; |
| 246 | char *opt = NULL; |
| 247 | int optlen; |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 248 | int needlelen; |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 249 | |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 250 | needlelen = strlen(needle); |
| 251 | if (!needlelen) { |
| 252 | msg_gerr("%s: empty needle! Please report a bug at " |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 253 | "flashrom-stable@flashrom.org\n", __func__); |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 254 | return NULL; |
| 255 | } |
| 256 | /* No programmer parameters given. */ |
| 257 | if (*haystack == NULL) |
| 258 | return NULL; |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 259 | param_pos = strstr(*haystack, needle); |
| 260 | do { |
| 261 | if (!param_pos) |
| 262 | return NULL; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 263 | /* Needle followed by '='? */ |
| 264 | if (param_pos[needlelen] == '=') { |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 265 | /* Beginning of the string? */ |
| 266 | if (param_pos == *haystack) |
| 267 | break; |
| 268 | /* After a delimiter? */ |
| 269 | if (strchr(delim, *(param_pos - 1))) |
| 270 | break; |
| 271 | } |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 272 | /* Continue searching. */ |
| 273 | param_pos++; |
| 274 | param_pos = strstr(param_pos, needle); |
| 275 | } while (1); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 276 | |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 277 | if (param_pos) { |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 278 | /* Get the string after needle and '='. */ |
| 279 | opt_pos = param_pos + needlelen + 1; |
| 280 | optlen = strcspn(opt_pos, delim); |
| 281 | /* Return an empty string if the parameter was empty. */ |
| 282 | opt = malloc(optlen + 1); |
| 283 | if (!opt) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 284 | msg_gerr("Out of memory!\n"); |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 285 | exit(1); |
| 286 | } |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 287 | strncpy(opt, opt_pos, optlen); |
| 288 | opt[optlen] = '\0'; |
| 289 | rest = opt_pos + optlen; |
| 290 | /* Skip all delimiters after the current parameter. */ |
| 291 | rest += strspn(rest, delim); |
| 292 | memmove(param_pos, rest, strlen(rest) + 1); |
| 293 | /* We could shrink haystack, but the effort is not worth it. */ |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 294 | } |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 295 | |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 296 | return opt; |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Stefan Tauner | 6665244 | 2011-06-26 17:38:17 +0000 | [diff] [blame] | 299 | char *extract_programmer_param(const char *param_name) |
Carl-Daniel Hailfinger | 2b6dcb3 | 2010-07-08 10:13:37 +0000 | [diff] [blame] | 300 | { |
| 301 | return extract_param(&programmer_param, param_name, ","); |
| 302 | } |
| 303 | |
Sylvain "ythier" Hitier | 9db4551 | 2011-07-04 07:27:17 +0000 | [diff] [blame] | 304 | /* Returns the number of well-defined erasers for a chip. */ |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 305 | static unsigned int count_usable_erasers(const struct flashctx *flash) |
Stefan Tauner | 5368dca | 2011-07-01 00:19:12 +0000 | [diff] [blame] | 306 | { |
| 307 | unsigned int usable_erasefunctions = 0; |
| 308 | int k; |
| 309 | for (k = 0; k < NUM_ERASEFUNCTIONS; k++) { |
| 310 | if (!check_block_eraser(flash, k, 0)) |
| 311 | usable_erasefunctions++; |
| 312 | } |
| 313 | return usable_erasefunctions; |
| 314 | } |
| 315 | |
Mark Marshall | f20b7be | 2014-05-09 21:16:21 +0000 | [diff] [blame] | 316 | static int compare_range(const uint8_t *wantbuf, const uint8_t *havebuf, unsigned int start, unsigned int len) |
Stefan Tauner | 78ffbea | 2012-10-27 15:36:56 +0000 | [diff] [blame] | 317 | { |
| 318 | int ret = 0, failcount = 0; |
| 319 | unsigned int i; |
| 320 | for (i = 0; i < len; i++) { |
| 321 | if (wantbuf[i] != havebuf[i]) { |
| 322 | /* Only print the first failure. */ |
| 323 | if (!failcount++) |
| 324 | msg_cerr("FAILED at 0x%08x! Expected=0x%02x, Found=0x%02x,", |
| 325 | start + i, wantbuf[i], havebuf[i]); |
| 326 | } |
| 327 | } |
| 328 | if (failcount) { |
| 329 | msg_cerr(" failed byte count from 0x%08x-0x%08x: 0x%x\n", |
| 330 | start, start + len - 1, failcount); |
| 331 | ret = -1; |
| 332 | } |
| 333 | return ret; |
| 334 | } |
| 335 | |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 336 | /* start is an offset to the base address of the flash chip */ |
Jacob Garber | beeb8bc | 2019-06-21 15:24:17 -0600 | [diff] [blame] | 337 | static int check_erased_range(struct flashctx *flash, unsigned int start, unsigned int len) |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 338 | { |
| 339 | int ret; |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 340 | const uint8_t erased_value = ERASED_VALUE(flash); |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 341 | |
Edward O'Callaghan | f60f64f | 2022-11-12 12:08:01 +1100 | [diff] [blame] | 342 | uint8_t *cmpbuf = malloc(len); |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 343 | if (!cmpbuf) { |
Edward O'Callaghan | a31a572 | 2022-11-12 12:05:36 +1100 | [diff] [blame] | 344 | msg_gerr("Out of memory!\n"); |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 345 | exit(1); |
| 346 | } |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 347 | memset(cmpbuf, erased_value, len); |
Stefan Tauner | 78ffbea | 2012-10-27 15:36:56 +0000 | [diff] [blame] | 348 | ret = verify_range(flash, cmpbuf, start, len); |
Edward O'Callaghan | f60f64f | 2022-11-12 12:08:01 +1100 | [diff] [blame] | 349 | |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 350 | free(cmpbuf); |
| 351 | return ret; |
| 352 | } |
| 353 | |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 354 | /* |
Carl-Daniel Hailfinger | d0250a3 | 2009-11-25 17:05:52 +0000 | [diff] [blame] | 355 | * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 356 | * flash content at location start |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 357 | * @start offset to the base address of the flash chip |
| 358 | * @len length of the verified area |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 359 | * @return 0 for success, -1 for failure |
| 360 | */ |
Mark Marshall | f20b7be | 2014-05-09 21:16:21 +0000 | [diff] [blame] | 361 | int verify_range(struct flashctx *flash, const uint8_t *cmpbuf, unsigned int start, unsigned int len) |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 362 | { |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 363 | if (!len) |
Stefan Tauner | df64a42 | 2014-05-27 00:06:14 +0000 | [diff] [blame] | 364 | return -1; |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 365 | |
Edward O'Callaghan | 6ae640b | 2021-11-17 14:24:04 +1100 | [diff] [blame] | 366 | if (start + len > flash->chip->total_size * 1024) { |
| 367 | msg_gerr("Error: %s called with start 0x%x + len 0x%x >" |
| 368 | " total_size 0x%x\n", __func__, start, len, |
| 369 | flash->chip->total_size * 1024); |
| 370 | return -1; |
| 371 | } |
| 372 | |
Stefan Tauner | df64a42 | 2014-05-27 00:06:14 +0000 | [diff] [blame] | 373 | uint8_t *readbuf = malloc(len); |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 374 | if (!readbuf) { |
Edward O'Callaghan | a31a572 | 2022-11-12 12:05:36 +1100 | [diff] [blame] | 375 | msg_gerr("Out of memory!\n"); |
Stefan Tauner | df64a42 | 2014-05-27 00:06:14 +0000 | [diff] [blame] | 376 | return -1; |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 377 | } |
| 378 | |
Edward O'Callaghan | 6ae640b | 2021-11-17 14:24:04 +1100 | [diff] [blame] | 379 | int ret = flash->chip->read(flash, readbuf, start, len); |
Carl-Daniel Hailfinger | d836941 | 2010-11-16 17:21:58 +0000 | [diff] [blame] | 380 | if (ret) { |
| 381 | msg_gerr("Verification impossible because read failed " |
| 382 | "at 0x%x (len 0x%x)\n", start, len); |
Stefan Tauner | df64a42 | 2014-05-27 00:06:14 +0000 | [diff] [blame] | 383 | ret = -1; |
| 384 | goto out_free; |
Carl-Daniel Hailfinger | d836941 | 2010-11-16 17:21:58 +0000 | [diff] [blame] | 385 | } |
| 386 | |
Stefan Tauner | 78ffbea | 2012-10-27 15:36:56 +0000 | [diff] [blame] | 387 | ret = compare_range(cmpbuf, readbuf, start, len); |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 388 | out_free: |
| 389 | free(readbuf); |
| 390 | return ret; |
| 391 | } |
| 392 | |
Stefan Tauner | 0243745 | 2013-04-01 19:34:53 +0000 | [diff] [blame] | 393 | /* Helper function for need_erase() that focuses on granularities of gran bytes. */ |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 394 | static int need_erase_gran_bytes(const uint8_t *have, const uint8_t *want, unsigned int len, |
| 395 | unsigned int gran, const uint8_t erased_value) |
Stefan Tauner | 0243745 | 2013-04-01 19:34:53 +0000 | [diff] [blame] | 396 | { |
| 397 | unsigned int i, j, limit; |
| 398 | for (j = 0; j < len / gran; j++) { |
| 399 | limit = min (gran, len - j * gran); |
| 400 | /* Are 'have' and 'want' identical? */ |
| 401 | if (!memcmp(have + j * gran, want + j * gran, limit)) |
| 402 | continue; |
| 403 | /* have needs to be in erased state. */ |
| 404 | for (i = 0; i < limit; i++) |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 405 | if (have[j * gran + i] != erased_value) |
Stefan Tauner | 0243745 | 2013-04-01 19:34:53 +0000 | [diff] [blame] | 406 | return 1; |
| 407 | } |
| 408 | return 0; |
| 409 | } |
| 410 | |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 411 | /* |
Carl-Daniel Hailfinger | e8e369f | 2010-03-08 00:42:32 +0000 | [diff] [blame] | 412 | * Check if the buffer @have can be programmed to the content of @want without |
| 413 | * erasing. This is only possible if all chunks of size @gran are either kept |
| 414 | * as-is or changed from an all-ones state to any other state. |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 415 | * |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 416 | * Warning: This function assumes that @have and @want point to naturally |
| 417 | * aligned regions. |
Carl-Daniel Hailfinger | e8e369f | 2010-03-08 00:42:32 +0000 | [diff] [blame] | 418 | * |
| 419 | * @have buffer with current content |
| 420 | * @want buffer with desired content |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 421 | * @len length of the checked area |
Carl-Daniel Hailfinger | e8e369f | 2010-03-08 00:42:32 +0000 | [diff] [blame] | 422 | * @gran write granularity (enum, not count) |
| 423 | * @return 0 if no erase is needed, 1 otherwise |
| 424 | */ |
Edward O'Callaghan | a180509 | 2022-05-16 11:10:36 +1000 | [diff] [blame] | 425 | static int need_erase(const uint8_t *have, const uint8_t *want, unsigned int len, |
| 426 | enum write_granularity gran, const uint8_t erased_value) |
Carl-Daniel Hailfinger | e8e369f | 2010-03-08 00:42:32 +0000 | [diff] [blame] | 427 | { |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 428 | int result = 0; |
Stefan Tauner | 0243745 | 2013-04-01 19:34:53 +0000 | [diff] [blame] | 429 | unsigned int i; |
Carl-Daniel Hailfinger | e8e369f | 2010-03-08 00:42:32 +0000 | [diff] [blame] | 430 | |
| 431 | switch (gran) { |
| 432 | case write_gran_1bit: |
| 433 | for (i = 0; i < len; i++) |
| 434 | if ((have[i] & want[i]) != want[i]) { |
| 435 | result = 1; |
| 436 | break; |
| 437 | } |
| 438 | break; |
| 439 | case write_gran_1byte: |
| 440 | for (i = 0; i < len; i++) |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 441 | if ((have[i] != want[i]) && (have[i] != erased_value)) { |
Carl-Daniel Hailfinger | e8e369f | 2010-03-08 00:42:32 +0000 | [diff] [blame] | 442 | result = 1; |
| 443 | break; |
| 444 | } |
| 445 | break; |
Paul Kocialkowski | c8305e1 | 2015-10-16 02:16:20 +0000 | [diff] [blame] | 446 | case write_gran_128bytes: |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 447 | result = need_erase_gran_bytes(have, want, len, 128, erased_value); |
Paul Kocialkowski | c8305e1 | 2015-10-16 02:16:20 +0000 | [diff] [blame] | 448 | break; |
Carl-Daniel Hailfinger | e8e369f | 2010-03-08 00:42:32 +0000 | [diff] [blame] | 449 | case write_gran_256bytes: |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 450 | result = need_erase_gran_bytes(have, want, len, 256, erased_value); |
Stefan Tauner | 0243745 | 2013-04-01 19:34:53 +0000 | [diff] [blame] | 451 | break; |
| 452 | case write_gran_264bytes: |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 453 | result = need_erase_gran_bytes(have, want, len, 264, erased_value); |
Stefan Tauner | 0243745 | 2013-04-01 19:34:53 +0000 | [diff] [blame] | 454 | break; |
| 455 | case write_gran_512bytes: |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 456 | result = need_erase_gran_bytes(have, want, len, 512, erased_value); |
Stefan Tauner | 0243745 | 2013-04-01 19:34:53 +0000 | [diff] [blame] | 457 | break; |
| 458 | case write_gran_528bytes: |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 459 | result = need_erase_gran_bytes(have, want, len, 528, erased_value); |
Stefan Tauner | 0243745 | 2013-04-01 19:34:53 +0000 | [diff] [blame] | 460 | break; |
| 461 | case write_gran_1024bytes: |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 462 | result = need_erase_gran_bytes(have, want, len, 1024, erased_value); |
Stefan Tauner | 0243745 | 2013-04-01 19:34:53 +0000 | [diff] [blame] | 463 | break; |
| 464 | case write_gran_1056bytes: |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 465 | result = need_erase_gran_bytes(have, want, len, 1056, erased_value); |
Carl-Daniel Hailfinger | e8e369f | 2010-03-08 00:42:32 +0000 | [diff] [blame] | 466 | break; |
Carl-Daniel Hailfinger | 1b0e9fc | 2014-06-16 22:36:17 +0000 | [diff] [blame] | 467 | case write_gran_1byte_implicit_erase: |
| 468 | /* Do not erase, handle content changes from anything->0xff by writing 0xff. */ |
| 469 | result = 0; |
| 470 | break; |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 471 | default: |
| 472 | msg_cerr("%s: Unsupported granularity! Please report a bug at " |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 473 | "flashrom-stable@flashrom.org\n", __func__); |
Carl-Daniel Hailfinger | e8e369f | 2010-03-08 00:42:32 +0000 | [diff] [blame] | 474 | } |
| 475 | return result; |
| 476 | } |
| 477 | |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 478 | /** |
| 479 | * Check if the buffer @have needs to be programmed to get the content of @want. |
| 480 | * If yes, return 1 and fill in first_start with the start address of the |
| 481 | * write operation and first_len with the length of the first to-be-written |
| 482 | * chunk. If not, return 0 and leave first_start and first_len undefined. |
| 483 | * |
| 484 | * Warning: This function assumes that @have and @want point to naturally |
| 485 | * aligned regions. |
| 486 | * |
| 487 | * @have buffer with current content |
| 488 | * @want buffer with desired content |
| 489 | * @len length of the checked area |
| 490 | * @gran write granularity (enum, not count) |
Carl-Daniel Hailfinger | 12d6d82 | 2010-11-05 14:51:59 +0000 | [diff] [blame] | 491 | * @first_start offset of the first byte which needs to be written (passed in |
| 492 | * value is increased by the offset of the first needed write |
| 493 | * relative to have/want or unchanged if no write is needed) |
| 494 | * @return length of the first contiguous area which needs to be written |
| 495 | * 0 if no write is needed |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 496 | * |
| 497 | * FIXME: This function needs a parameter which tells it about coalescing |
| 498 | * in relation to the max write length of the programmer and the max write |
| 499 | * length of the chip. |
| 500 | */ |
Mark Marshall | f20b7be | 2014-05-09 21:16:21 +0000 | [diff] [blame] | 501 | static unsigned int get_next_write(const uint8_t *have, const uint8_t *want, unsigned int len, |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 502 | unsigned int *first_start, |
| 503 | enum write_granularity gran) |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 504 | { |
Felix Singer | f25447e | 2022-08-19 02:44:28 +0200 | [diff] [blame] | 505 | bool need_write = false; |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 506 | unsigned int rel_start = 0, first_len = 0; |
| 507 | unsigned int i, limit, stride; |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 508 | |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 509 | switch (gran) { |
| 510 | case write_gran_1bit: |
| 511 | case write_gran_1byte: |
Carl-Daniel Hailfinger | 1b0e9fc | 2014-06-16 22:36:17 +0000 | [diff] [blame] | 512 | case write_gran_1byte_implicit_erase: |
Carl-Daniel Hailfinger | 12d6d82 | 2010-11-05 14:51:59 +0000 | [diff] [blame] | 513 | stride = 1; |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 514 | break; |
Paul Kocialkowski | c8305e1 | 2015-10-16 02:16:20 +0000 | [diff] [blame] | 515 | case write_gran_128bytes: |
| 516 | stride = 128; |
| 517 | break; |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 518 | case write_gran_256bytes: |
Carl-Daniel Hailfinger | 12d6d82 | 2010-11-05 14:51:59 +0000 | [diff] [blame] | 519 | stride = 256; |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 520 | break; |
Stefan Tauner | 0243745 | 2013-04-01 19:34:53 +0000 | [diff] [blame] | 521 | case write_gran_264bytes: |
| 522 | stride = 264; |
| 523 | break; |
| 524 | case write_gran_512bytes: |
| 525 | stride = 512; |
| 526 | break; |
| 527 | case write_gran_528bytes: |
| 528 | stride = 528; |
| 529 | break; |
| 530 | case write_gran_1024bytes: |
| 531 | stride = 1024; |
| 532 | break; |
| 533 | case write_gran_1056bytes: |
| 534 | stride = 1056; |
| 535 | break; |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 536 | default: |
| 537 | msg_cerr("%s: Unsupported granularity! Please report a bug at " |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 538 | "flashrom-stable@flashrom.org\n", __func__); |
Carl-Daniel Hailfinger | 12d6d82 | 2010-11-05 14:51:59 +0000 | [diff] [blame] | 539 | /* Claim that no write was needed. A write with unknown |
| 540 | * granularity is too dangerous to try. |
| 541 | */ |
| 542 | return 0; |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 543 | } |
Carl-Daniel Hailfinger | 12d6d82 | 2010-11-05 14:51:59 +0000 | [diff] [blame] | 544 | for (i = 0; i < len / stride; i++) { |
| 545 | limit = min(stride, len - i * stride); |
| 546 | /* Are 'have' and 'want' identical? */ |
| 547 | if (memcmp(have + i * stride, want + i * stride, limit)) { |
| 548 | if (!need_write) { |
| 549 | /* First location where have and want differ. */ |
Felix Singer | f25447e | 2022-08-19 02:44:28 +0200 | [diff] [blame] | 550 | need_write = true; |
Carl-Daniel Hailfinger | 12d6d82 | 2010-11-05 14:51:59 +0000 | [diff] [blame] | 551 | rel_start = i * stride; |
| 552 | } |
| 553 | } else { |
| 554 | if (need_write) { |
| 555 | /* First location where have and want |
| 556 | * do not differ anymore. |
| 557 | */ |
Carl-Daniel Hailfinger | 12d6d82 | 2010-11-05 14:51:59 +0000 | [diff] [blame] | 558 | break; |
| 559 | } |
| 560 | } |
| 561 | } |
Carl-Daniel Hailfinger | 202bf53 | 2010-12-06 13:05:44 +0000 | [diff] [blame] | 562 | if (need_write) |
Carl-Daniel Hailfinger | 12d6d82 | 2010-11-05 14:51:59 +0000 | [diff] [blame] | 563 | first_len = min(i * stride - rel_start, len); |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 564 | *first_start += rel_start; |
Carl-Daniel Hailfinger | 12d6d82 | 2010-11-05 14:51:59 +0000 | [diff] [blame] | 565 | return first_len; |
Carl-Daniel Hailfinger | 6e2ea32 | 2010-11-04 01:04:27 +0000 | [diff] [blame] | 566 | } |
| 567 | |
Martin Roth | f6c1cb1 | 2022-03-15 10:55:25 -0600 | [diff] [blame] | 568 | /* Returns the number of buses commonly supported by the current programmer and flash chip where the latter |
Stefan Tauner | 9e3a698 | 2014-08-15 17:17:59 +0000 | [diff] [blame] | 569 | * can not be completely accessed due to size/address limits of the programmer. */ |
| 570 | unsigned int count_max_decode_exceedings(const struct flashctx *flash) |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 571 | { |
Stefan Tauner | 9e3a698 | 2014-08-15 17:17:59 +0000 | [diff] [blame] | 572 | unsigned int limitexceeded = 0; |
| 573 | uint32_t size = flash->chip->total_size * 1024; |
| 574 | enum chipbustype buses = flash->mst->buses_supported & flash->chip->bustype; |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 575 | |
| 576 | if ((buses & BUS_PARALLEL) && (max_rom_decode.parallel < size)) { |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 577 | limitexceeded++; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 578 | msg_pdbg("Chip size %u kB is bigger than supported " |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 579 | "size %u kB of chipset/board/programmer " |
| 580 | "for %s interface, " |
| 581 | "probe/read/erase/write may fail. ", size / 1024, |
| 582 | max_rom_decode.parallel / 1024, "Parallel"); |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 583 | } |
Carl-Daniel Hailfinger | 1a22795 | 2011-07-27 07:13:06 +0000 | [diff] [blame] | 584 | if ((buses & BUS_LPC) && (max_rom_decode.lpc < size)) { |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 585 | limitexceeded++; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 586 | msg_pdbg("Chip size %u kB is bigger than supported " |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 587 | "size %u kB of chipset/board/programmer " |
| 588 | "for %s interface, " |
| 589 | "probe/read/erase/write may fail. ", size / 1024, |
| 590 | max_rom_decode.lpc / 1024, "LPC"); |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 591 | } |
Carl-Daniel Hailfinger | 1a22795 | 2011-07-27 07:13:06 +0000 | [diff] [blame] | 592 | if ((buses & BUS_FWH) && (max_rom_decode.fwh < size)) { |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 593 | limitexceeded++; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 594 | msg_pdbg("Chip size %u kB is bigger than supported " |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 595 | "size %u kB of chipset/board/programmer " |
| 596 | "for %s interface, " |
| 597 | "probe/read/erase/write may fail. ", size / 1024, |
| 598 | max_rom_decode.fwh / 1024, "FWH"); |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 599 | } |
Carl-Daniel Hailfinger | 1a22795 | 2011-07-27 07:13:06 +0000 | [diff] [blame] | 600 | if ((buses & BUS_SPI) && (max_rom_decode.spi < size)) { |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 601 | limitexceeded++; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 602 | msg_pdbg("Chip size %u kB is bigger than supported " |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 603 | "size %u kB of chipset/board/programmer " |
| 604 | "for %s interface, " |
| 605 | "probe/read/erase/write may fail. ", size / 1024, |
| 606 | max_rom_decode.spi / 1024, "SPI"); |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 607 | } |
Stefan Tauner | 9e3a698 | 2014-08-15 17:17:59 +0000 | [diff] [blame] | 608 | return limitexceeded; |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 609 | } |
| 610 | |
Stefan Tauner | 4e32ec1 | 2014-08-30 23:39:51 +0000 | [diff] [blame] | 611 | void unmap_flash(struct flashctx *flash) |
| 612 | { |
| 613 | if (flash->virtual_registers != (chipaddr)ERROR_PTR) { |
| 614 | programmer_unmap_flash_region((void *)flash->virtual_registers, flash->chip->total_size * 1024); |
| 615 | flash->physical_registers = 0; |
| 616 | flash->virtual_registers = (chipaddr)ERROR_PTR; |
| 617 | } |
| 618 | |
| 619 | if (flash->virtual_memory != (chipaddr)ERROR_PTR) { |
| 620 | programmer_unmap_flash_region((void *)flash->virtual_memory, flash->chip->total_size * 1024); |
| 621 | flash->physical_memory = 0; |
| 622 | flash->virtual_memory = (chipaddr)ERROR_PTR; |
| 623 | } |
| 624 | } |
| 625 | |
| 626 | int map_flash(struct flashctx *flash) |
| 627 | { |
| 628 | /* Init pointers to the fail-safe state to distinguish them later from legit values. */ |
| 629 | flash->virtual_memory = (chipaddr)ERROR_PTR; |
| 630 | flash->virtual_registers = (chipaddr)ERROR_PTR; |
| 631 | |
| 632 | /* FIXME: This avoids mapping (and unmapping) of flash chip definitions with size 0. |
| 633 | * These are used for various probing-related hacks that would not map successfully anyway and should be |
| 634 | * removed ASAP. */ |
| 635 | if (flash->chip->total_size == 0) |
| 636 | return 0; |
| 637 | |
| 638 | const chipsize_t size = flash->chip->total_size * 1024; |
| 639 | uintptr_t base = flashbase ? flashbase : (0xffffffff - size + 1); |
| 640 | void *addr = programmer_map_flash_region(flash->chip->name, base, size); |
| 641 | if (addr == ERROR_PTR) { |
| 642 | msg_perr("Could not map flash chip %s at 0x%0*" PRIxPTR ".\n", |
| 643 | flash->chip->name, PRIxPTR_WIDTH, base); |
| 644 | return 1; |
| 645 | } |
| 646 | flash->physical_memory = base; |
| 647 | flash->virtual_memory = (chipaddr)addr; |
| 648 | |
| 649 | /* FIXME: Special function registers normally live 4 MByte below flash space, but it might be somewhere |
| 650 | * completely different on some chips and programmers, or not mappable at all. |
| 651 | * Ignore these problems for now and always report success. */ |
| 652 | if (flash->chip->feature_bits & FEATURE_REGISTERMAP) { |
| 653 | base = 0xffffffff - size - 0x400000 + 1; |
| 654 | addr = programmer_map_flash_region("flash chip registers", base, size); |
| 655 | if (addr == ERROR_PTR) { |
| 656 | msg_pdbg2("Could not map flash chip registers %s at 0x%0*" PRIxPTR ".\n", |
| 657 | flash->chip->name, PRIxPTR_WIDTH, base); |
| 658 | return 0; |
| 659 | } |
| 660 | flash->physical_registers = base; |
| 661 | flash->virtual_registers = (chipaddr)addr; |
| 662 | } |
| 663 | return 0; |
| 664 | } |
| 665 | |
Nico Huber | 2d62572 | 2016-05-03 10:48:02 +0200 | [diff] [blame] | 666 | /* |
| 667 | * Return a string corresponding to the bustype parameter. |
| 668 | * Memory is obtained with malloc() and must be freed with free() by the caller. |
| 669 | */ |
| 670 | char *flashbuses_to_text(enum chipbustype bustype) |
| 671 | { |
| 672 | char *ret = calloc(1, 1); |
| 673 | /* |
| 674 | * FIXME: Once all chipsets and flash chips have been updated, NONSPI |
| 675 | * will cease to exist and should be eliminated here as well. |
| 676 | */ |
| 677 | if (bustype == BUS_NONSPI) { |
| 678 | ret = strcat_realloc(ret, "Non-SPI, "); |
| 679 | } else { |
| 680 | if (bustype & BUS_PARALLEL) |
| 681 | ret = strcat_realloc(ret, "Parallel, "); |
| 682 | if (bustype & BUS_LPC) |
| 683 | ret = strcat_realloc(ret, "LPC, "); |
| 684 | if (bustype & BUS_FWH) |
| 685 | ret = strcat_realloc(ret, "FWH, "); |
| 686 | if (bustype & BUS_SPI) |
| 687 | ret = strcat_realloc(ret, "SPI, "); |
| 688 | if (bustype & BUS_PROG) |
| 689 | ret = strcat_realloc(ret, "Programmer-specific, "); |
| 690 | if (bustype == BUS_NONE) |
| 691 | ret = strcat_realloc(ret, "None, "); |
| 692 | } |
| 693 | /* Kill last comma. */ |
| 694 | ret[strlen(ret) - 2] = '\0'; |
| 695 | ret = realloc(ret, strlen(ret) + 1); |
| 696 | return ret; |
| 697 | } |
| 698 | |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 699 | int probe_flash(struct registered_master *mst, int startchip, struct flashctx *flash, int force) |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 700 | { |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 701 | const struct flashchip *chip; |
Carl-Daniel Hailfinger | 115d390 | 2009-10-31 01:53:09 +0000 | [diff] [blame] | 702 | enum chipbustype buses_common; |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 703 | char *tmp; |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 704 | |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 705 | for (chip = flashchips + startchip; chip && chip->name; chip++) { |
| 706 | if (chip_to_probe && strcmp(chip->name, chip_to_probe) != 0) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 707 | continue; |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 708 | buses_common = mst->buses_supported & chip->bustype; |
Carl-Daniel Hailfinger | c40cff7 | 2011-12-20 00:19:29 +0000 | [diff] [blame] | 709 | if (!buses_common) |
Carl-Daniel Hailfinger | 6573b74 | 2011-06-17 22:38:53 +0000 | [diff] [blame] | 710 | continue; |
Mike Banon | 31b5e3b | 2018-01-15 01:10:00 +0300 | [diff] [blame] | 711 | /* Only probe for SPI25 chips by default. */ |
| 712 | if (chip->bustype == BUS_SPI && !chip_to_probe && chip->spi_cmd_set != SPI25) |
| 713 | continue; |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 714 | msg_gdbg("Probing for %s %s, %d kB: ", chip->vendor, chip->name, chip->total_size); |
| 715 | if (!chip->probe && !force) { |
| 716 | msg_gdbg("failed! flashrom has no probe function for this flash chip.\n"); |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 717 | continue; |
| 718 | } |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 719 | |
Carl-Daniel Hailfinger | 4c82318 | 2011-05-04 00:39:50 +0000 | [diff] [blame] | 720 | /* Start filling in the dynamic data. */ |
Angel Pons | 690a944 | 2021-06-07 12:33:53 +0200 | [diff] [blame] | 721 | flash->chip = calloc(1, sizeof(*flash->chip)); |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 722 | if (!flash->chip) { |
| 723 | msg_gerr("Out of memory!\n"); |
| 724 | exit(1); |
| 725 | } |
Angel Pons | 7e13456 | 2021-06-07 13:29:13 +0200 | [diff] [blame] | 726 | *flash->chip = *chip; |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 727 | flash->mst = mst; |
Carl-Daniel Hailfinger | 4c82318 | 2011-05-04 00:39:50 +0000 | [diff] [blame] | 728 | |
Stefan Tauner | 4e32ec1 | 2014-08-30 23:39:51 +0000 | [diff] [blame] | 729 | if (map_flash(flash) != 0) |
Martin Schiller | 57a3b73 | 2017-11-23 06:24:57 +0100 | [diff] [blame] | 730 | goto notfound; |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 731 | |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 732 | /* We handle a forced match like a real match, we just avoid probing. Note that probe_flash() |
| 733 | * is only called with force=1 after normal probing failed. |
| 734 | */ |
Peter Stuge | 27c3e2d | 2008-07-02 17:15:47 +0000 | [diff] [blame] | 735 | if (force) |
| 736 | break; |
Stefan Reinauer | fcb6368 | 2006-03-16 16:57:41 +0000 | [diff] [blame] | 737 | |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 738 | if (flash->chip->probe(flash) != 1) |
Peter Stuge | 483b8f0 | 2008-09-03 23:10:05 +0000 | [diff] [blame] | 739 | goto notfound; |
| 740 | |
Carl-Daniel Hailfinger | 4c82318 | 2011-05-04 00:39:50 +0000 | [diff] [blame] | 741 | /* If this is the first chip found, accept it. |
| 742 | * If this is not the first chip found, accept it only if it is |
Stefan Tauner | ac1b4c8 | 2012-02-17 14:51:04 +0000 | [diff] [blame] | 743 | * a non-generic match. SFDP and CFI are generic matches. |
| 744 | * startchip==0 means this call to probe_flash() is the first |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 745 | * one for this programmer interface (master) and thus no other chip has |
Stefan Tauner | ac1b4c8 | 2012-02-17 14:51:04 +0000 | [diff] [blame] | 746 | * been found on this interface. |
Carl-Daniel Hailfinger | 4c82318 | 2011-05-04 00:39:50 +0000 | [diff] [blame] | 747 | */ |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 748 | if (startchip == 0 && flash->chip->model_id == SFDP_DEVICE_ID) { |
Stefan Tauner | ac1b4c8 | 2012-02-17 14:51:04 +0000 | [diff] [blame] | 749 | msg_cinfo("===\n" |
| 750 | "SFDP has autodetected a flash chip which is " |
| 751 | "not natively supported by flashrom yet.\n"); |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 752 | if (count_usable_erasers(flash) == 0) |
Stefan Tauner | ac1b4c8 | 2012-02-17 14:51:04 +0000 | [diff] [blame] | 753 | msg_cinfo("The standard operations read and " |
| 754 | "verify should work, but to support " |
| 755 | "erase, write and all other " |
| 756 | "possible features"); |
| 757 | else |
| 758 | msg_cinfo("All standard operations (read, " |
| 759 | "verify, erase and write) should " |
| 760 | "work, but to support all possible " |
| 761 | "features"); |
| 762 | |
Stefan Tauner | b4e06bd | 2012-08-20 00:24:22 +0000 | [diff] [blame] | 763 | msg_cinfo(" we need to add them manually.\n" |
| 764 | "You can help us by mailing us the output of the following command to " |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 765 | "flashrom-stable@flashrom.org:\n" |
Stefan Tauner | b4e06bd | 2012-08-20 00:24:22 +0000 | [diff] [blame] | 766 | "'flashrom -VV [plus the -p/--programmer parameter]'\n" |
| 767 | "Thanks for your help!\n" |
Stefan Tauner | ac1b4c8 | 2012-02-17 14:51:04 +0000 | [diff] [blame] | 768 | "===\n"); |
| 769 | } |
| 770 | |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 771 | /* First flash chip detected on this bus. */ |
| 772 | if (startchip == 0) |
Peter Stuge | 27c3e2d | 2008-07-02 17:15:47 +0000 | [diff] [blame] | 773 | break; |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 774 | /* Not the first flash chip detected on this bus, but not a generic match either. */ |
| 775 | if ((flash->chip->model_id != GENERIC_DEVICE_ID) && (flash->chip->model_id != SFDP_DEVICE_ID)) |
| 776 | break; |
| 777 | /* Not the first flash chip detected on this bus, and it's just a generic match. Ignore it. */ |
Peter Stuge | 483b8f0 | 2008-09-03 23:10:05 +0000 | [diff] [blame] | 778 | notfound: |
Stefan Tauner | 4e32ec1 | 2014-08-30 23:39:51 +0000 | [diff] [blame] | 779 | unmap_flash(flash); |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 780 | free(flash->chip); |
| 781 | flash->chip = NULL; |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 782 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 783 | |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 784 | if (!flash->chip) |
Carl-Daniel Hailfinger | 4c82318 | 2011-05-04 00:39:50 +0000 | [diff] [blame] | 785 | return -1; |
Peter Stuge | 27c3e2d | 2008-07-02 17:15:47 +0000 | [diff] [blame] | 786 | |
Nico Huber | 5bd990c | 2019-06-16 19:46:46 +0200 | [diff] [blame] | 787 | /* Fill default layout covering the whole chip. */ |
Nico Huber | 671c0f0 | 2019-06-16 20:17:19 +0200 | [diff] [blame] | 788 | if (flashrom_layout_new(&flash->default_layout) || |
Nico Huber | 5bd990c | 2019-06-16 19:46:46 +0200 | [diff] [blame] | 789 | flashrom_layout_add_region(flash->default_layout, |
Nico Huber | 92e0b62 | 2019-06-15 15:55:11 +0200 | [diff] [blame] | 790 | 0, flash->chip->total_size * 1024 - 1, "complete flash") || |
Nico Huber | 5bd990c | 2019-06-16 19:46:46 +0200 | [diff] [blame] | 791 | flashrom_layout_include_region(flash->default_layout, "complete flash")) |
| 792 | return -1; |
Stefan Reinauer | 051e236 | 2011-01-19 06:21:54 +0000 | [diff] [blame] | 793 | |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 794 | tmp = flashbuses_to_text(flash->chip->bustype); |
Stefan Tauner | 4e32ec1 | 2014-08-30 23:39:51 +0000 | [diff] [blame] | 795 | msg_cinfo("%s %s flash chip \"%s\" (%d kB, %s) ", force ? "Assuming" : "Found", |
| 796 | flash->chip->vendor, flash->chip->name, flash->chip->total_size, tmp); |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 797 | free(tmp); |
Stefan Tauner | 4e32ec1 | 2014-08-30 23:39:51 +0000 | [diff] [blame] | 798 | #if CONFIG_INTERNAL == 1 |
Thomas Heijligen | c7e5b8b | 2021-06-01 14:21:41 +0200 | [diff] [blame] | 799 | if (programmer->map_flash_region == physmap) |
Stefan Tauner | 4e32ec1 | 2014-08-30 23:39:51 +0000 | [diff] [blame] | 800 | msg_cinfo("mapped at physical address 0x%0*" PRIxPTR ".\n", |
| 801 | PRIxPTR_WIDTH, flash->physical_memory); |
| 802 | else |
| 803 | #endif |
Thomas Heijligen | c7e5b8b | 2021-06-01 14:21:41 +0200 | [diff] [blame] | 804 | msg_cinfo("on %s.\n", programmer->name); |
Uwe Hermann | 9899cad | 2009-06-28 21:47:57 +0000 | [diff] [blame] | 805 | |
Stefan Tauner | 4e32ec1 | 2014-08-30 23:39:51 +0000 | [diff] [blame] | 806 | /* Flash registers may more likely not be mapped if the chip was forced. |
| 807 | * Lock info may be stored in registers, so avoid lock info printing. */ |
Carl-Daniel Hailfinger | 859f3f0 | 2010-12-02 21:59:42 +0000 | [diff] [blame] | 808 | if (!force) |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 809 | if (flash->chip->printlock) |
| 810 | flash->chip->printlock(flash); |
Sean Nelson | 6e0b912 | 2010-02-19 00:52:10 +0000 | [diff] [blame] | 811 | |
Stefan Tauner | 4e32ec1 | 2014-08-30 23:39:51 +0000 | [diff] [blame] | 812 | /* Get out of the way for later runs. */ |
| 813 | unmap_flash(flash); |
| 814 | |
Carl-Daniel Hailfinger | 4c82318 | 2011-05-04 00:39:50 +0000 | [diff] [blame] | 815 | /* Return position of matching chip. */ |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 816 | return chip - flashchips; |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 817 | } |
| 818 | |
Stefan Tauner | 96658be | 2014-05-26 22:05:31 +0000 | [diff] [blame] | 819 | /* Even if an error is found, the function will keep going and check the rest. */ |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 820 | static int selfcheck_eraseblocks(const struct flashchip *chip) |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 821 | { |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 822 | int i, j, k; |
| 823 | int ret = 0; |
Aarya Chaumal | 478e179 | 2022-06-04 01:34:44 +0530 | [diff] [blame] | 824 | unsigned int prev_eraseblock_count = chip->total_size * 1024; |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 825 | |
| 826 | for (k = 0; k < NUM_ERASEFUNCTIONS; k++) { |
| 827 | unsigned int done = 0; |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 828 | struct block_eraser eraser = chip->block_erasers[k]; |
Aarya Chaumal | 478e179 | 2022-06-04 01:34:44 +0530 | [diff] [blame] | 829 | unsigned int curr_eraseblock_count = 0; |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 830 | |
| 831 | for (i = 0; i < NUM_ERASEREGIONS; i++) { |
| 832 | /* Blocks with zero size are bugs in flashchips.c. */ |
| 833 | if (eraser.eraseblocks[i].count && |
| 834 | !eraser.eraseblocks[i].size) { |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 835 | msg_gerr("ERROR: Flash chip %s erase function %i region %i has size 0.\n" |
| 836 | "Please report a bug at flashrom-stable@flashrom.org\n", |
| 837 | chip->name, k, i); |
Carl-Daniel Hailfinger | 415afcf | 2010-01-19 06:42:46 +0000 | [diff] [blame] | 838 | ret = 1; |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 839 | } |
| 840 | /* Blocks with zero count are bugs in flashchips.c. */ |
| 841 | if (!eraser.eraseblocks[i].count && |
| 842 | eraser.eraseblocks[i].size) { |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 843 | msg_gerr("ERROR: Flash chip %s erase function %i region %i has count 0.\n" |
| 844 | "Please report a bug at flashrom-stable@flashrom.org\n", |
| 845 | chip->name, k, i); |
Carl-Daniel Hailfinger | 415afcf | 2010-01-19 06:42:46 +0000 | [diff] [blame] | 846 | ret = 1; |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 847 | } |
| 848 | done += eraser.eraseblocks[i].count * |
| 849 | eraser.eraseblocks[i].size; |
Aarya Chaumal | 478e179 | 2022-06-04 01:34:44 +0530 | [diff] [blame] | 850 | curr_eraseblock_count += eraser.eraseblocks[i].count; |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 851 | } |
Carl-Daniel Hailfinger | 415afcf | 2010-01-19 06:42:46 +0000 | [diff] [blame] | 852 | /* Empty eraseblock definition with erase function. */ |
| 853 | if (!done && eraser.block_erase) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 854 | msg_gspew("Strange: Empty eraseblock definition with " |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 855 | "non-empty erase function. Not an error.\n"); |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 856 | if (!done) |
| 857 | continue; |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 858 | if (done != chip->total_size * 1024) { |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 859 | msg_gerr("ERROR: Flash chip %s erase function %i " |
| 860 | "region walking resulted in 0x%06x bytes total," |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 861 | " expected 0x%06x bytes.\n" |
| 862 | "Please report a bug at flashrom-stable@flashrom.org\n", |
| 863 | chip->name, k, done, chip->total_size * 1024); |
Carl-Daniel Hailfinger | 415afcf | 2010-01-19 06:42:46 +0000 | [diff] [blame] | 864 | ret = 1; |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 865 | } |
Carl-Daniel Hailfinger | 415afcf | 2010-01-19 06:42:46 +0000 | [diff] [blame] | 866 | if (!eraser.block_erase) |
| 867 | continue; |
| 868 | /* Check if there are identical erase functions for different |
| 869 | * layouts. That would imply "magic" erase functions. The |
| 870 | * easiest way to check this is with function pointers. |
| 871 | */ |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 872 | for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) { |
Carl-Daniel Hailfinger | 415afcf | 2010-01-19 06:42:46 +0000 | [diff] [blame] | 873 | if (eraser.block_erase == |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 874 | chip->block_erasers[j].block_erase) { |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 875 | msg_gerr("ERROR: Flash chip %s erase function %i and %i are identical.\n" |
| 876 | "Please report a bug at flashrom-stable@flashrom.org\n", |
| 877 | chip->name, k, j); |
Carl-Daniel Hailfinger | 415afcf | 2010-01-19 06:42:46 +0000 | [diff] [blame] | 878 | ret = 1; |
| 879 | } |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 880 | } |
Aarya Chaumal | 478e179 | 2022-06-04 01:34:44 +0530 | [diff] [blame] | 881 | if(curr_eraseblock_count > prev_eraseblock_count) |
| 882 | { |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 883 | msg_gerr("ERROR: Flash chip %s erase function %i is not in order.\n" |
| 884 | "Please report a bug at flashrom-stable@flashrom.org\n", |
| 885 | chip->name, k); |
Aarya Chaumal | 478e179 | 2022-06-04 01:34:44 +0530 | [diff] [blame] | 886 | ret = 1; |
| 887 | } |
| 888 | prev_eraseblock_count = curr_eraseblock_count; |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 889 | } |
Carl-Daniel Hailfinger | 415afcf | 2010-01-19 06:42:46 +0000 | [diff] [blame] | 890 | return ret; |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 891 | } |
| 892 | |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 893 | static int check_block_eraser(const struct flashctx *flash, int k, int log) |
Carl-Daniel Hailfinger | dce73ae | 2010-12-05 15:14:44 +0000 | [diff] [blame] | 894 | { |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 895 | struct block_eraser eraser = flash->chip->block_erasers[k]; |
Carl-Daniel Hailfinger | dce73ae | 2010-12-05 15:14:44 +0000 | [diff] [blame] | 896 | |
| 897 | if (!eraser.block_erase && !eraser.eraseblocks[0].count) { |
| 898 | if (log) |
| 899 | msg_cdbg("not defined. "); |
| 900 | return 1; |
| 901 | } |
| 902 | if (!eraser.block_erase && eraser.eraseblocks[0].count) { |
| 903 | if (log) |
| 904 | msg_cdbg("eraseblock layout is known, but matching " |
Stefan Tauner | 355cbfd | 2011-05-28 02:37:14 +0000 | [diff] [blame] | 905 | "block erase function is not implemented. "); |
Carl-Daniel Hailfinger | dce73ae | 2010-12-05 15:14:44 +0000 | [diff] [blame] | 906 | return 1; |
| 907 | } |
| 908 | if (eraser.block_erase && !eraser.eraseblocks[0].count) { |
| 909 | if (log) |
| 910 | msg_cdbg("block erase function found, but " |
Stefan Tauner | 355cbfd | 2011-05-28 02:37:14 +0000 | [diff] [blame] | 911 | "eraseblock layout is not defined. "); |
Carl-Daniel Hailfinger | dce73ae | 2010-12-05 15:14:44 +0000 | [diff] [blame] | 912 | return 1; |
| 913 | } |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 914 | // TODO: Once erase functions are annotated with allowed buses, check that as well. |
Carl-Daniel Hailfinger | dce73ae | 2010-12-05 15:14:44 +0000 | [diff] [blame] | 915 | return 0; |
| 916 | } |
| 917 | |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 918 | /** |
| 919 | * @brief Reads the included layout regions into a buffer. |
| 920 | * |
| 921 | * If there is no layout set in the given flash context, the whole chip will |
| 922 | * be read. |
| 923 | * |
| 924 | * @param flashctx Flash context to be used. |
| 925 | * @param buffer Buffer of full chip size to read into. |
| 926 | * @return 0 on success, |
| 927 | * 1 if any read fails. |
| 928 | */ |
| 929 | static int read_by_layout(struct flashctx *const flashctx, uint8_t *const buffer) |
| 930 | { |
| 931 | const struct flashrom_layout *const layout = get_layout(flashctx); |
Nico Huber | 5ca5523 | 2019-06-15 22:29:08 +0200 | [diff] [blame] | 932 | const struct romentry *entry = NULL; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 933 | |
Nico Huber | 5ca5523 | 2019-06-15 22:29:08 +0200 | [diff] [blame] | 934 | while ((entry = layout_next_included(layout, entry))) { |
| 935 | const chipoff_t region_start = entry->start; |
| 936 | const chipsize_t region_len = entry->end - entry->start + 1; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 937 | |
| 938 | if (flashctx->chip->read(flashctx, buffer + region_start, region_start, region_len)) |
| 939 | return 1; |
| 940 | } |
| 941 | return 0; |
| 942 | } |
| 943 | |
| 944 | typedef int (*erasefn_t)(struct flashctx *, unsigned int addr, unsigned int len); |
| 945 | /** |
| 946 | * @private |
| 947 | * |
| 948 | * For read-erase-write, `curcontents` and `newcontents` shall point |
| 949 | * to buffers of the chip's size. Both are supposed to be prefilled |
| 950 | * with at least the included layout regions of the current flash |
| 951 | * contents (`curcontents`) and the data to be written to the flash |
| 952 | * (`newcontents`). |
| 953 | * |
| 954 | * For erase, `curcontents` and `newcontents` shall be NULL-pointers. |
| 955 | * |
| 956 | * The `chipoff_t` values are used internally by `walk_by_layout()`. |
| 957 | */ |
| 958 | struct walk_info { |
| 959 | uint8_t *curcontents; |
| 960 | const uint8_t *newcontents; |
| 961 | chipoff_t region_start; |
| 962 | chipoff_t region_end; |
| 963 | chipoff_t erase_start; |
| 964 | chipoff_t erase_end; |
| 965 | }; |
| 966 | /* returns 0 on success, 1 to retry with another erase function, 2 for immediate abort */ |
| 967 | typedef int (*per_blockfn_t)(struct flashctx *, const struct walk_info *, erasefn_t); |
| 968 | |
| 969 | static int walk_eraseblocks(struct flashctx *const flashctx, |
| 970 | struct walk_info *const info, |
| 971 | const size_t erasefunction, const per_blockfn_t per_blockfn) |
| 972 | { |
| 973 | int ret; |
| 974 | size_t i, j; |
| 975 | bool first = true; |
| 976 | struct block_eraser *const eraser = &flashctx->chip->block_erasers[erasefunction]; |
| 977 | |
| 978 | info->erase_start = 0; |
| 979 | for (i = 0; i < NUM_ERASEREGIONS; ++i) { |
| 980 | /* count==0 for all automatically initialized array |
| 981 | members so the loop below won't be executed for them. */ |
| 982 | for (j = 0; j < eraser->eraseblocks[i].count; ++j, info->erase_start = info->erase_end + 1) { |
| 983 | info->erase_end = info->erase_start + eraser->eraseblocks[i].size - 1; |
| 984 | |
| 985 | /* Skip any eraseblock that is completely outside the current region. */ |
| 986 | if (info->erase_end < info->region_start) |
| 987 | continue; |
| 988 | if (info->region_end < info->erase_start) |
| 989 | break; |
| 990 | |
| 991 | /* Print this for every block except the first one. */ |
| 992 | if (first) |
| 993 | first = false; |
| 994 | else |
| 995 | msg_cdbg(", "); |
| 996 | msg_cdbg("0x%06x-0x%06x:", info->erase_start, info->erase_end); |
| 997 | |
| 998 | ret = per_blockfn(flashctx, info, eraser->block_erase); |
| 999 | if (ret) |
| 1000 | return ret; |
| 1001 | } |
| 1002 | if (info->region_end < info->erase_start) |
| 1003 | break; |
| 1004 | } |
| 1005 | msg_cdbg("\n"); |
| 1006 | return 0; |
| 1007 | } |
| 1008 | |
| 1009 | static int walk_by_layout(struct flashctx *const flashctx, struct walk_info *const info, |
| 1010 | const per_blockfn_t per_blockfn) |
| 1011 | { |
| 1012 | const struct flashrom_layout *const layout = get_layout(flashctx); |
Nico Huber | 5ca5523 | 2019-06-15 22:29:08 +0200 | [diff] [blame] | 1013 | const struct romentry *entry = NULL; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1014 | |
| 1015 | all_skipped = true; |
| 1016 | msg_cinfo("Erasing and writing flash chip... "); |
| 1017 | |
Nico Huber | 5ca5523 | 2019-06-15 22:29:08 +0200 | [diff] [blame] | 1018 | while ((entry = layout_next_included(layout, entry))) { |
| 1019 | info->region_start = entry->start; |
| 1020 | info->region_end = entry->end; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1021 | |
| 1022 | size_t j; |
| 1023 | int error = 1; /* retry as long as it's 1 */ |
| 1024 | for (j = 0; j < NUM_ERASEFUNCTIONS; ++j) { |
| 1025 | if (j != 0) |
| 1026 | msg_cinfo("Looking for another erase function.\n"); |
| 1027 | msg_cdbg("Trying erase function %zi... ", j); |
| 1028 | if (check_block_eraser(flashctx, j, 1)) |
| 1029 | continue; |
| 1030 | |
| 1031 | error = walk_eraseblocks(flashctx, info, j, per_blockfn); |
| 1032 | if (error != 1) |
| 1033 | break; |
| 1034 | |
| 1035 | if (info->curcontents) { |
| 1036 | msg_cinfo("Reading current flash chip contents... "); |
| 1037 | if (read_by_layout(flashctx, info->curcontents)) { |
| 1038 | /* Now we are truly screwed. Read failed as well. */ |
| 1039 | msg_cerr("Can't read anymore! Aborting.\n"); |
| 1040 | /* We have no idea about the flash chip contents, so |
| 1041 | retrying with another erase function is pointless. */ |
| 1042 | error = 2; |
| 1043 | break; |
| 1044 | } |
| 1045 | msg_cinfo("done. "); |
| 1046 | } |
| 1047 | } |
| 1048 | if (error == 1) |
| 1049 | msg_cinfo("No usable erase functions left.\n"); |
| 1050 | if (error) { |
| 1051 | msg_cerr("FAILED!\n"); |
| 1052 | return 1; |
| 1053 | } |
| 1054 | } |
| 1055 | if (all_skipped) |
| 1056 | msg_cinfo("\nWarning: Chip content is identical to the requested image.\n"); |
| 1057 | msg_cinfo("Erase/write done.\n"); |
| 1058 | return 0; |
| 1059 | } |
| 1060 | |
| 1061 | static int erase_block(struct flashctx *const flashctx, |
| 1062 | const struct walk_info *const info, const erasefn_t erasefn) |
| 1063 | { |
| 1064 | const unsigned int erase_len = info->erase_end + 1 - info->erase_start; |
Nico Huber | 6e61e0c | 2019-01-23 17:07:49 +0100 | [diff] [blame] | 1065 | const bool region_unaligned = info->region_start > info->erase_start || |
| 1066 | info->erase_end > info->region_end; |
| 1067 | uint8_t *backup_contents = NULL, *erased_contents = NULL; |
| 1068 | int ret = 2; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1069 | |
Nico Huber | 6e61e0c | 2019-01-23 17:07:49 +0100 | [diff] [blame] | 1070 | /* |
| 1071 | * If the region is not erase-block aligned, merge current flash con- |
| 1072 | * tents into a new buffer `backup_contents`. |
| 1073 | */ |
| 1074 | if (region_unaligned) { |
| 1075 | backup_contents = malloc(erase_len); |
| 1076 | erased_contents = malloc(erase_len); |
| 1077 | if (!backup_contents || !erased_contents) { |
| 1078 | msg_cerr("Out of memory!\n"); |
| 1079 | ret = 1; |
| 1080 | goto _free_ret; |
| 1081 | } |
| 1082 | memset(backup_contents, ERASED_VALUE(flashctx), erase_len); |
| 1083 | memset(erased_contents, ERASED_VALUE(flashctx), erase_len); |
| 1084 | |
| 1085 | msg_cdbg("R"); |
| 1086 | /* Merge data preceding the current region. */ |
| 1087 | if (info->region_start > info->erase_start) { |
| 1088 | const chipoff_t start = info->erase_start; |
| 1089 | const chipsize_t len = info->region_start - info->erase_start; |
| 1090 | if (flashctx->chip->read(flashctx, backup_contents, start, len)) { |
| 1091 | msg_cerr("Can't read! Aborting.\n"); |
| 1092 | goto _free_ret; |
| 1093 | } |
| 1094 | } |
| 1095 | /* Merge data following the current region. */ |
| 1096 | if (info->erase_end > info->region_end) { |
| 1097 | const chipoff_t start = info->region_end + 1; |
| 1098 | const chipoff_t rel_start = start - info->erase_start; /* within this erase block */ |
| 1099 | const chipsize_t len = info->erase_end - info->region_end; |
| 1100 | if (flashctx->chip->read(flashctx, backup_contents + rel_start, start, len)) { |
| 1101 | msg_cerr("Can't read! Aborting.\n"); |
| 1102 | goto _free_ret; |
| 1103 | } |
| 1104 | } |
| 1105 | } |
| 1106 | |
| 1107 | ret = 1; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1108 | all_skipped = false; |
| 1109 | |
| 1110 | msg_cdbg("E"); |
| 1111 | if (erasefn(flashctx, info->erase_start, erase_len)) |
Nico Huber | 6e61e0c | 2019-01-23 17:07:49 +0100 | [diff] [blame] | 1112 | goto _free_ret; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1113 | if (check_erased_range(flashctx, info->erase_start, erase_len)) { |
| 1114 | msg_cerr("ERASE FAILED!\n"); |
Nico Huber | 6e61e0c | 2019-01-23 17:07:49 +0100 | [diff] [blame] | 1115 | goto _free_ret; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1116 | } |
Nico Huber | 6e61e0c | 2019-01-23 17:07:49 +0100 | [diff] [blame] | 1117 | |
| 1118 | if (region_unaligned) { |
| 1119 | unsigned int starthere = 0, lenhere = 0, writecount = 0; |
| 1120 | /* get_next_write() sets starthere to a new value after the call. */ |
| 1121 | while ((lenhere = get_next_write(erased_contents + starthere, backup_contents + starthere, |
| 1122 | erase_len - starthere, &starthere, flashctx->chip->gran))) { |
| 1123 | if (!writecount++) |
| 1124 | msg_cdbg("W"); |
| 1125 | /* Needs the partial write function signature. */ |
| 1126 | if (flashctx->chip->write(flashctx, backup_contents + starthere, |
| 1127 | info->erase_start + starthere, lenhere)) |
| 1128 | goto _free_ret; |
| 1129 | starthere += lenhere; |
| 1130 | } |
| 1131 | } |
| 1132 | |
| 1133 | ret = 0; |
| 1134 | |
| 1135 | _free_ret: |
| 1136 | free(erased_contents); |
| 1137 | free(backup_contents); |
| 1138 | return ret; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1139 | } |
| 1140 | |
| 1141 | /** |
| 1142 | * @brief Erases the included layout regions. |
| 1143 | * |
| 1144 | * If there is no layout set in the given flash context, the whole chip will |
| 1145 | * be erased. |
| 1146 | * |
| 1147 | * @param flashctx Flash context to be used. |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1148 | * @return 0 on success, |
| 1149 | * 1 if all available erase functions failed. |
| 1150 | */ |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1151 | static int erase_by_layout(struct flashctx *const flashctx) |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1152 | { |
| 1153 | struct walk_info info = { 0 }; |
| 1154 | return walk_by_layout(flashctx, &info, &erase_block); |
| 1155 | } |
| 1156 | |
| 1157 | static int read_erase_write_block(struct flashctx *const flashctx, |
| 1158 | const struct walk_info *const info, const erasefn_t erasefn) |
| 1159 | { |
| 1160 | const chipsize_t erase_len = info->erase_end + 1 - info->erase_start; |
| 1161 | const bool region_unaligned = info->region_start > info->erase_start || |
| 1162 | info->erase_end > info->region_end; |
| 1163 | const uint8_t *newcontents = NULL; |
| 1164 | int ret = 2; |
| 1165 | |
| 1166 | /* |
| 1167 | * If the region is not erase-block aligned, merge current flash con- |
| 1168 | * tents into `info->curcontents` and a new buffer `newc`. The former |
| 1169 | * is necessary since we have no guarantee that the full erase block |
| 1170 | * was already read into `info->curcontents`. For the latter a new |
| 1171 | * buffer is used since `info->newcontents` might contain data for |
| 1172 | * other unaligned regions that touch this erase block too. |
| 1173 | */ |
| 1174 | if (region_unaligned) { |
| 1175 | msg_cdbg("R"); |
| 1176 | uint8_t *const newc = malloc(erase_len); |
| 1177 | if (!newc) { |
| 1178 | msg_cerr("Out of memory!\n"); |
| 1179 | return 1; |
| 1180 | } |
| 1181 | memcpy(newc, info->newcontents + info->erase_start, erase_len); |
| 1182 | |
| 1183 | /* Merge data preceding the current region. */ |
| 1184 | if (info->region_start > info->erase_start) { |
| 1185 | const chipoff_t start = info->erase_start; |
| 1186 | const chipsize_t len = info->region_start - info->erase_start; |
| 1187 | if (flashctx->chip->read(flashctx, newc, start, len)) { |
| 1188 | msg_cerr("Can't read! Aborting.\n"); |
| 1189 | goto _free_ret; |
| 1190 | } |
| 1191 | memcpy(info->curcontents + start, newc, len); |
| 1192 | } |
| 1193 | /* Merge data following the current region. */ |
| 1194 | if (info->erase_end > info->region_end) { |
| 1195 | const chipoff_t start = info->region_end + 1; |
| 1196 | const chipoff_t rel_start = start - info->erase_start; /* within this erase block */ |
| 1197 | const chipsize_t len = info->erase_end - info->region_end; |
| 1198 | if (flashctx->chip->read(flashctx, newc + rel_start, start, len)) { |
| 1199 | msg_cerr("Can't read! Aborting.\n"); |
| 1200 | goto _free_ret; |
| 1201 | } |
| 1202 | memcpy(info->curcontents + start, newc + rel_start, len); |
| 1203 | } |
| 1204 | |
| 1205 | newcontents = newc; |
| 1206 | } else { |
| 1207 | newcontents = info->newcontents + info->erase_start; |
| 1208 | } |
| 1209 | |
| 1210 | ret = 1; |
| 1211 | bool skipped = true; |
| 1212 | uint8_t *const curcontents = info->curcontents + info->erase_start; |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 1213 | const uint8_t erased_value = ERASED_VALUE(flashctx); |
David Hendricks | f9a3055 | 2015-05-23 20:30:30 -0700 | [diff] [blame] | 1214 | if (!(flashctx->chip->feature_bits & FEATURE_NO_ERASE) && |
| 1215 | need_erase(curcontents, newcontents, erase_len, flashctx->chip->gran, erased_value)) { |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1216 | if (erase_block(flashctx, info, erasefn)) |
| 1217 | goto _free_ret; |
| 1218 | /* Erase was successful. Adjust curcontents. */ |
Paul Kocialkowski | 995f755 | 2018-01-15 01:06:09 +0300 | [diff] [blame] | 1219 | memset(curcontents, erased_value, erase_len); |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1220 | skipped = false; |
| 1221 | } |
| 1222 | |
| 1223 | unsigned int starthere = 0, lenhere = 0, writecount = 0; |
| 1224 | /* get_next_write() sets starthere to a new value after the call. */ |
| 1225 | while ((lenhere = get_next_write(curcontents + starthere, newcontents + starthere, |
| 1226 | erase_len - starthere, &starthere, flashctx->chip->gran))) { |
| 1227 | if (!writecount++) |
| 1228 | msg_cdbg("W"); |
| 1229 | /* Needs the partial write function signature. */ |
| 1230 | if (flashctx->chip->write(flashctx, newcontents + starthere, |
| 1231 | info->erase_start + starthere, lenhere)) |
| 1232 | goto _free_ret; |
| 1233 | starthere += lenhere; |
| 1234 | skipped = false; |
| 1235 | } |
| 1236 | if (skipped) |
| 1237 | msg_cdbg("S"); |
| 1238 | else |
| 1239 | all_skipped = false; |
| 1240 | |
| 1241 | /* Update curcontents, other regions with overlapping erase blocks |
| 1242 | might rely on this. */ |
| 1243 | memcpy(curcontents, newcontents, erase_len); |
| 1244 | ret = 0; |
| 1245 | |
| 1246 | _free_ret: |
| 1247 | if (region_unaligned) |
| 1248 | free((void *)newcontents); |
| 1249 | return ret; |
| 1250 | } |
| 1251 | |
| 1252 | /** |
| 1253 | * @brief Writes the included layout regions from a given image. |
| 1254 | * |
| 1255 | * If there is no layout set in the given flash context, the whole image |
| 1256 | * will be written. |
| 1257 | * |
| 1258 | * @param flashctx Flash context to be used. |
| 1259 | * @param curcontents A buffer of full chip size with current chip contents of included regions. |
| 1260 | * @param newcontents The new image to be written. |
| 1261 | * @return 0 on success, |
| 1262 | * 1 if anything has gone wrong. |
| 1263 | */ |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1264 | static int write_by_layout(struct flashctx *const flashctx, |
| 1265 | void *const curcontents, const void *const newcontents) |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1266 | { |
| 1267 | struct walk_info info; |
| 1268 | info.curcontents = curcontents; |
| 1269 | info.newcontents = newcontents; |
| 1270 | return walk_by_layout(flashctx, &info, read_erase_write_block); |
| 1271 | } |
| 1272 | |
| 1273 | /** |
| 1274 | * @brief Compares the included layout regions with content from a buffer. |
| 1275 | * |
| 1276 | * If there is no layout set in the given flash context, the whole chip's |
| 1277 | * contents will be compared. |
| 1278 | * |
| 1279 | * @param flashctx Flash context to be used. |
Nico Huber | 74d09d4 | 2019-06-16 03:27:26 +0200 | [diff] [blame] | 1280 | * @param layout Flash layout information. |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1281 | * @param curcontents A buffer of full chip size to read current chip contents into. |
| 1282 | * @param newcontents The new image to compare to. |
| 1283 | * @return 0 on success, |
| 1284 | * 1 if reading failed, |
| 1285 | * 3 if the contents don't match. |
| 1286 | */ |
Nico Huber | 74d09d4 | 2019-06-16 03:27:26 +0200 | [diff] [blame] | 1287 | static int verify_by_layout( |
| 1288 | struct flashctx *const flashctx, |
| 1289 | const struct flashrom_layout *const layout, |
| 1290 | void *const curcontents, const uint8_t *const newcontents) |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1291 | { |
Nico Huber | 5ca5523 | 2019-06-15 22:29:08 +0200 | [diff] [blame] | 1292 | const struct romentry *entry = NULL; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1293 | |
Nico Huber | 5ca5523 | 2019-06-15 22:29:08 +0200 | [diff] [blame] | 1294 | while ((entry = layout_next_included(layout, entry))) { |
| 1295 | const chipoff_t region_start = entry->start; |
| 1296 | const chipsize_t region_len = entry->end - entry->start + 1; |
Nico Huber | 7af0e79 | 2016-04-29 16:40:15 +0200 | [diff] [blame] | 1297 | |
| 1298 | if (flashctx->chip->read(flashctx, curcontents + region_start, region_start, region_len)) |
| 1299 | return 1; |
| 1300 | if (compare_range(newcontents + region_start, curcontents + region_start, |
| 1301 | region_start, region_len)) |
| 1302 | return 3; |
| 1303 | } |
| 1304 | return 0; |
| 1305 | } |
| 1306 | |
Stefan Tauner | 136388f | 2013-07-15 10:47:53 +0000 | [diff] [blame] | 1307 | static void nonfatal_help_message(void) |
Carl-Daniel Hailfinger | 42d38a9 | 2010-10-19 22:06:20 +0000 | [diff] [blame] | 1308 | { |
Stefan Tauner | a58f6e9 | 2014-05-10 09:25:44 +0000 | [diff] [blame] | 1309 | msg_gerr("Good, writing to the flash chip apparently didn't do anything.\n"); |
Stefan Tauner | 136388f | 2013-07-15 10:47:53 +0000 | [diff] [blame] | 1310 | #if CONFIG_INTERNAL == 1 |
Thomas Heijligen | c7e5b8b | 2021-06-01 14:21:41 +0200 | [diff] [blame] | 1311 | if (programmer == &programmer_internal) |
Stefan Tauner | 136388f | 2013-07-15 10:47:53 +0000 | [diff] [blame] | 1312 | msg_gerr("This means we have to add special support for your board, programmer or flash\n" |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 1313 | "chip. Please report this to the mailing list at flashrom-stable@flashrom.org or\n" |
| 1314 | "on IRC (see https://www.flashrom.org/Contact for details), thanks!\n" |
Stefan Tauner | 136388f | 2013-07-15 10:47:53 +0000 | [diff] [blame] | 1315 | "-------------------------------------------------------------------------------\n" |
| 1316 | "You may now reboot or simply leave the machine running.\n"); |
| 1317 | else |
| 1318 | #endif |
| 1319 | msg_gerr("Please check the connections (especially those to write protection pins) between\n" |
| 1320 | "the programmer and the flash chip. If you think the error is caused by flashrom\n" |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 1321 | "please report this to the mailing list at flashrom-stable@flashrom.org or on IRC\n" |
| 1322 | "(see https://www.flashrom.org/Contact for details), thanks!\n"); |
Carl-Daniel Hailfinger | 42d38a9 | 2010-10-19 22:06:20 +0000 | [diff] [blame] | 1323 | } |
| 1324 | |
Edward O'Callaghan | c72d20a | 2021-12-13 12:30:03 +1100 | [diff] [blame] | 1325 | void emergency_help_message(void) |
Carl-Daniel Hailfinger | 8ab49e7 | 2009-08-19 13:55:34 +0000 | [diff] [blame] | 1326 | { |
Stefan Tauner | 136388f | 2013-07-15 10:47:53 +0000 | [diff] [blame] | 1327 | msg_gerr("Your flash chip is in an unknown state.\n"); |
| 1328 | #if CONFIG_INTERNAL == 1 |
Thomas Heijligen | c7e5b8b | 2021-06-01 14:21:41 +0200 | [diff] [blame] | 1329 | if (programmer == &programmer_internal) |
Angel Pons | 1900e1d | 2021-07-02 12:42:23 +0200 | [diff] [blame] | 1330 | msg_gerr("Get help on IRC (see https://www.flashrom.org/Contact) or mail\n" |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 1331 | "flashrom-stable@flashrom.org with the subject \"FAILED: <your board name>\"!\n" |
Stefan Tauner | 136388f | 2013-07-15 10:47:53 +0000 | [diff] [blame] | 1332 | "-------------------------------------------------------------------------------\n" |
| 1333 | "DO NOT REBOOT OR POWEROFF!\n"); |
| 1334 | else |
| 1335 | #endif |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 1336 | msg_gerr("Please report this to the mailing list at flashrom-stable@flashrom.org\n" |
| 1337 | "or on IRC (see https://www.flashrom.org/Contact for details), thanks!\n"); |
Carl-Daniel Hailfinger | 8ab49e7 | 2009-08-19 13:55:34 +0000 | [diff] [blame] | 1338 | } |
| 1339 | |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 1340 | void list_programmers_linebreak(int startcol, int cols, int paren) |
| 1341 | { |
| 1342 | const char *pname; |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 1343 | int pnamelen; |
| 1344 | int remaining = 0, firstline = 1; |
Thomas Heijligen | 9163b81 | 2021-06-01 14:25:01 +0200 | [diff] [blame] | 1345 | size_t p; |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 1346 | int i; |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 1347 | |
Thomas Heijligen | d45cb59 | 2021-05-19 14:12:18 +0200 | [diff] [blame] | 1348 | for (p = 0; p < programmer_table_size; p++) { |
Thomas Heijligen | 633d6db | 2021-03-31 19:09:44 +0200 | [diff] [blame] | 1349 | pname = programmer_table[p]->name; |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 1350 | pnamelen = strlen(pname); |
| 1351 | if (remaining - pnamelen - 2 < 0) { |
| 1352 | if (firstline) |
| 1353 | firstline = 0; |
| 1354 | else |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 1355 | msg_ginfo("\n"); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 1356 | for (i = 0; i < startcol; i++) |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 1357 | msg_ginfo(" "); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 1358 | remaining = cols - startcol; |
| 1359 | } else { |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 1360 | msg_ginfo(" "); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 1361 | remaining--; |
| 1362 | } |
| 1363 | if (paren && (p == 0)) { |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 1364 | msg_ginfo("("); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 1365 | remaining--; |
| 1366 | } |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 1367 | msg_ginfo("%s", pname); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 1368 | remaining -= pnamelen; |
Thomas Heijligen | d45cb59 | 2021-05-19 14:12:18 +0200 | [diff] [blame] | 1369 | if (p < programmer_table_size - 1) { |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 1370 | msg_ginfo(","); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 1371 | remaining--; |
| 1372 | } else { |
| 1373 | if (paren) |
Carl-Daniel Hailfinger | 901a3ba | 2012-05-14 22:54:58 +0000 | [diff] [blame] | 1374 | msg_ginfo(")"); |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 1375 | } |
| 1376 | } |
| 1377 | } |
| 1378 | |
Carl-Daniel Hailfinger | 552420b | 2009-12-24 02:15:55 +0000 | [diff] [blame] | 1379 | int selfcheck(void) |
| 1380 | { |
Stefan Tauner | 96658be | 2014-05-26 22:05:31 +0000 | [diff] [blame] | 1381 | unsigned int i; |
Stefan Tauner | a6d9648 | 2012-12-26 19:51:23 +0000 | [diff] [blame] | 1382 | int ret = 0; |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 1383 | |
Thomas Heijligen | d45cb59 | 2021-05-19 14:12:18 +0200 | [diff] [blame] | 1384 | for (i = 0; i < programmer_table_size; i++) { |
Thomas Heijligen | 633d6db | 2021-03-31 19:09:44 +0200 | [diff] [blame] | 1385 | const struct programmer_entry *const p = programmer_table[i]; |
| 1386 | if (p == NULL) { |
| 1387 | msg_gerr("Programmer with index %d is NULL instead of a valid pointer!\n", i); |
| 1388 | ret = 1; |
| 1389 | continue; |
| 1390 | } |
| 1391 | if (p->name == NULL) { |
Stefan Tauner | a6d9648 | 2012-12-26 19:51:23 +0000 | [diff] [blame] | 1392 | msg_gerr("All programmers need a valid name, but the one with index %d does not!\n", i); |
| 1393 | ret = 1; |
| 1394 | /* This might hide other problems with this programmer, but allows for better error |
| 1395 | * messages below without jumping through hoops. */ |
| 1396 | continue; |
| 1397 | } |
Thomas Heijligen | 633d6db | 2021-03-31 19:09:44 +0200 | [diff] [blame] | 1398 | switch (p->type) { |
Stefan Tauner | af358d6 | 2012-12-27 18:40:26 +0000 | [diff] [blame] | 1399 | case USB: |
| 1400 | case PCI: |
| 1401 | case OTHER: |
Thomas Heijligen | 633d6db | 2021-03-31 19:09:44 +0200 | [diff] [blame] | 1402 | if (p->devs.note == NULL) { |
| 1403 | if (strcmp("internal", p->name) == 0) |
Stefan Tauner | af358d6 | 2012-12-27 18:40:26 +0000 | [diff] [blame] | 1404 | break; /* This one has its device list stored separately. */ |
| 1405 | msg_gerr("Programmer %s has neither a device list nor a textual description!\n", |
Thomas Heijligen | 633d6db | 2021-03-31 19:09:44 +0200 | [diff] [blame] | 1406 | p->name); |
Stefan Tauner | af358d6 | 2012-12-27 18:40:26 +0000 | [diff] [blame] | 1407 | ret = 1; |
| 1408 | } |
| 1409 | break; |
| 1410 | default: |
Thomas Heijligen | 633d6db | 2021-03-31 19:09:44 +0200 | [diff] [blame] | 1411 | msg_gerr("Programmer %s does not have a valid type set!\n", p->name); |
Stefan Tauner | af358d6 | 2012-12-27 18:40:26 +0000 | [diff] [blame] | 1412 | ret = 1; |
| 1413 | break; |
| 1414 | } |
Thomas Heijligen | 633d6db | 2021-03-31 19:09:44 +0200 | [diff] [blame] | 1415 | if (p->init == NULL) { |
| 1416 | msg_gerr("Programmer %s does not have a valid init function!\n", p->name); |
Stefan Tauner | a6d9648 | 2012-12-26 19:51:23 +0000 | [diff] [blame] | 1417 | ret = 1; |
| 1418 | } |
Thomas Heijligen | 633d6db | 2021-03-31 19:09:44 +0200 | [diff] [blame] | 1419 | if (p->delay == NULL) { |
| 1420 | msg_gerr("Programmer %s does not have a valid delay function!\n", p->name); |
Stefan Tauner | a6d9648 | 2012-12-26 19:51:23 +0000 | [diff] [blame] | 1421 | ret = 1; |
| 1422 | } |
Thomas Heijligen | 633d6db | 2021-03-31 19:09:44 +0200 | [diff] [blame] | 1423 | if (p->map_flash_region == NULL) { |
| 1424 | msg_gerr("Programmer %s does not have a valid map_flash_region function!\n", p->name); |
Stefan Tauner | a6d9648 | 2012-12-26 19:51:23 +0000 | [diff] [blame] | 1425 | ret = 1; |
| 1426 | } |
Thomas Heijligen | 633d6db | 2021-03-31 19:09:44 +0200 | [diff] [blame] | 1427 | if (p->unmap_flash_region == NULL) { |
| 1428 | msg_gerr("Programmer %s does not have a valid unmap_flash_region function!\n", p->name); |
Stefan Tauner | a6d9648 | 2012-12-26 19:51:23 +0000 | [diff] [blame] | 1429 | ret = 1; |
| 1430 | } |
| 1431 | } |
Stefan Tauner | 96658be | 2014-05-26 22:05:31 +0000 | [diff] [blame] | 1432 | |
| 1433 | /* It would be favorable if we could check for the correct layout (especially termination) of various |
| 1434 | * constant arrays: flashchips, chipset_enables, board_matches, boards_known, laptops_known. |
| 1435 | * They are all defined as externs in this compilation unit so we don't know their sizes which vary |
| 1436 | * depending on compiler flags, e.g. the target architecture, and can sometimes be 0. |
| 1437 | * For 'flashchips' we export the size explicitly to work around this and to be able to implement the |
| 1438 | * checks below. */ |
Stefan Tauner | 6697f71 | 2014-08-06 15:09:15 +0000 | [diff] [blame] | 1439 | if (flashchips_size <= 1 || flashchips[flashchips_size - 1].name != NULL) { |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 1440 | msg_gerr("Flashchips table miscompilation!\n"); |
| 1441 | ret = 1; |
Stefan Tauner | 96658be | 2014-05-26 22:05:31 +0000 | [diff] [blame] | 1442 | } else { |
| 1443 | for (i = 0; i < flashchips_size - 1; i++) { |
| 1444 | const struct flashchip *chip = &flashchips[i]; |
| 1445 | if (chip->vendor == NULL || chip->name == NULL || chip->bustype == BUS_NONE) { |
| 1446 | ret = 1; |
| 1447 | msg_gerr("ERROR: Some field of flash chip #%d (%s) is misconfigured.\n" |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 1448 | "Please report a bug at flashrom-stable@flashrom.org\n", i, |
Stefan Tauner | 96658be | 2014-05-26 22:05:31 +0000 | [diff] [blame] | 1449 | chip->name == NULL ? "unnamed" : chip->name); |
| 1450 | } |
| 1451 | if (selfcheck_eraseblocks(chip)) { |
| 1452 | ret = 1; |
| 1453 | } |
| 1454 | } |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 1455 | } |
Stefan Tauner | 7bcacb1 | 2011-05-26 01:35:19 +0000 | [diff] [blame] | 1456 | |
Stefan Tauner | 600576b | 2014-06-12 22:57:36 +0000 | [diff] [blame] | 1457 | #if CONFIG_INTERNAL == 1 |
| 1458 | ret |= selfcheck_board_enables(); |
| 1459 | #endif |
| 1460 | |
Stefan Tauner | 96658be | 2014-05-26 22:05:31 +0000 | [diff] [blame] | 1461 | /* TODO: implement similar sanity checks for other arrays where deemed necessary. */ |
Carl-Daniel Hailfinger | 293adf0 | 2010-01-18 08:14:43 +0000 | [diff] [blame] | 1462 | return ret; |
Carl-Daniel Hailfinger | 552420b | 2009-12-24 02:15:55 +0000 | [diff] [blame] | 1463 | } |
| 1464 | |
Edward O'Callaghan | acb24d4 | 2021-04-15 13:44:39 +1000 | [diff] [blame] | 1465 | /* FIXME: This function signature needs to be improved once prepare_flash_access() |
| 1466 | * has a better function signature. |
Carl-Daniel Hailfinger | 4306944 | 2010-10-15 00:01:14 +0000 | [diff] [blame] | 1467 | */ |
Jacob Garber | beeb8bc | 2019-06-21 15:24:17 -0600 | [diff] [blame] | 1468 | static int chip_safety_check(const struct flashctx *flash, int force, |
| 1469 | int read_it, int write_it, int erase_it, int verify_it) |
Carl-Daniel Hailfinger | 4306944 | 2010-10-15 00:01:14 +0000 | [diff] [blame] | 1470 | { |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 1471 | const struct flashchip *chip = flash->chip; |
| 1472 | |
Carl-Daniel Hailfinger | 4306944 | 2010-10-15 00:01:14 +0000 | [diff] [blame] | 1473 | if (!programmer_may_write && (write_it || erase_it)) { |
| 1474 | msg_perr("Write/erase is not working yet on your programmer in " |
| 1475 | "its current configuration.\n"); |
| 1476 | /* --force is the wrong approach, but it's the best we can do |
| 1477 | * until the generic programmer parameter parser is merged. |
| 1478 | */ |
| 1479 | if (!force) |
| 1480 | return 1; |
| 1481 | msg_cerr("Continuing anyway.\n"); |
| 1482 | } |
| 1483 | |
| 1484 | if (read_it || erase_it || write_it || verify_it) { |
| 1485 | /* Everything needs read. */ |
Stefan Tauner | 6455dff | 2014-05-26 00:36:24 +0000 | [diff] [blame] | 1486 | if (chip->tested.read == BAD) { |
Carl-Daniel Hailfinger | 4306944 | 2010-10-15 00:01:14 +0000 | [diff] [blame] | 1487 | msg_cerr("Read is not working on this chip. "); |
| 1488 | if (!force) |
| 1489 | return 1; |
| 1490 | msg_cerr("Continuing anyway.\n"); |
| 1491 | } |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 1492 | if (!chip->read) { |
Carl-Daniel Hailfinger | 4306944 | 2010-10-15 00:01:14 +0000 | [diff] [blame] | 1493 | msg_cerr("flashrom has no read function for this " |
| 1494 | "flash chip.\n"); |
| 1495 | return 1; |
| 1496 | } |
| 1497 | } |
| 1498 | if (erase_it || write_it) { |
| 1499 | /* Write needs erase. */ |
Stefan Tauner | 6455dff | 2014-05-26 00:36:24 +0000 | [diff] [blame] | 1500 | if (chip->tested.erase == NA) { |
| 1501 | msg_cerr("Erase is not possible on this chip.\n"); |
| 1502 | return 1; |
| 1503 | } |
| 1504 | if (chip->tested.erase == BAD) { |
Carl-Daniel Hailfinger | 4306944 | 2010-10-15 00:01:14 +0000 | [diff] [blame] | 1505 | msg_cerr("Erase is not working on this chip. "); |
| 1506 | if (!force) |
| 1507 | return 1; |
| 1508 | msg_cerr("Continuing anyway.\n"); |
| 1509 | } |
Sylvain "ythier" Hitier | 9db4551 | 2011-07-04 07:27:17 +0000 | [diff] [blame] | 1510 | if(count_usable_erasers(flash) == 0) { |
Stefan Tauner | 5368dca | 2011-07-01 00:19:12 +0000 | [diff] [blame] | 1511 | msg_cerr("flashrom has no erase function for this " |
| 1512 | "flash chip.\n"); |
| 1513 | return 1; |
| 1514 | } |
Carl-Daniel Hailfinger | 4306944 | 2010-10-15 00:01:14 +0000 | [diff] [blame] | 1515 | } |
| 1516 | if (write_it) { |
Stefan Tauner | 6455dff | 2014-05-26 00:36:24 +0000 | [diff] [blame] | 1517 | if (chip->tested.write == NA) { |
| 1518 | msg_cerr("Write is not possible on this chip.\n"); |
| 1519 | return 1; |
| 1520 | } |
| 1521 | if (chip->tested.write == BAD) { |
Carl-Daniel Hailfinger | 4306944 | 2010-10-15 00:01:14 +0000 | [diff] [blame] | 1522 | msg_cerr("Write is not working on this chip. "); |
| 1523 | if (!force) |
| 1524 | return 1; |
| 1525 | msg_cerr("Continuing anyway.\n"); |
| 1526 | } |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 1527 | if (!chip->write) { |
Carl-Daniel Hailfinger | 4306944 | 2010-10-15 00:01:14 +0000 | [diff] [blame] | 1528 | msg_cerr("flashrom has no write function for this " |
| 1529 | "flash chip.\n"); |
| 1530 | return 1; |
| 1531 | } |
| 1532 | } |
| 1533 | return 0; |
| 1534 | } |
| 1535 | |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 1536 | int prepare_flash_access(struct flashctx *const flash, |
| 1537 | const bool read_it, const bool write_it, |
| 1538 | const bool erase_it, const bool verify_it) |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1539 | { |
| 1540 | if (chip_safety_check(flash, flash->flags.force, read_it, write_it, erase_it, verify_it)) { |
| 1541 | msg_cerr("Aborting.\n"); |
| 1542 | return 1; |
| 1543 | } |
| 1544 | |
Nico Huber | e0ed412 | 2021-05-14 00:48:28 +0200 | [diff] [blame] | 1545 | if (layout_sanity_checks(flash)) { |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1546 | msg_cerr("Requested regions can not be handled. Aborting.\n"); |
| 1547 | return 1; |
| 1548 | } |
| 1549 | |
| 1550 | if (map_flash(flash) != 0) |
| 1551 | return 1; |
| 1552 | |
Nikolai Artemiev | 4ad4864 | 2020-11-05 13:54:27 +1100 | [diff] [blame] | 1553 | /* Initialize chip_restore_fn_count before chip unlock calls. */ |
| 1554 | flash->chip_restore_fn_count = 0; |
| 1555 | |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1556 | /* Given the existence of read locks, we want to unlock for read, |
| 1557 | erase and write. */ |
| 1558 | if (flash->chip->unlock) |
| 1559 | flash->chip->unlock(flash); |
| 1560 | |
Nico Huber | f43c654 | 2017-10-14 17:47:28 +0200 | [diff] [blame] | 1561 | flash->address_high_byte = -1; |
| 1562 | flash->in_4ba_mode = false; |
| 1563 | |
Nico Huber | dc5af54 | 2018-12-22 16:54:59 +0100 | [diff] [blame] | 1564 | /* Be careful about 4BA chips and broken masters */ |
| 1565 | if (flash->chip->total_size > 16 * 1024 && spi_master_no_4ba_modes(flash)) { |
| 1566 | /* If we can't use native instructions, bail out */ |
| 1567 | if ((flash->chip->feature_bits & FEATURE_4BA_NATIVE) != FEATURE_4BA_NATIVE |
| 1568 | || !spi_master_4ba(flash)) { |
| 1569 | msg_cerr("Programmer doesn't support this chip. Aborting.\n"); |
| 1570 | return 1; |
| 1571 | } |
| 1572 | } |
| 1573 | |
Ed Swierk | cc20a9b | 2017-07-03 13:17:18 -0700 | [diff] [blame] | 1574 | /* Enable/disable 4-byte addressing mode if flash chip supports it */ |
Nico Huber | 86bddb5 | 2018-03-13 18:14:52 +0100 | [diff] [blame] | 1575 | if (flash->chip->feature_bits & (FEATURE_4BA_ENTER | FEATURE_4BA_ENTER_WREN | FEATURE_4BA_ENTER_EAR7)) { |
Nico Huber | fe34d2a | 2017-11-10 21:10:20 +0100 | [diff] [blame] | 1576 | int ret; |
| 1577 | if (spi_master_4ba(flash)) |
| 1578 | ret = spi_enter_4ba(flash); |
| 1579 | else |
| 1580 | ret = spi_exit_4ba(flash); |
| 1581 | if (ret) { |
| 1582 | msg_cerr("Failed to set correct 4BA mode! Aborting.\n"); |
Ed Swierk | cc20a9b | 2017-07-03 13:17:18 -0700 | [diff] [blame] | 1583 | return 1; |
Boris Baykov | 7fe8569 | 2016-06-11 18:29:03 +0200 | [diff] [blame] | 1584 | } |
Boris Baykov | 9912718 | 2016-06-11 18:29:00 +0200 | [diff] [blame] | 1585 | } |
| 1586 | |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1587 | return 0; |
| 1588 | } |
| 1589 | |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 1590 | void finalize_flash_access(struct flashctx *const flash) |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1591 | { |
Nikolai Artemiev | 4ad4864 | 2020-11-05 13:54:27 +1100 | [diff] [blame] | 1592 | deregister_chip_restore(flash); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1593 | unmap_flash(flash); |
| 1594 | } |
| 1595 | |
| 1596 | /** |
| 1597 | * @addtogroup flashrom-flash |
| 1598 | * @{ |
| 1599 | */ |
| 1600 | |
| 1601 | /** |
| 1602 | * @brief Erase the specified ROM chip. |
| 1603 | * |
| 1604 | * If a layout is set in the given flash context, only included regions |
| 1605 | * will be erased. |
| 1606 | * |
| 1607 | * @param flashctx The context of the flash chip to erase. |
| 1608 | * @return 0 on success. |
| 1609 | */ |
| 1610 | int flashrom_flash_erase(struct flashctx *const flashctx) |
| 1611 | { |
| 1612 | if (prepare_flash_access(flashctx, false, false, true, false)) |
| 1613 | return 1; |
| 1614 | |
| 1615 | const int ret = erase_by_layout(flashctx); |
| 1616 | |
| 1617 | finalize_flash_access(flashctx); |
| 1618 | |
| 1619 | return ret; |
| 1620 | } |
| 1621 | |
| 1622 | /** @} */ /* end flashrom-flash */ |
| 1623 | |
| 1624 | /** |
| 1625 | * @defgroup flashrom-ops Operations |
| 1626 | * @{ |
| 1627 | */ |
| 1628 | |
| 1629 | /** |
| 1630 | * @brief Read the current image from the specified ROM chip. |
| 1631 | * |
| 1632 | * If a layout is set in the specified flash context, only included regions |
| 1633 | * will be read. |
| 1634 | * |
| 1635 | * @param flashctx The context of the flash chip. |
| 1636 | * @param buffer Target buffer to write image to. |
| 1637 | * @param buffer_len Size of target buffer in bytes. |
| 1638 | * @return 0 on success, |
| 1639 | * 2 if buffer_len is too short for the flash chip's contents, |
| 1640 | * or 1 on any other failure. |
| 1641 | */ |
| 1642 | int flashrom_image_read(struct flashctx *const flashctx, void *const buffer, const size_t buffer_len) |
| 1643 | { |
| 1644 | const size_t flash_size = flashctx->chip->total_size * 1024; |
| 1645 | |
| 1646 | if (flash_size > buffer_len) |
| 1647 | return 2; |
| 1648 | |
| 1649 | if (prepare_flash_access(flashctx, true, false, false, false)) |
| 1650 | return 1; |
| 1651 | |
| 1652 | msg_cinfo("Reading flash... "); |
| 1653 | |
| 1654 | int ret = 1; |
| 1655 | if (read_by_layout(flashctx, buffer)) { |
| 1656 | msg_cerr("Read operation failed!\n"); |
| 1657 | msg_cinfo("FAILED.\n"); |
| 1658 | goto _finalize_ret; |
| 1659 | } |
| 1660 | msg_cinfo("done.\n"); |
| 1661 | ret = 0; |
| 1662 | |
| 1663 | _finalize_ret: |
| 1664 | finalize_flash_access(flashctx); |
| 1665 | return ret; |
| 1666 | } |
| 1667 | |
| 1668 | static void combine_image_by_layout(const struct flashctx *const flashctx, |
| 1669 | uint8_t *const newcontents, const uint8_t *const oldcontents) |
| 1670 | { |
| 1671 | const struct flashrom_layout *const layout = get_layout(flashctx); |
Nico Huber | 3d7b1e3 | 2018-12-22 00:53:14 +0100 | [diff] [blame] | 1672 | const struct romentry *included; |
| 1673 | chipoff_t start = 0; |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1674 | |
Nico Huber | 3d7b1e3 | 2018-12-22 00:53:14 +0100 | [diff] [blame] | 1675 | while ((included = layout_next_included_region(layout, start))) { |
| 1676 | if (included->start > start) { |
| 1677 | /* copy everything up to the start of this included region */ |
| 1678 | memcpy(newcontents + start, oldcontents + start, included->start - start); |
| 1679 | } |
| 1680 | /* skip this included region */ |
| 1681 | start = included->end + 1; |
| 1682 | if (start == 0) |
| 1683 | return; |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1684 | } |
Nico Huber | 3d7b1e3 | 2018-12-22 00:53:14 +0100 | [diff] [blame] | 1685 | |
| 1686 | /* copy the rest of the chip */ |
| 1687 | const chipsize_t copy_len = flashctx->chip->total_size * 1024 - start; |
| 1688 | memcpy(newcontents + start, oldcontents + start, copy_len); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | /** |
| 1692 | * @brief Write the specified image to the ROM chip. |
| 1693 | * |
| 1694 | * If a layout is set in the specified flash context, only erase blocks |
| 1695 | * containing included regions will be touched. |
| 1696 | * |
| 1697 | * @param flashctx The context of the flash chip. |
Nico Huber | 1b172f2 | 2017-06-19 12:35:24 +0200 | [diff] [blame] | 1698 | * @param buffer Source buffer to read image from (may be altered for full verification). |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1699 | * @param buffer_len Size of source buffer in bytes. |
Paul Kocialkowski | f701f34 | 2018-01-15 01:10:36 +0300 | [diff] [blame] | 1700 | * @param refbuffer If given, assume flash chip contains same data as `refbuffer`. |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1701 | * @return 0 on success, |
| 1702 | * 4 if buffer_len doesn't match the size of the flash chip, |
| 1703 | * 3 if write was tried but nothing has changed, |
| 1704 | * 2 if write failed and flash contents changed, |
| 1705 | * or 1 on any other failure. |
| 1706 | */ |
Paul Kocialkowski | f701f34 | 2018-01-15 01:10:36 +0300 | [diff] [blame] | 1707 | int flashrom_image_write(struct flashctx *const flashctx, void *const buffer, const size_t buffer_len, |
| 1708 | const void *const refbuffer) |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1709 | { |
| 1710 | const size_t flash_size = flashctx->chip->total_size * 1024; |
| 1711 | const bool verify_all = flashctx->flags.verify_whole_chip; |
| 1712 | const bool verify = flashctx->flags.verify_after_write; |
Nico Huber | 74d09d4 | 2019-06-16 03:27:26 +0200 | [diff] [blame] | 1713 | const struct flashrom_layout *const verify_layout = |
| 1714 | verify_all ? get_default_layout(flashctx) : get_layout(flashctx); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1715 | |
| 1716 | if (buffer_len != flash_size) |
| 1717 | return 4; |
| 1718 | |
| 1719 | int ret = 1; |
| 1720 | |
| 1721 | uint8_t *const newcontents = buffer; |
Paul Kocialkowski | f701f34 | 2018-01-15 01:10:36 +0300 | [diff] [blame] | 1722 | const uint8_t *const refcontents = refbuffer; |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1723 | uint8_t *const curcontents = malloc(flash_size); |
| 1724 | uint8_t *oldcontents = NULL; |
| 1725 | if (verify_all) |
| 1726 | oldcontents = malloc(flash_size); |
| 1727 | if (!curcontents || (verify_all && !oldcontents)) { |
| 1728 | msg_gerr("Out of memory!\n"); |
| 1729 | goto _free_ret; |
| 1730 | } |
| 1731 | |
| 1732 | #if CONFIG_INTERNAL == 1 |
Thomas Heijligen | c7e5b8b | 2021-06-01 14:21:41 +0200 | [diff] [blame] | 1733 | if (programmer == &programmer_internal && cb_check_image(newcontents, flash_size) < 0) { |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1734 | if (flashctx->flags.force_boardmismatch) { |
| 1735 | msg_pinfo("Proceeding anyway because user forced us to.\n"); |
| 1736 | } else { |
| 1737 | msg_perr("Aborting. You can override this with " |
| 1738 | "-p internal:boardmismatch=force.\n"); |
| 1739 | goto _free_ret; |
| 1740 | } |
| 1741 | } |
| 1742 | #endif |
| 1743 | |
| 1744 | if (prepare_flash_access(flashctx, false, true, false, verify)) |
| 1745 | goto _free_ret; |
| 1746 | |
Paul Kocialkowski | f701f34 | 2018-01-15 01:10:36 +0300 | [diff] [blame] | 1747 | /* If given, assume flash chip contains same data as `refcontents`. */ |
| 1748 | if (refcontents) { |
| 1749 | msg_cinfo("Assuming old flash chip contents as ref-file...\n"); |
| 1750 | memcpy(curcontents, refcontents, flash_size); |
| 1751 | if (oldcontents) |
| 1752 | memcpy(oldcontents, refcontents, flash_size); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1753 | } else { |
Paul Kocialkowski | f701f34 | 2018-01-15 01:10:36 +0300 | [diff] [blame] | 1754 | /* |
| 1755 | * Read the whole chip to be able to check whether regions need to be |
| 1756 | * erased and to give better diagnostics in case write fails. |
| 1757 | * The alternative is to read only the regions which are to be |
| 1758 | * preserved, but in that case we might perform unneeded erase which |
| 1759 | * takes time as well. |
| 1760 | */ |
| 1761 | msg_cinfo("Reading old flash chip contents... "); |
| 1762 | if (verify_all) { |
| 1763 | if (flashctx->chip->read(flashctx, oldcontents, 0, flash_size)) { |
| 1764 | msg_cinfo("FAILED.\n"); |
| 1765 | goto _finalize_ret; |
| 1766 | } |
| 1767 | memcpy(curcontents, oldcontents, flash_size); |
| 1768 | } else { |
| 1769 | if (read_by_layout(flashctx, curcontents)) { |
| 1770 | msg_cinfo("FAILED.\n"); |
| 1771 | goto _finalize_ret; |
| 1772 | } |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1773 | } |
Paul Kocialkowski | f701f34 | 2018-01-15 01:10:36 +0300 | [diff] [blame] | 1774 | msg_cinfo("done.\n"); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1775 | } |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1776 | |
| 1777 | if (write_by_layout(flashctx, curcontents, newcontents)) { |
| 1778 | msg_cerr("Uh oh. Erase/write failed. "); |
| 1779 | ret = 2; |
| 1780 | if (verify_all) { |
| 1781 | msg_cerr("Checking if anything has changed.\n"); |
| 1782 | msg_cinfo("Reading current flash chip contents... "); |
| 1783 | if (!flashctx->chip->read(flashctx, curcontents, 0, flash_size)) { |
| 1784 | msg_cinfo("done.\n"); |
| 1785 | if (!memcmp(oldcontents, curcontents, flash_size)) { |
| 1786 | nonfatal_help_message(); |
| 1787 | goto _finalize_ret; |
| 1788 | } |
| 1789 | msg_cerr("Apparently at least some data has changed.\n"); |
| 1790 | } else |
| 1791 | msg_cerr("Can't even read anymore!\n"); |
| 1792 | emergency_help_message(); |
| 1793 | goto _finalize_ret; |
| 1794 | } else { |
| 1795 | msg_cerr("\n"); |
| 1796 | } |
| 1797 | emergency_help_message(); |
| 1798 | goto _finalize_ret; |
| 1799 | } |
| 1800 | |
| 1801 | /* Verify only if we actually changed something. */ |
| 1802 | if (verify && !all_skipped) { |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1803 | msg_cinfo("Verifying flash... "); |
| 1804 | |
| 1805 | /* Work around chips which need some time to calm down. */ |
| 1806 | programmer_delay(1000*1000); |
| 1807 | |
Nico Huber | 74d09d4 | 2019-06-16 03:27:26 +0200 | [diff] [blame] | 1808 | if (verify_all) |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1809 | combine_image_by_layout(flashctx, newcontents, oldcontents); |
Nico Huber | 74d09d4 | 2019-06-16 03:27:26 +0200 | [diff] [blame] | 1810 | ret = verify_by_layout(flashctx, verify_layout, curcontents, newcontents); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1811 | /* If we tried to write, and verification now fails, we |
| 1812 | might have an emergency situation. */ |
| 1813 | if (ret) |
| 1814 | emergency_help_message(); |
| 1815 | else |
| 1816 | msg_cinfo("VERIFIED.\n"); |
| 1817 | } else { |
| 1818 | /* We didn't change anything. */ |
| 1819 | ret = 0; |
| 1820 | } |
| 1821 | |
| 1822 | _finalize_ret: |
| 1823 | finalize_flash_access(flashctx); |
| 1824 | _free_ret: |
| 1825 | free(oldcontents); |
| 1826 | free(curcontents); |
| 1827 | return ret; |
| 1828 | } |
| 1829 | |
| 1830 | /** |
| 1831 | * @brief Verify the ROM chip's contents with the specified image. |
| 1832 | * |
| 1833 | * If a layout is set in the specified flash context, only included regions |
| 1834 | * will be verified. |
| 1835 | * |
| 1836 | * @param flashctx The context of the flash chip. |
| 1837 | * @param buffer Source buffer to verify with. |
| 1838 | * @param buffer_len Size of source buffer in bytes. |
| 1839 | * @return 0 on success, |
| 1840 | * 3 if the chip's contents don't match, |
| 1841 | * 2 if buffer_len doesn't match the size of the flash chip, |
| 1842 | * or 1 on any other failure. |
| 1843 | */ |
| 1844 | int flashrom_image_verify(struct flashctx *const flashctx, const void *const buffer, const size_t buffer_len) |
| 1845 | { |
Nico Huber | 74d09d4 | 2019-06-16 03:27:26 +0200 | [diff] [blame] | 1846 | const struct flashrom_layout *const layout = get_layout(flashctx); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1847 | const size_t flash_size = flashctx->chip->total_size * 1024; |
| 1848 | |
| 1849 | if (buffer_len != flash_size) |
| 1850 | return 2; |
| 1851 | |
| 1852 | const uint8_t *const newcontents = buffer; |
| 1853 | uint8_t *const curcontents = malloc(flash_size); |
| 1854 | if (!curcontents) { |
| 1855 | msg_gerr("Out of memory!\n"); |
| 1856 | return 1; |
| 1857 | } |
| 1858 | |
| 1859 | int ret = 1; |
| 1860 | |
| 1861 | if (prepare_flash_access(flashctx, false, false, false, true)) |
| 1862 | goto _free_ret; |
| 1863 | |
| 1864 | msg_cinfo("Verifying flash... "); |
Nico Huber | 74d09d4 | 2019-06-16 03:27:26 +0200 | [diff] [blame] | 1865 | ret = verify_by_layout(flashctx, layout, curcontents, newcontents); |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 1866 | if (!ret) |
| 1867 | msg_cinfo("VERIFIED.\n"); |
| 1868 | |
| 1869 | finalize_flash_access(flashctx); |
| 1870 | _free_ret: |
| 1871 | free(curcontents); |
| 1872 | return ret; |
| 1873 | } |
| 1874 | |
| 1875 | /** @} */ /* end flashrom-ops */ |