blob: 12a51ad00c09449c487a6297d34611e6a5a79462 [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 Hailfingerb713d2e2011-05-08 00:24:18 +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+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
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +000095#if CONFIG_NICINTEL == 1
96 PROGRAMMER_NICINTEL
97#endif
Idwer Vollering004f4b72010-09-03 18:21:21 +000098#if CONFIG_NICINTEL_SPI == 1
99 PROGRAMMER_NICINTEL_SPI
100#endif
Mark Marshall90021f22010-12-03 14:48:11 +0000101#if CONFIG_OGP_SPI == 1
102 PROGRAMMER_OGP_SPI
103#endif
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000104#if CONFIG_SATAMV == 1
105 PROGRAMMER_SATAMV
106#endif
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +0000107;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000108#endif
109
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000110static char *programmer_param = NULL;
Stefan Reinauer70385642007-04-06 11:58:03 +0000111
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000112/* Supported buses for the current programmer. */
113enum chipbustype buses_supported;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000114
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000115/*
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000116 * Programmers supporting multiple buses can have differing size limits on
117 * each bus. Store the limits for each bus in a common struct.
118 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000119struct decode_sizes max_rom_decode;
120
121/* If nonzero, used as the start address of bottom-aligned flash. */
122unsigned long flashbase;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000123
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +0000124/* Is writing allowed with this programmer? */
125int programmer_may_write;
126
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000127const struct programmer_entry programmer_table[] = {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000128#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000129 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000130 .name = "internal",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000131 .init = internal_init,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000132 .map_flash_region = physmap,
133 .unmap_flash_region = physunmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000134 .chip_readb = internal_chip_readb,
135 .chip_readw = internal_chip_readw,
136 .chip_readl = internal_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000137 .chip_readn = internal_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000138 .chip_writeb = internal_chip_writeb,
139 .chip_writew = internal_chip_writew,
140 .chip_writel = internal_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000141 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000142 .delay = internal_delay,
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000143 },
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000144#endif
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000145
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000146#if CONFIG_DUMMY == 1
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000147 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000148 .name = "dummy",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000149 .init = dummy_init,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000150 .map_flash_region = dummy_map,
151 .unmap_flash_region = dummy_unmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000152 .chip_readb = dummy_chip_readb,
153 .chip_readw = dummy_chip_readw,
154 .chip_readl = dummy_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000155 .chip_readn = dummy_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000156 .chip_writeb = dummy_chip_writeb,
157 .chip_writew = dummy_chip_writew,
158 .chip_writel = dummy_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000159 .chip_writen = dummy_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000160 .delay = internal_delay,
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000161 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000162#endif
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000163
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000164#if CONFIG_NIC3COM == 1
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000165 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000166 .name = "nic3com",
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000167 .init = nic3com_init,
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,
Joerg Fischer5665ef32010-05-21 21:54:07 +0000188 .map_flash_region = fallback_map,
189 .unmap_flash_region = fallback_unmap,
190 .chip_readb = nicrealtek_chip_readb,
191 .chip_readw = fallback_chip_readw,
192 .chip_readl = fallback_chip_readl,
193 .chip_readn = fallback_chip_readn,
194 .chip_writeb = nicrealtek_chip_writeb,
195 .chip_writew = fallback_chip_writew,
196 .chip_writel = fallback_chip_writel,
197 .chip_writen = fallback_chip_writen,
198 .delay = internal_delay,
199 },
Joerg Fischer5665ef32010-05-21 21:54:07 +0000200#endif
201
Andrew Morganc29c2e72010-06-07 22:37:54 +0000202#if CONFIG_NICNATSEMI == 1
203 {
204 .name = "nicnatsemi",
205 .init = nicnatsemi_init,
Andrew Morganc29c2e72010-06-07 22:37:54 +0000206 .map_flash_region = fallback_map,
207 .unmap_flash_region = fallback_unmap,
208 .chip_readb = nicnatsemi_chip_readb,
209 .chip_readw = fallback_chip_readw,
210 .chip_readl = fallback_chip_readl,
211 .chip_readn = fallback_chip_readn,
212 .chip_writeb = nicnatsemi_chip_writeb,
213 .chip_writew = fallback_chip_writew,
214 .chip_writel = fallback_chip_writel,
215 .chip_writen = fallback_chip_writen,
216 .delay = internal_delay,
217 },
218#endif
Joerg Fischer5665ef32010-05-21 21:54:07 +0000219
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000220#if CONFIG_GFXNVIDIA == 1
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000221 {
222 .name = "gfxnvidia",
223 .init = gfxnvidia_init,
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000224 .map_flash_region = fallback_map,
225 .unmap_flash_region = fallback_unmap,
226 .chip_readb = gfxnvidia_chip_readb,
227 .chip_readw = fallback_chip_readw,
228 .chip_readl = fallback_chip_readl,
229 .chip_readn = fallback_chip_readn,
230 .chip_writeb = gfxnvidia_chip_writeb,
231 .chip_writew = fallback_chip_writew,
232 .chip_writel = fallback_chip_writel,
233 .chip_writen = fallback_chip_writen,
234 .delay = internal_delay,
235 },
236#endif
237
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000238#if CONFIG_DRKAISER == 1
Rudolf Marek68720c72009-05-17 19:39:27 +0000239 {
TURBO Jb0912c02009-09-02 23:00:46 +0000240 .name = "drkaiser",
241 .init = drkaiser_init,
TURBO Jb0912c02009-09-02 23:00:46 +0000242 .map_flash_region = fallback_map,
243 .unmap_flash_region = fallback_unmap,
244 .chip_readb = drkaiser_chip_readb,
245 .chip_readw = fallback_chip_readw,
246 .chip_readl = fallback_chip_readl,
247 .chip_readn = fallback_chip_readn,
248 .chip_writeb = drkaiser_chip_writeb,
249 .chip_writew = fallback_chip_writew,
250 .chip_writel = fallback_chip_writel,
251 .chip_writen = fallback_chip_writen,
252 .delay = internal_delay,
253 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000254#endif
TURBO Jb0912c02009-09-02 23:00:46 +0000255
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000256#if CONFIG_SATASII == 1
TURBO Jb0912c02009-09-02 23:00:46 +0000257 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000258 .name = "satasii",
Rudolf Marek68720c72009-05-17 19:39:27 +0000259 .init = satasii_init,
Uwe Hermannc6915932009-05-17 23:12:17 +0000260 .map_flash_region = fallback_map,
261 .unmap_flash_region = fallback_unmap,
Rudolf Marek68720c72009-05-17 19:39:27 +0000262 .chip_readb = satasii_chip_readb,
263 .chip_readw = fallback_chip_readw,
264 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000265 .chip_readn = fallback_chip_readn,
Rudolf Marek68720c72009-05-17 19:39:27 +0000266 .chip_writeb = satasii_chip_writeb,
267 .chip_writew = fallback_chip_writew,
268 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000269 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000270 .delay = internal_delay,
Rudolf Marek68720c72009-05-17 19:39:27 +0000271 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000272#endif
Rudolf Marek68720c72009-05-17 19:39:27 +0000273
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000274#if CONFIG_ATAHPT == 1
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000275 {
276 .name = "atahpt",
277 .init = atahpt_init,
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000278 .map_flash_region = fallback_map,
279 .unmap_flash_region = fallback_unmap,
280 .chip_readb = atahpt_chip_readb,
281 .chip_readw = fallback_chip_readw,
282 .chip_readl = fallback_chip_readl,
283 .chip_readn = fallback_chip_readn,
284 .chip_writeb = atahpt_chip_writeb,
285 .chip_writew = fallback_chip_writew,
286 .chip_writel = fallback_chip_writel,
287 .chip_writen = fallback_chip_writen,
288 .delay = internal_delay,
289 },
290#endif
291
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000292#if CONFIG_FT2232_SPI == 1
Paul Fox05dfbe62009-06-16 21:08:06 +0000293 {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000294 .name = "ft2232_spi",
Paul Fox05dfbe62009-06-16 21:08:06 +0000295 .init = ft2232_spi_init,
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000296 .map_flash_region = fallback_map,
297 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000298 .chip_readb = noop_chip_readb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000299 .chip_readw = fallback_chip_readw,
300 .chip_readl = fallback_chip_readl,
301 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000302 .chip_writeb = noop_chip_writeb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000303 .chip_writew = fallback_chip_writew,
304 .chip_writel = fallback_chip_writel,
305 .chip_writen = fallback_chip_writen,
306 .delay = internal_delay,
307 },
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000308#endif
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000309
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000310#if CONFIG_SERPROG == 1
Urja Rannikko22915352009-06-23 11:33:43 +0000311 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000312 .name = "serprog",
Urja Rannikko22915352009-06-23 11:33:43 +0000313 .init = serprog_init,
Urja Rannikko22915352009-06-23 11:33:43 +0000314 .map_flash_region = fallback_map,
315 .unmap_flash_region = fallback_unmap,
316 .chip_readb = serprog_chip_readb,
317 .chip_readw = fallback_chip_readw,
318 .chip_readl = fallback_chip_readl,
319 .chip_readn = serprog_chip_readn,
320 .chip_writeb = serprog_chip_writeb,
321 .chip_writew = fallback_chip_writew,
322 .chip_writel = fallback_chip_writel,
323 .chip_writen = fallback_chip_writen,
324 .delay = serprog_delay,
325 },
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000326#endif
Paul Fox05dfbe62009-06-16 21:08:06 +0000327
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000328#if CONFIG_BUSPIRATE_SPI == 1
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000329 {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000330 .name = "buspirate_spi",
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000331 .init = buspirate_spi_init,
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000332 .map_flash_region = fallback_map,
333 .unmap_flash_region = fallback_unmap,
334 .chip_readb = noop_chip_readb,
335 .chip_readw = fallback_chip_readw,
336 .chip_readl = fallback_chip_readl,
337 .chip_readn = fallback_chip_readn,
338 .chip_writeb = noop_chip_writeb,
339 .chip_writew = fallback_chip_writew,
340 .chip_writel = fallback_chip_writel,
341 .chip_writen = fallback_chip_writen,
342 .delay = internal_delay,
343 },
344#endif
345
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000346#if CONFIG_DEDIPROG == 1
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000347 {
348 .name = "dediprog",
349 .init = dediprog_init,
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000350 .map_flash_region = fallback_map,
351 .unmap_flash_region = fallback_unmap,
352 .chip_readb = noop_chip_readb,
353 .chip_readw = fallback_chip_readw,
354 .chip_readl = fallback_chip_readl,
355 .chip_readn = fallback_chip_readn,
356 .chip_writeb = noop_chip_writeb,
357 .chip_writew = fallback_chip_writew,
358 .chip_writel = fallback_chip_writel,
359 .chip_writen = fallback_chip_writen,
360 .delay = internal_delay,
361 },
362#endif
363
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000364#if CONFIG_RAYER_SPI == 1
365 {
366 .name = "rayer_spi",
367 .init = rayer_spi_init,
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000368 .map_flash_region = fallback_map,
369 .unmap_flash_region = fallback_unmap,
370 .chip_readb = noop_chip_readb,
371 .chip_readw = fallback_chip_readw,
372 .chip_readl = fallback_chip_readl,
373 .chip_readn = fallback_chip_readn,
374 .chip_writeb = noop_chip_writeb,
375 .chip_writew = fallback_chip_writew,
376 .chip_writel = fallback_chip_writel,
377 .chip_writen = fallback_chip_writen,
378 .delay = internal_delay,
379 },
380#endif
381
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000382#if CONFIG_NICINTEL == 1
383 {
384 .name = "nicintel",
385 .init = nicintel_init,
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000386 .map_flash_region = fallback_map,
387 .unmap_flash_region = fallback_unmap,
388 .chip_readb = nicintel_chip_readb,
389 .chip_readw = fallback_chip_readw,
390 .chip_readl = fallback_chip_readl,
391 .chip_readn = fallback_chip_readn,
392 .chip_writeb = nicintel_chip_writeb,
393 .chip_writew = fallback_chip_writew,
394 .chip_writel = fallback_chip_writel,
395 .chip_writen = fallback_chip_writen,
396 .delay = internal_delay,
397 },
398#endif
399
Idwer Vollering004f4b72010-09-03 18:21:21 +0000400#if CONFIG_NICINTEL_SPI == 1
401 {
402 .name = "nicintel_spi",
403 .init = nicintel_spi_init,
Idwer Vollering004f4b72010-09-03 18:21:21 +0000404 .map_flash_region = fallback_map,
405 .unmap_flash_region = fallback_unmap,
406 .chip_readb = noop_chip_readb,
407 .chip_readw = fallback_chip_readw,
408 .chip_readl = fallback_chip_readl,
409 .chip_readn = fallback_chip_readn,
410 .chip_writeb = noop_chip_writeb,
411 .chip_writew = fallback_chip_writew,
412 .chip_writel = fallback_chip_writel,
413 .chip_writen = fallback_chip_writen,
414 .delay = internal_delay,
415 },
416#endif
417
Mark Marshall90021f22010-12-03 14:48:11 +0000418#if CONFIG_OGP_SPI == 1
419 {
420 .name = "ogp_spi",
421 .init = ogp_spi_init,
Mark Marshall90021f22010-12-03 14:48:11 +0000422 .map_flash_region = fallback_map,
423 .unmap_flash_region = fallback_unmap,
424 .chip_readb = noop_chip_readb,
425 .chip_readw = fallback_chip_readw,
426 .chip_readl = fallback_chip_readl,
427 .chip_readn = fallback_chip_readn,
428 .chip_writeb = noop_chip_writeb,
429 .chip_writew = fallback_chip_writew,
430 .chip_writel = fallback_chip_writel,
431 .chip_writen = fallback_chip_writen,
432 .delay = internal_delay,
433 },
434#endif
435
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000436#if CONFIG_SATAMV == 1
437 {
438 .name = "satamv",
439 .init = satamv_init,
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000440 .map_flash_region = fallback_map,
441 .unmap_flash_region = fallback_unmap,
442 .chip_readb = satamv_chip_readb,
443 .chip_readw = fallback_chip_readw,
444 .chip_readl = fallback_chip_readl,
445 .chip_readn = fallback_chip_readn,
446 .chip_writeb = satamv_chip_writeb,
447 .chip_writew = fallback_chip_writew,
448 .chip_writel = fallback_chip_writel,
449 .chip_writen = fallback_chip_writen,
450 .delay = internal_delay,
451 },
452#endif
453
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000454 {}, /* This entry corresponds to PROGRAMMER_INVALID. */
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000455};
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000456
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000457#define SHUTDOWN_MAXFN 32
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000458static int shutdown_fn_count = 0;
459struct shutdown_func_data {
David Hendricks8bb20212011-06-14 01:35:36 +0000460 int (*func) (void *data);
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000461 void *data;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000462} static shutdown_fn[SHUTDOWN_MAXFN];
463/* Initialize to 0 to make sure nobody registers a shutdown function before
464 * programmer init.
465 */
466static int may_register_shutdown = 0;
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000467
Stefan Tauner5368dca2011-07-01 00:19:12 +0000468static int check_block_eraser(const struct flashchip *flash, int k, int log);
469
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000470/* Register a function to be executed on programmer shutdown.
471 * The advantage over atexit() is that you can supply a void pointer which will
472 * be used as parameter to the registered function upon programmer shutdown.
473 * This pointer can point to arbitrary data used by said function, e.g. undo
474 * information for GPIO settings etc. If unneeded, set data=NULL.
475 * Please note that the first (void *data) belongs to the function signature of
476 * the function passed as first parameter.
477 */
David Hendricks8bb20212011-06-14 01:35:36 +0000478int register_shutdown(int (*function) (void *data), void *data)
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000479{
480 if (shutdown_fn_count >= SHUTDOWN_MAXFN) {
Carl-Daniel Hailfinger9f5f2152010-06-04 23:20:21 +0000481 msg_perr("Tried to register more than %i shutdown functions.\n",
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000482 SHUTDOWN_MAXFN);
483 return 1;
484 }
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000485 if (!may_register_shutdown) {
486 msg_perr("Tried to register a shutdown function before "
487 "programmer init.\n");
488 return 1;
489 }
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000490 shutdown_fn[shutdown_fn_count].func = function;
491 shutdown_fn[shutdown_fn_count].data = data;
492 shutdown_fn_count++;
493
494 return 0;
495}
496
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000497int programmer_init(char *param)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000498{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000499 int ret;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000500 /* Initialize all programmer specific data. */
501 /* Default to unlimited decode sizes. */
502 max_rom_decode = (const struct decode_sizes) {
503 .parallel = 0xffffffff,
504 .lpc = 0xffffffff,
505 .fwh = 0xffffffff,
506 .spi = 0xffffffff
507 };
Michael Karcherb9dbe482011-05-11 17:07:07 +0000508 buses_supported = CHIP_BUSTYPE_NONE;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000509 /* Default to top aligned flash at 4 GB. */
510 flashbase = 0;
511 /* Registering shutdown functions is now allowed. */
512 may_register_shutdown = 1;
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +0000513 /* Default to allowing writes. Broken programmers set this to 0. */
514 programmer_may_write = 1;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000515
516 programmer_param = param;
517 msg_pdbg("Initializing %s programmer\n",
518 programmer_table[programmer].name);
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000519 ret = programmer_table[programmer].init();
520 if (programmer_param && strlen(programmer_param)) {
521 msg_perr("Unhandled programmer parameters: %s\n",
522 programmer_param);
523 /* Do not error out here, the init itself was successful. */
524 }
525 return ret;
Uwe Hermann09e04f72009-05-16 22:36:00 +0000526}
527
528int programmer_shutdown(void)
529{
David Hendricks8bb20212011-06-14 01:35:36 +0000530 int ret = 0;
531
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000532 /* Registering shutdown functions is no longer allowed. */
533 may_register_shutdown = 0;
534 while (shutdown_fn_count > 0) {
535 int i = --shutdown_fn_count;
David Hendricks8bb20212011-06-14 01:35:36 +0000536 ret |= shutdown_fn[i].func(shutdown_fn[i].data);
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000537 }
David Hendricks8bb20212011-06-14 01:35:36 +0000538 return ret;
Uwe Hermann09e04f72009-05-16 22:36:00 +0000539}
540
541void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
542 size_t len)
543{
544 return programmer_table[programmer].map_flash_region(descr,
545 phys_addr, len);
546}
547
548void programmer_unmap_flash_region(void *virt_addr, size_t len)
549{
550 programmer_table[programmer].unmap_flash_region(virt_addr, len);
551}
552
553void chip_writeb(uint8_t val, chipaddr addr)
554{
555 programmer_table[programmer].chip_writeb(val, addr);
556}
557
558void chip_writew(uint16_t val, chipaddr addr)
559{
560 programmer_table[programmer].chip_writew(val, addr);
561}
562
563void chip_writel(uint32_t val, chipaddr addr)
564{
565 programmer_table[programmer].chip_writel(val, addr);
566}
567
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000568void chip_writen(uint8_t *buf, chipaddr addr, size_t len)
569{
570 programmer_table[programmer].chip_writen(buf, addr, len);
571}
572
Uwe Hermann09e04f72009-05-16 22:36:00 +0000573uint8_t chip_readb(const chipaddr addr)
574{
575 return programmer_table[programmer].chip_readb(addr);
576}
577
578uint16_t chip_readw(const chipaddr addr)
579{
580 return programmer_table[programmer].chip_readw(addr);
581}
582
583uint32_t chip_readl(const chipaddr addr)
584{
585 return programmer_table[programmer].chip_readl(addr);
586}
587
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000588void chip_readn(uint8_t *buf, chipaddr addr, size_t len)
589{
590 programmer_table[programmer].chip_readn(buf, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000591}
592
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000593void programmer_delay(int usecs)
594{
595 programmer_table[programmer].delay(usecs);
596}
597
Peter Stuge776d2022009-01-26 00:39:57 +0000598void map_flash_registers(struct flashchip *flash)
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000599{
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000600 size_t size = flash->total_size * 1024;
Carl-Daniel Hailfingerd0fc9462009-05-11 14:01:17 +0000601 /* Flash registers live 4 MByte below the flash. */
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +0000602 /* FIXME: This is incorrect for nonstandard flashbase. */
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000603 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000604}
605
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000606int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000607{
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000608 chip_readn(buf, flash->virtual_memory + start, len);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000609
610 return 0;
611}
612
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000613int min(int a, int b)
614{
615 return (a < b) ? a : b;
616}
617
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000618int max(int a, int b)
619{
620 return (a > b) ? a : b;
621}
622
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000623int bitcount(unsigned long a)
624{
625 int i = 0;
626 for (; a != 0; a >>= 1)
627 if (a & 1)
628 i++;
629 return i;
630}
631
Carl-Daniel Hailfingerc2441382010-11-09 22:00:31 +0000632void tolower_string(char *str)
633{
634 for (; *str != '\0'; str++)
635 *str = (char)tolower((unsigned char)*str);
636}
637
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000638char *strcat_realloc(char *dest, const char *src)
639{
640 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000641 if (!dest) {
642 msg_gerr("Out of memory!\n");
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000643 return NULL;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000644 }
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000645 strcat(dest, src);
646 return dest;
647}
648
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000649/* This is a somewhat hacked function similar in some ways to strtok().
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000650 * It will look for needle with a subsequent '=' in haystack, return a copy of
651 * needle and remove everything from the first occurrence of needle to the next
652 * delimiter from haystack.
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000653 */
Stefan Tauner66652442011-06-26 17:38:17 +0000654char *extract_param(char **haystack, const char *needle, const char *delim)
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000655{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000656 char *param_pos, *opt_pos, *rest;
657 char *opt = NULL;
658 int optlen;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000659 int needlelen;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000660
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000661 needlelen = strlen(needle);
662 if (!needlelen) {
663 msg_gerr("%s: empty needle! Please report a bug at "
664 "flashrom@flashrom.org\n", __func__);
665 return NULL;
666 }
667 /* No programmer parameters given. */
668 if (*haystack == NULL)
669 return NULL;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000670 param_pos = strstr(*haystack, needle);
671 do {
672 if (!param_pos)
673 return NULL;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000674 /* Needle followed by '='? */
675 if (param_pos[needlelen] == '=') {
676
677 /* Beginning of the string? */
678 if (param_pos == *haystack)
679 break;
680 /* After a delimiter? */
681 if (strchr(delim, *(param_pos - 1)))
682 break;
683 }
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000684 /* Continue searching. */
685 param_pos++;
686 param_pos = strstr(param_pos, needle);
687 } while (1);
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000688
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000689 if (param_pos) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000690 /* Get the string after needle and '='. */
691 opt_pos = param_pos + needlelen + 1;
692 optlen = strcspn(opt_pos, delim);
693 /* Return an empty string if the parameter was empty. */
694 opt = malloc(optlen + 1);
695 if (!opt) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000696 msg_gerr("Out of memory!\n");
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000697 exit(1);
698 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000699 strncpy(opt, opt_pos, optlen);
700 opt[optlen] = '\0';
701 rest = opt_pos + optlen;
702 /* Skip all delimiters after the current parameter. */
703 rest += strspn(rest, delim);
704 memmove(param_pos, rest, strlen(rest) + 1);
705 /* We could shrink haystack, but the effort is not worth it. */
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000706 }
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000707
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000708 return opt;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000709}
710
Stefan Tauner66652442011-06-26 17:38:17 +0000711char *extract_programmer_param(const char *param_name)
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000712{
713 return extract_param(&programmer_param, param_name, ",");
714}
715
Stefan Tauner5368dca2011-07-01 00:19:12 +0000716/* Returns the number of well-defined erasers for a chip.
717 * The log parameter controls output. */
718static unsigned int count_usable_erasers(const struct flashchip *flash, int log)
719{
720 unsigned int usable_erasefunctions = 0;
721 int k;
722 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
723 if (!check_block_eraser(flash, k, 0))
724 usable_erasefunctions++;
725 }
726 return usable_erasefunctions;
727}
728
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000729/* start is an offset to the base address of the flash chip */
730int check_erased_range(struct flashchip *flash, int start, int len)
731{
732 int ret;
733 uint8_t *cmpbuf = malloc(len);
734
735 if (!cmpbuf) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000736 msg_gerr("Could not allocate memory!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000737 exit(1);
738 }
739 memset(cmpbuf, 0xff, len);
740 ret = verify_range(flash, cmpbuf, start, len, "ERASE");
741 free(cmpbuf);
742 return ret;
743}
744
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000745/*
Carl-Daniel Hailfingerd0250a32009-11-25 17:05:52 +0000746 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
747 flash content at location start
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000748 * @start offset to the base address of the flash chip
749 * @len length of the verified area
750 * @message string to print in the "FAILED" message
751 * @return 0 for success, -1 for failure
752 */
Stefan Tauner66652442011-06-26 17:38:17 +0000753int verify_range(struct flashchip *flash, uint8_t *cmpbuf, int start, int len, const char *message)
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000754{
Carl-Daniel Hailfingerd8369412010-11-16 17:21:58 +0000755 int i, ret = 0;
756 uint8_t *readbuf = malloc(len);
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000757 int failcount = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000758
759 if (!len)
760 goto out_free;
761
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000762 if (!flash->read) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000763 msg_cerr("ERROR: flashrom has no read function for this flash chip.\n");
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000764 return 1;
765 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000766 if (!readbuf) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000767 msg_gerr("Could not allocate memory!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000768 exit(1);
769 }
770
771 if (start + len > flash->total_size * 1024) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000772 msg_gerr("Error: %s called with start 0x%x + len 0x%x >"
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000773 " total_size 0x%x\n", __func__, start, len,
774 flash->total_size * 1024);
775 ret = -1;
776 goto out_free;
777 }
778 if (!message)
779 message = "VERIFY";
780
Carl-Daniel Hailfingerd8369412010-11-16 17:21:58 +0000781 ret = flash->read(flash, readbuf, start, len);
782 if (ret) {
783 msg_gerr("Verification impossible because read failed "
784 "at 0x%x (len 0x%x)\n", start, len);
785 return ret;
786 }
787
788 for (i = 0; i < len; i++) {
789 if (cmpbuf[i] != readbuf[i]) {
790 /* Only print the first failure. */
791 if (!failcount++)
792 msg_cerr("%s FAILED at 0x%08x! "
793 "Expected=0x%02x, Read=0x%02x,",
794 message, start + i, cmpbuf[i],
795 readbuf[i]);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000796 }
797 }
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000798 if (failcount) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000799 msg_cerr(" failed byte count from 0x%08x-0x%08x: 0x%x\n",
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000800 start, start + len - 1, failcount);
801 ret = -1;
802 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000803
804out_free:
805 free(readbuf);
806 return ret;
807}
808
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000809/*
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000810 * Check if the buffer @have can be programmed to the content of @want without
811 * erasing. This is only possible if all chunks of size @gran are either kept
812 * as-is or changed from an all-ones state to any other state.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000813 *
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000814 * The following write granularities (enum @gran) are known:
815 * - 1 bit. Each bit can be cleared individually.
816 * - 1 byte. A byte can be written once. Further writes to an already written
817 * byte cause the contents to be either undefined or to stay unchanged.
818 * - 128 bytes. If less than 128 bytes are written, the rest will be
819 * erased. Each write to a 128-byte region will trigger an automatic erase
820 * before anything is written. Very uncommon behaviour and unsupported by
821 * this function.
822 * - 256 bytes. If less than 256 bytes are written, the contents of the
823 * unwritten bytes are undefined.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000824 * Warning: This function assumes that @have and @want point to naturally
825 * aligned regions.
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000826 *
827 * @have buffer with current content
828 * @want buffer with desired content
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000829 * @len length of the checked area
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000830 * @gran write granularity (enum, not count)
831 * @return 0 if no erase is needed, 1 otherwise
832 */
833int need_erase(uint8_t *have, uint8_t *want, int len, enum write_granularity gran)
834{
835 int result = 0;
836 int i, j, limit;
837
838 switch (gran) {
839 case write_gran_1bit:
840 for (i = 0; i < len; i++)
841 if ((have[i] & want[i]) != want[i]) {
842 result = 1;
843 break;
844 }
845 break;
846 case write_gran_1byte:
847 for (i = 0; i < len; i++)
848 if ((have[i] != want[i]) && (have[i] != 0xff)) {
849 result = 1;
850 break;
851 }
852 break;
853 case write_gran_256bytes:
854 for (j = 0; j < len / 256; j++) {
855 limit = min (256, len - j * 256);
Uwe Hermann43959702010-03-13 17:28:29 +0000856 /* Are 'have' and 'want' identical? */
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000857 if (!memcmp(have + j * 256, want + j * 256, limit))
858 continue;
859 /* have needs to be in erased state. */
860 for (i = 0; i < limit; i++)
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000861 if (have[j * 256 + i] != 0xff) {
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000862 result = 1;
863 break;
864 }
865 if (result)
866 break;
867 }
868 break;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000869 default:
870 msg_cerr("%s: Unsupported granularity! Please report a bug at "
871 "flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000872 }
873 return result;
874}
875
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000876/**
877 * Check if the buffer @have needs to be programmed to get the content of @want.
878 * If yes, return 1 and fill in first_start with the start address of the
879 * write operation and first_len with the length of the first to-be-written
880 * chunk. If not, return 0 and leave first_start and first_len undefined.
881 *
882 * Warning: This function assumes that @have and @want point to naturally
883 * aligned regions.
884 *
885 * @have buffer with current content
886 * @want buffer with desired content
887 * @len length of the checked area
888 * @gran write granularity (enum, not count)
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000889 * @first_start offset of the first byte which needs to be written (passed in
890 * value is increased by the offset of the first needed write
891 * relative to have/want or unchanged if no write is needed)
892 * @return length of the first contiguous area which needs to be written
893 * 0 if no write is needed
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000894 *
895 * FIXME: This function needs a parameter which tells it about coalescing
896 * in relation to the max write length of the programmer and the max write
897 * length of the chip.
898 */
899static int get_next_write(uint8_t *have, uint8_t *want, int len,
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000900 int *first_start, enum write_granularity gran)
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000901{
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000902 int need_write = 0, rel_start = 0, first_len = 0;
903 int i, limit, stride;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000904
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000905 switch (gran) {
906 case write_gran_1bit:
907 case write_gran_1byte:
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000908 stride = 1;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000909 break;
910 case write_gran_256bytes:
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000911 stride = 256;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000912 break;
913 default:
914 msg_cerr("%s: Unsupported granularity! Please report a bug at "
915 "flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000916 /* Claim that no write was needed. A write with unknown
917 * granularity is too dangerous to try.
918 */
919 return 0;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000920 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000921 for (i = 0; i < len / stride; i++) {
922 limit = min(stride, len - i * stride);
923 /* Are 'have' and 'want' identical? */
924 if (memcmp(have + i * stride, want + i * stride, limit)) {
925 if (!need_write) {
926 /* First location where have and want differ. */
927 need_write = 1;
928 rel_start = i * stride;
929 }
930 } else {
931 if (need_write) {
932 /* First location where have and want
933 * do not differ anymore.
934 */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000935 break;
936 }
937 }
938 }
Carl-Daniel Hailfinger202bf532010-12-06 13:05:44 +0000939 if (need_write)
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000940 first_len = min(i * stride - rel_start, len);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000941 *first_start += rel_start;
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000942 return first_len;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000943}
944
Carl-Daniel Hailfingereaac68b2009-11-23 12:55:31 +0000945/* This function generates various test patterns useful for testing controller
946 * and chip communication as well as chip behaviour.
947 *
948 * If a byte can be written multiple times, each time keeping 0-bits at 0
949 * and changing 1-bits to 0 if the new value for that bit is 0, the effect
950 * is essentially an AND operation. That's also the reason why this function
951 * provides the result of AND between various patterns.
952 *
953 * Below is a list of patterns (and their block length).
954 * Pattern 0 is 05 15 25 35 45 55 65 75 85 95 a5 b5 c5 d5 e5 f5 (16 Bytes)
955 * Pattern 1 is 0a 1a 2a 3a 4a 5a 6a 7a 8a 9a aa ba ca da ea fa (16 Bytes)
956 * Pattern 2 is 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f (16 Bytes)
957 * Pattern 3 is a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af (16 Bytes)
958 * Pattern 4 is 00 10 20 30 40 50 60 70 80 90 a0 b0 c0 d0 e0 f0 (16 Bytes)
959 * Pattern 5 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f (16 Bytes)
960 * Pattern 6 is 00 (1 Byte)
961 * Pattern 7 is ff (1 Byte)
962 * Patterns 0-7 have a big-endian block number in the last 2 bytes of each 256
963 * byte block.
964 *
965 * Pattern 8 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11... (256 B)
966 * Pattern 9 is ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ef ee... (256 B)
967 * Pattern 10 is 00 00 00 01 00 02 00 03 00 04... (128 kB big-endian counter)
968 * Pattern 11 is ff ff ff fe ff fd ff fc ff fb... (128 kB big-endian downwards)
969 * Pattern 12 is 00 (1 Byte)
970 * Pattern 13 is ff (1 Byte)
971 * Patterns 8-13 have no block number.
972 *
973 * Patterns 0-3 are created to detect and efficiently diagnose communication
974 * slips like missed bits or bytes and their repetitive nature gives good visual
975 * cues to the person inspecting the results. In addition, the following holds:
976 * AND Pattern 0/1 == Pattern 4
977 * AND Pattern 2/3 == Pattern 5
978 * AND Pattern 0/1/2/3 == AND Pattern 4/5 == Pattern 6
979 * A weakness of pattern 0-5 is the inability to detect swaps/copies between
980 * any two 16-byte blocks except for the last 16-byte block in a 256-byte bloc.
981 * They work perfectly for detecting any swaps/aliasing of blocks >= 256 bytes.
982 * 0x5 and 0xa were picked because they are 0101 and 1010 binary.
983 * Patterns 8-9 are best for detecting swaps/aliasing of blocks < 256 bytes.
984 * Besides that, they provide for bit testing of the last two bytes of every
985 * 256 byte block which contains the block number for patterns 0-6.
986 * Patterns 10-11 are special purpose for detecting subblock aliasing with
987 * block sizes >256 bytes (some Dataflash chips etc.)
988 * AND Pattern 8/9 == Pattern 12
989 * AND Pattern 10/11 == Pattern 12
990 * Pattern 13 is the completely erased state.
991 * None of the patterns can detect aliasing at boundaries which are a multiple
992 * of 16 MBytes (but such chips do not exist anyway for Parallel/LPC/FWH/SPI).
993 */
994int generate_testpattern(uint8_t *buf, uint32_t size, int variant)
995{
996 int i;
997
998 if (!buf) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000999 msg_gerr("Invalid buffer!\n");
Carl-Daniel Hailfingereaac68b2009-11-23 12:55:31 +00001000 return 1;
1001 }
1002
1003 switch (variant) {
1004 case 0:
1005 for (i = 0; i < size; i++)
1006 buf[i] = (i & 0xf) << 4 | 0x5;
1007 break;
1008 case 1:
1009 for (i = 0; i < size; i++)
1010 buf[i] = (i & 0xf) << 4 | 0xa;
1011 break;
1012 case 2:
1013 for (i = 0; i < size; i++)
1014 buf[i] = 0x50 | (i & 0xf);
1015 break;
1016 case 3:
1017 for (i = 0; i < size; i++)
1018 buf[i] = 0xa0 | (i & 0xf);
1019 break;
1020 case 4:
1021 for (i = 0; i < size; i++)
1022 buf[i] = (i & 0xf) << 4;
1023 break;
1024 case 5:
1025 for (i = 0; i < size; i++)
1026 buf[i] = i & 0xf;
1027 break;
1028 case 6:
1029 memset(buf, 0x00, size);
1030 break;
1031 case 7:
1032 memset(buf, 0xff, size);
1033 break;
1034 case 8:
1035 for (i = 0; i < size; i++)
1036 buf[i] = i & 0xff;
1037 break;
1038 case 9:
1039 for (i = 0; i < size; i++)
1040 buf[i] = ~(i & 0xff);
1041 break;
1042 case 10:
1043 for (i = 0; i < size % 2; i++) {
1044 buf[i * 2] = (i >> 8) & 0xff;
1045 buf[i * 2 + 1] = i & 0xff;
1046 }
1047 if (size & 0x1)
1048 buf[i * 2] = (i >> 8) & 0xff;
1049 break;
1050 case 11:
1051 for (i = 0; i < size % 2; i++) {
1052 buf[i * 2] = ~((i >> 8) & 0xff);
1053 buf[i * 2 + 1] = ~(i & 0xff);
1054 }
1055 if (size & 0x1)
1056 buf[i * 2] = ~((i >> 8) & 0xff);
1057 break;
1058 case 12:
1059 memset(buf, 0x00, size);
1060 break;
1061 case 13:
1062 memset(buf, 0xff, size);
1063 break;
1064 }
1065
1066 if ((variant >= 0) && (variant <= 7)) {
1067 /* Write block number in the last two bytes of each 256-byte
1068 * block, big endian for easier reading of the hexdump.
1069 * Note that this wraps around for chips larger than 2^24 bytes
1070 * (16 MB).
1071 */
1072 for (i = 0; i < size / 256; i++) {
1073 buf[i * 256 + 254] = (i >> 8) & 0xff;
1074 buf[i * 256 + 255] = i & 0xff;
1075 }
1076 }
1077
1078 return 0;
1079}
1080
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001081int check_max_decode(enum chipbustype buses, uint32_t size)
1082{
1083 int limitexceeded = 0;
1084 if ((buses & CHIP_BUSTYPE_PARALLEL) &&
1085 (max_rom_decode.parallel < size)) {
1086 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001087 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001088 "size %u kB of chipset/board/programmer "
1089 "for %s interface, "
1090 "probe/read/erase/write may fail. ", size / 1024,
1091 max_rom_decode.parallel / 1024, "Parallel");
1092 }
1093 if ((buses & CHIP_BUSTYPE_LPC) && (max_rom_decode.lpc < size)) {
1094 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001095 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001096 "size %u kB of chipset/board/programmer "
1097 "for %s interface, "
1098 "probe/read/erase/write may fail. ", size / 1024,
1099 max_rom_decode.lpc / 1024, "LPC");
1100 }
1101 if ((buses & CHIP_BUSTYPE_FWH) && (max_rom_decode.fwh < size)) {
1102 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001103 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001104 "size %u kB of chipset/board/programmer "
1105 "for %s interface, "
1106 "probe/read/erase/write may fail. ", size / 1024,
1107 max_rom_decode.fwh / 1024, "FWH");
1108 }
1109 if ((buses & CHIP_BUSTYPE_SPI) && (max_rom_decode.spi < size)) {
1110 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001111 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001112 "size %u kB of chipset/board/programmer "
1113 "for %s interface, "
1114 "probe/read/erase/write may fail. ", size / 1024,
1115 max_rom_decode.spi / 1024, "SPI");
1116 }
1117 if (!limitexceeded)
1118 return 0;
1119 /* Sometimes chip and programmer have more than one bus in common,
1120 * and the limit is not exceeded on all buses. Tell the user.
1121 */
1122 if (bitcount(buses) > limitexceeded)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001123 /* FIXME: This message is designed towards CLI users. */
Sean Nelson316a29f2010-05-07 20:09:04 +00001124 msg_pdbg("There is at least one common chip/programmer "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001125 "interface which can support a chip of this size. "
1126 "You can try --force at your own risk.\n");
1127 return 1;
1128}
1129
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001130int probe_flash(int startchip, struct flashchip *fill_flash, int force)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001131{
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001132 const struct flashchip *flash;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001133 unsigned long base = 0;
Stefan Reinauer051e2362011-01-19 06:21:54 +00001134 char location[64];
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001135 uint32_t size;
1136 enum chipbustype buses_common;
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001137 char *tmp;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001138
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001139 for (flash = flashchips + startchip; flash && flash->name; flash++) {
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001140 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001141 continue;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001142 buses_common = buses_supported & flash->bustype;
1143 if (!buses_common) {
Carl-Daniel Hailfinger6573b742011-06-17 22:38:53 +00001144 msg_gspew("Probing for %s %s, %d kB: skipped. ",
1145 flash->vendor, flash->name, flash->total_size);
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001146 tmp = flashbuses_to_text(buses_supported);
Carl-Daniel Hailfinger6573b742011-06-17 22:38:53 +00001147 msg_gspew("Host bus type %s ", tmp);
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001148 free(tmp);
1149 tmp = flashbuses_to_text(flash->bustype);
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001150 msg_gspew("and chip bus type %s are incompatible.",
1151 tmp);
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001152 free(tmp);
Carl-Daniel Hailfinger6573b742011-06-17 22:38:53 +00001153 msg_gspew("\n");
1154 continue;
1155 }
1156 msg_gdbg("Probing for %s %s, %d kB: ",
1157 flash->vendor, flash->name, flash->total_size);
1158 if (!flash->probe && !force) {
1159 msg_gdbg("failed! flashrom has no probe function for "
1160 "this flash chip.\n");
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001161 continue;
1162 }
Stefan Reinauer70385642007-04-06 11:58:03 +00001163
Ollie Lhocbbf1252004-03-17 22:22:08 +00001164 size = flash->total_size * 1024;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001165 check_max_decode(buses_common, size);
Stefan Reinauer70385642007-04-06 11:58:03 +00001166
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001167 /* Start filling in the dynamic data. */
1168 *fill_flash = *flash;
1169
Carl-Daniel Hailfinger97d6b092009-05-09 07:27:23 +00001170 base = flashbase ? flashbase : (0xffffffff - size + 1);
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001171 fill_flash->virtual_memory = (chipaddr)programmer_map_flash_region("flash chip", base, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001172
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001173 if (force)
1174 break;
Stefan Reinauerfcb63682006-03-16 16:57:41 +00001175
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001176 if (fill_flash->probe(fill_flash) != 1)
Peter Stuge483b8f02008-09-03 23:10:05 +00001177 goto notfound;
1178
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001179 /* If this is the first chip found, accept it.
1180 * If this is not the first chip found, accept it only if it is
1181 * a non-generic match.
1182 * We could either make chipcount global or provide it as
1183 * parameter, or we assume that startchip==0 means this call to
1184 * probe_flash() is the first one and thus no chip has been
1185 * found before.
1186 */
1187 if (startchip == 0 || fill_flash->model_id != GENERIC_DEVICE_ID)
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001188 break;
1189
Peter Stuge483b8f02008-09-03 23:10:05 +00001190notfound:
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001191 programmer_unmap_flash_region((void *)fill_flash->virtual_memory, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001192 }
Uwe Hermannffec5f32007-08-23 16:08:21 +00001193
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001194 if (!flash || !flash->name)
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001195 return -1;
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001196
Carl-Daniel Hailfingerd9535582011-03-08 00:09:11 +00001197#if CONFIG_INTERNAL == 1
1198 if (programmer_table[programmer].map_flash_region == physmap)
Stefan Reinauer051e2362011-01-19 06:21:54 +00001199 snprintf(location, sizeof(location), "at physical address 0x%lx", base);
Carl-Daniel Hailfingerd9535582011-03-08 00:09:11 +00001200 else
1201#endif
Stefan Reinauer051e2362011-01-19 06:21:54 +00001202 snprintf(location, sizeof(location), "on %s", programmer_table[programmer].name);
Stefan Reinauer051e2362011-01-19 06:21:54 +00001203
Stefan Tauner00155492011-06-26 20:45:35 +00001204 tmp = flashbuses_to_text(flash->bustype);
Stefan Taunerc0aaf952011-05-19 02:58:17 +00001205 msg_cinfo("%s chip \"%s %s\" (%d kB, %s) %s.\n",
Stefan Tauner00155492011-06-26 20:45:35 +00001206 force ? "Assuming" : "Found", fill_flash->vendor,
1207 fill_flash->name, fill_flash->total_size, tmp, location);
1208 free(tmp);
Uwe Hermann9899cad2009-06-28 21:47:57 +00001209
Carl-Daniel Hailfinger859f3f02010-12-02 21:59:42 +00001210 /* Flash registers will not be mapped if the chip was forced. Lock info
1211 * may be stored in registers, so avoid lock info printing.
1212 */
1213 if (!force)
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001214 if (fill_flash->printlock)
1215 fill_flash->printlock(fill_flash);
Sean Nelson6e0b9122010-02-19 00:52:10 +00001216
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001217 /* Return position of matching chip. */
1218 return flash - flashchips;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001219}
1220
Stefan Reinauere3705282005-12-18 16:41:10 +00001221int verify_flash(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001222{
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001223 int ret;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001224 int total_size = flash->total_size * 1024;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001225
Sean Nelson316a29f2010-05-07 20:09:04 +00001226 msg_cinfo("Verifying flash... ");
Uwe Hermanna7e05482007-05-09 10:17:44 +00001227
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001228 ret = verify_range(flash, buf, 0, total_size, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001229
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001230 if (!ret)
Sean Nelson316a29f2010-05-07 20:09:04 +00001231 msg_cinfo("VERIFIED. \n");
Stefan Reinauerfcb63682006-03-16 16:57:41 +00001232
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001233 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001234}
1235
Stefan Tauner66652442011-06-26 17:38:17 +00001236int read_buf_from_file(unsigned char *buf, unsigned long size, const char *filename)
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001237{
1238 unsigned long numbytes;
1239 FILE *image;
1240 struct stat image_stat;
1241
1242 if ((image = fopen(filename, "rb")) == NULL) {
1243 perror(filename);
1244 return 1;
1245 }
1246 if (fstat(fileno(image), &image_stat) != 0) {
1247 perror(filename);
1248 fclose(image);
1249 return 1;
1250 }
1251 if (image_stat.st_size != size) {
1252 msg_gerr("Error: Image size doesn't match\n");
1253 fclose(image);
1254 return 1;
1255 }
1256 numbytes = fread(buf, 1, size, image);
1257 if (fclose(image)) {
1258 perror(filename);
1259 return 1;
1260 }
1261 if (numbytes != size) {
1262 msg_gerr("Error: Failed to read complete file. Got %ld bytes, "
1263 "wanted %ld!\n", numbytes, size);
1264 return 1;
1265 }
1266 return 0;
1267}
1268
Stefan Tauner66652442011-06-26 17:38:17 +00001269int write_buf_to_file(unsigned char *buf, unsigned long size, const char *filename)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001270{
1271 unsigned long numbytes;
1272 FILE *image;
Stephan Guilloux21dd55b2009-06-01 22:07:52 +00001273
1274 if (!filename) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001275 msg_gerr("No filename specified.\n");
Stephan Guilloux21dd55b2009-06-01 22:07:52 +00001276 return 1;
1277 }
Patrick Georgi0bf842d2010-01-25 22:55:33 +00001278 if ((image = fopen(filename, "wb")) == NULL) {
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001279 perror(filename);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001280 return 1;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001281 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001282
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001283 numbytes = fwrite(buf, 1, size, image);
1284 fclose(image);
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001285 if (numbytes != size) {
1286 msg_gerr("File %s could not be written completely.\n",
1287 filename);
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001288 return 1;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001289 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001290 return 0;
1291}
1292
Stefan Tauner66652442011-06-26 17:38:17 +00001293int read_flash_to_file(struct flashchip *flash, const char *filename)
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001294{
1295 unsigned long size = flash->total_size * 1024;
1296 unsigned char *buf = calloc(size, sizeof(char));
1297 int ret = 0;
1298
1299 msg_cinfo("Reading flash... ");
1300 if (!buf) {
1301 msg_gerr("Memory allocation failed!\n");
1302 msg_cinfo("FAILED.\n");
1303 return 1;
1304 }
1305 if (!flash->read) {
1306 msg_cerr("No read function available for this flash chip.\n");
1307 ret = 1;
1308 goto out_free;
1309 }
1310 if (flash->read(flash, buf, 0, size)) {
1311 msg_cerr("Read operation failed!\n");
1312 ret = 1;
1313 goto out_free;
1314 }
1315
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001316 ret = write_buf_to_file(buf, size, filename);
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001317out_free:
1318 free(buf);
1319 msg_cinfo("%s.\n", ret ? "FAILED" : "done");
1320 return ret;
1321}
1322
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001323/* This function shares a lot of its structure with erase_and_write_flash() and
1324 * walk_eraseregions().
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001325 * Even if an error is found, the function will keep going and check the rest.
1326 */
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001327static int selfcheck_eraseblocks(const struct flashchip *flash)
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001328{
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001329 int i, j, k;
1330 int ret = 0;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001331
1332 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
1333 unsigned int done = 0;
1334 struct block_eraser eraser = flash->block_erasers[k];
1335
1336 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1337 /* Blocks with zero size are bugs in flashchips.c. */
1338 if (eraser.eraseblocks[i].count &&
1339 !eraser.eraseblocks[i].size) {
1340 msg_gerr("ERROR: Flash chip %s erase function "
1341 "%i region %i has size 0. Please report"
1342 " a bug at flashrom@flashrom.org\n",
1343 flash->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001344 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001345 }
1346 /* Blocks with zero count are bugs in flashchips.c. */
1347 if (!eraser.eraseblocks[i].count &&
1348 eraser.eraseblocks[i].size) {
1349 msg_gerr("ERROR: Flash chip %s erase function "
1350 "%i region %i has count 0. Please report"
1351 " a bug at flashrom@flashrom.org\n",
1352 flash->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001353 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001354 }
1355 done += eraser.eraseblocks[i].count *
1356 eraser.eraseblocks[i].size;
1357 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001358 /* Empty eraseblock definition with erase function. */
1359 if (!done && eraser.block_erase)
Sean Nelson316a29f2010-05-07 20:09:04 +00001360 msg_gspew("Strange: Empty eraseblock definition with "
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001361 "non-empty erase function. Not an error.\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001362 if (!done)
1363 continue;
1364 if (done != flash->total_size * 1024) {
1365 msg_gerr("ERROR: Flash chip %s erase function %i "
1366 "region walking resulted in 0x%06x bytes total,"
1367 " expected 0x%06x bytes. Please report a bug at"
1368 " flashrom@flashrom.org\n", flash->name, k,
1369 done, flash->total_size * 1024);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001370 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001371 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001372 if (!eraser.block_erase)
1373 continue;
1374 /* Check if there are identical erase functions for different
1375 * layouts. That would imply "magic" erase functions. The
1376 * easiest way to check this is with function pointers.
1377 */
Uwe Hermann43959702010-03-13 17:28:29 +00001378 for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) {
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001379 if (eraser.block_erase ==
1380 flash->block_erasers[j].block_erase) {
1381 msg_gerr("ERROR: Flash chip %s erase function "
1382 "%i and %i are identical. Please report"
1383 " a bug at flashrom@flashrom.org\n",
1384 flash->name, k, j);
1385 ret = 1;
1386 }
Uwe Hermann43959702010-03-13 17:28:29 +00001387 }
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001388 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001389 return ret;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001390}
1391
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001392static int erase_and_write_block_helper(struct flashchip *flash,
1393 unsigned int start, unsigned int len,
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001394 uint8_t *curcontents,
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001395 uint8_t *newcontents,
1396 int (*erasefn) (struct flashchip *flash,
1397 unsigned int addr,
1398 unsigned int len))
1399{
1400 int starthere = 0;
1401 int lenhere = 0;
1402 int ret = 0;
1403 int skip = 1;
1404 int writecount = 0;
1405 enum write_granularity gran = write_gran_256bytes; /* FIXME */
1406
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001407 /* curcontents and newcontents are opaque to walk_eraseregions, and
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001408 * need to be adjusted here to keep the impression of proper abstraction
1409 */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001410 curcontents += start;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001411 newcontents += start;
1412 msg_cdbg(":");
1413 /* FIXME: Assume 256 byte granularity for now to play it safe. */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001414 if (need_erase(curcontents, newcontents, len, gran)) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001415 msg_cdbg("E");
1416 ret = erasefn(flash, start, len);
1417 if (ret)
1418 return ret;
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +00001419 if (check_erased_range(flash, start, len)) {
1420 msg_cerr("ERASE FAILED!\n");
1421 return -1;
1422 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001423 /* Erase was successful. Adjust curcontents. */
1424 memset(curcontents, 0xff, len);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001425 skip = 0;
1426 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001427 /* get_next_write() sets starthere to a new value after the call. */
1428 while ((lenhere = get_next_write(curcontents + starthere,
1429 newcontents + starthere,
1430 len - starthere, &starthere, gran))) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001431 if (!writecount++)
1432 msg_cdbg("W");
1433 /* Needs the partial write function signature. */
1434 ret = flash->write(flash, newcontents + starthere,
1435 start + starthere, lenhere);
1436 if (ret)
1437 return ret;
1438 starthere += lenhere;
1439 skip = 0;
1440 }
1441 if (skip)
1442 msg_cdbg("S");
1443 return ret;
1444}
1445
Carl-Daniel Hailfinger4d3e9ca2010-07-13 00:42:00 +00001446static int walk_eraseregions(struct flashchip *flash, int erasefunction,
1447 int (*do_something) (struct flashchip *flash,
1448 unsigned int addr,
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001449 unsigned int len,
1450 uint8_t *param1,
1451 uint8_t *param2,
1452 int (*erasefn) (
1453 struct flashchip *flash,
1454 unsigned int addr,
1455 unsigned int len)),
1456 void *param1, void *param2)
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001457{
1458 int i, j;
1459 unsigned int start = 0;
1460 unsigned int len;
1461 struct block_eraser eraser = flash->block_erasers[erasefunction];
1462 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1463 /* count==0 for all automatically initialized array
1464 * members so the loop below won't be executed for them.
1465 */
1466 len = eraser.eraseblocks[i].size;
1467 for (j = 0; j < eraser.eraseblocks[i].count; j++) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001468 /* Print this for every block except the first one. */
1469 if (i || j)
1470 msg_cdbg(", ");
1471 msg_cdbg("0x%06x-0x%06x", start,
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001472 start + len - 1);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001473 if (do_something(flash, start, len, param1, param2,
1474 eraser.block_erase)) {
1475 msg_cdbg("\n");
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001476 return 1;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001477 }
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001478 start += len;
1479 }
1480 }
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001481 msg_cdbg("\n");
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001482 return 0;
1483}
1484
Stefan Tauner5368dca2011-07-01 00:19:12 +00001485static int check_block_eraser(const struct flashchip *flash, int k, int log)
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001486{
1487 struct block_eraser eraser = flash->block_erasers[k];
1488
1489 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
1490 if (log)
1491 msg_cdbg("not defined. ");
1492 return 1;
1493 }
1494 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
1495 if (log)
1496 msg_cdbg("eraseblock layout is known, but matching "
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001497 "block erase function is not implemented. ");
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001498 return 1;
1499 }
1500 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
1501 if (log)
1502 msg_cdbg("block erase function found, but "
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001503 "eraseblock layout is not defined. ");
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001504 return 1;
1505 }
1506 return 0;
1507}
1508
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001509int erase_and_write_flash(struct flashchip *flash, uint8_t *oldcontents, uint8_t *newcontents)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001510{
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001511 int k, ret = 0;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001512 uint8_t *curcontents;
1513 unsigned long size = flash->total_size * 1024;
Stefan Tauner5368dca2011-07-01 00:19:12 +00001514 unsigned int usable_erasefunctions = count_usable_erasers(flash, 0);
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001515
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001516 msg_cinfo("Erasing and writing flash chip... ");
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001517 curcontents = (uint8_t *) malloc(size);
1518 /* Copy oldcontents to curcontents to avoid clobbering oldcontents. */
1519 memcpy(curcontents, oldcontents, size);
1520
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001521 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001522 msg_cdbg("Looking at blockwise erase function %i... ", k);
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001523 if (check_block_eraser(flash, k, 1) && usable_erasefunctions) {
1524 msg_cdbg("Looking for another erase function.\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001525 continue;
1526 }
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001527 usable_erasefunctions--;
Sean Nelson316a29f2010-05-07 20:09:04 +00001528 msg_cdbg("trying... ");
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001529 ret = walk_eraseregions(flash, k, &erase_and_write_block_helper, curcontents, newcontents);
Sean Nelson316a29f2010-05-07 20:09:04 +00001530 msg_cdbg("\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001531 /* If everything is OK, don't try another erase function. */
1532 if (!ret)
1533 break;
Carl-Daniel Hailfingerb23b1eb2010-12-02 02:41:55 +00001534 /* Write/erase failed, so try to find out what the current chip
1535 * contents are. If no usable erase functions remain, we could
1536 * abort the loop instead of continuing, the effect is the same.
1537 * The only difference is whether the reason for other unusable
1538 * functions is printed or not. If in doubt, verbosity wins.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001539 */
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001540 if (!usable_erasefunctions)
1541 continue;
Carl-Daniel Hailfingerb23b1eb2010-12-02 02:41:55 +00001542 if (flash->read(flash, curcontents, 0, size)) {
1543 /* Now we are truly screwed. Read failed as well. */
1544 msg_cerr("Can't read anymore!\n");
1545 /* We have no idea about the flash chip contents, so
1546 * retrying with another erase function is pointless.
1547 */
1548 break;
1549 }
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001550 }
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001551 /* Free the scratchpad. */
1552 free(curcontents);
Carl-Daniel Hailfingerf160a122009-05-08 17:15:15 +00001553
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001554 if (ret) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001555 msg_cerr("FAILED!\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001556 } else {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001557 msg_cinfo("Done.\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001558 }
1559 return ret;
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001560}
1561
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001562void nonfatal_help_message(void)
1563{
1564 msg_gerr("Writing to the flash chip apparently didn't do anything.\n"
1565 "This means we have to add special support for your board, "
1566 "programmer or flash chip.\n"
1567 "Please report this on IRC at irc.freenode.net (channel "
1568 "#flashrom) or\n"
1569 "mail flashrom@flashrom.org!\n"
1570 "-------------------------------------------------------------"
1571 "------------------\n"
1572 "You may now reboot or simply leave the machine running.\n");
1573}
1574
Uwe Hermannc67d0372009-10-01 18:40:02 +00001575void emergency_help_message(void)
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001576{
Sean Nelson316a29f2010-05-07 20:09:04 +00001577 msg_gerr("Your flash chip is in an unknown state.\n"
Uwe Hermannc67d0372009-10-01 18:40:02 +00001578 "Get help on IRC at irc.freenode.net (channel #flashrom) or\n"
Paul Menzelab6328f2010-10-08 11:03:02 +00001579 "mail flashrom@flashrom.org with FAILED: your board name in "
1580 "the subject line!\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001581 "-------------------------------------------------------------"
1582 "------------------\n"
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001583 "DO NOT REBOOT OR POWEROFF!\n");
1584}
1585
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001586/* The way to go if you want a delimited list of programmers*/
Stefan Tauner66652442011-06-26 17:38:17 +00001587void list_programmers(const char *delim)
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001588{
1589 enum programmer p;
1590 for (p = 0; p < PROGRAMMER_INVALID; p++) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001591 msg_ginfo("%s", programmer_table[p].name);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001592 if (p < PROGRAMMER_INVALID - 1)
Sean Nelson316a29f2010-05-07 20:09:04 +00001593 msg_ginfo("%s", delim);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001594 }
Sean Nelson316a29f2010-05-07 20:09:04 +00001595 msg_ginfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001596}
1597
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001598void list_programmers_linebreak(int startcol, int cols, int paren)
1599{
1600 const char *pname;
1601 int pnamelen;
1602 int remaining = 0;
1603 int firstline = 1;
1604 enum programmer p;
1605 int i;
1606
1607 for (p = 0; p < PROGRAMMER_INVALID; p++) {
1608 pname = programmer_table[p].name;
1609 pnamelen = strlen(pname);
1610 if (remaining - pnamelen - 2 < 0) {
1611 if (firstline)
1612 firstline = 0;
1613 else
1614 printf("\n");
1615 for (i = 0; i < startcol; i++)
1616 printf(" ");
1617 remaining = cols - startcol;
1618 } else {
1619 printf(" ");
1620 remaining--;
1621 }
1622 if (paren && (p == 0)) {
1623 printf("(");
1624 remaining--;
1625 }
1626 printf("%s", pname);
1627 remaining -= pnamelen;
1628 if (p < PROGRAMMER_INVALID - 1) {
1629 printf(",");
1630 remaining--;
1631 } else {
1632 if (paren)
1633 printf(")");
1634 printf("\n");
1635 }
1636 }
1637}
1638
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001639void print_sysinfo(void)
1640{
1641#if HAVE_UTSNAME == 1
1642 struct utsname osinfo;
1643 uname(&osinfo);
1644
1645 msg_ginfo(" on %s %s (%s)", osinfo.sysname, osinfo.release,
1646 osinfo.machine);
1647#else
1648 msg_ginfo(" on unknown machine");
1649#endif
1650 msg_ginfo(", built with");
1651#if NEED_PCI == 1
1652#ifdef PCILIB_VERSION
1653 msg_ginfo(" libpci %s,", PCILIB_VERSION);
1654#else
1655 msg_ginfo(" unknown PCI library,");
1656#endif
1657#endif
1658#ifdef __clang__
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001659 msg_ginfo(" LLVM Clang");
1660#ifdef __clang_version__
1661 msg_ginfo(" %s,", __clang_version__);
1662#else
1663 msg_ginfo(" unknown version (before r102686),");
1664#endif
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001665#elif defined(__GNUC__)
1666 msg_ginfo(" GCC");
1667#ifdef __VERSION__
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001668 msg_ginfo(" %s,", __VERSION__);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001669#else
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001670 msg_ginfo(" unknown version,");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001671#endif
1672#else
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001673 msg_ginfo(" unknown compiler,");
1674#endif
1675#if defined (__FLASHROM_LITTLE_ENDIAN__)
1676 msg_ginfo(" little endian");
1677#else
1678 msg_ginfo(" big endian");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001679#endif
1680 msg_ginfo("\n");
1681}
1682
Bernhard Walle201bde32008-01-21 15:24:22 +00001683void print_version(void)
1684{
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001685 msg_ginfo("flashrom v%s", flashrom_version);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001686 print_sysinfo();
Bernhard Walle201bde32008-01-21 15:24:22 +00001687}
1688
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001689void print_banner(void)
1690{
1691 msg_ginfo("flashrom is free software, get the source code at "
1692 "http://www.flashrom.org\n");
1693 msg_ginfo("\n");
1694}
1695
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001696int selfcheck(void)
1697{
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001698 int ret = 0;
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001699 const struct flashchip *flash;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001700
1701 /* Safety check. Instead of aborting after the first error, check
1702 * if more errors exist.
1703 */
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001704 if (ARRAY_SIZE(programmer_table) - 1 != PROGRAMMER_INVALID) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001705 msg_gerr("Programmer table miscompilation!\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001706 ret = 1;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001707 }
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001708 /* It would be favorable if we could also check for correct terminaion
1709 * of the follwing arrays, but we don't know their size in here...
1710 * For 'flashchips' we check the first element to be non-null. In the
1711 * other cases there exist use cases where the first element can be
1712 * null. */
1713 if (flashchips == NULL || flashchips[0].vendor == NULL) {
1714 msg_gerr("Flashchips table miscompilation!\n");
1715 ret = 1;
1716 }
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001717 for (flash = flashchips; flash && flash->name; flash++)
1718 if (selfcheck_eraseblocks(flash))
1719 ret = 1;
Stefan Tauner7bcacb12011-05-26 01:35:19 +00001720
1721#if CONFIG_INTERNAL == 1
1722 if (chipset_enables == NULL) {
1723 msg_gerr("Chipset enables table does not exist!\n");
1724 ret = 1;
1725 }
1726 if (board_pciid_enables == NULL) {
1727 msg_gerr("Board enables table does not exist!\n");
1728 ret = 1;
1729 }
1730 if (boards_known == NULL) {
1731 msg_gerr("Known boards table does not exist!\n");
1732 ret = 1;
1733 }
1734 if (laptops_known == NULL) {
1735 msg_gerr("Known laptops table does not exist!\n");
1736 ret = 1;
1737 }
1738#endif // CONFIG_INTERNAL == 1
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001739 return ret;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001740}
1741
Carl-Daniel Hailfinger4c823182011-05-04 00:39:50 +00001742void check_chip_supported(const struct flashchip *flash)
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001743{
1744 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001745 msg_cinfo("===\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001746 if (flash->tested & TEST_BAD_MASK) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001747 msg_cinfo("This flash part has status NOT WORKING for operations:");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001748 if (flash->tested & TEST_BAD_PROBE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001749 msg_cinfo(" PROBE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001750 if (flash->tested & TEST_BAD_READ)
Sean Nelson316a29f2010-05-07 20:09:04 +00001751 msg_cinfo(" READ");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001752 if (flash->tested & TEST_BAD_ERASE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001753 msg_cinfo(" ERASE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001754 if (flash->tested & TEST_BAD_WRITE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001755 msg_cinfo(" WRITE");
1756 msg_cinfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001757 }
1758 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
1759 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
1760 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
1761 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001762 msg_cinfo("This flash part has status UNTESTED for operations:");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001763 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001764 msg_cinfo(" PROBE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001765 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
Sean Nelson316a29f2010-05-07 20:09:04 +00001766 msg_cinfo(" READ");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001767 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001768 msg_cinfo(" ERASE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001769 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001770 msg_cinfo(" WRITE");
1771 msg_cinfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001772 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001773 /* FIXME: This message is designed towards CLI users. */
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001774 msg_cinfo("The test status of this chip may have been updated "
1775 "in the latest development\n"
1776 "version of flashrom. If you are running the latest "
1777 "development version,\n"
1778 "please email a report to flashrom@flashrom.org if "
1779 "any of the above operations\n"
1780 "work correctly for you with this flash part. Please "
1781 "include the flashrom\n"
1782 "output with the additional -V option for all "
1783 "operations you tested (-V, -Vr,\n"
1784 "-Vw, -VE), and mention which mainboard or "
1785 "programmer you tested.\n"
Paul Menzelab6328f2010-10-08 11:03:02 +00001786 "Please mention your board in the subject line. "
1787 "Thanks for your help!\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001788 }
1789}
1790
Ollie Lho761bf1b2004-03-20 16:46:10 +00001791int main(int argc, char *argv[])
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001792{
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001793 return cli_classic(argc, argv);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001794}
1795
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001796/* FIXME: This function signature needs to be improved once doit() has a better
1797 * function signature.
1798 */
David Hendricks77f931a2011-05-18 01:30:56 +00001799int chip_safety_check(struct flashchip *flash, int force, int read_it, int write_it, int erase_it, int verify_it)
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001800{
1801 if (!programmer_may_write && (write_it || erase_it)) {
1802 msg_perr("Write/erase is not working yet on your programmer in "
1803 "its current configuration.\n");
1804 /* --force is the wrong approach, but it's the best we can do
1805 * until the generic programmer parameter parser is merged.
1806 */
1807 if (!force)
1808 return 1;
1809 msg_cerr("Continuing anyway.\n");
1810 }
1811
1812 if (read_it || erase_it || write_it || verify_it) {
1813 /* Everything needs read. */
1814 if (flash->tested & TEST_BAD_READ) {
1815 msg_cerr("Read is not working on this chip. ");
1816 if (!force)
1817 return 1;
1818 msg_cerr("Continuing anyway.\n");
1819 }
1820 if (!flash->read) {
1821 msg_cerr("flashrom has no read function for this "
1822 "flash chip.\n");
1823 return 1;
1824 }
1825 }
1826 if (erase_it || write_it) {
1827 /* Write needs erase. */
1828 if (flash->tested & TEST_BAD_ERASE) {
1829 msg_cerr("Erase is not working on this chip. ");
1830 if (!force)
1831 return 1;
1832 msg_cerr("Continuing anyway.\n");
1833 }
Stefan Tauner5368dca2011-07-01 00:19:12 +00001834 if(count_usable_erasers(flash, 0) == 0) {
1835 msg_cerr("flashrom has no erase function for this "
1836 "flash chip.\n");
1837 return 1;
1838 }
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001839 }
1840 if (write_it) {
1841 if (flash->tested & TEST_BAD_WRITE) {
1842 msg_cerr("Write is not working on this chip. ");
1843 if (!force)
1844 return 1;
1845 msg_cerr("Continuing anyway.\n");
1846 }
1847 if (!flash->write) {
1848 msg_cerr("flashrom has no write function for this "
1849 "flash chip.\n");
1850 return 1;
1851 }
1852 }
1853 return 0;
1854}
1855
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001856/* This function signature is horrible. We need to design a better interface,
1857 * but right now it allows us to split off the CLI code.
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001858 * Besides that, the function itself is a textbook example of abysmal code flow.
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001859 */
Stefan Tauner66652442011-06-26 17:38:17 +00001860int doit(struct flashchip *flash, int force, const char *filename, int read_it, int write_it, int erase_it, int verify_it)
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001861{
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001862 uint8_t *oldcontents;
1863 uint8_t *newcontents;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001864 int ret = 0;
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001865 unsigned long size = flash->total_size * 1024;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001866
David Hendricks77f931a2011-05-18 01:30:56 +00001867 if (chip_safety_check(flash, force, read_it, write_it, erase_it, verify_it)) {
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001868 msg_cerr("Aborting.\n");
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001869 ret = 1;
1870 goto out_nofree;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001871 }
1872
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001873 /* Given the existence of read locks, we want to unlock for read,
1874 * erase and write.
1875 */
1876 if (flash->unlock)
1877 flash->unlock(flash);
1878
1879 if (read_it) {
1880 ret = read_flash_to_file(flash, filename);
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001881 goto out_nofree;
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +00001882 }
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001883
1884 oldcontents = (uint8_t *) malloc(size);
1885 /* Assume worst case: All bits are 0. */
1886 memset(oldcontents, 0x00, size);
1887 newcontents = (uint8_t *) malloc(size);
1888 /* Assume best case: All bits should be 1. */
1889 memset(newcontents, 0xff, size);
1890 /* Side effect of the assumptions above: Default write action is erase
1891 * because newcontents looks like a completely erased chip, and
1892 * oldcontents being completely 0x00 means we have to erase everything
1893 * before we can write.
1894 */
1895
Ollie Lhoefa28582004-12-08 20:10:01 +00001896 if (erase_it) {
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001897 /* FIXME: Do we really want the scary warning if erase failed?
1898 * After all, after erase the chip is either blank or partially
1899 * blank or it has the old contents. A blank chip won't boot,
1900 * so if the user wanted erase and reboots afterwards, the user
1901 * knows very well that booting won't work.
1902 */
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001903 if (erase_and_write_flash(flash, oldcontents, newcontents)) {
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001904 emergency_help_message();
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001905 ret = 1;
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001906 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001907 goto out;
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001908 }
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001909
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001910 if (write_it || verify_it) {
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001911 if (read_buf_from_file(newcontents, size, filename)) {
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001912 ret = 1;
1913 goto out;
Stefan Reinauer018aca82006-11-21 23:48:51 +00001914 }
1915
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +00001916#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001917 if (programmer == PROGRAMMER_INTERNAL)
1918 show_id(newcontents, size, force);
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001919#endif
Ollie Lhocbbf1252004-03-17 22:22:08 +00001920 }
1921
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001922 /* Read the whole chip to be able to check whether regions need to be
1923 * erased and to give better diagnostics in case write fails.
1924 * The alternative would be to read only the regions which are to be
1925 * preserved, but in that case we might perform unneeded erase which
1926 * takes time as well.
1927 */
Stefan Taunerd5b22282011-06-26 17:47:40 +00001928 msg_cdbg("Reading old flash chip contents... ");
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001929 if (flash->read(flash, oldcontents, 0, size)) {
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001930 ret = 1;
Stefan Taunerd5b22282011-06-26 17:47:40 +00001931 msg_cdbg("FAILED.\n");
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001932 goto out;
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001933 }
Stefan Taunerd5b22282011-06-26 17:47:40 +00001934 msg_cdbg("done.\n");
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001935
Ollie Lho184a4042005-11-26 21:55:36 +00001936 // This should be moved into each flash part's code to do it
1937 // cleanly. This does the job.
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001938 handle_romentries(flash, oldcontents, newcontents);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001939
Ollie Lho184a4042005-11-26 21:55:36 +00001940 // ////////////////////////////////////////////////////////////
Uwe Hermanna7e05482007-05-09 10:17:44 +00001941
Peter Stugef31104c2008-04-28 14:47:30 +00001942 if (write_it) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001943 if (erase_and_write_flash(flash, oldcontents, newcontents)) {
1944 msg_cerr("Uh oh. Erase/write failed. Checking if "
1945 "anything changed.\n");
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001946 if (!flash->read(flash, newcontents, 0, size)) {
1947 if (!memcmp(oldcontents, newcontents, size)) {
1948 msg_cinfo("Good. It seems nothing was "
1949 "changed.\n");
1950 nonfatal_help_message();
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001951 ret = 1;
1952 goto out;
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001953 }
1954 }
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001955 emergency_help_message();
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001956 ret = 1;
1957 goto out;
Peter Stugef31104c2008-04-28 14:47:30 +00001958 }
Peter Stugef31104c2008-04-28 14:47:30 +00001959 }
Ollie Lho184a4042005-11-26 21:55:36 +00001960
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001961 if (verify_it) {
1962 /* Work around chips which need some time to calm down. */
1963 if (write_it)
1964 programmer_delay(1000*1000);
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001965 ret = verify_flash(flash, newcontents);
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001966 /* If we tried to write, and verification now fails, we
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001967 * might have an emergency situation.
1968 */
1969 if (ret && write_it)
1970 emergency_help_message();
1971 }
Ollie Lho184a4042005-11-26 21:55:36 +00001972
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001973out:
1974 free(oldcontents);
1975 free(newcontents);
1976out_nofree:
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001977 programmer_shutdown();
Stefan Reinauer143da0b2006-01-04 16:42:57 +00001978 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001979}