blob: 34248ed73c43c1b81c2a4de4e73117eb4ab2bf90 [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>
hailfingerf76cc322010-11-09 22:00:31 +000032#include <ctype.h>
ollie6a600992005-11-26 21:55:36 +000033#include <getopt.h>
hailfinger3b471632010-03-27 16:36:40 +000034#if HAVE_UTSNAME == 1
35#include <sys/utsname.h>
36#endif
rminnich8d3ff912003-10-25 17:01:29 +000037#include "flash.h"
hailfinger66966da2009-06-15 14:14:48 +000038#include "flashchips.h"
hailfinger428f6852010-07-27 22:41:39 +000039#include "programmer.h"
rminnich8d3ff912003-10-25 17:01:29 +000040
krause2eb76212011-01-17 07:50:42 +000041const char flashrom_version[] = FLASHROM_VERSION;
rminnich8d3ff912003-10-25 17:01:29 +000042char *chip_to_probe = NULL;
stuge98c09aa2008-06-18 02:08:40 +000043int verbose = 0;
hailfinger80422e22009-12-13 22:28:00 +000044
hailfinger90c7d542010-05-31 15:27:27 +000045#if CONFIG_INTERNAL == 1
hailfinger6fe23d62009-08-12 11:39:29 +000046enum programmer programmer = PROGRAMMER_INTERNAL;
hailfinger90c7d542010-05-31 15:27:27 +000047#elif CONFIG_DUMMY == 1
hailfinger80422e22009-12-13 22:28:00 +000048enum programmer programmer = PROGRAMMER_DUMMY;
49#else
hailfingerf95c8f62010-01-10 13:28:48 +000050/* If neither internal nor dummy are selected, we must pick a sensible default.
51 * Since there is no reason to prefer a particular external programmer, we fail
52 * if more than one of them is selected. If only one is selected, it is clear
53 * that the user wants that one to become the default.
54 */
hailfinger935365d2011-02-04 21:37:59 +000055#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+CONFIG_OGP_SPI+CONFIG_SATAMV > 1
hailfinger90c7d542010-05-31 15:27:27 +000056#error Please enable either CONFIG_DUMMY or CONFIG_INTERNAL or disable support for all programmers except one.
hailfingerf95c8f62010-01-10 13:28:48 +000057#endif
58enum programmer programmer =
hailfinger90c7d542010-05-31 15:27:27 +000059#if CONFIG_NIC3COM == 1
hailfingerf95c8f62010-01-10 13:28:48 +000060 PROGRAMMER_NIC3COM
61#endif
hailfinger90c7d542010-05-31 15:27:27 +000062#if CONFIG_NICREALTEK == 1
hailfinger5aa36982010-05-21 21:54:07 +000063 PROGRAMMER_NICREALTEK
hailfinger5aa36982010-05-21 21:54:07 +000064#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
hailfingerfb1f31f2010-12-03 14:48:11 +000098#if CONFIG_OGP_SPI == 1
99 PROGRAMMER_OGP_SPI
100#endif
hailfinger935365d2011-02-04 21:37:59 +0000101#if CONFIG_SATAMV == 1
102 PROGRAMMER_SATAMV
103#endif
hailfingerf95c8f62010-01-10 13:28:48 +0000104;
hailfinger80422e22009-12-13 22:28:00 +0000105#endif
106
hailfingerddeb4ac2010-07-08 10:13:37 +0000107static char *programmer_param = NULL;
stepan782fb172007-04-06 11:58:03 +0000108
hailfinger1ff33dc2010-07-03 11:02:10 +0000109/* Supported buses for the current programmer. */
110enum chipbustype buses_supported;
hailfinger80422e22009-12-13 22:28:00 +0000111
uwee15beb92010-08-08 17:01:18 +0000112/*
hailfinger80422e22009-12-13 22:28:00 +0000113 * Programmers supporting multiple buses can have differing size limits on
114 * each bus. Store the limits for each bus in a common struct.
115 */
hailfinger1ff33dc2010-07-03 11:02:10 +0000116struct decode_sizes max_rom_decode;
117
118/* If nonzero, used as the start address of bottom-aligned flash. */
119unsigned long flashbase;
hailfinger80422e22009-12-13 22:28:00 +0000120
hailfinger5828baf2010-07-03 12:14:25 +0000121/* Is writing allowed with this programmer? */
122int programmer_may_write;
123
hailfingerabe249e2009-05-08 17:43:22 +0000124const struct programmer_entry programmer_table[] = {
hailfinger90c7d542010-05-31 15:27:27 +0000125#if CONFIG_INTERNAL == 1
hailfingerabe249e2009-05-08 17:43:22 +0000126 {
hailfinger3548a9a2009-08-12 14:34:35 +0000127 .name = "internal",
hailfinger6c69ab02009-05-11 15:46:43 +0000128 .init = internal_init,
129 .shutdown = internal_shutdown,
hailfinger11ae3c42009-05-11 14:13:25 +0000130 .map_flash_region = physmap,
131 .unmap_flash_region = physunmap,
hailfinger6c69ab02009-05-11 15:46:43 +0000132 .chip_readb = internal_chip_readb,
133 .chip_readw = internal_chip_readw,
134 .chip_readl = internal_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000135 .chip_readn = internal_chip_readn,
hailfinger6c69ab02009-05-11 15:46:43 +0000136 .chip_writeb = internal_chip_writeb,
137 .chip_writew = internal_chip_writew,
138 .chip_writel = internal_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000139 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000140 .delay = internal_delay,
hailfingerabe249e2009-05-08 17:43:22 +0000141 },
hailfinger80422e22009-12-13 22:28:00 +0000142#endif
stepan927d4e22007-04-04 22:45:58 +0000143
hailfinger90c7d542010-05-31 15:27:27 +0000144#if CONFIG_DUMMY == 1
hailfingera9df33c2009-05-09 00:54:55 +0000145 {
hailfinger3548a9a2009-08-12 14:34:35 +0000146 .name = "dummy",
hailfinger6c69ab02009-05-11 15:46:43 +0000147 .init = dummy_init,
148 .shutdown = dummy_shutdown,
hailfinger11ae3c42009-05-11 14:13:25 +0000149 .map_flash_region = dummy_map,
150 .unmap_flash_region = dummy_unmap,
hailfinger6c69ab02009-05-11 15:46:43 +0000151 .chip_readb = dummy_chip_readb,
152 .chip_readw = dummy_chip_readw,
153 .chip_readl = dummy_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000154 .chip_readn = dummy_chip_readn,
hailfinger6c69ab02009-05-11 15:46:43 +0000155 .chip_writeb = dummy_chip_writeb,
156 .chip_writew = dummy_chip_writew,
157 .chip_writel = dummy_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000158 .chip_writen = dummy_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000159 .delay = internal_delay,
hailfingera9df33c2009-05-09 00:54:55 +0000160 },
hailfinger571a6b32009-09-16 10:09:21 +0000161#endif
hailfingera9df33c2009-05-09 00:54:55 +0000162
hailfinger90c7d542010-05-31 15:27:27 +0000163#if CONFIG_NIC3COM == 1
uwe0f5a3a22009-05-13 11:36:06 +0000164 {
hailfinger3548a9a2009-08-12 14:34:35 +0000165 .name = "nic3com",
uwe0f5a3a22009-05-13 11:36:06 +0000166 .init = nic3com_init,
167 .shutdown = nic3com_shutdown,
uwe3e656bd2009-05-17 23:12:17 +0000168 .map_flash_region = fallback_map,
169 .unmap_flash_region = fallback_unmap,
uwe0f5a3a22009-05-13 11:36:06 +0000170 .chip_readb = nic3com_chip_readb,
hailfinger43716942009-05-16 01:23:55 +0000171 .chip_readw = fallback_chip_readw,
172 .chip_readl = fallback_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000173 .chip_readn = fallback_chip_readn,
uwe0f5a3a22009-05-13 11:36:06 +0000174 .chip_writeb = nic3com_chip_writeb,
hailfinger43716942009-05-16 01:23:55 +0000175 .chip_writew = fallback_chip_writew,
176 .chip_writel = fallback_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000177 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000178 .delay = internal_delay,
uwe0f5a3a22009-05-13 11:36:06 +0000179 },
hailfinger571a6b32009-09-16 10:09:21 +0000180#endif
uwe0f5a3a22009-05-13 11:36:06 +0000181
hailfinger90c7d542010-05-31 15:27:27 +0000182#if CONFIG_NICREALTEK == 1
hailfinger5aa36982010-05-21 21:54:07 +0000183 {
hailfinger0d703d42011-03-07 01:08:09 +0000184 /* This programmer works for Realtek RTL8139 and SMC 1211. */
hailfinger5aa36982010-05-21 21:54:07 +0000185 .name = "nicrealtek",
hailfinger0d703d42011-03-07 01:08:09 +0000186 //.name = "nicsmc1211",
hailfinger5aa36982010-05-21 21:54:07 +0000187 .init = nicrealtek_init,
188 .shutdown = nicrealtek_shutdown,
189 .map_flash_region = fallback_map,
190 .unmap_flash_region = fallback_unmap,
191 .chip_readb = nicrealtek_chip_readb,
192 .chip_readw = fallback_chip_readw,
193 .chip_readl = fallback_chip_readl,
194 .chip_readn = fallback_chip_readn,
195 .chip_writeb = nicrealtek_chip_writeb,
196 .chip_writew = fallback_chip_writew,
197 .chip_writel = fallback_chip_writel,
198 .chip_writen = fallback_chip_writen,
199 .delay = internal_delay,
200 },
hailfinger5aa36982010-05-21 21:54:07 +0000201#endif
202
hailfingerf0a368f2010-06-07 22:37:54 +0000203#if CONFIG_NICNATSEMI == 1
204 {
205 .name = "nicnatsemi",
206 .init = nicnatsemi_init,
207 .shutdown = nicnatsemi_shutdown,
208 .map_flash_region = fallback_map,
209 .unmap_flash_region = fallback_unmap,
210 .chip_readb = nicnatsemi_chip_readb,
211 .chip_readw = fallback_chip_readw,
212 .chip_readl = fallback_chip_readl,
213 .chip_readn = fallback_chip_readn,
214 .chip_writeb = nicnatsemi_chip_writeb,
215 .chip_writew = fallback_chip_writew,
216 .chip_writel = fallback_chip_writel,
217 .chip_writen = fallback_chip_writen,
218 .delay = internal_delay,
219 },
220#endif
hailfinger5aa36982010-05-21 21:54:07 +0000221
hailfinger90c7d542010-05-31 15:27:27 +0000222#if CONFIG_GFXNVIDIA == 1
uweff4576d2009-09-30 18:29:55 +0000223 {
224 .name = "gfxnvidia",
225 .init = gfxnvidia_init,
226 .shutdown = gfxnvidia_shutdown,
227 .map_flash_region = fallback_map,
228 .unmap_flash_region = fallback_unmap,
229 .chip_readb = gfxnvidia_chip_readb,
230 .chip_readw = fallback_chip_readw,
231 .chip_readl = fallback_chip_readl,
232 .chip_readn = fallback_chip_readn,
233 .chip_writeb = gfxnvidia_chip_writeb,
234 .chip_writew = fallback_chip_writew,
235 .chip_writel = fallback_chip_writel,
236 .chip_writen = fallback_chip_writen,
237 .delay = internal_delay,
238 },
239#endif
240
hailfinger90c7d542010-05-31 15:27:27 +0000241#if CONFIG_DRKAISER == 1
ruikda922a12009-05-17 19:39:27 +0000242 {
uwee2f95ef2009-09-02 23:00:46 +0000243 .name = "drkaiser",
244 .init = drkaiser_init,
245 .shutdown = drkaiser_shutdown,
246 .map_flash_region = fallback_map,
247 .unmap_flash_region = fallback_unmap,
248 .chip_readb = drkaiser_chip_readb,
249 .chip_readw = fallback_chip_readw,
250 .chip_readl = fallback_chip_readl,
251 .chip_readn = fallback_chip_readn,
252 .chip_writeb = drkaiser_chip_writeb,
253 .chip_writew = fallback_chip_writew,
254 .chip_writel = fallback_chip_writel,
255 .chip_writen = fallback_chip_writen,
256 .delay = internal_delay,
257 },
hailfinger571a6b32009-09-16 10:09:21 +0000258#endif
uwee2f95ef2009-09-02 23:00:46 +0000259
hailfinger90c7d542010-05-31 15:27:27 +0000260#if CONFIG_SATASII == 1
uwee2f95ef2009-09-02 23:00:46 +0000261 {
hailfinger3548a9a2009-08-12 14:34:35 +0000262 .name = "satasii",
ruikda922a12009-05-17 19:39:27 +0000263 .init = satasii_init,
264 .shutdown = satasii_shutdown,
uwe3e656bd2009-05-17 23:12:17 +0000265 .map_flash_region = fallback_map,
266 .unmap_flash_region = fallback_unmap,
ruikda922a12009-05-17 19:39:27 +0000267 .chip_readb = satasii_chip_readb,
268 .chip_readw = fallback_chip_readw,
269 .chip_readl = fallback_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000270 .chip_readn = fallback_chip_readn,
ruikda922a12009-05-17 19:39:27 +0000271 .chip_writeb = satasii_chip_writeb,
272 .chip_writew = fallback_chip_writew,
273 .chip_writel = fallback_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000274 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000275 .delay = internal_delay,
ruikda922a12009-05-17 19:39:27 +0000276 },
hailfinger571a6b32009-09-16 10:09:21 +0000277#endif
ruikda922a12009-05-17 19:39:27 +0000278
hailfinger90c7d542010-05-31 15:27:27 +0000279#if CONFIG_ATAHPT == 1
uwe7e627c82010-02-21 21:17:00 +0000280 {
281 .name = "atahpt",
282 .init = atahpt_init,
283 .shutdown = atahpt_shutdown,
284 .map_flash_region = fallback_map,
285 .unmap_flash_region = fallback_unmap,
286 .chip_readb = atahpt_chip_readb,
287 .chip_readw = fallback_chip_readw,
288 .chip_readl = fallback_chip_readl,
289 .chip_readn = fallback_chip_readn,
290 .chip_writeb = atahpt_chip_writeb,
291 .chip_writew = fallback_chip_writew,
292 .chip_writel = fallback_chip_writel,
293 .chip_writen = fallback_chip_writen,
294 .delay = internal_delay,
295 },
296#endif
297
hailfinger90c7d542010-05-31 15:27:27 +0000298#if CONFIG_INTERNAL == 1
hailfinger324a9cc2010-05-26 01:45:41 +0000299#if defined(__i386__) || defined(__x86_64__)
hailfinger26e212b2009-05-31 18:00:57 +0000300 {
hailfinger3548a9a2009-08-12 14:34:35 +0000301 .name = "it87spi",
hailfinger26e212b2009-05-31 18:00:57 +0000302 .init = it87spi_init,
hailfinger571a6b32009-09-16 10:09:21 +0000303 .shutdown = noop_shutdown,
hailfinger6fe23d62009-08-12 11:39:29 +0000304 .map_flash_region = fallback_map,
305 .unmap_flash_region = fallback_unmap,
hailfinger571a6b32009-09-16 10:09:21 +0000306 .chip_readb = noop_chip_readb,
hailfinger9d987ef2009-06-05 18:32:07 +0000307 .chip_readw = fallback_chip_readw,
308 .chip_readl = fallback_chip_readl,
309 .chip_readn = fallback_chip_readn,
hailfinger571a6b32009-09-16 10:09:21 +0000310 .chip_writeb = noop_chip_writeb,
hailfinger9d987ef2009-06-05 18:32:07 +0000311 .chip_writew = fallback_chip_writew,
312 .chip_writel = fallback_chip_writel,
313 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000314 .delay = internal_delay,
hailfinger26e212b2009-05-31 18:00:57 +0000315 },
hailfinger80422e22009-12-13 22:28:00 +0000316#endif
hailfinger324a9cc2010-05-26 01:45:41 +0000317#endif
hailfinger26e212b2009-05-31 18:00:57 +0000318
hailfinger90c7d542010-05-31 15:27:27 +0000319#if CONFIG_FT2232_SPI == 1
hailfingerf31da3d2009-06-16 21:08:06 +0000320 {
hailfinger90c7d542010-05-31 15:27:27 +0000321 .name = "ft2232_spi",
hailfingerf31da3d2009-06-16 21:08:06 +0000322 .init = ft2232_spi_init,
hailfinger571a6b32009-09-16 10:09:21 +0000323 .shutdown = noop_shutdown, /* Missing shutdown */
hailfinger6fe23d62009-08-12 11:39:29 +0000324 .map_flash_region = fallback_map,
325 .unmap_flash_region = fallback_unmap,
hailfinger571a6b32009-09-16 10:09:21 +0000326 .chip_readb = noop_chip_readb,
hailfingerf31da3d2009-06-16 21:08:06 +0000327 .chip_readw = fallback_chip_readw,
328 .chip_readl = fallback_chip_readl,
329 .chip_readn = fallback_chip_readn,
hailfinger571a6b32009-09-16 10:09:21 +0000330 .chip_writeb = noop_chip_writeb,
hailfingerf31da3d2009-06-16 21:08:06 +0000331 .chip_writew = fallback_chip_writew,
332 .chip_writel = fallback_chip_writel,
333 .chip_writen = fallback_chip_writen,
334 .delay = internal_delay,
335 },
hailfingerd9dcfbd2009-08-19 13:27:58 +0000336#endif
hailfinger6fe23d62009-08-12 11:39:29 +0000337
hailfinger90c7d542010-05-31 15:27:27 +0000338#if CONFIG_SERPROG == 1
hailfinger37b4fbf2009-06-23 11:33:43 +0000339 {
hailfinger3548a9a2009-08-12 14:34:35 +0000340 .name = "serprog",
hailfinger37b4fbf2009-06-23 11:33:43 +0000341 .init = serprog_init,
342 .shutdown = serprog_shutdown,
343 .map_flash_region = fallback_map,
344 .unmap_flash_region = fallback_unmap,
345 .chip_readb = serprog_chip_readb,
346 .chip_readw = fallback_chip_readw,
347 .chip_readl = fallback_chip_readl,
348 .chip_readn = serprog_chip_readn,
349 .chip_writeb = serprog_chip_writeb,
350 .chip_writew = fallback_chip_writew,
351 .chip_writel = fallback_chip_writel,
352 .chip_writen = fallback_chip_writen,
353 .delay = serprog_delay,
354 },
hailfinger74d88a72009-08-12 16:17:41 +0000355#endif
hailfingerf31da3d2009-06-16 21:08:06 +0000356
hailfinger90c7d542010-05-31 15:27:27 +0000357#if CONFIG_BUSPIRATE_SPI == 1
hailfinger9c5add72009-11-24 00:20:03 +0000358 {
hailfinger90c7d542010-05-31 15:27:27 +0000359 .name = "buspirate_spi",
hailfinger9c5add72009-11-24 00:20:03 +0000360 .init = buspirate_spi_init,
361 .shutdown = buspirate_spi_shutdown,
362 .map_flash_region = fallback_map,
363 .unmap_flash_region = fallback_unmap,
364 .chip_readb = noop_chip_readb,
365 .chip_readw = fallback_chip_readw,
366 .chip_readl = fallback_chip_readl,
367 .chip_readn = fallback_chip_readn,
368 .chip_writeb = noop_chip_writeb,
369 .chip_writew = fallback_chip_writew,
370 .chip_writel = fallback_chip_writel,
371 .chip_writen = fallback_chip_writen,
372 .delay = internal_delay,
373 },
374#endif
375
hailfinger90c7d542010-05-31 15:27:27 +0000376#if CONFIG_DEDIPROG == 1
hailfingerdfb32a02010-01-19 11:15:48 +0000377 {
378 .name = "dediprog",
379 .init = dediprog_init,
380 .shutdown = dediprog_shutdown,
381 .map_flash_region = fallback_map,
382 .unmap_flash_region = fallback_unmap,
383 .chip_readb = noop_chip_readb,
384 .chip_readw = fallback_chip_readw,
385 .chip_readl = fallback_chip_readl,
386 .chip_readn = fallback_chip_readn,
387 .chip_writeb = noop_chip_writeb,
388 .chip_writew = fallback_chip_writew,
389 .chip_writel = fallback_chip_writel,
390 .chip_writen = fallback_chip_writen,
391 .delay = internal_delay,
392 },
393#endif
394
hailfinger52c4fa02010-07-21 10:26:01 +0000395#if CONFIG_RAYER_SPI == 1
396 {
397 .name = "rayer_spi",
398 .init = rayer_spi_init,
399 .shutdown = noop_shutdown,
400 .map_flash_region = fallback_map,
401 .unmap_flash_region = fallback_unmap,
402 .chip_readb = noop_chip_readb,
403 .chip_readw = fallback_chip_readw,
404 .chip_readl = fallback_chip_readl,
405 .chip_readn = fallback_chip_readn,
406 .chip_writeb = noop_chip_writeb,
407 .chip_writew = fallback_chip_writew,
408 .chip_writel = fallback_chip_writel,
409 .chip_writen = fallback_chip_writen,
410 .delay = internal_delay,
411 },
412#endif
413
uwe6764e922010-09-03 18:21:21 +0000414#if CONFIG_NICINTEL_SPI == 1
415 {
416 .name = "nicintel_spi",
417 .init = nicintel_spi_init,
418 .shutdown = nicintel_spi_shutdown,
419 .map_flash_region = fallback_map,
420 .unmap_flash_region = fallback_unmap,
421 .chip_readb = noop_chip_readb,
422 .chip_readw = fallback_chip_readw,
423 .chip_readl = fallback_chip_readl,
424 .chip_readn = fallback_chip_readn,
425 .chip_writeb = noop_chip_writeb,
426 .chip_writew = fallback_chip_writew,
427 .chip_writel = fallback_chip_writel,
428 .chip_writen = fallback_chip_writen,
429 .delay = internal_delay,
430 },
431#endif
432
hailfingerfb1f31f2010-12-03 14:48:11 +0000433#if CONFIG_OGP_SPI == 1
434 {
435 .name = "ogp_spi",
436 .init = ogp_spi_init,
437 .shutdown = ogp_spi_shutdown,
438 .map_flash_region = fallback_map,
439 .unmap_flash_region = fallback_unmap,
440 .chip_readb = noop_chip_readb,
441 .chip_readw = fallback_chip_readw,
442 .chip_readl = fallback_chip_readl,
443 .chip_readn = fallback_chip_readn,
444 .chip_writeb = noop_chip_writeb,
445 .chip_writew = fallback_chip_writew,
446 .chip_writel = fallback_chip_writel,
447 .chip_writen = fallback_chip_writen,
448 .delay = internal_delay,
449 },
450#endif
451
hailfinger935365d2011-02-04 21:37:59 +0000452#if CONFIG_SATAMV == 1
453 {
454 .name = "satamv",
455 .init = satamv_init,
456 .shutdown = satamv_shutdown,
457 .map_flash_region = fallback_map,
458 .unmap_flash_region = fallback_unmap,
459 .chip_readb = satamv_chip_readb,
460 .chip_readw = fallback_chip_readw,
461 .chip_readl = fallback_chip_readl,
462 .chip_readn = fallback_chip_readn,
463 .chip_writeb = satamv_chip_writeb,
464 .chip_writew = fallback_chip_writew,
465 .chip_writel = fallback_chip_writel,
466 .chip_writen = fallback_chip_writen,
467 .delay = internal_delay,
468 },
469#endif
470
hailfinger3548a9a2009-08-12 14:34:35 +0000471 {}, /* This entry corresponds to PROGRAMMER_INVALID. */
hailfingerabe249e2009-05-08 17:43:22 +0000472};
stepan927d4e22007-04-04 22:45:58 +0000473
hailfingerf31cbdc2010-11-10 15:25:18 +0000474#define SHUTDOWN_MAXFN 32
hailfingerdc6f7972010-02-14 01:20:28 +0000475static int shutdown_fn_count = 0;
476struct shutdown_func_data {
477 void (*func) (void *data);
478 void *data;
hailfinger1ff33dc2010-07-03 11:02:10 +0000479} static shutdown_fn[SHUTDOWN_MAXFN];
480/* Initialize to 0 to make sure nobody registers a shutdown function before
481 * programmer init.
482 */
483static int may_register_shutdown = 0;
hailfingerdc6f7972010-02-14 01:20:28 +0000484
485/* Register a function to be executed on programmer shutdown.
486 * The advantage over atexit() is that you can supply a void pointer which will
487 * be used as parameter to the registered function upon programmer shutdown.
488 * This pointer can point to arbitrary data used by said function, e.g. undo
489 * information for GPIO settings etc. If unneeded, set data=NULL.
490 * Please note that the first (void *data) belongs to the function signature of
491 * the function passed as first parameter.
492 */
493int register_shutdown(void (*function) (void *data), void *data)
494{
495 if (shutdown_fn_count >= SHUTDOWN_MAXFN) {
hailfinger63932d42010-06-04 23:20:21 +0000496 msg_perr("Tried to register more than %i shutdown functions.\n",
hailfingerdc6f7972010-02-14 01:20:28 +0000497 SHUTDOWN_MAXFN);
498 return 1;
499 }
hailfinger1ff33dc2010-07-03 11:02:10 +0000500 if (!may_register_shutdown) {
501 msg_perr("Tried to register a shutdown function before "
502 "programmer init.\n");
503 return 1;
504 }
hailfingerdc6f7972010-02-14 01:20:28 +0000505 shutdown_fn[shutdown_fn_count].func = function;
506 shutdown_fn[shutdown_fn_count].data = data;
507 shutdown_fn_count++;
508
509 return 0;
510}
511
hailfinger1ff33dc2010-07-03 11:02:10 +0000512int programmer_init(char *param)
uweabe92a52009-05-16 22:36:00 +0000513{
hailfinger1ef766d2010-07-06 09:55:48 +0000514 int ret;
hailfinger1ff33dc2010-07-03 11:02:10 +0000515 /* Initialize all programmer specific data. */
516 /* Default to unlimited decode sizes. */
517 max_rom_decode = (const struct decode_sizes) {
518 .parallel = 0xffffffff,
519 .lpc = 0xffffffff,
520 .fwh = 0xffffffff,
521 .spi = 0xffffffff
522 };
523 /* Default to Parallel/LPC/FWH flash devices. If a known host controller
524 * is found, the init routine sets the buses_supported bitfield.
525 */
526 buses_supported = CHIP_BUSTYPE_NONSPI;
527 /* Default to top aligned flash at 4 GB. */
528 flashbase = 0;
529 /* Registering shutdown functions is now allowed. */
530 may_register_shutdown = 1;
hailfinger5828baf2010-07-03 12:14:25 +0000531 /* Default to allowing writes. Broken programmers set this to 0. */
532 programmer_may_write = 1;
hailfinger1ff33dc2010-07-03 11:02:10 +0000533
534 programmer_param = param;
535 msg_pdbg("Initializing %s programmer\n",
536 programmer_table[programmer].name);
hailfinger1ef766d2010-07-06 09:55:48 +0000537 ret = programmer_table[programmer].init();
538 if (programmer_param && strlen(programmer_param)) {
539 msg_perr("Unhandled programmer parameters: %s\n",
540 programmer_param);
541 /* Do not error out here, the init itself was successful. */
542 }
543 return ret;
uweabe92a52009-05-16 22:36:00 +0000544}
545
546int programmer_shutdown(void)
547{
hailfinger1ff33dc2010-07-03 11:02:10 +0000548 /* Registering shutdown functions is no longer allowed. */
549 may_register_shutdown = 0;
550 while (shutdown_fn_count > 0) {
551 int i = --shutdown_fn_count;
hailfingerdc6f7972010-02-14 01:20:28 +0000552 shutdown_fn[i].func(shutdown_fn[i].data);
hailfinger1ff33dc2010-07-03 11:02:10 +0000553 }
uweabe92a52009-05-16 22:36:00 +0000554 return programmer_table[programmer].shutdown();
555}
556
557void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
558 size_t len)
559{
560 return programmer_table[programmer].map_flash_region(descr,
561 phys_addr, len);
562}
563
564void programmer_unmap_flash_region(void *virt_addr, size_t len)
565{
566 programmer_table[programmer].unmap_flash_region(virt_addr, len);
567}
568
569void chip_writeb(uint8_t val, chipaddr addr)
570{
571 programmer_table[programmer].chip_writeb(val, addr);
572}
573
574void chip_writew(uint16_t val, chipaddr addr)
575{
576 programmer_table[programmer].chip_writew(val, addr);
577}
578
579void chip_writel(uint32_t val, chipaddr addr)
580{
581 programmer_table[programmer].chip_writel(val, addr);
582}
583
hailfinger9d987ef2009-06-05 18:32:07 +0000584void chip_writen(uint8_t *buf, chipaddr addr, size_t len)
585{
586 programmer_table[programmer].chip_writen(buf, addr, len);
587}
588
uweabe92a52009-05-16 22:36:00 +0000589uint8_t chip_readb(const chipaddr addr)
590{
591 return programmer_table[programmer].chip_readb(addr);
592}
593
594uint16_t chip_readw(const chipaddr addr)
595{
596 return programmer_table[programmer].chip_readw(addr);
597}
598
599uint32_t chip_readl(const chipaddr addr)
600{
601 return programmer_table[programmer].chip_readl(addr);
602}
603
hailfinger9d987ef2009-06-05 18:32:07 +0000604void chip_readn(uint8_t *buf, chipaddr addr, size_t len)
605{
606 programmer_table[programmer].chip_readn(buf, addr, len);
hailfinger9d987ef2009-06-05 18:32:07 +0000607}
608
hailfingere5829f62009-06-05 17:48:08 +0000609void programmer_delay(int usecs)
610{
611 programmer_table[programmer].delay(usecs);
612}
613
stuge5ff0e6c2009-01-26 00:39:57 +0000614void map_flash_registers(struct flashchip *flash)
stepan15e64bc2007-05-24 08:48:10 +0000615{
stepan15e64bc2007-05-24 08:48:10 +0000616 size_t size = flash->total_size * 1024;
hailfinger8577ad12009-05-11 14:01:17 +0000617 /* Flash registers live 4 MByte below the flash. */
hailfinger0459e1c2009-08-19 13:55:34 +0000618 /* FIXME: This is incorrect for nonstandard flashbase. */
hailfinger82719632009-05-16 21:22:56 +0000619 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
stepan15e64bc2007-05-24 08:48:10 +0000620}
621
hailfinger0f08b7a2009-06-16 08:55:44 +0000622int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
hailfinger23060112009-05-08 12:49:03 +0000623{
hailfinger0f08b7a2009-06-16 08:55:44 +0000624 chip_readn(buf, flash->virtual_memory + start, len);
hailfinger23060112009-05-08 12:49:03 +0000625
626 return 0;
627}
628
hailfinger7b414742009-06-13 12:04:03 +0000629int min(int a, int b)
630{
631 return (a < b) ? a : b;
632}
633
hailfinger7af83692009-06-15 17:23:36 +0000634int max(int a, int b)
635{
636 return (a > b) ? a : b;
637}
638
hailfingeraec9c962009-10-31 01:53:09 +0000639int bitcount(unsigned long a)
640{
641 int i = 0;
642 for (; a != 0; a >>= 1)
643 if (a & 1)
644 i++;
645 return i;
646}
647
hailfingerf76cc322010-11-09 22:00:31 +0000648void tolower_string(char *str)
649{
650 for (; *str != '\0'; str++)
651 *str = (char)tolower((unsigned char)*str);
652}
653
hailfingera916b422009-06-01 02:08:58 +0000654char *strcat_realloc(char *dest, const char *src)
655{
656 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
hailfinger1ef766d2010-07-06 09:55:48 +0000657 if (!dest) {
658 msg_gerr("Out of memory!\n");
hailfingera916b422009-06-01 02:08:58 +0000659 return NULL;
hailfinger1ef766d2010-07-06 09:55:48 +0000660 }
hailfingera916b422009-06-01 02:08:58 +0000661 strcat(dest, src);
662 return dest;
663}
664
hailfinger6e5a52a2009-11-24 18:27:10 +0000665/* This is a somewhat hacked function similar in some ways to strtok().
hailfinger1ef766d2010-07-06 09:55:48 +0000666 * It will look for needle with a subsequent '=' in haystack, return a copy of
667 * needle and remove everything from the first occurrence of needle to the next
668 * delimiter from haystack.
hailfinger6e5a52a2009-11-24 18:27:10 +0000669 */
670char *extract_param(char **haystack, char *needle, char *delim)
671{
hailfinger1ef766d2010-07-06 09:55:48 +0000672 char *param_pos, *opt_pos, *rest;
673 char *opt = NULL;
674 int optlen;
hailfingerf4aaccc2010-04-28 15:22:14 +0000675 int needlelen;
hailfinger6e5a52a2009-11-24 18:27:10 +0000676
hailfingerf4aaccc2010-04-28 15:22:14 +0000677 needlelen = strlen(needle);
678 if (!needlelen) {
679 msg_gerr("%s: empty needle! Please report a bug at "
680 "flashrom@flashrom.org\n", __func__);
681 return NULL;
682 }
683 /* No programmer parameters given. */
684 if (*haystack == NULL)
685 return NULL;
hailfinger6e5a52a2009-11-24 18:27:10 +0000686 param_pos = strstr(*haystack, needle);
687 do {
688 if (!param_pos)
689 return NULL;
hailfinger1ef766d2010-07-06 09:55:48 +0000690 /* Needle followed by '='? */
691 if (param_pos[needlelen] == '=') {
692
693 /* Beginning of the string? */
694 if (param_pos == *haystack)
695 break;
696 /* After a delimiter? */
697 if (strchr(delim, *(param_pos - 1)))
698 break;
699 }
hailfinger6e5a52a2009-11-24 18:27:10 +0000700 /* Continue searching. */
701 param_pos++;
702 param_pos = strstr(param_pos, needle);
703 } while (1);
hailfinger1ef766d2010-07-06 09:55:48 +0000704
hailfinger6e5a52a2009-11-24 18:27:10 +0000705 if (param_pos) {
hailfinger1ef766d2010-07-06 09:55:48 +0000706 /* Get the string after needle and '='. */
707 opt_pos = param_pos + needlelen + 1;
708 optlen = strcspn(opt_pos, delim);
709 /* Return an empty string if the parameter was empty. */
710 opt = malloc(optlen + 1);
711 if (!opt) {
snelsone42c3802010-05-07 20:09:04 +0000712 msg_gerr("Out of memory!\n");
hailfinger6e5a52a2009-11-24 18:27:10 +0000713 exit(1);
714 }
hailfinger1ef766d2010-07-06 09:55:48 +0000715 strncpy(opt, opt_pos, optlen);
716 opt[optlen] = '\0';
717 rest = opt_pos + optlen;
718 /* Skip all delimiters after the current parameter. */
719 rest += strspn(rest, delim);
720 memmove(param_pos, rest, strlen(rest) + 1);
721 /* We could shrink haystack, but the effort is not worth it. */
hailfinger6e5a52a2009-11-24 18:27:10 +0000722 }
hailfinger6e5a52a2009-11-24 18:27:10 +0000723
hailfinger1ef766d2010-07-06 09:55:48 +0000724 return opt;
hailfinger6e5a52a2009-11-24 18:27:10 +0000725}
726
hailfingerddeb4ac2010-07-08 10:13:37 +0000727char *extract_programmer_param(char *param_name)
728{
729 return extract_param(&programmer_param, param_name, ",");
730}
731
hailfinger7af83692009-06-15 17:23:36 +0000732/* start is an offset to the base address of the flash chip */
733int check_erased_range(struct flashchip *flash, int start, int len)
734{
735 int ret;
736 uint8_t *cmpbuf = malloc(len);
737
738 if (!cmpbuf) {
snelsone42c3802010-05-07 20:09:04 +0000739 msg_gerr("Could not allocate memory!\n");
hailfinger7af83692009-06-15 17:23:36 +0000740 exit(1);
741 }
742 memset(cmpbuf, 0xff, len);
743 ret = verify_range(flash, cmpbuf, start, len, "ERASE");
744 free(cmpbuf);
745 return ret;
746}
747
uwee15beb92010-08-08 17:01:18 +0000748/*
hailfinger7af3d192009-11-25 17:05:52 +0000749 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
750 flash content at location start
hailfinger7af83692009-06-15 17:23:36 +0000751 * @start offset to the base address of the flash chip
752 * @len length of the verified area
753 * @message string to print in the "FAILED" message
754 * @return 0 for success, -1 for failure
755 */
756int verify_range(struct flashchip *flash, uint8_t *cmpbuf, int start, int len, char *message)
757{
hailfinger8cb6ece2010-11-16 17:21:58 +0000758 int i, ret = 0;
759 uint8_t *readbuf = malloc(len);
hailfinger5be6c0f2009-07-23 01:42:56 +0000760 int failcount = 0;
hailfinger7af83692009-06-15 17:23:36 +0000761
762 if (!len)
763 goto out_free;
764
hailfingerb0f4d122009-06-24 08:20:45 +0000765 if (!flash->read) {
snelsone42c3802010-05-07 20:09:04 +0000766 msg_cerr("ERROR: flashrom has no read function for this flash chip.\n");
hailfingerb0f4d122009-06-24 08:20:45 +0000767 return 1;
768 }
hailfinger7af83692009-06-15 17:23:36 +0000769 if (!readbuf) {
snelsone42c3802010-05-07 20:09:04 +0000770 msg_gerr("Could not allocate memory!\n");
hailfinger7af83692009-06-15 17:23:36 +0000771 exit(1);
772 }
773
774 if (start + len > flash->total_size * 1024) {
snelsone42c3802010-05-07 20:09:04 +0000775 msg_gerr("Error: %s called with start 0x%x + len 0x%x >"
hailfinger7af83692009-06-15 17:23:36 +0000776 " total_size 0x%x\n", __func__, start, len,
777 flash->total_size * 1024);
778 ret = -1;
779 goto out_free;
780 }
781 if (!message)
782 message = "VERIFY";
783
hailfinger8cb6ece2010-11-16 17:21:58 +0000784 ret = flash->read(flash, readbuf, start, len);
785 if (ret) {
786 msg_gerr("Verification impossible because read failed "
787 "at 0x%x (len 0x%x)\n", start, len);
788 return ret;
789 }
790
791 for (i = 0; i < len; i++) {
792 if (cmpbuf[i] != readbuf[i]) {
793 /* Only print the first failure. */
794 if (!failcount++)
795 msg_cerr("%s FAILED at 0x%08x! "
796 "Expected=0x%02x, Read=0x%02x,",
797 message, start + i, cmpbuf[i],
798 readbuf[i]);
hailfinger7af83692009-06-15 17:23:36 +0000799 }
800 }
hailfinger5be6c0f2009-07-23 01:42:56 +0000801 if (failcount) {
snelsone42c3802010-05-07 20:09:04 +0000802 msg_cerr(" failed byte count from 0x%08x-0x%08x: 0x%x\n",
hailfinger5be6c0f2009-07-23 01:42:56 +0000803 start, start + len - 1, failcount);
804 ret = -1;
805 }
hailfinger7af83692009-06-15 17:23:36 +0000806
807out_free:
808 free(readbuf);
809 return ret;
810}
811
uwee15beb92010-08-08 17:01:18 +0000812/*
hailfingerb247c7a2010-03-08 00:42:32 +0000813 * Check if the buffer @have can be programmed to the content of @want without
814 * erasing. This is only possible if all chunks of size @gran are either kept
815 * as-is or changed from an all-ones state to any other state.
hailfingerb437e282010-11-04 01:04:27 +0000816 *
hailfingerb247c7a2010-03-08 00:42:32 +0000817 * The following write granularities (enum @gran) are known:
818 * - 1 bit. Each bit can be cleared individually.
819 * - 1 byte. A byte can be written once. Further writes to an already written
820 * byte cause the contents to be either undefined or to stay unchanged.
821 * - 128 bytes. If less than 128 bytes are written, the rest will be
822 * erased. Each write to a 128-byte region will trigger an automatic erase
823 * before anything is written. Very uncommon behaviour and unsupported by
824 * this function.
825 * - 256 bytes. If less than 256 bytes are written, the contents of the
826 * unwritten bytes are undefined.
hailfingerb437e282010-11-04 01:04:27 +0000827 * Warning: This function assumes that @have and @want point to naturally
828 * aligned regions.
hailfingerb247c7a2010-03-08 00:42:32 +0000829 *
830 * @have buffer with current content
831 * @want buffer with desired content
hailfingerb437e282010-11-04 01:04:27 +0000832 * @len length of the checked area
hailfingerb247c7a2010-03-08 00:42:32 +0000833 * @gran write granularity (enum, not count)
834 * @return 0 if no erase is needed, 1 otherwise
835 */
836int need_erase(uint8_t *have, uint8_t *want, int len, enum write_granularity gran)
837{
838 int result = 0;
839 int i, j, limit;
840
841 switch (gran) {
842 case write_gran_1bit:
843 for (i = 0; i < len; i++)
844 if ((have[i] & want[i]) != want[i]) {
845 result = 1;
846 break;
847 }
848 break;
849 case write_gran_1byte:
850 for (i = 0; i < len; i++)
851 if ((have[i] != want[i]) && (have[i] != 0xff)) {
852 result = 1;
853 break;
854 }
855 break;
856 case write_gran_256bytes:
857 for (j = 0; j < len / 256; j++) {
858 limit = min (256, len - j * 256);
uwef6f94d42010-03-13 17:28:29 +0000859 /* Are 'have' and 'want' identical? */
hailfingerb247c7a2010-03-08 00:42:32 +0000860 if (!memcmp(have + j * 256, want + j * 256, limit))
861 continue;
862 /* have needs to be in erased state. */
863 for (i = 0; i < limit; i++)
hailfingerb437e282010-11-04 01:04:27 +0000864 if (have[j * 256 + i] != 0xff) {
hailfingerb247c7a2010-03-08 00:42:32 +0000865 result = 1;
866 break;
867 }
868 if (result)
869 break;
870 }
871 break;
hailfingerb437e282010-11-04 01:04:27 +0000872 default:
873 msg_cerr("%s: Unsupported granularity! Please report a bug at "
874 "flashrom@flashrom.org\n", __func__);
hailfingerb247c7a2010-03-08 00:42:32 +0000875 }
876 return result;
877}
878
hailfingerb437e282010-11-04 01:04:27 +0000879/**
880 * Check if the buffer @have needs to be programmed to get the content of @want.
881 * If yes, return 1 and fill in first_start with the start address of the
882 * write operation and first_len with the length of the first to-be-written
883 * chunk. If not, return 0 and leave first_start and first_len undefined.
884 *
885 * Warning: This function assumes that @have and @want point to naturally
886 * aligned regions.
887 *
888 * @have buffer with current content
889 * @want buffer with desired content
890 * @len length of the checked area
891 * @gran write granularity (enum, not count)
hailfinger90fcf9b2010-11-05 14:51:59 +0000892 * @first_start offset of the first byte which needs to be written (passed in
893 * value is increased by the offset of the first needed write
894 * relative to have/want or unchanged if no write is needed)
895 * @return length of the first contiguous area which needs to be written
896 * 0 if no write is needed
hailfingerb437e282010-11-04 01:04:27 +0000897 *
898 * FIXME: This function needs a parameter which tells it about coalescing
899 * in relation to the max write length of the programmer and the max write
900 * length of the chip.
901 */
902static int get_next_write(uint8_t *have, uint8_t *want, int len,
hailfinger90fcf9b2010-11-05 14:51:59 +0000903 int *first_start, enum write_granularity gran)
hailfingerb437e282010-11-04 01:04:27 +0000904{
hailfinger90fcf9b2010-11-05 14:51:59 +0000905 int need_write = 0, rel_start = 0, first_len = 0;
906 int i, limit, stride;
hailfingerb437e282010-11-04 01:04:27 +0000907
hailfingerb437e282010-11-04 01:04:27 +0000908 switch (gran) {
909 case write_gran_1bit:
910 case write_gran_1byte:
hailfinger90fcf9b2010-11-05 14:51:59 +0000911 stride = 1;
hailfingerb437e282010-11-04 01:04:27 +0000912 break;
913 case write_gran_256bytes:
hailfinger90fcf9b2010-11-05 14:51:59 +0000914 stride = 256;
hailfingerb437e282010-11-04 01:04:27 +0000915 break;
916 default:
917 msg_cerr("%s: Unsupported granularity! Please report a bug at "
918 "flashrom@flashrom.org\n", __func__);
hailfinger90fcf9b2010-11-05 14:51:59 +0000919 /* Claim that no write was needed. A write with unknown
920 * granularity is too dangerous to try.
921 */
922 return 0;
hailfingerb437e282010-11-04 01:04:27 +0000923 }
hailfinger90fcf9b2010-11-05 14:51:59 +0000924 for (i = 0; i < len / stride; i++) {
925 limit = min(stride, len - i * stride);
926 /* Are 'have' and 'want' identical? */
927 if (memcmp(have + i * stride, want + i * stride, limit)) {
928 if (!need_write) {
929 /* First location where have and want differ. */
930 need_write = 1;
931 rel_start = i * stride;
932 }
933 } else {
934 if (need_write) {
935 /* First location where have and want
936 * do not differ anymore.
937 */
hailfinger90fcf9b2010-11-05 14:51:59 +0000938 break;
939 }
940 }
941 }
hailfingerffb7f382010-12-06 13:05:44 +0000942 if (need_write)
hailfinger90fcf9b2010-11-05 14:51:59 +0000943 first_len = min(i * stride - rel_start, len);
hailfingerb437e282010-11-04 01:04:27 +0000944 *first_start += rel_start;
hailfinger90fcf9b2010-11-05 14:51:59 +0000945 return first_len;
hailfingerb437e282010-11-04 01:04:27 +0000946}
947
hailfinger0c515352009-11-23 12:55:31 +0000948/* This function generates various test patterns useful for testing controller
949 * and chip communication as well as chip behaviour.
950 *
951 * If a byte can be written multiple times, each time keeping 0-bits at 0
952 * and changing 1-bits to 0 if the new value for that bit is 0, the effect
953 * is essentially an AND operation. That's also the reason why this function
954 * provides the result of AND between various patterns.
955 *
956 * Below is a list of patterns (and their block length).
957 * Pattern 0 is 05 15 25 35 45 55 65 75 85 95 a5 b5 c5 d5 e5 f5 (16 Bytes)
958 * Pattern 1 is 0a 1a 2a 3a 4a 5a 6a 7a 8a 9a aa ba ca da ea fa (16 Bytes)
959 * Pattern 2 is 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f (16 Bytes)
960 * Pattern 3 is a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af (16 Bytes)
961 * Pattern 4 is 00 10 20 30 40 50 60 70 80 90 a0 b0 c0 d0 e0 f0 (16 Bytes)
962 * Pattern 5 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f (16 Bytes)
963 * Pattern 6 is 00 (1 Byte)
964 * Pattern 7 is ff (1 Byte)
965 * Patterns 0-7 have a big-endian block number in the last 2 bytes of each 256
966 * byte block.
967 *
968 * Pattern 8 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11... (256 B)
969 * Pattern 9 is ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ef ee... (256 B)
970 * Pattern 10 is 00 00 00 01 00 02 00 03 00 04... (128 kB big-endian counter)
971 * Pattern 11 is ff ff ff fe ff fd ff fc ff fb... (128 kB big-endian downwards)
972 * Pattern 12 is 00 (1 Byte)
973 * Pattern 13 is ff (1 Byte)
974 * Patterns 8-13 have no block number.
975 *
976 * Patterns 0-3 are created to detect and efficiently diagnose communication
977 * slips like missed bits or bytes and their repetitive nature gives good visual
978 * cues to the person inspecting the results. In addition, the following holds:
979 * AND Pattern 0/1 == Pattern 4
980 * AND Pattern 2/3 == Pattern 5
981 * AND Pattern 0/1/2/3 == AND Pattern 4/5 == Pattern 6
982 * A weakness of pattern 0-5 is the inability to detect swaps/copies between
983 * any two 16-byte blocks except for the last 16-byte block in a 256-byte bloc.
984 * They work perfectly for detecting any swaps/aliasing of blocks >= 256 bytes.
985 * 0x5 and 0xa were picked because they are 0101 and 1010 binary.
986 * Patterns 8-9 are best for detecting swaps/aliasing of blocks < 256 bytes.
987 * Besides that, they provide for bit testing of the last two bytes of every
988 * 256 byte block which contains the block number for patterns 0-6.
989 * Patterns 10-11 are special purpose for detecting subblock aliasing with
990 * block sizes >256 bytes (some Dataflash chips etc.)
991 * AND Pattern 8/9 == Pattern 12
992 * AND Pattern 10/11 == Pattern 12
993 * Pattern 13 is the completely erased state.
994 * None of the patterns can detect aliasing at boundaries which are a multiple
995 * of 16 MBytes (but such chips do not exist anyway for Parallel/LPC/FWH/SPI).
996 */
997int generate_testpattern(uint8_t *buf, uint32_t size, int variant)
998{
999 int i;
1000
1001 if (!buf) {
snelsone42c3802010-05-07 20:09:04 +00001002 msg_gerr("Invalid buffer!\n");
hailfinger0c515352009-11-23 12:55:31 +00001003 return 1;
1004 }
1005
1006 switch (variant) {
1007 case 0:
1008 for (i = 0; i < size; i++)
1009 buf[i] = (i & 0xf) << 4 | 0x5;
1010 break;
1011 case 1:
1012 for (i = 0; i < size; i++)
1013 buf[i] = (i & 0xf) << 4 | 0xa;
1014 break;
1015 case 2:
1016 for (i = 0; i < size; i++)
1017 buf[i] = 0x50 | (i & 0xf);
1018 break;
1019 case 3:
1020 for (i = 0; i < size; i++)
1021 buf[i] = 0xa0 | (i & 0xf);
1022 break;
1023 case 4:
1024 for (i = 0; i < size; i++)
1025 buf[i] = (i & 0xf) << 4;
1026 break;
1027 case 5:
1028 for (i = 0; i < size; i++)
1029 buf[i] = i & 0xf;
1030 break;
1031 case 6:
1032 memset(buf, 0x00, size);
1033 break;
1034 case 7:
1035 memset(buf, 0xff, size);
1036 break;
1037 case 8:
1038 for (i = 0; i < size; i++)
1039 buf[i] = i & 0xff;
1040 break;
1041 case 9:
1042 for (i = 0; i < size; i++)
1043 buf[i] = ~(i & 0xff);
1044 break;
1045 case 10:
1046 for (i = 0; i < size % 2; i++) {
1047 buf[i * 2] = (i >> 8) & 0xff;
1048 buf[i * 2 + 1] = i & 0xff;
1049 }
1050 if (size & 0x1)
1051 buf[i * 2] = (i >> 8) & 0xff;
1052 break;
1053 case 11:
1054 for (i = 0; i < size % 2; i++) {
1055 buf[i * 2] = ~((i >> 8) & 0xff);
1056 buf[i * 2 + 1] = ~(i & 0xff);
1057 }
1058 if (size & 0x1)
1059 buf[i * 2] = ~((i >> 8) & 0xff);
1060 break;
1061 case 12:
1062 memset(buf, 0x00, size);
1063 break;
1064 case 13:
1065 memset(buf, 0xff, size);
1066 break;
1067 }
1068
1069 if ((variant >= 0) && (variant <= 7)) {
1070 /* Write block number in the last two bytes of each 256-byte
1071 * block, big endian for easier reading of the hexdump.
1072 * Note that this wraps around for chips larger than 2^24 bytes
1073 * (16 MB).
1074 */
1075 for (i = 0; i < size / 256; i++) {
1076 buf[i * 256 + 254] = (i >> 8) & 0xff;
1077 buf[i * 256 + 255] = i & 0xff;
1078 }
1079 }
1080
1081 return 0;
1082}
1083
hailfingeraec9c962009-10-31 01:53:09 +00001084int check_max_decode(enum chipbustype buses, uint32_t size)
1085{
1086 int limitexceeded = 0;
1087 if ((buses & CHIP_BUSTYPE_PARALLEL) &&
1088 (max_rom_decode.parallel < size)) {
1089 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +00001090 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +00001091 "size %u kB of chipset/board/programmer "
1092 "for %s interface, "
1093 "probe/read/erase/write may fail. ", size / 1024,
1094 max_rom_decode.parallel / 1024, "Parallel");
1095 }
1096 if ((buses & CHIP_BUSTYPE_LPC) && (max_rom_decode.lpc < size)) {
1097 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +00001098 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +00001099 "size %u kB of chipset/board/programmer "
1100 "for %s interface, "
1101 "probe/read/erase/write may fail. ", size / 1024,
1102 max_rom_decode.lpc / 1024, "LPC");
1103 }
1104 if ((buses & CHIP_BUSTYPE_FWH) && (max_rom_decode.fwh < size)) {
1105 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +00001106 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +00001107 "size %u kB of chipset/board/programmer "
1108 "for %s interface, "
1109 "probe/read/erase/write may fail. ", size / 1024,
1110 max_rom_decode.fwh / 1024, "FWH");
1111 }
1112 if ((buses & CHIP_BUSTYPE_SPI) && (max_rom_decode.spi < size)) {
1113 limitexceeded++;
snelsone42c3802010-05-07 20:09:04 +00001114 msg_pdbg("Chip size %u kB is bigger than supported "
hailfingeraec9c962009-10-31 01:53:09 +00001115 "size %u kB of chipset/board/programmer "
1116 "for %s interface, "
1117 "probe/read/erase/write may fail. ", size / 1024,
1118 max_rom_decode.spi / 1024, "SPI");
1119 }
1120 if (!limitexceeded)
1121 return 0;
1122 /* Sometimes chip and programmer have more than one bus in common,
1123 * and the limit is not exceeded on all buses. Tell the user.
1124 */
1125 if (bitcount(buses) > limitexceeded)
hailfinger92cd8e32010-01-07 03:24:05 +00001126 /* FIXME: This message is designed towards CLI users. */
snelsone42c3802010-05-07 20:09:04 +00001127 msg_pdbg("There is at least one common chip/programmer "
hailfingeraec9c962009-10-31 01:53:09 +00001128 "interface which can support a chip of this size. "
1129 "You can try --force at your own risk.\n");
1130 return 1;
1131}
1132
stuge56300c32008-09-03 23:10:05 +00001133struct flashchip *probe_flash(struct flashchip *first_flash, int force)
rminnich8d3ff912003-10-25 17:01:29 +00001134{
stuge56300c32008-09-03 23:10:05 +00001135 struct flashchip *flash;
hailfingeraec9c962009-10-31 01:53:09 +00001136 unsigned long base = 0;
stepan3e7aeae2011-01-19 06:21:54 +00001137 char location[64];
hailfingeraec9c962009-10-31 01:53:09 +00001138 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
hailfingere11396b2011-03-08 00:09:11 +00001189#if CONFIG_INTERNAL == 1
1190 if (programmer_table[programmer].map_flash_region == physmap)
stepan3e7aeae2011-01-19 06:21:54 +00001191 snprintf(location, sizeof(location), "at physical address 0x%lx", base);
hailfingere11396b2011-03-08 00:09:11 +00001192 else
1193#endif
stepan3e7aeae2011-01-19 06:21:54 +00001194 snprintf(location, sizeof(location), "on %s", programmer_table[programmer].name);
stepan3e7aeae2011-01-19 06:21:54 +00001195
1196 msg_cinfo("%s chip \"%s %s\" (%d KB, %s) %s.\n",
hailfingerf4aaccc2010-04-28 15:22:14 +00001197 force ? "Assuming" : "Found",
uwe9e6811e2009-06-28 21:47:57 +00001198 flash->vendor, flash->name, flash->total_size,
stepan3e7aeae2011-01-19 06:21:54 +00001199 flashbuses_to_text(flash->bustype), location);
uwe9e6811e2009-06-28 21:47:57 +00001200
hailfinger0f4c3952010-12-02 21:59:42 +00001201 /* Flash registers will not be mapped if the chip was forced. Lock info
1202 * may be stored in registers, so avoid lock info printing.
1203 */
1204 if (!force)
1205 if (flash->printlock)
1206 flash->printlock(flash);
snelson1ee293c2010-02-19 00:52:10 +00001207
stugec1e55fe2008-07-02 17:15:47 +00001208 return flash;
rminnich8d3ff912003-10-25 17:01:29 +00001209}
1210
stepan193c9c22005-12-18 16:41:10 +00001211int verify_flash(struct flashchip *flash, uint8_t *buf)
rminnich8d3ff912003-10-25 17:01:29 +00001212{
hailfingerb0f4d122009-06-24 08:20:45 +00001213 int ret;
ollie5b621572004-03-20 16:46:10 +00001214 int total_size = flash->total_size * 1024;
rminnich8d3ff912003-10-25 17:01:29 +00001215
snelsone42c3802010-05-07 20:09:04 +00001216 msg_cinfo("Verifying flash... ");
uwef6641642007-05-09 10:17:44 +00001217
hailfingerb0f4d122009-06-24 08:20:45 +00001218 ret = verify_range(flash, buf, 0, total_size, NULL);
uwef6641642007-05-09 10:17:44 +00001219
hailfingerb0f4d122009-06-24 08:20:45 +00001220 if (!ret)
snelsone42c3802010-05-07 20:09:04 +00001221 msg_cinfo("VERIFIED. \n");
stepanc98b80b2006-03-16 16:57:41 +00001222
hailfingerb0f4d122009-06-24 08:20:45 +00001223 return ret;
rminnich8d3ff912003-10-25 17:01:29 +00001224}
1225
hailfinger771fc182010-10-15 00:01:14 +00001226int read_buf_from_file(unsigned char *buf, unsigned long size, char *filename)
1227{
1228 unsigned long numbytes;
1229 FILE *image;
1230 struct stat image_stat;
1231
1232 if ((image = fopen(filename, "rb")) == NULL) {
1233 perror(filename);
1234 return 1;
1235 }
1236 if (fstat(fileno(image), &image_stat) != 0) {
1237 perror(filename);
1238 fclose(image);
1239 return 1;
1240 }
1241 if (image_stat.st_size != size) {
1242 msg_gerr("Error: Image size doesn't match\n");
1243 fclose(image);
1244 return 1;
1245 }
1246 numbytes = fread(buf, 1, size, image);
1247 if (fclose(image)) {
1248 perror(filename);
1249 return 1;
1250 }
1251 if (numbytes != size) {
1252 msg_gerr("Error: Failed to read complete file. Got %ld bytes, "
1253 "wanted %ld!\n", numbytes, size);
1254 return 1;
1255 }
1256 return 0;
1257}
1258
hailfinger42a850a2010-07-13 23:56:13 +00001259int write_buf_to_file(unsigned char *buf, unsigned long size, char *filename)
hailfingerd219a232009-01-28 00:27:54 +00001260{
1261 unsigned long numbytes;
1262 FILE *image;
hailfingerde345862009-06-01 22:07:52 +00001263
1264 if (!filename) {
hailfinger42a850a2010-07-13 23:56:13 +00001265 msg_gerr("No filename specified.\n");
hailfingerde345862009-06-01 22:07:52 +00001266 return 1;
1267 }
oxygenebf70d352010-01-25 22:55:33 +00001268 if ((image = fopen(filename, "wb")) == NULL) {
hailfingerd219a232009-01-28 00:27:54 +00001269 perror(filename);
hailfinger23060112009-05-08 12:49:03 +00001270 return 1;
hailfinger42a850a2010-07-13 23:56:13 +00001271 }
hailfingerd219a232009-01-28 00:27:54 +00001272
hailfingerd219a232009-01-28 00:27:54 +00001273 numbytes = fwrite(buf, 1, size, image);
1274 fclose(image);
hailfinger42a850a2010-07-13 23:56:13 +00001275 if (numbytes != size) {
1276 msg_gerr("File %s could not be written completely.\n",
1277 filename);
hailfingerd219a232009-01-28 00:27:54 +00001278 return 1;
hailfinger42a850a2010-07-13 23:56:13 +00001279 }
hailfingerd219a232009-01-28 00:27:54 +00001280 return 0;
1281}
1282
hailfinger42a850a2010-07-13 23:56:13 +00001283int read_flash_to_file(struct flashchip *flash, char *filename)
1284{
1285 unsigned long size = flash->total_size * 1024;
1286 unsigned char *buf = calloc(size, sizeof(char));
1287 int ret = 0;
1288
1289 msg_cinfo("Reading flash... ");
1290 if (!buf) {
1291 msg_gerr("Memory allocation failed!\n");
1292 msg_cinfo("FAILED.\n");
1293 return 1;
1294 }
1295 if (!flash->read) {
1296 msg_cerr("No read function available for this flash chip.\n");
1297 ret = 1;
1298 goto out_free;
1299 }
1300 if (flash->read(flash, buf, 0, size)) {
1301 msg_cerr("Read operation failed!\n");
1302 ret = 1;
1303 goto out_free;
1304 }
1305
1306 ret = write_buf_to_file(buf, flash->total_size * 1024, filename);
1307out_free:
1308 free(buf);
1309 msg_cinfo("%s.\n", ret ? "FAILED" : "done");
1310 return ret;
1311}
1312
hailfingerb437e282010-11-04 01:04:27 +00001313/* This function shares a lot of its structure with erase_and_write_flash() and
1314 * walk_eraseregions().
hailfinger9fed35d2010-01-19 06:42:46 +00001315 * Even if an error is found, the function will keep going and check the rest.
1316 */
hailfinger1ff33dc2010-07-03 11:02:10 +00001317static int selfcheck_eraseblocks(struct flashchip *flash)
hailfinger45177872010-01-18 08:14:43 +00001318{
hailfinger9fed35d2010-01-19 06:42:46 +00001319 int i, j, k;
1320 int ret = 0;
hailfinger45177872010-01-18 08:14:43 +00001321
1322 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
1323 unsigned int done = 0;
1324 struct block_eraser eraser = flash->block_erasers[k];
1325
1326 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1327 /* Blocks with zero size are bugs in flashchips.c. */
1328 if (eraser.eraseblocks[i].count &&
1329 !eraser.eraseblocks[i].size) {
1330 msg_gerr("ERROR: Flash chip %s erase function "
1331 "%i region %i has size 0. Please report"
1332 " a bug at flashrom@flashrom.org\n",
1333 flash->name, k, i);
hailfinger9fed35d2010-01-19 06:42:46 +00001334 ret = 1;
hailfinger45177872010-01-18 08:14:43 +00001335 }
1336 /* Blocks with zero count are bugs in flashchips.c. */
1337 if (!eraser.eraseblocks[i].count &&
1338 eraser.eraseblocks[i].size) {
1339 msg_gerr("ERROR: Flash chip %s erase function "
1340 "%i region %i has count 0. Please report"
1341 " a bug at flashrom@flashrom.org\n",
1342 flash->name, k, i);
hailfinger9fed35d2010-01-19 06:42:46 +00001343 ret = 1;
hailfinger45177872010-01-18 08:14:43 +00001344 }
1345 done += eraser.eraseblocks[i].count *
1346 eraser.eraseblocks[i].size;
1347 }
hailfinger9fed35d2010-01-19 06:42:46 +00001348 /* Empty eraseblock definition with erase function. */
1349 if (!done && eraser.block_erase)
snelsone42c3802010-05-07 20:09:04 +00001350 msg_gspew("Strange: Empty eraseblock definition with "
hailfinger9fed35d2010-01-19 06:42:46 +00001351 "non-empty erase function. Not an error.\n");
hailfinger45177872010-01-18 08:14:43 +00001352 if (!done)
1353 continue;
1354 if (done != flash->total_size * 1024) {
1355 msg_gerr("ERROR: Flash chip %s erase function %i "
1356 "region walking resulted in 0x%06x bytes total,"
1357 " expected 0x%06x bytes. Please report a bug at"
1358 " flashrom@flashrom.org\n", flash->name, k,
1359 done, flash->total_size * 1024);
hailfinger9fed35d2010-01-19 06:42:46 +00001360 ret = 1;
hailfinger45177872010-01-18 08:14:43 +00001361 }
hailfinger9fed35d2010-01-19 06:42:46 +00001362 if (!eraser.block_erase)
1363 continue;
1364 /* Check if there are identical erase functions for different
1365 * layouts. That would imply "magic" erase functions. The
1366 * easiest way to check this is with function pointers.
1367 */
uwef6f94d42010-03-13 17:28:29 +00001368 for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) {
hailfinger9fed35d2010-01-19 06:42:46 +00001369 if (eraser.block_erase ==
1370 flash->block_erasers[j].block_erase) {
1371 msg_gerr("ERROR: Flash chip %s erase function "
1372 "%i and %i are identical. Please report"
1373 " a bug at flashrom@flashrom.org\n",
1374 flash->name, k, j);
1375 ret = 1;
1376 }
uwef6f94d42010-03-13 17:28:29 +00001377 }
hailfinger45177872010-01-18 08:14:43 +00001378 }
hailfinger9fed35d2010-01-19 06:42:46 +00001379 return ret;
hailfinger45177872010-01-18 08:14:43 +00001380}
1381
hailfingerb437e282010-11-04 01:04:27 +00001382static int erase_and_write_block_helper(struct flashchip *flash,
1383 unsigned int start, unsigned int len,
hailfinger90fcf9b2010-11-05 14:51:59 +00001384 uint8_t *curcontents,
hailfingerb437e282010-11-04 01:04:27 +00001385 uint8_t *newcontents,
1386 int (*erasefn) (struct flashchip *flash,
1387 unsigned int addr,
1388 unsigned int len))
1389{
1390 int starthere = 0;
1391 int lenhere = 0;
1392 int ret = 0;
1393 int skip = 1;
1394 int writecount = 0;
1395 enum write_granularity gran = write_gran_256bytes; /* FIXME */
1396
hailfinger90fcf9b2010-11-05 14:51:59 +00001397 /* curcontents and newcontents are opaque to walk_eraseregions, and
hailfingerb437e282010-11-04 01:04:27 +00001398 * need to be adjusted here to keep the impression of proper abstraction
1399 */
hailfinger90fcf9b2010-11-05 14:51:59 +00001400 curcontents += start;
hailfingerb437e282010-11-04 01:04:27 +00001401 newcontents += start;
1402 msg_cdbg(":");
1403 /* FIXME: Assume 256 byte granularity for now to play it safe. */
hailfinger90fcf9b2010-11-05 14:51:59 +00001404 if (need_erase(curcontents, newcontents, len, gran)) {
hailfingerb437e282010-11-04 01:04:27 +00001405 msg_cdbg("E");
1406 ret = erasefn(flash, start, len);
1407 if (ret)
1408 return ret;
hailfinger90fcf9b2010-11-05 14:51:59 +00001409 /* Erase was successful. Adjust curcontents. */
1410 memset(curcontents, 0xff, len);
hailfingerb437e282010-11-04 01:04:27 +00001411 skip = 0;
1412 }
hailfinger90fcf9b2010-11-05 14:51:59 +00001413 /* get_next_write() sets starthere to a new value after the call. */
1414 while ((lenhere = get_next_write(curcontents + starthere,
1415 newcontents + starthere,
1416 len - starthere, &starthere, gran))) {
hailfingerb437e282010-11-04 01:04:27 +00001417 if (!writecount++)
1418 msg_cdbg("W");
1419 /* Needs the partial write function signature. */
1420 ret = flash->write(flash, newcontents + starthere,
1421 start + starthere, lenhere);
1422 if (ret)
1423 return ret;
1424 starthere += lenhere;
1425 skip = 0;
1426 }
1427 if (skip)
1428 msg_cdbg("S");
1429 return ret;
1430}
1431
hailfinger83541b32010-07-13 00:42:00 +00001432static int walk_eraseregions(struct flashchip *flash, int erasefunction,
1433 int (*do_something) (struct flashchip *flash,
1434 unsigned int addr,
hailfingerb437e282010-11-04 01:04:27 +00001435 unsigned int len,
1436 uint8_t *param1,
1437 uint8_t *param2,
1438 int (*erasefn) (
1439 struct flashchip *flash,
1440 unsigned int addr,
1441 unsigned int len)),
1442 void *param1, void *param2)
hailfinger2b8c9382010-07-13 00:37:19 +00001443{
1444 int i, j;
1445 unsigned int start = 0;
1446 unsigned int len;
1447 struct block_eraser eraser = flash->block_erasers[erasefunction];
1448 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1449 /* count==0 for all automatically initialized array
1450 * members so the loop below won't be executed for them.
1451 */
1452 len = eraser.eraseblocks[i].size;
1453 for (j = 0; j < eraser.eraseblocks[i].count; j++) {
hailfingerb437e282010-11-04 01:04:27 +00001454 /* Print this for every block except the first one. */
1455 if (i || j)
1456 msg_cdbg(", ");
1457 msg_cdbg("0x%06x-0x%06x", start,
hailfinger2b8c9382010-07-13 00:37:19 +00001458 start + len - 1);
hailfingerb437e282010-11-04 01:04:27 +00001459 if (do_something(flash, start, len, param1, param2,
1460 eraser.block_erase)) {
1461 msg_cdbg("\n");
hailfinger2b8c9382010-07-13 00:37:19 +00001462 return 1;
hailfingerb437e282010-11-04 01:04:27 +00001463 }
hailfinger2b8c9382010-07-13 00:37:19 +00001464 start += len;
1465 }
1466 }
hailfingerb437e282010-11-04 01:04:27 +00001467 msg_cdbg("\n");
hailfinger2b8c9382010-07-13 00:37:19 +00001468 return 0;
1469}
1470
hailfingercf848f12010-12-05 15:14:44 +00001471static int check_block_eraser(struct flashchip *flash, int k, int log)
1472{
1473 struct block_eraser eraser = flash->block_erasers[k];
1474
1475 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
1476 if (log)
1477 msg_cdbg("not defined. ");
1478 return 1;
1479 }
1480 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
1481 if (log)
1482 msg_cdbg("eraseblock layout is known, but matching "
1483 "block erase function is not implemented. ");
1484 return 1;
1485 }
1486 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
1487 if (log)
1488 msg_cdbg("block erase function found, but "
1489 "eraseblock layout is not defined. ");
1490 return 1;
1491 }
1492 return 0;
1493}
1494
hailfingerb437e282010-11-04 01:04:27 +00001495int erase_and_write_flash(struct flashchip *flash, uint8_t *oldcontents, uint8_t *newcontents)
hailfingerd219a232009-01-28 00:27:54 +00001496{
hailfingercf848f12010-12-05 15:14:44 +00001497 int k, ret = 0;
hailfingerb437e282010-11-04 01:04:27 +00001498 uint8_t *curcontents;
1499 unsigned long size = flash->total_size * 1024;
hailfingercf848f12010-12-05 15:14:44 +00001500 int usable_erasefunctions = 0;
1501
1502 for (k = 0; k < NUM_ERASEFUNCTIONS; k++)
1503 if (!check_block_eraser(flash, k, 0))
1504 usable_erasefunctions++;
1505 msg_cinfo("Erasing and writing flash chip... ");
1506 if (!usable_erasefunctions) {
1507 msg_cerr("ERROR: flashrom has no erase function for this flash "
1508 "chip.\n");
1509 return 1;
1510 }
hailfinger7df21362009-09-05 02:30:58 +00001511
hailfingerb437e282010-11-04 01:04:27 +00001512 curcontents = (uint8_t *) malloc(size);
1513 /* Copy oldcontents to curcontents to avoid clobbering oldcontents. */
1514 memcpy(curcontents, oldcontents, size);
1515
hailfinger7df21362009-09-05 02:30:58 +00001516 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
snelsone42c3802010-05-07 20:09:04 +00001517 msg_cdbg("Looking at blockwise erase function %i... ", k);
hailfingercf848f12010-12-05 15:14:44 +00001518 if (check_block_eraser(flash, k, 1) && usable_erasefunctions) {
1519 msg_cdbg("Looking for another erase function.\n");
hailfinger7df21362009-09-05 02:30:58 +00001520 continue;
1521 }
hailfingercf848f12010-12-05 15:14:44 +00001522 usable_erasefunctions--;
snelsone42c3802010-05-07 20:09:04 +00001523 msg_cdbg("trying... ");
hailfingerb437e282010-11-04 01:04:27 +00001524 ret = walk_eraseregions(flash, k, &erase_and_write_block_helper, curcontents, newcontents);
snelsone42c3802010-05-07 20:09:04 +00001525 msg_cdbg("\n");
hailfinger7df21362009-09-05 02:30:58 +00001526 /* If everything is OK, don't try another erase function. */
1527 if (!ret)
1528 break;
hailfinger6237f5e2010-12-02 02:41:55 +00001529 /* Write/erase failed, so try to find out what the current chip
1530 * contents are. If no usable erase functions remain, we could
1531 * abort the loop instead of continuing, the effect is the same.
1532 * The only difference is whether the reason for other unusable
1533 * functions is printed or not. If in doubt, verbosity wins.
hailfingerb437e282010-11-04 01:04:27 +00001534 */
hailfingercf848f12010-12-05 15:14:44 +00001535 if (!usable_erasefunctions)
1536 continue;
hailfinger6237f5e2010-12-02 02:41:55 +00001537 if (flash->read(flash, curcontents, 0, size)) {
1538 /* Now we are truly screwed. Read failed as well. */
1539 msg_cerr("Can't read anymore!\n");
1540 /* We have no idea about the flash chip contents, so
1541 * retrying with another erase function is pointless.
1542 */
1543 break;
1544 }
hailfinger7df21362009-09-05 02:30:58 +00001545 }
hailfingerb437e282010-11-04 01:04:27 +00001546 /* Free the scratchpad. */
1547 free(curcontents);
hailfinger1e9ee0f2009-05-08 17:15:15 +00001548
hailfinger7df21362009-09-05 02:30:58 +00001549 if (ret) {
snelsone42c3802010-05-07 20:09:04 +00001550 msg_cerr("FAILED!\n");
hailfinger7df21362009-09-05 02:30:58 +00001551 } else {
hailfingerb437e282010-11-04 01:04:27 +00001552 msg_cinfo("Done.\n");
hailfinger7df21362009-09-05 02:30:58 +00001553 }
1554 return ret;
hailfingerd219a232009-01-28 00:27:54 +00001555}
1556
hailfinger4c47e9d2010-10-19 22:06:20 +00001557void nonfatal_help_message(void)
1558{
1559 msg_gerr("Writing to the flash chip apparently didn't do anything.\n"
1560 "This means we have to add special support for your board, "
1561 "programmer or flash chip.\n"
1562 "Please report this on IRC at irc.freenode.net (channel "
1563 "#flashrom) or\n"
1564 "mail flashrom@flashrom.org!\n"
1565 "-------------------------------------------------------------"
1566 "------------------\n"
1567 "You may now reboot or simply leave the machine running.\n");
1568}
1569
uweb34ec9f2009-10-01 18:40:02 +00001570void emergency_help_message(void)
hailfinger0459e1c2009-08-19 13:55:34 +00001571{
snelsone42c3802010-05-07 20:09:04 +00001572 msg_gerr("Your flash chip is in an unknown state.\n"
uweb34ec9f2009-10-01 18:40:02 +00001573 "Get help on IRC at irc.freenode.net (channel #flashrom) or\n"
hailfinger5bae2332010-10-08 11:03:02 +00001574 "mail flashrom@flashrom.org with FAILED: your board name in "
1575 "the subject line!\n"
hailfinger74819ad2010-05-15 15:04:37 +00001576 "-------------------------------------------------------------"
1577 "------------------\n"
hailfinger0459e1c2009-08-19 13:55:34 +00001578 "DO NOT REBOOT OR POWEROFF!\n");
1579}
1580
hailfingerc77acb52009-12-24 02:15:55 +00001581/* The way to go if you want a delimited list of programmers*/
1582void list_programmers(char *delim)
1583{
1584 enum programmer p;
1585 for (p = 0; p < PROGRAMMER_INVALID; p++) {
snelsone42c3802010-05-07 20:09:04 +00001586 msg_ginfo("%s", programmer_table[p].name);
hailfingerc77acb52009-12-24 02:15:55 +00001587 if (p < PROGRAMMER_INVALID - 1)
snelsone42c3802010-05-07 20:09:04 +00001588 msg_ginfo("%s", delim);
hailfingerc77acb52009-12-24 02:15:55 +00001589 }
snelsone42c3802010-05-07 20:09:04 +00001590 msg_ginfo("\n");
hailfingerc77acb52009-12-24 02:15:55 +00001591}
1592
hailfingerf79d1712010-10-06 23:48:34 +00001593void list_programmers_linebreak(int startcol, int cols, int paren)
1594{
1595 const char *pname;
1596 int pnamelen;
1597 int remaining = 0;
1598 int firstline = 1;
1599 enum programmer p;
1600 int i;
1601
1602 for (p = 0; p < PROGRAMMER_INVALID; p++) {
1603 pname = programmer_table[p].name;
1604 pnamelen = strlen(pname);
1605 if (remaining - pnamelen - 2 < 0) {
1606 if (firstline)
1607 firstline = 0;
1608 else
1609 printf("\n");
1610 for (i = 0; i < startcol; i++)
1611 printf(" ");
1612 remaining = cols - startcol;
1613 } else {
1614 printf(" ");
1615 remaining--;
1616 }
1617 if (paren && (p == 0)) {
1618 printf("(");
1619 remaining--;
1620 }
1621 printf("%s", pname);
1622 remaining -= pnamelen;
1623 if (p < PROGRAMMER_INVALID - 1) {
1624 printf(",");
1625 remaining--;
1626 } else {
1627 if (paren)
1628 printf(")");
1629 printf("\n");
1630 }
1631 }
1632}
1633
hailfinger3b471632010-03-27 16:36:40 +00001634void print_sysinfo(void)
1635{
1636#if HAVE_UTSNAME == 1
1637 struct utsname osinfo;
1638 uname(&osinfo);
1639
1640 msg_ginfo(" on %s %s (%s)", osinfo.sysname, osinfo.release,
1641 osinfo.machine);
1642#else
1643 msg_ginfo(" on unknown machine");
1644#endif
1645 msg_ginfo(", built with");
1646#if NEED_PCI == 1
1647#ifdef PCILIB_VERSION
1648 msg_ginfo(" libpci %s,", PCILIB_VERSION);
1649#else
1650 msg_ginfo(" unknown PCI library,");
1651#endif
1652#endif
1653#ifdef __clang__
hailfinger3cc85ad2010-07-17 14:49:30 +00001654 msg_ginfo(" LLVM Clang");
1655#ifdef __clang_version__
1656 msg_ginfo(" %s,", __clang_version__);
1657#else
1658 msg_ginfo(" unknown version (before r102686),");
1659#endif
hailfinger3b471632010-03-27 16:36:40 +00001660#elif defined(__GNUC__)
1661 msg_ginfo(" GCC");
1662#ifdef __VERSION__
hailfinger324a9cc2010-05-26 01:45:41 +00001663 msg_ginfo(" %s,", __VERSION__);
hailfinger3b471632010-03-27 16:36:40 +00001664#else
hailfinger324a9cc2010-05-26 01:45:41 +00001665 msg_ginfo(" unknown version,");
hailfinger3b471632010-03-27 16:36:40 +00001666#endif
1667#else
hailfinger324a9cc2010-05-26 01:45:41 +00001668 msg_ginfo(" unknown compiler,");
1669#endif
1670#if defined (__FLASHROM_LITTLE_ENDIAN__)
1671 msg_ginfo(" little endian");
1672#else
1673 msg_ginfo(" big endian");
hailfinger3b471632010-03-27 16:36:40 +00001674#endif
1675 msg_ginfo("\n");
1676}
1677
uwefdeca092008-01-21 15:24:22 +00001678void print_version(void)
1679{
hailfinger74819ad2010-05-15 15:04:37 +00001680 msg_ginfo("flashrom v%s", flashrom_version);
hailfinger3b471632010-03-27 16:36:40 +00001681 print_sysinfo();
uwefdeca092008-01-21 15:24:22 +00001682}
1683
hailfinger74819ad2010-05-15 15:04:37 +00001684void print_banner(void)
1685{
1686 msg_ginfo("flashrom is free software, get the source code at "
1687 "http://www.flashrom.org\n");
1688 msg_ginfo("\n");
1689}
1690
hailfingerc77acb52009-12-24 02:15:55 +00001691int selfcheck(void)
1692{
hailfinger45177872010-01-18 08:14:43 +00001693 int ret = 0;
1694 struct flashchip *flash;
1695
1696 /* Safety check. Instead of aborting after the first error, check
1697 * if more errors exist.
1698 */
hailfingerc77acb52009-12-24 02:15:55 +00001699 if (ARRAY_SIZE(programmer_table) - 1 != PROGRAMMER_INVALID) {
snelsone42c3802010-05-07 20:09:04 +00001700 msg_gerr("Programmer table miscompilation!\n");
hailfinger45177872010-01-18 08:14:43 +00001701 ret = 1;
hailfingerc77acb52009-12-24 02:15:55 +00001702 }
1703 if (spi_programmer_count - 1 != SPI_CONTROLLER_INVALID) {
snelsone42c3802010-05-07 20:09:04 +00001704 msg_gerr("SPI programmer table miscompilation!\n");
hailfinger45177872010-01-18 08:14:43 +00001705 ret = 1;
hailfingerc77acb52009-12-24 02:15:55 +00001706 }
hailfinger45177872010-01-18 08:14:43 +00001707 for (flash = flashchips; flash && flash->name; flash++)
1708 if (selfcheck_eraseblocks(flash))
1709 ret = 1;
1710 return ret;
hailfingerc77acb52009-12-24 02:15:55 +00001711}
1712
1713void check_chip_supported(struct flashchip *flash)
1714{
1715 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
snelsone42c3802010-05-07 20:09:04 +00001716 msg_cinfo("===\n");
hailfingerc77acb52009-12-24 02:15:55 +00001717 if (flash->tested & TEST_BAD_MASK) {
snelsone42c3802010-05-07 20:09:04 +00001718 msg_cinfo("This flash part has status NOT WORKING for operations:");
hailfingerc77acb52009-12-24 02:15:55 +00001719 if (flash->tested & TEST_BAD_PROBE)
snelsone42c3802010-05-07 20:09:04 +00001720 msg_cinfo(" PROBE");
hailfingerc77acb52009-12-24 02:15:55 +00001721 if (flash->tested & TEST_BAD_READ)
snelsone42c3802010-05-07 20:09:04 +00001722 msg_cinfo(" READ");
hailfingerc77acb52009-12-24 02:15:55 +00001723 if (flash->tested & TEST_BAD_ERASE)
snelsone42c3802010-05-07 20:09:04 +00001724 msg_cinfo(" ERASE");
hailfingerc77acb52009-12-24 02:15:55 +00001725 if (flash->tested & TEST_BAD_WRITE)
snelsone42c3802010-05-07 20:09:04 +00001726 msg_cinfo(" WRITE");
1727 msg_cinfo("\n");
hailfingerc77acb52009-12-24 02:15:55 +00001728 }
1729 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
1730 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
1731 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
1732 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
snelsone42c3802010-05-07 20:09:04 +00001733 msg_cinfo("This flash part has status UNTESTED for operations:");
hailfingerc77acb52009-12-24 02:15:55 +00001734 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
snelsone42c3802010-05-07 20:09:04 +00001735 msg_cinfo(" PROBE");
hailfingerc77acb52009-12-24 02:15:55 +00001736 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
snelsone42c3802010-05-07 20:09:04 +00001737 msg_cinfo(" READ");
hailfingerc77acb52009-12-24 02:15:55 +00001738 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
snelsone42c3802010-05-07 20:09:04 +00001739 msg_cinfo(" ERASE");
hailfingerc77acb52009-12-24 02:15:55 +00001740 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
snelsone42c3802010-05-07 20:09:04 +00001741 msg_cinfo(" WRITE");
1742 msg_cinfo("\n");
hailfingerc77acb52009-12-24 02:15:55 +00001743 }
hailfinger92cd8e32010-01-07 03:24:05 +00001744 /* FIXME: This message is designed towards CLI users. */
hailfinger74819ad2010-05-15 15:04:37 +00001745 msg_cinfo("The test status of this chip may have been updated "
1746 "in the latest development\n"
1747 "version of flashrom. If you are running the latest "
1748 "development version,\n"
1749 "please email a report to flashrom@flashrom.org if "
1750 "any of the above operations\n"
1751 "work correctly for you with this flash part. Please "
1752 "include the flashrom\n"
1753 "output with the additional -V option for all "
1754 "operations you tested (-V, -Vr,\n"
1755 "-Vw, -VE), and mention which mainboard or "
1756 "programmer you tested.\n"
hailfinger5bae2332010-10-08 11:03:02 +00001757 "Please mention your board in the subject line. "
1758 "Thanks for your help!\n");
hailfingerc77acb52009-12-24 02:15:55 +00001759 }
1760}
1761
ollie5b621572004-03-20 16:46:10 +00001762int main(int argc, char *argv[])
rminnich8d3ff912003-10-25 17:01:29 +00001763{
hailfinger92cd8e32010-01-07 03:24:05 +00001764 return cli_classic(argc, argv);
hailfingerc77acb52009-12-24 02:15:55 +00001765}
1766
hailfinger771fc182010-10-15 00:01:14 +00001767/* FIXME: This function signature needs to be improved once doit() has a better
1768 * function signature.
1769 */
1770int chip_safety_check(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1771{
1772 if (!programmer_may_write && (write_it || erase_it)) {
1773 msg_perr("Write/erase is not working yet on your programmer in "
1774 "its current configuration.\n");
1775 /* --force is the wrong approach, but it's the best we can do
1776 * until the generic programmer parameter parser is merged.
1777 */
1778 if (!force)
1779 return 1;
1780 msg_cerr("Continuing anyway.\n");
1781 }
1782
1783 if (read_it || erase_it || write_it || verify_it) {
1784 /* Everything needs read. */
1785 if (flash->tested & TEST_BAD_READ) {
1786 msg_cerr("Read is not working on this chip. ");
1787 if (!force)
1788 return 1;
1789 msg_cerr("Continuing anyway.\n");
1790 }
1791 if (!flash->read) {
1792 msg_cerr("flashrom has no read function for this "
1793 "flash chip.\n");
1794 return 1;
1795 }
1796 }
1797 if (erase_it || write_it) {
1798 /* Write needs erase. */
1799 if (flash->tested & TEST_BAD_ERASE) {
1800 msg_cerr("Erase is not working on this chip. ");
1801 if (!force)
1802 return 1;
1803 msg_cerr("Continuing anyway.\n");
1804 }
1805 /* FIXME: Check if at least one erase function exists. */
1806 }
1807 if (write_it) {
1808 if (flash->tested & TEST_BAD_WRITE) {
1809 msg_cerr("Write is not working on this chip. ");
1810 if (!force)
1811 return 1;
1812 msg_cerr("Continuing anyway.\n");
1813 }
1814 if (!flash->write) {
1815 msg_cerr("flashrom has no write function for this "
1816 "flash chip.\n");
1817 return 1;
1818 }
1819 }
1820 return 0;
1821}
1822
hailfingerc77acb52009-12-24 02:15:55 +00001823/* This function signature is horrible. We need to design a better interface,
1824 * but right now it allows us to split off the CLI code.
hailfingerd217d122010-10-08 18:52:29 +00001825 * Besides that, the function itself is a textbook example of abysmal code flow.
hailfingerc77acb52009-12-24 02:15:55 +00001826 */
1827int doit(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1828{
hailfinger4c47e9d2010-10-19 22:06:20 +00001829 uint8_t *oldcontents;
1830 uint8_t *newcontents;
hailfingerc77acb52009-12-24 02:15:55 +00001831 int ret = 0;
hailfinger4c47e9d2010-10-19 22:06:20 +00001832 unsigned long size = flash->total_size * 1024;
hailfingerc77acb52009-12-24 02:15:55 +00001833
hailfinger771fc182010-10-15 00:01:14 +00001834 if (chip_safety_check(flash, force, filename, read_it, write_it, erase_it, verify_it)) {
1835 msg_cerr("Aborting.\n");
hailfinger90fcf9b2010-11-05 14:51:59 +00001836 ret = 1;
1837 goto out_nofree;
hailfinger771fc182010-10-15 00:01:14 +00001838 }
1839
hailfinger771fc182010-10-15 00:01:14 +00001840 /* Given the existence of read locks, we want to unlock for read,
1841 * erase and write.
1842 */
1843 if (flash->unlock)
1844 flash->unlock(flash);
1845
1846 if (read_it) {
1847 ret = read_flash_to_file(flash, filename);
hailfinger90fcf9b2010-11-05 14:51:59 +00001848 goto out_nofree;
hailfinger5828baf2010-07-03 12:14:25 +00001849 }
hailfingerb437e282010-11-04 01:04:27 +00001850
1851 oldcontents = (uint8_t *) malloc(size);
1852 /* Assume worst case: All bits are 0. */
1853 memset(oldcontents, 0x00, size);
1854 newcontents = (uint8_t *) malloc(size);
1855 /* Assume best case: All bits should be 1. */
1856 memset(newcontents, 0xff, size);
1857 /* Side effect of the assumptions above: Default write action is erase
1858 * because newcontents looks like a completely erased chip, and
1859 * oldcontents being completely 0x00 means we have to erase everything
1860 * before we can write.
1861 */
1862
ollie0eb62d62004-12-08 20:10:01 +00001863 if (erase_it) {
hailfinger4c47e9d2010-10-19 22:06:20 +00001864 /* FIXME: Do we really want the scary warning if erase failed?
1865 * After all, after erase the chip is either blank or partially
1866 * blank or it has the old contents. A blank chip won't boot,
1867 * so if the user wanted erase and reboots afterwards, the user
1868 * knows very well that booting won't work.
1869 */
hailfingerb437e282010-11-04 01:04:27 +00001870 if (erase_and_write_flash(flash, oldcontents, newcontents)) {
hailfinger0459e1c2009-08-19 13:55:34 +00001871 emergency_help_message();
hailfingerb437e282010-11-04 01:04:27 +00001872 ret = 1;
hailfinger0459e1c2009-08-19 13:55:34 +00001873 }
hailfinger90fcf9b2010-11-05 14:51:59 +00001874 goto out;
hailfingerd217d122010-10-08 18:52:29 +00001875 }
hailfinger771fc182010-10-15 00:01:14 +00001876
hailfingerd217d122010-10-08 18:52:29 +00001877 if (write_it || verify_it) {
hailfinger4c47e9d2010-10-19 22:06:20 +00001878 if (read_buf_from_file(newcontents, size, filename)) {
hailfinger90fcf9b2010-11-05 14:51:59 +00001879 ret = 1;
1880 goto out;
stepan1da96c02006-11-21 23:48:51 +00001881 }
1882
hailfinger90c7d542010-05-31 15:27:27 +00001883#if CONFIG_INTERNAL == 1
hailfinger4c47e9d2010-10-19 22:06:20 +00001884 if (programmer == PROGRAMMER_INTERNAL)
1885 show_id(newcontents, size, force);
hailfinger80422e22009-12-13 22:28:00 +00001886#endif
ollie5672ac62004-03-17 22:22:08 +00001887 }
1888
hailfinger4c47e9d2010-10-19 22:06:20 +00001889 /* Read the whole chip to be able to check whether regions need to be
1890 * erased and to give better diagnostics in case write fails.
1891 * The alternative would be to read only the regions which are to be
1892 * preserved, but in that case we might perform unneeded erase which
1893 * takes time as well.
1894 */
1895 msg_cdbg("Reading old flash chip contents...\n");
1896 if (flash->read(flash, oldcontents, 0, size)) {
hailfinger90fcf9b2010-11-05 14:51:59 +00001897 ret = 1;
1898 goto out;
hailfinger4c47e9d2010-10-19 22:06:20 +00001899 }
1900
ollie6a600992005-11-26 21:55:36 +00001901 // This should be moved into each flash part's code to do it
1902 // cleanly. This does the job.
hailfinger4c47e9d2010-10-19 22:06:20 +00001903 handle_romentries(flash, oldcontents, newcontents);
uwef6641642007-05-09 10:17:44 +00001904
ollie6a600992005-11-26 21:55:36 +00001905 // ////////////////////////////////////////////////////////////
uwef6641642007-05-09 10:17:44 +00001906
stuge8ce3a3c2008-04-28 14:47:30 +00001907 if (write_it) {
hailfingerb437e282010-11-04 01:04:27 +00001908 if (erase_and_write_flash(flash, oldcontents, newcontents)) {
1909 msg_cerr("Uh oh. Erase/write failed. Checking if "
1910 "anything changed.\n");
hailfinger4c47e9d2010-10-19 22:06:20 +00001911 if (!flash->read(flash, newcontents, 0, size)) {
1912 if (!memcmp(oldcontents, newcontents, size)) {
1913 msg_cinfo("Good. It seems nothing was "
1914 "changed.\n");
1915 nonfatal_help_message();
hailfinger90fcf9b2010-11-05 14:51:59 +00001916 ret = 1;
1917 goto out;
hailfinger4c47e9d2010-10-19 22:06:20 +00001918 }
1919 }
hailfingerd217d122010-10-08 18:52:29 +00001920 emergency_help_message();
hailfinger90fcf9b2010-11-05 14:51:59 +00001921 ret = 1;
1922 goto out;
stuge8ce3a3c2008-04-28 14:47:30 +00001923 }
stuge8ce3a3c2008-04-28 14:47:30 +00001924 }
ollie6a600992005-11-26 21:55:36 +00001925
hailfinger0459e1c2009-08-19 13:55:34 +00001926 if (verify_it) {
1927 /* Work around chips which need some time to calm down. */
1928 if (write_it)
1929 programmer_delay(1000*1000);
hailfinger4c47e9d2010-10-19 22:06:20 +00001930 ret = verify_flash(flash, newcontents);
hailfingera50d60e2009-11-17 09:57:34 +00001931 /* If we tried to write, and verification now fails, we
hailfinger0459e1c2009-08-19 13:55:34 +00001932 * might have an emergency situation.
1933 */
1934 if (ret && write_it)
1935 emergency_help_message();
1936 }
ollie6a600992005-11-26 21:55:36 +00001937
hailfinger90fcf9b2010-11-05 14:51:59 +00001938out:
1939 free(oldcontents);
1940 free(newcontents);
1941out_nofree:
hailfingerabe249e2009-05-08 17:43:22 +00001942 programmer_shutdown();
stepan83eca252006-01-04 16:42:57 +00001943 return ret;
rminnich8d3ff912003-10-25 17:01:29 +00001944}