blob: added61826337ba8d0ac47cde8ae1f2632ce2f13 [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>
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000030#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000031#include "flashchips.h"
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000032
Carl-Daniel Hailfingera80cfbc2009-07-22 20:13:00 +000033const char *flashrom_version = FLASHROM_VERSION;
Ronald G. Minnichceec4202003-07-25 04:37:41 +000034char *chip_to_probe = NULL;
Peter Stuge7ffbc6f2008-06-18 02:08:40 +000035int verbose = 0;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000036
37#if INTERNAL_SUPPORT == 1
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +000038enum programmer programmer = PROGRAMMER_INTERNAL;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000039#elif DUMMY_SUPPORT == 1
40enum programmer programmer = PROGRAMMER_DUMMY;
41#else
42/* Activating the #error explodes on make dep. */
43//#error Neither internal nor dummy selected
44#endif
45
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +000046char *programmer_param = NULL;
Stefan Reinauer70385642007-04-06 11:58:03 +000047
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000048/**
49 * flashrom defaults to Parallel/LPC/FWH flash devices. If a known host
50 * controller is found, the init routine sets the buses_supported bitfield to
51 * contain the supported buses for that controller.
52 */
53enum chipbustype buses_supported = CHIP_BUSTYPE_NONSPI;
54
55/**
56 * Programmers supporting multiple buses can have differing size limits on
57 * each bus. Store the limits for each bus in a common struct.
58 */
59struct decode_sizes max_rom_decode = {
60 .parallel = 0xffffffff,
61 .lpc = 0xffffffff,
62 .fwh = 0xffffffff,
63 .spi = 0xffffffff
64};
65
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +000066const struct programmer_entry programmer_table[] = {
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000067#if INTERNAL_SUPPORT == 1
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +000068 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +000069 .name = "internal",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000070 .init = internal_init,
71 .shutdown = internal_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +000072 .map_flash_region = physmap,
73 .unmap_flash_region = physunmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000074 .chip_readb = internal_chip_readb,
75 .chip_readw = internal_chip_readw,
76 .chip_readl = internal_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000077 .chip_readn = internal_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000078 .chip_writeb = internal_chip_writeb,
79 .chip_writew = internal_chip_writew,
80 .chip_writel = internal_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000081 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000082 .delay = internal_delay,
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +000083 },
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000084#endif
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000085
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +000086#if DUMMY_SUPPORT == 1
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000087 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +000088 .name = "dummy",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000089 .init = dummy_init,
90 .shutdown = dummy_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +000091 .map_flash_region = dummy_map,
92 .unmap_flash_region = dummy_unmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000093 .chip_readb = dummy_chip_readb,
94 .chip_readw = dummy_chip_readw,
95 .chip_readl = dummy_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000096 .chip_readn = dummy_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000097 .chip_writeb = dummy_chip_writeb,
98 .chip_writew = dummy_chip_writew,
99 .chip_writel = dummy_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000100 .chip_writen = dummy_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000101 .delay = internal_delay,
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000102 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000103#endif
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000104
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000105#if NIC3COM_SUPPORT == 1
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000106 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000107 .name = "nic3com",
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000108 .init = nic3com_init,
109 .shutdown = nic3com_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +0000110 .map_flash_region = fallback_map,
111 .unmap_flash_region = fallback_unmap,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000112 .chip_readb = nic3com_chip_readb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +0000113 .chip_readw = fallback_chip_readw,
114 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000115 .chip_readn = fallback_chip_readn,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000116 .chip_writeb = nic3com_chip_writeb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +0000117 .chip_writew = fallback_chip_writew,
118 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000119 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000120 .delay = internal_delay,
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000121 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000122#endif
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000123
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000124#if GFXNVIDIA_SUPPORT == 1
125 {
126 .name = "gfxnvidia",
127 .init = gfxnvidia_init,
128 .shutdown = gfxnvidia_shutdown,
129 .map_flash_region = fallback_map,
130 .unmap_flash_region = fallback_unmap,
131 .chip_readb = gfxnvidia_chip_readb,
132 .chip_readw = fallback_chip_readw,
133 .chip_readl = fallback_chip_readl,
134 .chip_readn = fallback_chip_readn,
135 .chip_writeb = gfxnvidia_chip_writeb,
136 .chip_writew = fallback_chip_writew,
137 .chip_writel = fallback_chip_writel,
138 .chip_writen = fallback_chip_writen,
139 .delay = internal_delay,
140 },
141#endif
142
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000143#if DRKAISER_SUPPORT == 1
Rudolf Marek68720c72009-05-17 19:39:27 +0000144 {
TURBO Jb0912c02009-09-02 23:00:46 +0000145 .name = "drkaiser",
146 .init = drkaiser_init,
147 .shutdown = drkaiser_shutdown,
148 .map_flash_region = fallback_map,
149 .unmap_flash_region = fallback_unmap,
150 .chip_readb = drkaiser_chip_readb,
151 .chip_readw = fallback_chip_readw,
152 .chip_readl = fallback_chip_readl,
153 .chip_readn = fallback_chip_readn,
154 .chip_writeb = drkaiser_chip_writeb,
155 .chip_writew = fallback_chip_writew,
156 .chip_writel = fallback_chip_writel,
157 .chip_writen = fallback_chip_writen,
158 .delay = internal_delay,
159 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000160#endif
TURBO Jb0912c02009-09-02 23:00:46 +0000161
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000162#if SATASII_SUPPORT == 1
TURBO Jb0912c02009-09-02 23:00:46 +0000163 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000164 .name = "satasii",
Rudolf Marek68720c72009-05-17 19:39:27 +0000165 .init = satasii_init,
166 .shutdown = satasii_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +0000167 .map_flash_region = fallback_map,
168 .unmap_flash_region = fallback_unmap,
Rudolf Marek68720c72009-05-17 19:39:27 +0000169 .chip_readb = satasii_chip_readb,
170 .chip_readw = fallback_chip_readw,
171 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000172 .chip_readn = fallback_chip_readn,
Rudolf Marek68720c72009-05-17 19:39:27 +0000173 .chip_writeb = satasii_chip_writeb,
174 .chip_writew = fallback_chip_writew,
175 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000176 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000177 .delay = internal_delay,
Rudolf Marek68720c72009-05-17 19:39:27 +0000178 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000179#endif
Rudolf Marek68720c72009-05-17 19:39:27 +0000180
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000181#if INTERNAL_SUPPORT == 1
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000182 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000183 .name = "it87spi",
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000184 .init = it87spi_init,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000185 .shutdown = noop_shutdown,
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000186 .map_flash_region = fallback_map,
187 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000188 .chip_readb = noop_chip_readb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000189 .chip_readw = fallback_chip_readw,
190 .chip_readl = fallback_chip_readl,
191 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000192 .chip_writeb = noop_chip_writeb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000193 .chip_writew = fallback_chip_writew,
194 .chip_writel = fallback_chip_writel,
195 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000196 .delay = internal_delay,
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000197 },
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000198#endif
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000199
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000200#if FT2232_SPI_SUPPORT == 1
Paul Fox05dfbe62009-06-16 21:08:06 +0000201 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000202 .name = "ft2232spi",
Paul Fox05dfbe62009-06-16 21:08:06 +0000203 .init = ft2232_spi_init,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000204 .shutdown = noop_shutdown, /* Missing shutdown */
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000205 .map_flash_region = fallback_map,
206 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000207 .chip_readb = noop_chip_readb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000208 .chip_readw = fallback_chip_readw,
209 .chip_readl = fallback_chip_readl,
210 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000211 .chip_writeb = noop_chip_writeb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000212 .chip_writew = fallback_chip_writew,
213 .chip_writel = fallback_chip_writel,
214 .chip_writen = fallback_chip_writen,
215 .delay = internal_delay,
216 },
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000217#endif
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000218
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000219#if SERPROG_SUPPORT == 1
Urja Rannikko22915352009-06-23 11:33:43 +0000220 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000221 .name = "serprog",
Urja Rannikko22915352009-06-23 11:33:43 +0000222 .init = serprog_init,
223 .shutdown = serprog_shutdown,
224 .map_flash_region = fallback_map,
225 .unmap_flash_region = fallback_unmap,
226 .chip_readb = serprog_chip_readb,
227 .chip_readw = fallback_chip_readw,
228 .chip_readl = fallback_chip_readl,
229 .chip_readn = serprog_chip_readn,
230 .chip_writeb = serprog_chip_writeb,
231 .chip_writew = fallback_chip_writew,
232 .chip_writel = fallback_chip_writel,
233 .chip_writen = fallback_chip_writen,
234 .delay = serprog_delay,
235 },
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000236#endif
Paul Fox05dfbe62009-06-16 21:08:06 +0000237
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000238#if BUSPIRATE_SPI_SUPPORT == 1
239 {
240 .name = "buspiratespi",
241 .init = buspirate_spi_init,
242 .shutdown = buspirate_spi_shutdown,
243 .map_flash_region = fallback_map,
244 .unmap_flash_region = fallback_unmap,
245 .chip_readb = noop_chip_readb,
246 .chip_readw = fallback_chip_readw,
247 .chip_readl = fallback_chip_readl,
248 .chip_readn = fallback_chip_readn,
249 .chip_writeb = noop_chip_writeb,
250 .chip_writew = fallback_chip_writew,
251 .chip_writel = fallback_chip_writel,
252 .chip_writen = fallback_chip_writen,
253 .delay = internal_delay,
254 },
255#endif
256
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000257 {}, /* This entry corresponds to PROGRAMMER_INVALID. */
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000258};
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000259
Uwe Hermann09e04f72009-05-16 22:36:00 +0000260int programmer_init(void)
261{
262 return programmer_table[programmer].init();
263}
264
265int programmer_shutdown(void)
266{
267 return programmer_table[programmer].shutdown();
268}
269
270void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
271 size_t len)
272{
273 return programmer_table[programmer].map_flash_region(descr,
274 phys_addr, len);
275}
276
277void programmer_unmap_flash_region(void *virt_addr, size_t len)
278{
279 programmer_table[programmer].unmap_flash_region(virt_addr, len);
280}
281
282void chip_writeb(uint8_t val, chipaddr addr)
283{
284 programmer_table[programmer].chip_writeb(val, addr);
285}
286
287void chip_writew(uint16_t val, chipaddr addr)
288{
289 programmer_table[programmer].chip_writew(val, addr);
290}
291
292void chip_writel(uint32_t val, chipaddr addr)
293{
294 programmer_table[programmer].chip_writel(val, addr);
295}
296
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000297void chip_writen(uint8_t *buf, chipaddr addr, size_t len)
298{
299 programmer_table[programmer].chip_writen(buf, addr, len);
300}
301
Uwe Hermann09e04f72009-05-16 22:36:00 +0000302uint8_t chip_readb(const chipaddr addr)
303{
304 return programmer_table[programmer].chip_readb(addr);
305}
306
307uint16_t chip_readw(const chipaddr addr)
308{
309 return programmer_table[programmer].chip_readw(addr);
310}
311
312uint32_t chip_readl(const chipaddr addr)
313{
314 return programmer_table[programmer].chip_readl(addr);
315}
316
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000317void chip_readn(uint8_t *buf, chipaddr addr, size_t len)
318{
319 programmer_table[programmer].chip_readn(buf, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000320}
321
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000322void programmer_delay(int usecs)
323{
324 programmer_table[programmer].delay(usecs);
325}
326
Peter Stuge776d2022009-01-26 00:39:57 +0000327void map_flash_registers(struct flashchip *flash)
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000328{
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000329 size_t size = flash->total_size * 1024;
Carl-Daniel Hailfingerd0fc9462009-05-11 14:01:17 +0000330 /* Flash registers live 4 MByte below the flash. */
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +0000331 /* FIXME: This is incorrect for nonstandard flashbase. */
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000332 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000333}
334
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000335int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000336{
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000337 chip_readn(buf, flash->virtual_memory + start, len);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000338
339 return 0;
340}
341
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000342unsigned long flashbase = 0;
343
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000344int min(int a, int b)
345{
346 return (a < b) ? a : b;
347}
348
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000349int max(int a, int b)
350{
351 return (a > b) ? a : b;
352}
353
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000354int bitcount(unsigned long a)
355{
356 int i = 0;
357 for (; a != 0; a >>= 1)
358 if (a & 1)
359 i++;
360 return i;
361}
362
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000363char *strcat_realloc(char *dest, const char *src)
364{
365 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
366 if (!dest)
367 return NULL;
368 strcat(dest, src);
369 return dest;
370}
371
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000372/* This is a somewhat hacked function similar in some ways to strtok().
373 * It will look for needle in haystack, return a copy of needle and remove
374 * everything from the first occurrence of needle to the next delimiter
375 * from haystack.
376 */
377char *extract_param(char **haystack, char *needle, char *delim)
378{
379 char *param_pos, *rest, *tmp;
380 char *dev = NULL;
381 int devlen;
382
383 param_pos = strstr(*haystack, needle);
384 do {
385 if (!param_pos)
386 return NULL;
387 /* Beginning of the string? */
388 if (param_pos == *haystack)
389 break;
390 /* After a delimiter? */
391 if (strchr(delim, *(param_pos - 1)))
392 break;
393 /* Continue searching. */
394 param_pos++;
395 param_pos = strstr(param_pos, needle);
396 } while (1);
397
398 if (param_pos) {
399 param_pos += strlen(needle);
400 devlen = strcspn(param_pos, delim);
401 if (devlen) {
402 dev = malloc(devlen + 1);
403 if (!dev) {
404 fprintf(stderr, "Out of memory!\n");
405 exit(1);
406 }
407 strncpy(dev, param_pos, devlen);
408 dev[devlen] = '\0';
409 }
410 rest = param_pos + devlen;
411 rest += strspn(rest, delim);
412 param_pos -= strlen(needle);
413 memmove(param_pos, rest, strlen(rest) + 1);
414 tmp = realloc(*haystack, strlen(*haystack) + 1);
415 if (!tmp) {
416 fprintf(stderr, "Out of memory!\n");
417 exit(1);
418 }
419 *haystack = tmp;
420 }
421
422
423 return dev;
424}
425
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000426/* start is an offset to the base address of the flash chip */
427int check_erased_range(struct flashchip *flash, int start, int len)
428{
429 int ret;
430 uint8_t *cmpbuf = malloc(len);
431
432 if (!cmpbuf) {
433 fprintf(stderr, "Could not allocate memory!\n");
434 exit(1);
435 }
436 memset(cmpbuf, 0xff, len);
437 ret = verify_range(flash, cmpbuf, start, len, "ERASE");
438 free(cmpbuf);
439 return ret;
440}
441
442/**
Carl-Daniel Hailfingerd0250a32009-11-25 17:05:52 +0000443 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
444 flash content at location start
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000445 * @start offset to the base address of the flash chip
446 * @len length of the verified area
447 * @message string to print in the "FAILED" message
448 * @return 0 for success, -1 for failure
449 */
450int verify_range(struct flashchip *flash, uint8_t *cmpbuf, int start, int len, char *message)
451{
452 int i, j, starthere, lenhere, ret = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000453 int page_size = flash->page_size;
454 uint8_t *readbuf = malloc(page_size);
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000455 int failcount = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000456
457 if (!len)
458 goto out_free;
459
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000460 if (!flash->read) {
461 fprintf(stderr, "ERROR: flashrom has no read function for this flash chip.\n");
462 return 1;
463 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000464 if (!readbuf) {
465 fprintf(stderr, "Could not allocate memory!\n");
466 exit(1);
467 }
468
469 if (start + len > flash->total_size * 1024) {
470 fprintf(stderr, "Error: %s called with start 0x%x + len 0x%x >"
471 " total_size 0x%x\n", __func__, start, len,
472 flash->total_size * 1024);
473 ret = -1;
474 goto out_free;
475 }
476 if (!message)
477 message = "VERIFY";
478
479 /* Warning: This loop has a very unusual condition and body.
480 * The loop needs to go through each page with at least one affected
481 * byte. The lowest page number is (start / page_size) since that
482 * division rounds down. The highest page number we want is the page
483 * where the last byte of the range lives. That last byte has the
484 * address (start + len - 1), thus the highest page number is
485 * (start + len - 1) / page_size. Since we want to include that last
486 * page as well, the loop condition uses <=.
487 */
488 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
489 /* Byte position of the first byte in the range in this page. */
490 starthere = max(start, i * page_size);
491 /* Length of bytes in the range in this page. */
492 lenhere = min(start + len, (i + 1) * page_size) - starthere;
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000493 flash->read(flash, readbuf, starthere, lenhere);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000494 for (j = 0; j < lenhere; j++) {
495 if (cmpbuf[starthere - start + j] != readbuf[j]) {
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000496 /* Only print the first failure. */
497 if (!failcount++)
498 fprintf(stderr, "%s FAILED at 0x%08x! "
499 "Expected=0x%02x, Read=0x%02x,",
500 message, starthere + j,
501 cmpbuf[starthere - start + j],
502 readbuf[j]);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000503 }
504 }
505 }
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000506 if (failcount) {
507 fprintf(stderr, " failed byte count from 0x%08x-0x%08x: 0x%x\n",
508 start, start + len - 1, failcount);
509 ret = -1;
510 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000511
512out_free:
513 free(readbuf);
514 return ret;
515}
516
Carl-Daniel Hailfingereaac68b2009-11-23 12:55:31 +0000517/* This function generates various test patterns useful for testing controller
518 * and chip communication as well as chip behaviour.
519 *
520 * If a byte can be written multiple times, each time keeping 0-bits at 0
521 * and changing 1-bits to 0 if the new value for that bit is 0, the effect
522 * is essentially an AND operation. That's also the reason why this function
523 * provides the result of AND between various patterns.
524 *
525 * Below is a list of patterns (and their block length).
526 * Pattern 0 is 05 15 25 35 45 55 65 75 85 95 a5 b5 c5 d5 e5 f5 (16 Bytes)
527 * Pattern 1 is 0a 1a 2a 3a 4a 5a 6a 7a 8a 9a aa ba ca da ea fa (16 Bytes)
528 * Pattern 2 is 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f (16 Bytes)
529 * Pattern 3 is a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af (16 Bytes)
530 * Pattern 4 is 00 10 20 30 40 50 60 70 80 90 a0 b0 c0 d0 e0 f0 (16 Bytes)
531 * Pattern 5 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f (16 Bytes)
532 * Pattern 6 is 00 (1 Byte)
533 * Pattern 7 is ff (1 Byte)
534 * Patterns 0-7 have a big-endian block number in the last 2 bytes of each 256
535 * byte block.
536 *
537 * Pattern 8 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11... (256 B)
538 * Pattern 9 is ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ef ee... (256 B)
539 * Pattern 10 is 00 00 00 01 00 02 00 03 00 04... (128 kB big-endian counter)
540 * Pattern 11 is ff ff ff fe ff fd ff fc ff fb... (128 kB big-endian downwards)
541 * Pattern 12 is 00 (1 Byte)
542 * Pattern 13 is ff (1 Byte)
543 * Patterns 8-13 have no block number.
544 *
545 * Patterns 0-3 are created to detect and efficiently diagnose communication
546 * slips like missed bits or bytes and their repetitive nature gives good visual
547 * cues to the person inspecting the results. In addition, the following holds:
548 * AND Pattern 0/1 == Pattern 4
549 * AND Pattern 2/3 == Pattern 5
550 * AND Pattern 0/1/2/3 == AND Pattern 4/5 == Pattern 6
551 * A weakness of pattern 0-5 is the inability to detect swaps/copies between
552 * any two 16-byte blocks except for the last 16-byte block in a 256-byte bloc.
553 * They work perfectly for detecting any swaps/aliasing of blocks >= 256 bytes.
554 * 0x5 and 0xa were picked because they are 0101 and 1010 binary.
555 * Patterns 8-9 are best for detecting swaps/aliasing of blocks < 256 bytes.
556 * Besides that, they provide for bit testing of the last two bytes of every
557 * 256 byte block which contains the block number for patterns 0-6.
558 * Patterns 10-11 are special purpose for detecting subblock aliasing with
559 * block sizes >256 bytes (some Dataflash chips etc.)
560 * AND Pattern 8/9 == Pattern 12
561 * AND Pattern 10/11 == Pattern 12
562 * Pattern 13 is the completely erased state.
563 * None of the patterns can detect aliasing at boundaries which are a multiple
564 * of 16 MBytes (but such chips do not exist anyway for Parallel/LPC/FWH/SPI).
565 */
566int generate_testpattern(uint8_t *buf, uint32_t size, int variant)
567{
568 int i;
569
570 if (!buf) {
571 fprintf(stderr, "Invalid buffer!\n");
572 return 1;
573 }
574
575 switch (variant) {
576 case 0:
577 for (i = 0; i < size; i++)
578 buf[i] = (i & 0xf) << 4 | 0x5;
579 break;
580 case 1:
581 for (i = 0; i < size; i++)
582 buf[i] = (i & 0xf) << 4 | 0xa;
583 break;
584 case 2:
585 for (i = 0; i < size; i++)
586 buf[i] = 0x50 | (i & 0xf);
587 break;
588 case 3:
589 for (i = 0; i < size; i++)
590 buf[i] = 0xa0 | (i & 0xf);
591 break;
592 case 4:
593 for (i = 0; i < size; i++)
594 buf[i] = (i & 0xf) << 4;
595 break;
596 case 5:
597 for (i = 0; i < size; i++)
598 buf[i] = i & 0xf;
599 break;
600 case 6:
601 memset(buf, 0x00, size);
602 break;
603 case 7:
604 memset(buf, 0xff, size);
605 break;
606 case 8:
607 for (i = 0; i < size; i++)
608 buf[i] = i & 0xff;
609 break;
610 case 9:
611 for (i = 0; i < size; i++)
612 buf[i] = ~(i & 0xff);
613 break;
614 case 10:
615 for (i = 0; i < size % 2; i++) {
616 buf[i * 2] = (i >> 8) & 0xff;
617 buf[i * 2 + 1] = i & 0xff;
618 }
619 if (size & 0x1)
620 buf[i * 2] = (i >> 8) & 0xff;
621 break;
622 case 11:
623 for (i = 0; i < size % 2; i++) {
624 buf[i * 2] = ~((i >> 8) & 0xff);
625 buf[i * 2 + 1] = ~(i & 0xff);
626 }
627 if (size & 0x1)
628 buf[i * 2] = ~((i >> 8) & 0xff);
629 break;
630 case 12:
631 memset(buf, 0x00, size);
632 break;
633 case 13:
634 memset(buf, 0xff, size);
635 break;
636 }
637
638 if ((variant >= 0) && (variant <= 7)) {
639 /* Write block number in the last two bytes of each 256-byte
640 * block, big endian for easier reading of the hexdump.
641 * Note that this wraps around for chips larger than 2^24 bytes
642 * (16 MB).
643 */
644 for (i = 0; i < size / 256; i++) {
645 buf[i * 256 + 254] = (i >> 8) & 0xff;
646 buf[i * 256 + 255] = i & 0xff;
647 }
648 }
649
650 return 0;
651}
652
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000653int check_max_decode(enum chipbustype buses, uint32_t size)
654{
655 int limitexceeded = 0;
656 if ((buses & CHIP_BUSTYPE_PARALLEL) &&
657 (max_rom_decode.parallel < size)) {
658 limitexceeded++;
659 printf_debug("Chip size %u kB is bigger than supported "
660 "size %u kB of chipset/board/programmer "
661 "for %s interface, "
662 "probe/read/erase/write may fail. ", size / 1024,
663 max_rom_decode.parallel / 1024, "Parallel");
664 }
665 if ((buses & CHIP_BUSTYPE_LPC) && (max_rom_decode.lpc < size)) {
666 limitexceeded++;
667 printf_debug("Chip size %u kB is bigger than supported "
668 "size %u kB of chipset/board/programmer "
669 "for %s interface, "
670 "probe/read/erase/write may fail. ", size / 1024,
671 max_rom_decode.lpc / 1024, "LPC");
672 }
673 if ((buses & CHIP_BUSTYPE_FWH) && (max_rom_decode.fwh < size)) {
674 limitexceeded++;
675 printf_debug("Chip size %u kB is bigger than supported "
676 "size %u kB of chipset/board/programmer "
677 "for %s interface, "
678 "probe/read/erase/write may fail. ", size / 1024,
679 max_rom_decode.fwh / 1024, "FWH");
680 }
681 if ((buses & CHIP_BUSTYPE_SPI) && (max_rom_decode.spi < size)) {
682 limitexceeded++;
683 printf_debug("Chip size %u kB is bigger than supported "
684 "size %u kB of chipset/board/programmer "
685 "for %s interface, "
686 "probe/read/erase/write may fail. ", size / 1024,
687 max_rom_decode.spi / 1024, "SPI");
688 }
689 if (!limitexceeded)
690 return 0;
691 /* Sometimes chip and programmer have more than one bus in common,
692 * and the limit is not exceeded on all buses. Tell the user.
693 */
694 if (bitcount(buses) > limitexceeded)
695 printf_debug("There is at least one common chip/programmer "
696 "interface which can support a chip of this size. "
697 "You can try --force at your own risk.\n");
698 return 1;
699}
700
Peter Stuge483b8f02008-09-03 23:10:05 +0000701struct flashchip *probe_flash(struct flashchip *first_flash, int force)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000702{
Peter Stuge483b8f02008-09-03 23:10:05 +0000703 struct flashchip *flash;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000704 unsigned long base = 0;
705 uint32_t size;
706 enum chipbustype buses_common;
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000707 char *tmp;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000708
Peter Stuge483b8f02008-09-03 23:10:05 +0000709 for (flash = first_flash; flash && flash->name; flash++) {
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000710 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000711 continue;
Stefan Reinauerac378972008-03-17 22:59:40 +0000712 printf_debug("Probing for %s %s, %d KB: ",
713 flash->vendor, flash->name, flash->total_size);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +0000714 if (!flash->probe && !force) {
Peter Stugef31104c2008-04-28 14:47:30 +0000715 printf_debug("failed! flashrom has no probe function for this flash chip.\n");
Peter Stugef31104c2008-04-28 14:47:30 +0000716 continue;
717 }
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000718 buses_common = buses_supported & flash->bustype;
719 if (!buses_common) {
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000720 tmp = flashbuses_to_text(buses_supported);
721 printf_debug("skipped. Host bus type %s ", tmp);
722 free(tmp);
723 tmp = flashbuses_to_text(flash->bustype);
724 printf_debug("and chip bus type %s are incompatible.\n", tmp);
725 free(tmp);
726 continue;
727 }
Stefan Reinauer70385642007-04-06 11:58:03 +0000728
Ollie Lhocbbf1252004-03-17 22:22:08 +0000729 size = flash->total_size * 1024;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000730 check_max_decode(buses_common, size);
Stefan Reinauer70385642007-04-06 11:58:03 +0000731
Carl-Daniel Hailfinger97d6b092009-05-09 07:27:23 +0000732 base = flashbase ? flashbase : (0xffffffff - size + 1);
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000733 flash->virtual_memory = (chipaddr)programmer_map_flash_region("flash chip", base, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000734
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000735 if (force)
736 break;
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000737
Peter Stuge483b8f02008-09-03 23:10:05 +0000738 if (flash->probe(flash) != 1)
739 goto notfound;
740
Uwe Hermann394131e2008-10-18 21:14:13 +0000741 if (first_flash == flashchips
742 || flash->model_id != GENERIC_DEVICE_ID)
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000743 break;
744
Peter Stuge483b8f02008-09-03 23:10:05 +0000745notfound:
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000746 programmer_unmap_flash_region((void *)flash->virtual_memory, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000747 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000748
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000749 if (!flash || !flash->name)
750 return NULL;
751
Uwe Hermann9899cad2009-06-28 21:47:57 +0000752 printf("Found chip \"%s %s\" (%d KB, %s) at physical address 0x%lx.\n",
753 flash->vendor, flash->name, flash->total_size,
754 flashbuses_to_text(flash->bustype), base);
755
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000756 return flash;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000757}
758
Stefan Reinauere3705282005-12-18 16:41:10 +0000759int verify_flash(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000760{
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000761 int ret;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000762 int total_size = flash->total_size * 1024;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000763
Uwe Hermanna502dce2007-10-17 23:55:15 +0000764 printf("Verifying flash... ");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000765
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000766 ret = verify_range(flash, buf, 0, total_size, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000767
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000768 if (!ret)
769 printf("VERIFIED. \n");
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000770
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000771 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000772}
773
Carl-Daniel Hailfinger49eb4dd2009-06-19 11:23:57 +0000774int read_flash(struct flashchip *flash, char *filename)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000775{
776 unsigned long numbytes;
777 FILE *image;
778 unsigned long size = flash->total_size * 1024;
779 unsigned char *buf = calloc(size, sizeof(char));
Stephan Guilloux21dd55b2009-06-01 22:07:52 +0000780
781 if (!filename) {
782 printf("Error: No filename specified.\n");
783 return 1;
784 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000785 if ((image = fopen(filename, "w")) == NULL) {
786 perror(filename);
787 exit(1);
788 }
789 printf("Reading flash... ");
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000790 if (!flash->read) {
791 printf("FAILED!\n");
792 fprintf(stderr, "ERROR: flashrom has no read function for this flash chip.\n");
793 return 1;
794 } else
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000795 flash->read(flash, buf, 0, size);
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000796
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000797 numbytes = fwrite(buf, 1, size, image);
798 fclose(image);
Stephan Guilloux5a8b2442009-06-01 21:37:00 +0000799 free(buf);
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000800 printf("%s.\n", numbytes == size ? "done" : "FAILED");
801 if (numbytes != size)
802 return 1;
803 return 0;
804}
805
806int erase_flash(struct flashchip *flash)
807{
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000808 int i, j, k, ret = 0, found = 0;
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +0000809 unsigned int start, len;
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000810
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000811 printf("Erasing flash chip... ");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000812 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +0000813 unsigned int done = 0;
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000814 struct block_eraser eraser = flash->block_erasers[k];
815
816 printf_debug("Looking at blockwise erase function %i... ", k);
817 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
818 printf_debug("not defined. "
819 "Looking for another erase function.\n");
820 continue;
821 }
822 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
823 printf_debug("eraseblock layout is known, but no "
824 "matching block erase function found. "
825 "Looking for another erase function.\n");
826 continue;
827 }
828 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
829 printf_debug("block erase function found, but "
830 "eraseblock layout is unknown. "
831 "Looking for another erase function.\n");
832 continue;
833 }
834 found = 1;
835 printf_debug("trying... ");
836 for (i = 0; i < NUM_ERASEREGIONS; i++) {
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +0000837 /* Blocks with zero size are bugs in flashchips.c.
838 * FIXME: This check should be performed on startup.
839 */
840 if (eraser.eraseblocks[i].count &&
841 !eraser.eraseblocks[i].size) {
842 fprintf(stderr, "ERROR: Erase region with size "
843 "0 for this chip. Please report a bug "
844 "at flashrom@flashrom.org\n");
845 ret = 1;
846 break;
847 }
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000848 /* count==0 for all automatically initialized array
849 * members so the loop below won't be executed for them.
850 */
851 for (j = 0; j < eraser.eraseblocks[i].count; j++) {
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +0000852 start = done + eraser.eraseblocks[i].size * j;
853 len = eraser.eraseblocks[i].size;
854 printf_debug("0x%06x-0x%06x, ", start,
855 start + len - 1);
856 ret = eraser.block_erase(flash, start, len);
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000857 if (ret)
858 break;
859 }
860 if (ret)
861 break;
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +0000862 done += eraser.eraseblocks[i].count *
863 eraser.eraseblocks[i].size;
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000864 }
Carl-Daniel Hailfinger9d489162009-12-14 04:04:18 +0000865 printf_debug("\n");
866 if (done != flash->total_size * 1024)
867 fprintf(stderr, "ERROR: Erase region walking erased "
868 "0x%06x bytes total, expected 0x%06x bytes.",
869 done, flash->total_size * 1024);
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000870 /* If everything is OK, don't try another erase function. */
871 if (!ret)
872 break;
873 }
874 /* If no block erase function was found or block erase failed, retry. */
875 if ((!found || ret) && (flash->erase)) {
876 found = 1;
877 printf_debug("Trying whole-chip erase function... ");
878 ret = flash->erase(flash);
879 }
880 if (!found) {
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000881 fprintf(stderr, "ERROR: flashrom has no erase function for this flash chip.\n");
882 return 1;
883 }
Carl-Daniel Hailfingerf160a122009-05-08 17:15:15 +0000884
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000885 if (ret) {
886 fprintf(stderr, "FAILED!\n");
887 } else {
888 printf("SUCCESS.\n");
889 }
890 return ret;
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000891}
892
Uwe Hermannc67d0372009-10-01 18:40:02 +0000893void emergency_help_message(void)
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +0000894{
895 fprintf(stderr, "Your flash chip is in an unknown state.\n"
Uwe Hermannc67d0372009-10-01 18:40:02 +0000896 "Get help on IRC at irc.freenode.net (channel #flashrom) or\n"
897 "mail flashrom@flashrom.org!\n--------------------"
898 "-----------------------------------------------------------\n"
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +0000899 "DO NOT REBOOT OR POWEROFF!\n");
900}
901
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +0000902/* The way to go if you want a delimited list of programmers*/
903void list_programmers(char *delim)
904{
905 enum programmer p;
906 for (p = 0; p < PROGRAMMER_INVALID; p++) {
907 printf("%s", programmer_table[p].name);
908 if (p < PROGRAMMER_INVALID - 1)
909 printf("%s", delim);
910 }
911 printf("\n");
912}
913
914void cli_usage(const char *name)
Ronald G. Minniche5559572003-03-28 03:29:43 +0000915{
Carl-Daniel Hailfinger204b0762009-08-13 11:38:44 +0000916 const char *pname;
917 int pnamelen;
918 int remaining = 0;
919 enum programmer p;
920
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +0000921 printf("cli_usage: %s [-VfLzhR] [-E|-r file|-w file|-v file] [-c chipname]\n"
Carl-Daniel Hailfinger5d1f4182009-06-24 08:18:38 +0000922 " [-m [vendor:]part] [-l file] [-i image] [-p programmer]\n\n", name);
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +0000923
Uwe Hermanne8ba5382009-05-22 11:37:27 +0000924 printf("Please note that the command line interface for flashrom will "
925 "change before\nflashrom 1.0. Do not use flashrom in scripts "
926 "or other automated tools without\nchecking that your flashrom"
927 " version won't interpret options in a different way.\n\n");
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +0000928
Uwe Hermanna7e05482007-05-09 10:17:44 +0000929 printf
Peter Stuge6b53fed2008-01-27 16:21:21 +0000930 (" -r | --read: read flash and save into file\n"
931 " -w | --write: write file into flash\n"
932 " -v | --verify: verify flash against file\n"
Uwe Hermannea07f622009-06-24 17:31:08 +0000933 " -n | --noverify: don't verify flash against file\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000934 " -E | --erase: erase flash device\n"
935 " -V | --verbose: more verbose output\n"
936 " -c | --chip <chipname>: probe only for specified flash chip\n"
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000937#if INTERNAL_SUPPORT == 1
Peter Stuge6b53fed2008-01-27 16:21:21 +0000938 " -m | --mainboard <[vendor:]part>: override mainboard settings\n"
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000939#endif
Peter Stuge6b53fed2008-01-27 16:21:21 +0000940 " -f | --force: force write without checking image\n"
Uwe Hermanne8ba5382009-05-22 11:37:27 +0000941 " -l | --layout <file.layout>: read ROM layout from file\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000942 " -i | --image <name>: only flash image name from flash layout\n"
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000943 " -L | --list-supported: print supported devices\n"
Uwe Hermann707f1eb2009-09-18 13:38:14 +0000944#if PRINT_WIKI_SUPPORT == 1
Uwe Hermann20a293f2009-06-19 10:42:43 +0000945 " -z | --list-supported-wiki: print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000946#endif
Carl-Daniel Hailfinger204b0762009-08-13 11:38:44 +0000947 " -p | --programmer <name>: specify the programmer device");
948
949 for (p = 0; p < PROGRAMMER_INVALID; p++) {
950 pname = programmer_table[p].name;
951 pnamelen = strlen(pname);
952 if (remaining - pnamelen - 2 < 0) {
953 printf("\n ");
954 remaining = 43;
955 } else {
956 printf(" ");
957 remaining--;
958 }
959 if (p == 0) {
960 printf("(");
961 remaining--;
962 }
963 printf("%s", pname);
964 remaining -= pnamelen;
965 if (p < PROGRAMMER_INVALID - 1) {
966 printf(",");
967 remaining--;
968 } else {
969 printf(")\n");
970 }
971 }
972
973 printf(
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000974 " -h | --help: print this help text\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000975 " -R | --version: print the version (release)\n"
Carl-Daniel Hailfinger5d1f4182009-06-24 08:18:38 +0000976 "\nYou can specify one of -E, -r, -w, -v or no operation. If no operation is\n"
977 "specified, then all that happens is that flash info is dumped.\n\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000978 exit(1);
Ronald G. Minniche5559572003-03-28 03:29:43 +0000979}
980
Bernhard Walle201bde32008-01-21 15:24:22 +0000981void print_version(void)
982{
Carl-Daniel Hailfingera80cfbc2009-07-22 20:13:00 +0000983 printf("flashrom v%s\n", flashrom_version);
Bernhard Walle201bde32008-01-21 15:24:22 +0000984}
985
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +0000986int selfcheck(void)
987{
988 /* Safety check. */
989 if (ARRAY_SIZE(programmer_table) - 1 != PROGRAMMER_INVALID) {
990 fprintf(stderr, "Programmer table miscompilation!\n");
991 return 1;
992 }
993 if (spi_programmer_count - 1 != SPI_CONTROLLER_INVALID) {
994 fprintf(stderr, "SPI programmer table miscompilation!\n");
995 return 1;
996 }
997#if BITBANG_SPI_SUPPORT == 1
998 if (bitbang_spi_master_count - 1 != BITBANG_SPI_INVALID) {
999 fprintf(stderr, "Bitbanging SPI master table miscompilation!\n");
1000 return 1;
1001 }
1002#endif
1003 return 0;
1004}
1005
1006void check_chip_supported(struct flashchip *flash)
1007{
1008 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
1009 printf("===\n");
1010 if (flash->tested & TEST_BAD_MASK) {
1011 printf("This flash part has status NOT WORKING for operations:");
1012 if (flash->tested & TEST_BAD_PROBE)
1013 printf(" PROBE");
1014 if (flash->tested & TEST_BAD_READ)
1015 printf(" READ");
1016 if (flash->tested & TEST_BAD_ERASE)
1017 printf(" ERASE");
1018 if (flash->tested & TEST_BAD_WRITE)
1019 printf(" WRITE");
1020 printf("\n");
1021 }
1022 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
1023 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
1024 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
1025 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
1026 printf("This flash part has status UNTESTED for operations:");
1027 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
1028 printf(" PROBE");
1029 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
1030 printf(" READ");
1031 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
1032 printf(" ERASE");
1033 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
1034 printf(" WRITE");
1035 printf("\n");
1036 }
1037 printf("Please email a report to flashrom@flashrom.org if any "
1038 "of the above operations\nwork correctly for you with "
1039 "this flash part. Please include the flashrom\noutput "
1040 "with the additional -V option for all operations you "
1041 "tested (-V, -rV,\n-wV, -EV), and mention which "
1042 "mainboard or programmer you tested. Thanks for your "
1043 "help!\n===\n");
1044 }
1045}
1046
Ollie Lho761bf1b2004-03-20 16:46:10 +00001047int main(int argc, char *argv[])
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001048{
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001049 unsigned long size;
Claus Gindhart2fd11d62008-05-08 00:31:44 +00001050 /* Probe for up to three flash chips. */
1051 struct flashchip *flash, *flashes[3];
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +00001052 const char *name;
1053 int namelen;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001054 int opt;
Ollie Lho184a4042005-11-26 21:55:36 +00001055 int option_index = 0;
Peter Stuge7ffbc6f2008-06-18 02:08:40 +00001056 int force = 0;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001057 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +00001058 int dont_verify_it = 0, list_supported = 0;
Uwe Hermann707f1eb2009-09-18 13:38:14 +00001059#if PRINT_WIKI_SUPPORT == 1
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +00001060 int list_supported_wiki = 0;
1061#endif
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +00001062 int operation_specified = 0;
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001063 int i;
Ollie Lho184a4042005-11-26 21:55:36 +00001064
Uwe Hermann707f1eb2009-09-18 13:38:14 +00001065#if PRINT_WIKI_SUPPORT == 1
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +00001066 const char *optstring = "rRwvnVEfc:m:l:i:p:Lzh";
1067#else
1068 const char *optstring = "rRwvnVEfc:m:l:i:p:Lh";
1069#endif
Uwe Hermanna7e05482007-05-09 10:17:44 +00001070 static struct option long_options[] = {
1071 {"read", 0, 0, 'r'},
1072 {"write", 0, 0, 'w'},
1073 {"erase", 0, 0, 'E'},
1074 {"verify", 0, 0, 'v'},
Uwe Hermannea07f622009-06-24 17:31:08 +00001075 {"noverify", 0, 0, 'n'},
Uwe Hermanna7e05482007-05-09 10:17:44 +00001076 {"chip", 1, 0, 'c'},
Uwe Hermanna7e05482007-05-09 10:17:44 +00001077 {"mainboard", 1, 0, 'm'},
1078 {"verbose", 0, 0, 'V'},
1079 {"force", 0, 0, 'f'},
1080 {"layout", 1, 0, 'l'},
1081 {"image", 1, 0, 'i'},
Uwe Hermanne5ac1642008-03-12 11:54:51 +00001082 {"list-supported", 0, 0, 'L'},
Uwe Hermann707f1eb2009-09-18 13:38:14 +00001083#if PRINT_WIKI_SUPPORT == 1
Uwe Hermann20a293f2009-06-19 10:42:43 +00001084 {"list-supported-wiki", 0, 0, 'z'},
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +00001085#endif
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001086 {"programmer", 1, 0, 'p'},
Uwe Hermanna7e05482007-05-09 10:17:44 +00001087 {"help", 0, 0, 'h'},
Bernhard Walle201bde32008-01-21 15:24:22 +00001088 {"version", 0, 0, 'R'},
Uwe Hermanna7e05482007-05-09 10:17:44 +00001089 {0, 0, 0, 0}
Ollie Lho184a4042005-11-26 21:55:36 +00001090 };
Uwe Hermanna7e05482007-05-09 10:17:44 +00001091
Ollie Lhocbbf1252004-03-17 22:22:08 +00001092 char *filename = NULL;
Ronald G. Minnichceec4202003-07-25 04:37:41 +00001093
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001094 char *tempstr = NULL;
Yinghai Luad8ffd22004-10-20 05:07:16 +00001095
Carl-Daniel Hailfinger259fa012009-05-07 00:59:53 +00001096 print_version();
1097
Yinghai Luad8ffd22004-10-20 05:07:16 +00001098 if (argc > 1) {
1099 /* Yes, print them. */
1100 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001101 printf_debug("The arguments are:\n");
Yinghai Luad8ffd22004-10-20 05:07:16 +00001102 for (i = 1; i < argc; ++i)
Uwe Hermanna7e05482007-05-09 10:17:44 +00001103 printf_debug("%s\n", argv[i]);
Yinghai Luad8ffd22004-10-20 05:07:16 +00001104 }
1105
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001106 if (selfcheck())
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +00001107 exit(1);
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +00001108
Ollie Lhocbbf1252004-03-17 22:22:08 +00001109 setbuf(stdout, NULL);
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +00001110 while ((opt = getopt_long(argc, argv, optstring,
Uwe Hermanna7e05482007-05-09 10:17:44 +00001111 long_options, &option_index)) != EOF) {
Ollie Lhocbbf1252004-03-17 22:22:08 +00001112 switch (opt) {
1113 case 'r':
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +00001114 if (++operation_specified > 1) {
1115 fprintf(stderr, "More than one operation "
1116 "specified. Aborting.\n");
1117 exit(1);
1118 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001119 read_it = 1;
1120 break;
1121 case 'w':
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +00001122 if (++operation_specified > 1) {
1123 fprintf(stderr, "More than one operation "
1124 "specified. Aborting.\n");
1125 exit(1);
1126 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001127 write_it = 1;
1128 break;
1129 case 'v':
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001130 //FIXME: gracefully handle superfluous -v
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +00001131 if (++operation_specified > 1) {
1132 fprintf(stderr, "More than one operation "
1133 "specified. Aborting.\n");
1134 exit(1);
1135 }
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001136 if (dont_verify_it) {
1137 fprintf(stderr, "--verify and --noverify are"
1138 "mutually exclusive. Aborting.\n");
1139 exit(1);
1140 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001141 verify_it = 1;
1142 break;
Uwe Hermannea07f622009-06-24 17:31:08 +00001143 case 'n':
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001144 if (verify_it) {
1145 fprintf(stderr, "--verify and --noverify are"
1146 "mutually exclusive. Aborting.\n");
1147 exit(1);
1148 }
Uwe Hermannea07f622009-06-24 17:31:08 +00001149 dont_verify_it = 1;
1150 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001151 case 'c':
1152 chip_to_probe = strdup(optarg);
1153 break;
Ollie Lho789ad3d2004-03-18 20:27:33 +00001154 case 'V':
1155 verbose = 1;
1156 break;
Ollie Lhoefa28582004-12-08 20:10:01 +00001157 case 'E':
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +00001158 if (++operation_specified > 1) {
1159 fprintf(stderr, "More than one operation "
1160 "specified. Aborting.\n");
1161 exit(1);
1162 }
Ollie Lhoefa28582004-12-08 20:10:01 +00001163 erase_it = 1;
1164 break;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001165#if INTERNAL_SUPPORT == 1
Ollie Lho184a4042005-11-26 21:55:36 +00001166 case 'm':
1167 tempstr = strdup(optarg);
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001168 lb_vendor_dev_from_string(tempstr);
Ollie Lho184a4042005-11-26 21:55:36 +00001169 break;
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001170#endif
Ollie Lho184a4042005-11-26 21:55:36 +00001171 case 'f':
Uwe Hermanna7e05482007-05-09 10:17:44 +00001172 force = 1;
Ollie Lho184a4042005-11-26 21:55:36 +00001173 break;
1174 case 'l':
Uwe Hermanna7e05482007-05-09 10:17:44 +00001175 tempstr = strdup(optarg);
Stefan Reinauer0a05d672007-04-14 16:32:59 +00001176 if (read_romlayout(tempstr))
1177 exit(1);
Ollie Lho184a4042005-11-26 21:55:36 +00001178 break;
1179 case 'i':
Uwe Hermanna7e05482007-05-09 10:17:44 +00001180 tempstr = strdup(optarg);
Ollie Lho184a4042005-11-26 21:55:36 +00001181 find_romentry(tempstr);
1182 break;
Uwe Hermanne5ac1642008-03-12 11:54:51 +00001183 case 'L':
Uwe Hermann05fab752009-05-16 23:42:17 +00001184 list_supported = 1;
Uwe Hermanne5ac1642008-03-12 11:54:51 +00001185 break;
Uwe Hermann707f1eb2009-09-18 13:38:14 +00001186#if PRINT_WIKI_SUPPORT == 1
Uwe Hermann20a293f2009-06-19 10:42:43 +00001187 case 'z':
1188 list_supported_wiki = 1;
1189 break;
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +00001190#endif
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001191 case 'p':
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +00001192 for (programmer = 0; programmer < PROGRAMMER_INVALID; programmer++) {
1193 name = programmer_table[programmer].name;
1194 namelen = strlen(name);
1195 if (strncmp(optarg, name, namelen) == 0) {
1196 switch (optarg[namelen]) {
Carl-Daniel Hailfinger664e7ad2009-08-19 15:03:28 +00001197 case ':':
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +00001198 programmer_param = strdup(optarg + namelen + 1);
1199 break;
1200 case '\0':
1201 break;
1202 default:
1203 /* The continue refers to the
1204 * for loop. It is here to be
1205 * able to differentiate between
1206 * foo and foobar.
1207 */
1208 continue;
1209 }
1210 break;
1211 }
1212 }
1213 if (programmer == PROGRAMMER_INVALID) {
Carl-Daniel Hailfinger664e7ad2009-08-19 15:03:28 +00001214 printf("Error: Unknown programmer %s.\n", optarg);
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001215 exit(1);
1216 }
1217 break;
Bernhard Walle201bde32008-01-21 15:24:22 +00001218 case 'R':
Carl-Daniel Hailfinger259fa012009-05-07 00:59:53 +00001219 /* print_version() is always called during startup. */
Bernhard Walle201bde32008-01-21 15:24:22 +00001220 exit(0);
1221 break;
Ollie Lho184a4042005-11-26 21:55:36 +00001222 case 'h':
Ollie Lhocbbf1252004-03-17 22:22:08 +00001223 default:
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001224 cli_usage(argv[0]);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001225 break;
1226 }
1227 }
Yinghai Luad8ffd22004-10-20 05:07:16 +00001228
Uwe Hermann05fab752009-05-16 23:42:17 +00001229 if (list_supported) {
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001230 print_supported();
Uwe Hermann05fab752009-05-16 23:42:17 +00001231 exit(0);
1232 }
1233
Uwe Hermann707f1eb2009-09-18 13:38:14 +00001234#if PRINT_WIKI_SUPPORT == 1
Uwe Hermann20a293f2009-06-19 10:42:43 +00001235 if (list_supported_wiki) {
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001236 print_supported_wiki();
Uwe Hermann20a293f2009-06-19 10:42:43 +00001237 exit(0);
1238 }
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +00001239#endif
Uwe Hermann20a293f2009-06-19 10:42:43 +00001240
Ollie Lhocbbf1252004-03-17 22:22:08 +00001241 if (read_it && write_it) {
Uwe Hermann793bdcd2008-05-22 22:47:04 +00001242 printf("Error: -r and -w are mutually exclusive.\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001243 cli_usage(argv[0]);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001244 }
Ronald G. Minniche5559572003-03-28 03:29:43 +00001245
Ollie Lhocbbf1252004-03-17 22:22:08 +00001246 if (optind < argc)
1247 filename = argv[optind++];
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001248
1249 if (optind < argc) {
1250 printf("Error: Extra parameter found.\n");
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001251 cli_usage(argv[0]);
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001252 }
Ronald G. Minniche5559572003-03-28 03:29:43 +00001253
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +00001254 if (programmer_init()) {
1255 fprintf(stderr, "Error: Programmer initialization failed.\n");
1256 exit(1);
1257 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001258
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001259 // FIXME: Delay calibration should happen in programmer code.
Ollie Lhocbbf1252004-03-17 22:22:08 +00001260 myusec_calibrate_delay();
Ollie Lho184a4042005-11-26 21:55:36 +00001261
Claus Gindhart2fd11d62008-05-08 00:31:44 +00001262 for (i = 0; i < ARRAY_SIZE(flashes); i++) {
Uwe Hermann394131e2008-10-18 21:14:13 +00001263 flashes[i] =
1264 probe_flash(i ? flashes[i - 1] + 1 : flashchips, 0);
Claus Gindhart2fd11d62008-05-08 00:31:44 +00001265 if (!flashes[i])
1266 for (i++; i < ARRAY_SIZE(flashes); i++)
1267 flashes[i] = NULL;
1268 }
1269
1270 if (flashes[1]) {
1271 printf("Multiple flash chips were detected:");
1272 for (i = 0; i < ARRAY_SIZE(flashes) && flashes[i]; i++)
1273 printf(" %s", flashes[i]->name);
1274 printf("\nPlease specify which chip to use with the -c <chipname> option.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001275 programmer_shutdown();
Claus Gindhart2fd11d62008-05-08 00:31:44 +00001276 exit(1);
1277 } else if (!flashes[0]) {
Ollie Lho184a4042005-11-26 21:55:36 +00001278 printf("No EEPROM/flash device found.\n");
Peter Stuge7ffbc6f2008-06-18 02:08:40 +00001279 if (!force || !chip_to_probe) {
1280 printf("If you know which flash chip you have, and if this version of flashrom\n");
1281 printf("supports a similar flash chip, you can try to force read your chip. Run:\n");
1282 printf("flashrom -f -r -c similar_supported_flash_chip filename\n");
1283 printf("\n");
1284 printf("Note: flashrom can never write when the flash chip isn't found automatically.\n");
1285 }
1286 if (force && read_it && chip_to_probe) {
1287 printf("Force read (-f -r -c) requested, forcing chip probe success:\n");
1288 flashes[0] = probe_flash(flashchips, 1);
1289 if (!flashes[0]) {
1290 printf("flashrom does not support a flash chip named '%s'.\n", chip_to_probe);
1291 printf("Run flashrom -L to view the hardware supported in this flashrom version.\n");
1292 exit(1);
1293 }
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001294 printf("Please note that forced reads most likely contain garbage.\n");
Carl-Daniel Hailfinger49eb4dd2009-06-19 11:23:57 +00001295 return read_flash(flashes[0], filename);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +00001296 }
Jordan Crouse144ede62007-10-04 06:26:41 +00001297 // FIXME: flash writes stay enabled!
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001298 programmer_shutdown();
Ollie Lhocbbf1252004-03-17 22:22:08 +00001299 exit(1);
1300 }
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001301
Claus Gindhart2fd11d62008-05-08 00:31:44 +00001302 flash = flashes[0];
1303
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001304 check_chip_supported(flash);
Ollie Lho184a4042005-11-26 21:55:36 +00001305
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001306 size = flash->total_size * 1024;
1307 if (check_max_decode((buses_supported & flash->bustype), size) &&
1308 (!force)) {
1309 fprintf(stderr, "Chip is too big for this programmer "
1310 "(-V gives details). Use --force to override.\n");
1311 programmer_shutdown();
1312 return 1;
1313 }
1314
Jordan Crouse144ede62007-10-04 06:26:41 +00001315 if (!(read_it | write_it | verify_it | erase_it)) {
1316 printf("No operations were specified.\n");
1317 // FIXME: flash writes stay enabled!
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001318 programmer_shutdown();
Jordan Crouse144ede62007-10-04 06:26:41 +00001319 exit(1);
1320 }
1321
Ollie Lhoefa28582004-12-08 20:10:01 +00001322 if (!filename && !erase_it) {
Jordan Crouse144ede62007-10-04 06:26:41 +00001323 printf("Error: No filename specified.\n");
1324 // FIXME: flash writes stay enabled!
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001325 programmer_shutdown();
Jordan Crouse144ede62007-10-04 06:26:41 +00001326 exit(1);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001327 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001328
Uwe Hermannea07f622009-06-24 17:31:08 +00001329 /* Always verify write operations unless -n is used. */
1330 if (write_it && !dont_verify_it)
1331 verify_it = 1;
1332
Carl-Daniel Hailfinger552420b2009-12-24 02:15:55 +00001333 return doit(flash, force, filename, read_it, write_it, erase_it, verify_it);
1334}
1335
1336/* This function signature is horrible. We need to design a better interface,
1337 * but right now it allows us to split off the CLI code.
1338 */
1339int doit(struct flashchip *flash, int force, char *filename, int read_it, int write_it, int erase_it, int verify_it)
1340{
1341 uint8_t *buf;
1342 unsigned long numbytes;
1343 FILE *image;
1344 int ret = 0;
1345 unsigned long size;
1346
1347 size = flash->total_size * 1024;
Ollie Lho184a4042005-11-26 21:55:36 +00001348 buf = (uint8_t *) calloc(size, sizeof(char));
Uwe Hermanna7e05482007-05-09 10:17:44 +00001349
Ollie Lhoefa28582004-12-08 20:10:01 +00001350 if (erase_it) {
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001351 if (flash->tested & TEST_BAD_ERASE) {
1352 fprintf(stderr, "Erase is not working on this chip. ");
1353 if (!force) {
1354 fprintf(stderr, "Aborting.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001355 programmer_shutdown();
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001356 return 1;
1357 } else {
1358 fprintf(stderr, "Continuing anyway.\n");
1359 }
1360 }
1361 if (erase_flash(flash)) {
1362 emergency_help_message();
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001363 programmer_shutdown();
Peter Stugef31104c2008-04-28 14:47:30 +00001364 return 1;
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001365 }
Ollie Lhoefa28582004-12-08 20:10:01 +00001366 } else if (read_it) {
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001367 if (read_flash(flash, filename)) {
1368 programmer_shutdown();
Peter Stuge1fec0f32009-01-12 21:00:35 +00001369 return 1;
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001370 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001371 } else {
Stefan Reinauer018aca82006-11-21 23:48:51 +00001372 struct stat image_stat;
1373
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001374 if (flash->tested & TEST_BAD_ERASE) {
1375 fprintf(stderr, "Erase is not working on this chip "
1376 "and erase is needed for write. ");
1377 if (!force) {
1378 fprintf(stderr, "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 {
1382 fprintf(stderr, "Continuing anyway.\n");
1383 }
1384 }
1385 if (flash->tested & TEST_BAD_WRITE) {
1386 fprintf(stderr, "Write is not working on this chip. ");
1387 if (!force) {
1388 fprintf(stderr, "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 {
1392 fprintf(stderr, "Continuing anyway.\n");
1393 }
1394 }
Ollie Lho761bf1b2004-03-20 16:46:10 +00001395 if ((image = fopen(filename, "r")) == 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) {
Uwe Hermann793bdcd2008-05-22 22:47:04 +00001406 fprintf(stderr, "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) {
1417 fprintf(stderr, "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) {
Paul Foxd51410c2009-06-12 08:04:08 +00001430 printf("Writing flash chip... ");
Peter Stugef31104c2008-04-28 14:47:30 +00001431 if (!flash->write) {
1432 fprintf(stderr, "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) {
1438 fprintf(stderr, "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 {
1443 printf("COMPLETE.\n");
1444 }
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}