blob: cfb8e5ff2b62115871e286e11aecdac71524b59d [file] [log] [blame]
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00003 *
Uwe Hermannd22a1d42007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp <yhlu@tyan.com>
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +00006 * Copyright (C) 2005-2008 coresystems GmbH
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007 * Copyright (C) 2008,2009 Carl-Daniel Hailfinger
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00008 *
Uwe Hermannd1107642007-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.
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000013 *
Uwe Hermannd1107642007-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.
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000018 *
Uwe Hermannd1107642007-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
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000022 */
23
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000024#include <stdio.h>
Stefan Reinauer018aca82006-11-21 23:48:51 +000025#include <sys/types.h>
Patrick Georgia9095a92010-09-30 17:03:32 +000026#ifndef __LIBPAYLOAD__
27#include <fcntl.h>
Stefan Reinauer018aca82006-11-21 23:48:51 +000028#include <sys/stat.h>
Patrick Georgia9095a92010-09-30 17:03:32 +000029#endif
Ronald G. Minnichceec4202003-07-25 04:37:41 +000030#include <string.h>
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000031#include <stdlib.h>
Carl-Daniel Hailfingerc2441382010-11-09 22:00:31 +000032#include <ctype.h>
Ollie Lho184a4042005-11-26 21:55:36 +000033#include <getopt.h>
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +000034#if HAVE_UTSNAME == 1
35#include <sys/utsname.h>
36#endif
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000037#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000038#include "flashchips.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000039#include "programmer.h"
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000040
Mathias Krausea60faab2011-01-17 07:50:42 +000041const char flashrom_version[] = FLASHROM_VERSION;
Ronald G. Minnichceec4202003-07-25 04:37:41 +000042char *chip_to_probe = NULL;
Peter Stuge7ffbc6f2008-06-18 02:08:40 +000043int verbose = 0;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000044
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000045#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +000046enum programmer programmer = PROGRAMMER_INTERNAL;
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000047#elif CONFIG_DUMMY == 1
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000048enum programmer programmer = PROGRAMMER_DUMMY;
49#else
Carl-Daniel Hailfinger1a1415c2010-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 */
Carl-Daniel Hailfinger9a1105c2011-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
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000056#error Please enable either CONFIG_DUMMY or CONFIG_INTERNAL or disable support for all programmers except one.
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000057#endif
58enum programmer programmer =
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000059#if CONFIG_NIC3COM == 1
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000060 PROGRAMMER_NIC3COM
61#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000062#if CONFIG_NICREALTEK == 1
Joerg Fischer5665ef32010-05-21 21:54:07 +000063 PROGRAMMER_NICREALTEK
Joerg Fischer5665ef32010-05-21 21:54:07 +000064#endif
Andrew Morganc29c2e72010-06-07 22:37:54 +000065#if CONFIG_NICNATSEMI == 1
66 PROGRAMMER_NICNATSEMI
67#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000068#if CONFIG_GFXNVIDIA == 1
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000069 PROGRAMMER_GFXNVIDIA
70#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000071#if CONFIG_DRKAISER == 1
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000072 PROGRAMMER_DRKAISER
73#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000074#if CONFIG_SATASII == 1
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000075 PROGRAMMER_SATASII
76#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000077#if CONFIG_ATAHPT == 1
Uwe Hermannddd5c9e2010-02-21 21:17:00 +000078 PROGRAMMER_ATAHPT
79#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000080#if CONFIG_FT2232_SPI == 1
81 PROGRAMMER_FT2232_SPI
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000082#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000083#if CONFIG_SERPROG == 1
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000084 PROGRAMMER_SERPROG
85#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000086#if CONFIG_BUSPIRATE_SPI == 1
87 PROGRAMMER_BUSPIRATE_SPI
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000088#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000089#if CONFIG_DEDIPROG == 1
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +000090 PROGRAMMER_DEDIPROG
91#endif
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +000092#if CONFIG_RAYER_SPI == 1
93 PROGRAMMER_RAYER_SPI
94#endif
Idwer Vollering004f4b72010-09-03 18:21:21 +000095#if CONFIG_NICINTEL_SPI == 1
96 PROGRAMMER_NICINTEL_SPI
97#endif
Mark Marshall90021f22010-12-03 14:48:11 +000098#if CONFIG_OGP_SPI == 1
99 PROGRAMMER_OGP_SPI
100#endif
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000101#if CONFIG_SATAMV == 1
102 PROGRAMMER_SATAMV
103#endif
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +0000104;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000105#endif
106
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000107static char *programmer_param = NULL;
Stefan Reinauer70385642007-04-06 11:58:03 +0000108
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000109/* Supported buses for the current programmer. */
110enum chipbustype buses_supported;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000111
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000112/*
Carl-Daniel Hailfinger66ef4e52009-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 */
Carl-Daniel Hailfingerad3cc552010-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;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000120
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +0000121/* Is writing allowed with this programmer? */
122int programmer_may_write;
123
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000124const struct programmer_entry programmer_table[] = {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000125#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000126 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000127 .name = "internal",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000128 .init = internal_init,
129 .shutdown = internal_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000130 .map_flash_region = physmap,
131 .unmap_flash_region = physunmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000132 .chip_readb = internal_chip_readb,
133 .chip_readw = internal_chip_readw,
134 .chip_readl = internal_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000135 .chip_readn = internal_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000136 .chip_writeb = internal_chip_writeb,
137 .chip_writew = internal_chip_writew,
138 .chip_writel = internal_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000139 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000140 .delay = internal_delay,
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000141 },
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000142#endif
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000143
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000144#if CONFIG_DUMMY == 1
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000145 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000146 .name = "dummy",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000147 .init = dummy_init,
148 .shutdown = dummy_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000149 .map_flash_region = dummy_map,
150 .unmap_flash_region = dummy_unmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000151 .chip_readb = dummy_chip_readb,
152 .chip_readw = dummy_chip_readw,
153 .chip_readl = dummy_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000154 .chip_readn = dummy_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000155 .chip_writeb = dummy_chip_writeb,
156 .chip_writew = dummy_chip_writew,
157 .chip_writel = dummy_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000158 .chip_writen = dummy_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000159 .delay = internal_delay,
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000160 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000161#endif
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000162
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000163#if CONFIG_NIC3COM == 1
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000164 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000165 .name = "nic3com",
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000166 .init = nic3com_init,
167 .shutdown = nic3com_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +0000168 .map_flash_region = fallback_map,
169 .unmap_flash_region = fallback_unmap,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000170 .chip_readb = nic3com_chip_readb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +0000171 .chip_readw = fallback_chip_readw,
172 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000173 .chip_readn = fallback_chip_readn,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000174 .chip_writeb = nic3com_chip_writeb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +0000175 .chip_writew = fallback_chip_writew,
176 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000177 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000178 .delay = internal_delay,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000179 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000180#endif
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000181
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000182#if CONFIG_NICREALTEK == 1
Joerg Fischer5665ef32010-05-21 21:54:07 +0000183 {
Carl-Daniel Hailfinger40446ee2011-03-07 01:08:09 +0000184 /* This programmer works for Realtek RTL8139 and SMC 1211. */
Joerg Fischer5665ef32010-05-21 21:54:07 +0000185 .name = "nicrealtek",
Carl-Daniel Hailfinger40446ee2011-03-07 01:08:09 +0000186 //.name = "nicsmc1211",
Joerg Fischer5665ef32010-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 },
Joerg Fischer5665ef32010-05-21 21:54:07 +0000201#endif
202
Andrew Morganc29c2e72010-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
Joerg Fischer5665ef32010-05-21 21:54:07 +0000221
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000222#if CONFIG_GFXNVIDIA == 1
Uwe Hermann2bc98f62009-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
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000241#if CONFIG_DRKAISER == 1
Rudolf Marek68720c72009-05-17 19:39:27 +0000242 {
TURBO Jb0912c02009-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 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000258#endif
TURBO Jb0912c02009-09-02 23:00:46 +0000259
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000260#if CONFIG_SATASII == 1
TURBO Jb0912c02009-09-02 23:00:46 +0000261 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000262 .name = "satasii",
Rudolf Marek68720c72009-05-17 19:39:27 +0000263 .init = satasii_init,
264 .shutdown = satasii_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +0000265 .map_flash_region = fallback_map,
266 .unmap_flash_region = fallback_unmap,
Rudolf Marek68720c72009-05-17 19:39:27 +0000267 .chip_readb = satasii_chip_readb,
268 .chip_readw = fallback_chip_readw,
269 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000270 .chip_readn = fallback_chip_readn,
Rudolf Marek68720c72009-05-17 19:39:27 +0000271 .chip_writeb = satasii_chip_writeb,
272 .chip_writew = fallback_chip_writew,
273 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000274 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000275 .delay = internal_delay,
Rudolf Marek68720c72009-05-17 19:39:27 +0000276 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000277#endif
Rudolf Marek68720c72009-05-17 19:39:27 +0000278
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000279#if CONFIG_ATAHPT == 1
Uwe Hermannddd5c9e2010-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
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000298#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000299#if defined(__i386__) || defined(__x86_64__)
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000300 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000301 .name = "it87spi",
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000302 .init = it87spi_init,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000303 .shutdown = noop_shutdown,
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000304 .map_flash_region = fallback_map,
305 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000306 .chip_readb = noop_chip_readb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000307 .chip_readw = fallback_chip_readw,
308 .chip_readl = fallback_chip_readl,
309 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000310 .chip_writeb = noop_chip_writeb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000311 .chip_writew = fallback_chip_writew,
312 .chip_writel = fallback_chip_writel,
313 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000314 .delay = internal_delay,
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000315 },
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000316#endif
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000317#endif
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000318
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000319#if CONFIG_FT2232_SPI == 1
Paul Fox05dfbe62009-06-16 21:08:06 +0000320 {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000321 .name = "ft2232_spi",
Paul Fox05dfbe62009-06-16 21:08:06 +0000322 .init = ft2232_spi_init,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000323 .shutdown = noop_shutdown, /* Missing shutdown */
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000324 .map_flash_region = fallback_map,
325 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000326 .chip_readb = noop_chip_readb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000327 .chip_readw = fallback_chip_readw,
328 .chip_readl = fallback_chip_readl,
329 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000330 .chip_writeb = noop_chip_writeb,
Paul Fox05dfbe62009-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 },
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000336#endif
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000337
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000338#if CONFIG_SERPROG == 1
Urja Rannikko22915352009-06-23 11:33:43 +0000339 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000340 .name = "serprog",
Urja Rannikko22915352009-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 },
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000355#endif
Paul Fox05dfbe62009-06-16 21:08:06 +0000356
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000357#if CONFIG_BUSPIRATE_SPI == 1
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000358 {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000359 .name = "buspirate_spi",
Carl-Daniel Hailfinger5cca01f2009-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
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000376#if CONFIG_DEDIPROG == 1
Carl-Daniel Hailfingerd38fac82010-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
Carl-Daniel Hailfingere7fdd6e2010-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
Idwer Vollering004f4b72010-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
Mark Marshall90021f22010-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
Carl-Daniel Hailfinger9a1105c2011-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
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000471 {}, /* This entry corresponds to PROGRAMMER_INVALID. */
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000472};
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000473
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000474#define SHUTDOWN_MAXFN 32
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000475static int shutdown_fn_count = 0;
476struct shutdown_func_data {
477 void (*func) (void *data);
478 void *data;
Carl-Daniel Hailfingerad3cc552010-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;
Carl-Daniel Hailfingercc389fc2010-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) {
Carl-Daniel Hailfinger9f5f2152010-06-04 23:20:21 +0000496 msg_perr("Tried to register more than %i shutdown functions.\n",
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000497 SHUTDOWN_MAXFN);
498 return 1;
499 }
Carl-Daniel Hailfingerad3cc552010-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 }
Carl-Daniel Hailfingercc389fc2010-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
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000512int programmer_init(char *param)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000513{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000514 int ret;
Carl-Daniel Hailfingerad3cc552010-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;
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +0000531 /* Default to allowing writes. Broken programmers set this to 0. */
532 programmer_may_write = 1;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000533
534 programmer_param = param;
535 msg_pdbg("Initializing %s programmer\n",
536 programmer_table[programmer].name);
Carl-Daniel Hailfinger744132a2010-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;
Uwe Hermann09e04f72009-05-16 22:36:00 +0000544}
545
546int programmer_shutdown(void)
547{
Carl-Daniel Hailfingerad3cc552010-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;
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000552 shutdown_fn[i].func(shutdown_fn[i].data);
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000553 }
Uwe Hermann09e04f72009-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
Carl-Daniel Hailfinger0bd2a2b2009-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
Uwe Hermann09e04f72009-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
Carl-Daniel Hailfinger0bd2a2b2009-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);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000607}
608
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000609void programmer_delay(int usecs)
610{
611 programmer_table[programmer].delay(usecs);
612}
613
Peter Stuge776d2022009-01-26 00:39:57 +0000614void map_flash_registers(struct flashchip *flash)
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000615{
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000616 size_t size = flash->total_size * 1024;
Carl-Daniel Hailfingerd0fc9462009-05-11 14:01:17 +0000617 /* Flash registers live 4 MByte below the flash. */
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +0000618 /* FIXME: This is incorrect for nonstandard flashbase. */
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000619 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000620}
621
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000622int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000623{
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000624 chip_readn(buf, flash->virtual_memory + start, len);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000625
626 return 0;
627}
628
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000629int min(int a, int b)
630{
631 return (a < b) ? a : b;
632}
633
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000634int max(int a, int b)
635{
636 return (a > b) ? a : b;
637}
638
Carl-Daniel Hailfinger115d3902009-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
Carl-Daniel Hailfingerc2441382010-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
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000654char *strcat_realloc(char *dest, const char *src)
655{
656 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000657 if (!dest) {
658 msg_gerr("Out of memory!\n");
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000659 return NULL;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000660 }
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000661 strcat(dest, src);
662 return dest;
663}
664
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000665/* This is a somewhat hacked function similar in some ways to strtok().
Carl-Daniel Hailfinger744132a2010-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.
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000669 */
670char *extract_param(char **haystack, char *needle, char *delim)
671{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000672 char *param_pos, *opt_pos, *rest;
673 char *opt = NULL;
674 int optlen;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000675 int needlelen;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000676
Carl-Daniel Hailfinger27023762010-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;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000686 param_pos = strstr(*haystack, needle);
687 do {
688 if (!param_pos)
689 return NULL;
Carl-Daniel Hailfinger744132a2010-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 }
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000700 /* Continue searching. */
701 param_pos++;
702 param_pos = strstr(param_pos, needle);
703 } while (1);
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000704
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000705 if (param_pos) {
Carl-Daniel Hailfinger744132a2010-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) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000712 msg_gerr("Out of memory!\n");
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000713 exit(1);
714 }
Carl-Daniel Hailfinger744132a2010-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. */
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000722 }
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000723
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000724 return opt;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000725}
726
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000727char *extract_programmer_param(char *param_name)
728{
729 return extract_param(&programmer_param, param_name, ",");
730}
731
Carl-Daniel Hailfinger30f7cb22009-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) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000739 msg_gerr("Could not allocate memory!\n");
Carl-Daniel Hailfinger30f7cb22009-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
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000748/*
Carl-Daniel Hailfingerd0250a32009-11-25 17:05:52 +0000749 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
750 flash content at location start
Carl-Daniel Hailfinger30f7cb22009-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{
Carl-Daniel Hailfingerd8369412010-11-16 17:21:58 +0000758 int i, ret = 0;
759 uint8_t *readbuf = malloc(len);
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000760 int failcount = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000761
762 if (!len)
763 goto out_free;
764
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000765 if (!flash->read) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000766 msg_cerr("ERROR: flashrom has no read function for this flash chip.\n");
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000767 return 1;
768 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000769 if (!readbuf) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000770 msg_gerr("Could not allocate memory!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000771 exit(1);
772 }
773
774 if (start + len > flash->total_size * 1024) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000775 msg_gerr("Error: %s called with start 0x%x + len 0x%x >"
Carl-Daniel Hailfinger30f7cb22009-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
Carl-Daniel Hailfingerd8369412010-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]);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000799 }
800 }
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000801 if (failcount) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000802 msg_cerr(" failed byte count from 0x%08x-0x%08x: 0x%x\n",
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000803 start, start + len - 1, failcount);
804 ret = -1;
805 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000806
807out_free:
808 free(readbuf);
809 return ret;
810}
811
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000812/*
Carl-Daniel Hailfingere8e369f2010-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.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000816 *
Carl-Daniel Hailfingere8e369f2010-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.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000827 * Warning: This function assumes that @have and @want point to naturally
828 * aligned regions.
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000829 *
830 * @have buffer with current content
831 * @want buffer with desired content
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000832 * @len length of the checked area
Carl-Daniel Hailfingere8e369f2010-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);
Uwe Hermann43959702010-03-13 17:28:29 +0000859 /* Are 'have' and 'want' identical? */
Carl-Daniel Hailfingere8e369f2010-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++)
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000864 if (have[j * 256 + i] != 0xff) {
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000865 result = 1;
866 break;
867 }
868 if (result)
869 break;
870 }
871 break;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000872 default:
873 msg_cerr("%s: Unsupported granularity! Please report a bug at "
874 "flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000875 }
876 return result;
877}
878
Carl-Daniel Hailfinger6e2ea322010-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)
Carl-Daniel Hailfinger12d6d822010-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
Carl-Daniel Hailfinger6e2ea322010-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,
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000903 int *first_start, enum write_granularity gran)
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000904{
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000905 int need_write = 0, rel_start = 0, first_len = 0;
906 int i, limit, stride;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000907
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000908 switch (gran) {
909 case write_gran_1bit:
910 case write_gran_1byte:
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000911 stride = 1;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000912 break;
913 case write_gran_256bytes:
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000914 stride = 256;
Carl-Daniel Hailfinger6e2ea322010-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__);
Carl-Daniel Hailfinger12d6d822010-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;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000923 }
Carl-Daniel Hailfinger12d6d822010-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 */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000938 break;
939 }
940 }
941 }
Carl-Daniel Hailfinger202bf532010-12-06 13:05:44 +0000942 if (need_write)
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000943 first_len = min(i * stride - rel_start, len);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000944 *first_start += rel_start;
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000945 return first_len;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000946}
947
Carl-Daniel Hailfingereaac68b2009-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) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001002 msg_gerr("Invalid buffer!\n");
Carl-Daniel Hailfingereaac68b2009-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
Carl-Daniel Hailfinger115d3902009-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++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001090 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-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++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001098 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-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++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001106 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-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++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001114 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-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)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001126 /* FIXME: This message is designed towards CLI users. */
Sean Nelson316a29f2010-05-07 20:09:04 +00001127 msg_pdbg("There is at least one common chip/programmer "
Carl-Daniel Hailfinger115d3902009-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
Peter Stuge483b8f02008-09-03 23:10:05 +00001133struct flashchip *probe_flash(struct flashchip *first_flash, int force)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001134{
Peter Stuge483b8f02008-09-03 23:10:05 +00001135 struct flashchip *flash;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001136 unsigned long base = 0;
Stefan Reinauer051e2362011-01-19 06:21:54 +00001137 char location[64];
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001138 uint32_t size;
1139 enum chipbustype buses_common;
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001140 char *tmp;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001141
Peter Stuge483b8f02008-09-03 23:10:05 +00001142 for (flash = first_flash; flash && flash->name; flash++) {
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001143 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001144 continue;
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001145 msg_gdbg("Probing for %s %s, %d KB: ",
Stefan Reinauerac378972008-03-17 22:59:40 +00001146 flash->vendor, flash->name, flash->total_size);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +00001147 if (!flash->probe && !force) {
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001148 msg_gdbg("failed! flashrom has no probe function for "
1149 "this flash chip.\n");
Peter Stugef31104c2008-04-28 14:47:30 +00001150 continue;
1151 }
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001152 buses_common = buses_supported & flash->bustype;
1153 if (!buses_common) {
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001154 tmp = flashbuses_to_text(buses_supported);
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001155 msg_gdbg("skipped.");
1156 msg_gspew(" Host bus type %s ", tmp);
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001157 free(tmp);
1158 tmp = flashbuses_to_text(flash->bustype);
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001159 msg_gspew("and chip bus type %s are incompatible.",
1160 tmp);
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001161 free(tmp);
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001162 msg_gdbg("\n");
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001163 continue;
1164 }
Stefan Reinauer70385642007-04-06 11:58:03 +00001165
Ollie Lhocbbf1252004-03-17 22:22:08 +00001166 size = flash->total_size * 1024;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001167 check_max_decode(buses_common, size);
Stefan Reinauer70385642007-04-06 11:58:03 +00001168
Carl-Daniel Hailfinger97d6b092009-05-09 07:27:23 +00001169 base = flashbase ? flashbase : (0xffffffff - size + 1);
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +00001170 flash->virtual_memory = (chipaddr)programmer_map_flash_region("flash chip", base, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001171
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001172 if (force)
1173 break;
Stefan Reinauerfcb63682006-03-16 16:57:41 +00001174
Peter Stuge483b8f02008-09-03 23:10:05 +00001175 if (flash->probe(flash) != 1)
1176 goto notfound;
1177
Uwe Hermann394131e2008-10-18 21:14:13 +00001178 if (first_flash == flashchips
1179 || flash->model_id != GENERIC_DEVICE_ID)
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001180 break;
1181
Peter Stuge483b8f02008-09-03 23:10:05 +00001182notfound:
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +00001183 programmer_unmap_flash_region((void *)flash->virtual_memory, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001184 }
Uwe Hermannffec5f32007-08-23 16:08:21 +00001185
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001186 if (!flash || !flash->name)
1187 return NULL;
1188
Stefan Reinauer051e2362011-01-19 06:21:54 +00001189 if (programmer_table[programmer].map_flash_region == physmap) {
1190 snprintf(location, sizeof(location), "at physical address 0x%lx", base);
1191 } else {
1192 snprintf(location, sizeof(location), "on %s", programmer_table[programmer].name);
1193 }
1194
1195 msg_cinfo("%s chip \"%s %s\" (%d KB, %s) %s.\n",
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +00001196 force ? "Assuming" : "Found",
Uwe Hermann9899cad2009-06-28 21:47:57 +00001197 flash->vendor, flash->name, flash->total_size,
Stefan Reinauer051e2362011-01-19 06:21:54 +00001198 flashbuses_to_text(flash->bustype), location);
Uwe Hermann9899cad2009-06-28 21:47:57 +00001199
Carl-Daniel Hailfinger859f3f02010-12-02 21:59:42 +00001200 /* Flash registers will not be mapped if the chip was forced. Lock info
1201 * may be stored in registers, so avoid lock info printing.
1202 */
1203 if (!force)
1204 if (flash->printlock)
1205 flash->printlock(flash);
Sean Nelson6e0b9122010-02-19 00:52:10 +00001206
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001207 return flash;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001208}
1209
Stefan Reinauere3705282005-12-18 16:41:10 +00001210int verify_flash(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001211{
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001212 int ret;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001213 int total_size = flash->total_size * 1024;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001214
Sean Nelson316a29f2010-05-07 20:09:04 +00001215 msg_cinfo("Verifying flash... ");
Uwe Hermanna7e05482007-05-09 10:17:44 +00001216
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001217 ret = verify_range(flash, buf, 0, total_size, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001218
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001219 if (!ret)
Sean Nelson316a29f2010-05-07 20:09:04 +00001220 msg_cinfo("VERIFIED. \n");
Stefan Reinauerfcb63682006-03-16 16:57:41 +00001221
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001222 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001223}
1224
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001225int read_buf_from_file(unsigned char *buf, unsigned long size, char *filename)
1226{
1227 unsigned long numbytes;
1228 FILE *image;
1229 struct stat image_stat;
1230
1231 if ((image = fopen(filename, "rb")) == NULL) {
1232 perror(filename);
1233 return 1;
1234 }
1235 if (fstat(fileno(image), &image_stat) != 0) {
1236 perror(filename);
1237 fclose(image);
1238 return 1;
1239 }
1240 if (image_stat.st_size != size) {
1241 msg_gerr("Error: Image size doesn't match\n");
1242 fclose(image);
1243 return 1;
1244 }
1245 numbytes = fread(buf, 1, size, image);
1246 if (fclose(image)) {
1247 perror(filename);
1248 return 1;
1249 }
1250 if (numbytes != size) {
1251 msg_gerr("Error: Failed to read complete file. Got %ld bytes, "
1252 "wanted %ld!\n", numbytes, size);
1253 return 1;
1254 }
1255 return 0;
1256}
1257
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001258int write_buf_to_file(unsigned char *buf, unsigned long size, char *filename)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001259{
1260 unsigned long numbytes;
1261 FILE *image;
Stephan Guilloux21dd55b2009-06-01 22:07:52 +00001262
1263 if (!filename) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001264 msg_gerr("No filename specified.\n");
Stephan Guilloux21dd55b2009-06-01 22:07:52 +00001265 return 1;
1266 }
Patrick Georgi0bf842d2010-01-25 22:55:33 +00001267 if ((image = fopen(filename, "wb")) == NULL) {
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001268 perror(filename);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001269 return 1;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001270 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001271
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001272 numbytes = fwrite(buf, 1, size, image);
1273 fclose(image);
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001274 if (numbytes != size) {
1275 msg_gerr("File %s could not be written completely.\n",
1276 filename);
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001277 return 1;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001278 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001279 return 0;
1280}
1281
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001282int read_flash_to_file(struct flashchip *flash, char *filename)
1283{
1284 unsigned long size = flash->total_size * 1024;
1285 unsigned char *buf = calloc(size, sizeof(char));
1286 int ret = 0;
1287
1288 msg_cinfo("Reading flash... ");
1289 if (!buf) {
1290 msg_gerr("Memory allocation failed!\n");
1291 msg_cinfo("FAILED.\n");
1292 return 1;
1293 }
1294 if (!flash->read) {
1295 msg_cerr("No read function available for this flash chip.\n");
1296 ret = 1;
1297 goto out_free;
1298 }
1299 if (flash->read(flash, buf, 0, size)) {
1300 msg_cerr("Read operation failed!\n");
1301 ret = 1;
1302 goto out_free;
1303 }
1304
1305 ret = write_buf_to_file(buf, flash->total_size * 1024, filename);
1306out_free:
1307 free(buf);
1308 msg_cinfo("%s.\n", ret ? "FAILED" : "done");
1309 return ret;
1310}
1311
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001312/* This function shares a lot of its structure with erase_and_write_flash() and
1313 * walk_eraseregions().
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001314 * Even if an error is found, the function will keep going and check the rest.
1315 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +00001316static int selfcheck_eraseblocks(struct flashchip *flash)
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001317{
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001318 int i, j, k;
1319 int ret = 0;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001320
1321 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
1322 unsigned int done = 0;
1323 struct block_eraser eraser = flash->block_erasers[k];
1324
1325 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1326 /* Blocks with zero size are bugs in flashchips.c. */
1327 if (eraser.eraseblocks[i].count &&
1328 !eraser.eraseblocks[i].size) {
1329 msg_gerr("ERROR: Flash chip %s erase function "
1330 "%i region %i has size 0. Please report"
1331 " a bug at flashrom@flashrom.org\n",
1332 flash->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001333 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001334 }
1335 /* Blocks with zero count are bugs in flashchips.c. */
1336 if (!eraser.eraseblocks[i].count &&
1337 eraser.eraseblocks[i].size) {
1338 msg_gerr("ERROR: Flash chip %s erase function "
1339 "%i region %i has count 0. Please report"
1340 " a bug at flashrom@flashrom.org\n",
1341 flash->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001342 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001343 }
1344 done += eraser.eraseblocks[i].count *
1345 eraser.eraseblocks[i].size;
1346 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001347 /* Empty eraseblock definition with erase function. */
1348 if (!done && eraser.block_erase)
Sean Nelson316a29f2010-05-07 20:09:04 +00001349 msg_gspew("Strange: Empty eraseblock definition with "
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001350 "non-empty erase function. Not an error.\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001351 if (!done)
1352 continue;
1353 if (done != flash->total_size * 1024) {
1354 msg_gerr("ERROR: Flash chip %s erase function %i "
1355 "region walking resulted in 0x%06x bytes total,"
1356 " expected 0x%06x bytes. Please report a bug at"
1357 " flashrom@flashrom.org\n", flash->name, k,
1358 done, flash->total_size * 1024);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001359 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001360 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001361 if (!eraser.block_erase)
1362 continue;
1363 /* Check if there are identical erase functions for different
1364 * layouts. That would imply "magic" erase functions. The
1365 * easiest way to check this is with function pointers.
1366 */
Uwe Hermann43959702010-03-13 17:28:29 +00001367 for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) {
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001368 if (eraser.block_erase ==
1369 flash->block_erasers[j].block_erase) {
1370 msg_gerr("ERROR: Flash chip %s erase function "
1371 "%i and %i are identical. Please report"
1372 " a bug at flashrom@flashrom.org\n",
1373 flash->name, k, j);
1374 ret = 1;
1375 }
Uwe Hermann43959702010-03-13 17:28:29 +00001376 }
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001377 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001378 return ret;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001379}
1380
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001381static int erase_and_write_block_helper(struct flashchip *flash,
1382 unsigned int start, unsigned int len,
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001383 uint8_t *curcontents,
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001384 uint8_t *newcontents,
1385 int (*erasefn) (struct flashchip *flash,
1386 unsigned int addr,
1387 unsigned int len))
1388{
1389 int starthere = 0;
1390 int lenhere = 0;
1391 int ret = 0;
1392 int skip = 1;
1393 int writecount = 0;
1394 enum write_granularity gran = write_gran_256bytes; /* FIXME */
1395
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001396 /* curcontents and newcontents are opaque to walk_eraseregions, and
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001397 * need to be adjusted here to keep the impression of proper abstraction
1398 */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001399 curcontents += start;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001400 newcontents += start;
1401 msg_cdbg(":");
1402 /* FIXME: Assume 256 byte granularity for now to play it safe. */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001403 if (need_erase(curcontents, newcontents, len, gran)) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001404 msg_cdbg("E");
1405 ret = erasefn(flash, start, len);
1406 if (ret)
1407 return ret;
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001408 /* Erase was successful. Adjust curcontents. */
1409 memset(curcontents, 0xff, len);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001410 skip = 0;
1411 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001412 /* get_next_write() sets starthere to a new value after the call. */
1413 while ((lenhere = get_next_write(curcontents + starthere,
1414 newcontents + starthere,
1415 len - starthere, &starthere, gran))) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001416 if (!writecount++)
1417 msg_cdbg("W");
1418 /* Needs the partial write function signature. */
1419 ret = flash->write(flash, newcontents + starthere,
1420 start + starthere, lenhere);
1421 if (ret)
1422 return ret;
1423 starthere += lenhere;
1424 skip = 0;
1425 }
1426 if (skip)
1427 msg_cdbg("S");
1428 return ret;
1429}
1430
Carl-Daniel Hailfinger4d3e9ca2010-07-13 00:42:00 +00001431static int walk_eraseregions(struct flashchip *flash, int erasefunction,
1432 int (*do_something) (struct flashchip *flash,
1433 unsigned int addr,
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001434 unsigned int len,
1435 uint8_t *param1,
1436 uint8_t *param2,
1437 int (*erasefn) (
1438 struct flashchip *flash,
1439 unsigned int addr,
1440 unsigned int len)),
1441 void *param1, void *param2)
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001442{
1443 int i, j;
1444 unsigned int start = 0;
1445 unsigned int len;
1446 struct block_eraser eraser = flash->block_erasers[erasefunction];
1447 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1448 /* count==0 for all automatically initialized array
1449 * members so the loop below won't be executed for them.
1450 */
1451 len = eraser.eraseblocks[i].size;
1452 for (j = 0; j < eraser.eraseblocks[i].count; j++) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001453 /* Print this for every block except the first one. */
1454 if (i || j)
1455 msg_cdbg(", ");
1456 msg_cdbg("0x%06x-0x%06x", start,
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001457 start + len - 1);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001458 if (do_something(flash, start, len, param1, param2,
1459 eraser.block_erase)) {
1460 msg_cdbg("\n");
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001461 return 1;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001462 }
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001463 start += len;
1464 }
1465 }
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001466 msg_cdbg("\n");
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001467 return 0;
1468}
1469
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001470static int check_block_eraser(struct flashchip *flash, int k, int log)
1471{
1472 struct block_eraser eraser = flash->block_erasers[k];
1473
1474 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
1475 if (log)
1476 msg_cdbg("not defined. ");
1477 return 1;
1478 }
1479 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
1480 if (log)
1481 msg_cdbg("eraseblock layout is known, but matching "
1482 "block erase function is not implemented. ");
1483 return 1;
1484 }
1485 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
1486 if (log)
1487 msg_cdbg("block erase function found, but "
1488 "eraseblock layout is not defined. ");
1489 return 1;
1490 }
1491 return 0;
1492}
1493
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001494int erase_and_write_flash(struct flashchip *flash, uint8_t *oldcontents, uint8_t *newcontents)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001495{
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001496 int k, ret = 0;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001497 uint8_t *curcontents;
1498 unsigned long size = flash->total_size * 1024;
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001499 int usable_erasefunctions = 0;
1500
1501 for (k = 0; k < NUM_ERASEFUNCTIONS; k++)
1502 if (!check_block_eraser(flash, k, 0))
1503 usable_erasefunctions++;
1504 msg_cinfo("Erasing and writing flash chip... ");
1505 if (!usable_erasefunctions) {
1506 msg_cerr("ERROR: flashrom has no erase function for this flash "
1507 "chip.\n");
1508 return 1;
1509 }
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001510
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001511 curcontents = (uint8_t *) malloc(size);
1512 /* Copy oldcontents to curcontents to avoid clobbering oldcontents. */
1513 memcpy(curcontents, oldcontents, size);
1514
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001515 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001516 msg_cdbg("Looking at blockwise erase function %i... ", k);
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001517 if (check_block_eraser(flash, k, 1) && usable_erasefunctions) {
1518 msg_cdbg("Looking for another erase function.\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001519 continue;
1520 }
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001521 usable_erasefunctions--;
Sean Nelson316a29f2010-05-07 20:09:04 +00001522 msg_cdbg("trying... ");
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001523 ret = walk_eraseregions(flash, k, &erase_and_write_block_helper, curcontents, newcontents);
Sean Nelson316a29f2010-05-07 20:09:04 +00001524 msg_cdbg("\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001525 /* If everything is OK, don't try another erase function. */
1526 if (!ret)
1527 break;
Carl-Daniel Hailfingerb23b1eb2010-12-02 02:41:55 +00001528 /* Write/erase failed, so try to find out what the current chip
1529 * contents are. If no usable erase functions remain, we could
1530 * abort the loop instead of continuing, the effect is the same.
1531 * The only difference is whether the reason for other unusable
1532 * functions is printed or not. If in doubt, verbosity wins.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001533 */
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001534 if (!usable_erasefunctions)
1535 continue;
Carl-Daniel Hailfingerb23b1eb2010-12-02 02:41:55 +00001536 if (flash->read(flash, curcontents, 0, size)) {
1537 /* Now we are truly screwed. Read failed as well. */
1538 msg_cerr("Can't read anymore!\n");
1539 /* We have no idea about the flash chip contents, so
1540 * retrying with another erase function is pointless.
1541 */
1542 break;
1543 }
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001544 }
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001545 /* Free the scratchpad. */
1546 free(curcontents);
Carl-Daniel Hailfingerf160a122009-05-08 17:15:15 +00001547
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001548 if (ret) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001549 msg_cerr("FAILED!\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001550 } else {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001551 msg_cinfo("Done.\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001552 }
1553 return ret;
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001554}
1555
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001556void nonfatal_help_message(void)
1557{
1558 msg_gerr("Writing to the flash chip apparently didn't do anything.\n"
1559 "This means we have to add special support for your board, "
1560 "programmer or flash chip.\n"
1561 "Please report this on IRC at irc.freenode.net (channel "
1562 "#flashrom) or\n"
1563 "mail flashrom@flashrom.org!\n"
1564 "-------------------------------------------------------------"
1565 "------------------\n"
1566 "You may now reboot or simply leave the machine running.\n");
1567}
1568
Uwe Hermannc67d0372009-10-01 18:40:02 +00001569void emergency_help_message(void)
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001570{
Sean Nelson316a29f2010-05-07 20:09:04 +00001571 msg_gerr("Your flash chip is in an unknown state.\n"
Uwe Hermannc67d0372009-10-01 18:40:02 +00001572 "Get help on IRC at irc.freenode.net (channel #flashrom) or\n"
Paul Menzelab6328f2010-10-08 11:03:02 +00001573 "mail flashrom@flashrom.org with FAILED: your board name in "
1574 "the subject line!\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001575 "-------------------------------------------------------------"
1576 "------------------\n"
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001577 "DO NOT REBOOT OR POWEROFF!\n");
1578}
1579
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001580/* The way to go if you want a delimited list of programmers*/
1581void list_programmers(char *delim)
1582{
1583 enum programmer p;
1584 for (p = 0; p < PROGRAMMER_INVALID; p++) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001585 msg_ginfo("%s", programmer_table[p].name);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001586 if (p < PROGRAMMER_INVALID - 1)
Sean Nelson316a29f2010-05-07 20:09:04 +00001587 msg_ginfo("%s", delim);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001588 }
Sean Nelson316a29f2010-05-07 20:09:04 +00001589 msg_ginfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001590}
1591
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001592void list_programmers_linebreak(int startcol, int cols, int paren)
1593{
1594 const char *pname;
1595 int pnamelen;
1596 int remaining = 0;
1597 int firstline = 1;
1598 enum programmer p;
1599 int i;
1600
1601 for (p = 0; p < PROGRAMMER_INVALID; p++) {
1602 pname = programmer_table[p].name;
1603 pnamelen = strlen(pname);
1604 if (remaining - pnamelen - 2 < 0) {
1605 if (firstline)
1606 firstline = 0;
1607 else
1608 printf("\n");
1609 for (i = 0; i < startcol; i++)
1610 printf(" ");
1611 remaining = cols - startcol;
1612 } else {
1613 printf(" ");
1614 remaining--;
1615 }
1616 if (paren && (p == 0)) {
1617 printf("(");
1618 remaining--;
1619 }
1620 printf("%s", pname);
1621 remaining -= pnamelen;
1622 if (p < PROGRAMMER_INVALID - 1) {
1623 printf(",");
1624 remaining--;
1625 } else {
1626 if (paren)
1627 printf(")");
1628 printf("\n");
1629 }
1630 }
1631}
1632
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001633void print_sysinfo(void)
1634{
1635#if HAVE_UTSNAME == 1
1636 struct utsname osinfo;
1637 uname(&osinfo);
1638
1639 msg_ginfo(" on %s %s (%s)", osinfo.sysname, osinfo.release,
1640 osinfo.machine);
1641#else
1642 msg_ginfo(" on unknown machine");
1643#endif
1644 msg_ginfo(", built with");
1645#if NEED_PCI == 1
1646#ifdef PCILIB_VERSION
1647 msg_ginfo(" libpci %s,", PCILIB_VERSION);
1648#else
1649 msg_ginfo(" unknown PCI library,");
1650#endif
1651#endif
1652#ifdef __clang__
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001653 msg_ginfo(" LLVM Clang");
1654#ifdef __clang_version__
1655 msg_ginfo(" %s,", __clang_version__);
1656#else
1657 msg_ginfo(" unknown version (before r102686),");
1658#endif
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001659#elif defined(__GNUC__)
1660 msg_ginfo(" GCC");
1661#ifdef __VERSION__
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001662 msg_ginfo(" %s,", __VERSION__);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001663#else
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001664 msg_ginfo(" unknown version,");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001665#endif
1666#else
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001667 msg_ginfo(" unknown compiler,");
1668#endif
1669#if defined (__FLASHROM_LITTLE_ENDIAN__)
1670 msg_ginfo(" little endian");
1671#else
1672 msg_ginfo(" big endian");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001673#endif
1674 msg_ginfo("\n");
1675}
1676
Bernhard Walle201bde32008-01-21 15:24:22 +00001677void print_version(void)
1678{
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001679 msg_ginfo("flashrom v%s", flashrom_version);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001680 print_sysinfo();
Bernhard Walle201bde32008-01-21 15:24:22 +00001681}
1682
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001683void print_banner(void)
1684{
1685 msg_ginfo("flashrom is free software, get the source code at "
1686 "http://www.flashrom.org\n");
1687 msg_ginfo("\n");
1688}
1689
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001690int selfcheck(void)
1691{
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001692 int ret = 0;
1693 struct flashchip *flash;
1694
1695 /* Safety check. Instead of aborting after the first error, check
1696 * if more errors exist.
1697 */
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001698 if (ARRAY_SIZE(programmer_table) - 1 != PROGRAMMER_INVALID) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001699 msg_gerr("Programmer table miscompilation!\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001700 ret = 1;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001701 }
1702 if (spi_programmer_count - 1 != SPI_CONTROLLER_INVALID) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001703 msg_gerr("SPI programmer table miscompilation!\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001704 ret = 1;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001705 }
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001706 for (flash = flashchips; flash && flash->name; flash++)
1707 if (selfcheck_eraseblocks(flash))
1708 ret = 1;
1709 return ret;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001710}
1711
1712void check_chip_supported(struct flashchip *flash)
1713{
1714 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001715 msg_cinfo("===\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001716 if (flash->tested & TEST_BAD_MASK) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001717 msg_cinfo("This flash part has status NOT WORKING for operations:");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001718 if (flash->tested & TEST_BAD_PROBE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001719 msg_cinfo(" PROBE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001720 if (flash->tested & TEST_BAD_READ)
Sean Nelson316a29f2010-05-07 20:09:04 +00001721 msg_cinfo(" READ");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001722 if (flash->tested & TEST_BAD_ERASE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001723 msg_cinfo(" ERASE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001724 if (flash->tested & TEST_BAD_WRITE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001725 msg_cinfo(" WRITE");
1726 msg_cinfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001727 }
1728 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
1729 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
1730 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
1731 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001732 msg_cinfo("This flash part has status UNTESTED for operations:");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001733 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001734 msg_cinfo(" PROBE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001735 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
Sean Nelson316a29f2010-05-07 20:09:04 +00001736 msg_cinfo(" READ");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001737 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001738 msg_cinfo(" ERASE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001739 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001740 msg_cinfo(" WRITE");
1741 msg_cinfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001742 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001743 /* FIXME: This message is designed towards CLI users. */
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001744 msg_cinfo("The test status of this chip may have been updated "
1745 "in the latest development\n"
1746 "version of flashrom. If you are running the latest "
1747 "development version,\n"
1748 "please email a report to flashrom@flashrom.org if "
1749 "any of the above operations\n"
1750 "work correctly for you with this flash part. Please "
1751 "include the flashrom\n"
1752 "output with the additional -V option for all "
1753 "operations you tested (-V, -Vr,\n"
1754 "-Vw, -VE), and mention which mainboard or "
1755 "programmer you tested.\n"
Paul Menzelab6328f2010-10-08 11:03:02 +00001756 "Please mention your board in the subject line. "
1757 "Thanks for your help!\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001758 }
1759}
1760
Ollie Lho761bf1b2004-03-20 16:46:10 +00001761int main(int argc, char *argv[])
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001762{
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001763 return cli_classic(argc, argv);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001764}
1765
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001766/* FIXME: This function signature needs to be improved once doit() has a better
1767 * function signature.
1768 */
1769int chip_safety_check(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1770{
1771 if (!programmer_may_write && (write_it || erase_it)) {
1772 msg_perr("Write/erase is not working yet on your programmer in "
1773 "its current configuration.\n");
1774 /* --force is the wrong approach, but it's the best we can do
1775 * until the generic programmer parameter parser is merged.
1776 */
1777 if (!force)
1778 return 1;
1779 msg_cerr("Continuing anyway.\n");
1780 }
1781
1782 if (read_it || erase_it || write_it || verify_it) {
1783 /* Everything needs read. */
1784 if (flash->tested & TEST_BAD_READ) {
1785 msg_cerr("Read is not working on this chip. ");
1786 if (!force)
1787 return 1;
1788 msg_cerr("Continuing anyway.\n");
1789 }
1790 if (!flash->read) {
1791 msg_cerr("flashrom has no read function for this "
1792 "flash chip.\n");
1793 return 1;
1794 }
1795 }
1796 if (erase_it || write_it) {
1797 /* Write needs erase. */
1798 if (flash->tested & TEST_BAD_ERASE) {
1799 msg_cerr("Erase is not working on this chip. ");
1800 if (!force)
1801 return 1;
1802 msg_cerr("Continuing anyway.\n");
1803 }
1804 /* FIXME: Check if at least one erase function exists. */
1805 }
1806 if (write_it) {
1807 if (flash->tested & TEST_BAD_WRITE) {
1808 msg_cerr("Write is not working on this chip. ");
1809 if (!force)
1810 return 1;
1811 msg_cerr("Continuing anyway.\n");
1812 }
1813 if (!flash->write) {
1814 msg_cerr("flashrom has no write function for this "
1815 "flash chip.\n");
1816 return 1;
1817 }
1818 }
1819 return 0;
1820}
1821
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001822/* This function signature is horrible. We need to design a better interface,
1823 * but right now it allows us to split off the CLI code.
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001824 * Besides that, the function itself is a textbook example of abysmal code flow.
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001825 */
1826int doit(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1827{
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001828 uint8_t *oldcontents;
1829 uint8_t *newcontents;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001830 int ret = 0;
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001831 unsigned long size = flash->total_size * 1024;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001832
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001833 if (chip_safety_check(flash, force, filename, read_it, write_it, erase_it, verify_it)) {
1834 msg_cerr("Aborting.\n");
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001835 ret = 1;
1836 goto out_nofree;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001837 }
1838
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001839 /* Given the existence of read locks, we want to unlock for read,
1840 * erase and write.
1841 */
1842 if (flash->unlock)
1843 flash->unlock(flash);
1844
1845 if (read_it) {
1846 ret = read_flash_to_file(flash, filename);
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001847 goto out_nofree;
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +00001848 }
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001849
1850 oldcontents = (uint8_t *) malloc(size);
1851 /* Assume worst case: All bits are 0. */
1852 memset(oldcontents, 0x00, size);
1853 newcontents = (uint8_t *) malloc(size);
1854 /* Assume best case: All bits should be 1. */
1855 memset(newcontents, 0xff, size);
1856 /* Side effect of the assumptions above: Default write action is erase
1857 * because newcontents looks like a completely erased chip, and
1858 * oldcontents being completely 0x00 means we have to erase everything
1859 * before we can write.
1860 */
1861
Ollie Lhoefa28582004-12-08 20:10:01 +00001862 if (erase_it) {
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001863 /* FIXME: Do we really want the scary warning if erase failed?
1864 * After all, after erase the chip is either blank or partially
1865 * blank or it has the old contents. A blank chip won't boot,
1866 * so if the user wanted erase and reboots afterwards, the user
1867 * knows very well that booting won't work.
1868 */
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001869 if (erase_and_write_flash(flash, oldcontents, newcontents)) {
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001870 emergency_help_message();
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001871 ret = 1;
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001872 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001873 goto out;
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001874 }
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001875
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001876 if (write_it || verify_it) {
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001877 if (read_buf_from_file(newcontents, size, filename)) {
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001878 ret = 1;
1879 goto out;
Stefan Reinauer018aca82006-11-21 23:48:51 +00001880 }
1881
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +00001882#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001883 if (programmer == PROGRAMMER_INTERNAL)
1884 show_id(newcontents, size, force);
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001885#endif
Ollie Lhocbbf1252004-03-17 22:22:08 +00001886 }
1887
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001888 /* Read the whole chip to be able to check whether regions need to be
1889 * erased and to give better diagnostics in case write fails.
1890 * The alternative would be to read only the regions which are to be
1891 * preserved, but in that case we might perform unneeded erase which
1892 * takes time as well.
1893 */
1894 msg_cdbg("Reading old flash chip contents...\n");
1895 if (flash->read(flash, oldcontents, 0, size)) {
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001896 ret = 1;
1897 goto out;
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001898 }
1899
Ollie Lho184a4042005-11-26 21:55:36 +00001900 // This should be moved into each flash part's code to do it
1901 // cleanly. This does the job.
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001902 handle_romentries(flash, oldcontents, newcontents);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001903
Ollie Lho184a4042005-11-26 21:55:36 +00001904 // ////////////////////////////////////////////////////////////
Uwe Hermanna7e05482007-05-09 10:17:44 +00001905
Peter Stugef31104c2008-04-28 14:47:30 +00001906 if (write_it) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001907 if (erase_and_write_flash(flash, oldcontents, newcontents)) {
1908 msg_cerr("Uh oh. Erase/write failed. Checking if "
1909 "anything changed.\n");
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001910 if (!flash->read(flash, newcontents, 0, size)) {
1911 if (!memcmp(oldcontents, newcontents, size)) {
1912 msg_cinfo("Good. It seems nothing was "
1913 "changed.\n");
1914 nonfatal_help_message();
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001915 ret = 1;
1916 goto out;
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001917 }
1918 }
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001919 emergency_help_message();
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001920 ret = 1;
1921 goto out;
Peter Stugef31104c2008-04-28 14:47:30 +00001922 }
Peter Stugef31104c2008-04-28 14:47:30 +00001923 }
Ollie Lho184a4042005-11-26 21:55:36 +00001924
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001925 if (verify_it) {
1926 /* Work around chips which need some time to calm down. */
1927 if (write_it)
1928 programmer_delay(1000*1000);
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001929 ret = verify_flash(flash, newcontents);
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001930 /* If we tried to write, and verification now fails, we
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001931 * might have an emergency situation.
1932 */
1933 if (ret && write_it)
1934 emergency_help_message();
1935 }
Ollie Lho184a4042005-11-26 21:55:36 +00001936
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001937out:
1938 free(oldcontents);
1939 free(newcontents);
1940out_nofree:
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001941 programmer_shutdown();
Stefan Reinauer143da0b2006-01-04 16:42:57 +00001942 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001943}