blob: 7af221ac6ec4198c75e6a859f0c52073e7e3f5cb [file] [log] [blame]
rminnich8d3ff912003-10-25 17:01:29 +00001/*
uweb25f1ea2007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
rminnich8d3ff912003-10-25 17:01:29 +00003 *
uwe555dd972007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp <yhlu@tyan.com>
uwe4475e902009-05-19 14:14:21 +00006 * Copyright (C) 2005-2008 coresystems GmbH
hailfinger23060112009-05-08 12:49:03 +00007 * Copyright (C) 2008,2009 Carl-Daniel Hailfinger
rminnich8d3ff912003-10-25 17:01:29 +00008 *
uweb25f1ea2007-08-29 17:52:32 +00009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
rminnich8d3ff912003-10-25 17:01:29 +000013 *
uweb25f1ea2007-08-29 17:52:32 +000014 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
rminnich8d3ff912003-10-25 17:01:29 +000018 *
uweb25f1ea2007-08-29 17:52:32 +000019 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
rminnich8d3ff912003-10-25 17:01:29 +000022 */
23
hailfingera83a5fe2010-05-30 22:24:40 +000024#include <stdio.h>
stepan1da96c02006-11-21 23:48:51 +000025#include <sys/types.h>
oxygene50275892010-09-30 17:03:32 +000026#ifndef __LIBPAYLOAD__
27#include <fcntl.h>
stepan1da96c02006-11-21 23:48:51 +000028#include <sys/stat.h>
oxygene50275892010-09-30 17:03:32 +000029#endif
rminnich8d3ff912003-10-25 17:01:29 +000030#include <string.h>
31#include <stdlib.h>
ollie6a600992005-11-26 21:55:36 +000032#include <getopt.h>
hailfinger3b471632010-03-27 16:36:40 +000033#if HAVE_UTSNAME == 1
34#include <sys/utsname.h>
35#endif
rminnich8d3ff912003-10-25 17:01:29 +000036#include "flash.h"
hailfinger66966da2009-06-15 14:14:48 +000037#include "flashchips.h"
hailfinger428f6852010-07-27 22:41:39 +000038#include "programmer.h"
rminnich8d3ff912003-10-25 17:01:29 +000039
hailfinger1ff33dc2010-07-03 11:02:10 +000040const char * const flashrom_version = FLASHROM_VERSION;
rminnich8d3ff912003-10-25 17:01:29 +000041char *chip_to_probe = NULL;
stuge98c09aa2008-06-18 02:08:40 +000042int verbose = 0;
hailfinger80422e22009-12-13 22:28:00 +000043
hailfinger90c7d542010-05-31 15:27:27 +000044#if CONFIG_INTERNAL == 1
hailfinger6fe23d62009-08-12 11:39:29 +000045enum programmer programmer = PROGRAMMER_INTERNAL;
hailfinger90c7d542010-05-31 15:27:27 +000046#elif CONFIG_DUMMY == 1
hailfinger80422e22009-12-13 22:28:00 +000047enum programmer programmer = PROGRAMMER_DUMMY;
48#else
hailfingerf95c8f62010-01-10 13:28:48 +000049/* If neither internal nor dummy are selected, we must pick a sensible default.
50 * Since there is no reason to prefer a particular external programmer, we fail
51 * if more than one of them is selected. If only one is selected, it is clear
52 * that the user wants that one to become the default.
53 */
uwe6764e922010-09-03 18:21:21 +000054#if CONFIG_NIC3COM+CONFIG_NICREALTEK+CONFIG_NICNATSEMI+CONFIG_GFXNVIDIA+CONFIG_DRKAISER+CONFIG_SATASII+CONFIG_ATAHPT+CONFIG_FT2232_SPI+CONFIG_SERPROG+CONFIG_BUSPIRATE_SPI+CONFIG_DEDIPROG+CONFIG_RAYER_SPI+CONFIG_NICINTEL_SPI > 1
hailfinger90c7d542010-05-31 15:27:27 +000055#error Please enable either CONFIG_DUMMY or CONFIG_INTERNAL or disable support for all programmers except one.
hailfingerf95c8f62010-01-10 13:28:48 +000056#endif
57enum programmer programmer =
hailfinger90c7d542010-05-31 15:27:27 +000058#if CONFIG_NIC3COM == 1
hailfingerf95c8f62010-01-10 13:28:48 +000059 PROGRAMMER_NIC3COM
60#endif
hailfinger90c7d542010-05-31 15:27:27 +000061#if CONFIG_NICREALTEK == 1
hailfinger5aa36982010-05-21 21:54:07 +000062 PROGRAMMER_NICREALTEK
63 PROGRAMMER_NICREALTEK2
64#endif
hailfingerf0a368f2010-06-07 22:37:54 +000065#if CONFIG_NICNATSEMI == 1
66 PROGRAMMER_NICNATSEMI
67#endif
hailfinger90c7d542010-05-31 15:27:27 +000068#if CONFIG_GFXNVIDIA == 1
hailfingerf95c8f62010-01-10 13:28:48 +000069 PROGRAMMER_GFXNVIDIA
70#endif
hailfinger90c7d542010-05-31 15:27:27 +000071#if CONFIG_DRKAISER == 1
hailfingerf95c8f62010-01-10 13:28:48 +000072 PROGRAMMER_DRKAISER
73#endif
hailfinger90c7d542010-05-31 15:27:27 +000074#if CONFIG_SATASII == 1
hailfingerf95c8f62010-01-10 13:28:48 +000075 PROGRAMMER_SATASII
76#endif
hailfinger90c7d542010-05-31 15:27:27 +000077#if CONFIG_ATAHPT == 1
uwe7e627c82010-02-21 21:17:00 +000078 PROGRAMMER_ATAHPT
79#endif
hailfinger90c7d542010-05-31 15:27:27 +000080#if CONFIG_FT2232_SPI == 1
81 PROGRAMMER_FT2232_SPI
hailfingerf95c8f62010-01-10 13:28:48 +000082#endif
hailfinger90c7d542010-05-31 15:27:27 +000083#if CONFIG_SERPROG == 1
hailfingerf95c8f62010-01-10 13:28:48 +000084 PROGRAMMER_SERPROG
85#endif
hailfinger90c7d542010-05-31 15:27:27 +000086#if CONFIG_BUSPIRATE_SPI == 1
87 PROGRAMMER_BUSPIRATE_SPI
hailfingerf95c8f62010-01-10 13:28:48 +000088#endif
hailfinger90c7d542010-05-31 15:27:27 +000089#if CONFIG_DEDIPROG == 1
hailfingerdfb32a02010-01-19 11:15:48 +000090 PROGRAMMER_DEDIPROG
91#endif
hailfinger52c4fa02010-07-21 10:26:01 +000092#if CONFIG_RAYER_SPI == 1
93 PROGRAMMER_RAYER_SPI
94#endif
uwe6764e922010-09-03 18:21:21 +000095#if CONFIG_NICINTEL_SPI == 1
96 PROGRAMMER_NICINTEL_SPI
97#endif
hailfingerf95c8f62010-01-10 13:28:48 +000098;
hailfinger80422e22009-12-13 22:28:00 +000099#endif
100
hailfingerddeb4ac2010-07-08 10:13:37 +0000101static char *programmer_param = NULL;
stepan782fb172007-04-06 11:58:03 +0000102
hailfinger1ff33dc2010-07-03 11:02:10 +0000103/* Supported buses for the current programmer. */
104enum chipbustype buses_supported;
hailfinger80422e22009-12-13 22:28:00 +0000105
uwee15beb92010-08-08 17:01:18 +0000106/*
hailfinger80422e22009-12-13 22:28:00 +0000107 * Programmers supporting multiple buses can have differing size limits on
108 * each bus. Store the limits for each bus in a common struct.
109 */
hailfinger1ff33dc2010-07-03 11:02:10 +0000110struct decode_sizes max_rom_decode;
111
112/* If nonzero, used as the start address of bottom-aligned flash. */
113unsigned long flashbase;
hailfinger80422e22009-12-13 22:28:00 +0000114
hailfinger5828baf2010-07-03 12:14:25 +0000115/* Is writing allowed with this programmer? */
116int programmer_may_write;
117
hailfingerabe249e2009-05-08 17:43:22 +0000118const struct programmer_entry programmer_table[] = {
hailfinger90c7d542010-05-31 15:27:27 +0000119#if CONFIG_INTERNAL == 1
hailfingerabe249e2009-05-08 17:43:22 +0000120 {
hailfinger3548a9a2009-08-12 14:34:35 +0000121 .name = "internal",
hailfinger6c69ab02009-05-11 15:46:43 +0000122 .init = internal_init,
123 .shutdown = internal_shutdown,
hailfinger11ae3c42009-05-11 14:13:25 +0000124 .map_flash_region = physmap,
125 .unmap_flash_region = physunmap,
hailfinger6c69ab02009-05-11 15:46:43 +0000126 .chip_readb = internal_chip_readb,
127 .chip_readw = internal_chip_readw,
128 .chip_readl = internal_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000129 .chip_readn = internal_chip_readn,
hailfinger6c69ab02009-05-11 15:46:43 +0000130 .chip_writeb = internal_chip_writeb,
131 .chip_writew = internal_chip_writew,
132 .chip_writel = internal_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000133 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000134 .delay = internal_delay,
hailfingerabe249e2009-05-08 17:43:22 +0000135 },
hailfinger80422e22009-12-13 22:28:00 +0000136#endif
stepan927d4e22007-04-04 22:45:58 +0000137
hailfinger90c7d542010-05-31 15:27:27 +0000138#if CONFIG_DUMMY == 1
hailfingera9df33c2009-05-09 00:54:55 +0000139 {
hailfinger3548a9a2009-08-12 14:34:35 +0000140 .name = "dummy",
hailfinger6c69ab02009-05-11 15:46:43 +0000141 .init = dummy_init,
142 .shutdown = dummy_shutdown,
hailfinger11ae3c42009-05-11 14:13:25 +0000143 .map_flash_region = dummy_map,
144 .unmap_flash_region = dummy_unmap,
hailfinger6c69ab02009-05-11 15:46:43 +0000145 .chip_readb = dummy_chip_readb,
146 .chip_readw = dummy_chip_readw,
147 .chip_readl = dummy_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000148 .chip_readn = dummy_chip_readn,
hailfinger6c69ab02009-05-11 15:46:43 +0000149 .chip_writeb = dummy_chip_writeb,
150 .chip_writew = dummy_chip_writew,
151 .chip_writel = dummy_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000152 .chip_writen = dummy_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000153 .delay = internal_delay,
hailfingera9df33c2009-05-09 00:54:55 +0000154 },
hailfinger571a6b32009-09-16 10:09:21 +0000155#endif
hailfingera9df33c2009-05-09 00:54:55 +0000156
hailfinger90c7d542010-05-31 15:27:27 +0000157#if CONFIG_NIC3COM == 1
uwe0f5a3a22009-05-13 11:36:06 +0000158 {
hailfinger3548a9a2009-08-12 14:34:35 +0000159 .name = "nic3com",
uwe0f5a3a22009-05-13 11:36:06 +0000160 .init = nic3com_init,
161 .shutdown = nic3com_shutdown,
uwe3e656bd2009-05-17 23:12:17 +0000162 .map_flash_region = fallback_map,
163 .unmap_flash_region = fallback_unmap,
uwe0f5a3a22009-05-13 11:36:06 +0000164 .chip_readb = nic3com_chip_readb,
hailfinger43716942009-05-16 01:23:55 +0000165 .chip_readw = fallback_chip_readw,
166 .chip_readl = fallback_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000167 .chip_readn = fallback_chip_readn,
uwe0f5a3a22009-05-13 11:36:06 +0000168 .chip_writeb = nic3com_chip_writeb,
hailfinger43716942009-05-16 01:23:55 +0000169 .chip_writew = fallback_chip_writew,
170 .chip_writel = fallback_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000171 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000172 .delay = internal_delay,
uwe0f5a3a22009-05-13 11:36:06 +0000173 },
hailfinger571a6b32009-09-16 10:09:21 +0000174#endif
uwe0f5a3a22009-05-13 11:36:06 +0000175
hailfinger90c7d542010-05-31 15:27:27 +0000176#if CONFIG_NICREALTEK == 1
hailfinger5aa36982010-05-21 21:54:07 +0000177 {
178 .name = "nicrealtek",
179 .init = nicrealtek_init,
180 .shutdown = nicrealtek_shutdown,
181 .map_flash_region = fallback_map,
182 .unmap_flash_region = fallback_unmap,
183 .chip_readb = nicrealtek_chip_readb,
184 .chip_readw = fallback_chip_readw,
185 .chip_readl = fallback_chip_readl,
186 .chip_readn = fallback_chip_readn,
187 .chip_writeb = nicrealtek_chip_writeb,
188 .chip_writew = fallback_chip_writew,
189 .chip_writel = fallback_chip_writel,
190 .chip_writen = fallback_chip_writen,
191 .delay = internal_delay,
192 },
193 {
194 .name = "nicsmc1211",
195 .init = nicsmc1211_init,
196 .shutdown = nicrealtek_shutdown,
197 .map_flash_region = fallback_map,
198 .unmap_flash_region = fallback_unmap,
199 .chip_readb = nicrealtek_chip_readb,
200 .chip_readw = fallback_chip_readw,
201 .chip_readl = fallback_chip_readl,
202 .chip_readn = fallback_chip_readn,
203 .chip_writeb = nicrealtek_chip_writeb,
204 .chip_writew = fallback_chip_writew,
205 .chip_writel = fallback_chip_writel,
206 .chip_writen = fallback_chip_writen,
207 .delay = internal_delay,
208 },
209#endif
210
hailfingerf0a368f2010-06-07 22:37:54 +0000211#if CONFIG_NICNATSEMI == 1
212 {
213 .name = "nicnatsemi",
214 .init = nicnatsemi_init,
215 .shutdown = nicnatsemi_shutdown,
216 .map_flash_region = fallback_map,
217 .unmap_flash_region = fallback_unmap,
218 .chip_readb = nicnatsemi_chip_readb,
219 .chip_readw = fallback_chip_readw,
220 .chip_readl = fallback_chip_readl,
221 .chip_readn = fallback_chip_readn,
222 .chip_writeb = nicnatsemi_chip_writeb,
223 .chip_writew = fallback_chip_writew,
224 .chip_writel = fallback_chip_writel,
225 .chip_writen = fallback_chip_writen,
226 .delay = internal_delay,
227 },
228#endif
hailfinger5aa36982010-05-21 21:54:07 +0000229
hailfinger90c7d542010-05-31 15:27:27 +0000230#if CONFIG_GFXNVIDIA == 1
uweff4576d2009-09-30 18:29:55 +0000231 {
232 .name = "gfxnvidia",
233 .init = gfxnvidia_init,
234 .shutdown = gfxnvidia_shutdown,
235 .map_flash_region = fallback_map,
236 .unmap_flash_region = fallback_unmap,
237 .chip_readb = gfxnvidia_chip_readb,
238 .chip_readw = fallback_chip_readw,
239 .chip_readl = fallback_chip_readl,
240 .chip_readn = fallback_chip_readn,
241 .chip_writeb = gfxnvidia_chip_writeb,
242 .chip_writew = fallback_chip_writew,
243 .chip_writel = fallback_chip_writel,
244 .chip_writen = fallback_chip_writen,
245 .delay = internal_delay,
246 },
247#endif
248
hailfinger90c7d542010-05-31 15:27:27 +0000249#if CONFIG_DRKAISER == 1
ruikda922a12009-05-17 19:39:27 +0000250 {
uwee2f95ef2009-09-02 23:00:46 +0000251 .name = "drkaiser",
252 .init = drkaiser_init,
253 .shutdown = drkaiser_shutdown,
254 .map_flash_region = fallback_map,
255 .unmap_flash_region = fallback_unmap,
256 .chip_readb = drkaiser_chip_readb,
257 .chip_readw = fallback_chip_readw,
258 .chip_readl = fallback_chip_readl,
259 .chip_readn = fallback_chip_readn,
260 .chip_writeb = drkaiser_chip_writeb,
261 .chip_writew = fallback_chip_writew,
262 .chip_writel = fallback_chip_writel,
263 .chip_writen = fallback_chip_writen,
264 .delay = internal_delay,
265 },
hailfinger571a6b32009-09-16 10:09:21 +0000266#endif
uwee2f95ef2009-09-02 23:00:46 +0000267
hailfinger90c7d542010-05-31 15:27:27 +0000268#if CONFIG_SATASII == 1
uwee2f95ef2009-09-02 23:00:46 +0000269 {
hailfinger3548a9a2009-08-12 14:34:35 +0000270 .name = "satasii",
ruikda922a12009-05-17 19:39:27 +0000271 .init = satasii_init,
272 .shutdown = satasii_shutdown,
uwe3e656bd2009-05-17 23:12:17 +0000273 .map_flash_region = fallback_map,
274 .unmap_flash_region = fallback_unmap,
ruikda922a12009-05-17 19:39:27 +0000275 .chip_readb = satasii_chip_readb,
276 .chip_readw = fallback_chip_readw,
277 .chip_readl = fallback_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000278 .chip_readn = fallback_chip_readn,
ruikda922a12009-05-17 19:39:27 +0000279 .chip_writeb = satasii_chip_writeb,
280 .chip_writew = fallback_chip_writew,
281 .chip_writel = fallback_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000282 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000283 .delay = internal_delay,
ruikda922a12009-05-17 19:39:27 +0000284 },
hailfinger571a6b32009-09-16 10:09:21 +0000285#endif
ruikda922a12009-05-17 19:39:27 +0000286
hailfinger90c7d542010-05-31 15:27:27 +0000287#if CONFIG_ATAHPT == 1
uwe7e627c82010-02-21 21:17:00 +0000288 {
289 .name = "atahpt",
290 .init = atahpt_init,
291 .shutdown = atahpt_shutdown,
292 .map_flash_region = fallback_map,
293 .unmap_flash_region = fallback_unmap,
294 .chip_readb = atahpt_chip_readb,
295 .chip_readw = fallback_chip_readw,
296 .chip_readl = fallback_chip_readl,
297 .chip_readn = fallback_chip_readn,
298 .chip_writeb = atahpt_chip_writeb,
299 .chip_writew = fallback_chip_writew,
300 .chip_writel = fallback_chip_writel,
301 .chip_writen = fallback_chip_writen,
302 .delay = internal_delay,
303 },
304#endif
305
hailfinger90c7d542010-05-31 15:27:27 +0000306#if CONFIG_INTERNAL == 1
hailfinger324a9cc2010-05-26 01:45:41 +0000307#if defined(__i386__) || defined(__x86_64__)
hailfinger26e212b2009-05-31 18:00:57 +0000308 {
hailfinger3548a9a2009-08-12 14:34:35 +0000309 .name = "it87spi",
hailfinger26e212b2009-05-31 18:00:57 +0000310 .init = it87spi_init,
hailfinger571a6b32009-09-16 10:09:21 +0000311 .shutdown = noop_shutdown,
hailfinger6fe23d62009-08-12 11:39:29 +0000312 .map_flash_region = fallback_map,
313 .unmap_flash_region = fallback_unmap,
hailfinger571a6b32009-09-16 10:09:21 +0000314 .chip_readb = noop_chip_readb,
hailfinger9d987ef2009-06-05 18:32:07 +0000315 .chip_readw = fallback_chip_readw,
316 .chip_readl = fallback_chip_readl,
317 .chip_readn = fallback_chip_readn,
hailfinger571a6b32009-09-16 10:09:21 +0000318 .chip_writeb = noop_chip_writeb,
hailfinger9d987ef2009-06-05 18:32:07 +0000319 .chip_writew = fallback_chip_writew,
320 .chip_writel = fallback_chip_writel,
321 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000322 .delay = internal_delay,
hailfinger26e212b2009-05-31 18:00:57 +0000323 },
hailfinger80422e22009-12-13 22:28:00 +0000324#endif
hailfinger324a9cc2010-05-26 01:45:41 +0000325#endif
hailfinger26e212b2009-05-31 18:00:57 +0000326
hailfinger90c7d542010-05-31 15:27:27 +0000327#if CONFIG_FT2232_SPI == 1
hailfingerf31da3d2009-06-16 21:08:06 +0000328 {
hailfinger90c7d542010-05-31 15:27:27 +0000329 .name = "ft2232_spi",
hailfingerf31da3d2009-06-16 21:08:06 +0000330 .init = ft2232_spi_init,
hailfinger571a6b32009-09-16 10:09:21 +0000331 .shutdown = noop_shutdown, /* Missing shutdown */
hailfinger6fe23d62009-08-12 11:39:29 +0000332 .map_flash_region = fallback_map,
333 .unmap_flash_region = fallback_unmap,
hailfinger571a6b32009-09-16 10:09:21 +0000334 .chip_readb = noop_chip_readb,
hailfingerf31da3d2009-06-16 21:08:06 +0000335 .chip_readw = fallback_chip_readw,
336 .chip_readl = fallback_chip_readl,
337 .chip_readn = fallback_chip_readn,
hailfinger571a6b32009-09-16 10:09:21 +0000338 .chip_writeb = noop_chip_writeb,
hailfingerf31da3d2009-06-16 21:08:06 +0000339 .chip_writew = fallback_chip_writew,
340 .chip_writel = fallback_chip_writel,
341 .chip_writen = fallback_chip_writen,
342 .delay = internal_delay,
343 },
hailfingerd9dcfbd2009-08-19 13:27:58 +0000344#endif
hailfinger6fe23d62009-08-12 11:39:29 +0000345
hailfinger90c7d542010-05-31 15:27:27 +0000346#if CONFIG_SERPROG == 1
hailfinger37b4fbf2009-06-23 11:33:43 +0000347 {
hailfinger3548a9a2009-08-12 14:34:35 +0000348 .name = "serprog",
hailfinger37b4fbf2009-06-23 11:33:43 +0000349 .init = serprog_init,
350 .shutdown = serprog_shutdown,
351 .map_flash_region = fallback_map,
352 .unmap_flash_region = fallback_unmap,
353 .chip_readb = serprog_chip_readb,
354 .chip_readw = fallback_chip_readw,
355 .chip_readl = fallback_chip_readl,
356 .chip_readn = serprog_chip_readn,
357 .chip_writeb = serprog_chip_writeb,
358 .chip_writew = fallback_chip_writew,
359 .chip_writel = fallback_chip_writel,
360 .chip_writen = fallback_chip_writen,
361 .delay = serprog_delay,
362 },
hailfinger74d88a72009-08-12 16:17:41 +0000363#endif
hailfingerf31da3d2009-06-16 21:08:06 +0000364
hailfinger90c7d542010-05-31 15:27:27 +0000365#if CONFIG_BUSPIRATE_SPI == 1
hailfinger9c5add72009-11-24 00:20:03 +0000366 {
hailfinger90c7d542010-05-31 15:27:27 +0000367 .name = "buspirate_spi",
hailfinger9c5add72009-11-24 00:20:03 +0000368 .init = buspirate_spi_init,
369 .shutdown = buspirate_spi_shutdown,
370 .map_flash_region = fallback_map,
371 .unmap_flash_region = fallback_unmap,
372 .chip_readb = noop_chip_readb,
373 .chip_readw = fallback_chip_readw,
374 .chip_readl = fallback_chip_readl,
375 .chip_readn = fallback_chip_readn,
376 .chip_writeb = noop_chip_writeb,
377 .chip_writew = fallback_chip_writew,
378 .chip_writel = fallback_chip_writel,
379 .chip_writen = fallback_chip_writen,
380 .delay = internal_delay,
381 },
382#endif
383
hailfinger90c7d542010-05-31 15:27:27 +0000384#if CONFIG_DEDIPROG == 1
hailfingerdfb32a02010-01-19 11:15:48 +0000385 {
386 .name = "dediprog",
387 .init = dediprog_init,
388 .shutdown = dediprog_shutdown,
389 .map_flash_region = fallback_map,
390 .unmap_flash_region = fallback_unmap,
391 .chip_readb = noop_chip_readb,
392 .chip_readw = fallback_chip_readw,
393 .chip_readl = fallback_chip_readl,
394 .chip_readn = fallback_chip_readn,
395 .chip_writeb = noop_chip_writeb,
396 .chip_writew = fallback_chip_writew,
397 .chip_writel = fallback_chip_writel,
398 .chip_writen = fallback_chip_writen,
399 .delay = internal_delay,
400 },
401#endif
402
hailfinger52c4fa02010-07-21 10:26:01 +0000403#if CONFIG_RAYER_SPI == 1
404 {
405 .name = "rayer_spi",
406 .init = rayer_spi_init,
407 .shutdown = noop_shutdown,
408 .map_flash_region = fallback_map,
409 .unmap_flash_region = fallback_unmap,
410 .chip_readb = noop_chip_readb,
411 .chip_readw = fallback_chip_readw,
412 .chip_readl = fallback_chip_readl,
413 .chip_readn = fallback_chip_readn,
414 .chip_writeb = noop_chip_writeb,
415 .chip_writew = fallback_chip_writew,
416 .chip_writel = fallback_chip_writel,
417 .chip_writen = fallback_chip_writen,
418 .delay = internal_delay,
419 },
420#endif
421
uwe6764e922010-09-03 18:21:21 +0000422#if CONFIG_NICINTEL_SPI == 1
423 {
424 .name = "nicintel_spi",
425 .init = nicintel_spi_init,
426 .shutdown = nicintel_spi_shutdown,
427 .map_flash_region = fallback_map,
428 .unmap_flash_region = fallback_unmap,
429 .chip_readb = noop_chip_readb,
430 .chip_readw = fallback_chip_readw,
431 .chip_readl = fallback_chip_readl,
432 .chip_readn = fallback_chip_readn,
433 .chip_writeb = noop_chip_writeb,
434 .chip_writew = fallback_chip_writew,
435 .chip_writel = fallback_chip_writel,
436 .chip_writen = fallback_chip_writen,
437 .delay = internal_delay,
438 },
439#endif
440
hailfinger3548a9a2009-08-12 14:34:35 +0000441 {}, /* This entry corresponds to PROGRAMMER_INVALID. */
hailfingerabe249e2009-05-08 17:43:22 +0000442};
stepan927d4e22007-04-04 22:45:58 +0000443
hailfingerdc6f7972010-02-14 01:20:28 +0000444#define SHUTDOWN_MAXFN 4
445static int shutdown_fn_count = 0;
446struct shutdown_func_data {
447 void (*func) (void *data);
448 void *data;
hailfinger1ff33dc2010-07-03 11:02:10 +0000449} static shutdown_fn[SHUTDOWN_MAXFN];
450/* Initialize to 0 to make sure nobody registers a shutdown function before
451 * programmer init.
452 */
453static int may_register_shutdown = 0;
hailfingerdc6f7972010-02-14 01:20:28 +0000454
455/* Register a function to be executed on programmer shutdown.
456 * The advantage over atexit() is that you can supply a void pointer which will
457 * be used as parameter to the registered function upon programmer shutdown.
458 * This pointer can point to arbitrary data used by said function, e.g. undo
459 * information for GPIO settings etc. If unneeded, set data=NULL.
460 * Please note that the first (void *data) belongs to the function signature of
461 * the function passed as first parameter.
462 */
463int register_shutdown(void (*function) (void *data), void *data)
464{
465 if (shutdown_fn_count >= SHUTDOWN_MAXFN) {
hailfinger63932d42010-06-04 23:20:21 +0000466 msg_perr("Tried to register more than %i shutdown functions.\n",
hailfingerdc6f7972010-02-14 01:20:28 +0000467 SHUTDOWN_MAXFN);
468 return 1;
469 }
hailfinger1ff33dc2010-07-03 11:02:10 +0000470 if (!may_register_shutdown) {
471 msg_perr("Tried to register a shutdown function before "
472 "programmer init.\n");
473 return 1;
474 }
hailfingerdc6f7972010-02-14 01:20:28 +0000475 shutdown_fn[shutdown_fn_count].func = function;
476 shutdown_fn[shutdown_fn_count].data = data;
477 shutdown_fn_count++;
478
479 return 0;
480}
481
hailfinger1ff33dc2010-07-03 11:02:10 +0000482int programmer_init(char *param)
uweabe92a52009-05-16 22:36:00 +0000483{
hailfinger1ef766d2010-07-06 09:55:48 +0000484 int ret;
hailfinger1ff33dc2010-07-03 11:02:10 +0000485 /* Initialize all programmer specific data. */
486 /* Default to unlimited decode sizes. */
487 max_rom_decode = (const struct decode_sizes) {
488 .parallel = 0xffffffff,
489 .lpc = 0xffffffff,
490 .fwh = 0xffffffff,
491 .spi = 0xffffffff
492 };
493 /* Default to Parallel/LPC/FWH flash devices. If a known host controller
494 * is found, the init routine sets the buses_supported bitfield.
495 */
496 buses_supported = CHIP_BUSTYPE_NONSPI;
497 /* Default to top aligned flash at 4 GB. */
498 flashbase = 0;
499 /* Registering shutdown functions is now allowed. */
500 may_register_shutdown = 1;
hailfinger5828baf2010-07-03 12:14:25 +0000501 /* Default to allowing writes. Broken programmers set this to 0. */
502 programmer_may_write = 1;
hailfinger1ff33dc2010-07-03 11:02:10 +0000503
504 programmer_param = param;
505 msg_pdbg("Initializing %s programmer\n",
506 programmer_table[programmer].name);
hailfinger1ef766d2010-07-06 09:55:48 +0000507 ret = programmer_table[programmer].init();
508 if (programmer_param && strlen(programmer_param)) {
509 msg_perr("Unhandled programmer parameters: %s\n",
510 programmer_param);
511 /* Do not error out here, the init itself was successful. */
512 }
513 return ret;
uweabe92a52009-05-16 22:36:00 +0000514}
515
516int programmer_shutdown(void)
517{
hailfinger1ff33dc2010-07-03 11:02:10 +0000518 /* Registering shutdown functions is no longer allowed. */
519 may_register_shutdown = 0;
520 while (shutdown_fn_count > 0) {
521 int i = --shutdown_fn_count;
hailfingerdc6f7972010-02-14 01:20:28 +0000522 shutdown_fn[i].func(shutdown_fn[i].data);
hailfinger1ff33dc2010-07-03 11:02:10 +0000523 }
uweabe92a52009-05-16 22:36:00 +0000524 return programmer_table[programmer].shutdown();
525}
526
527void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
528 size_t len)
529{
530 return programmer_table[programmer].map_flash_region(descr,
531 phys_addr, len);
532}
533
534void programmer_unmap_flash_region(void *virt_addr, size_t len)
535{
536 programmer_table[programmer].unmap_flash_region(virt_addr, len);
537}
538
539void chip_writeb(uint8_t val, chipaddr addr)
540{
541 programmer_table[programmer].chip_writeb(val, addr);
542}
543
544void chip_writew(uint16_t val, chipaddr addr)
545{
546 programmer_table[programmer].chip_writew(val, addr);
547}
548
549void chip_writel(uint32_t val, chipaddr addr)
550{
551 programmer_table[programmer].chip_writel(val, addr);
552}
553
hailfinger9d987ef2009-06-05 18:32:07 +0000554void chip_writen(uint8_t *buf, chipaddr addr, size_t len)
555{
556 programmer_table[programmer].chip_writen(buf, addr, len);
557}
558
uweabe92a52009-05-16 22:36:00 +0000559uint8_t chip_readb(const chipaddr addr)
560{
561 return programmer_table[programmer].chip_readb(addr);
562}
563
564uint16_t chip_readw(const chipaddr addr)
565{
566 return programmer_table[programmer].chip_readw(addr);
567}
568
569uint32_t chip_readl(const chipaddr addr)
570{
571 return programmer_table[programmer].chip_readl(addr);
572}
573
hailfinger9d987ef2009-06-05 18:32:07 +0000574void chip_readn(uint8_t *buf, chipaddr addr, size_t len)
575{
576 programmer_table[programmer].chip_readn(buf, addr, len);
hailfinger9d987ef2009-06-05 18:32:07 +0000577}
578
hailfingere5829f62009-06-05 17:48:08 +0000579void programmer_delay(int usecs)
580{
581 programmer_table[programmer].delay(usecs);
582}
583
stuge5ff0e6c2009-01-26 00:39:57 +0000584void map_flash_registers(struct flashchip *flash)
stepan15e64bc2007-05-24 08:48:10 +0000585{
stepan15e64bc2007-05-24 08:48:10 +0000586 size_t size = flash->total_size * 1024;
hailfinger8577ad12009-05-11 14:01:17 +0000587 /* Flash registers live 4 MByte below the flash. */
hailfinger0459e1c2009-08-19 13:55:34 +0000588 /* FIXME: This is incorrect for nonstandard flashbase. */
hailfinger82719632009-05-16 21:22:56 +0000589 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
stepan15e64bc2007-05-24 08:48:10 +0000590}
591
hailfinger0f08b7a2009-06-16 08:55:44 +0000592int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
hailfinger23060112009-05-08 12:49:03 +0000593{
hailfinger0f08b7a2009-06-16 08:55:44 +0000594 chip_readn(buf, flash->virtual_memory + start, len);
hailfinger23060112009-05-08 12:49:03 +0000595
596 return 0;
597}
598
hailfinger7b414742009-06-13 12:04:03 +0000599int min(int a, int b)
600{
601 return (a < b) ? a : b;
602}
603
hailfinger7af83692009-06-15 17:23:36 +0000604int max(int a, int b)
605{
606 return (a > b) ? a : b;
607}
608
hailfingeraec9c962009-10-31 01:53:09 +0000609int bitcount(unsigned long a)
610{
611 int i = 0;
612 for (; a != 0; a >>= 1)
613 if (a & 1)
614 i++;
615 return i;
616}
617
hailfingera916b422009-06-01 02:08:58 +0000618char *strcat_realloc(char *dest, const char *src)
619{
620 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
hailfinger1ef766d2010-07-06 09:55:48 +0000621 if (!dest) {
622 msg_gerr("Out of memory!\n");
hailfingera916b422009-06-01 02:08:58 +0000623 return NULL;
hailfinger1ef766d2010-07-06 09:55:48 +0000624 }
hailfingera916b422009-06-01 02:08:58 +0000625 strcat(dest, src);
626 return dest;
627}
628
hailfinger6e5a52a2009-11-24 18:27:10 +0000629/* This is a somewhat hacked function similar in some ways to strtok().
hailfinger1ef766d2010-07-06 09:55:48 +0000630 * It will look for needle with a subsequent '=' in haystack, return a copy of
631 * needle and remove everything from the first occurrence of needle to the next
632 * delimiter from haystack.
hailfinger6e5a52a2009-11-24 18:27:10 +0000633 */
634char *extract_param(char **haystack, char *needle, char *delim)
635{
hailfinger1ef766d2010-07-06 09:55:48 +0000636 char *param_pos, *opt_pos, *rest;
637 char *opt = NULL;
638 int optlen;
hailfingerf4aaccc2010-04-28 15:22:14 +0000639 int needlelen;
hailfinger6e5a52a2009-11-24 18:27:10 +0000640
hailfingerf4aaccc2010-04-28 15:22:14 +0000641 needlelen = strlen(needle);
642 if (!needlelen) {
643 msg_gerr("%s: empty needle! Please report a bug at "
644 "flashrom@flashrom.org\n", __func__);
645 return NULL;
646 }
647 /* No programmer parameters given. */
648 if (*haystack == NULL)
649 return NULL;
hailfinger6e5a52a2009-11-24 18:27:10 +0000650 param_pos = strstr(*haystack, needle);
651 do {
652 if (!param_pos)
653 return NULL;
hailfinger1ef766d2010-07-06 09:55:48 +0000654 /* Needle followed by '='? */
655 if (param_pos[needlelen] == '=') {
656
657 /* Beginning of the string? */
658 if (param_pos == *haystack)
659 break;
660 /* After a delimiter? */
661 if (strchr(delim, *(param_pos - 1)))
662 break;
663 }
hailfinger6e5a52a2009-11-24 18:27:10 +0000664 /* Continue searching. */
665 param_pos++;
666 param_pos = strstr(param_pos, needle);
667 } while (1);
hailfinger1ef766d2010-07-06 09:55:48 +0000668
hailfinger6e5a52a2009-11-24 18:27:10 +0000669 if (param_pos) {
hailfinger1ef766d2010-07-06 09:55:48 +0000670 /* Get the string after needle and '='. */
671 opt_pos = param_pos + needlelen + 1;
672 optlen = strcspn(opt_pos, delim);
673 /* Return an empty string if the parameter was empty. */
674 opt = malloc(optlen + 1);
675 if (!opt) {
snelsone42c3802010-05-07 20:09:04 +0000676 msg_gerr("Out of memory!\n");
hailfinger6e5a52a2009-11-24 18:27:10 +0000677 exit(1);
678 }
hailfinger1ef766d2010-07-06 09:55:48 +0000679 strncpy(opt, opt_pos, optlen);
680 opt[optlen] = '\0';
681 rest = opt_pos + optlen;
682 /* Skip all delimiters after the current parameter. */
683 rest += strspn(rest, delim);
684 memmove(param_pos, rest, strlen(rest) + 1);
685 /* We could shrink haystack, but the effort is not worth it. */
hailfinger6e5a52a2009-11-24 18:27:10 +0000686 }
hailfinger6e5a52a2009-11-24 18:27:10 +0000687
hailfinger1ef766d2010-07-06 09:55:48 +0000688 return opt;
hailfinger6e5a52a2009-11-24 18:27:10 +0000689}
690
hailfingerddeb4ac2010-07-08 10:13:37 +0000691char *extract_programmer_param(char *param_name)
692{
693 return extract_param(&programmer_param, param_name, ",");
694}
695
hailfinger7af83692009-06-15 17:23:36 +0000696/* start is an offset to the base address of the flash chip */
697int check_erased_range(struct flashchip *flash, int start, int len)
698{
699 int ret;
700 uint8_t *cmpbuf = malloc(len);
701
702 if (!cmpbuf) {
snelsone42c3802010-05-07 20:09:04 +0000703 msg_gerr("Could not allocate memory!\n");
hailfinger7af83692009-06-15 17:23:36 +0000704 exit(1);
705 }
706 memset(cmpbuf, 0xff, len);
707 ret = verify_range(flash, cmpbuf, start, len, "ERASE");
708 free(cmpbuf);
709 return ret;
710}
711
uwee15beb92010-08-08 17:01:18 +0000712/*
hailfinger7af3d192009-11-25 17:05:52 +0000713 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
714 flash content at location start
hailfinger7af83692009-06-15 17:23:36 +0000715 * @start offset to the base address of the flash chip
716 * @len length of the verified area
717 * @message string to print in the "FAILED" message
718 * @return 0 for success, -1 for failure
719 */
720int verify_range(struct flashchip *flash, uint8_t *cmpbuf, int start, int len, char *message)
721{
722 int i, j, starthere, lenhere, ret = 0;
hailfinger7af83692009-06-15 17:23:36 +0000723 int page_size = flash->page_size;
724 uint8_t *readbuf = malloc(page_size);
hailfinger5be6c0f2009-07-23 01:42:56 +0000725 int failcount = 0;
hailfinger7af83692009-06-15 17:23:36 +0000726
727 if (!len)
728 goto out_free;
729
hailfingerb0f4d122009-06-24 08:20:45 +0000730 if (!flash->read) {
snelsone42c3802010-05-07 20:09:04 +0000731 msg_cerr("ERROR: flashrom has no read function for this flash chip.\n");
hailfingerb0f4d122009-06-24 08:20:45 +0000732 return 1;
733 }
hailfinger7af83692009-06-15 17:23:36 +0000734 if (!readbuf) {
snelsone42c3802010-05-07 20:09:04 +0000735 msg_gerr("Could not allocate memory!\n");
hailfinger7af83692009-06-15 17:23:36 +0000736 exit(1);
737 }
738
739 if (start + len > flash->total_size * 1024) {
snelsone42c3802010-05-07 20:09:04 +0000740 msg_gerr("Error: %s called with start 0x%x + len 0x%x >"
hailfinger7af83692009-06-15 17:23:36 +0000741 " total_size 0x%x\n", __func__, start, len,
742 flash->total_size * 1024);
743 ret = -1;
744 goto out_free;
745 }
746 if (!message)
747 message = "VERIFY";
748
749 /* Warning: This loop has a very unusual condition and body.
750 * The loop needs to go through each page with at least one affected
751 * byte. The lowest page number is (start / page_size) since that
752 * division rounds down. The highest page number we want is the page
753 * where the last byte of the range lives. That last byte has the
754 * address (start + len - 1), thus the highest page number is
755 * (start + len - 1) / page_size. Since we want to include that last
756 * page as well, the loop condition uses <=.
757 */
758 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
759 /* Byte position of the first byte in the range in this page. */
760 starthere = max(start, i * page_size);
761 /* Length of bytes in the range in this page. */
762 lenhere = min(start + len, (i + 1) * page_size) - starthere;
hailfinger42a850a2010-07-13 23:56:13 +0000763 ret = flash->read(flash, readbuf, starthere, lenhere);
764 if (ret) {
765 msg_gerr("Verification impossible because read failed "
766 "at 0x%x (len 0x%x)\n", starthere, lenhere);
767 break;
768 }
hailfinger7af83692009-06-15 17:23:36 +0000769 for (j = 0; j < lenhere; j++) {
770 if (cmpbuf[starthere - start + j] != readbuf[j]) {
hailfinger5be6c0f2009-07-23 01:42:56 +0000771 /* Only print the first failure. */
772 if (!failcount++)
snelsone42c3802010-05-07 20:09:04 +0000773 msg_cerr("%s FAILED at 0x%08x! "
hailfinger5be6c0f2009-07-23 01:42:56 +0000774 "Expected=0x%02x, Read=0x%02x,",
775 message, starthere + j,
776 cmpbuf[starthere - start + j],
777 readbuf[j]);
hailfinger7af83692009-06-15 17:23:36 +0000778 }
779 }
780 }
hailfinger5be6c0f2009-07-23 01:42:56 +0000781 if (failcount) {
snelsone42c3802010-05-07 20:09:04 +0000782 msg_cerr(" failed byte count from 0x%08x-0x%08x: 0x%x\n",
hailfinger5be6c0f2009-07-23 01:42:56 +0000783 start, start + len - 1, failcount);
784 ret = -1;
785 }
hailfinger7af83692009-06-15 17:23:36 +0000786
787out_free:
788 free(readbuf);
789 return ret;
790}
791
uwee15beb92010-08-08 17:01:18 +0000792/*
hailfingerb247c7a2010-03-08 00:42:32 +0000793 * Check if the buffer @have can be programmed to the content of @want without
794 * erasing. This is only possible if all chunks of size @gran are either kept
795 * as-is or changed from an all-ones state to any other state.
hailfingerb437e282010-11-04 01:04:27 +0000796 *
hailfingerb247c7a2010-03-08 00:42:32 +0000797 * The following write granularities (enum @gran) are known:
798 * - 1 bit. Each bit can be cleared individually.
799 * - 1 byte. A byte can be written once. Further writes to an already written
800 * byte cause the contents to be either undefined or to stay unchanged.
801 * - 128 bytes. If less than 128 bytes are written, the rest will be
802 * erased. Each write to a 128-byte region will trigger an automatic erase
803 * before anything is written. Very uncommon behaviour and unsupported by
804 * this function.
805 * - 256 bytes. If less than 256 bytes are written, the contents of the
806 * unwritten bytes are undefined.
hailfingerb437e282010-11-04 01:04:27 +0000807 * Warning: This function assumes that @have and @want point to naturally
808 * aligned regions.
hailfingerb247c7a2010-03-08 00:42:32 +0000809 *
810 * @have buffer with current content
811 * @want buffer with desired content
hailfingerb437e282010-11-04 01:04:27 +0000812 * @len length of the checked area
hailfingerb247c7a2010-03-08 00:42:32 +0000813 * @gran write granularity (enum, not count)
814 * @return 0 if no erase is needed, 1 otherwise
815 */
816int need_erase(uint8_t *have, uint8_t *want, int len, enum write_granularity gran)
817{
818 int result = 0;
819 int i, j, limit;
820
821 switch (gran) {
822 case write_gran_1bit:
823 for (i = 0; i < len; i++)
824 if ((have[i] & want[i]) != want[i]) {
825 result = 1;
826 break;
827 }
828 break;
829 case write_gran_1byte:
830 for (i = 0; i < len; i++)
831 if ((have[i] != want[i]) && (have[i] != 0xff)) {
832 result = 1;
833 break;
834 }
835 break;
836 case write_gran_256bytes:
837 for (j = 0; j < len / 256; j++) {
838 limit = min (256, len - j * 256);
uwef6f94d42010-03-13 17:28:29 +0000839 /* Are 'have' and 'want' identical? */
hailfingerb247c7a2010-03-08 00:42:32 +0000840 if (!memcmp(have + j * 256, want + j * 256, limit))
841 continue;
842 /* have needs to be in erased state. */
843 for (i = 0; i < limit; i++)
hailfingerb437e282010-11-04 01:04:27 +0000844 if (have[j * 256 + i] != 0xff) {
hailfingerb247c7a2010-03-08 00:42:32 +0000845 result = 1;
846 break;
847 }
848 if (result)
849 break;
850 }
851 break;
hailfingerb437e282010-11-04 01:04:27 +0000852 default:
853 msg_cerr("%s: Unsupported granularity! Please report a bug at "
854 "flashrom@flashrom.org\n", __func__);
hailfingerb247c7a2010-03-08 00:42:32 +0000855 }
856 return result;
857}
858
hailfingerb437e282010-11-04 01:04:27 +0000859/**
860 * Check if the buffer @have needs to be programmed to get the content of @want.
861 * If yes, return 1 and fill in first_start with the start address of the
862 * write operation and first_len with the length of the first to-be-written
863 * chunk. If not, return 0 and leave first_start and first_len undefined.
864 *
865 * Warning: This function assumes that @have and @want point to naturally
866 * aligned regions.
867 *
868 * @have buffer with current content
869 * @want buffer with desired content
870 * @len length of the checked area
871 * @gran write granularity (enum, not count)
872 * @return 0 if no write is needed, 1 otherwise
873 * @first_start offset of the first byte which needs to be written
874 * @first_len length of the first contiguous area which needs to be written
875 *
876 * FIXME: This function needs a parameter which tells it about coalescing
877 * in relation to the max write length of the programmer and the max write
878 * length of the chip.
879 */
880static int get_next_write(uint8_t *have, uint8_t *want, int len,
881 int *first_start, int *first_len,
882 enum write_granularity gran)
883{
884 int result = 0, rel_start = 0;
885 int i, limit;
886
887 /* The passed in variable might be uninitialized. */
888 *first_len = 0;
889 switch (gran) {
890 case write_gran_1bit:
891 case write_gran_1byte:
892 for (i = 0; i < len; i++) {
893 if (have[i] != want[i]) {
894 if (!result) {
895 /* First location where have and want
896 * differ.
897 */
898 result = 1;
899 rel_start = i;
900 }
901 } else {
902 if (result) {
903 /* First location where have and want
904 * do not differ anymore.
905 */
906 *first_len = i - rel_start;
907 break;
908 }
909 }
910 }
911 /* Did the loop terminate without setting first_len? */
912 if (result && ! *first_len)
913 *first_len = i - rel_start;
914 break;
915 case write_gran_256bytes:
916 for (i = 0; i < len / 256; i++) {
917 limit = min(256, len - i * 256);
918 /* Are 'have' and 'want' identical? */
919 if (memcmp(have + i * 256, want + i * 256, limit)) {
920 if (!result) {
921 /* First location where have and want
922 * differ.
923 */
924 result = 1;
925 rel_start = i * 256;
926 }
927 } else {
928 if (result) {
929 /* First location where have and want
930 * do not differ anymore.
931 */
932 *first_len = i * 256 - rel_start;
933 break;
934 }
935 }
936 }
937 /* Did the loop terminate without setting first_len? */
938 if (result && ! *first_len)
939 *first_len = min(i * 256 - rel_start, len);
940 break;
941 default:
942 msg_cerr("%s: Unsupported granularity! Please report a bug at "
943 "flashrom@flashrom.org\n", __func__);
944 }
945 *first_start += rel_start;
946 return result;
947}
948
hailfinger0c515352009-11-23 12:55:31 +0000949/* This function generates various test patterns useful for testing controller
950 * and chip communication as well as chip behaviour.
951 *
952 * If a byte can be written multiple times, each time keeping 0-bits at 0
953 * and changing 1-bits to 0 if the new value for that bit is 0, the effect
954 * is essentially an AND operation. That's also the reason why this function
955 * provides the result of AND between various patterns.
956 *
957 * Below is a list of patterns (and their block length).
958 * Pattern 0 is 05 15 25 35 45 55 65 75 85 95 a5 b5 c5 d5 e5 f5 (16 Bytes)
959 * Pattern 1 is 0a 1a 2a 3a 4a 5a 6a 7a 8a 9a aa ba ca da ea fa (16 Bytes)
960 * Pattern 2 is 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f (16 Bytes)
961 * Pattern 3 is a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af (16 Bytes)
962 * Pattern 4 is 00 10 20 30 40 50 60 70 80 90 a0 b0 c0 d0 e0 f0 (16 Bytes)
963 * Pattern 5 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f (16 Bytes)
964 * Pattern 6 is 00 (1 Byte)
965 * Pattern 7 is ff (1 Byte)
966 * Patterns 0-7 have a big-endian block number in the last 2 bytes of each 256
967 * byte block.
968 *
969 * Pattern 8 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11... (256 B)
970 * Pattern 9 is ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ef ee... (256 B)
971 * Pattern 10 is 00 00 00 01 00 02 00 03 00 04... (128 kB big-endian counter)
972 * Pattern 11 is ff ff ff fe ff fd ff fc ff fb... (128 kB big-endian downwards)
973 * Pattern 12 is 00 (1 Byte)
974 * Pattern 13 is ff (1 Byte)
975 * Patterns 8-13 have no block number.
976 *
977 * Patterns 0-3 are created to detect and efficiently diagnose communication
978 * slips like missed bits or bytes and their repetitive nature gives good visual
979 * cues to the person inspecting the results. In addition, the following holds:
980 * AND Pattern 0/1 == Pattern 4
981 * AND Pattern 2/3 == Pattern 5
982 * AND Pattern 0/1/2/3 == AND Pattern 4/5 == Pattern 6
983 * A weakness of pattern 0-5 is the inability to detect swaps/copies between
984 * any two 16-byte blocks except for the last 16-byte block in a 256-byte bloc.
985 * They work perfectly for detecting any swaps/aliasing of blocks >= 256 bytes.
986 * 0x5 and 0xa were picked because they are 0101 and 1010 binary.
987 * Patterns 8-9 are best for detecting swaps/aliasing of blocks < 256 bytes.
988 * Besides that, they provide for bit testing of the last two bytes of every
989 * 256 byte block which contains the block number for patterns 0-6.
990 * Patterns 10-11 are special purpose for detecting subblock aliasing with
991 * block sizes >256 bytes (some Dataflash chips etc.)
992 * AND Pattern 8/9 == Pattern 12
993 * AND Pattern 10/11 == Pattern 12
994 * Pattern 13 is the completely erased state.
995 * None of the patterns can detect aliasing at boundaries which are a multiple
996 * of 16 MBytes (but such chips do not exist anyway for Parallel/LPC/FWH/SPI).
997 */
998int generate_testpattern(uint8_t *buf, uint32_t size, int variant)
999{
1000 int i;
1001
1002 if (!buf) {
snelsone42c3802010-05-07 20:09:04 +00001003 msg_gerr("Invalid buffer!\n");
hailfinger0c515352009-11-23 12:55:31 +00001004 return 1;
1005 }
1006
1007 switch (variant) {
1008 case 0:
1009 for (i = 0; i < size; i++)
1010 buf[i] = (i & 0xf) << 4 | 0x5;
1011 break;
1012 case 1:
1013 for (i = 0; i < size; i++)
1014 buf[i] = (i & 0xf) << 4 | 0xa;
1015 break;
1016 case 2:
1017 for (i = 0; i < size; i++)
1018 buf[i] = 0x50 | (i & 0xf);
1019 break;
1020 case 3:
1021 for (i = 0; i < size; i++)
1022 buf[i] = 0xa0 | (i & 0xf);
1023 break;
1024 case 4:
1025 for (i = 0; i < size; i++)
1026 buf[i] = (i & 0xf) << 4;
1027 break;
1028 case 5:
1029 for (i = 0; i < size; i++)
1030 buf[i] = i & 0xf;
1031 break;
1032 case 6:
1033 memset(buf, 0x00, size);
1034 break;
1035 case 7:
1036 memset(buf, 0xff, size);
1037 break;
1038 case 8:
1039 for (i = 0; i < size; i++)
1040 buf[i] = i & 0xff;
1041 break;
1042 case 9:
1043 for (i = 0; i < size; i++)
1044 buf[i] = ~(i & 0xff);
1045 break;
1046 case 10:
1047 for (i = 0; i < size % 2; i++) {
1048 buf[i * 2] = (i >> 8) & 0xff;
1049 buf[i * 2 + 1] = i & 0xff;
1050 }
1051 if (size & 0x1)
1052 buf[i * 2] = (i >> 8) & 0xff;
1053 break;
1054 case 11:
1055 for (i = 0; i < size % 2; i++) {
1056 buf[i * 2] = ~((i >> 8) & 0xff);
1057 buf[i * 2 + 1] = ~(i & 0xff);
1058 }
1059 if (size & 0x1)
1060 buf[i * 2] = ~((i >> 8) & 0xff);
1061 break;
1062 case 12:
1063 memset(buf, 0x00, size);
1064 break;
1065 case 13:
1066 memset(buf, 0xff, size);
1067 break;
1068 }
1069
1070 if ((variant >= 0) && (variant <= 7)) {
1071 /* Write block number in the last two bytes of each 256-byte
1072 * block, big endian for easier reading of the hexdump.
1073 * Note that this wraps around for chips larger than 2^24 bytes
1074 * (16 MB).
1075 */
1076 for (i = 0; i < size / 256; i++) {
1077 buf[i * 256 + 254] = (i >> 8) & 0xff;
1078 buf[i * 256 + 255] = i & 0xff;
1079 }
1080 }
1081
1082 return 0;
1083}
1084
hailfingeraec9c962009-10-31 01:53:09 +00001085int check_max_decode(enum chipbustype buses, uint32_t size)
1086{
1087 int limitexceeded = 0;
1088 if ((buses & CHIP_BUSTYPE_PARALLEL) &&
1089 (max_rom_decode.parallel < size)) {
1090 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +00001091 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +00001092 "size %u kB of chipset/board/programmer "
1093 "for %s interface, "
1094 "probe/read/erase/write may fail. ", size / 1024,
1095 max_rom_decode.parallel / 1024, "Parallel");
1096 }
1097 if ((buses & CHIP_BUSTYPE_LPC) && (max_rom_decode.lpc < size)) {
1098 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +00001099 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +00001100 "size %u kB of chipset/board/programmer "
1101 "for %s interface, "
1102 "probe/read/erase/write may fail. ", size / 1024,
1103 max_rom_decode.lpc / 1024, "LPC");
1104 }
1105 if ((buses & CHIP_BUSTYPE_FWH) && (max_rom_decode.fwh < size)) {
1106 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +00001107 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +00001108 "size %u kB of chipset/board/programmer "
1109 "for %s interface, "
1110 "probe/read/erase/write may fail. ", size / 1024,
1111 max_rom_decode.fwh / 1024, "FWH");
1112 }
1113 if ((buses & CHIP_BUSTYPE_SPI) && (max_rom_decode.spi < size)) {
1114 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +00001115 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +00001116 "size %u kB of chipset/board/programmer "
1117 "for %s interface, "
1118 "probe/read/erase/write may fail. ", size / 1024,
1119 max_rom_decode.spi / 1024, "SPI");
1120 }
1121 if (!limitexceeded)
1122 return 0;
1123 /* Sometimes chip and programmer have more than one bus in common,
1124 * and the limit is not exceeded on all buses. Tell the user.
1125 */
1126 if (bitcount(buses) > limitexceeded)
hailfinger92cd8e32010-01-07 03:24:05 +00001127 /* FIXME: This message is designed towards CLI users. */
snelsone42c3802010-05-07 20:09:04 +00001128 msg_pdbg("There is at least one common chip/programmer "
hailfingeraec9c962009-10-31 01:53:09 +00001129 "interface which can support a chip of this size. "
1130 "You can try --force at your own risk.\n");
1131 return 1;
1132}
1133
stuge56300c32008-09-03 23:10:05 +00001134struct flashchip *probe_flash(struct flashchip *first_flash, int force)
rminnich8d3ff912003-10-25 17:01:29 +00001135{
stuge56300c32008-09-03 23:10:05 +00001136 struct flashchip *flash;
hailfingeraec9c962009-10-31 01:53:09 +00001137 unsigned long base = 0;
1138 uint32_t size;
1139 enum chipbustype buses_common;
hailfingera916b422009-06-01 02:08:58 +00001140 char *tmp;
rminnich8d3ff912003-10-25 17:01:29 +00001141
stuge56300c32008-09-03 23:10:05 +00001142 for (flash = first_flash; flash && flash->name; flash++) {
stugec1e55fe2008-07-02 17:15:47 +00001143 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
ollie5672ac62004-03-17 22:22:08 +00001144 continue;
hailfinger327d2522010-03-22 23:43:51 +00001145 msg_gdbg("Probing for %s %s, %d KB: ",
stepanb8361b92008-03-17 22:59:40 +00001146 flash->vendor, flash->name, flash->total_size);
stuge98c09aa2008-06-18 02:08:40 +00001147 if (!flash->probe && !force) {
hailfinger327d2522010-03-22 23:43:51 +00001148 msg_gdbg("failed! flashrom has no probe function for "
1149 "this flash chip.\n");
stuge8ce3a3c2008-04-28 14:47:30 +00001150 continue;
1151 }
hailfingeraec9c962009-10-31 01:53:09 +00001152 buses_common = buses_supported & flash->bustype;
1153 if (!buses_common) {
hailfingera916b422009-06-01 02:08:58 +00001154 tmp = flashbuses_to_text(buses_supported);
hailfinger327d2522010-03-22 23:43:51 +00001155 msg_gdbg("skipped.");
1156 msg_gspew(" Host bus type %s ", tmp);
hailfingera916b422009-06-01 02:08:58 +00001157 free(tmp);
1158 tmp = flashbuses_to_text(flash->bustype);
hailfinger327d2522010-03-22 23:43:51 +00001159 msg_gspew("and chip bus type %s are incompatible.",
1160 tmp);
hailfingera916b422009-06-01 02:08:58 +00001161 free(tmp);
hailfinger327d2522010-03-22 23:43:51 +00001162 msg_gdbg("\n");
hailfingera916b422009-06-01 02:08:58 +00001163 continue;
1164 }
stepan782fb172007-04-06 11:58:03 +00001165
ollie5672ac62004-03-17 22:22:08 +00001166 size = flash->total_size * 1024;
hailfingeraec9c962009-10-31 01:53:09 +00001167 check_max_decode(buses_common, size);
stepan782fb172007-04-06 11:58:03 +00001168
hailfinger72d3b982009-05-09 07:27:23 +00001169 base = flashbase ? flashbase : (0xffffffff - size + 1);
hailfinger82719632009-05-16 21:22:56 +00001170 flash->virtual_memory = (chipaddr)programmer_map_flash_region("flash chip", base, size);
rminnich8d3ff912003-10-25 17:01:29 +00001171
stugec1e55fe2008-07-02 17:15:47 +00001172 if (force)
1173 break;
stepanc98b80b2006-03-16 16:57:41 +00001174
stuge56300c32008-09-03 23:10:05 +00001175 if (flash->probe(flash) != 1)
1176 goto notfound;
1177
uwefa98ca12008-10-18 21:14:13 +00001178 if (first_flash == flashchips
1179 || flash->model_id != GENERIC_DEVICE_ID)
stugec1e55fe2008-07-02 17:15:47 +00001180 break;
1181
stuge56300c32008-09-03 23:10:05 +00001182notfound:
hailfinger82719632009-05-16 21:22:56 +00001183 programmer_unmap_flash_region((void *)flash->virtual_memory, size);
rminnich8d3ff912003-10-25 17:01:29 +00001184 }
uwebe4477b2007-08-23 16:08:21 +00001185
stugec1e55fe2008-07-02 17:15:47 +00001186 if (!flash || !flash->name)
1187 return NULL;
1188
snelsone42c3802010-05-07 20:09:04 +00001189 msg_cinfo("%s chip \"%s %s\" (%d KB, %s) at physical address 0x%lx.\n",
hailfingerf4aaccc2010-04-28 15:22:14 +00001190 force ? "Assuming" : "Found",
uwe9e6811e2009-06-28 21:47:57 +00001191 flash->vendor, flash->name, flash->total_size,
1192 flashbuses_to_text(flash->bustype), base);
1193
snelson1ee293c2010-02-19 00:52:10 +00001194 if (flash->printlock)
1195 flash->printlock(flash);
1196
stugec1e55fe2008-07-02 17:15:47 +00001197 return flash;
rminnich8d3ff912003-10-25 17:01:29 +00001198}
1199
stepan193c9c22005-12-18 16:41:10 +00001200int verify_flash(struct flashchip *flash, uint8_t *buf)
rminnich8d3ff912003-10-25 17:01:29 +00001201{
hailfingerb0f4d122009-06-24 08:20:45 +00001202 int ret;
ollie5b621572004-03-20 16:46:10 +00001203 int total_size = flash->total_size * 1024;
rminnich8d3ff912003-10-25 17:01:29 +00001204
snelsone42c3802010-05-07 20:09:04 +00001205 msg_cinfo("Verifying flash... ");
uwef6641642007-05-09 10:17:44 +00001206
hailfingerb0f4d122009-06-24 08:20:45 +00001207 ret = verify_range(flash, buf, 0, total_size, NULL);
uwef6641642007-05-09 10:17:44 +00001208
hailfingerb0f4d122009-06-24 08:20:45 +00001209 if (!ret)
snelsone42c3802010-05-07 20:09:04 +00001210 msg_cinfo("VERIFIED. \n");
stepanc98b80b2006-03-16 16:57:41 +00001211
hailfingerb0f4d122009-06-24 08:20:45 +00001212 return ret;
rminnich8d3ff912003-10-25 17:01:29 +00001213}
1214
hailfinger771fc182010-10-15 00:01:14 +00001215int read_buf_from_file(unsigned char *buf, unsigned long size, char *filename)
1216{
1217 unsigned long numbytes;
1218 FILE *image;
1219 struct stat image_stat;
1220
1221 if ((image = fopen(filename, "rb")) == NULL) {
1222 perror(filename);
1223 return 1;
1224 }
1225 if (fstat(fileno(image), &image_stat) != 0) {
1226 perror(filename);
1227 fclose(image);
1228 return 1;
1229 }
1230 if (image_stat.st_size != size) {
1231 msg_gerr("Error: Image size doesn't match\n");
1232 fclose(image);
1233 return 1;
1234 }
1235 numbytes = fread(buf, 1, size, image);
1236 if (fclose(image)) {
1237 perror(filename);
1238 return 1;
1239 }
1240 if (numbytes != size) {
1241 msg_gerr("Error: Failed to read complete file. Got %ld bytes, "
1242 "wanted %ld!\n", numbytes, size);
1243 return 1;
1244 }
1245 return 0;
1246}
1247
hailfinger42a850a2010-07-13 23:56:13 +00001248int write_buf_to_file(unsigned char *buf, unsigned long size, char *filename)
hailfingerd219a232009-01-28 00:27:54 +00001249{
1250 unsigned long numbytes;
1251 FILE *image;
hailfingerde345862009-06-01 22:07:52 +00001252
1253 if (!filename) {
hailfinger42a850a2010-07-13 23:56:13 +00001254 msg_gerr("No filename specified.\n");
hailfingerde345862009-06-01 22:07:52 +00001255 return 1;
1256 }
oxygenebf70d352010-01-25 22:55:33 +00001257 if ((image = fopen(filename, "wb")) == NULL) {
hailfingerd219a232009-01-28 00:27:54 +00001258 perror(filename);
hailfinger23060112009-05-08 12:49:03 +00001259 return 1;
hailfinger42a850a2010-07-13 23:56:13 +00001260 }
hailfingerd219a232009-01-28 00:27:54 +00001261
hailfingerd219a232009-01-28 00:27:54 +00001262 numbytes = fwrite(buf, 1, size, image);
1263 fclose(image);
hailfinger42a850a2010-07-13 23:56:13 +00001264 if (numbytes != size) {
1265 msg_gerr("File %s could not be written completely.\n",
1266 filename);
hailfingerd219a232009-01-28 00:27:54 +00001267 return 1;
hailfinger42a850a2010-07-13 23:56:13 +00001268 }
hailfingerd219a232009-01-28 00:27:54 +00001269 return 0;
1270}
1271
hailfinger42a850a2010-07-13 23:56:13 +00001272int read_flash_to_file(struct flashchip *flash, char *filename)
1273{
1274 unsigned long size = flash->total_size * 1024;
1275 unsigned char *buf = calloc(size, sizeof(char));
1276 int ret = 0;
1277
1278 msg_cinfo("Reading flash... ");
1279 if (!buf) {
1280 msg_gerr("Memory allocation failed!\n");
1281 msg_cinfo("FAILED.\n");
1282 return 1;
1283 }
1284 if (!flash->read) {
1285 msg_cerr("No read function available for this flash chip.\n");
1286 ret = 1;
1287 goto out_free;
1288 }
1289 if (flash->read(flash, buf, 0, size)) {
1290 msg_cerr("Read operation failed!\n");
1291 ret = 1;
1292 goto out_free;
1293 }
1294
1295 ret = write_buf_to_file(buf, flash->total_size * 1024, filename);
1296out_free:
1297 free(buf);
1298 msg_cinfo("%s.\n", ret ? "FAILED" : "done");
1299 return ret;
1300}
1301
hailfingerb437e282010-11-04 01:04:27 +00001302/* This function shares a lot of its structure with erase_and_write_flash() and
1303 * walk_eraseregions().
hailfinger9fed35d2010-01-19 06:42:46 +00001304 * Even if an error is found, the function will keep going and check the rest.
1305 */
hailfinger1ff33dc2010-07-03 11:02:10 +00001306static int selfcheck_eraseblocks(struct flashchip *flash)
hailfinger45177872010-01-18 08:14:43 +00001307{
hailfinger9fed35d2010-01-19 06:42:46 +00001308 int i, j, k;
1309 int ret = 0;
hailfinger45177872010-01-18 08:14:43 +00001310
1311 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
1312 unsigned int done = 0;
1313 struct block_eraser eraser = flash->block_erasers[k];
1314
1315 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1316 /* Blocks with zero size are bugs in flashchips.c. */
1317 if (eraser.eraseblocks[i].count &&
1318 !eraser.eraseblocks[i].size) {
1319 msg_gerr("ERROR: Flash chip %s erase function "
1320 "%i region %i has size 0. Please report"
1321 " a bug at flashrom@flashrom.org\n",
1322 flash->name, k, i);
hailfinger9fed35d2010-01-19 06:42:46 +00001323 ret = 1;
hailfinger45177872010-01-18 08:14:43 +00001324 }
1325 /* Blocks with zero count are bugs in flashchips.c. */
1326 if (!eraser.eraseblocks[i].count &&
1327 eraser.eraseblocks[i].size) {
1328 msg_gerr("ERROR: Flash chip %s erase function "
1329 "%i region %i has count 0. Please report"
1330 " a bug at flashrom@flashrom.org\n",
1331 flash->name, k, i);
hailfinger9fed35d2010-01-19 06:42:46 +00001332 ret = 1;
hailfinger45177872010-01-18 08:14:43 +00001333 }
1334 done += eraser.eraseblocks[i].count *
1335 eraser.eraseblocks[i].size;
1336 }
hailfinger9fed35d2010-01-19 06:42:46 +00001337 /* Empty eraseblock definition with erase function. */
1338 if (!done && eraser.block_erase)
snelsone42c3802010-05-07 20:09:04 +00001339 msg_gspew("Strange: Empty eraseblock definition with "
hailfinger9fed35d2010-01-19 06:42:46 +00001340 "non-empty erase function. Not an error.\n");
hailfinger45177872010-01-18 08:14:43 +00001341 if (!done)
1342 continue;
1343 if (done != flash->total_size * 1024) {
1344 msg_gerr("ERROR: Flash chip %s erase function %i "
1345 "region walking resulted in 0x%06x bytes total,"
1346 " expected 0x%06x bytes. Please report a bug at"
1347 " flashrom@flashrom.org\n", flash->name, k,
1348 done, flash->total_size * 1024);
hailfinger9fed35d2010-01-19 06:42:46 +00001349 ret = 1;
hailfinger45177872010-01-18 08:14:43 +00001350 }
hailfinger9fed35d2010-01-19 06:42:46 +00001351 if (!eraser.block_erase)
1352 continue;
1353 /* Check if there are identical erase functions for different
1354 * layouts. That would imply "magic" erase functions. The
1355 * easiest way to check this is with function pointers.
1356 */
uwef6f94d42010-03-13 17:28:29 +00001357 for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) {
hailfinger9fed35d2010-01-19 06:42:46 +00001358 if (eraser.block_erase ==
1359 flash->block_erasers[j].block_erase) {
1360 msg_gerr("ERROR: Flash chip %s erase function "
1361 "%i and %i are identical. Please report"
1362 " a bug at flashrom@flashrom.org\n",
1363 flash->name, k, j);
1364 ret = 1;
1365 }
uwef6f94d42010-03-13 17:28:29 +00001366 }
hailfinger45177872010-01-18 08:14:43 +00001367 }
hailfinger9fed35d2010-01-19 06:42:46 +00001368 return ret;
hailfinger45177872010-01-18 08:14:43 +00001369}
1370
hailfingerb437e282010-11-04 01:04:27 +00001371static int erase_and_write_block_helper(struct flashchip *flash,
1372 unsigned int start, unsigned int len,
1373 uint8_t *oldcontents,
1374 uint8_t *newcontents,
1375 int (*erasefn) (struct flashchip *flash,
1376 unsigned int addr,
1377 unsigned int len))
1378{
1379 int starthere = 0;
1380 int lenhere = 0;
1381 int ret = 0;
1382 int skip = 1;
1383 int writecount = 0;
1384 enum write_granularity gran = write_gran_256bytes; /* FIXME */
1385
1386 /* oldcontents and newcontents are opaque to walk_eraseregions, and
1387 * need to be adjusted here to keep the impression of proper abstraction
1388 */
1389 oldcontents += start;
1390 newcontents += start;
1391 msg_cdbg(":");
1392 /* FIXME: Assume 256 byte granularity for now to play it safe. */
1393 if (need_erase(oldcontents, newcontents, len, gran)) {
1394 msg_cdbg("E");
1395 ret = erasefn(flash, start, len);
1396 if (ret)
1397 return ret;
1398 /* Erase was successful. Adjust oldcontents. */
1399 memset(oldcontents, 0xff, len);
1400 skip = 0;
1401 }
1402 while (get_next_write(oldcontents + starthere,
1403 newcontents + starthere,
1404 len - starthere, &starthere,
1405 &lenhere, gran)) {
1406 if (!writecount++)
1407 msg_cdbg("W");
1408 /* Needs the partial write function signature. */
1409 ret = flash->write(flash, newcontents + starthere,
1410 start + starthere, lenhere);
1411 if (ret)
1412 return ret;
1413 starthere += lenhere;
1414 skip = 0;
1415 }
1416 if (skip)
1417 msg_cdbg("S");
1418 return ret;
1419}
1420
hailfinger83541b32010-07-13 00:42:00 +00001421static int walk_eraseregions(struct flashchip *flash, int erasefunction,
1422 int (*do_something) (struct flashchip *flash,
1423 unsigned int addr,
hailfingerb437e282010-11-04 01:04:27 +00001424 unsigned int len,
1425 uint8_t *param1,
1426 uint8_t *param2,
1427 int (*erasefn) (
1428 struct flashchip *flash,
1429 unsigned int addr,
1430 unsigned int len)),
1431 void *param1, void *param2)
hailfinger2b8c9382010-07-13 00:37:19 +00001432{
1433 int i, j;
1434 unsigned int start = 0;
1435 unsigned int len;
1436 struct block_eraser eraser = flash->block_erasers[erasefunction];
1437 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1438 /* count==0 for all automatically initialized array
1439 * members so the loop below won't be executed for them.
1440 */
1441 len = eraser.eraseblocks[i].size;
1442 for (j = 0; j < eraser.eraseblocks[i].count; j++) {
hailfingerb437e282010-11-04 01:04:27 +00001443 /* Print this for every block except the first one. */
1444 if (i || j)
1445 msg_cdbg(", ");
1446 msg_cdbg("0x%06x-0x%06x", start,
hailfinger2b8c9382010-07-13 00:37:19 +00001447 start + len - 1);
hailfingerb437e282010-11-04 01:04:27 +00001448 if (do_something(flash, start, len, param1, param2,
1449 eraser.block_erase)) {
1450 msg_cdbg("\n");
hailfinger2b8c9382010-07-13 00:37:19 +00001451 return 1;
hailfingerb437e282010-11-04 01:04:27 +00001452 }
hailfinger2b8c9382010-07-13 00:37:19 +00001453 start += len;
1454 }
1455 }
hailfingerb437e282010-11-04 01:04:27 +00001456 msg_cdbg("\n");
hailfinger2b8c9382010-07-13 00:37:19 +00001457 return 0;
1458}
1459
hailfingerb437e282010-11-04 01:04:27 +00001460int erase_and_write_flash(struct flashchip *flash, uint8_t *oldcontents, uint8_t *newcontents)
hailfingerd219a232009-01-28 00:27:54 +00001461{
hailfinger2b8c9382010-07-13 00:37:19 +00001462 int k, ret = 0, found = 0;
hailfingerb437e282010-11-04 01:04:27 +00001463 uint8_t *curcontents;
1464 unsigned long size = flash->total_size * 1024;
hailfinger7df21362009-09-05 02:30:58 +00001465
hailfingerb437e282010-11-04 01:04:27 +00001466 curcontents = (uint8_t *) malloc(size);
1467 /* Copy oldcontents to curcontents to avoid clobbering oldcontents. */
1468 memcpy(curcontents, oldcontents, size);
1469
1470 msg_cinfo("Erasing and writing flash chip... ");
hailfinger7df21362009-09-05 02:30:58 +00001471 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
hailfinger7df21362009-09-05 02:30:58 +00001472 struct block_eraser eraser = flash->block_erasers[k];
1473
snelsone42c3802010-05-07 20:09:04 +00001474 msg_cdbg("Looking at blockwise erase function %i... ", k);
hailfinger7df21362009-09-05 02:30:58 +00001475 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
snelsone42c3802010-05-07 20:09:04 +00001476 msg_cdbg("not defined. "
hailfinger7df21362009-09-05 02:30:58 +00001477 "Looking for another erase function.\n");
1478 continue;
1479 }
1480 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
snelsone42c3802010-05-07 20:09:04 +00001481 msg_cdbg("eraseblock layout is known, but no "
hailfinger7df21362009-09-05 02:30:58 +00001482 "matching block erase function found. "
1483 "Looking for another erase function.\n");
1484 continue;
1485 }
1486 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
snelsone42c3802010-05-07 20:09:04 +00001487 msg_cdbg("block erase function found, but "
hailfinger7df21362009-09-05 02:30:58 +00001488 "eraseblock layout is unknown. "
1489 "Looking for another erase function.\n");
1490 continue;
1491 }
1492 found = 1;
snelsone42c3802010-05-07 20:09:04 +00001493 msg_cdbg("trying... ");
hailfingerb437e282010-11-04 01:04:27 +00001494 ret = walk_eraseregions(flash, k, &erase_and_write_block_helper, curcontents, newcontents);
snelsone42c3802010-05-07 20:09:04 +00001495 msg_cdbg("\n");
hailfinger7df21362009-09-05 02:30:58 +00001496 /* If everything is OK, don't try another erase function. */
1497 if (!ret)
1498 break;
hailfingerb437e282010-11-04 01:04:27 +00001499 /* FIXME: Reread the whole chip here so we know the current
1500 * chip contents? curcontents might be up to date, but this
1501 * code is only reached if something failed, and then we don't
1502 * know exactly what failed, and how.
1503 */
hailfinger7df21362009-09-05 02:30:58 +00001504 }
hailfingerb437e282010-11-04 01:04:27 +00001505 /* Free the scratchpad. */
1506 free(curcontents);
hailfinger7df21362009-09-05 02:30:58 +00001507 if (!found) {
snelsone42c3802010-05-07 20:09:04 +00001508 msg_cerr("ERROR: flashrom has no erase function for this flash chip.\n");
hailfingerd219a232009-01-28 00:27:54 +00001509 return 1;
1510 }
hailfinger1e9ee0f2009-05-08 17:15:15 +00001511
hailfinger7df21362009-09-05 02:30:58 +00001512 if (ret) {
snelsone42c3802010-05-07 20:09:04 +00001513 msg_cerr("FAILED!\n");
hailfinger7df21362009-09-05 02:30:58 +00001514 } else {
hailfingerb437e282010-11-04 01:04:27 +00001515 msg_cinfo("Done.\n");
hailfinger7df21362009-09-05 02:30:58 +00001516 }
1517 return ret;
hailfingerd219a232009-01-28 00:27:54 +00001518}
1519
hailfinger4c47e9d2010-10-19 22:06:20 +00001520void nonfatal_help_message(void)
1521{
1522 msg_gerr("Writing to the flash chip apparently didn't do anything.\n"
1523 "This means we have to add special support for your board, "
1524 "programmer or flash chip.\n"
1525 "Please report this on IRC at irc.freenode.net (channel "
1526 "#flashrom) or\n"
1527 "mail flashrom@flashrom.org!\n"
1528 "-------------------------------------------------------------"
1529 "------------------\n"
1530 "You may now reboot or simply leave the machine running.\n");
1531}
1532
uweb34ec9f2009-10-01 18:40:02 +00001533void emergency_help_message(void)
hailfinger0459e1c2009-08-19 13:55:34 +00001534{
snelsone42c3802010-05-07 20:09:04 +00001535 msg_gerr("Your flash chip is in an unknown state.\n"
uweb34ec9f2009-10-01 18:40:02 +00001536 "Get help on IRC at irc.freenode.net (channel #flashrom) or\n"
hailfinger5bae2332010-10-08 11:03:02 +00001537 "mail flashrom@flashrom.org with FAILED: your board name in "
1538 "the subject line!\n"
hailfinger74819ad2010-05-15 15:04:37 +00001539 "-------------------------------------------------------------"
1540 "------------------\n"
hailfinger0459e1c2009-08-19 13:55:34 +00001541 "DO NOT REBOOT OR POWEROFF!\n");
1542}
1543
hailfingerc77acb52009-12-24 02:15:55 +00001544/* The way to go if you want a delimited list of programmers*/
1545void list_programmers(char *delim)
1546{
1547 enum programmer p;
1548 for (p = 0; p < PROGRAMMER_INVALID; p++) {
snelsone42c3802010-05-07 20:09:04 +00001549 msg_ginfo("%s", programmer_table[p].name);
hailfingerc77acb52009-12-24 02:15:55 +00001550 if (p < PROGRAMMER_INVALID - 1)
snelsone42c3802010-05-07 20:09:04 +00001551 msg_ginfo("%s", delim);
hailfingerc77acb52009-12-24 02:15:55 +00001552 }
snelsone42c3802010-05-07 20:09:04 +00001553 msg_ginfo("\n");
hailfingerc77acb52009-12-24 02:15:55 +00001554}
1555
hailfingerf79d1712010-10-06 23:48:34 +00001556void list_programmers_linebreak(int startcol, int cols, int paren)
1557{
1558 const char *pname;
1559 int pnamelen;
1560 int remaining = 0;
1561 int firstline = 1;
1562 enum programmer p;
1563 int i;
1564
1565 for (p = 0; p < PROGRAMMER_INVALID; p++) {
1566 pname = programmer_table[p].name;
1567 pnamelen = strlen(pname);
1568 if (remaining - pnamelen - 2 < 0) {
1569 if (firstline)
1570 firstline = 0;
1571 else
1572 printf("\n");
1573 for (i = 0; i < startcol; i++)
1574 printf(" ");
1575 remaining = cols - startcol;
1576 } else {
1577 printf(" ");
1578 remaining--;
1579 }
1580 if (paren && (p == 0)) {
1581 printf("(");
1582 remaining--;
1583 }
1584 printf("%s", pname);
1585 remaining -= pnamelen;
1586 if (p < PROGRAMMER_INVALID - 1) {
1587 printf(",");
1588 remaining--;
1589 } else {
1590 if (paren)
1591 printf(")");
1592 printf("\n");
1593 }
1594 }
1595}
1596
hailfinger3b471632010-03-27 16:36:40 +00001597void print_sysinfo(void)
1598{
1599#if HAVE_UTSNAME == 1
1600 struct utsname osinfo;
1601 uname(&osinfo);
1602
1603 msg_ginfo(" on %s %s (%s)", osinfo.sysname, osinfo.release,
1604 osinfo.machine);
1605#else
1606 msg_ginfo(" on unknown machine");
1607#endif
1608 msg_ginfo(", built with");
1609#if NEED_PCI == 1
1610#ifdef PCILIB_VERSION
1611 msg_ginfo(" libpci %s,", PCILIB_VERSION);
1612#else
1613 msg_ginfo(" unknown PCI library,");
1614#endif
1615#endif
1616#ifdef __clang__
hailfinger3cc85ad2010-07-17 14:49:30 +00001617 msg_ginfo(" LLVM Clang");
1618#ifdef __clang_version__
1619 msg_ginfo(" %s,", __clang_version__);
1620#else
1621 msg_ginfo(" unknown version (before r102686),");
1622#endif
hailfinger3b471632010-03-27 16:36:40 +00001623#elif defined(__GNUC__)
1624 msg_ginfo(" GCC");
1625#ifdef __VERSION__
hailfinger324a9cc2010-05-26 01:45:41 +00001626 msg_ginfo(" %s,", __VERSION__);
hailfinger3b471632010-03-27 16:36:40 +00001627#else
hailfinger324a9cc2010-05-26 01:45:41 +00001628 msg_ginfo(" unknown version,");
hailfinger3b471632010-03-27 16:36:40 +00001629#endif
1630#else
hailfinger324a9cc2010-05-26 01:45:41 +00001631 msg_ginfo(" unknown compiler,");
1632#endif
1633#if defined (__FLASHROM_LITTLE_ENDIAN__)
1634 msg_ginfo(" little endian");
1635#else
1636 msg_ginfo(" big endian");
hailfinger3b471632010-03-27 16:36:40 +00001637#endif
1638 msg_ginfo("\n");
1639}
1640
uwefdeca092008-01-21 15:24:22 +00001641void print_version(void)
1642{
hailfinger74819ad2010-05-15 15:04:37 +00001643 msg_ginfo("flashrom v%s", flashrom_version);
hailfinger3b471632010-03-27 16:36:40 +00001644 print_sysinfo();
uwefdeca092008-01-21 15:24:22 +00001645}
1646
hailfinger74819ad2010-05-15 15:04:37 +00001647void print_banner(void)
1648{
1649 msg_ginfo("flashrom is free software, get the source code at "
1650 "http://www.flashrom.org\n");
1651 msg_ginfo("\n");
1652}
1653
hailfingerc77acb52009-12-24 02:15:55 +00001654int selfcheck(void)
1655{
hailfinger45177872010-01-18 08:14:43 +00001656 int ret = 0;
1657 struct flashchip *flash;
1658
1659 /* Safety check. Instead of aborting after the first error, check
1660 * if more errors exist.
1661 */
hailfingerc77acb52009-12-24 02:15:55 +00001662 if (ARRAY_SIZE(programmer_table) - 1 != PROGRAMMER_INVALID) {
snelsone42c3802010-05-07 20:09:04 +00001663 msg_gerr("Programmer table miscompilation!\n");
hailfinger45177872010-01-18 08:14:43 +00001664 ret = 1;
hailfingerc77acb52009-12-24 02:15:55 +00001665 }
1666 if (spi_programmer_count - 1 != SPI_CONTROLLER_INVALID) {
snelsone42c3802010-05-07 20:09:04 +00001667 msg_gerr("SPI programmer table miscompilation!\n");
hailfinger45177872010-01-18 08:14:43 +00001668 ret = 1;
hailfingerc77acb52009-12-24 02:15:55 +00001669 }
hailfinger45177872010-01-18 08:14:43 +00001670 for (flash = flashchips; flash && flash->name; flash++)
1671 if (selfcheck_eraseblocks(flash))
1672 ret = 1;
1673 return ret;
hailfingerc77acb52009-12-24 02:15:55 +00001674}
1675
1676void check_chip_supported(struct flashchip *flash)
1677{
1678 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
snelsone42c3802010-05-07 20:09:04 +00001679 msg_cinfo("===\n");
hailfingerc77acb52009-12-24 02:15:55 +00001680 if (flash->tested & TEST_BAD_MASK) {
snelsone42c3802010-05-07 20:09:04 +00001681 msg_cinfo("This flash part has status NOT WORKING for operations:");
hailfingerc77acb52009-12-24 02:15:55 +00001682 if (flash->tested & TEST_BAD_PROBE)
snelsone42c3802010-05-07 20:09:04 +00001683 msg_cinfo(" PROBE");
hailfingerc77acb52009-12-24 02:15:55 +00001684 if (flash->tested & TEST_BAD_READ)
snelsone42c3802010-05-07 20:09:04 +00001685 msg_cinfo(" READ");
hailfingerc77acb52009-12-24 02:15:55 +00001686 if (flash->tested & TEST_BAD_ERASE)
snelsone42c3802010-05-07 20:09:04 +00001687 msg_cinfo(" ERASE");
hailfingerc77acb52009-12-24 02:15:55 +00001688 if (flash->tested & TEST_BAD_WRITE)
snelsone42c3802010-05-07 20:09:04 +00001689 msg_cinfo(" WRITE");
1690 msg_cinfo("\n");
hailfingerc77acb52009-12-24 02:15:55 +00001691 }
1692 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
1693 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
1694 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
1695 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
snelsone42c3802010-05-07 20:09:04 +00001696 msg_cinfo("This flash part has status UNTESTED for operations:");
hailfingerc77acb52009-12-24 02:15:55 +00001697 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
snelsone42c3802010-05-07 20:09:04 +00001698 msg_cinfo(" PROBE");
hailfingerc77acb52009-12-24 02:15:55 +00001699 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
snelsone42c3802010-05-07 20:09:04 +00001700 msg_cinfo(" READ");
hailfingerc77acb52009-12-24 02:15:55 +00001701 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
snelsone42c3802010-05-07 20:09:04 +00001702 msg_cinfo(" ERASE");
hailfingerc77acb52009-12-24 02:15:55 +00001703 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
snelsone42c3802010-05-07 20:09:04 +00001704 msg_cinfo(" WRITE");
1705 msg_cinfo("\n");
hailfingerc77acb52009-12-24 02:15:55 +00001706 }
hailfinger92cd8e32010-01-07 03:24:05 +00001707 /* FIXME: This message is designed towards CLI users. */
hailfinger74819ad2010-05-15 15:04:37 +00001708 msg_cinfo("The test status of this chip may have been updated "
1709 "in the latest development\n"
1710 "version of flashrom. If you are running the latest "
1711 "development version,\n"
1712 "please email a report to flashrom@flashrom.org if "
1713 "any of the above operations\n"
1714 "work correctly for you with this flash part. Please "
1715 "include the flashrom\n"
1716 "output with the additional -V option for all "
1717 "operations you tested (-V, -Vr,\n"
1718 "-Vw, -VE), and mention which mainboard or "
1719 "programmer you tested.\n"
hailfinger5bae2332010-10-08 11:03:02 +00001720 "Please mention your board in the subject line. "
1721 "Thanks for your help!\n");
hailfingerc77acb52009-12-24 02:15:55 +00001722 }
1723}
1724
ollie5b621572004-03-20 16:46:10 +00001725int main(int argc, char *argv[])
rminnich8d3ff912003-10-25 17:01:29 +00001726{
hailfinger92cd8e32010-01-07 03:24:05 +00001727 return cli_classic(argc, argv);
hailfingerc77acb52009-12-24 02:15:55 +00001728}
1729
hailfinger771fc182010-10-15 00:01:14 +00001730/* FIXME: This function signature needs to be improved once doit() has a better
1731 * function signature.
1732 */
1733int chip_safety_check(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1734{
1735 if (!programmer_may_write && (write_it || erase_it)) {
1736 msg_perr("Write/erase is not working yet on your programmer in "
1737 "its current configuration.\n");
1738 /* --force is the wrong approach, but it's the best we can do
1739 * until the generic programmer parameter parser is merged.
1740 */
1741 if (!force)
1742 return 1;
1743 msg_cerr("Continuing anyway.\n");
1744 }
1745
1746 if (read_it || erase_it || write_it || verify_it) {
1747 /* Everything needs read. */
1748 if (flash->tested & TEST_BAD_READ) {
1749 msg_cerr("Read is not working on this chip. ");
1750 if (!force)
1751 return 1;
1752 msg_cerr("Continuing anyway.\n");
1753 }
1754 if (!flash->read) {
1755 msg_cerr("flashrom has no read function for this "
1756 "flash chip.\n");
1757 return 1;
1758 }
1759 }
1760 if (erase_it || write_it) {
1761 /* Write needs erase. */
1762 if (flash->tested & TEST_BAD_ERASE) {
1763 msg_cerr("Erase is not working on this chip. ");
1764 if (!force)
1765 return 1;
1766 msg_cerr("Continuing anyway.\n");
1767 }
1768 /* FIXME: Check if at least one erase function exists. */
1769 }
1770 if (write_it) {
1771 if (flash->tested & TEST_BAD_WRITE) {
1772 msg_cerr("Write is not working on this chip. ");
1773 if (!force)
1774 return 1;
1775 msg_cerr("Continuing anyway.\n");
1776 }
1777 if (!flash->write) {
1778 msg_cerr("flashrom has no write function for this "
1779 "flash chip.\n");
1780 return 1;
1781 }
1782 }
1783 return 0;
1784}
1785
hailfingerc77acb52009-12-24 02:15:55 +00001786/* This function signature is horrible. We need to design a better interface,
1787 * but right now it allows us to split off the CLI code.
hailfingerd217d122010-10-08 18:52:29 +00001788 * Besides that, the function itself is a textbook example of abysmal code flow.
hailfingerc77acb52009-12-24 02:15:55 +00001789 */
1790int doit(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1791{
hailfinger4c47e9d2010-10-19 22:06:20 +00001792 uint8_t *oldcontents;
1793 uint8_t *newcontents;
hailfingerc77acb52009-12-24 02:15:55 +00001794 int ret = 0;
hailfinger4c47e9d2010-10-19 22:06:20 +00001795 unsigned long size = flash->total_size * 1024;
hailfingerc77acb52009-12-24 02:15:55 +00001796
hailfinger771fc182010-10-15 00:01:14 +00001797 if (chip_safety_check(flash, force, filename, read_it, write_it, erase_it, verify_it)) {
1798 msg_cerr("Aborting.\n");
1799 programmer_shutdown();
1800 return 1;
1801 }
1802
hailfinger771fc182010-10-15 00:01:14 +00001803 /* Given the existence of read locks, we want to unlock for read,
1804 * erase and write.
1805 */
1806 if (flash->unlock)
1807 flash->unlock(flash);
1808
1809 if (read_it) {
1810 ret = read_flash_to_file(flash, filename);
1811 programmer_shutdown();
1812 return ret;
hailfinger5828baf2010-07-03 12:14:25 +00001813 }
hailfingerb437e282010-11-04 01:04:27 +00001814
1815 oldcontents = (uint8_t *) malloc(size);
1816 /* Assume worst case: All bits are 0. */
1817 memset(oldcontents, 0x00, size);
1818 newcontents = (uint8_t *) malloc(size);
1819 /* Assume best case: All bits should be 1. */
1820 memset(newcontents, 0xff, size);
1821 /* Side effect of the assumptions above: Default write action is erase
1822 * because newcontents looks like a completely erased chip, and
1823 * oldcontents being completely 0x00 means we have to erase everything
1824 * before we can write.
1825 */
1826
ollie0eb62d62004-12-08 20:10:01 +00001827 if (erase_it) {
hailfinger4c47e9d2010-10-19 22:06:20 +00001828 /* FIXME: Do we really want the scary warning if erase failed?
1829 * After all, after erase the chip is either blank or partially
1830 * blank or it has the old contents. A blank chip won't boot,
1831 * so if the user wanted erase and reboots afterwards, the user
1832 * knows very well that booting won't work.
1833 */
hailfingerb437e282010-11-04 01:04:27 +00001834 if (erase_and_write_flash(flash, oldcontents, newcontents)) {
hailfinger0459e1c2009-08-19 13:55:34 +00001835 emergency_help_message();
hailfingerb437e282010-11-04 01:04:27 +00001836 ret = 1;
hailfinger0459e1c2009-08-19 13:55:34 +00001837 }
hailfingerb437e282010-11-04 01:04:27 +00001838 programmer_shutdown();
1839 return ret;
hailfingerd217d122010-10-08 18:52:29 +00001840 }
hailfinger771fc182010-10-15 00:01:14 +00001841
hailfingerd217d122010-10-08 18:52:29 +00001842 if (write_it || verify_it) {
hailfinger4c47e9d2010-10-19 22:06:20 +00001843 if (read_buf_from_file(newcontents, size, filename)) {
uweff4576d2009-09-30 18:29:55 +00001844 programmer_shutdown();
hailfinger771fc182010-10-15 00:01:14 +00001845 return 1;
stepan1da96c02006-11-21 23:48:51 +00001846 }
1847
hailfinger90c7d542010-05-31 15:27:27 +00001848#if CONFIG_INTERNAL == 1
hailfinger4c47e9d2010-10-19 22:06:20 +00001849 if (programmer == PROGRAMMER_INTERNAL)
1850 show_id(newcontents, size, force);
hailfinger80422e22009-12-13 22:28:00 +00001851#endif
ollie5672ac62004-03-17 22:22:08 +00001852 }
1853
hailfinger4c47e9d2010-10-19 22:06:20 +00001854 /* Read the whole chip to be able to check whether regions need to be
1855 * erased and to give better diagnostics in case write fails.
1856 * The alternative would be to read only the regions which are to be
1857 * preserved, but in that case we might perform unneeded erase which
1858 * takes time as well.
1859 */
1860 msg_cdbg("Reading old flash chip contents...\n");
1861 if (flash->read(flash, oldcontents, 0, size)) {
1862 programmer_shutdown();
1863 return 1;
1864 }
1865
ollie6a600992005-11-26 21:55:36 +00001866 // This should be moved into each flash part's code to do it
1867 // cleanly. This does the job.
hailfinger4c47e9d2010-10-19 22:06:20 +00001868 handle_romentries(flash, oldcontents, newcontents);
uwef6641642007-05-09 10:17:44 +00001869
ollie6a600992005-11-26 21:55:36 +00001870 // ////////////////////////////////////////////////////////////
uwef6641642007-05-09 10:17:44 +00001871
stuge8ce3a3c2008-04-28 14:47:30 +00001872 if (write_it) {
hailfingerb437e282010-11-04 01:04:27 +00001873 if (erase_and_write_flash(flash, oldcontents, newcontents)) {
1874 msg_cerr("Uh oh. Erase/write failed. Checking if "
1875 "anything changed.\n");
hailfinger4c47e9d2010-10-19 22:06:20 +00001876 if (!flash->read(flash, newcontents, 0, size)) {
1877 if (!memcmp(oldcontents, newcontents, size)) {
1878 msg_cinfo("Good. It seems nothing was "
1879 "changed.\n");
1880 nonfatal_help_message();
1881 programmer_shutdown();
1882 return 1;
1883 }
1884 }
hailfingerd217d122010-10-08 18:52:29 +00001885 emergency_help_message();
uweff4576d2009-09-30 18:29:55 +00001886 programmer_shutdown();
stuge8ce3a3c2008-04-28 14:47:30 +00001887 return 1;
1888 }
stuge8ce3a3c2008-04-28 14:47:30 +00001889 }
ollie6a600992005-11-26 21:55:36 +00001890
hailfinger0459e1c2009-08-19 13:55:34 +00001891 if (verify_it) {
1892 /* Work around chips which need some time to calm down. */
1893 if (write_it)
1894 programmer_delay(1000*1000);
hailfinger4c47e9d2010-10-19 22:06:20 +00001895 ret = verify_flash(flash, newcontents);
hailfingera50d60e2009-11-17 09:57:34 +00001896 /* If we tried to write, and verification now fails, we
hailfinger0459e1c2009-08-19 13:55:34 +00001897 * might have an emergency situation.
1898 */
1899 if (ret && write_it)
1900 emergency_help_message();
1901 }
ollie6a600992005-11-26 21:55:36 +00001902
hailfingerabe249e2009-05-08 17:43:22 +00001903 programmer_shutdown();
1904
stepan83eca252006-01-04 16:42:57 +00001905 return ret;
rminnich8d3ff912003-10-25 17:01:29 +00001906}