blob: 64a68354db381871a5c4f37f7a54fc82df547bd4 [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 Hailfinger415e5132009-08-12 11:39:29 +000036enum programmer programmer = PROGRAMMER_INTERNAL;
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +000037char *programmer_param = NULL;
Stefan Reinauer70385642007-04-06 11:58:03 +000038
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +000039const struct programmer_entry programmer_table[] = {
40 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +000041 .name = "internal",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000042 .init = internal_init,
43 .shutdown = internal_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +000044 .map_flash_region = physmap,
45 .unmap_flash_region = physunmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000046 .chip_readb = internal_chip_readb,
47 .chip_readw = internal_chip_readw,
48 .chip_readl = internal_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000049 .chip_readn = internal_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000050 .chip_writeb = internal_chip_writeb,
51 .chip_writew = internal_chip_writew,
52 .chip_writel = internal_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000053 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000054 .delay = internal_delay,
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +000055 },
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000056
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +000057#if DUMMY_SUPPORT == 1
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000058 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +000059 .name = "dummy",
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000060 .init = dummy_init,
61 .shutdown = dummy_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +000062 .map_flash_region = dummy_map,
63 .unmap_flash_region = dummy_unmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000064 .chip_readb = dummy_chip_readb,
65 .chip_readw = dummy_chip_readw,
66 .chip_readl = dummy_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000067 .chip_readn = dummy_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000068 .chip_writeb = dummy_chip_writeb,
69 .chip_writew = dummy_chip_writew,
70 .chip_writel = dummy_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000071 .chip_writen = dummy_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000072 .delay = internal_delay,
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000073 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +000074#endif
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000075
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +000076#if NIC3COM_SUPPORT == 1
Uwe Hermannb4dcb712009-05-13 11:36:06 +000077 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +000078 .name = "nic3com",
Uwe Hermannb4dcb712009-05-13 11:36:06 +000079 .init = nic3com_init,
80 .shutdown = nic3com_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +000081 .map_flash_region = fallback_map,
82 .unmap_flash_region = fallback_unmap,
Uwe Hermannb4dcb712009-05-13 11:36:06 +000083 .chip_readb = nic3com_chip_readb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +000084 .chip_readw = fallback_chip_readw,
85 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000086 .chip_readn = fallback_chip_readn,
Uwe Hermannb4dcb712009-05-13 11:36:06 +000087 .chip_writeb = nic3com_chip_writeb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +000088 .chip_writew = fallback_chip_writew,
89 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000090 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000091 .delay = internal_delay,
Uwe Hermannb4dcb712009-05-13 11:36:06 +000092 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +000093#endif
Uwe Hermannb4dcb712009-05-13 11:36:06 +000094
Uwe Hermann2bc98f62009-09-30 18:29:55 +000095#if GFXNVIDIA_SUPPORT == 1
96 {
97 .name = "gfxnvidia",
98 .init = gfxnvidia_init,
99 .shutdown = gfxnvidia_shutdown,
100 .map_flash_region = fallback_map,
101 .unmap_flash_region = fallback_unmap,
102 .chip_readb = gfxnvidia_chip_readb,
103 .chip_readw = fallback_chip_readw,
104 .chip_readl = fallback_chip_readl,
105 .chip_readn = fallback_chip_readn,
106 .chip_writeb = gfxnvidia_chip_writeb,
107 .chip_writew = fallback_chip_writew,
108 .chip_writel = fallback_chip_writel,
109 .chip_writen = fallback_chip_writen,
110 .delay = internal_delay,
111 },
112#endif
113
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000114#if DRKAISER_SUPPORT == 1
Rudolf Marek68720c72009-05-17 19:39:27 +0000115 {
TURBO Jb0912c02009-09-02 23:00:46 +0000116 .name = "drkaiser",
117 .init = drkaiser_init,
118 .shutdown = drkaiser_shutdown,
119 .map_flash_region = fallback_map,
120 .unmap_flash_region = fallback_unmap,
121 .chip_readb = drkaiser_chip_readb,
122 .chip_readw = fallback_chip_readw,
123 .chip_readl = fallback_chip_readl,
124 .chip_readn = fallback_chip_readn,
125 .chip_writeb = drkaiser_chip_writeb,
126 .chip_writew = fallback_chip_writew,
127 .chip_writel = fallback_chip_writel,
128 .chip_writen = fallback_chip_writen,
129 .delay = internal_delay,
130 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000131#endif
TURBO Jb0912c02009-09-02 23:00:46 +0000132
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000133#if SATASII_SUPPORT == 1
TURBO Jb0912c02009-09-02 23:00:46 +0000134 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000135 .name = "satasii",
Rudolf Marek68720c72009-05-17 19:39:27 +0000136 .init = satasii_init,
137 .shutdown = satasii_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +0000138 .map_flash_region = fallback_map,
139 .unmap_flash_region = fallback_unmap,
Rudolf Marek68720c72009-05-17 19:39:27 +0000140 .chip_readb = satasii_chip_readb,
141 .chip_readw = fallback_chip_readw,
142 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000143 .chip_readn = fallback_chip_readn,
Rudolf Marek68720c72009-05-17 19:39:27 +0000144 .chip_writeb = satasii_chip_writeb,
145 .chip_writew = fallback_chip_writew,
146 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000147 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000148 .delay = internal_delay,
Rudolf Marek68720c72009-05-17 19:39:27 +0000149 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000150#endif
Rudolf Marek68720c72009-05-17 19:39:27 +0000151
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000152 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000153 .name = "it87spi",
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000154 .init = it87spi_init,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000155 .shutdown = noop_shutdown,
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000156 .map_flash_region = fallback_map,
157 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000158 .chip_readb = noop_chip_readb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000159 .chip_readw = fallback_chip_readw,
160 .chip_readl = fallback_chip_readl,
161 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000162 .chip_writeb = noop_chip_writeb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000163 .chip_writew = fallback_chip_writew,
164 .chip_writel = fallback_chip_writel,
165 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000166 .delay = internal_delay,
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000167 },
168
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000169#if FT2232_SPI_SUPPORT == 1
Paul Fox05dfbe62009-06-16 21:08:06 +0000170 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000171 .name = "ft2232spi",
Paul Fox05dfbe62009-06-16 21:08:06 +0000172 .init = ft2232_spi_init,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000173 .shutdown = noop_shutdown, /* Missing shutdown */
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000174 .map_flash_region = fallback_map,
175 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000176 .chip_readb = noop_chip_readb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000177 .chip_readw = fallback_chip_readw,
178 .chip_readl = fallback_chip_readl,
179 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000180 .chip_writeb = noop_chip_writeb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000181 .chip_writew = fallback_chip_writew,
182 .chip_writel = fallback_chip_writel,
183 .chip_writen = fallback_chip_writen,
184 .delay = internal_delay,
185 },
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000186#endif
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000187
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000188#if SERPROG_SUPPORT == 1
Urja Rannikko22915352009-06-23 11:33:43 +0000189 {
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000190 .name = "serprog",
Urja Rannikko22915352009-06-23 11:33:43 +0000191 .init = serprog_init,
192 .shutdown = serprog_shutdown,
193 .map_flash_region = fallback_map,
194 .unmap_flash_region = fallback_unmap,
195 .chip_readb = serprog_chip_readb,
196 .chip_readw = fallback_chip_readw,
197 .chip_readl = fallback_chip_readl,
198 .chip_readn = serprog_chip_readn,
199 .chip_writeb = serprog_chip_writeb,
200 .chip_writew = fallback_chip_writew,
201 .chip_writel = fallback_chip_writel,
202 .chip_writen = fallback_chip_writen,
203 .delay = serprog_delay,
204 },
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000205#endif
Paul Fox05dfbe62009-06-16 21:08:06 +0000206
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000207#if BUSPIRATE_SPI_SUPPORT == 1
208 {
209 .name = "buspiratespi",
210 .init = buspirate_spi_init,
211 .shutdown = buspirate_spi_shutdown,
212 .map_flash_region = fallback_map,
213 .unmap_flash_region = fallback_unmap,
214 .chip_readb = noop_chip_readb,
215 .chip_readw = fallback_chip_readw,
216 .chip_readl = fallback_chip_readl,
217 .chip_readn = fallback_chip_readn,
218 .chip_writeb = noop_chip_writeb,
219 .chip_writew = fallback_chip_writew,
220 .chip_writel = fallback_chip_writel,
221 .chip_writen = fallback_chip_writen,
222 .delay = internal_delay,
223 },
224#endif
225
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000226 {}, /* This entry corresponds to PROGRAMMER_INVALID. */
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000227};
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000228
Uwe Hermann09e04f72009-05-16 22:36:00 +0000229int programmer_init(void)
230{
231 return programmer_table[programmer].init();
232}
233
234int programmer_shutdown(void)
235{
236 return programmer_table[programmer].shutdown();
237}
238
239void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
240 size_t len)
241{
242 return programmer_table[programmer].map_flash_region(descr,
243 phys_addr, len);
244}
245
246void programmer_unmap_flash_region(void *virt_addr, size_t len)
247{
248 programmer_table[programmer].unmap_flash_region(virt_addr, len);
249}
250
251void chip_writeb(uint8_t val, chipaddr addr)
252{
253 programmer_table[programmer].chip_writeb(val, addr);
254}
255
256void chip_writew(uint16_t val, chipaddr addr)
257{
258 programmer_table[programmer].chip_writew(val, addr);
259}
260
261void chip_writel(uint32_t val, chipaddr addr)
262{
263 programmer_table[programmer].chip_writel(val, addr);
264}
265
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000266void chip_writen(uint8_t *buf, chipaddr addr, size_t len)
267{
268 programmer_table[programmer].chip_writen(buf, addr, len);
269}
270
Uwe Hermann09e04f72009-05-16 22:36:00 +0000271uint8_t chip_readb(const chipaddr addr)
272{
273 return programmer_table[programmer].chip_readb(addr);
274}
275
276uint16_t chip_readw(const chipaddr addr)
277{
278 return programmer_table[programmer].chip_readw(addr);
279}
280
281uint32_t chip_readl(const chipaddr addr)
282{
283 return programmer_table[programmer].chip_readl(addr);
284}
285
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000286void chip_readn(uint8_t *buf, chipaddr addr, size_t len)
287{
288 programmer_table[programmer].chip_readn(buf, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000289}
290
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000291void programmer_delay(int usecs)
292{
293 programmer_table[programmer].delay(usecs);
294}
295
Peter Stuge776d2022009-01-26 00:39:57 +0000296void map_flash_registers(struct flashchip *flash)
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000297{
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000298 size_t size = flash->total_size * 1024;
Carl-Daniel Hailfingerd0fc9462009-05-11 14:01:17 +0000299 /* Flash registers live 4 MByte below the flash. */
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +0000300 /* FIXME: This is incorrect for nonstandard flashbase. */
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000301 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000302}
303
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000304int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000305{
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000306 chip_readn(buf, flash->virtual_memory + start, len);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000307
308 return 0;
309}
310
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000311int min(int a, int b)
312{
313 return (a < b) ? a : b;
314}
315
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000316int max(int a, int b)
317{
318 return (a > b) ? a : b;
319}
320
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000321int bitcount(unsigned long a)
322{
323 int i = 0;
324 for (; a != 0; a >>= 1)
325 if (a & 1)
326 i++;
327 return i;
328}
329
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000330char *strcat_realloc(char *dest, const char *src)
331{
332 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
333 if (!dest)
334 return NULL;
335 strcat(dest, src);
336 return dest;
337}
338
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000339/* This is a somewhat hacked function similar in some ways to strtok().
340 * It will look for needle in haystack, return a copy of needle and remove
341 * everything from the first occurrence of needle to the next delimiter
342 * from haystack.
343 */
344char *extract_param(char **haystack, char *needle, char *delim)
345{
346 char *param_pos, *rest, *tmp;
347 char *dev = NULL;
348 int devlen;
349
350 param_pos = strstr(*haystack, needle);
351 do {
352 if (!param_pos)
353 return NULL;
354 /* Beginning of the string? */
355 if (param_pos == *haystack)
356 break;
357 /* After a delimiter? */
358 if (strchr(delim, *(param_pos - 1)))
359 break;
360 /* Continue searching. */
361 param_pos++;
362 param_pos = strstr(param_pos, needle);
363 } while (1);
364
365 if (param_pos) {
366 param_pos += strlen(needle);
367 devlen = strcspn(param_pos, delim);
368 if (devlen) {
369 dev = malloc(devlen + 1);
370 if (!dev) {
371 fprintf(stderr, "Out of memory!\n");
372 exit(1);
373 }
374 strncpy(dev, param_pos, devlen);
375 dev[devlen] = '\0';
376 }
377 rest = param_pos + devlen;
378 rest += strspn(rest, delim);
379 param_pos -= strlen(needle);
380 memmove(param_pos, rest, strlen(rest) + 1);
381 tmp = realloc(*haystack, strlen(*haystack) + 1);
382 if (!tmp) {
383 fprintf(stderr, "Out of memory!\n");
384 exit(1);
385 }
386 *haystack = tmp;
387 }
388
389
390 return dev;
391}
392
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000393/* start is an offset to the base address of the flash chip */
394int check_erased_range(struct flashchip *flash, int start, int len)
395{
396 int ret;
397 uint8_t *cmpbuf = malloc(len);
398
399 if (!cmpbuf) {
400 fprintf(stderr, "Could not allocate memory!\n");
401 exit(1);
402 }
403 memset(cmpbuf, 0xff, len);
404 ret = verify_range(flash, cmpbuf, start, len, "ERASE");
405 free(cmpbuf);
406 return ret;
407}
408
409/**
Carl-Daniel Hailfingerd0250a32009-11-25 17:05:52 +0000410 * @cmpbuf buffer to compare against, cmpbuf[0] is expected to match the
411 flash content at location start
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000412 * @start offset to the base address of the flash chip
413 * @len length of the verified area
414 * @message string to print in the "FAILED" message
415 * @return 0 for success, -1 for failure
416 */
417int verify_range(struct flashchip *flash, uint8_t *cmpbuf, int start, int len, char *message)
418{
419 int i, j, starthere, lenhere, ret = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000420 int page_size = flash->page_size;
421 uint8_t *readbuf = malloc(page_size);
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000422 int failcount = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000423
424 if (!len)
425 goto out_free;
426
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000427 if (!flash->read) {
428 fprintf(stderr, "ERROR: flashrom has no read function for this flash chip.\n");
429 return 1;
430 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000431 if (!readbuf) {
432 fprintf(stderr, "Could not allocate memory!\n");
433 exit(1);
434 }
435
436 if (start + len > flash->total_size * 1024) {
437 fprintf(stderr, "Error: %s called with start 0x%x + len 0x%x >"
438 " total_size 0x%x\n", __func__, start, len,
439 flash->total_size * 1024);
440 ret = -1;
441 goto out_free;
442 }
443 if (!message)
444 message = "VERIFY";
445
446 /* Warning: This loop has a very unusual condition and body.
447 * The loop needs to go through each page with at least one affected
448 * byte. The lowest page number is (start / page_size) since that
449 * division rounds down. The highest page number we want is the page
450 * where the last byte of the range lives. That last byte has the
451 * address (start + len - 1), thus the highest page number is
452 * (start + len - 1) / page_size. Since we want to include that last
453 * page as well, the loop condition uses <=.
454 */
455 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
456 /* Byte position of the first byte in the range in this page. */
457 starthere = max(start, i * page_size);
458 /* Length of bytes in the range in this page. */
459 lenhere = min(start + len, (i + 1) * page_size) - starthere;
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000460 flash->read(flash, readbuf, starthere, lenhere);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000461 for (j = 0; j < lenhere; j++) {
462 if (cmpbuf[starthere - start + j] != readbuf[j]) {
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000463 /* Only print the first failure. */
464 if (!failcount++)
465 fprintf(stderr, "%s FAILED at 0x%08x! "
466 "Expected=0x%02x, Read=0x%02x,",
467 message, starthere + j,
468 cmpbuf[starthere - start + j],
469 readbuf[j]);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000470 }
471 }
472 }
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000473 if (failcount) {
474 fprintf(stderr, " failed byte count from 0x%08x-0x%08x: 0x%x\n",
475 start, start + len - 1, failcount);
476 ret = -1;
477 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000478
479out_free:
480 free(readbuf);
481 return ret;
482}
483
Carl-Daniel Hailfingereaac68b2009-11-23 12:55:31 +0000484/* This function generates various test patterns useful for testing controller
485 * and chip communication as well as chip behaviour.
486 *
487 * If a byte can be written multiple times, each time keeping 0-bits at 0
488 * and changing 1-bits to 0 if the new value for that bit is 0, the effect
489 * is essentially an AND operation. That's also the reason why this function
490 * provides the result of AND between various patterns.
491 *
492 * Below is a list of patterns (and their block length).
493 * Pattern 0 is 05 15 25 35 45 55 65 75 85 95 a5 b5 c5 d5 e5 f5 (16 Bytes)
494 * Pattern 1 is 0a 1a 2a 3a 4a 5a 6a 7a 8a 9a aa ba ca da ea fa (16 Bytes)
495 * Pattern 2 is 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f (16 Bytes)
496 * Pattern 3 is a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af (16 Bytes)
497 * Pattern 4 is 00 10 20 30 40 50 60 70 80 90 a0 b0 c0 d0 e0 f0 (16 Bytes)
498 * Pattern 5 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f (16 Bytes)
499 * Pattern 6 is 00 (1 Byte)
500 * Pattern 7 is ff (1 Byte)
501 * Patterns 0-7 have a big-endian block number in the last 2 bytes of each 256
502 * byte block.
503 *
504 * Pattern 8 is 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11... (256 B)
505 * Pattern 9 is ff fe fd fc fb fa f9 f8 f7 f6 f5 f4 f3 f2 f1 f0 ef ee... (256 B)
506 * Pattern 10 is 00 00 00 01 00 02 00 03 00 04... (128 kB big-endian counter)
507 * Pattern 11 is ff ff ff fe ff fd ff fc ff fb... (128 kB big-endian downwards)
508 * Pattern 12 is 00 (1 Byte)
509 * Pattern 13 is ff (1 Byte)
510 * Patterns 8-13 have no block number.
511 *
512 * Patterns 0-3 are created to detect and efficiently diagnose communication
513 * slips like missed bits or bytes and their repetitive nature gives good visual
514 * cues to the person inspecting the results. In addition, the following holds:
515 * AND Pattern 0/1 == Pattern 4
516 * AND Pattern 2/3 == Pattern 5
517 * AND Pattern 0/1/2/3 == AND Pattern 4/5 == Pattern 6
518 * A weakness of pattern 0-5 is the inability to detect swaps/copies between
519 * any two 16-byte blocks except for the last 16-byte block in a 256-byte bloc.
520 * They work perfectly for detecting any swaps/aliasing of blocks >= 256 bytes.
521 * 0x5 and 0xa were picked because they are 0101 and 1010 binary.
522 * Patterns 8-9 are best for detecting swaps/aliasing of blocks < 256 bytes.
523 * Besides that, they provide for bit testing of the last two bytes of every
524 * 256 byte block which contains the block number for patterns 0-6.
525 * Patterns 10-11 are special purpose for detecting subblock aliasing with
526 * block sizes >256 bytes (some Dataflash chips etc.)
527 * AND Pattern 8/9 == Pattern 12
528 * AND Pattern 10/11 == Pattern 12
529 * Pattern 13 is the completely erased state.
530 * None of the patterns can detect aliasing at boundaries which are a multiple
531 * of 16 MBytes (but such chips do not exist anyway for Parallel/LPC/FWH/SPI).
532 */
533int generate_testpattern(uint8_t *buf, uint32_t size, int variant)
534{
535 int i;
536
537 if (!buf) {
538 fprintf(stderr, "Invalid buffer!\n");
539 return 1;
540 }
541
542 switch (variant) {
543 case 0:
544 for (i = 0; i < size; i++)
545 buf[i] = (i & 0xf) << 4 | 0x5;
546 break;
547 case 1:
548 for (i = 0; i < size; i++)
549 buf[i] = (i & 0xf) << 4 | 0xa;
550 break;
551 case 2:
552 for (i = 0; i < size; i++)
553 buf[i] = 0x50 | (i & 0xf);
554 break;
555 case 3:
556 for (i = 0; i < size; i++)
557 buf[i] = 0xa0 | (i & 0xf);
558 break;
559 case 4:
560 for (i = 0; i < size; i++)
561 buf[i] = (i & 0xf) << 4;
562 break;
563 case 5:
564 for (i = 0; i < size; i++)
565 buf[i] = i & 0xf;
566 break;
567 case 6:
568 memset(buf, 0x00, size);
569 break;
570 case 7:
571 memset(buf, 0xff, size);
572 break;
573 case 8:
574 for (i = 0; i < size; i++)
575 buf[i] = i & 0xff;
576 break;
577 case 9:
578 for (i = 0; i < size; i++)
579 buf[i] = ~(i & 0xff);
580 break;
581 case 10:
582 for (i = 0; i < size % 2; i++) {
583 buf[i * 2] = (i >> 8) & 0xff;
584 buf[i * 2 + 1] = i & 0xff;
585 }
586 if (size & 0x1)
587 buf[i * 2] = (i >> 8) & 0xff;
588 break;
589 case 11:
590 for (i = 0; i < size % 2; i++) {
591 buf[i * 2] = ~((i >> 8) & 0xff);
592 buf[i * 2 + 1] = ~(i & 0xff);
593 }
594 if (size & 0x1)
595 buf[i * 2] = ~((i >> 8) & 0xff);
596 break;
597 case 12:
598 memset(buf, 0x00, size);
599 break;
600 case 13:
601 memset(buf, 0xff, size);
602 break;
603 }
604
605 if ((variant >= 0) && (variant <= 7)) {
606 /* Write block number in the last two bytes of each 256-byte
607 * block, big endian for easier reading of the hexdump.
608 * Note that this wraps around for chips larger than 2^24 bytes
609 * (16 MB).
610 */
611 for (i = 0; i < size / 256; i++) {
612 buf[i * 256 + 254] = (i >> 8) & 0xff;
613 buf[i * 256 + 255] = i & 0xff;
614 }
615 }
616
617 return 0;
618}
619
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000620int check_max_decode(enum chipbustype buses, uint32_t size)
621{
622 int limitexceeded = 0;
623 if ((buses & CHIP_BUSTYPE_PARALLEL) &&
624 (max_rom_decode.parallel < size)) {
625 limitexceeded++;
626 printf_debug("Chip size %u kB is bigger than supported "
627 "size %u kB of chipset/board/programmer "
628 "for %s interface, "
629 "probe/read/erase/write may fail. ", size / 1024,
630 max_rom_decode.parallel / 1024, "Parallel");
631 }
632 if ((buses & CHIP_BUSTYPE_LPC) && (max_rom_decode.lpc < size)) {
633 limitexceeded++;
634 printf_debug("Chip size %u kB is bigger than supported "
635 "size %u kB of chipset/board/programmer "
636 "for %s interface, "
637 "probe/read/erase/write may fail. ", size / 1024,
638 max_rom_decode.lpc / 1024, "LPC");
639 }
640 if ((buses & CHIP_BUSTYPE_FWH) && (max_rom_decode.fwh < size)) {
641 limitexceeded++;
642 printf_debug("Chip size %u kB is bigger than supported "
643 "size %u kB of chipset/board/programmer "
644 "for %s interface, "
645 "probe/read/erase/write may fail. ", size / 1024,
646 max_rom_decode.fwh / 1024, "FWH");
647 }
648 if ((buses & CHIP_BUSTYPE_SPI) && (max_rom_decode.spi < size)) {
649 limitexceeded++;
650 printf_debug("Chip size %u kB is bigger than supported "
651 "size %u kB of chipset/board/programmer "
652 "for %s interface, "
653 "probe/read/erase/write may fail. ", size / 1024,
654 max_rom_decode.spi / 1024, "SPI");
655 }
656 if (!limitexceeded)
657 return 0;
658 /* Sometimes chip and programmer have more than one bus in common,
659 * and the limit is not exceeded on all buses. Tell the user.
660 */
661 if (bitcount(buses) > limitexceeded)
662 printf_debug("There is at least one common chip/programmer "
663 "interface which can support a chip of this size. "
664 "You can try --force at your own risk.\n");
665 return 1;
666}
667
Peter Stuge483b8f02008-09-03 23:10:05 +0000668struct flashchip *probe_flash(struct flashchip *first_flash, int force)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000669{
Peter Stuge483b8f02008-09-03 23:10:05 +0000670 struct flashchip *flash;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000671 unsigned long base = 0;
672 uint32_t size;
673 enum chipbustype buses_common;
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000674 char *tmp;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000675
Peter Stuge483b8f02008-09-03 23:10:05 +0000676 for (flash = first_flash; flash && flash->name; flash++) {
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000677 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000678 continue;
Stefan Reinauerac378972008-03-17 22:59:40 +0000679 printf_debug("Probing for %s %s, %d KB: ",
680 flash->vendor, flash->name, flash->total_size);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +0000681 if (!flash->probe && !force) {
Peter Stugef31104c2008-04-28 14:47:30 +0000682 printf_debug("failed! flashrom has no probe function for this flash chip.\n");
Peter Stugef31104c2008-04-28 14:47:30 +0000683 continue;
684 }
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000685 buses_common = buses_supported & flash->bustype;
686 if (!buses_common) {
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000687 tmp = flashbuses_to_text(buses_supported);
688 printf_debug("skipped. Host bus type %s ", tmp);
689 free(tmp);
690 tmp = flashbuses_to_text(flash->bustype);
691 printf_debug("and chip bus type %s are incompatible.\n", tmp);
692 free(tmp);
693 continue;
694 }
Stefan Reinauer70385642007-04-06 11:58:03 +0000695
Ollie Lhocbbf1252004-03-17 22:22:08 +0000696 size = flash->total_size * 1024;
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +0000697 check_max_decode(buses_common, size);
Stefan Reinauer70385642007-04-06 11:58:03 +0000698
Carl-Daniel Hailfinger97d6b092009-05-09 07:27:23 +0000699 base = flashbase ? flashbase : (0xffffffff - size + 1);
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000700 flash->virtual_memory = (chipaddr)programmer_map_flash_region("flash chip", base, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000701
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000702 if (force)
703 break;
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000704
Peter Stuge483b8f02008-09-03 23:10:05 +0000705 if (flash->probe(flash) != 1)
706 goto notfound;
707
Uwe Hermann394131e2008-10-18 21:14:13 +0000708 if (first_flash == flashchips
709 || flash->model_id != GENERIC_DEVICE_ID)
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000710 break;
711
Peter Stuge483b8f02008-09-03 23:10:05 +0000712notfound:
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000713 programmer_unmap_flash_region((void *)flash->virtual_memory, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000714 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000715
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000716 if (!flash || !flash->name)
717 return NULL;
718
Uwe Hermann9899cad2009-06-28 21:47:57 +0000719 printf("Found chip \"%s %s\" (%d KB, %s) at physical address 0x%lx.\n",
720 flash->vendor, flash->name, flash->total_size,
721 flashbuses_to_text(flash->bustype), base);
722
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000723 return flash;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000724}
725
Stefan Reinauere3705282005-12-18 16:41:10 +0000726int verify_flash(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000727{
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000728 int ret;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000729 int total_size = flash->total_size * 1024;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000730
Uwe Hermanna502dce2007-10-17 23:55:15 +0000731 printf("Verifying flash... ");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000732
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000733 ret = verify_range(flash, buf, 0, total_size, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000734
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000735 if (!ret)
736 printf("VERIFIED. \n");
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000737
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000738 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000739}
740
Carl-Daniel Hailfinger49eb4dd2009-06-19 11:23:57 +0000741int read_flash(struct flashchip *flash, char *filename)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000742{
743 unsigned long numbytes;
744 FILE *image;
745 unsigned long size = flash->total_size * 1024;
746 unsigned char *buf = calloc(size, sizeof(char));
Stephan Guilloux21dd55b2009-06-01 22:07:52 +0000747
748 if (!filename) {
749 printf("Error: No filename specified.\n");
750 return 1;
751 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000752 if ((image = fopen(filename, "w")) == NULL) {
753 perror(filename);
754 exit(1);
755 }
756 printf("Reading flash... ");
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000757 if (!flash->read) {
758 printf("FAILED!\n");
759 fprintf(stderr, "ERROR: flashrom has no read function for this flash chip.\n");
760 return 1;
761 } else
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000762 flash->read(flash, buf, 0, size);
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000763
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000764 numbytes = fwrite(buf, 1, size, image);
765 fclose(image);
Stephan Guilloux5a8b2442009-06-01 21:37:00 +0000766 free(buf);
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000767 printf("%s.\n", numbytes == size ? "done" : "FAILED");
768 if (numbytes != size)
769 return 1;
770 return 0;
771}
772
773int erase_flash(struct flashchip *flash)
774{
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000775 int i, j, k, ret = 0, found = 0;
776
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000777 printf("Erasing flash chip... ");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000778 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
779 unsigned long done = 0;
780 struct block_eraser eraser = flash->block_erasers[k];
781
782 printf_debug("Looking at blockwise erase function %i... ", k);
783 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
784 printf_debug("not defined. "
785 "Looking for another erase function.\n");
786 continue;
787 }
788 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
789 printf_debug("eraseblock layout is known, but no "
790 "matching block erase function found. "
791 "Looking for another erase function.\n");
792 continue;
793 }
794 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
795 printf_debug("block erase function found, but "
796 "eraseblock layout is unknown. "
797 "Looking for another erase function.\n");
798 continue;
799 }
800 found = 1;
801 printf_debug("trying... ");
802 for (i = 0; i < NUM_ERASEREGIONS; i++) {
803 /* count==0 for all automatically initialized array
804 * members so the loop below won't be executed for them.
805 */
806 for (j = 0; j < eraser.eraseblocks[i].count; j++) {
807 ret = eraser.block_erase(flash, done + eraser.eraseblocks[i].size * j, eraser.eraseblocks[i].size);
808 if (ret)
809 break;
810 }
811 if (ret)
812 break;
813 }
814 /* If everything is OK, don't try another erase function. */
815 if (!ret)
816 break;
817 }
818 /* If no block erase function was found or block erase failed, retry. */
819 if ((!found || ret) && (flash->erase)) {
820 found = 1;
821 printf_debug("Trying whole-chip erase function... ");
822 ret = flash->erase(flash);
823 }
824 if (!found) {
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000825 fprintf(stderr, "ERROR: flashrom has no erase function for this flash chip.\n");
826 return 1;
827 }
Carl-Daniel Hailfingerf160a122009-05-08 17:15:15 +0000828
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000829 if (ret) {
830 fprintf(stderr, "FAILED!\n");
831 } else {
832 printf("SUCCESS.\n");
833 }
834 return ret;
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000835}
836
Uwe Hermannc67d0372009-10-01 18:40:02 +0000837void emergency_help_message(void)
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +0000838{
839 fprintf(stderr, "Your flash chip is in an unknown state.\n"
Uwe Hermannc67d0372009-10-01 18:40:02 +0000840 "Get help on IRC at irc.freenode.net (channel #flashrom) or\n"
841 "mail flashrom@flashrom.org!\n--------------------"
842 "-----------------------------------------------------------\n"
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +0000843 "DO NOT REBOOT OR POWEROFF!\n");
844}
845
Ronald G. Minniche5559572003-03-28 03:29:43 +0000846void usage(const char *name)
847{
Carl-Daniel Hailfinger204b0762009-08-13 11:38:44 +0000848 const char *pname;
849 int pnamelen;
850 int remaining = 0;
851 enum programmer p;
852
Carl-Daniel Hailfinger49eb4dd2009-06-19 11:23:57 +0000853 printf("usage: %s [-VfLzhR] [-E|-r file|-w file|-v file] [-c chipname]\n"
Carl-Daniel Hailfinger5d1f4182009-06-24 08:18:38 +0000854 " [-m [vendor:]part] [-l file] [-i image] [-p programmer]\n\n", name);
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +0000855
Uwe Hermanne8ba5382009-05-22 11:37:27 +0000856 printf("Please note that the command line interface for flashrom will "
857 "change before\nflashrom 1.0. Do not use flashrom in scripts "
858 "or other automated tools without\nchecking that your flashrom"
859 " version won't interpret options in a different way.\n\n");
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +0000860
Uwe Hermanna7e05482007-05-09 10:17:44 +0000861 printf
Peter Stuge6b53fed2008-01-27 16:21:21 +0000862 (" -r | --read: read flash and save into file\n"
863 " -w | --write: write file into flash\n"
864 " -v | --verify: verify flash against file\n"
Uwe Hermannea07f622009-06-24 17:31:08 +0000865 " -n | --noverify: don't verify flash against file\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000866 " -E | --erase: erase flash device\n"
867 " -V | --verbose: more verbose output\n"
868 " -c | --chip <chipname>: probe only for specified flash chip\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000869 " -m | --mainboard <[vendor:]part>: override mainboard settings\n"
870 " -f | --force: force write without checking image\n"
Uwe Hermanne8ba5382009-05-22 11:37:27 +0000871 " -l | --layout <file.layout>: read ROM layout from file\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000872 " -i | --image <name>: only flash image name from flash layout\n"
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000873 " -L | --list-supported: print supported devices\n"
Uwe Hermann707f1eb2009-09-18 13:38:14 +0000874#if PRINT_WIKI_SUPPORT == 1
Uwe Hermann20a293f2009-06-19 10:42:43 +0000875 " -z | --list-supported-wiki: print supported devices in wiki syntax\n"
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000876#endif
Carl-Daniel Hailfinger204b0762009-08-13 11:38:44 +0000877 " -p | --programmer <name>: specify the programmer device");
878
879 for (p = 0; p < PROGRAMMER_INVALID; p++) {
880 pname = programmer_table[p].name;
881 pnamelen = strlen(pname);
882 if (remaining - pnamelen - 2 < 0) {
883 printf("\n ");
884 remaining = 43;
885 } else {
886 printf(" ");
887 remaining--;
888 }
889 if (p == 0) {
890 printf("(");
891 remaining--;
892 }
893 printf("%s", pname);
894 remaining -= pnamelen;
895 if (p < PROGRAMMER_INVALID - 1) {
896 printf(",");
897 remaining--;
898 } else {
899 printf(")\n");
900 }
901 }
902
903 printf(
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000904 " -h | --help: print this help text\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000905 " -R | --version: print the version (release)\n"
Carl-Daniel Hailfinger5d1f4182009-06-24 08:18:38 +0000906 "\nYou can specify one of -E, -r, -w, -v or no operation. If no operation is\n"
907 "specified, then all that happens is that flash info is dumped.\n\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000908 exit(1);
Ronald G. Minniche5559572003-03-28 03:29:43 +0000909}
910
Bernhard Walle201bde32008-01-21 15:24:22 +0000911void print_version(void)
912{
Carl-Daniel Hailfingera80cfbc2009-07-22 20:13:00 +0000913 printf("flashrom v%s\n", flashrom_version);
Bernhard Walle201bde32008-01-21 15:24:22 +0000914}
915
Ollie Lho761bf1b2004-03-20 16:46:10 +0000916int main(int argc, char *argv[])
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000917{
Ollie Lho184a4042005-11-26 21:55:36 +0000918 uint8_t *buf;
Peter Stuge1fec0f32009-01-12 21:00:35 +0000919 unsigned long size, numbytes;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000920 FILE *image;
Claus Gindhart2fd11d62008-05-08 00:31:44 +0000921 /* Probe for up to three flash chips. */
922 struct flashchip *flash, *flashes[3];
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000923 const char *name;
924 int namelen;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000925 int opt;
Ollie Lho184a4042005-11-26 21:55:36 +0000926 int option_index = 0;
Peter Stuge7ffbc6f2008-06-18 02:08:40 +0000927 int force = 0;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000928 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000929 int dont_verify_it = 0, list_supported = 0;
Uwe Hermann707f1eb2009-09-18 13:38:14 +0000930#if PRINT_WIKI_SUPPORT == 1
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000931 int list_supported_wiki = 0;
932#endif
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +0000933 int operation_specified = 0;
Claus Gindhart2fd11d62008-05-08 00:31:44 +0000934 int ret = 0, i;
Ollie Lho184a4042005-11-26 21:55:36 +0000935
Uwe Hermann707f1eb2009-09-18 13:38:14 +0000936#if PRINT_WIKI_SUPPORT == 1
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000937 const char *optstring = "rRwvnVEfc:m:l:i:p:Lzh";
938#else
939 const char *optstring = "rRwvnVEfc:m:l:i:p:Lh";
940#endif
Uwe Hermanna7e05482007-05-09 10:17:44 +0000941 static struct option long_options[] = {
942 {"read", 0, 0, 'r'},
943 {"write", 0, 0, 'w'},
944 {"erase", 0, 0, 'E'},
945 {"verify", 0, 0, 'v'},
Uwe Hermannea07f622009-06-24 17:31:08 +0000946 {"noverify", 0, 0, 'n'},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000947 {"chip", 1, 0, 'c'},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000948 {"mainboard", 1, 0, 'm'},
949 {"verbose", 0, 0, 'V'},
950 {"force", 0, 0, 'f'},
951 {"layout", 1, 0, 'l'},
952 {"image", 1, 0, 'i'},
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000953 {"list-supported", 0, 0, 'L'},
Uwe Hermann707f1eb2009-09-18 13:38:14 +0000954#if PRINT_WIKI_SUPPORT == 1
Uwe Hermann20a293f2009-06-19 10:42:43 +0000955 {"list-supported-wiki", 0, 0, 'z'},
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000956#endif
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000957 {"programmer", 1, 0, 'p'},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000958 {"help", 0, 0, 'h'},
Bernhard Walle201bde32008-01-21 15:24:22 +0000959 {"version", 0, 0, 'R'},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000960 {0, 0, 0, 0}
Ollie Lho184a4042005-11-26 21:55:36 +0000961 };
Uwe Hermanna7e05482007-05-09 10:17:44 +0000962
Ollie Lhocbbf1252004-03-17 22:22:08 +0000963 char *filename = NULL;
Ronald G. Minnichceec4202003-07-25 04:37:41 +0000964
Uwe Hermanna7e05482007-05-09 10:17:44 +0000965 char *tempstr = NULL, *tempstr2 = NULL;
Yinghai Luad8ffd22004-10-20 05:07:16 +0000966
Carl-Daniel Hailfinger259fa012009-05-07 00:59:53 +0000967 print_version();
968
Yinghai Luad8ffd22004-10-20 05:07:16 +0000969 if (argc > 1) {
970 /* Yes, print them. */
971 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000972 printf_debug("The arguments are:\n");
Yinghai Luad8ffd22004-10-20 05:07:16 +0000973 for (i = 1; i < argc; ++i)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000974 printf_debug("%s\n", argv[i]);
Yinghai Luad8ffd22004-10-20 05:07:16 +0000975 }
976
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000977 /* Safety check. */
978 if (ARRAY_SIZE(programmer_table) - 1 != PROGRAMMER_INVALID) {
979 fprintf(stderr, "Programmer table miscompilation!\n");
980 exit(1);
981 }
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000982 if (spi_programmer_count - 1 != SPI_CONTROLLER_INVALID) {
983 fprintf(stderr, "SPI programmer table miscompilation!\n");
984 exit(1);
985 }
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000986#if BITBANG_SPI_SUPPORT == 1
Carl-Daniel Hailfinger3a4781e2009-10-01 14:51:25 +0000987 if (bitbang_spi_master_count - 1 != BITBANG_SPI_INVALID) {
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000988 fprintf(stderr, "Bitbanging SPI master table miscompilation!\n");
989 exit(1);
990 }
991#endif
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +0000992
Ollie Lhocbbf1252004-03-17 22:22:08 +0000993 setbuf(stdout, NULL);
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000994 while ((opt = getopt_long(argc, argv, optstring,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000995 long_options, &option_index)) != EOF) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000996 switch (opt) {
997 case 'r':
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +0000998 if (++operation_specified > 1) {
999 fprintf(stderr, "More than one operation "
1000 "specified. Aborting.\n");
1001 exit(1);
1002 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001003 read_it = 1;
1004 break;
1005 case 'w':
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +00001006 if (++operation_specified > 1) {
1007 fprintf(stderr, "More than one operation "
1008 "specified. Aborting.\n");
1009 exit(1);
1010 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001011 write_it = 1;
1012 break;
1013 case 'v':
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001014 //FIXME: gracefully handle superfluous -v
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +00001015 if (++operation_specified > 1) {
1016 fprintf(stderr, "More than one operation "
1017 "specified. Aborting.\n");
1018 exit(1);
1019 }
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001020 if (dont_verify_it) {
1021 fprintf(stderr, "--verify and --noverify are"
1022 "mutually exclusive. Aborting.\n");
1023 exit(1);
1024 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001025 verify_it = 1;
1026 break;
Uwe Hermannea07f622009-06-24 17:31:08 +00001027 case 'n':
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001028 if (verify_it) {
1029 fprintf(stderr, "--verify and --noverify are"
1030 "mutually exclusive. Aborting.\n");
1031 exit(1);
1032 }
Uwe Hermannea07f622009-06-24 17:31:08 +00001033 dont_verify_it = 1;
1034 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001035 case 'c':
1036 chip_to_probe = strdup(optarg);
1037 break;
Ollie Lho789ad3d2004-03-18 20:27:33 +00001038 case 'V':
1039 verbose = 1;
1040 break;
Ollie Lhoefa28582004-12-08 20:10:01 +00001041 case 'E':
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +00001042 if (++operation_specified > 1) {
1043 fprintf(stderr, "More than one operation "
1044 "specified. Aborting.\n");
1045 exit(1);
1046 }
Ollie Lhoefa28582004-12-08 20:10:01 +00001047 erase_it = 1;
1048 break;
Ollie Lho184a4042005-11-26 21:55:36 +00001049 case 'm':
1050 tempstr = strdup(optarg);
1051 strtok(tempstr, ":");
Uwe Hermanna7e05482007-05-09 10:17:44 +00001052 tempstr2 = strtok(NULL, ":");
Ollie Lho184a4042005-11-26 21:55:36 +00001053 if (tempstr2) {
Uwe Hermanna7e05482007-05-09 10:17:44 +00001054 lb_vendor = tempstr;
1055 lb_part = tempstr2;
Ollie Lho184a4042005-11-26 21:55:36 +00001056 } else {
Peter Stuge6b53fed2008-01-27 16:21:21 +00001057 lb_vendor = NULL;
1058 lb_part = tempstr;
Ollie Lho184a4042005-11-26 21:55:36 +00001059 }
1060 break;
1061 case 'f':
Uwe Hermanna7e05482007-05-09 10:17:44 +00001062 force = 1;
Ollie Lho184a4042005-11-26 21:55:36 +00001063 break;
1064 case 'l':
Uwe Hermanna7e05482007-05-09 10:17:44 +00001065 tempstr = strdup(optarg);
Stefan Reinauer0a05d672007-04-14 16:32:59 +00001066 if (read_romlayout(tempstr))
1067 exit(1);
Ollie Lho184a4042005-11-26 21:55:36 +00001068 break;
1069 case 'i':
Uwe Hermanna7e05482007-05-09 10:17:44 +00001070 tempstr = strdup(optarg);
Ollie Lho184a4042005-11-26 21:55:36 +00001071 find_romentry(tempstr);
1072 break;
Uwe Hermanne5ac1642008-03-12 11:54:51 +00001073 case 'L':
Uwe Hermann05fab752009-05-16 23:42:17 +00001074 list_supported = 1;
Uwe Hermanne5ac1642008-03-12 11:54:51 +00001075 break;
Uwe Hermann707f1eb2009-09-18 13:38:14 +00001076#if PRINT_WIKI_SUPPORT == 1
Uwe Hermann20a293f2009-06-19 10:42:43 +00001077 case 'z':
1078 list_supported_wiki = 1;
1079 break;
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +00001080#endif
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001081 case 'p':
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +00001082 for (programmer = 0; programmer < PROGRAMMER_INVALID; programmer++) {
1083 name = programmer_table[programmer].name;
1084 namelen = strlen(name);
1085 if (strncmp(optarg, name, namelen) == 0) {
1086 switch (optarg[namelen]) {
Carl-Daniel Hailfinger664e7ad2009-08-19 15:03:28 +00001087 case ':':
Carl-Daniel Hailfinger37fc4692009-08-12 14:34:35 +00001088 programmer_param = strdup(optarg + namelen + 1);
1089 break;
1090 case '\0':
1091 break;
1092 default:
1093 /* The continue refers to the
1094 * for loop. It is here to be
1095 * able to differentiate between
1096 * foo and foobar.
1097 */
1098 continue;
1099 }
1100 break;
1101 }
1102 }
1103 if (programmer == PROGRAMMER_INVALID) {
Carl-Daniel Hailfinger664e7ad2009-08-19 15:03:28 +00001104 printf("Error: Unknown programmer %s.\n", optarg);
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001105 exit(1);
1106 }
1107 break;
Bernhard Walle201bde32008-01-21 15:24:22 +00001108 case 'R':
Carl-Daniel Hailfinger259fa012009-05-07 00:59:53 +00001109 /* print_version() is always called during startup. */
Bernhard Walle201bde32008-01-21 15:24:22 +00001110 exit(0);
1111 break;
Ollie Lho184a4042005-11-26 21:55:36 +00001112 case 'h':
Ollie Lhocbbf1252004-03-17 22:22:08 +00001113 default:
1114 usage(argv[0]);
1115 break;
1116 }
1117 }
Yinghai Luad8ffd22004-10-20 05:07:16 +00001118
Uwe Hermann05fab752009-05-16 23:42:17 +00001119 if (list_supported) {
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001120 print_supported();
Uwe Hermann05fab752009-05-16 23:42:17 +00001121 exit(0);
1122 }
1123
Uwe Hermann707f1eb2009-09-18 13:38:14 +00001124#if PRINT_WIKI_SUPPORT == 1
Uwe Hermann20a293f2009-06-19 10:42:43 +00001125 if (list_supported_wiki) {
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001126 print_supported_wiki();
Uwe Hermann20a293f2009-06-19 10:42:43 +00001127 exit(0);
1128 }
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +00001129#endif
Uwe Hermann20a293f2009-06-19 10:42:43 +00001130
Ollie Lhocbbf1252004-03-17 22:22:08 +00001131 if (read_it && write_it) {
Uwe Hermann793bdcd2008-05-22 22:47:04 +00001132 printf("Error: -r and -w are mutually exclusive.\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +00001133 usage(argv[0]);
1134 }
Ronald G. Minniche5559572003-03-28 03:29:43 +00001135
Ollie Lhocbbf1252004-03-17 22:22:08 +00001136 if (optind < argc)
1137 filename = argv[optind++];
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001138
1139 if (optind < argc) {
1140 printf("Error: Extra parameter found.\n");
1141 usage(argv[0]);
1142 }
Ronald G. Minniche5559572003-03-28 03:29:43 +00001143
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +00001144 if (programmer_init()) {
1145 fprintf(stderr, "Error: Programmer initialization failed.\n");
1146 exit(1);
1147 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001148
Ollie Lhocbbf1252004-03-17 22:22:08 +00001149 myusec_calibrate_delay();
Ollie Lho184a4042005-11-26 21:55:36 +00001150
Claus Gindhart2fd11d62008-05-08 00:31:44 +00001151 for (i = 0; i < ARRAY_SIZE(flashes); i++) {
Uwe Hermann394131e2008-10-18 21:14:13 +00001152 flashes[i] =
1153 probe_flash(i ? flashes[i - 1] + 1 : flashchips, 0);
Claus Gindhart2fd11d62008-05-08 00:31:44 +00001154 if (!flashes[i])
1155 for (i++; i < ARRAY_SIZE(flashes); i++)
1156 flashes[i] = NULL;
1157 }
1158
1159 if (flashes[1]) {
1160 printf("Multiple flash chips were detected:");
1161 for (i = 0; i < ARRAY_SIZE(flashes) && flashes[i]; i++)
1162 printf(" %s", flashes[i]->name);
1163 printf("\nPlease specify which chip to use with the -c <chipname> option.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001164 programmer_shutdown();
Claus Gindhart2fd11d62008-05-08 00:31:44 +00001165 exit(1);
1166 } else if (!flashes[0]) {
Ollie Lho184a4042005-11-26 21:55:36 +00001167 printf("No EEPROM/flash device found.\n");
Peter Stuge7ffbc6f2008-06-18 02:08:40 +00001168 if (!force || !chip_to_probe) {
1169 printf("If you know which flash chip you have, and if this version of flashrom\n");
1170 printf("supports a similar flash chip, you can try to force read your chip. Run:\n");
1171 printf("flashrom -f -r -c similar_supported_flash_chip filename\n");
1172 printf("\n");
1173 printf("Note: flashrom can never write when the flash chip isn't found automatically.\n");
1174 }
1175 if (force && read_it && chip_to_probe) {
1176 printf("Force read (-f -r -c) requested, forcing chip probe success:\n");
1177 flashes[0] = probe_flash(flashchips, 1);
1178 if (!flashes[0]) {
1179 printf("flashrom does not support a flash chip named '%s'.\n", chip_to_probe);
1180 printf("Run flashrom -L to view the hardware supported in this flashrom version.\n");
1181 exit(1);
1182 }
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001183 printf("Please note that forced reads most likely contain garbage.\n");
Carl-Daniel Hailfinger49eb4dd2009-06-19 11:23:57 +00001184 return read_flash(flashes[0], filename);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +00001185 }
Jordan Crouse144ede62007-10-04 06:26:41 +00001186 // FIXME: flash writes stay enabled!
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001187 programmer_shutdown();
Ollie Lhocbbf1252004-03-17 22:22:08 +00001188 exit(1);
1189 }
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001190
Claus Gindhart2fd11d62008-05-08 00:31:44 +00001191 flash = flashes[0];
1192
Peter Stuge1159d582008-05-03 04:34:37 +00001193 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
1194 printf("===\n");
1195 if (flash->tested & TEST_BAD_MASK) {
1196 printf("This flash part has status NOT WORKING for operations:");
1197 if (flash->tested & TEST_BAD_PROBE)
1198 printf(" PROBE");
1199 if (flash->tested & TEST_BAD_READ)
1200 printf(" READ");
1201 if (flash->tested & TEST_BAD_ERASE)
1202 printf(" ERASE");
1203 if (flash->tested & TEST_BAD_WRITE)
1204 printf(" WRITE");
1205 printf("\n");
Carl-Daniel Hailfinger6a0a25c2008-11-28 23:45:27 +00001206 }
1207 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
1208 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
1209 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
1210 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
Peter Stuge1159d582008-05-03 04:34:37 +00001211 printf("This flash part has status UNTESTED for operations:");
Carl-Daniel Hailfinger6a0a25c2008-11-28 23:45:27 +00001212 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
Peter Stuge1159d582008-05-03 04:34:37 +00001213 printf(" PROBE");
Carl-Daniel Hailfinger6a0a25c2008-11-28 23:45:27 +00001214 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
Peter Stuge1159d582008-05-03 04:34:37 +00001215 printf(" READ");
Carl-Daniel Hailfinger6a0a25c2008-11-28 23:45:27 +00001216 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
Peter Stuge1159d582008-05-03 04:34:37 +00001217 printf(" ERASE");
Carl-Daniel Hailfinger6a0a25c2008-11-28 23:45:27 +00001218 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
Peter Stuge1159d582008-05-03 04:34:37 +00001219 printf(" WRITE");
1220 printf("\n");
1221 }
Stefan Reinauer22ea8cd2009-07-30 13:32:26 +00001222 printf("Please email a report to flashrom@flashrom.org if any "
Uwe Hermanna9720402009-05-21 15:55:46 +00001223 "of the above operations\nwork correctly for you with "
1224 "this flash part. Please include the flashrom\noutput "
1225 "with the additional -V option for all operations you "
1226 "tested (-V, -rV,\n-wV, -EV), and mention which "
1227 "mainboard you tested. Thanks for your help!\n===\n");
Peter Stuge1159d582008-05-03 04:34:37 +00001228 }
Ollie Lho184a4042005-11-26 21:55:36 +00001229
Carl-Daniel Hailfinger115d3902009-10-31 01:53:09 +00001230 size = flash->total_size * 1024;
1231 if (check_max_decode((buses_supported & flash->bustype), size) &&
1232 (!force)) {
1233 fprintf(stderr, "Chip is too big for this programmer "
1234 "(-V gives details). Use --force to override.\n");
1235 programmer_shutdown();
1236 return 1;
1237 }
1238
Jordan Crouse144ede62007-10-04 06:26:41 +00001239 if (!(read_it | write_it | verify_it | erase_it)) {
1240 printf("No operations were specified.\n");
1241 // FIXME: flash writes stay enabled!
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001242 programmer_shutdown();
Jordan Crouse144ede62007-10-04 06:26:41 +00001243 exit(1);
1244 }
1245
Ollie Lhoefa28582004-12-08 20:10:01 +00001246 if (!filename && !erase_it) {
Jordan Crouse144ede62007-10-04 06:26:41 +00001247 printf("Error: No filename specified.\n");
1248 // FIXME: flash writes stay enabled!
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001249 programmer_shutdown();
Jordan Crouse144ede62007-10-04 06:26:41 +00001250 exit(1);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001251 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001252
Uwe Hermannea07f622009-06-24 17:31:08 +00001253 /* Always verify write operations unless -n is used. */
1254 if (write_it && !dont_verify_it)
1255 verify_it = 1;
1256
Ollie Lho184a4042005-11-26 21:55:36 +00001257 buf = (uint8_t *) calloc(size, sizeof(char));
Uwe Hermanna7e05482007-05-09 10:17:44 +00001258
Ollie Lhoefa28582004-12-08 20:10:01 +00001259 if (erase_it) {
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001260 if (flash->tested & TEST_BAD_ERASE) {
1261 fprintf(stderr, "Erase is not working on this chip. ");
1262 if (!force) {
1263 fprintf(stderr, "Aborting.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001264 programmer_shutdown();
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001265 return 1;
1266 } else {
1267 fprintf(stderr, "Continuing anyway.\n");
1268 }
1269 }
1270 if (erase_flash(flash)) {
1271 emergency_help_message();
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001272 programmer_shutdown();
Peter Stugef31104c2008-04-28 14:47:30 +00001273 return 1;
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001274 }
Ollie Lhoefa28582004-12-08 20:10:01 +00001275 } else if (read_it) {
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001276 if (read_flash(flash, filename)) {
1277 programmer_shutdown();
Peter Stuge1fec0f32009-01-12 21:00:35 +00001278 return 1;
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001279 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001280 } else {
Stefan Reinauer018aca82006-11-21 23:48:51 +00001281 struct stat image_stat;
1282
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001283 if (flash->tested & TEST_BAD_ERASE) {
1284 fprintf(stderr, "Erase is not working on this chip "
1285 "and erase is needed for write. ");
1286 if (!force) {
1287 fprintf(stderr, "Aborting.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001288 programmer_shutdown();
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001289 return 1;
1290 } else {
1291 fprintf(stderr, "Continuing anyway.\n");
1292 }
1293 }
1294 if (flash->tested & TEST_BAD_WRITE) {
1295 fprintf(stderr, "Write is not working on this chip. ");
1296 if (!force) {
1297 fprintf(stderr, "Aborting.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001298 programmer_shutdown();
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001299 return 1;
1300 } else {
1301 fprintf(stderr, "Continuing anyway.\n");
1302 }
1303 }
Ollie Lho761bf1b2004-03-20 16:46:10 +00001304 if ((image = fopen(filename, "r")) == NULL) {
Ollie Lhocbbf1252004-03-17 22:22:08 +00001305 perror(filename);
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001306 programmer_shutdown();
Ollie Lhocbbf1252004-03-17 22:22:08 +00001307 exit(1);
1308 }
Stefan Reinauer018aca82006-11-21 23:48:51 +00001309 if (fstat(fileno(image), &image_stat) != 0) {
1310 perror(filename);
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001311 programmer_shutdown();
Stefan Reinauer018aca82006-11-21 23:48:51 +00001312 exit(1);
1313 }
Uwe Hermanna7e05482007-05-09 10:17:44 +00001314 if (image_stat.st_size != flash->total_size * 1024) {
Uwe Hermann793bdcd2008-05-22 22:47:04 +00001315 fprintf(stderr, "Error: Image size doesn't match\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001316 programmer_shutdown();
Stefan Reinauer018aca82006-11-21 23:48:51 +00001317 exit(1);
1318 }
1319
Peter Stuge1fec0f32009-01-12 21:00:35 +00001320 numbytes = fread(buf, 1, size, image);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +00001321 show_id(buf, size, force);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001322 fclose(image);
Peter Stuge1fec0f32009-01-12 21:00:35 +00001323 if (numbytes != size) {
1324 fprintf(stderr, "Error: Failed to read file. Got %ld bytes, wanted %ld!\n", numbytes, size);
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001325 programmer_shutdown();
Peter Stuge1fec0f32009-01-12 21:00:35 +00001326 return 1;
1327 }
Ollie Lhocbbf1252004-03-17 22:22:08 +00001328 }
1329
Ollie Lho184a4042005-11-26 21:55:36 +00001330 // This should be moved into each flash part's code to do it
1331 // cleanly. This does the job.
Carl-Daniel Hailfingerf5fb51c2009-08-19 15:19:18 +00001332 handle_romentries(buf, flash);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001333
Ollie Lho184a4042005-11-26 21:55:36 +00001334 // ////////////////////////////////////////////////////////////
Uwe Hermanna7e05482007-05-09 10:17:44 +00001335
Peter Stugef31104c2008-04-28 14:47:30 +00001336 if (write_it) {
Paul Foxd51410c2009-06-12 08:04:08 +00001337 printf("Writing flash chip... ");
Peter Stugef31104c2008-04-28 14:47:30 +00001338 if (!flash->write) {
1339 fprintf(stderr, "Error: flashrom has no write function for this flash chip.\n");
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001340 programmer_shutdown();
Peter Stugef31104c2008-04-28 14:47:30 +00001341 return 1;
1342 }
Carl-Daniel Hailfinger0a3e5ae2009-07-24 12:18:54 +00001343 ret = flash->write(flash, buf);
1344 if (ret) {
1345 fprintf(stderr, "FAILED!\n");
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001346 emergency_help_message();
Uwe Hermann2bc98f62009-09-30 18:29:55 +00001347 programmer_shutdown();
Carl-Daniel Hailfinger0a3e5ae2009-07-24 12:18:54 +00001348 return 1;
1349 } else {
1350 printf("COMPLETE.\n");
1351 }
Peter Stugef31104c2008-04-28 14:47:30 +00001352 }
Ollie Lho184a4042005-11-26 21:55:36 +00001353
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001354 if (verify_it) {
1355 /* Work around chips which need some time to calm down. */
1356 if (write_it)
1357 programmer_delay(1000*1000);
Carl-Daniel Hailfinger0a3e5ae2009-07-24 12:18:54 +00001358 ret = verify_flash(flash, buf);
Carl-Daniel Hailfingerf5292052009-11-17 09:57:34 +00001359 /* If we tried to write, and verification now fails, we
Carl-Daniel Hailfinger8ab49e72009-08-19 13:55:34 +00001360 * might have an emergency situation.
1361 */
1362 if (ret && write_it)
1363 emergency_help_message();
1364 }
Ollie Lho184a4042005-11-26 21:55:36 +00001365
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001366 programmer_shutdown();
1367
Stefan Reinauer143da0b2006-01-04 16:42:57 +00001368 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001369}