blob: a51fd63be76586ec6a1bc76e242e3b8a7ad3c1da [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 Hailfinger1e334e62009-05-11 15:46:43 +000041 .init = internal_init,
42 .shutdown = internal_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +000043 .map_flash_region = physmap,
44 .unmap_flash_region = physunmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000045 .chip_readb = internal_chip_readb,
46 .chip_readw = internal_chip_readw,
47 .chip_readl = internal_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000048 .chip_readn = internal_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000049 .chip_writeb = internal_chip_writeb,
50 .chip_writew = internal_chip_writew,
51 .chip_writel = internal_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000052 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000053 .delay = internal_delay,
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +000054 },
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000055
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000056 {
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000057 .init = dummy_init,
58 .shutdown = dummy_shutdown,
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +000059 .map_flash_region = dummy_map,
60 .unmap_flash_region = dummy_unmap,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000061 .chip_readb = dummy_chip_readb,
62 .chip_readw = dummy_chip_readw,
63 .chip_readl = dummy_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000064 .chip_readn = dummy_chip_readn,
Carl-Daniel Hailfinger1e334e62009-05-11 15:46:43 +000065 .chip_writeb = dummy_chip_writeb,
66 .chip_writew = dummy_chip_writew,
67 .chip_writel = dummy_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000068 .chip_writen = dummy_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000069 .delay = internal_delay,
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000070 },
71
Uwe Hermannb4dcb712009-05-13 11:36:06 +000072 {
73 .init = nic3com_init,
74 .shutdown = nic3com_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +000075 .map_flash_region = fallback_map,
76 .unmap_flash_region = fallback_unmap,
Uwe Hermannb4dcb712009-05-13 11:36:06 +000077 .chip_readb = nic3com_chip_readb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +000078 .chip_readw = fallback_chip_readw,
79 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000080 .chip_readn = fallback_chip_readn,
Uwe Hermannb4dcb712009-05-13 11:36:06 +000081 .chip_writeb = nic3com_chip_writeb,
Carl-Daniel Hailfinger9ee10772009-05-16 01:23:55 +000082 .chip_writew = fallback_chip_writew,
83 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000084 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000085 .delay = internal_delay,
Uwe Hermannb4dcb712009-05-13 11:36:06 +000086 },
87
Rudolf Marek68720c72009-05-17 19:39:27 +000088 {
89 .init = satasii_init,
90 .shutdown = satasii_shutdown,
Uwe Hermannc6915932009-05-17 23:12:17 +000091 .map_flash_region = fallback_map,
92 .unmap_flash_region = fallback_unmap,
Rudolf Marek68720c72009-05-17 19:39:27 +000093 .chip_readb = satasii_chip_readb,
94 .chip_readw = fallback_chip_readw,
95 .chip_readl = fallback_chip_readl,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +000096 .chip_readn = fallback_chip_readn,
Rudolf Marek68720c72009-05-17 19:39:27 +000097 .chip_writeb = satasii_chip_writeb,
98 .chip_writew = fallback_chip_writew,
99 .chip_writel = fallback_chip_writel,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000100 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000101 .delay = internal_delay,
Rudolf Marek68720c72009-05-17 19:39:27 +0000102 },
103
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000104 {
105 .init = it87spi_init,
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000106 .shutdown = fallback_shutdown,
107 .map_flash_region = fallback_map,
108 .unmap_flash_region = fallback_unmap,
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000109 .chip_readb = dummy_chip_readb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000110 .chip_readw = fallback_chip_readw,
111 .chip_readl = fallback_chip_readl,
112 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000113 .chip_writeb = fallback_chip_writeb,
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000114 .chip_writew = fallback_chip_writew,
115 .chip_writel = fallback_chip_writel,
116 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000117 .delay = internal_delay,
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000118 },
119
Paul Fox05dfbe62009-06-16 21:08:06 +0000120 {
121 .init = ft2232_spi_init,
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000122 .shutdown = fallback_shutdown,
123 .map_flash_region = fallback_map,
124 .unmap_flash_region = fallback_unmap,
Paul Fox05dfbe62009-06-16 21:08:06 +0000125 .chip_readb = dummy_chip_readb,
126 .chip_readw = fallback_chip_readw,
127 .chip_readl = fallback_chip_readl,
128 .chip_readn = fallback_chip_readn,
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000129 .chip_writeb = fallback_chip_writeb,
Paul Fox05dfbe62009-06-16 21:08:06 +0000130 .chip_writew = fallback_chip_writew,
131 .chip_writel = fallback_chip_writel,
132 .chip_writen = fallback_chip_writen,
133 .delay = internal_delay,
134 },
Carl-Daniel Hailfinger415e5132009-08-12 11:39:29 +0000135
Urja Rannikko22915352009-06-23 11:33:43 +0000136 {
137 .init = serprog_init,
138 .shutdown = serprog_shutdown,
139 .map_flash_region = fallback_map,
140 .unmap_flash_region = fallback_unmap,
141 .chip_readb = serprog_chip_readb,
142 .chip_readw = fallback_chip_readw,
143 .chip_readl = fallback_chip_readl,
144 .chip_readn = serprog_chip_readn,
145 .chip_writeb = serprog_chip_writeb,
146 .chip_writew = fallback_chip_writew,
147 .chip_writel = fallback_chip_writel,
148 .chip_writen = fallback_chip_writen,
149 .delay = serprog_delay,
150 },
Paul Fox05dfbe62009-06-16 21:08:06 +0000151
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000152 {},
153};
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000154
Uwe Hermann09e04f72009-05-16 22:36:00 +0000155int programmer_init(void)
156{
157 return programmer_table[programmer].init();
158}
159
160int programmer_shutdown(void)
161{
162 return programmer_table[programmer].shutdown();
163}
164
165void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
166 size_t len)
167{
168 return programmer_table[programmer].map_flash_region(descr,
169 phys_addr, len);
170}
171
172void programmer_unmap_flash_region(void *virt_addr, size_t len)
173{
174 programmer_table[programmer].unmap_flash_region(virt_addr, len);
175}
176
177void chip_writeb(uint8_t val, chipaddr addr)
178{
179 programmer_table[programmer].chip_writeb(val, addr);
180}
181
182void chip_writew(uint16_t val, chipaddr addr)
183{
184 programmer_table[programmer].chip_writew(val, addr);
185}
186
187void chip_writel(uint32_t val, chipaddr addr)
188{
189 programmer_table[programmer].chip_writel(val, addr);
190}
191
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000192void chip_writen(uint8_t *buf, chipaddr addr, size_t len)
193{
194 programmer_table[programmer].chip_writen(buf, addr, len);
195}
196
Uwe Hermann09e04f72009-05-16 22:36:00 +0000197uint8_t chip_readb(const chipaddr addr)
198{
199 return programmer_table[programmer].chip_readb(addr);
200}
201
202uint16_t chip_readw(const chipaddr addr)
203{
204 return programmer_table[programmer].chip_readw(addr);
205}
206
207uint32_t chip_readl(const chipaddr addr)
208{
209 return programmer_table[programmer].chip_readl(addr);
210}
211
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000212void chip_readn(uint8_t *buf, chipaddr addr, size_t len)
213{
214 programmer_table[programmer].chip_readn(buf, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000215}
216
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000217void programmer_delay(int usecs)
218{
219 programmer_table[programmer].delay(usecs);
220}
221
Peter Stuge776d2022009-01-26 00:39:57 +0000222void map_flash_registers(struct flashchip *flash)
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000223{
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000224 size_t size = flash->total_size * 1024;
Carl-Daniel Hailfingerd0fc9462009-05-11 14:01:17 +0000225 /* Flash registers live 4 MByte below the flash. */
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000226 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000227}
228
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000229int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000230{
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000231 chip_readn(buf, flash->virtual_memory + start, len);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000232
233 return 0;
234}
235
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000236int min(int a, int b)
237{
238 return (a < b) ? a : b;
239}
240
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000241int max(int a, int b)
242{
243 return (a > b) ? a : b;
244}
245
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000246char *strcat_realloc(char *dest, const char *src)
247{
248 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
249 if (!dest)
250 return NULL;
251 strcat(dest, src);
252 return dest;
253}
254
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000255/* start is an offset to the base address of the flash chip */
256int check_erased_range(struct flashchip *flash, int start, int len)
257{
258 int ret;
259 uint8_t *cmpbuf = malloc(len);
260
261 if (!cmpbuf) {
262 fprintf(stderr, "Could not allocate memory!\n");
263 exit(1);
264 }
265 memset(cmpbuf, 0xff, len);
266 ret = verify_range(flash, cmpbuf, start, len, "ERASE");
267 free(cmpbuf);
268 return ret;
269}
270
271/**
272 * @cmpbuf buffer to compare against
273 * @start offset to the base address of the flash chip
274 * @len length of the verified area
275 * @message string to print in the "FAILED" message
276 * @return 0 for success, -1 for failure
277 */
278int verify_range(struct flashchip *flash, uint8_t *cmpbuf, int start, int len, char *message)
279{
280 int i, j, starthere, lenhere, ret = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000281 int page_size = flash->page_size;
282 uint8_t *readbuf = malloc(page_size);
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000283 int failcount = 0;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000284
285 if (!len)
286 goto out_free;
287
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000288 if (!flash->read) {
289 fprintf(stderr, "ERROR: flashrom has no read function for this flash chip.\n");
290 return 1;
291 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000292 if (!readbuf) {
293 fprintf(stderr, "Could not allocate memory!\n");
294 exit(1);
295 }
296
297 if (start + len > flash->total_size * 1024) {
298 fprintf(stderr, "Error: %s called with start 0x%x + len 0x%x >"
299 " total_size 0x%x\n", __func__, start, len,
300 flash->total_size * 1024);
301 ret = -1;
302 goto out_free;
303 }
304 if (!message)
305 message = "VERIFY";
306
307 /* Warning: This loop has a very unusual condition and body.
308 * The loop needs to go through each page with at least one affected
309 * byte. The lowest page number is (start / page_size) since that
310 * division rounds down. The highest page number we want is the page
311 * where the last byte of the range lives. That last byte has the
312 * address (start + len - 1), thus the highest page number is
313 * (start + len - 1) / page_size. Since we want to include that last
314 * page as well, the loop condition uses <=.
315 */
316 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
317 /* Byte position of the first byte in the range in this page. */
318 starthere = max(start, i * page_size);
319 /* Length of bytes in the range in this page. */
320 lenhere = min(start + len, (i + 1) * page_size) - starthere;
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000321 flash->read(flash, readbuf, starthere, lenhere);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000322 for (j = 0; j < lenhere; j++) {
323 if (cmpbuf[starthere - start + j] != readbuf[j]) {
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000324 /* Only print the first failure. */
325 if (!failcount++)
326 fprintf(stderr, "%s FAILED at 0x%08x! "
327 "Expected=0x%02x, Read=0x%02x,",
328 message, starthere + j,
329 cmpbuf[starthere - start + j],
330 readbuf[j]);
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000331 }
332 }
333 }
Carl-Daniel Hailfinger49b9cab2009-07-23 01:42:56 +0000334 if (failcount) {
335 fprintf(stderr, " failed byte count from 0x%08x-0x%08x: 0x%x\n",
336 start, start + len - 1, failcount);
337 ret = -1;
338 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000339
340out_free:
341 free(readbuf);
342 return ret;
343}
344
Peter Stuge483b8f02008-09-03 23:10:05 +0000345struct flashchip *probe_flash(struct flashchip *first_flash, int force)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000346{
Peter Stuge483b8f02008-09-03 23:10:05 +0000347 struct flashchip *flash;
Peter Stuge7ccce542008-12-03 23:36:48 +0000348 unsigned long base = 0, size;
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000349 char *tmp;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000350
Peter Stuge483b8f02008-09-03 23:10:05 +0000351 for (flash = first_flash; flash && flash->name; flash++) {
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000352 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000353 continue;
Stefan Reinauerac378972008-03-17 22:59:40 +0000354 printf_debug("Probing for %s %s, %d KB: ",
355 flash->vendor, flash->name, flash->total_size);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +0000356 if (!flash->probe && !force) {
Peter Stugef31104c2008-04-28 14:47:30 +0000357 printf_debug("failed! flashrom has no probe function for this flash chip.\n");
Peter Stugef31104c2008-04-28 14:47:30 +0000358 continue;
359 }
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000360 if (!(buses_supported & flash->bustype)) {
361 tmp = flashbuses_to_text(buses_supported);
362 printf_debug("skipped. Host bus type %s ", tmp);
363 free(tmp);
364 tmp = flashbuses_to_text(flash->bustype);
365 printf_debug("and chip bus type %s are incompatible.\n", tmp);
366 free(tmp);
367 continue;
368 }
Stefan Reinauer70385642007-04-06 11:58:03 +0000369
Ollie Lhocbbf1252004-03-17 22:22:08 +0000370 size = flash->total_size * 1024;
Stefan Reinauer70385642007-04-06 11:58:03 +0000371
Carl-Daniel Hailfinger97d6b092009-05-09 07:27:23 +0000372 base = flashbase ? flashbase : (0xffffffff - size + 1);
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000373 flash->virtual_memory = (chipaddr)programmer_map_flash_region("flash chip", base, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000374
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000375 if (force)
376 break;
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000377
Peter Stuge483b8f02008-09-03 23:10:05 +0000378 if (flash->probe(flash) != 1)
379 goto notfound;
380
Uwe Hermann394131e2008-10-18 21:14:13 +0000381 if (first_flash == flashchips
382 || flash->model_id != GENERIC_DEVICE_ID)
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000383 break;
384
Peter Stuge483b8f02008-09-03 23:10:05 +0000385notfound:
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000386 programmer_unmap_flash_region((void *)flash->virtual_memory, size);
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000387 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000388
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000389 if (!flash || !flash->name)
390 return NULL;
391
Uwe Hermann9899cad2009-06-28 21:47:57 +0000392 printf("Found chip \"%s %s\" (%d KB, %s) at physical address 0x%lx.\n",
393 flash->vendor, flash->name, flash->total_size,
394 flashbuses_to_text(flash->bustype), base);
395
Peter Stuge27c3e2d2008-07-02 17:15:47 +0000396 return flash;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000397}
398
Stefan Reinauere3705282005-12-18 16:41:10 +0000399int verify_flash(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000400{
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000401 int ret;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000402 int total_size = flash->total_size * 1024;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000403
Uwe Hermanna502dce2007-10-17 23:55:15 +0000404 printf("Verifying flash... ");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000405
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000406 ret = verify_range(flash, buf, 0, total_size, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000407
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000408 if (!ret)
409 printf("VERIFIED. \n");
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000410
Carl-Daniel Hailfinger23290662009-06-24 08:20:45 +0000411 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000412}
413
Carl-Daniel Hailfinger49eb4dd2009-06-19 11:23:57 +0000414int read_flash(struct flashchip *flash, char *filename)
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000415{
416 unsigned long numbytes;
417 FILE *image;
418 unsigned long size = flash->total_size * 1024;
419 unsigned char *buf = calloc(size, sizeof(char));
Stephan Guilloux21dd55b2009-06-01 22:07:52 +0000420
421 if (!filename) {
422 printf("Error: No filename specified.\n");
423 return 1;
424 }
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000425 if ((image = fopen(filename, "w")) == NULL) {
426 perror(filename);
427 exit(1);
428 }
429 printf("Reading flash... ");
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000430 if (!flash->read) {
431 printf("FAILED!\n");
432 fprintf(stderr, "ERROR: flashrom has no read function for this flash chip.\n");
433 return 1;
434 } else
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000435 flash->read(flash, buf, 0, size);
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000436
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000437 numbytes = fwrite(buf, 1, size, image);
438 fclose(image);
Stephan Guilloux5a8b2442009-06-01 21:37:00 +0000439 free(buf);
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000440 printf("%s.\n", numbytes == size ? "done" : "FAILED");
441 if (numbytes != size)
442 return 1;
443 return 0;
444}
445
446int erase_flash(struct flashchip *flash)
447{
448 uint32_t erasedbytes;
449 unsigned long size = flash->total_size * 1024;
450 unsigned char *buf = calloc(size, sizeof(char));
451 printf("Erasing flash chip... ");
452 if (NULL == flash->erase) {
453 printf("FAILED!\n");
454 fprintf(stderr, "ERROR: flashrom has no erase function for this flash chip.\n");
455 return 1;
456 }
Carl-Daniel Hailfingerf160a122009-05-08 17:15:15 +0000457 flash->erase(flash);
458
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000459 /* FIXME: The lines below are superfluous. We should check the result
460 * of flash->erase(flash) instead.
461 */
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000462 if (!flash->read) {
463 printf("FAILED!\n");
464 fprintf(stderr, "ERROR: flashrom has no read function for this flash chip.\n");
465 return 1;
466 } else
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000467 flash->read(flash, buf, 0, size);
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +0000468
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000469 for (erasedbytes = 0; erasedbytes < size; erasedbytes++)
470 if (0xff != buf[erasedbytes]) {
471 printf("FAILED!\n");
472 fprintf(stderr, "ERROR at 0x%08x: Expected=0xff, Read=0x%02x\n",
473 erasedbytes, buf[erasedbytes]);
474 return 1;
475 }
476 printf("SUCCESS.\n");
477 return 0;
478}
479
Ronald G. Minniche5559572003-03-28 03:29:43 +0000480void usage(const char *name)
481{
Carl-Daniel Hailfinger49eb4dd2009-06-19 11:23:57 +0000482 printf("usage: %s [-VfLzhR] [-E|-r file|-w file|-v file] [-c chipname]\n"
Carl-Daniel Hailfinger5d1f4182009-06-24 08:18:38 +0000483 " [-m [vendor:]part] [-l file] [-i image] [-p programmer]\n\n", name);
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +0000484
Uwe Hermanne8ba5382009-05-22 11:37:27 +0000485 printf("Please note that the command line interface for flashrom will "
486 "change before\nflashrom 1.0. Do not use flashrom in scripts "
487 "or other automated tools without\nchecking that your flashrom"
488 " version won't interpret options in a different way.\n\n");
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +0000489
Uwe Hermanna7e05482007-05-09 10:17:44 +0000490 printf
Peter Stuge6b53fed2008-01-27 16:21:21 +0000491 (" -r | --read: read flash and save into file\n"
492 " -w | --write: write file into flash\n"
493 " -v | --verify: verify flash against file\n"
Uwe Hermannea07f622009-06-24 17:31:08 +0000494 " -n | --noverify: don't verify flash against file\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000495 " -E | --erase: erase flash device\n"
496 " -V | --verbose: more verbose output\n"
497 " -c | --chip <chipname>: probe only for specified flash chip\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000498 " -m | --mainboard <[vendor:]part>: override mainboard settings\n"
499 " -f | --force: force write without checking image\n"
Uwe Hermanne8ba5382009-05-22 11:37:27 +0000500 " -l | --layout <file.layout>: read ROM layout from file\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000501 " -i | --image <name>: only flash image name from flash layout\n"
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000502 " -L | --list-supported: print supported devices\n"
Uwe Hermann20a293f2009-06-19 10:42:43 +0000503 " -z | --list-supported-wiki: print supported devices in wiki syntax\n"
Carl-Daniel Hailfingerce986772009-05-09 00:27:07 +0000504 " -p | --programmer <name>: specify the programmer device\n"
Uwe Hermann20a293f2009-06-19 10:42:43 +0000505 " (internal, dummy, nic3com, satasii,\n"
Urja Rannikko22915352009-06-23 11:33:43 +0000506 " it87spi, ft2232spi, serprog)\n"
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000507 " -h | --help: print this help text\n"
Peter Stuge6b53fed2008-01-27 16:21:21 +0000508 " -R | --version: print the version (release)\n"
Carl-Daniel Hailfinger5d1f4182009-06-24 08:18:38 +0000509 "\nYou can specify one of -E, -r, -w, -v or no operation. If no operation is\n"
510 "specified, then all that happens is that flash info is dumped.\n\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000511 exit(1);
Ronald G. Minniche5559572003-03-28 03:29:43 +0000512}
513
Bernhard Walle201bde32008-01-21 15:24:22 +0000514void print_version(void)
515{
Carl-Daniel Hailfingera80cfbc2009-07-22 20:13:00 +0000516 printf("flashrom v%s\n", flashrom_version);
Bernhard Walle201bde32008-01-21 15:24:22 +0000517}
518
Ollie Lho761bf1b2004-03-20 16:46:10 +0000519int main(int argc, char *argv[])
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000520{
Ollie Lho184a4042005-11-26 21:55:36 +0000521 uint8_t *buf;
Peter Stuge1fec0f32009-01-12 21:00:35 +0000522 unsigned long size, numbytes;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000523 FILE *image;
Claus Gindhart2fd11d62008-05-08 00:31:44 +0000524 /* Probe for up to three flash chips. */
525 struct flashchip *flash, *flashes[3];
Ollie Lhocbbf1252004-03-17 22:22:08 +0000526 int opt;
Ollie Lho184a4042005-11-26 21:55:36 +0000527 int option_index = 0;
Peter Stuge7ffbc6f2008-06-18 02:08:40 +0000528 int force = 0;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000529 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
Uwe Hermannea07f622009-06-24 17:31:08 +0000530 int dont_verify_it = 0, list_supported = 0, list_supported_wiki = 0;
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +0000531 int operation_specified = 0;
Claus Gindhart2fd11d62008-05-08 00:31:44 +0000532 int ret = 0, i;
Ollie Lho184a4042005-11-26 21:55:36 +0000533
Uwe Hermanna7e05482007-05-09 10:17:44 +0000534 static struct option long_options[] = {
535 {"read", 0, 0, 'r'},
536 {"write", 0, 0, 'w'},
537 {"erase", 0, 0, 'E'},
538 {"verify", 0, 0, 'v'},
Uwe Hermannea07f622009-06-24 17:31:08 +0000539 {"noverify", 0, 0, 'n'},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000540 {"chip", 1, 0, 'c'},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000541 {"mainboard", 1, 0, 'm'},
542 {"verbose", 0, 0, 'V'},
543 {"force", 0, 0, 'f'},
544 {"layout", 1, 0, 'l'},
545 {"image", 1, 0, 'i'},
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000546 {"list-supported", 0, 0, 'L'},
Uwe Hermann20a293f2009-06-19 10:42:43 +0000547 {"list-supported-wiki", 0, 0, 'z'},
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000548 {"programmer", 1, 0, 'p'},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000549 {"help", 0, 0, 'h'},
Bernhard Walle201bde32008-01-21 15:24:22 +0000550 {"version", 0, 0, 'R'},
Uwe Hermanna7e05482007-05-09 10:17:44 +0000551 {0, 0, 0, 0}
Ollie Lho184a4042005-11-26 21:55:36 +0000552 };
Uwe Hermanna7e05482007-05-09 10:17:44 +0000553
Ollie Lhocbbf1252004-03-17 22:22:08 +0000554 char *filename = NULL;
Ronald G. Minnichceec4202003-07-25 04:37:41 +0000555
Uwe Hermanna7e05482007-05-09 10:17:44 +0000556 char *tempstr = NULL, *tempstr2 = NULL;
Yinghai Luad8ffd22004-10-20 05:07:16 +0000557
Carl-Daniel Hailfinger259fa012009-05-07 00:59:53 +0000558 print_version();
559
Yinghai Luad8ffd22004-10-20 05:07:16 +0000560 if (argc > 1) {
561 /* Yes, print them. */
562 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000563 printf_debug("The arguments are:\n");
Yinghai Luad8ffd22004-10-20 05:07:16 +0000564 for (i = 1; i < argc; ++i)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000565 printf_debug("%s\n", argv[i]);
Yinghai Luad8ffd22004-10-20 05:07:16 +0000566 }
567
Ollie Lhocbbf1252004-03-17 22:22:08 +0000568 setbuf(stdout, NULL);
Uwe Hermannea07f622009-06-24 17:31:08 +0000569 while ((opt = getopt_long(argc, argv, "rRwvnVEfc:m:l:i:p:Lzh",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000570 long_options, &option_index)) != EOF) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000571 switch (opt) {
572 case 'r':
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +0000573 if (++operation_specified > 1) {
574 fprintf(stderr, "More than one operation "
575 "specified. Aborting.\n");
576 exit(1);
577 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000578 read_it = 1;
579 break;
580 case 'w':
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +0000581 if (++operation_specified > 1) {
582 fprintf(stderr, "More than one operation "
583 "specified. Aborting.\n");
584 exit(1);
585 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000586 write_it = 1;
587 break;
588 case 'v':
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +0000589 if (++operation_specified > 1) {
590 fprintf(stderr, "More than one operation "
591 "specified. Aborting.\n");
592 exit(1);
593 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000594 verify_it = 1;
595 break;
Uwe Hermannea07f622009-06-24 17:31:08 +0000596 case 'n':
597 dont_verify_it = 1;
598 break;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000599 case 'c':
600 chip_to_probe = strdup(optarg);
601 break;
Ollie Lho789ad3d2004-03-18 20:27:33 +0000602 case 'V':
603 verbose = 1;
604 break;
Ollie Lhoefa28582004-12-08 20:10:01 +0000605 case 'E':
Carl-Daniel Hailfinger01d6aba2009-06-12 14:02:07 +0000606 if (++operation_specified > 1) {
607 fprintf(stderr, "More than one operation "
608 "specified. Aborting.\n");
609 exit(1);
610 }
Ollie Lhoefa28582004-12-08 20:10:01 +0000611 erase_it = 1;
612 break;
Ollie Lho184a4042005-11-26 21:55:36 +0000613 case 'm':
614 tempstr = strdup(optarg);
615 strtok(tempstr, ":");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000616 tempstr2 = strtok(NULL, ":");
Ollie Lho184a4042005-11-26 21:55:36 +0000617 if (tempstr2) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000618 lb_vendor = tempstr;
619 lb_part = tempstr2;
Ollie Lho184a4042005-11-26 21:55:36 +0000620 } else {
Peter Stuge6b53fed2008-01-27 16:21:21 +0000621 lb_vendor = NULL;
622 lb_part = tempstr;
Ollie Lho184a4042005-11-26 21:55:36 +0000623 }
624 break;
625 case 'f':
Uwe Hermanna7e05482007-05-09 10:17:44 +0000626 force = 1;
Ollie Lho184a4042005-11-26 21:55:36 +0000627 break;
628 case 'l':
Uwe Hermanna7e05482007-05-09 10:17:44 +0000629 tempstr = strdup(optarg);
Stefan Reinauer0a05d672007-04-14 16:32:59 +0000630 if (read_romlayout(tempstr))
631 exit(1);
Ollie Lho184a4042005-11-26 21:55:36 +0000632 break;
633 case 'i':
Uwe Hermanna7e05482007-05-09 10:17:44 +0000634 tempstr = strdup(optarg);
Ollie Lho184a4042005-11-26 21:55:36 +0000635 find_romentry(tempstr);
636 break;
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000637 case 'L':
Uwe Hermann05fab752009-05-16 23:42:17 +0000638 list_supported = 1;
Uwe Hermanne5ac1642008-03-12 11:54:51 +0000639 break;
Uwe Hermann20a293f2009-06-19 10:42:43 +0000640 case 'z':
641 list_supported_wiki = 1;
642 break;
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000643 case 'p':
644 if (strncmp(optarg, "internal", 8) == 0) {
645 programmer = PROGRAMMER_INTERNAL;
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +0000646 if (optarg[8] == '=')
647 programmer_param = strdup(optarg + 9);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000648 } else if (strncmp(optarg, "dummy", 5) == 0) {
649 programmer = PROGRAMMER_DUMMY;
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000650 if (optarg[5] == '=')
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +0000651 programmer_param = strdup(optarg + 6);
Uwe Hermannb4dcb712009-05-13 11:36:06 +0000652 } else if (strncmp(optarg, "nic3com", 7) == 0) {
653 programmer = PROGRAMMER_NIC3COM;
Christian Ruppert0cdb0312009-05-14 18:57:26 +0000654 if (optarg[7] == '=')
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +0000655 programmer_param = strdup(optarg + 8);
Rudolf Marek68720c72009-05-17 19:39:27 +0000656 } else if (strncmp(optarg, "satasii", 7) == 0) {
657 programmer = PROGRAMMER_SATASII;
658 if (optarg[7] == '=')
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +0000659 programmer_param = strdup(optarg + 8);
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000660 } else if (strncmp(optarg, "it87spi", 7) == 0) {
661 programmer = PROGRAMMER_IT87SPI;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000662 if (optarg[7] == '=')
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +0000663 programmer_param = strdup(optarg + 8);
Paul Fox05dfbe62009-06-16 21:08:06 +0000664 } else if (strncmp(optarg, "ft2232spi", 9) == 0) {
665 programmer = PROGRAMMER_FT2232SPI;
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000666 if (optarg[9] == '=')
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +0000667 programmer_param = strdup(optarg + 10);
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000668 } else if (strncmp(optarg, "serprog", 7) == 0) {
669 programmer = PROGRAMMER_SERPROG;
670 if (optarg[7] == '=')
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +0000671 programmer_param = strdup(optarg + 8);
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000672 } else {
673 printf("Error: Unknown programmer.\n");
674 exit(1);
675 }
676 break;
Bernhard Walle201bde32008-01-21 15:24:22 +0000677 case 'R':
Carl-Daniel Hailfinger259fa012009-05-07 00:59:53 +0000678 /* print_version() is always called during startup. */
Bernhard Walle201bde32008-01-21 15:24:22 +0000679 exit(0);
680 break;
Ollie Lho184a4042005-11-26 21:55:36 +0000681 case 'h':
Ollie Lhocbbf1252004-03-17 22:22:08 +0000682 default:
683 usage(argv[0]);
684 break;
685 }
686 }
Yinghai Luad8ffd22004-10-20 05:07:16 +0000687
Uwe Hermann05fab752009-05-16 23:42:17 +0000688 if (list_supported) {
689 print_supported_chips();
690 print_supported_chipsets();
691 print_supported_boards();
692 printf("\nSupported PCI devices flashrom can use "
693 "as programmer:\n\n");
694 print_supported_pcidevs(nics_3com);
Uwe Hermanneaefb482009-05-17 22:57:34 +0000695 print_supported_pcidevs(satas_sii);
Uwe Hermann05fab752009-05-16 23:42:17 +0000696 exit(0);
697 }
698
Uwe Hermann20a293f2009-06-19 10:42:43 +0000699 if (list_supported_wiki) {
Uwe Hermanna2d05012009-06-20 01:21:38 +0000700 print_wiki_tables();
Uwe Hermann20a293f2009-06-19 10:42:43 +0000701 exit(0);
702 }
703
Ollie Lhocbbf1252004-03-17 22:22:08 +0000704 if (read_it && write_it) {
Uwe Hermann793bdcd2008-05-22 22:47:04 +0000705 printf("Error: -r and -w are mutually exclusive.\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000706 usage(argv[0]);
707 }
Ronald G. Minniche5559572003-03-28 03:29:43 +0000708
Ollie Lhocbbf1252004-03-17 22:22:08 +0000709 if (optind < argc)
710 filename = argv[optind++];
Ronald G. Minniche5559572003-03-28 03:29:43 +0000711
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +0000712 if (programmer_init()) {
713 fprintf(stderr, "Error: Programmer initialization failed.\n");
714 exit(1);
715 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000716
Ollie Lhocbbf1252004-03-17 22:22:08 +0000717 myusec_calibrate_delay();
Ollie Lho184a4042005-11-26 21:55:36 +0000718
Claus Gindhart2fd11d62008-05-08 00:31:44 +0000719 for (i = 0; i < ARRAY_SIZE(flashes); i++) {
Uwe Hermann394131e2008-10-18 21:14:13 +0000720 flashes[i] =
721 probe_flash(i ? flashes[i - 1] + 1 : flashchips, 0);
Claus Gindhart2fd11d62008-05-08 00:31:44 +0000722 if (!flashes[i])
723 for (i++; i < ARRAY_SIZE(flashes); i++)
724 flashes[i] = NULL;
725 }
726
727 if (flashes[1]) {
728 printf("Multiple flash chips were detected:");
729 for (i = 0; i < ARRAY_SIZE(flashes) && flashes[i]; i++)
730 printf(" %s", flashes[i]->name);
731 printf("\nPlease specify which chip to use with the -c <chipname> option.\n");
732 exit(1);
733 } else if (!flashes[0]) {
Ollie Lho184a4042005-11-26 21:55:36 +0000734 printf("No EEPROM/flash device found.\n");
Peter Stuge7ffbc6f2008-06-18 02:08:40 +0000735 if (!force || !chip_to_probe) {
736 printf("If you know which flash chip you have, and if this version of flashrom\n");
737 printf("supports a similar flash chip, you can try to force read your chip. Run:\n");
738 printf("flashrom -f -r -c similar_supported_flash_chip filename\n");
739 printf("\n");
740 printf("Note: flashrom can never write when the flash chip isn't found automatically.\n");
741 }
742 if (force && read_it && chip_to_probe) {
743 printf("Force read (-f -r -c) requested, forcing chip probe success:\n");
744 flashes[0] = probe_flash(flashchips, 1);
745 if (!flashes[0]) {
746 printf("flashrom does not support a flash chip named '%s'.\n", chip_to_probe);
747 printf("Run flashrom -L to view the hardware supported in this flashrom version.\n");
748 exit(1);
749 }
Carl-Daniel Hailfinger49eb4dd2009-06-19 11:23:57 +0000750 return read_flash(flashes[0], filename);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +0000751 }
Jordan Crouse144ede62007-10-04 06:26:41 +0000752 // FIXME: flash writes stay enabled!
Ollie Lhocbbf1252004-03-17 22:22:08 +0000753 exit(1);
754 }
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000755
Claus Gindhart2fd11d62008-05-08 00:31:44 +0000756 flash = flashes[0];
757
Peter Stuge1159d582008-05-03 04:34:37 +0000758 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
759 printf("===\n");
760 if (flash->tested & TEST_BAD_MASK) {
761 printf("This flash part has status NOT WORKING for operations:");
762 if (flash->tested & TEST_BAD_PROBE)
763 printf(" PROBE");
764 if (flash->tested & TEST_BAD_READ)
765 printf(" READ");
766 if (flash->tested & TEST_BAD_ERASE)
767 printf(" ERASE");
768 if (flash->tested & TEST_BAD_WRITE)
769 printf(" WRITE");
770 printf("\n");
Carl-Daniel Hailfinger6a0a25c2008-11-28 23:45:27 +0000771 }
772 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
773 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
774 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
775 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
Peter Stuge1159d582008-05-03 04:34:37 +0000776 printf("This flash part has status UNTESTED for operations:");
Carl-Daniel Hailfinger6a0a25c2008-11-28 23:45:27 +0000777 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
Peter Stuge1159d582008-05-03 04:34:37 +0000778 printf(" PROBE");
Carl-Daniel Hailfinger6a0a25c2008-11-28 23:45:27 +0000779 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
Peter Stuge1159d582008-05-03 04:34:37 +0000780 printf(" READ");
Carl-Daniel Hailfinger6a0a25c2008-11-28 23:45:27 +0000781 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
Peter Stuge1159d582008-05-03 04:34:37 +0000782 printf(" ERASE");
Carl-Daniel Hailfinger6a0a25c2008-11-28 23:45:27 +0000783 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
Peter Stuge1159d582008-05-03 04:34:37 +0000784 printf(" WRITE");
785 printf("\n");
786 }
Stefan Reinauer22ea8cd2009-07-30 13:32:26 +0000787 printf("Please email a report to flashrom@flashrom.org if any "
Uwe Hermanna9720402009-05-21 15:55:46 +0000788 "of the above operations\nwork correctly for you with "
789 "this flash part. Please include the flashrom\noutput "
790 "with the additional -V option for all operations you "
791 "tested (-V, -rV,\n-wV, -EV), and mention which "
792 "mainboard you tested. Thanks for your help!\n===\n");
Peter Stuge1159d582008-05-03 04:34:37 +0000793 }
Ollie Lho184a4042005-11-26 21:55:36 +0000794
Jordan Crouse144ede62007-10-04 06:26:41 +0000795 if (!(read_it | write_it | verify_it | erase_it)) {
796 printf("No operations were specified.\n");
797 // FIXME: flash writes stay enabled!
798 exit(1);
799 }
800
Ollie Lhoefa28582004-12-08 20:10:01 +0000801 if (!filename && !erase_it) {
Jordan Crouse144ede62007-10-04 06:26:41 +0000802 printf("Error: No filename specified.\n");
803 // FIXME: flash writes stay enabled!
804 exit(1);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000805 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000806
Uwe Hermannea07f622009-06-24 17:31:08 +0000807 /* Always verify write operations unless -n is used. */
808 if (write_it && !dont_verify_it)
809 verify_it = 1;
810
Ollie Lho184a4042005-11-26 21:55:36 +0000811 size = flash->total_size * 1024;
812 buf = (uint8_t *) calloc(size, sizeof(char));
Uwe Hermanna7e05482007-05-09 10:17:44 +0000813
Ollie Lhoefa28582004-12-08 20:10:01 +0000814 if (erase_it) {
Carl-Daniel Hailfinger7314cc32009-01-28 00:27:54 +0000815 if (erase_flash(flash))
Peter Stugef31104c2008-04-28 14:47:30 +0000816 return 1;
Ollie Lhoefa28582004-12-08 20:10:01 +0000817 } else if (read_it) {
Carl-Daniel Hailfinger49eb4dd2009-06-19 11:23:57 +0000818 if (read_flash(flash, filename))
Peter Stuge1fec0f32009-01-12 21:00:35 +0000819 return 1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000820 } else {
Stefan Reinauer018aca82006-11-21 23:48:51 +0000821 struct stat image_stat;
822
Ollie Lho761bf1b2004-03-20 16:46:10 +0000823 if ((image = fopen(filename, "r")) == NULL) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000824 perror(filename);
825 exit(1);
826 }
Stefan Reinauer018aca82006-11-21 23:48:51 +0000827 if (fstat(fileno(image), &image_stat) != 0) {
828 perror(filename);
829 exit(1);
830 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000831 if (image_stat.st_size != flash->total_size * 1024) {
Uwe Hermann793bdcd2008-05-22 22:47:04 +0000832 fprintf(stderr, "Error: Image size doesn't match\n");
Stefan Reinauer018aca82006-11-21 23:48:51 +0000833 exit(1);
834 }
835
Peter Stuge1fec0f32009-01-12 21:00:35 +0000836 numbytes = fread(buf, 1, size, image);
Peter Stuge7ffbc6f2008-06-18 02:08:40 +0000837 show_id(buf, size, force);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000838 fclose(image);
Peter Stuge1fec0f32009-01-12 21:00:35 +0000839 if (numbytes != size) {
840 fprintf(stderr, "Error: Failed to read file. Got %ld bytes, wanted %ld!\n", numbytes, size);
841 return 1;
842 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000843 }
844
Ollie Lho184a4042005-11-26 21:55:36 +0000845 // This should be moved into each flash part's code to do it
846 // cleanly. This does the job.
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000847 /* FIXME: Adapt to the external flasher infrastructure. */
Stefan Reinauerce532972007-05-23 17:20:56 +0000848 handle_romentries(buf, (uint8_t *) flash->virtual_memory);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000849
Ollie Lho184a4042005-11-26 21:55:36 +0000850 // ////////////////////////////////////////////////////////////
Uwe Hermanna7e05482007-05-09 10:17:44 +0000851
Peter Stugef31104c2008-04-28 14:47:30 +0000852 if (write_it) {
Paul Foxd51410c2009-06-12 08:04:08 +0000853 printf("Writing flash chip... ");
Peter Stugef31104c2008-04-28 14:47:30 +0000854 if (!flash->write) {
855 fprintf(stderr, "Error: flashrom has no write function for this flash chip.\n");
856 return 1;
857 }
Carl-Daniel Hailfinger0a3e5ae2009-07-24 12:18:54 +0000858 ret = flash->write(flash, buf);
859 if (ret) {
860 fprintf(stderr, "FAILED!\n");
861 return 1;
862 } else {
863 printf("COMPLETE.\n");
864 }
Peter Stugef31104c2008-04-28 14:47:30 +0000865 }
Ollie Lho184a4042005-11-26 21:55:36 +0000866
Ollie Lhocbbf1252004-03-17 22:22:08 +0000867 if (verify_it)
Carl-Daniel Hailfinger0a3e5ae2009-07-24 12:18:54 +0000868 ret = verify_flash(flash, buf);
Ollie Lho184a4042005-11-26 21:55:36 +0000869
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000870 programmer_shutdown();
871
Stefan Reinauer143da0b2006-01-04 16:42:57 +0000872 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000873}