blob: f3497d0f4eb8c1fc9117651925187befec083cae [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
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000041const char * const 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 */
Mark Marshall90021f22010-12-03 14:48:11 +000055#if CONFIG_NIC3COM+CONFIG_NICREALTEK+CONFIG_NICNATSEMI+CONFIG_GFXNVIDIA+CONFIG_DRKAISER+CONFIG_SATASII+CONFIG_ATAHPT+CONFIG_FT2232_SPI+CONFIG_SERPROG+CONFIG_BUSPIRATE_SPI+CONFIG_DEDIPROG+CONFIG_RAYER_SPI+CONFIG_NICINTEL_SPI+CONFIG_OGP_SPI > 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
64 PROGRAMMER_NICREALTEK2
65#endif
Andrew Morganc29c2e72010-06-07 22:37:54 +000066#if CONFIG_NICNATSEMI == 1
67 PROGRAMMER_NICNATSEMI
68#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000069#if CONFIG_GFXNVIDIA == 1
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000070 PROGRAMMER_GFXNVIDIA
71#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000072#if CONFIG_DRKAISER == 1
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000073 PROGRAMMER_DRKAISER
74#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000075#if CONFIG_SATASII == 1
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000076 PROGRAMMER_SATASII
77#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000078#if CONFIG_ATAHPT == 1
Uwe Hermannddd5c9e2010-02-21 21:17:00 +000079 PROGRAMMER_ATAHPT
80#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000081#if CONFIG_FT2232_SPI == 1
82 PROGRAMMER_FT2232_SPI
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000083#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000084#if CONFIG_SERPROG == 1
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000085 PROGRAMMER_SERPROG
86#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000087#if CONFIG_BUSPIRATE_SPI == 1
88 PROGRAMMER_BUSPIRATE_SPI
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000089#endif
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000090#if CONFIG_DEDIPROG == 1
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +000091 PROGRAMMER_DEDIPROG
92#endif
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +000093#if CONFIG_RAYER_SPI == 1
94 PROGRAMMER_RAYER_SPI
95#endif
Idwer Vollering004f4b72010-09-03 18:21:21 +000096#if CONFIG_NICINTEL_SPI == 1
97 PROGRAMMER_NICINTEL_SPI
98#endif
Mark Marshall90021f22010-12-03 14:48:11 +000099#if CONFIG_OGP_SPI == 1
100 PROGRAMMER_OGP_SPI
101#endif
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +0000102;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000103#endif
104
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000105static char *programmer_param = NULL;
Stefan Reinauer70385642007-04-06 11:58:03 +0000106
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000107/* Supported buses for the current programmer. */
108enum chipbustype buses_supported;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000109
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000110/*
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000111 * Programmers supporting multiple buses can have differing size limits on
112 * each bus. Store the limits for each bus in a common struct.
113 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000114struct decode_sizes max_rom_decode;
115
116/* If nonzero, used as the start address of bottom-aligned flash. */
117unsigned long flashbase;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000118
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +0000119/* Is writing allowed with this programmer? */
120int programmer_may_write;
121
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000122const struct programmer_entry programmer_table[] = {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000123#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000124 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000125 .name = "internal",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000126 .init = internal_init,
127 .shutdown = internal_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000128 .map_flash_region = physmap,
129 .unmap_flash_region = physunmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000130 .chip_readb = internal_chip_readb,
131 .chip_readw = internal_chip_readw,
132 .chip_readl = internal_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000133 .chip_readn = internal_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000134 .chip_writeb = internal_chip_writeb,
135 .chip_writew = internal_chip_writew,
136 .chip_writel = internal_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000137 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000138 .delay = internal_delay,
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000139 },
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000140#endif
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000141
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000142#if CONFIG_DUMMY == 1
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000143 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000144 .name = "dummy",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000145 .init = dummy_init,
146 .shutdown = dummy_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000147 .map_flash_region = dummy_map,
148 .unmap_flash_region = dummy_unmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000149 .chip_readb = dummy_chip_readb,
150 .chip_readw = dummy_chip_readw,
151 .chip_readl = dummy_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000152 .chip_readn = dummy_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000153 .chip_writeb = dummy_chip_writeb,
154 .chip_writew = dummy_chip_writew,
155 .chip_writel = dummy_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000156 .chip_writen = dummy_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000157 .delay = internal_delay,
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000158 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000159#endif
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000160
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000161#if CONFIG_NIC3COM == 1
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000162 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000163 .name = "nic3com",
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000164 .init = nic3com_init,
165 .shutdown = nic3com_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +0000166 .map_flash_region = fallback_map,
167 .unmap_flash_region = fallback_unmap,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000168 .chip_readb = nic3com_chip_readb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +0000169 .chip_readw = fallback_chip_readw,
170 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000171 .chip_readn = fallback_chip_readn,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000172 .chip_writeb = nic3com_chip_writeb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +0000173 .chip_writew = fallback_chip_writew,
174 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000175 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000176 .delay = internal_delay,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000177 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000178#endif
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000179
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000180#if CONFIG_NICREALTEK == 1
Joerg Fischer5665ef32010-05-21 21:54:07 +0000181 {
182 .name = "nicrealtek",
183 .init = nicrealtek_init,
184 .shutdown = nicrealtek_shutdown,
185 .map_flash_region = fallback_map,
186 .unmap_flash_region = fallback_unmap,
187 .chip_readb = nicrealtek_chip_readb,
188 .chip_readw = fallback_chip_readw,
189 .chip_readl = fallback_chip_readl,
190 .chip_readn = fallback_chip_readn,
191 .chip_writeb = nicrealtek_chip_writeb,
192 .chip_writew = fallback_chip_writew,
193 .chip_writel = fallback_chip_writel,
194 .chip_writen = fallback_chip_writen,
195 .delay = internal_delay,
196 },
197 {
198 .name = "nicsmc1211",
199 .init = nicsmc1211_init,
200 .shutdown = nicrealtek_shutdown,
201 .map_flash_region = fallback_map,
202 .unmap_flash_region = fallback_unmap,
203 .chip_readb = nicrealtek_chip_readb,
204 .chip_readw = fallback_chip_readw,
205 .chip_readl = fallback_chip_readl,
206 .chip_readn = fallback_chip_readn,
207 .chip_writeb = nicrealtek_chip_writeb,
208 .chip_writew = fallback_chip_writew,
209 .chip_writel = fallback_chip_writel,
210 .chip_writen = fallback_chip_writen,
211 .delay = internal_delay,
212 },
213#endif
214
Andrew Morganc29c2e72010-06-07 22:37:54 +0000215#if CONFIG_NICNATSEMI == 1
216 {
217 .name = "nicnatsemi",
218 .init = nicnatsemi_init,
219 .shutdown = nicnatsemi_shutdown,
220 .map_flash_region = fallback_map,
221 .unmap_flash_region = fallback_unmap,
222 .chip_readb = nicnatsemi_chip_readb,
223 .chip_readw = fallback_chip_readw,
224 .chip_readl = fallback_chip_readl,
225 .chip_readn = fallback_chip_readn,
226 .chip_writeb = nicnatsemi_chip_writeb,
227 .chip_writew = fallback_chip_writew,
228 .chip_writel = fallback_chip_writel,
229 .chip_writen = fallback_chip_writen,
230 .delay = internal_delay,
231 },
232#endif
Joerg Fischer5665ef32010-05-21 21:54:07 +0000233
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000234#if CONFIG_GFXNVIDIA == 1
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000235 {
236 .name = "gfxnvidia",
237 .init = gfxnvidia_init,
238 .shutdown = gfxnvidia_shutdown,
239 .map_flash_region = fallback_map,
240 .unmap_flash_region = fallback_unmap,
241 .chip_readb = gfxnvidia_chip_readb,
242 .chip_readw = fallback_chip_readw,
243 .chip_readl = fallback_chip_readl,
244 .chip_readn = fallback_chip_readn,
245 .chip_writeb = gfxnvidia_chip_writeb,
246 .chip_writew = fallback_chip_writew,
247 .chip_writel = fallback_chip_writel,
248 .chip_writen = fallback_chip_writen,
249 .delay = internal_delay,
250 },
251#endif
252
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000253#if CONFIG_DRKAISER == 1
Rudolf Marek68720c72009-05-17 19:39:27 +0000254 {
TURBO Jb0912c02009-09-02 23:00:46 +0000255 .name = "drkaiser",
256 .init = drkaiser_init,
257 .shutdown = drkaiser_shutdown,
258 .map_flash_region = fallback_map,
259 .unmap_flash_region = fallback_unmap,
260 .chip_readb = drkaiser_chip_readb,
261 .chip_readw = fallback_chip_readw,
262 .chip_readl = fallback_chip_readl,
263 .chip_readn = fallback_chip_readn,
264 .chip_writeb = drkaiser_chip_writeb,
265 .chip_writew = fallback_chip_writew,
266 .chip_writel = fallback_chip_writel,
267 .chip_writen = fallback_chip_writen,
268 .delay = internal_delay,
269 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000270#endif
TURBO Jb0912c02009-09-02 23:00:46 +0000271
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000272#if CONFIG_SATASII == 1
TURBO Jb0912c02009-09-02 23:00:46 +0000273 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000274 .name = "satasii",
Rudolf Marek68720c72009-05-17 19:39:27 +0000275 .init = satasii_init,
276 .shutdown = satasii_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +0000277 .map_flash_region = fallback_map,
278 .unmap_flash_region = fallback_unmap,
Rudolf Marek68720c72009-05-17 19:39:27 +0000279 .chip_readb = satasii_chip_readb,
280 .chip_readw = fallback_chip_readw,
281 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000282 .chip_readn = fallback_chip_readn,
Rudolf Marek68720c72009-05-17 19:39:27 +0000283 .chip_writeb = satasii_chip_writeb,
284 .chip_writew = fallback_chip_writew,
285 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000286 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000287 .delay = internal_delay,
Rudolf Marek68720c72009-05-17 19:39:27 +0000288 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000289#endif
Rudolf Marek68720c72009-05-17 19:39:27 +0000290
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000291#if CONFIG_ATAHPT == 1
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000292 {
293 .name = "atahpt",
294 .init = atahpt_init,
295 .shutdown = atahpt_shutdown,
296 .map_flash_region = fallback_map,
297 .unmap_flash_region = fallback_unmap,
298 .chip_readb = atahpt_chip_readb,
299 .chip_readw = fallback_chip_readw,
300 .chip_readl = fallback_chip_readl,
301 .chip_readn = fallback_chip_readn,
302 .chip_writeb = atahpt_chip_writeb,
303 .chip_writew = fallback_chip_writew,
304 .chip_writel = fallback_chip_writel,
305 .chip_writen = fallback_chip_writen,
306 .delay = internal_delay,
307 },
308#endif
309
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000310#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000311#if defined(__i386__) || defined(__x86_64__)
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000312 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000313 .name = "it87spi",
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000314 .init = it87spi_init,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000315 .shutdown = noop_shutdown,
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000316 .map_flash_region = fallback_map,
317 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000318 .chip_readb = noop_chip_readb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000319 .chip_readw = fallback_chip_readw,
320 .chip_readl = fallback_chip_readl,
321 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000322 .chip_writeb = noop_chip_writeb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000323 .chip_writew = fallback_chip_writew,
324 .chip_writel = fallback_chip_writel,
325 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000326 .delay = internal_delay,
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000327 },
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000328#endif
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000329#endif
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000330
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000331#if CONFIG_FT2232_SPI == 1
Paul Fox05dfbe62009-06-16 21:08:06 +0000332 {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000333 .name = "ft2232_spi",
Paul Fox05dfbe62009-06-16 21:08:06 +0000334 .init = ft2232_spi_init,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000335 .shutdown = noop_shutdown, /* Missing shutdown */
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000336 .map_flash_region = fallback_map,
337 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000338 .chip_readb = noop_chip_readb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000339 .chip_readw = fallback_chip_readw,
340 .chip_readl = fallback_chip_readl,
341 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000342 .chip_writeb = noop_chip_writeb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000343 .chip_writew = fallback_chip_writew,
344 .chip_writel = fallback_chip_writel,
345 .chip_writen = fallback_chip_writen,
346 .delay = internal_delay,
347 },
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000348#endif
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000349
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000350#if CONFIG_SERPROG == 1
Urja Rannikko22915352009-06-23 11:33:43 +0000351 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000352 .name = "serprog",
Urja Rannikko22915352009-06-23 11:33:43 +0000353 .init = serprog_init,
354 .shutdown = serprog_shutdown,
355 .map_flash_region = fallback_map,
356 .unmap_flash_region = fallback_unmap,
357 .chip_readb = serprog_chip_readb,
358 .chip_readw = fallback_chip_readw,
359 .chip_readl = fallback_chip_readl,
360 .chip_readn = serprog_chip_readn,
361 .chip_writeb = serprog_chip_writeb,
362 .chip_writew = fallback_chip_writew,
363 .chip_writel = fallback_chip_writel,
364 .chip_writen = fallback_chip_writen,
365 .delay = serprog_delay,
366 },
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000367#endif
Paul Fox05dfbe62009-06-16 21:08:06 +0000368
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000369#if CONFIG_BUSPIRATE_SPI == 1
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000370 {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000371 .name = "buspirate_spi",
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000372 .init = buspirate_spi_init,
373 .shutdown = buspirate_spi_shutdown,
374 .map_flash_region = fallback_map,
375 .unmap_flash_region = fallback_unmap,
376 .chip_readb = noop_chip_readb,
377 .chip_readw = fallback_chip_readw,
378 .chip_readl = fallback_chip_readl,
379 .chip_readn = fallback_chip_readn,
380 .chip_writeb = noop_chip_writeb,
381 .chip_writew = fallback_chip_writew,
382 .chip_writel = fallback_chip_writel,
383 .chip_writen = fallback_chip_writen,
384 .delay = internal_delay,
385 },
386#endif
387
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000388#if CONFIG_DEDIPROG == 1
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000389 {
390 .name = "dediprog",
391 .init = dediprog_init,
392 .shutdown = dediprog_shutdown,
393 .map_flash_region = fallback_map,
394 .unmap_flash_region = fallback_unmap,
395 .chip_readb = noop_chip_readb,
396 .chip_readw = fallback_chip_readw,
397 .chip_readl = fallback_chip_readl,
398 .chip_readn = fallback_chip_readn,
399 .chip_writeb = noop_chip_writeb,
400 .chip_writew = fallback_chip_writew,
401 .chip_writel = fallback_chip_writel,
402 .chip_writen = fallback_chip_writen,
403 .delay = internal_delay,
404 },
405#endif
406
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000407#if CONFIG_RAYER_SPI == 1
408 {
409 .name = "rayer_spi",
410 .init = rayer_spi_init,
411 .shutdown = noop_shutdown,
412 .map_flash_region = fallback_map,
413 .unmap_flash_region = fallback_unmap,
414 .chip_readb = noop_chip_readb,
415 .chip_readw = fallback_chip_readw,
416 .chip_readl = fallback_chip_readl,
417 .chip_readn = fallback_chip_readn,
418 .chip_writeb = noop_chip_writeb,
419 .chip_writew = fallback_chip_writew,
420 .chip_writel = fallback_chip_writel,
421 .chip_writen = fallback_chip_writen,
422 .delay = internal_delay,
423 },
424#endif
425
Idwer Vollering004f4b72010-09-03 18:21:21 +0000426#if CONFIG_NICINTEL_SPI == 1
427 {
428 .name = "nicintel_spi",
429 .init = nicintel_spi_init,
430 .shutdown = nicintel_spi_shutdown,
431 .map_flash_region = fallback_map,
432 .unmap_flash_region = fallback_unmap,
433 .chip_readb = noop_chip_readb,
434 .chip_readw = fallback_chip_readw,
435 .chip_readl = fallback_chip_readl,
436 .chip_readn = fallback_chip_readn,
437 .chip_writeb = noop_chip_writeb,
438 .chip_writew = fallback_chip_writew,
439 .chip_writel = fallback_chip_writel,
440 .chip_writen = fallback_chip_writen,
441 .delay = internal_delay,
442 },
443#endif
444
Mark Marshall90021f22010-12-03 14:48:11 +0000445#if CONFIG_OGP_SPI == 1
446 {
447 .name = "ogp_spi",
448 .init = ogp_spi_init,
449 .shutdown = ogp_spi_shutdown,
450 .map_flash_region = fallback_map,
451 .unmap_flash_region = fallback_unmap,
452 .chip_readb = noop_chip_readb,
453 .chip_readw = fallback_chip_readw,
454 .chip_readl = fallback_chip_readl,
455 .chip_readn = fallback_chip_readn,
456 .chip_writeb = noop_chip_writeb,
457 .chip_writew = fallback_chip_writew,
458 .chip_writel = fallback_chip_writel,
459 .chip_writen = fallback_chip_writen,
460 .delay = internal_delay,
461 },
462#endif
463
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000464 {}, /* This entry corresponds to PROGRAMMER_INVALID. */
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000465};
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000466
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000467#define SHUTDOWN_MAXFN 32
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000468static int shutdown_fn_count = 0;
469struct shutdown_func_data {
470 void (*func) (void *data);
471 void *data;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000472} static shutdown_fn[SHUTDOWN_MAXFN];
473/* Initialize to 0 to make sure nobody registers a shutdown function before
474 * programmer init.
475 */
476static int may_register_shutdown = 0;
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000477
478/* Register a function to be executed on programmer shutdown.
479 * The advantage over atexit() is that you can supply a void pointer which will
480 * be used as parameter to the registered function upon programmer shutdown.
481 * This pointer can point to arbitrary data used by said function, e.g. undo
482 * information for GPIO settings etc. If unneeded, set data=NULL.
483 * Please note that the first (void *data) belongs to the function signature of
484 * the function passed as first parameter.
485 */
486int register_shutdown(void (*function) (void *data), void *data)
487{
488 if (shutdown_fn_count >= SHUTDOWN_MAXFN) {
Carl-Daniel Hailfinger9f5f2152010-06-04 23:20:21 +0000489 msg_perr("Tried to register more than %i shutdown functions.\n",
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000490 SHUTDOWN_MAXFN);
491 return 1;
492 }
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000493 if (!may_register_shutdown) {
494 msg_perr("Tried to register a shutdown function before "
495 "programmer init.\n");
496 return 1;
497 }
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000498 shutdown_fn[shutdown_fn_count].func = function;
499 shutdown_fn[shutdown_fn_count].data = data;
500 shutdown_fn_count++;
501
502 return 0;
503}
504
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000505int programmer_init(char *param)
Uwe Hermann09e04f72009-05-16 22:36:00 +0000506{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000507 int ret;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000508 /* Initialize all programmer specific data. */
509 /* Default to unlimited decode sizes. */
510 max_rom_decode = (const struct decode_sizes) {
511 .parallel = 0xffffffff,
512 .lpc = 0xffffffff,
513 .fwh = 0xffffffff,
514 .spi = 0xffffffff
515 };
516 /* Default to Parallel/LPC/FWH flash devices. If a known host controller
517 * is found, the init routine sets the buses_supported bitfield.
518 */
519 buses_supported = CHIP_BUSTYPE_NONSPI;
520 /* Default to top aligned flash at 4 GB. */
521 flashbase = 0;
522 /* Registering shutdown functions is now allowed. */
523 may_register_shutdown = 1;
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +0000524 /* Default to allowing writes. Broken programmers set this to 0. */
525 programmer_may_write = 1;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000526
527 programmer_param = param;
528 msg_pdbg("Initializing %s programmer\n",
529 programmer_table[programmer].name);
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000530 ret = programmer_table[programmer].init();
531 if (programmer_param && strlen(programmer_param)) {
532 msg_perr("Unhandled programmer parameters: %s\n",
533 programmer_param);
534 /* Do not error out here, the init itself was successful. */
535 }
536 return ret;
Uwe Hermann09e04f72009-05-16 22:36:00 +0000537}
538
539int programmer_shutdown(void)
540{
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000541 /* Registering shutdown functions is no longer allowed. */
542 may_register_shutdown = 0;
543 while (shutdown_fn_count > 0) {
544 int i = --shutdown_fn_count;
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000545 shutdown_fn[i].func(shutdown_fn[i].data);
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000546 }
Uwe Hermann09e04f72009-05-16 22:36:00 +0000547 return programmer_table[programmer].shutdown();
548}
549
550void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
551 size_t len)
552{
553 return programmer_table[programmer].map_flash_region(descr,
554 phys_addr, len);
555}
556
557void programmer_unmap_flash_region(void *virt_addr, size_t len)
558{
559 programmer_table[programmer].unmap_flash_region(virt_addr, len);
560}
561
562void chip_writeb(uint8_t val, chipaddr addr)
563{
564 programmer_table[programmer].chip_writeb(val, addr);
565}
566
567void chip_writew(uint16_t val, chipaddr addr)
568{
569 programmer_table[programmer].chip_writew(val, addr);
570}
571
572void chip_writel(uint32_t val, chipaddr addr)
573{
574 programmer_table[programmer].chip_writel(val, addr);
575}
576
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000577void chip_writen(uint8_t *buf, chipaddr addr, size_t len)
578{
579 programmer_table[programmer].chip_writen(buf, addr, len);
580}
581
Uwe Hermann09e04f72009-05-16 22:36:00 +0000582uint8_t chip_readb(const chipaddr addr)
583{
584 return programmer_table[programmer].chip_readb(addr);
585}
586
587uint16_t chip_readw(const chipaddr addr)
588{
589 return programmer_table[programmer].chip_readw(addr);
590}
591
592uint32_t chip_readl(const chipaddr addr)
593{
594 return programmer_table[programmer].chip_readl(addr);
595}
596
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000597void chip_readn(uint8_t *buf, chipaddr addr, size_t len)
598{
599 programmer_table[programmer].chip_readn(buf, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000600}
601
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000602void programmer_delay(int usecs)
603{
604 programmer_table[programmer].delay(usecs);
605}
606
Peter Stuge776d2022009-01-26 00:39:57 +0000607void map_flash_registers(struct flashchip *flash)
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000608{
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000609 size_t size = flash->total_size * 1024;
Carl-Daniel Hailfingerd0fc9462009-05-11 14:01:17 +0000610 /* Flash registers live 4 MByte below the flash. */
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +0000611 /* FIXME: This is incorrect for nonstandard flashbase. */
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000612 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000613}
614
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000615int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000616{
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000617 chip_readn(buf, flash->virtual_memory + start, len);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000618
619 return 0;
620}
621
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000622int min(int a, int b)
623{
624 return (a < b) ? a : b;
625}
626
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000627int max(int a, int b)
628{
629 return (a > b) ? a : b;
630}
631
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000632int bitcount(unsigned long a)
633{
634 int i = 0;
635 for (; a != 0; a >>= 1)
636 if (a & 1)
637 i++;
638 return i;
639}
640
Carl-Daniel Hailfingerc2441382010-11-09 22:00:31 +0000641void tolower_string(char *str)
642{
643 for (; *str != '\0'; str++)
644 *str = (char)tolower((unsigned char)*str);
645}
646
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000647char *strcat_realloc(char *dest, const char *src)
648{
649 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000650 if (!dest) {
651 msg_gerr("Out of memory!\n");
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000652 return NULL;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000653 }
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000654 strcat(dest, src);
655 return dest;
656}
657
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000658/* This is a somewhat hacked function similar in some ways to strtok().
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000659 * It will look for needle with a subsequent '=' in haystack, return a copy of
660 * needle and remove everything from the first occurrence of needle to the next
661 * delimiter from haystack.
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000662 */
663char *extract_param(char **haystack, char *needle, char *delim)
664{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000665 char *param_pos, *opt_pos, *rest;
666 char *opt = NULL;
667 int optlen;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000668 int needlelen;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000669
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000670 needlelen = strlen(needle);
671 if (!needlelen) {
672 msg_gerr("%s: empty needle! Please report a bug at "
673 "flashrom@flashrom.org\n", __func__);
674 return NULL;
675 }
676 /* No programmer parameters given. */
677 if (*haystack == NULL)
678 return NULL;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000679 param_pos = strstr(*haystack, needle);
680 do {
681 if (!param_pos)
682 return NULL;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000683 /* Needle followed by '='? */
684 if (param_pos[needlelen] == '=') {
685
686 /* Beginning of the string? */
687 if (param_pos == *haystack)
688 break;
689 /* After a delimiter? */
690 if (strchr(delim, *(param_pos - 1)))
691 break;
692 }
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000693 /* Continue searching. */
694 param_pos++;
695 param_pos = strstr(param_pos, needle);
696 } while (1);
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000697
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000698 if (param_pos) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000699 /* Get the string after needle and '='. */
700 opt_pos = param_pos + needlelen + 1;
701 optlen = strcspn(opt_pos, delim);
702 /* Return an empty string if the parameter was empty. */
703 opt = malloc(optlen + 1);
704 if (!opt) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000705 msg_gerr("Out of memory!\n");
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000706 exit(1);
707 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000708 strncpy(opt, opt_pos, optlen);
709 opt[optlen] = '\0';
710 rest = opt_pos + optlen;
711 /* Skip all delimiters after the current parameter. */
712 rest += strspn(rest, delim);
713 memmove(param_pos, rest, strlen(rest) + 1);
714 /* We could shrink haystack, but the effort is not worth it. */
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000715 }
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000716
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000717 return opt;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000718}
719
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000720char *extract_programmer_param(char *param_name)
721{
722 return extract_param(&programmer_param, param_name, ",");
723}
724
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000725/* start is an offset to the base address of the flash chip */
726int check_erased_range(struct flashchip *flash, int start, int len)
727{
728 int ret;
729 uint8_t *cmpbuf = malloc(len);
730
731 if (!cmpbuf) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000732 msg_gerr("Could not allocate memory!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000733 exit(1);
734 }
735 memset(cmpbuf, 0xff, len);
736 ret = verify_range(flash, cmpbuf, start, len, "ERASE");
737 free(cmpbuf);
738 return ret;
739}
740
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000741/*
Carl-Daniel Hailfingerd0250a32009-11-25 17:05:52 +0000742 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
743 flash content at location start
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000744 * @start offset to the base address of the flash chip
745 * @len length of the verified area
746 * @message string to print in the "FAILED" message
747 * @return 0 for success, -1 for failure
748 */
749int verify_range(struct flashchip *flash, uint8_t *cmpbuf, int start, int len, char *message)
750{
Carl-Daniel Hailfingerd8369412010-11-16 17:21:58 +0000751 int i, ret = 0;
752 uint8_t *readbuf = malloc(len);
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000753 int failcount = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000754
755 if (!len)
756 goto out_free;
757
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000758 if (!flash->read) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000759 msg_cerr("ERROR: flashrom has no read function for this flash chip.\n");
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000760 return 1;
761 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000762 if (!readbuf) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000763 msg_gerr("Could not allocate memory!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000764 exit(1);
765 }
766
767 if (start + len > flash->total_size * 1024) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000768 msg_gerr("Error: %s called with start 0x%x + len 0x%x >"
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000769 " total_size 0x%x\n", __func__, start, len,
770 flash->total_size * 1024);
771 ret = -1;
772 goto out_free;
773 }
774 if (!message)
775 message = "VERIFY";
776
Carl-Daniel Hailfingerd8369412010-11-16 17:21:58 +0000777 ret = flash->read(flash, readbuf, start, len);
778 if (ret) {
779 msg_gerr("Verification impossible because read failed "
780 "at 0x%x (len 0x%x)\n", start, len);
781 return ret;
782 }
783
784 for (i = 0; i < len; i++) {
785 if (cmpbuf[i] != readbuf[i]) {
786 /* Only print the first failure. */
787 if (!failcount++)
788 msg_cerr("%s FAILED at 0x%08x! "
789 "Expected=0x%02x, Read=0x%02x,",
790 message, start + i, cmpbuf[i],
791 readbuf[i]);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000792 }
793 }
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000794 if (failcount) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000795 msg_cerr(" failed byte count from 0x%08x-0x%08x: 0x%x\n",
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000796 start, start + len - 1, failcount);
797 ret = -1;
798 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000799
800out_free:
801 free(readbuf);
802 return ret;
803}
804
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000805/*
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000806 * Check if the buffer @have can be programmed to the content of @want without
807 * erasing. This is only possible if all chunks of size @gran are either kept
808 * as-is or changed from an all-ones state to any other state.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000809 *
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000810 * The following write granularities (enum @gran) are known:
811 * - 1 bit. Each bit can be cleared individually.
812 * - 1 byte. A byte can be written once. Further writes to an already written
813 * byte cause the contents to be either undefined or to stay unchanged.
814 * - 128 bytes. If less than 128 bytes are written, the rest will be
815 * erased. Each write to a 128-byte region will trigger an automatic erase
816 * before anything is written. Very uncommon behaviour and unsupported by
817 * this function.
818 * - 256 bytes. If less than 256 bytes are written, the contents of the
819 * unwritten bytes are undefined.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000820 * Warning: This function assumes that @have and @want point to naturally
821 * aligned regions.
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000822 *
823 * @have buffer with current content
824 * @want buffer with desired content
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000825 * @len length of the checked area
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000826 * @gran write granularity (enum, not count)
827 * @return 0 if no erase is needed, 1 otherwise
828 */
829int need_erase(uint8_t *have, uint8_t *want, int len, enum write_granularity gran)
830{
831 int result = 0;
832 int i, j, limit;
833
834 switch (gran) {
835 case write_gran_1bit:
836 for (i = 0; i < len; i++)
837 if ((have[i] & want[i]) != want[i]) {
838 result = 1;
839 break;
840 }
841 break;
842 case write_gran_1byte:
843 for (i = 0; i < len; i++)
844 if ((have[i] != want[i]) && (have[i] != 0xff)) {
845 result = 1;
846 break;
847 }
848 break;
849 case write_gran_256bytes:
850 for (j = 0; j < len / 256; j++) {
851 limit = min (256, len - j * 256);
Uwe Hermann43959702010-03-13 17:28:29 +0000852 /* Are 'have' and 'want' identical? */
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000853 if (!memcmp(have + j * 256, want + j * 256, limit))
854 continue;
855 /* have needs to be in erased state. */
856 for (i = 0; i < limit; i++)
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000857 if (have[j * 256 + i] != 0xff) {
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000858 result = 1;
859 break;
860 }
861 if (result)
862 break;
863 }
864 break;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000865 default:
866 msg_cerr("%s: Unsupported granularity! Please report a bug at "
867 "flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000868 }
869 return result;
870}
871
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000872/**
873 * Check if the buffer @have needs to be programmed to get the content of @want.
874 * If yes, return 1 and fill in first_start with the start address of the
875 * write operation and first_len with the length of the first to-be-written
876 * chunk. If not, return 0 and leave first_start and first_len undefined.
877 *
878 * Warning: This function assumes that @have and @want point to naturally
879 * aligned regions.
880 *
881 * @have buffer with current content
882 * @want buffer with desired content
883 * @len length of the checked area
884 * @gran write granularity (enum, not count)
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000885 * @first_start offset of the first byte which needs to be written (passed in
886 * value is increased by the offset of the first needed write
887 * relative to have/want or unchanged if no write is needed)
888 * @return length of the first contiguous area which needs to be written
889 * 0 if no write is needed
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000890 *
891 * FIXME: This function needs a parameter which tells it about coalescing
892 * in relation to the max write length of the programmer and the max write
893 * length of the chip.
894 */
895static int get_next_write(uint8_t *have, uint8_t *want, int len,
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000896 int *first_start, enum write_granularity gran)
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000897{
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000898 int need_write = 0, rel_start = 0, first_len = 0;
899 int i, limit, stride;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000900
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000901 switch (gran) {
902 case write_gran_1bit:
903 case write_gran_1byte:
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000904 stride = 1;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000905 break;
906 case write_gran_256bytes:
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000907 stride = 256;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000908 break;
909 default:
910 msg_cerr("%s: Unsupported granularity! Please report a bug at "
911 "flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000912 /* Claim that no write was needed. A write with unknown
913 * granularity is too dangerous to try.
914 */
915 return 0;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000916 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000917 for (i = 0; i < len / stride; i++) {
918 limit = min(stride, len - i * stride);
919 /* Are 'have' and 'want' identical? */
920 if (memcmp(have + i * stride, want + i * stride, limit)) {
921 if (!need_write) {
922 /* First location where have and want differ. */
923 need_write = 1;
924 rel_start = i * stride;
925 }
926 } else {
927 if (need_write) {
928 /* First location where have and want
929 * do not differ anymore.
930 */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000931 break;
932 }
933 }
934 }
Carl-Daniel Hailfinger202bf532010-12-06 13:05:44 +0000935 if (need_write)
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000936 first_len = min(i * stride - rel_start, len);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000937 *first_start += rel_start;
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +0000938 return first_len;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +0000939}
940
Carl-Daniel Hailfingereaac68b2009-11-23 12:55:31 +0000941/* This function generates various test patterns useful for testing controller
942 * and chip communication as well as chip behaviour.
943 *
944 * If a byte can be written multiple times, each time keeping 0-bits at 0
945 * and changing 1-bits to 0 if the new value for that bit is 0, the effect
946 * is essentially an AND operation. That's also the reason why this function
947 * provides the result of AND between various patterns.
948 *
949 * Below is a list of patterns (and their block length).
950 * Pattern 0 is 05 15 25 35 45 55 65 75 85 95 a5 b5 c5 d5 e5 f5 (16 Bytes)
951 * Pattern 1 is 0a 1a 2a 3a 4a 5a 6a 7a 8a 9a aa ba ca da ea fa (16 Bytes)
952 * Pattern 2 is 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f (16 Bytes)
953 * Pattern 3 is a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af (16 Bytes)
954 * Pattern 4 is 00 10 20 30 40 50 60 70 80 90 a0 b0 c0 d0 e0 f0 (16 Bytes)
955 * Pattern 5 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f (16 Bytes)
956 * Pattern 6 is 00 (1 Byte)
957 * Pattern 7 is ff (1 Byte)
958 * Patterns 0-7 have a big-endian block number in the last 2 bytes of each 256
959 * byte block.
960 *
961 * Pattern 8 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11... (256 B)
962 * Pattern 9 is ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ef ee... (256 B)
963 * Pattern 10 is 00 00 00 01 00 02 00 03 00 04... (128 kB big-endian counter)
964 * Pattern 11 is ff ff ff fe ff fd ff fc ff fb... (128 kB big-endian downwards)
965 * Pattern 12 is 00 (1 Byte)
966 * Pattern 13 is ff (1 Byte)
967 * Patterns 8-13 have no block number.
968 *
969 * Patterns 0-3 are created to detect and efficiently diagnose communication
970 * slips like missed bits or bytes and their repetitive nature gives good visual
971 * cues to the person inspecting the results. In addition, the following holds:
972 * AND Pattern 0/1 == Pattern 4
973 * AND Pattern 2/3 == Pattern 5
974 * AND Pattern 0/1/2/3 == AND Pattern 4/5 == Pattern 6
975 * A weakness of pattern 0-5 is the inability to detect swaps/copies between
976 * any two 16-byte blocks except for the last 16-byte block in a 256-byte bloc.
977 * They work perfectly for detecting any swaps/aliasing of blocks >= 256 bytes.
978 * 0x5 and 0xa were picked because they are 0101 and 1010 binary.
979 * Patterns 8-9 are best for detecting swaps/aliasing of blocks < 256 bytes.
980 * Besides that, they provide for bit testing of the last two bytes of every
981 * 256 byte block which contains the block number for patterns 0-6.
982 * Patterns 10-11 are special purpose for detecting subblock aliasing with
983 * block sizes >256 bytes (some Dataflash chips etc.)
984 * AND Pattern 8/9 == Pattern 12
985 * AND Pattern 10/11 == Pattern 12
986 * Pattern 13 is the completely erased state.
987 * None of the patterns can detect aliasing at boundaries which are a multiple
988 * of 16 MBytes (but such chips do not exist anyway for Parallel/LPC/FWH/SPI).
989 */
990int generate_testpattern(uint8_t *buf, uint32_t size, int variant)
991{
992 int i;
993
994 if (!buf) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000995 msg_gerr("Invalid buffer!\n");
Carl-Daniel Hailfingereaac68b2009-11-23 12:55:31 +0000996 return 1;
997 }
998
999 switch (variant) {
1000 case 0:
1001 for (i = 0; i < size; i++)
1002 buf[i] = (i & 0xf) << 4 | 0x5;
1003 break;
1004 case 1:
1005 for (i = 0; i < size; i++)
1006 buf[i] = (i & 0xf) << 4 | 0xa;
1007 break;
1008 case 2:
1009 for (i = 0; i < size; i++)
1010 buf[i] = 0x50 | (i & 0xf);
1011 break;
1012 case 3:
1013 for (i = 0; i < size; i++)
1014 buf[i] = 0xa0 | (i & 0xf);
1015 break;
1016 case 4:
1017 for (i = 0; i < size; i++)
1018 buf[i] = (i & 0xf) << 4;
1019 break;
1020 case 5:
1021 for (i = 0; i < size; i++)
1022 buf[i] = i & 0xf;
1023 break;
1024 case 6:
1025 memset(buf, 0x00, size);
1026 break;
1027 case 7:
1028 memset(buf, 0xff, size);
1029 break;
1030 case 8:
1031 for (i = 0; i < size; i++)
1032 buf[i] = i & 0xff;
1033 break;
1034 case 9:
1035 for (i = 0; i < size; i++)
1036 buf[i] = ~(i & 0xff);
1037 break;
1038 case 10:
1039 for (i = 0; i < size % 2; i++) {
1040 buf[i * 2] = (i >> 8) & 0xff;
1041 buf[i * 2 + 1] = i & 0xff;
1042 }
1043 if (size & 0x1)
1044 buf[i * 2] = (i >> 8) & 0xff;
1045 break;
1046 case 11:
1047 for (i = 0; i < size % 2; i++) {
1048 buf[i * 2] = ~((i >> 8) & 0xff);
1049 buf[i * 2 + 1] = ~(i & 0xff);
1050 }
1051 if (size & 0x1)
1052 buf[i * 2] = ~((i >> 8) & 0xff);
1053 break;
1054 case 12:
1055 memset(buf, 0x00, size);
1056 break;
1057 case 13:
1058 memset(buf, 0xff, size);
1059 break;
1060 }
1061
1062 if ((variant >= 0) && (variant <= 7)) {
1063 /* Write block number in the last two bytes of each 256-byte
1064 * block, big endian for easier reading of the hexdump.
1065 * Note that this wraps around for chips larger than 2^24 bytes
1066 * (16 MB).
1067 */
1068 for (i = 0; i < size / 256; i++) {
1069 buf[i * 256 + 254] = (i >> 8) & 0xff;
1070 buf[i * 256 + 255] = i & 0xff;
1071 }
1072 }
1073
1074 return 0;
1075}
1076
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001077int check_max_decode(enum chipbustype buses, uint32_t size)
1078{
1079 int limitexceeded = 0;
1080 if ((buses & CHIP_BUSTYPE_PARALLEL) &&
1081 (max_rom_decode.parallel < size)) {
1082 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001083 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001084 "size %u kB of chipset/board/programmer "
1085 "for %s interface, "
1086 "probe/read/erase/write may fail. ", size / 1024,
1087 max_rom_decode.parallel / 1024, "Parallel");
1088 }
1089 if ((buses & CHIP_BUSTYPE_LPC) && (max_rom_decode.lpc < size)) {
1090 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001091 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001092 "size %u kB of chipset/board/programmer "
1093 "for %s interface, "
1094 "probe/read/erase/write may fail. ", size / 1024,
1095 max_rom_decode.lpc / 1024, "LPC");
1096 }
1097 if ((buses & CHIP_BUSTYPE_FWH) && (max_rom_decode.fwh < size)) {
1098 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001099 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001100 "size %u kB of chipset/board/programmer "
1101 "for %s interface, "
1102 "probe/read/erase/write may fail. ", size / 1024,
1103 max_rom_decode.fwh / 1024, "FWH");
1104 }
1105 if ((buses & CHIP_BUSTYPE_SPI) && (max_rom_decode.spi < size)) {
1106 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +00001107 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001108 "size %u kB of chipset/board/programmer "
1109 "for %s interface, "
1110 "probe/read/erase/write may fail. ", size / 1024,
1111 max_rom_decode.spi / 1024, "SPI");
1112 }
1113 if (!limitexceeded)
1114 return 0;
1115 /* Sometimes chip and programmer have more than one bus in common,
1116 * and the limit is not exceeded on all buses. Tell the user.
1117 */
1118 if (bitcount(buses) > limitexceeded)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001119 /* FIXME: This message is designed towards CLI users. */
Sean Nelson316a29f2010-05-07 20:09:04 +00001120 msg_pdbg("There is at least one common chip/programmer "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001121 "interface which can support a chip of this size. "
1122 "You can try --force at your own risk.\n");
1123 return 1;
1124}
1125
Peter Stuge483b8f02008-09-03 23:10:05 +00001126struct flashchip *probe_flash(struct flashchip *first_flash, int force)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001127{
Peter Stuge483b8f02008-09-03 23:10:05 +00001128 struct flashchip *flash;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001129 unsigned long base = 0;
1130 uint32_t size;
1131 enum chipbustype buses_common;
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001132 char *tmp;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001133
Peter Stuge483b8f02008-09-03 23:10:05 +00001134 for (flash = first_flash; flash && flash->name; flash++) {
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001135 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001136 continue;
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001137 msg_gdbg("Probing for %s %s, %d KB: ",
Stefan Reinauerac378972008-03-17 22:59:40 +00001138 flash->vendor, flash->name, flash->total_size);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +00001139 if (!flash->probe && !force) {
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001140 msg_gdbg("failed! flashrom has no probe function for "
1141 "this flash chip.\n");
Peter Stugef31104c2008-04-28 14:47:30 +00001142 continue;
1143 }
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001144 buses_common = buses_supported & flash->bustype;
1145 if (!buses_common) {
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001146 tmp = flashbuses_to_text(buses_supported);
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001147 msg_gdbg("skipped.");
1148 msg_gspew(" Host bus type %s ", tmp);
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001149 free(tmp);
1150 tmp = flashbuses_to_text(flash->bustype);
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001151 msg_gspew("and chip bus type %s are incompatible.",
1152 tmp);
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001153 free(tmp);
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +00001154 msg_gdbg("\n");
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +00001155 continue;
1156 }
Stefan Reinauer70385642007-04-06 11:58:03 +00001157
Ollie Lhocbbf1252004-03-17 22:22:08 +00001158 size = flash->total_size * 1024;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001159 check_max_decode(buses_common, size);
Stefan Reinauer70385642007-04-06 11:58:03 +00001160
Carl-Daniel Hailfinger97d6b092009-05-09 07:27:23 +00001161 base = flashbase ? flashbase : (0xffffffff - size + 1);
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +00001162 flash->virtual_memory = (chipaddr)programmer_map_flash_region("flash chip", base, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001163
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001164 if (force)
1165 break;
Stefan Reinauerfcb63682006-03-16 16:57:41 +00001166
Peter Stuge483b8f02008-09-03 23:10:05 +00001167 if (flash->probe(flash) != 1)
1168 goto notfound;
1169
Uwe Hermann394131e2008-10-18 21:14:13 +00001170 if (first_flash == flashchips
1171 || flash->model_id != GENERIC_DEVICE_ID)
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001172 break;
1173
Peter Stuge483b8f02008-09-03 23:10:05 +00001174notfound:
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +00001175 programmer_unmap_flash_region((void *)flash->virtual_memory, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001176 }
Uwe Hermannffec5f32007-08-23 16:08:21 +00001177
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001178 if (!flash || !flash->name)
1179 return NULL;
1180
Sean Nelson316a29f2010-05-07 20:09:04 +00001181 msg_cinfo("%s chip \"%s %s\" (%d KB, %s) at physical address 0x%lx.\n",
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +00001182 force ? "Assuming" : "Found",
Uwe Hermann9899cad2009-06-28 21:47:57 +00001183 flash->vendor, flash->name, flash->total_size,
1184 flashbuses_to_text(flash->bustype), base);
1185
Carl-Daniel Hailfinger859f3f02010-12-02 21:59:42 +00001186 /* Flash registers will not be mapped if the chip was forced. Lock info
1187 * may be stored in registers, so avoid lock info printing.
1188 */
1189 if (!force)
1190 if (flash->printlock)
1191 flash->printlock(flash);
Sean Nelson6e0b9122010-02-19 00:52:10 +00001192
Peter Stuge27c3e2d2008-07-02 17:15:47 +00001193 return flash;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001194}
1195
Stefan Reinauere3705282005-12-18 16:41:10 +00001196int verify_flash(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001197{
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001198 int ret;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001199 int total_size = flash->total_size * 1024;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001200
Sean Nelson316a29f2010-05-07 20:09:04 +00001201 msg_cinfo("Verifying flash... ");
Uwe Hermanna7e05482007-05-09 10:17:44 +00001202
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001203 ret = verify_range(flash, buf, 0, total_size, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001204
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001205 if (!ret)
Sean Nelson316a29f2010-05-07 20:09:04 +00001206 msg_cinfo("VERIFIED. \n");
Stefan Reinauerfcb63682006-03-16 16:57:41 +00001207
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001208 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001209}
1210
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001211int read_buf_from_file(unsigned char *buf, unsigned long size, char *filename)
1212{
1213 unsigned long numbytes;
1214 FILE *image;
1215 struct stat image_stat;
1216
1217 if ((image = fopen(filename, "rb")) == NULL) {
1218 perror(filename);
1219 return 1;
1220 }
1221 if (fstat(fileno(image), &image_stat) != 0) {
1222 perror(filename);
1223 fclose(image);
1224 return 1;
1225 }
1226 if (image_stat.st_size != size) {
1227 msg_gerr("Error: Image size doesn't match\n");
1228 fclose(image);
1229 return 1;
1230 }
1231 numbytes = fread(buf, 1, size, image);
1232 if (fclose(image)) {
1233 perror(filename);
1234 return 1;
1235 }
1236 if (numbytes != size) {
1237 msg_gerr("Error: Failed to read complete file. Got %ld bytes, "
1238 "wanted %ld!\n", numbytes, size);
1239 return 1;
1240 }
1241 return 0;
1242}
1243
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001244int write_buf_to_file(unsigned char *buf, unsigned long size, char *filename)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001245{
1246 unsigned long numbytes;
1247 FILE *image;
Stephan Guilloux21dd55b2009-06-01 22:07:52 +00001248
1249 if (!filename) {
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001250 msg_gerr("No filename specified.\n");
Stephan Guilloux21dd55b2009-06-01 22:07:52 +00001251 return 1;
1252 }
Patrick Georgi0bf842d2010-01-25 22:55:33 +00001253 if ((image = fopen(filename, "wb")) == NULL) {
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001254 perror(filename);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001255 return 1;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001256 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001257
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001258 numbytes = fwrite(buf, 1, size, image);
1259 fclose(image);
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001260 if (numbytes != size) {
1261 msg_gerr("File %s could not be written completely.\n",
1262 filename);
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001263 return 1;
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001264 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001265 return 0;
1266}
1267
Carl-Daniel Hailfinger1748c572010-07-13 23:56:13 +00001268int read_flash_to_file(struct flashchip *flash, char *filename)
1269{
1270 unsigned long size = flash->total_size * 1024;
1271 unsigned char *buf = calloc(size, sizeof(char));
1272 int ret = 0;
1273
1274 msg_cinfo("Reading flash... ");
1275 if (!buf) {
1276 msg_gerr("Memory allocation failed!\n");
1277 msg_cinfo("FAILED.\n");
1278 return 1;
1279 }
1280 if (!flash->read) {
1281 msg_cerr("No read function available for this flash chip.\n");
1282 ret = 1;
1283 goto out_free;
1284 }
1285 if (flash->read(flash, buf, 0, size)) {
1286 msg_cerr("Read operation failed!\n");
1287 ret = 1;
1288 goto out_free;
1289 }
1290
1291 ret = write_buf_to_file(buf, flash->total_size * 1024, filename);
1292out_free:
1293 free(buf);
1294 msg_cinfo("%s.\n", ret ? "FAILED" : "done");
1295 return ret;
1296}
1297
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001298/* This function shares a lot of its structure with erase_and_write_flash() and
1299 * walk_eraseregions().
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001300 * Even if an error is found, the function will keep going and check the rest.
1301 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +00001302static int selfcheck_eraseblocks(struct flashchip *flash)
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001303{
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001304 int i, j, k;
1305 int ret = 0;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001306
1307 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
1308 unsigned int done = 0;
1309 struct block_eraser eraser = flash->block_erasers[k];
1310
1311 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1312 /* Blocks with zero size are bugs in flashchips.c. */
1313 if (eraser.eraseblocks[i].count &&
1314 !eraser.eraseblocks[i].size) {
1315 msg_gerr("ERROR: Flash chip %s erase function "
1316 "%i region %i has size 0. Please report"
1317 " a bug at flashrom@flashrom.org\n",
1318 flash->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001319 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001320 }
1321 /* Blocks with zero count are bugs in flashchips.c. */
1322 if (!eraser.eraseblocks[i].count &&
1323 eraser.eraseblocks[i].size) {
1324 msg_gerr("ERROR: Flash chip %s erase function "
1325 "%i region %i has count 0. Please report"
1326 " a bug at flashrom@flashrom.org\n",
1327 flash->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001328 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001329 }
1330 done += eraser.eraseblocks[i].count *
1331 eraser.eraseblocks[i].size;
1332 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001333 /* Empty eraseblock definition with erase function. */
1334 if (!done && eraser.block_erase)
Sean Nelson316a29f2010-05-07 20:09:04 +00001335 msg_gspew("Strange: Empty eraseblock definition with "
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001336 "non-empty erase function. Not an error.\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001337 if (!done)
1338 continue;
1339 if (done != flash->total_size * 1024) {
1340 msg_gerr("ERROR: Flash chip %s erase function %i "
1341 "region walking resulted in 0x%06x bytes total,"
1342 " expected 0x%06x bytes. Please report a bug at"
1343 " flashrom@flashrom.org\n", flash->name, k,
1344 done, flash->total_size * 1024);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001345 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001346 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001347 if (!eraser.block_erase)
1348 continue;
1349 /* Check if there are identical erase functions for different
1350 * layouts. That would imply "magic" erase functions. The
1351 * easiest way to check this is with function pointers.
1352 */
Uwe Hermann43959702010-03-13 17:28:29 +00001353 for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) {
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001354 if (eraser.block_erase ==
1355 flash->block_erasers[j].block_erase) {
1356 msg_gerr("ERROR: Flash chip %s erase function "
1357 "%i and %i are identical. Please report"
1358 " a bug at flashrom@flashrom.org\n",
1359 flash->name, k, j);
1360 ret = 1;
1361 }
Uwe Hermann43959702010-03-13 17:28:29 +00001362 }
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001363 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001364 return ret;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001365}
1366
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001367static int erase_and_write_block_helper(struct flashchip *flash,
1368 unsigned int start, unsigned int len,
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001369 uint8_t *curcontents,
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001370 uint8_t *newcontents,
1371 int (*erasefn) (struct flashchip *flash,
1372 unsigned int addr,
1373 unsigned int len))
1374{
1375 int starthere = 0;
1376 int lenhere = 0;
1377 int ret = 0;
1378 int skip = 1;
1379 int writecount = 0;
1380 enum write_granularity gran = write_gran_256bytes; /* FIXME */
1381
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001382 /* curcontents and newcontents are opaque to walk_eraseregions, and
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001383 * need to be adjusted here to keep the impression of proper abstraction
1384 */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001385 curcontents += start;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001386 newcontents += start;
1387 msg_cdbg(":");
1388 /* FIXME: Assume 256 byte granularity for now to play it safe. */
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001389 if (need_erase(curcontents, newcontents, len, gran)) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001390 msg_cdbg("E");
1391 ret = erasefn(flash, start, len);
1392 if (ret)
1393 return ret;
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001394 /* Erase was successful. Adjust curcontents. */
1395 memset(curcontents, 0xff, len);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001396 skip = 0;
1397 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001398 /* get_next_write() sets starthere to a new value after the call. */
1399 while ((lenhere = get_next_write(curcontents + starthere,
1400 newcontents + starthere,
1401 len - starthere, &starthere, gran))) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001402 if (!writecount++)
1403 msg_cdbg("W");
1404 /* Needs the partial write function signature. */
1405 ret = flash->write(flash, newcontents + starthere,
1406 start + starthere, lenhere);
1407 if (ret)
1408 return ret;
1409 starthere += lenhere;
1410 skip = 0;
1411 }
1412 if (skip)
1413 msg_cdbg("S");
1414 return ret;
1415}
1416
Carl-Daniel Hailfinger4d3e9ca2010-07-13 00:42:00 +00001417static int walk_eraseregions(struct flashchip *flash, int erasefunction,
1418 int (*do_something) (struct flashchip *flash,
1419 unsigned int addr,
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001420 unsigned int len,
1421 uint8_t *param1,
1422 uint8_t *param2,
1423 int (*erasefn) (
1424 struct flashchip *flash,
1425 unsigned int addr,
1426 unsigned int len)),
1427 void *param1, void *param2)
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001428{
1429 int i, j;
1430 unsigned int start = 0;
1431 unsigned int len;
1432 struct block_eraser eraser = flash->block_erasers[erasefunction];
1433 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1434 /* count==0 for all automatically initialized array
1435 * members so the loop below won't be executed for them.
1436 */
1437 len = eraser.eraseblocks[i].size;
1438 for (j = 0; j < eraser.eraseblocks[i].count; j++) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001439 /* Print this for every block except the first one. */
1440 if (i || j)
1441 msg_cdbg(", ");
1442 msg_cdbg("0x%06x-0x%06x", start,
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001443 start + len - 1);
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001444 if (do_something(flash, start, len, param1, param2,
1445 eraser.block_erase)) {
1446 msg_cdbg("\n");
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001447 return 1;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001448 }
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001449 start += len;
1450 }
1451 }
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001452 msg_cdbg("\n");
Carl-Daniel Hailfingera1223412010-07-13 00:37:19 +00001453 return 0;
1454}
1455
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001456static int check_block_eraser(struct flashchip *flash, int k, int log)
1457{
1458 struct block_eraser eraser = flash->block_erasers[k];
1459
1460 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
1461 if (log)
1462 msg_cdbg("not defined. ");
1463 return 1;
1464 }
1465 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
1466 if (log)
1467 msg_cdbg("eraseblock layout is known, but matching "
1468 "block erase function is not implemented. ");
1469 return 1;
1470 }
1471 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
1472 if (log)
1473 msg_cdbg("block erase function found, but "
1474 "eraseblock layout is not defined. ");
1475 return 1;
1476 }
1477 return 0;
1478}
1479
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001480int erase_and_write_flash(struct flashchip *flash, uint8_t *oldcontents, uint8_t *newcontents)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001481{
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001482 int k, ret = 0;
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001483 uint8_t *curcontents;
1484 unsigned long size = flash->total_size * 1024;
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001485 int usable_erasefunctions = 0;
1486
1487 for (k = 0; k < NUM_ERASEFUNCTIONS; k++)
1488 if (!check_block_eraser(flash, k, 0))
1489 usable_erasefunctions++;
1490 msg_cinfo("Erasing and writing flash chip... ");
1491 if (!usable_erasefunctions) {
1492 msg_cerr("ERROR: flashrom has no erase function for this flash "
1493 "chip.\n");
1494 return 1;
1495 }
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001496
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001497 curcontents = (uint8_t *) malloc(size);
1498 /* Copy oldcontents to curcontents to avoid clobbering oldcontents. */
1499 memcpy(curcontents, oldcontents, size);
1500
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001501 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001502 msg_cdbg("Looking at blockwise erase function %i... ", k);
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001503 if (check_block_eraser(flash, k, 1) && usable_erasefunctions) {
1504 msg_cdbg("Looking for another erase function.\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001505 continue;
1506 }
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001507 usable_erasefunctions--;
Sean Nelson316a29f2010-05-07 20:09:04 +00001508 msg_cdbg("trying... ");
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001509 ret = walk_eraseregions(flash, k, &erase_and_write_block_helper, curcontents, newcontents);
Sean Nelson316a29f2010-05-07 20:09:04 +00001510 msg_cdbg("\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001511 /* If everything is OK, don't try another erase function. */
1512 if (!ret)
1513 break;
Carl-Daniel Hailfingerb23b1eb2010-12-02 02:41:55 +00001514 /* Write/erase failed, so try to find out what the current chip
1515 * contents are. If no usable erase functions remain, we could
1516 * abort the loop instead of continuing, the effect is the same.
1517 * The only difference is whether the reason for other unusable
1518 * functions is printed or not. If in doubt, verbosity wins.
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001519 */
Carl-Daniel Hailfingerdce73ae2010-12-05 15:14:44 +00001520 if (!usable_erasefunctions)
1521 continue;
Carl-Daniel Hailfingerb23b1eb2010-12-02 02:41:55 +00001522 if (flash->read(flash, curcontents, 0, size)) {
1523 /* Now we are truly screwed. Read failed as well. */
1524 msg_cerr("Can't read anymore!\n");
1525 /* We have no idea about the flash chip contents, so
1526 * retrying with another erase function is pointless.
1527 */
1528 break;
1529 }
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001530 }
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001531 /* Free the scratchpad. */
1532 free(curcontents);
Carl-Daniel Hailfingerf160a122009-05-08 17:15:15 +00001533
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001534 if (ret) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001535 msg_cerr("FAILED!\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001536 } else {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001537 msg_cinfo("Done.\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001538 }
1539 return ret;
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001540}
1541
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001542void nonfatal_help_message(void)
1543{
1544 msg_gerr("Writing to the flash chip apparently didn't do anything.\n"
1545 "This means we have to add special support for your board, "
1546 "programmer or flash chip.\n"
1547 "Please report this on IRC at irc.freenode.net (channel "
1548 "#flashrom) or\n"
1549 "mail flashrom@flashrom.org!\n"
1550 "-------------------------------------------------------------"
1551 "------------------\n"
1552 "You may now reboot or simply leave the machine running.\n");
1553}
1554
Uwe Hermannc67d0372009-10-01 18:40:02 +00001555void emergency_help_message(void)
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001556{
Sean Nelson316a29f2010-05-07 20:09:04 +00001557 msg_gerr("Your flash chip is in an unknown state.\n"
Uwe Hermannc67d0372009-10-01 18:40:02 +00001558 "Get help on IRC at irc.freenode.net (channel #flashrom) or\n"
Paul Menzelab6328f2010-10-08 11:03:02 +00001559 "mail flashrom@flashrom.org with FAILED: your board name in "
1560 "the subject line!\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001561 "-------------------------------------------------------------"
1562 "------------------\n"
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001563 "DO NOT REBOOT OR POWEROFF!\n");
1564}
1565
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001566/* The way to go if you want a delimited list of programmers*/
1567void list_programmers(char *delim)
1568{
1569 enum programmer p;
1570 for (p = 0; p < PROGRAMMER_INVALID; p++) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001571 msg_ginfo("%s", programmer_table[p].name);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001572 if (p < PROGRAMMER_INVALID - 1)
Sean Nelson316a29f2010-05-07 20:09:04 +00001573 msg_ginfo("%s", delim);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001574 }
Sean Nelson316a29f2010-05-07 20:09:04 +00001575 msg_ginfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001576}
1577
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +00001578void list_programmers_linebreak(int startcol, int cols, int paren)
1579{
1580 const char *pname;
1581 int pnamelen;
1582 int remaining = 0;
1583 int firstline = 1;
1584 enum programmer p;
1585 int i;
1586
1587 for (p = 0; p < PROGRAMMER_INVALID; p++) {
1588 pname = programmer_table[p].name;
1589 pnamelen = strlen(pname);
1590 if (remaining - pnamelen - 2 < 0) {
1591 if (firstline)
1592 firstline = 0;
1593 else
1594 printf("\n");
1595 for (i = 0; i < startcol; i++)
1596 printf(" ");
1597 remaining = cols - startcol;
1598 } else {
1599 printf(" ");
1600 remaining--;
1601 }
1602 if (paren && (p == 0)) {
1603 printf("(");
1604 remaining--;
1605 }
1606 printf("%s", pname);
1607 remaining -= pnamelen;
1608 if (p < PROGRAMMER_INVALID - 1) {
1609 printf(",");
1610 remaining--;
1611 } else {
1612 if (paren)
1613 printf(")");
1614 printf("\n");
1615 }
1616 }
1617}
1618
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001619void print_sysinfo(void)
1620{
1621#if HAVE_UTSNAME == 1
1622 struct utsname osinfo;
1623 uname(&osinfo);
1624
1625 msg_ginfo(" on %s %s (%s)", osinfo.sysname, osinfo.release,
1626 osinfo.machine);
1627#else
1628 msg_ginfo(" on unknown machine");
1629#endif
1630 msg_ginfo(", built with");
1631#if NEED_PCI == 1
1632#ifdef PCILIB_VERSION
1633 msg_ginfo(" libpci %s,", PCILIB_VERSION);
1634#else
1635 msg_ginfo(" unknown PCI library,");
1636#endif
1637#endif
1638#ifdef __clang__
Carl-Daniel Hailfingerb51e58e2010-07-17 14:49:30 +00001639 msg_ginfo(" LLVM Clang");
1640#ifdef __clang_version__
1641 msg_ginfo(" %s,", __clang_version__);
1642#else
1643 msg_ginfo(" unknown version (before r102686),");
1644#endif
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001645#elif defined(__GNUC__)
1646 msg_ginfo(" GCC");
1647#ifdef __VERSION__
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001648 msg_ginfo(" %s,", __VERSION__);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001649#else
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001650 msg_ginfo(" unknown version,");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001651#endif
1652#else
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001653 msg_ginfo(" unknown compiler,");
1654#endif
1655#if defined (__FLASHROM_LITTLE_ENDIAN__)
1656 msg_ginfo(" little endian");
1657#else
1658 msg_ginfo(" big endian");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001659#endif
1660 msg_ginfo("\n");
1661}
1662
Bernhard Walle201bde32008-01-21 15:24:22 +00001663void print_version(void)
1664{
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001665 msg_ginfo("flashrom v%s", flashrom_version);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001666 print_sysinfo();
Bernhard Walle201bde32008-01-21 15:24:22 +00001667}
1668
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001669void print_banner(void)
1670{
1671 msg_ginfo("flashrom is free software, get the source code at "
1672 "http://www.flashrom.org\n");
1673 msg_ginfo("\n");
1674}
1675
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001676int selfcheck(void)
1677{
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001678 int ret = 0;
1679 struct flashchip *flash;
1680
1681 /* Safety check. Instead of aborting after the first error, check
1682 * if more errors exist.
1683 */
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001684 if (ARRAY_SIZE(programmer_table) - 1 != PROGRAMMER_INVALID) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001685 msg_gerr("Programmer table miscompilation!\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001686 ret = 1;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001687 }
1688 if (spi_programmer_count - 1 != SPI_CONTROLLER_INVALID) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001689 msg_gerr("SPI programmer table miscompilation!\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001690 ret = 1;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001691 }
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001692 for (flash = flashchips; flash && flash->name; flash++)
1693 if (selfcheck_eraseblocks(flash))
1694 ret = 1;
1695 return ret;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001696}
1697
1698void check_chip_supported(struct flashchip *flash)
1699{
1700 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001701 msg_cinfo("===\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001702 if (flash->tested & TEST_BAD_MASK) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001703 msg_cinfo("This flash part has status NOT WORKING for operations:");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001704 if (flash->tested & TEST_BAD_PROBE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001705 msg_cinfo(" PROBE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001706 if (flash->tested & TEST_BAD_READ)
Sean Nelson316a29f2010-05-07 20:09:04 +00001707 msg_cinfo(" READ");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001708 if (flash->tested & TEST_BAD_ERASE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001709 msg_cinfo(" ERASE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001710 if (flash->tested & TEST_BAD_WRITE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001711 msg_cinfo(" WRITE");
1712 msg_cinfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001713 }
1714 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
1715 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
1716 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
1717 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001718 msg_cinfo("This flash part has status UNTESTED for operations:");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001719 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001720 msg_cinfo(" PROBE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001721 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
Sean Nelson316a29f2010-05-07 20:09:04 +00001722 msg_cinfo(" READ");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001723 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001724 msg_cinfo(" ERASE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001725 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001726 msg_cinfo(" WRITE");
1727 msg_cinfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001728 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001729 /* FIXME: This message is designed towards CLI users. */
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001730 msg_cinfo("The test status of this chip may have been updated "
1731 "in the latest development\n"
1732 "version of flashrom. If you are running the latest "
1733 "development version,\n"
1734 "please email a report to flashrom@flashrom.org if "
1735 "any of the above operations\n"
1736 "work correctly for you with this flash part. Please "
1737 "include the flashrom\n"
1738 "output with the additional -V option for all "
1739 "operations you tested (-V, -Vr,\n"
1740 "-Vw, -VE), and mention which mainboard or "
1741 "programmer you tested.\n"
Paul Menzelab6328f2010-10-08 11:03:02 +00001742 "Please mention your board in the subject line. "
1743 "Thanks for your help!\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001744 }
1745}
1746
Ollie Lho761bf1b2004-03-20 16:46:10 +00001747int main(int argc, char *argv[])
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001748{
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001749 return cli_classic(argc, argv);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001750}
1751
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001752/* FIXME: This function signature needs to be improved once doit() has a better
1753 * function signature.
1754 */
1755int chip_safety_check(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1756{
1757 if (!programmer_may_write && (write_it || erase_it)) {
1758 msg_perr("Write/erase is not working yet on your programmer in "
1759 "its current configuration.\n");
1760 /* --force is the wrong approach, but it's the best we can do
1761 * until the generic programmer parameter parser is merged.
1762 */
1763 if (!force)
1764 return 1;
1765 msg_cerr("Continuing anyway.\n");
1766 }
1767
1768 if (read_it || erase_it || write_it || verify_it) {
1769 /* Everything needs read. */
1770 if (flash->tested & TEST_BAD_READ) {
1771 msg_cerr("Read is not working on this chip. ");
1772 if (!force)
1773 return 1;
1774 msg_cerr("Continuing anyway.\n");
1775 }
1776 if (!flash->read) {
1777 msg_cerr("flashrom has no read function for this "
1778 "flash chip.\n");
1779 return 1;
1780 }
1781 }
1782 if (erase_it || write_it) {
1783 /* Write needs erase. */
1784 if (flash->tested & TEST_BAD_ERASE) {
1785 msg_cerr("Erase is not working on this chip. ");
1786 if (!force)
1787 return 1;
1788 msg_cerr("Continuing anyway.\n");
1789 }
1790 /* FIXME: Check if at least one erase function exists. */
1791 }
1792 if (write_it) {
1793 if (flash->tested & TEST_BAD_WRITE) {
1794 msg_cerr("Write is not working on this chip. ");
1795 if (!force)
1796 return 1;
1797 msg_cerr("Continuing anyway.\n");
1798 }
1799 if (!flash->write) {
1800 msg_cerr("flashrom has no write function for this "
1801 "flash chip.\n");
1802 return 1;
1803 }
1804 }
1805 return 0;
1806}
1807
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001808/* This function signature is horrible. We need to design a better interface,
1809 * but right now it allows us to split off the CLI code.
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001810 * Besides that, the function itself is a textbook example of abysmal code flow.
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001811 */
1812int doit(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1813{
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001814 uint8_t *oldcontents;
1815 uint8_t *newcontents;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001816 int ret = 0;
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001817 unsigned long size = flash->total_size * 1024;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001818
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001819 if (chip_safety_check(flash, force, filename, read_it, write_it, erase_it, verify_it)) {
1820 msg_cerr("Aborting.\n");
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001821 ret = 1;
1822 goto out_nofree;
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001823 }
1824
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001825 /* Given the existence of read locks, we want to unlock for read,
1826 * erase and write.
1827 */
1828 if (flash->unlock)
1829 flash->unlock(flash);
1830
1831 if (read_it) {
1832 ret = read_flash_to_file(flash, filename);
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001833 goto out_nofree;
Carl-Daniel Hailfingerd1be52d2010-07-03 12:14:25 +00001834 }
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001835
1836 oldcontents = (uint8_t *) malloc(size);
1837 /* Assume worst case: All bits are 0. */
1838 memset(oldcontents, 0x00, size);
1839 newcontents = (uint8_t *) malloc(size);
1840 /* Assume best case: All bits should be 1. */
1841 memset(newcontents, 0xff, size);
1842 /* Side effect of the assumptions above: Default write action is erase
1843 * because newcontents looks like a completely erased chip, and
1844 * oldcontents being completely 0x00 means we have to erase everything
1845 * before we can write.
1846 */
1847
Ollie Lhoefa28582004-12-08 20:10:01 +00001848 if (erase_it) {
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001849 /* FIXME: Do we really want the scary warning if erase failed?
1850 * After all, after erase the chip is either blank or partially
1851 * blank or it has the old contents. A blank chip won't boot,
1852 * so if the user wanted erase and reboots afterwards, the user
1853 * knows very well that booting won't work.
1854 */
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001855 if (erase_and_write_flash(flash, oldcontents, newcontents)) {
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001856 emergency_help_message();
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001857 ret = 1;
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001858 }
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001859 goto out;
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001860 }
Carl-Daniel Hailfinger43069442010-10-15 00:01:14 +00001861
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001862 if (write_it || verify_it) {
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001863 if (read_buf_from_file(newcontents, size, filename)) {
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001864 ret = 1;
1865 goto out;
Stefan Reinauer018aca82006-11-21 23:48:51 +00001866 }
1867
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +00001868#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001869 if (programmer == PROGRAMMER_INTERNAL)
1870 show_id(newcontents, size, force);
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001871#endif
Ollie Lhocbbf1252004-03-17 22:22:08 +00001872 }
1873
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001874 /* Read the whole chip to be able to check whether regions need to be
1875 * erased and to give better diagnostics in case write fails.
1876 * The alternative would be to read only the regions which are to be
1877 * preserved, but in that case we might perform unneeded erase which
1878 * takes time as well.
1879 */
1880 msg_cdbg("Reading old flash chip contents...\n");
1881 if (flash->read(flash, oldcontents, 0, size)) {
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001882 ret = 1;
1883 goto out;
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001884 }
1885
Ollie Lho184a4042005-11-26 21:55:36 +00001886 // This should be moved into each flash part's code to do it
1887 // cleanly. This does the job.
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001888 handle_romentries(flash, oldcontents, newcontents);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001889
Ollie Lho184a4042005-11-26 21:55:36 +00001890 // ////////////////////////////////////////////////////////////
Uwe Hermanna7e05482007-05-09 10:17:44 +00001891
Peter Stugef31104c2008-04-28 14:47:30 +00001892 if (write_it) {
Carl-Daniel Hailfinger6e2ea322010-11-04 01:04:27 +00001893 if (erase_and_write_flash(flash, oldcontents, newcontents)) {
1894 msg_cerr("Uh oh. Erase/write failed. Checking if "
1895 "anything changed.\n");
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001896 if (!flash->read(flash, newcontents, 0, size)) {
1897 if (!memcmp(oldcontents, newcontents, size)) {
1898 msg_cinfo("Good. It seems nothing was "
1899 "changed.\n");
1900 nonfatal_help_message();
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001901 ret = 1;
1902 goto out;
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001903 }
1904 }
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00001905 emergency_help_message();
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001906 ret = 1;
1907 goto out;
Peter Stugef31104c2008-04-28 14:47:30 +00001908 }
Peter Stugef31104c2008-04-28 14:47:30 +00001909 }
Ollie Lho184a4042005-11-26 21:55:36 +00001910
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001911 if (verify_it) {
1912 /* Work around chips which need some time to calm down. */
1913 if (write_it)
1914 programmer_delay(1000*1000);
Carl-Daniel Hailfinger42d38a92010-10-19 22:06:20 +00001915 ret = verify_flash(flash, newcontents);
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001916 /* If we tried to write, and verification now fails, we
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001917 * might have an emergency situation.
1918 */
1919 if (ret && write_it)
1920 emergency_help_message();
1921 }
Ollie Lho184a4042005-11-26 21:55:36 +00001922
Carl-Daniel Hailfinger12d6d822010-11-05 14:51:59 +00001923out:
1924 free(oldcontents);
1925 free(newcontents);
1926out_nofree:
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001927 programmer_shutdown();
Stefan Reinauer143da0b2006-01-04 16:42:57 +00001928 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001929}