blob: 3cf55e6c14254012cfe82f62e9b320fbefa0c106 [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
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000024#include <fcntl.h>
Stefan Reinauer018aca82006-11-21 23:48:51 +000025#include <sys/types.h>
26#include <sys/stat.h>
Ronald G. Minnichceec4202003-07-25 04:37:41 +000027#include <string.h>
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000028#include <stdlib.h>
Ollie Lho184a4042005-11-26 21:55:36 +000029#include <getopt.h>
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +000030#if HAVE_UTSNAME == 1
31#include <sys/utsname.h>
32#endif
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000033#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000034#include "flashchips.h"
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000035
Carl-Daniel Hailfingera80cfbc2009-07-22 20:13:00 +000036const char *flashrom_version = FLASHROM_VERSION;
Ronald G. Minnichceec4202003-07-25 04:37:41 +000037char *chip_to_probe = NULL;
Peter Stuge7ffbc6f2008-06-18 02:08:40 +000038int verbose = 0;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000039
40#if INTERNAL_SUPPORT == 1
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +000041enum programmer programmer = PROGRAMMER_INTERNAL;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000042#elif DUMMY_SUPPORT == 1
43enum programmer programmer = PROGRAMMER_DUMMY;
44#else
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000045/* If neither internal nor dummy are selected, we must pick a sensible default.
46 * Since there is no reason to prefer a particular external programmer, we fail
47 * if more than one of them is selected. If only one is selected, it is clear
48 * that the user wants that one to become the default.
49 */
Joerg Fischer5665ef32010-05-21 21:54:07 +000050#if NIC3COM_SUPPORT+GFXNVIDIA_SUPPORT+DRKAISER_SUPPORT+SATASII_SUPPORT+ATAHPT_SUPPORT+FT2232_SPI_SUPPORT+SERPROG_SUPPORT+BUSPIRATE_SPI_SUPPORT+DEDIPROG_SUPPORT+NICREALTEK_SUPPORT > 1
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000051#error Please enable either CONFIG_DUMMY or CONFIG_INTERNAL or disable support for all external programmers except one.
52#endif
53enum programmer programmer =
54#if NIC3COM_SUPPORT == 1
55 PROGRAMMER_NIC3COM
56#endif
Joerg Fischer5665ef32010-05-21 21:54:07 +000057#if NICREALTEK_SUPPORT == 1
58 PROGRAMMER_NICREALTEK
59 PROGRAMMER_NICREALTEK2
60#endif
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000061#if GFXNVIDIA_SUPPORT == 1
62 PROGRAMMER_GFXNVIDIA
63#endif
64#if DRKAISER_SUPPORT == 1
65 PROGRAMMER_DRKAISER
66#endif
67#if SATASII_SUPPORT == 1
68 PROGRAMMER_SATASII
69#endif
Uwe Hermannddd5c9e2010-02-21 21:17:00 +000070#if ATAHPT_SUPPORT == 1
71 PROGRAMMER_ATAHPT
72#endif
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000073#if FT2232_SPI_SUPPORT == 1
74 PROGRAMMER_FT2232SPI
75#endif
76#if SERPROG_SUPPORT == 1
77 PROGRAMMER_SERPROG
78#endif
79#if BUSPIRATE_SPI_SUPPORT == 1
80 PROGRAMMER_BUSPIRATESPI
81#endif
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +000082#if DEDIPROG_SUPPORT == 1
83 PROGRAMMER_DEDIPROG
84#endif
Carl-Daniel Hailfinger1a1415c2010-01-10 13:28:48 +000085;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000086#endif
87
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +000088char *programmer_param = NULL;
Stefan Reinauer70385642007-04-06 11:58:03 +000089
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000090/**
91 * flashrom defaults to Parallel/LPC/FWH flash devices. If a known host
92 * controller is found, the init routine sets the buses_supported bitfield to
93 * contain the supported buses for that controller.
94 */
95enum chipbustype buses_supported = CHIP_BUSTYPE_NONSPI;
96
97/**
98 * Programmers supporting multiple buses can have differing size limits on
99 * each bus. Store the limits for each bus in a common struct.
100 */
101struct decode_sizes max_rom_decode = {
102 .parallel = 0xffffffff,
103 .lpc = 0xffffffff,
104 .fwh = 0xffffffff,
105 .spi = 0xffffffff
106};
107
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000108const struct programmer_entry programmer_table[] = {
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000109#if INTERNAL_SUPPORT == 1
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000110 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000111 .name = "internal",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000112 .init = internal_init,
113 .shutdown = internal_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000114 .map_flash_region = physmap,
115 .unmap_flash_region = physunmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000116 .chip_readb = internal_chip_readb,
117 .chip_readw = internal_chip_readw,
118 .chip_readl = internal_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000119 .chip_readn = internal_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000120 .chip_writeb = internal_chip_writeb,
121 .chip_writew = internal_chip_writew,
122 .chip_writel = internal_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000123 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000124 .delay = internal_delay,
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000125 },
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000126#endif
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000127
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000128#if DUMMY_SUPPORT == 1
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000129 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000130 .name = "dummy",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000131 .init = dummy_init,
132 .shutdown = dummy_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000133 .map_flash_region = dummy_map,
134 .unmap_flash_region = dummy_unmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000135 .chip_readb = dummy_chip_readb,
136 .chip_readw = dummy_chip_readw,
137 .chip_readl = dummy_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000138 .chip_readn = dummy_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +0000139 .chip_writeb = dummy_chip_writeb,
140 .chip_writew = dummy_chip_writew,
141 .chip_writel = dummy_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000142 .chip_writen = dummy_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000143 .delay = internal_delay,
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000144 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000145#endif
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000146
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000147#if NIC3COM_SUPPORT == 1
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000148 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000149 .name = "nic3com",
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000150 .init = nic3com_init,
151 .shutdown = nic3com_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +0000152 .map_flash_region = fallback_map,
153 .unmap_flash_region = fallback_unmap,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000154 .chip_readb = nic3com_chip_readb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +0000155 .chip_readw = fallback_chip_readw,
156 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000157 .chip_readn = fallback_chip_readn,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000158 .chip_writeb = nic3com_chip_writeb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +0000159 .chip_writew = fallback_chip_writew,
160 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000161 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000162 .delay = internal_delay,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000163 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000164#endif
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000165
Joerg Fischer5665ef32010-05-21 21:54:07 +0000166#if NICREALTEK_SUPPORT == 1
167 {
168 .name = "nicrealtek",
169 .init = nicrealtek_init,
170 .shutdown = nicrealtek_shutdown,
171 .map_flash_region = fallback_map,
172 .unmap_flash_region = fallback_unmap,
173 .chip_readb = nicrealtek_chip_readb,
174 .chip_readw = fallback_chip_readw,
175 .chip_readl = fallback_chip_readl,
176 .chip_readn = fallback_chip_readn,
177 .chip_writeb = nicrealtek_chip_writeb,
178 .chip_writew = fallback_chip_writew,
179 .chip_writel = fallback_chip_writel,
180 .chip_writen = fallback_chip_writen,
181 .delay = internal_delay,
182 },
183 {
184 .name = "nicsmc1211",
185 .init = nicsmc1211_init,
186 .shutdown = nicrealtek_shutdown,
187 .map_flash_region = fallback_map,
188 .unmap_flash_region = fallback_unmap,
189 .chip_readb = nicrealtek_chip_readb,
190 .chip_readw = fallback_chip_readw,
191 .chip_readl = fallback_chip_readl,
192 .chip_readn = fallback_chip_readn,
193 .chip_writeb = nicrealtek_chip_writeb,
194 .chip_writew = fallback_chip_writew,
195 .chip_writel = fallback_chip_writel,
196 .chip_writen = fallback_chip_writen,
197 .delay = internal_delay,
198 },
199#endif
200
201
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000202#if GFXNVIDIA_SUPPORT == 1
203 {
204 .name = "gfxnvidia",
205 .init = gfxnvidia_init,
206 .shutdown = gfxnvidia_shutdown,
207 .map_flash_region = fallback_map,
208 .unmap_flash_region = fallback_unmap,
209 .chip_readb = gfxnvidia_chip_readb,
210 .chip_readw = fallback_chip_readw,
211 .chip_readl = fallback_chip_readl,
212 .chip_readn = fallback_chip_readn,
213 .chip_writeb = gfxnvidia_chip_writeb,
214 .chip_writew = fallback_chip_writew,
215 .chip_writel = fallback_chip_writel,
216 .chip_writen = fallback_chip_writen,
217 .delay = internal_delay,
218 },
219#endif
220
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000221#if DRKAISER_SUPPORT == 1
Rudolf Marek68720c72009-05-17 19:39:27 +0000222 {
TURBO Jb0912c02009-09-02 23:00:46 +0000223 .name = "drkaiser",
224 .init = drkaiser_init,
225 .shutdown = drkaiser_shutdown,
226 .map_flash_region = fallback_map,
227 .unmap_flash_region = fallback_unmap,
228 .chip_readb = drkaiser_chip_readb,
229 .chip_readw = fallback_chip_readw,
230 .chip_readl = fallback_chip_readl,
231 .chip_readn = fallback_chip_readn,
232 .chip_writeb = drkaiser_chip_writeb,
233 .chip_writew = fallback_chip_writew,
234 .chip_writel = fallback_chip_writel,
235 .chip_writen = fallback_chip_writen,
236 .delay = internal_delay,
237 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000238#endif
TURBO Jb0912c02009-09-02 23:00:46 +0000239
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000240#if SATASII_SUPPORT == 1
TURBO Jb0912c02009-09-02 23:00:46 +0000241 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000242 .name = "satasii",
Rudolf Marek68720c72009-05-17 19:39:27 +0000243 .init = satasii_init,
244 .shutdown = satasii_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +0000245 .map_flash_region = fallback_map,
246 .unmap_flash_region = fallback_unmap,
Rudolf Marek68720c72009-05-17 19:39:27 +0000247 .chip_readb = satasii_chip_readb,
248 .chip_readw = fallback_chip_readw,
249 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000250 .chip_readn = fallback_chip_readn,
Rudolf Marek68720c72009-05-17 19:39:27 +0000251 .chip_writeb = satasii_chip_writeb,
252 .chip_writew = fallback_chip_writew,
253 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000254 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000255 .delay = internal_delay,
Rudolf Marek68720c72009-05-17 19:39:27 +0000256 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000257#endif
Rudolf Marek68720c72009-05-17 19:39:27 +0000258
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000259#if ATAHPT_SUPPORT == 1
260 {
261 .name = "atahpt",
262 .init = atahpt_init,
263 .shutdown = atahpt_shutdown,
264 .map_flash_region = fallback_map,
265 .unmap_flash_region = fallback_unmap,
266 .chip_readb = atahpt_chip_readb,
267 .chip_readw = fallback_chip_readw,
268 .chip_readl = fallback_chip_readl,
269 .chip_readn = fallback_chip_readn,
270 .chip_writeb = atahpt_chip_writeb,
271 .chip_writew = fallback_chip_writew,
272 .chip_writel = fallback_chip_writel,
273 .chip_writen = fallback_chip_writen,
274 .delay = internal_delay,
275 },
276#endif
277
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000278#if INTERNAL_SUPPORT == 1
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000279#if defined(__i386__) || defined(__x86_64__)
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000280 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000281 .name = "it87spi",
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000282 .init = it87spi_init,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000283 .shutdown = noop_shutdown,
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000284 .map_flash_region = fallback_map,
285 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000286 .chip_readb = noop_chip_readb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000287 .chip_readw = fallback_chip_readw,
288 .chip_readl = fallback_chip_readl,
289 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000290 .chip_writeb = noop_chip_writeb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000291 .chip_writew = fallback_chip_writew,
292 .chip_writel = fallback_chip_writel,
293 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000294 .delay = internal_delay,
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000295 },
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000296#endif
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000297#endif
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000298
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000299#if FT2232_SPI_SUPPORT == 1
Paul Fox05dfbe62009-06-16 21:08:06 +0000300 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000301 .name = "ft2232spi",
Paul Fox05dfbe62009-06-16 21:08:06 +0000302 .init = ft2232_spi_init,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000303 .shutdown = noop_shutdown, /* Missing shutdown */
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000304 .map_flash_region = fallback_map,
305 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000306 .chip_readb = noop_chip_readb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000307 .chip_readw = fallback_chip_readw,
308 .chip_readl = fallback_chip_readl,
309 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000310 .chip_writeb = noop_chip_writeb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000311 .chip_writew = fallback_chip_writew,
312 .chip_writel = fallback_chip_writel,
313 .chip_writen = fallback_chip_writen,
314 .delay = internal_delay,
315 },
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000316#endif
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000317
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000318#if SERPROG_SUPPORT == 1
Urja Rannikko22915352009-06-23 11:33:43 +0000319 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000320 .name = "serprog",
Urja Rannikko22915352009-06-23 11:33:43 +0000321 .init = serprog_init,
322 .shutdown = serprog_shutdown,
323 .map_flash_region = fallback_map,
324 .unmap_flash_region = fallback_unmap,
325 .chip_readb = serprog_chip_readb,
326 .chip_readw = fallback_chip_readw,
327 .chip_readl = fallback_chip_readl,
328 .chip_readn = serprog_chip_readn,
329 .chip_writeb = serprog_chip_writeb,
330 .chip_writew = fallback_chip_writew,
331 .chip_writel = fallback_chip_writel,
332 .chip_writen = fallback_chip_writen,
333 .delay = serprog_delay,
334 },
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000335#endif
Paul Fox05dfbe62009-06-16 21:08:06 +0000336
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000337#if BUSPIRATE_SPI_SUPPORT == 1
338 {
339 .name = "buspiratespi",
340 .init = buspirate_spi_init,
341 .shutdown = buspirate_spi_shutdown,
342 .map_flash_region = fallback_map,
343 .unmap_flash_region = fallback_unmap,
344 .chip_readb = noop_chip_readb,
345 .chip_readw = fallback_chip_readw,
346 .chip_readl = fallback_chip_readl,
347 .chip_readn = fallback_chip_readn,
348 .chip_writeb = noop_chip_writeb,
349 .chip_writew = fallback_chip_writew,
350 .chip_writel = fallback_chip_writel,
351 .chip_writen = fallback_chip_writen,
352 .delay = internal_delay,
353 },
354#endif
355
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000356#if DEDIPROG_SUPPORT == 1
357 {
358 .name = "dediprog",
359 .init = dediprog_init,
360 .shutdown = dediprog_shutdown,
361 .map_flash_region = fallback_map,
362 .unmap_flash_region = fallback_unmap,
363 .chip_readb = noop_chip_readb,
364 .chip_readw = fallback_chip_readw,
365 .chip_readl = fallback_chip_readl,
366 .chip_readn = fallback_chip_readn,
367 .chip_writeb = noop_chip_writeb,
368 .chip_writew = fallback_chip_writew,
369 .chip_writel = fallback_chip_writel,
370 .chip_writen = fallback_chip_writen,
371 .delay = internal_delay,
372 },
373#endif
374
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000375 {}, /* This entry corresponds to PROGRAMMER_INVALID. */
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000376};
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000377
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000378#define SHUTDOWN_MAXFN 4
379static int shutdown_fn_count = 0;
380struct shutdown_func_data {
381 void (*func) (void *data);
382 void *data;
383} shutdown_fn[SHUTDOWN_MAXFN];
384
385/* Register a function to be executed on programmer shutdown.
386 * The advantage over atexit() is that you can supply a void pointer which will
387 * be used as parameter to the registered function upon programmer shutdown.
388 * This pointer can point to arbitrary data used by said function, e.g. undo
389 * information for GPIO settings etc. If unneeded, set data=NULL.
390 * Please note that the first (void *data) belongs to the function signature of
391 * the function passed as first parameter.
392 */
393int register_shutdown(void (*function) (void *data), void *data)
394{
395 if (shutdown_fn_count >= SHUTDOWN_MAXFN) {
396 msg_perr("Tried to register more than %n shutdown functions.\n",
397 SHUTDOWN_MAXFN);
398 return 1;
399 }
400 shutdown_fn[shutdown_fn_count].func = function;
401 shutdown_fn[shutdown_fn_count].data = data;
402 shutdown_fn_count++;
403
404 return 0;
405}
406
Uwe Hermann09e04f72009-05-16 22:36:00 +0000407int programmer_init(void)
408{
409 return programmer_table[programmer].init();
410}
411
412int programmer_shutdown(void)
413{
Carl-Daniel Hailfingercc389fc2010-02-14 01:20:28 +0000414 int i;
415
416 for (i = shutdown_fn_count - 1; i >= 0; i--)
417 shutdown_fn[i].func(shutdown_fn[i].data);
Uwe Hermann09e04f72009-05-16 22:36:00 +0000418 return programmer_table[programmer].shutdown();
419}
420
421void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
422 size_t len)
423{
424 return programmer_table[programmer].map_flash_region(descr,
425 phys_addr, len);
426}
427
428void programmer_unmap_flash_region(void *virt_addr, size_t len)
429{
430 programmer_table[programmer].unmap_flash_region(virt_addr, len);
431}
432
433void chip_writeb(uint8_t val, chipaddr addr)
434{
435 programmer_table[programmer].chip_writeb(val, addr);
436}
437
438void chip_writew(uint16_t val, chipaddr addr)
439{
440 programmer_table[programmer].chip_writew(val, addr);
441}
442
443void chip_writel(uint32_t val, chipaddr addr)
444{
445 programmer_table[programmer].chip_writel(val, addr);
446}
447
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000448void chip_writen(uint8_t *buf, chipaddr addr, size_t len)
449{
450 programmer_table[programmer].chip_writen(buf, addr, len);
451}
452
Uwe Hermann09e04f72009-05-16 22:36:00 +0000453uint8_t chip_readb(const chipaddr addr)
454{
455 return programmer_table[programmer].chip_readb(addr);
456}
457
458uint16_t chip_readw(const chipaddr addr)
459{
460 return programmer_table[programmer].chip_readw(addr);
461}
462
463uint32_t chip_readl(const chipaddr addr)
464{
465 return programmer_table[programmer].chip_readl(addr);
466}
467
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000468void chip_readn(uint8_t *buf, chipaddr addr, size_t len)
469{
470 programmer_table[programmer].chip_readn(buf, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000471}
472
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000473void programmer_delay(int usecs)
474{
475 programmer_table[programmer].delay(usecs);
476}
477
Peter Stuge776d2022009-01-26 00:39:57 +0000478void map_flash_registers(struct flashchip *flash)
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000479{
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000480 size_t size = flash->total_size * 1024;
Carl-Daniel Hailfingerd0fc9462009-05-11 14:01:17 +0000481 /* Flash registers live 4 MByte below the flash. */
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +0000482 /* FIXME: This is incorrect for nonstandard flashbase. */
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000483 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000484}
485
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000486int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000487{
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000488 chip_readn(buf, flash->virtual_memory + start, len);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000489
490 return 0;
491}
492
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000493unsigned long flashbase = 0;
494
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000495int min(int a, int b)
496{
497 return (a < b) ? a : b;
498}
499
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000500int max(int a, int b)
501{
502 return (a > b) ? a : b;
503}
504
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000505int bitcount(unsigned long a)
506{
507 int i = 0;
508 for (; a != 0; a >>= 1)
509 if (a & 1)
510 i++;
511 return i;
512}
513
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000514char *strcat_realloc(char *dest, const char *src)
515{
516 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
517 if (!dest)
518 return NULL;
519 strcat(dest, src);
520 return dest;
521}
522
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000523/* This is a somewhat hacked function similar in some ways to strtok().
524 * It will look for needle in haystack, return a copy of needle and remove
525 * everything from the first occurrence of needle to the next delimiter
526 * from haystack.
527 */
528char *extract_param(char **haystack, char *needle, char *delim)
529{
530 char *param_pos, *rest, *tmp;
531 char *dev = NULL;
532 int devlen;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000533 int needlelen;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000534
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000535 needlelen = strlen(needle);
536 if (!needlelen) {
537 msg_gerr("%s: empty needle! Please report a bug at "
538 "flashrom@flashrom.org\n", __func__);
539 return NULL;
540 }
541 /* No programmer parameters given. */
542 if (*haystack == NULL)
543 return NULL;
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000544 param_pos = strstr(*haystack, needle);
545 do {
546 if (!param_pos)
547 return NULL;
548 /* Beginning of the string? */
549 if (param_pos == *haystack)
550 break;
551 /* After a delimiter? */
552 if (strchr(delim, *(param_pos - 1)))
553 break;
554 /* Continue searching. */
555 param_pos++;
556 param_pos = strstr(param_pos, needle);
557 } while (1);
558
559 if (param_pos) {
560 param_pos += strlen(needle);
561 devlen = strcspn(param_pos, delim);
562 if (devlen) {
563 dev = malloc(devlen + 1);
564 if (!dev) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000565 msg_gerr("Out of memory!\n");
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000566 exit(1);
567 }
568 strncpy(dev, param_pos, devlen);
569 dev[devlen] = '\0';
570 }
571 rest = param_pos + devlen;
572 rest += strspn(rest, delim);
573 param_pos -= strlen(needle);
574 memmove(param_pos, rest, strlen(rest) + 1);
575 tmp = realloc(*haystack, strlen(*haystack) + 1);
576 if (!tmp) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000577 msg_gerr("Out of memory!\n");
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000578 exit(1);
579 }
580 *haystack = tmp;
581 }
582
583
584 return dev;
585}
586
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000587/* start is an offset to the base address of the flash chip */
588int check_erased_range(struct flashchip *flash, int start, int len)
589{
590 int ret;
591 uint8_t *cmpbuf = malloc(len);
592
593 if (!cmpbuf) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000594 msg_gerr("Could not allocate memory!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000595 exit(1);
596 }
597 memset(cmpbuf, 0xff, len);
598 ret = verify_range(flash, cmpbuf, start, len, "ERASE");
599 free(cmpbuf);
600 return ret;
601}
602
603/**
Carl-Daniel Hailfingerd0250a32009-11-25 17:05:52 +0000604 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
605 flash content at location start
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000606 * @start offset to the base address of the flash chip
607 * @len length of the verified area
608 * @message string to print in the "FAILED" message
609 * @return 0 for success, -1 for failure
610 */
611int verify_range(struct flashchip *flash, uint8_t *cmpbuf, int start, int len, char *message)
612{
613 int i, j, starthere, lenhere, ret = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000614 int page_size = flash->page_size;
615 uint8_t *readbuf = malloc(page_size);
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000616 int failcount = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000617
618 if (!len)
619 goto out_free;
620
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000621 if (!flash->read) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000622 msg_cerr("ERROR: flashrom has no read function for this flash chip.\n");
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000623 return 1;
624 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000625 if (!readbuf) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000626 msg_gerr("Could not allocate memory!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000627 exit(1);
628 }
629
630 if (start + len > flash->total_size * 1024) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000631 msg_gerr("Error: %s called with start 0x%x + len 0x%x >"
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000632 " total_size 0x%x\n", __func__, start, len,
633 flash->total_size * 1024);
634 ret = -1;
635 goto out_free;
636 }
637 if (!message)
638 message = "VERIFY";
639
640 /* Warning: This loop has a very unusual condition and body.
641 * The loop needs to go through each page with at least one affected
642 * byte. The lowest page number is (start / page_size) since that
643 * division rounds down. The highest page number we want is the page
644 * where the last byte of the range lives. That last byte has the
645 * address (start + len - 1), thus the highest page number is
646 * (start + len - 1) / page_size. Since we want to include that last
647 * page as well, the loop condition uses <=.
648 */
649 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
650 /* Byte position of the first byte in the range in this page. */
651 starthere = max(start, i * page_size);
652 /* Length of bytes in the range in this page. */
653 lenhere = min(start + len, (i + 1) * page_size) - starthere;
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000654 flash->read(flash, readbuf, starthere, lenhere);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000655 for (j = 0; j < lenhere; j++) {
656 if (cmpbuf[starthere - start + j] != readbuf[j]) {
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000657 /* Only print the first failure. */
658 if (!failcount++)
Sean Nelson316a29f2010-05-07 20:09:04 +0000659 msg_cerr("%s FAILED at 0x%08x! "
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000660 "Expected=0x%02x, Read=0x%02x,",
661 message, starthere + j,
662 cmpbuf[starthere - start + j],
663 readbuf[j]);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000664 }
665 }
666 }
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000667 if (failcount) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000668 msg_cerr(" failed byte count from 0x%08x-0x%08x: 0x%x\n",
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000669 start, start + len - 1, failcount);
670 ret = -1;
671 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000672
673out_free:
674 free(readbuf);
675 return ret;
676}
677
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000678/**
679 * Check if the buffer @have can be programmed to the content of @want without
680 * erasing. This is only possible if all chunks of size @gran are either kept
681 * as-is or changed from an all-ones state to any other state.
682 * The following write granularities (enum @gran) are known:
683 * - 1 bit. Each bit can be cleared individually.
684 * - 1 byte. A byte can be written once. Further writes to an already written
685 * byte cause the contents to be either undefined or to stay unchanged.
686 * - 128 bytes. If less than 128 bytes are written, the rest will be
687 * erased. Each write to a 128-byte region will trigger an automatic erase
688 * before anything is written. Very uncommon behaviour and unsupported by
689 * this function.
690 * - 256 bytes. If less than 256 bytes are written, the contents of the
691 * unwritten bytes are undefined.
692 *
693 * @have buffer with current content
694 * @want buffer with desired content
695 * @len length of the verified area
696 * @gran write granularity (enum, not count)
697 * @return 0 if no erase is needed, 1 otherwise
698 */
699int need_erase(uint8_t *have, uint8_t *want, int len, enum write_granularity gran)
700{
701 int result = 0;
702 int i, j, limit;
703
704 switch (gran) {
705 case write_gran_1bit:
706 for (i = 0; i < len; i++)
707 if ((have[i] & want[i]) != want[i]) {
708 result = 1;
709 break;
710 }
711 break;
712 case write_gran_1byte:
713 for (i = 0; i < len; i++)
714 if ((have[i] != want[i]) && (have[i] != 0xff)) {
715 result = 1;
716 break;
717 }
718 break;
719 case write_gran_256bytes:
720 for (j = 0; j < len / 256; j++) {
721 limit = min (256, len - j * 256);
Uwe Hermann43959702010-03-13 17:28:29 +0000722 /* Are 'have' and 'want' identical? */
Carl-Daniel Hailfingere8e369f2010-03-08 00:42:32 +0000723 if (!memcmp(have + j * 256, want + j * 256, limit))
724 continue;
725 /* have needs to be in erased state. */
726 for (i = 0; i < limit; i++)
727 if (have[i] != 0xff) {
728 result = 1;
729 break;
730 }
731 if (result)
732 break;
733 }
734 break;
735 }
736 return result;
737}
738
Carl-Daniel Hailfingereaac68b2009-11-23 12:55:31 +0000739/* This function generates various test patterns useful for testing controller
740 * and chip communication as well as chip behaviour.
741 *
742 * If a byte can be written multiple times, each time keeping 0-bits at 0
743 * and changing 1-bits to 0 if the new value for that bit is 0, the effect
744 * is essentially an AND operation. That's also the reason why this function
745 * provides the result of AND between various patterns.
746 *
747 * Below is a list of patterns (and their block length).
748 * Pattern 0 is 05 15 25 35 45 55 65 75 85 95 a5 b5 c5 d5 e5 f5 (16 Bytes)
749 * Pattern 1 is 0a 1a 2a 3a 4a 5a 6a 7a 8a 9a aa ba ca da ea fa (16 Bytes)
750 * Pattern 2 is 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f (16 Bytes)
751 * Pattern 3 is a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af (16 Bytes)
752 * Pattern 4 is 00 10 20 30 40 50 60 70 80 90 a0 b0 c0 d0 e0 f0 (16 Bytes)
753 * Pattern 5 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f (16 Bytes)
754 * Pattern 6 is 00 (1 Byte)
755 * Pattern 7 is ff (1 Byte)
756 * Patterns 0-7 have a big-endian block number in the last 2 bytes of each 256
757 * byte block.
758 *
759 * Pattern 8 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11... (256 B)
760 * Pattern 9 is ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ef ee... (256 B)
761 * Pattern 10 is 00 00 00 01 00 02 00 03 00 04... (128 kB big-endian counter)
762 * Pattern 11 is ff ff ff fe ff fd ff fc ff fb... (128 kB big-endian downwards)
763 * Pattern 12 is 00 (1 Byte)
764 * Pattern 13 is ff (1 Byte)
765 * Patterns 8-13 have no block number.
766 *
767 * Patterns 0-3 are created to detect and efficiently diagnose communication
768 * slips like missed bits or bytes and their repetitive nature gives good visual
769 * cues to the person inspecting the results. In addition, the following holds:
770 * AND Pattern 0/1 == Pattern 4
771 * AND Pattern 2/3 == Pattern 5
772 * AND Pattern 0/1/2/3 == AND Pattern 4/5 == Pattern 6
773 * A weakness of pattern 0-5 is the inability to detect swaps/copies between
774 * any two 16-byte blocks except for the last 16-byte block in a 256-byte bloc.
775 * They work perfectly for detecting any swaps/aliasing of blocks >= 256 bytes.
776 * 0x5 and 0xa were picked because they are 0101 and 1010 binary.
777 * Patterns 8-9 are best for detecting swaps/aliasing of blocks < 256 bytes.
778 * Besides that, they provide for bit testing of the last two bytes of every
779 * 256 byte block which contains the block number for patterns 0-6.
780 * Patterns 10-11 are special purpose for detecting subblock aliasing with
781 * block sizes >256 bytes (some Dataflash chips etc.)
782 * AND Pattern 8/9 == Pattern 12
783 * AND Pattern 10/11 == Pattern 12
784 * Pattern 13 is the completely erased state.
785 * None of the patterns can detect aliasing at boundaries which are a multiple
786 * of 16 MBytes (but such chips do not exist anyway for Parallel/LPC/FWH/SPI).
787 */
788int generate_testpattern(uint8_t *buf, uint32_t size, int variant)
789{
790 int i;
791
792 if (!buf) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000793 msg_gerr("Invalid buffer!\n");
Carl-Daniel Hailfingereaac68b2009-11-23 12:55:31 +0000794 return 1;
795 }
796
797 switch (variant) {
798 case 0:
799 for (i = 0; i < size; i++)
800 buf[i] = (i & 0xf) << 4 | 0x5;
801 break;
802 case 1:
803 for (i = 0; i < size; i++)
804 buf[i] = (i & 0xf) << 4 | 0xa;
805 break;
806 case 2:
807 for (i = 0; i < size; i++)
808 buf[i] = 0x50 | (i & 0xf);
809 break;
810 case 3:
811 for (i = 0; i < size; i++)
812 buf[i] = 0xa0 | (i & 0xf);
813 break;
814 case 4:
815 for (i = 0; i < size; i++)
816 buf[i] = (i & 0xf) << 4;
817 break;
818 case 5:
819 for (i = 0; i < size; i++)
820 buf[i] = i & 0xf;
821 break;
822 case 6:
823 memset(buf, 0x00, size);
824 break;
825 case 7:
826 memset(buf, 0xff, size);
827 break;
828 case 8:
829 for (i = 0; i < size; i++)
830 buf[i] = i & 0xff;
831 break;
832 case 9:
833 for (i = 0; i < size; i++)
834 buf[i] = ~(i & 0xff);
835 break;
836 case 10:
837 for (i = 0; i < size % 2; i++) {
838 buf[i * 2] = (i >> 8) & 0xff;
839 buf[i * 2 + 1] = i & 0xff;
840 }
841 if (size & 0x1)
842 buf[i * 2] = (i >> 8) & 0xff;
843 break;
844 case 11:
845 for (i = 0; i < size % 2; i++) {
846 buf[i * 2] = ~((i >> 8) & 0xff);
847 buf[i * 2 + 1] = ~(i & 0xff);
848 }
849 if (size & 0x1)
850 buf[i * 2] = ~((i >> 8) & 0xff);
851 break;
852 case 12:
853 memset(buf, 0x00, size);
854 break;
855 case 13:
856 memset(buf, 0xff, size);
857 break;
858 }
859
860 if ((variant >= 0) && (variant <= 7)) {
861 /* Write block number in the last two bytes of each 256-byte
862 * block, big endian for easier reading of the hexdump.
863 * Note that this wraps around for chips larger than 2^24 bytes
864 * (16 MB).
865 */
866 for (i = 0; i < size / 256; i++) {
867 buf[i * 256 + 254] = (i >> 8) & 0xff;
868 buf[i * 256 + 255] = i & 0xff;
869 }
870 }
871
872 return 0;
873}
874
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000875int check_max_decode(enum chipbustype buses, uint32_t size)
876{
877 int limitexceeded = 0;
878 if ((buses & CHIP_BUSTYPE_PARALLEL) &&
879 (max_rom_decode.parallel < size)) {
880 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000881 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000882 "size %u kB of chipset/board/programmer "
883 "for %s interface, "
884 "probe/read/erase/write may fail. ", size / 1024,
885 max_rom_decode.parallel / 1024, "Parallel");
886 }
887 if ((buses & CHIP_BUSTYPE_LPC) && (max_rom_decode.lpc < size)) {
888 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000889 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000890 "size %u kB of chipset/board/programmer "
891 "for %s interface, "
892 "probe/read/erase/write may fail. ", size / 1024,
893 max_rom_decode.lpc / 1024, "LPC");
894 }
895 if ((buses & CHIP_BUSTYPE_FWH) && (max_rom_decode.fwh < size)) {
896 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000897 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000898 "size %u kB of chipset/board/programmer "
899 "for %s interface, "
900 "probe/read/erase/write may fail. ", size / 1024,
901 max_rom_decode.fwh / 1024, "FWH");
902 }
903 if ((buses & CHIP_BUSTYPE_SPI) && (max_rom_decode.spi < size)) {
904 limitexceeded++;
Sean Nelson316a29f2010-05-07 20:09:04 +0000905 msg_pdbg("Chip size %u kB is bigger than supported "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000906 "size %u kB of chipset/board/programmer "
907 "for %s interface, "
908 "probe/read/erase/write may fail. ", size / 1024,
909 max_rom_decode.spi / 1024, "SPI");
910 }
911 if (!limitexceeded)
912 return 0;
913 /* Sometimes chip and programmer have more than one bus in common,
914 * and the limit is not exceeded on all buses. Tell the user.
915 */
916 if (bitcount(buses) > limitexceeded)
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +0000917 /* FIXME: This message is designed towards CLI users. */
Sean Nelson316a29f2010-05-07 20:09:04 +0000918 msg_pdbg("There is at least one common chip/programmer "
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000919 "interface which can support a chip of this size. "
920 "You can try --force at your own risk.\n");
921 return 1;
922}
923
Peter Stuge483b8f02008-09-03 23:10:05 +0000924struct flashchip *probe_flash(struct flashchip *first_flash, int force)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000925{
Peter Stuge483b8f02008-09-03 23:10:05 +0000926 struct flashchip *flash;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000927 unsigned long base = 0;
928 uint32_t size;
929 enum chipbustype buses_common;
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000930 char *tmp;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000931
Peter Stuge483b8f02008-09-03 23:10:05 +0000932 for (flash = first_flash; flash && flash->name; flash++) {
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000933 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000934 continue;
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +0000935 msg_gdbg("Probing for %s %s, %d KB: ",
Stefan Reinauerac378972008-03-17 22:59:40 +0000936 flash->vendor, flash->name, flash->total_size);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +0000937 if (!flash->probe && !force) {
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +0000938 msg_gdbg("failed! flashrom has no probe function for "
939 "this flash chip.\n");
Peter Stugef31104c2008-04-28 14:47:30 +0000940 continue;
941 }
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000942 buses_common = buses_supported & flash->bustype;
943 if (!buses_common) {
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000944 tmp = flashbuses_to_text(buses_supported);
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +0000945 msg_gdbg("skipped.");
946 msg_gspew(" Host bus type %s ", tmp);
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000947 free(tmp);
948 tmp = flashbuses_to_text(flash->bustype);
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +0000949 msg_gspew("and chip bus type %s are incompatible.",
950 tmp);
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000951 free(tmp);
Carl-Daniel Hailfinger12575e52010-03-22 23:43:51 +0000952 msg_gdbg("\n");
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000953 continue;
954 }
Stefan Reinauer70385642007-04-06 11:58:03 +0000955
Ollie Lhocbbf1252004-03-17 22:22:08 +0000956 size = flash->total_size * 1024;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000957 check_max_decode(buses_common, size);
Stefan Reinauer70385642007-04-06 11:58:03 +0000958
Carl-Daniel Hailfinger97d6b092009-05-09 07:27:23 +0000959 base = flashbase ? flashbase : (0xffffffff - size + 1);
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000960 flash->virtual_memory = (chipaddr)programmer_map_flash_region("flash chip", base, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000961
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000962 if (force)
963 break;
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000964
Peter Stuge483b8f02008-09-03 23:10:05 +0000965 if (flash->probe(flash) != 1)
966 goto notfound;
967
Uwe Hermann394131e2008-10-18 21:14:13 +0000968 if (first_flash == flashchips
969 || flash->model_id != GENERIC_DEVICE_ID)
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000970 break;
971
Peter Stuge483b8f02008-09-03 23:10:05 +0000972notfound:
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000973 programmer_unmap_flash_region((void *)flash->virtual_memory, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000974 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000975
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000976 if (!flash || !flash->name)
977 return NULL;
978
Sean Nelson316a29f2010-05-07 20:09:04 +0000979 msg_cinfo("%s chip \"%s %s\" (%d KB, %s) at physical address 0x%lx.\n",
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000980 force ? "Assuming" : "Found",
Uwe Hermann9899cad2009-06-28 21:47:57 +0000981 flash->vendor, flash->name, flash->total_size,
982 flashbuses_to_text(flash->bustype), base);
983
Sean Nelson6e0b9122010-02-19 00:52:10 +0000984 if (flash->printlock)
985 flash->printlock(flash);
986
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000987 return flash;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000988}
989
Stefan Reinauere3705282005-12-18 16:41:10 +0000990int verify_flash(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000991{
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000992 int ret;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000993 int total_size = flash->total_size * 1024;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000994
Sean Nelson316a29f2010-05-07 20:09:04 +0000995 msg_cinfo("Verifying flash... ");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000996
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000997 ret = verify_range(flash, buf, 0, total_size, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000998
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000999 if (!ret)
Sean Nelson316a29f2010-05-07 20:09:04 +00001000 msg_cinfo("VERIFIED. \n");
Stefan Reinauerfcb63682006-03-16 16:57:41 +00001001
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +00001002 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001003}
1004
Carl-Daniel Hailfinger49eb4dd2009-06-19 11:23:57 +00001005int read_flash(struct flashchip *flash, char *filename)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001006{
1007 unsigned long numbytes;
1008 FILE *image;
1009 unsigned long size = flash->total_size * 1024;
1010 unsigned char *buf = calloc(size, sizeof(char));
Stephan Guilloux21dd55b2009-06-01 22:07:52 +00001011
1012 if (!filename) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001013 msg_gerr("Error: No filename specified.\n");
Stephan Guilloux21dd55b2009-06-01 22:07:52 +00001014 return 1;
1015 }
Patrick Georgi0bf842d2010-01-25 22:55:33 +00001016 if ((image = fopen(filename, "wb")) == NULL) {
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001017 perror(filename);
1018 exit(1);
1019 }
Sean Nelson316a29f2010-05-07 20:09:04 +00001020 msg_cinfo("Reading flash... ");
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001021 if (!flash->read) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001022 msg_cinfo("FAILED!\n");
1023 msg_cerr("ERROR: flashrom has no read function for this flash chip.\n");
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00001024 return 1;
1025 } else
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +00001026 flash->read(flash, buf, 0, size);
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001027
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001028 numbytes = fwrite(buf, 1, size, image);
1029 fclose(image);
Stephan Guilloux5a8b2442009-06-01 21:37:00 +00001030 free(buf);
Sean Nelson316a29f2010-05-07 20:09:04 +00001031 msg_cinfo("%s.\n", numbytes == size ? "done" : "FAILED");
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001032 if (numbytes != size)
1033 return 1;
1034 return 0;
1035}
1036
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001037/* This function shares a lot of its structure with erase_flash().
1038 * Even if an error is found, the function will keep going and check the rest.
1039 */
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001040int selfcheck_eraseblocks(struct flashchip *flash)
1041{
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001042 int i, j, k;
1043 int ret = 0;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001044
1045 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
1046 unsigned int done = 0;
1047 struct block_eraser eraser = flash->block_erasers[k];
1048
1049 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1050 /* Blocks with zero size are bugs in flashchips.c. */
1051 if (eraser.eraseblocks[i].count &&
1052 !eraser.eraseblocks[i].size) {
1053 msg_gerr("ERROR: Flash chip %s erase function "
1054 "%i region %i has size 0. Please report"
1055 " a bug at flashrom@flashrom.org\n",
1056 flash->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001057 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001058 }
1059 /* Blocks with zero count are bugs in flashchips.c. */
1060 if (!eraser.eraseblocks[i].count &&
1061 eraser.eraseblocks[i].size) {
1062 msg_gerr("ERROR: Flash chip %s erase function "
1063 "%i region %i has count 0. Please report"
1064 " a bug at flashrom@flashrom.org\n",
1065 flash->name, k, i);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001066 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001067 }
1068 done += eraser.eraseblocks[i].count *
1069 eraser.eraseblocks[i].size;
1070 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001071 /* Empty eraseblock definition with erase function. */
1072 if (!done && eraser.block_erase)
Sean Nelson316a29f2010-05-07 20:09:04 +00001073 msg_gspew("Strange: Empty eraseblock definition with "
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001074 "non-empty erase function. Not an error.\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001075 if (!done)
1076 continue;
1077 if (done != flash->total_size * 1024) {
1078 msg_gerr("ERROR: Flash chip %s erase function %i "
1079 "region walking resulted in 0x%06x bytes total,"
1080 " expected 0x%06x bytes. Please report a bug at"
1081 " flashrom@flashrom.org\n", flash->name, k,
1082 done, flash->total_size * 1024);
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001083 ret = 1;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001084 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001085 if (!eraser.block_erase)
1086 continue;
1087 /* Check if there are identical erase functions for different
1088 * layouts. That would imply "magic" erase functions. The
1089 * easiest way to check this is with function pointers.
1090 */
Uwe Hermann43959702010-03-13 17:28:29 +00001091 for (j = k + 1; j < NUM_ERASEFUNCTIONS; j++) {
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001092 if (eraser.block_erase ==
1093 flash->block_erasers[j].block_erase) {
1094 msg_gerr("ERROR: Flash chip %s erase function "
1095 "%i and %i are identical. Please report"
1096 " a bug at flashrom@flashrom.org\n",
1097 flash->name, k, j);
1098 ret = 1;
1099 }
Uwe Hermann43959702010-03-13 17:28:29 +00001100 }
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001101 }
Carl-Daniel Hailfinger415afcf2010-01-19 06:42:46 +00001102 return ret;
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001103}
1104
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001105int erase_flash(struct flashchip *flash)
1106{
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001107 int i, j, k, ret = 0, found = 0;
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +00001108 unsigned int start, len;
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001109
Sean Nelson316a29f2010-05-07 20:09:04 +00001110 msg_cinfo("Erasing flash chip... ");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001111 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +00001112 unsigned int done = 0;
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001113 struct block_eraser eraser = flash->block_erasers[k];
1114
Sean Nelson316a29f2010-05-07 20:09:04 +00001115 msg_cdbg("Looking at blockwise erase function %i... ", k);
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001116 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001117 msg_cdbg("not defined. "
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001118 "Looking for another erase function.\n");
1119 continue;
1120 }
1121 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001122 msg_cdbg("eraseblock layout is known, but no "
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001123 "matching block erase function found. "
1124 "Looking for another erase function.\n");
1125 continue;
1126 }
1127 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001128 msg_cdbg("block erase function found, but "
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001129 "eraseblock layout is unknown. "
1130 "Looking for another erase function.\n");
1131 continue;
1132 }
1133 found = 1;
Sean Nelson316a29f2010-05-07 20:09:04 +00001134 msg_cdbg("trying... ");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001135 for (i = 0; i < NUM_ERASEREGIONS; i++) {
1136 /* count==0 for all automatically initialized array
1137 * members so the loop below won't be executed for them.
1138 */
1139 for (j = 0; j < eraser.eraseblocks[i].count; j++) {
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +00001140 start = done + eraser.eraseblocks[i].size * j;
1141 len = eraser.eraseblocks[i].size;
Sean Nelson316a29f2010-05-07 20:09:04 +00001142 msg_cdbg("0x%06x-0x%06x, ", start,
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +00001143 start + len - 1);
1144 ret = eraser.block_erase(flash, start, len);
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001145 if (ret)
1146 break;
1147 }
1148 if (ret)
1149 break;
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +00001150 done += eraser.eraseblocks[i].count *
1151 eraser.eraseblocks[i].size;
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001152 }
Sean Nelson316a29f2010-05-07 20:09:04 +00001153 msg_cdbg("\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001154 /* If everything is OK, don't try another erase function. */
1155 if (!ret)
1156 break;
1157 }
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001158 if (!found) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001159 msg_cerr("ERROR: flashrom has no erase function for this flash chip.\n");
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001160 return 1;
1161 }
Carl-Daniel Hailfingerf160a122009-05-08 17:15:15 +00001162
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001163 if (ret) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001164 msg_cerr("FAILED!\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001165 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +00001166 msg_cinfo("SUCCESS.\n");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001167 }
1168 return ret;
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +00001169}
1170
Uwe Hermannc67d0372009-10-01 18:40:02 +00001171void emergency_help_message(void)
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001172{
Sean Nelson316a29f2010-05-07 20:09:04 +00001173 msg_gerr("Your flash chip is in an unknown state.\n"
Uwe Hermannc67d0372009-10-01 18:40:02 +00001174 "Get help on IRC at irc.freenode.net (channel #flashrom) or\n"
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001175 "mail flashrom@flashrom.org!\n"
1176 "-------------------------------------------------------------"
1177 "------------------\n"
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001178 "DO NOT REBOOT OR POWEROFF!\n");
1179}
1180
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001181/* The way to go if you want a delimited list of programmers*/
1182void list_programmers(char *delim)
1183{
1184 enum programmer p;
1185 for (p = 0; p < PROGRAMMER_INVALID; p++) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001186 msg_ginfo("%s", programmer_table[p].name);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001187 if (p < PROGRAMMER_INVALID - 1)
Sean Nelson316a29f2010-05-07 20:09:04 +00001188 msg_ginfo("%s", delim);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001189 }
Sean Nelson316a29f2010-05-07 20:09:04 +00001190 msg_ginfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001191}
1192
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001193void print_sysinfo(void)
1194{
1195#if HAVE_UTSNAME == 1
1196 struct utsname osinfo;
1197 uname(&osinfo);
1198
1199 msg_ginfo(" on %s %s (%s)", osinfo.sysname, osinfo.release,
1200 osinfo.machine);
1201#else
1202 msg_ginfo(" on unknown machine");
1203#endif
1204 msg_ginfo(", built with");
1205#if NEED_PCI == 1
1206#ifdef PCILIB_VERSION
1207 msg_ginfo(" libpci %s,", PCILIB_VERSION);
1208#else
1209 msg_ginfo(" unknown PCI library,");
1210#endif
1211#endif
1212#ifdef __clang__
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001213 msg_ginfo(" LLVM %i/clang %i, ", __llvm__, __clang__);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001214#elif defined(__GNUC__)
1215 msg_ginfo(" GCC");
1216#ifdef __VERSION__
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001217 msg_ginfo(" %s,", __VERSION__);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001218#else
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001219 msg_ginfo(" unknown version,");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001220#endif
1221#else
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001222 msg_ginfo(" unknown compiler,");
1223#endif
1224#if defined (__FLASHROM_LITTLE_ENDIAN__)
1225 msg_ginfo(" little endian");
1226#else
1227 msg_ginfo(" big endian");
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001228#endif
1229 msg_ginfo("\n");
1230}
1231
Bernhard Walle201bde32008-01-21 15:24:22 +00001232void print_version(void)
1233{
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001234 msg_ginfo("flashrom v%s", flashrom_version);
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +00001235 print_sysinfo();
Bernhard Walle201bde32008-01-21 15:24:22 +00001236}
1237
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001238void print_banner(void)
1239{
1240 msg_ginfo("flashrom is free software, get the source code at "
1241 "http://www.flashrom.org\n");
1242 msg_ginfo("\n");
1243}
1244
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001245int selfcheck(void)
1246{
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001247 int ret = 0;
1248 struct flashchip *flash;
1249
1250 /* Safety check. Instead of aborting after the first error, check
1251 * if more errors exist.
1252 */
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001253 if (ARRAY_SIZE(programmer_table) - 1 != PROGRAMMER_INVALID) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001254 msg_gerr("Programmer table miscompilation!\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001255 ret = 1;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001256 }
1257 if (spi_programmer_count - 1 != SPI_CONTROLLER_INVALID) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001258 msg_gerr("SPI programmer table miscompilation!\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001259 ret = 1;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001260 }
1261#if BITBANG_SPI_SUPPORT == 1
1262 if (bitbang_spi_master_count - 1 != BITBANG_SPI_INVALID) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001263 msg_gerr("Bitbanging SPI master table miscompilation!\n");
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001264 ret = 1;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001265 }
1266#endif
Carl-Daniel Hailfinger293adf02010-01-18 08:14:43 +00001267 for (flash = flashchips; flash && flash->name; flash++)
1268 if (selfcheck_eraseblocks(flash))
1269 ret = 1;
1270 return ret;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001271}
1272
1273void check_chip_supported(struct flashchip *flash)
1274{
1275 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001276 msg_cinfo("===\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001277 if (flash->tested & TEST_BAD_MASK) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001278 msg_cinfo("This flash part has status NOT WORKING for operations:");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001279 if (flash->tested & TEST_BAD_PROBE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001280 msg_cinfo(" PROBE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001281 if (flash->tested & TEST_BAD_READ)
Sean Nelson316a29f2010-05-07 20:09:04 +00001282 msg_cinfo(" READ");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001283 if (flash->tested & TEST_BAD_ERASE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001284 msg_cinfo(" ERASE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001285 if (flash->tested & TEST_BAD_WRITE)
Sean Nelson316a29f2010-05-07 20:09:04 +00001286 msg_cinfo(" WRITE");
1287 msg_cinfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001288 }
1289 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
1290 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
1291 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
1292 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001293 msg_cinfo("This flash part has status UNTESTED for operations:");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001294 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001295 msg_cinfo(" PROBE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001296 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
Sean Nelson316a29f2010-05-07 20:09:04 +00001297 msg_cinfo(" READ");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001298 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001299 msg_cinfo(" ERASE");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001300 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
Sean Nelson316a29f2010-05-07 20:09:04 +00001301 msg_cinfo(" WRITE");
1302 msg_cinfo("\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001303 }
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001304 /* FIXME: This message is designed towards CLI users. */
Carl-Daniel Hailfinger8841d3e2010-05-15 15:04:37 +00001305 msg_cinfo("The test status of this chip may have been updated "
1306 "in the latest development\n"
1307 "version of flashrom. If you are running the latest "
1308 "development version,\n"
1309 "please email a report to flashrom@flashrom.org if "
1310 "any of the above operations\n"
1311 "work correctly for you with this flash part. Please "
1312 "include the flashrom\n"
1313 "output with the additional -V option for all "
1314 "operations you tested (-V, -Vr,\n"
1315 "-Vw, -VE), and mention which mainboard or "
1316 "programmer you tested.\n"
1317 "Thanks for your help!\n"
1318 "===\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001319 }
1320}
1321
Ollie Lho761bf1b2004-03-20 16:46:10 +00001322int main(int argc, char *argv[])
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001323{
Carl-Daniel Hailfingera84835a2010-01-07 03:24:05 +00001324 return cli_classic(argc, argv);
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001325}
1326
1327/* This function signature is horrible. We need to design a better interface,
1328 * but right now it allows us to split off the CLI code.
1329 */
1330int doit(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1331{
1332 uint8_t *buf;
1333 unsigned long numbytes;
1334 FILE *image;
1335 int ret = 0;
1336 unsigned long size;
1337
1338 size = flash->total_size * 1024;
Ollie Lho184a4042005-11-26 21:55:36 +00001339 buf = (uint8_t *) calloc(size, sizeof(char));
Uwe Hermanna7e05482007-05-09 10:17:44 +00001340
Ollie Lhoefa28582004-12-08 20:10:01 +00001341 if (erase_it) {
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001342 if (flash->tested & TEST_BAD_ERASE) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001343 msg_cerr("Erase is not working on this chip. ");
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001344 if (!force) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001345 msg_cerr("Aborting.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001346 programmer_shutdown();
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001347 return 1;
1348 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +00001349 msg_cerr("Continuing anyway.\n");
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001350 }
1351 }
Sean Nelson6e0b9122010-02-19 00:52:10 +00001352 if (flash->unlock)
1353 flash->unlock(flash);
1354
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001355 if (erase_flash(flash)) {
1356 emergency_help_message();
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001357 programmer_shutdown();
Peter Stugef31104c2008-04-28 14:47:30 +00001358 return 1;
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001359 }
Ollie Lhoefa28582004-12-08 20:10:01 +00001360 } else if (read_it) {
Sean Nelson6e0b9122010-02-19 00:52:10 +00001361 if (flash->unlock)
1362 flash->unlock(flash);
1363
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001364 if (read_flash(flash, filename)) {
1365 programmer_shutdown();
Peter Stuge1fec0f32009-01-12 21:00:35 +00001366 return 1;
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001367 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001368 } else {
Stefan Reinauer018aca82006-11-21 23:48:51 +00001369 struct stat image_stat;
1370
Sean Nelson6e0b9122010-02-19 00:52:10 +00001371 if (flash->unlock)
1372 flash->unlock(flash);
1373
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001374 if (flash->tested & TEST_BAD_ERASE) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001375 msg_cerr("Erase is not working on this chip "
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001376 "and erase is needed for write. ");
1377 if (!force) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001378 msg_cerr("Aborting.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001379 programmer_shutdown();
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001380 return 1;
1381 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +00001382 msg_cerr("Continuing anyway.\n");
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001383 }
1384 }
1385 if (flash->tested & TEST_BAD_WRITE) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001386 msg_cerr("Write is not working on this chip. ");
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001387 if (!force) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001388 msg_cerr("Aborting.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001389 programmer_shutdown();
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001390 return 1;
1391 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +00001392 msg_cerr("Continuing anyway.\n");
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001393 }
1394 }
Patrick Georgi0bf842d2010-01-25 22:55:33 +00001395 if ((image = fopen(filename, "rb")) == NULL) {
Ollie Lhocbbf1252004-03-17 22:22:08 +00001396 perror(filename);
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001397 programmer_shutdown();
Ollie Lhocbbf1252004-03-17 22:22:08 +00001398 exit(1);
1399 }
Stefan Reinauer018aca82006-11-21 23:48:51 +00001400 if (fstat(fileno(image), &image_stat) != 0) {
1401 perror(filename);
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001402 programmer_shutdown();
Stefan Reinauer018aca82006-11-21 23:48:51 +00001403 exit(1);
1404 }
Uwe Hermanna7e05482007-05-09 10:17:44 +00001405 if (image_stat.st_size != flash->total_size * 1024) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001406 msg_gerr("Error: Image size doesn't match\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001407 programmer_shutdown();
Stefan Reinauer018aca82006-11-21 23:48:51 +00001408 exit(1);
1409 }
1410
Peter Stuge1fec0f32009-01-12 21:00:35 +00001411 numbytes = fread(buf, 1, size, image);
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001412#if INTERNAL_SUPPORT == 1
Peter Stuge7ffbc6f2008-06-18 02:08:40 +00001413 show_id(buf, size, force);
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001414#endif
Ollie Lhocbbf1252004-03-17 22:22:08 +00001415 fclose(image);
Peter Stuge1fec0f32009-01-12 21:00:35 +00001416 if (numbytes != size) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001417 msg_gerr("Error: Failed to read file. Got %ld bytes, wanted %ld!\n", numbytes, size);
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001418 programmer_shutdown();
Peter Stuge1fec0f32009-01-12 21:00:35 +00001419 return 1;
1420 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001421 }
1422
Ollie Lho184a4042005-11-26 21:55:36 +00001423 // This should be moved into each flash part's code to do it
1424 // cleanly. This does the job.
Carl-Daniel Hailfingerf5fb51c2009-08-19 15:19:18 +00001425 handle_romentries(buf, flash);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001426
Ollie Lho184a4042005-11-26 21:55:36 +00001427 // ////////////////////////////////////////////////////////////
Uwe Hermanna7e05482007-05-09 10:17:44 +00001428
Peter Stugef31104c2008-04-28 14:47:30 +00001429 if (write_it) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001430 msg_cinfo("Writing flash chip... ");
Peter Stugef31104c2008-04-28 14:47:30 +00001431 if (!flash->write) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001432 msg_cerr("Error: flashrom has no write function for this flash chip.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001433 programmer_shutdown();
Peter Stugef31104c2008-04-28 14:47:30 +00001434 return 1;
1435 }
Carl-Daniel Hailfinger0a3e5ae2009-07-24 12:18:54 +00001436 ret = flash->write(flash, buf);
1437 if (ret) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001438 msg_cerr("FAILED!\n");
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001439 emergency_help_message();
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001440 programmer_shutdown();
Carl-Daniel Hailfinger0a3e5ae2009-07-24 12:18:54 +00001441 return 1;
1442 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +00001443 msg_cinfo("COMPLETE.\n");
Carl-Daniel Hailfinger0a3e5ae2009-07-24 12:18:54 +00001444 }
Peter Stugef31104c2008-04-28 14:47:30 +00001445 }
Ollie Lho184a4042005-11-26 21:55:36 +00001446
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001447 if (verify_it) {
1448 /* Work around chips which need some time to calm down. */
1449 if (write_it)
1450 programmer_delay(1000*1000);
Carl-Daniel Hailfinger0a3e5ae2009-07-24 12:18:54 +00001451 ret = verify_flash(flash, buf);
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001452 /* If we tried to write, and verification now fails, we
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001453 * might have an emergency situation.
1454 */
1455 if (ret && write_it)
1456 emergency_help_message();
1457 }
Ollie Lho184a4042005-11-26 21:55:36 +00001458
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001459 programmer_shutdown();
1460
Stefan Reinauer143da0b2006-01-04 16:42:57 +00001461 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001462}