blob: c8678428a89d9a9689635090d8a0da507a07f472 [file] [log] [blame]
rminnich8d3ff912003-10-25 17:01:29 +00001/*
uweb25f1ea2007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
rminnich8d3ff912003-10-25 17:01:29 +00003 *
uwe555dd972007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2004 Tyan Corp <yhlu@tyan.com>
uwe4475e902009-05-19 14:14:21 +00006 * Copyright (C) 2005-2008 coresystems GmbH
hailfinger23060112009-05-08 12:49:03 +00007 * Copyright (C) 2008,2009 Carl-Daniel Hailfinger
rminnich8d3ff912003-10-25 17:01:29 +00008 *
uweb25f1ea2007-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.
rminnich8d3ff912003-10-25 17:01:29 +000013 *
uweb25f1ea2007-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.
rminnich8d3ff912003-10-25 17:01:29 +000018 *
uweb25f1ea2007-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
rminnich8d3ff912003-10-25 17:01:29 +000022 */
23
rminnich8d3ff912003-10-25 17:01:29 +000024#include <fcntl.h>
stepan1da96c02006-11-21 23:48:51 +000025#include <sys/types.h>
26#include <sys/stat.h>
rminnich8d3ff912003-10-25 17:01:29 +000027#include <string.h>
28#include <stdlib.h>
ollie6a600992005-11-26 21:55:36 +000029#include <getopt.h>
rminnich8d3ff912003-10-25 17:01:29 +000030#include "flash.h"
hailfinger66966da2009-06-15 14:14:48 +000031#include "flashchips.h"
rminnich8d3ff912003-10-25 17:01:29 +000032
hailfinger2d83b5b2009-07-22 20:13:00 +000033const char *flashrom_version = FLASHROM_VERSION;
rminnich8d3ff912003-10-25 17:01:29 +000034char *chip_to_probe = NULL;
stuge98c09aa2008-06-18 02:08:40 +000035int verbose = 0;
hailfinger6fe23d62009-08-12 11:39:29 +000036enum programmer programmer = PROGRAMMER_INTERNAL;
hailfinger4f45a4f2009-08-12 13:32:56 +000037char *programmer_param = NULL;
stepan782fb172007-04-06 11:58:03 +000038
hailfingerabe249e2009-05-08 17:43:22 +000039const struct programmer_entry programmer_table[] = {
40 {
hailfinger3548a9a2009-08-12 14:34:35 +000041 .name = "internal",
hailfinger6c69ab02009-05-11 15:46:43 +000042 .init = internal_init,
43 .shutdown = internal_shutdown,
hailfinger11ae3c42009-05-11 14:13:25 +000044 .map_flash_region = physmap,
45 .unmap_flash_region = physunmap,
hailfinger6c69ab02009-05-11 15:46:43 +000046 .chip_readb = internal_chip_readb,
47 .chip_readw = internal_chip_readw,
48 .chip_readl = internal_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +000049 .chip_readn = internal_chip_readn,
hailfinger6c69ab02009-05-11 15:46:43 +000050 .chip_writeb = internal_chip_writeb,
51 .chip_writew = internal_chip_writew,
52 .chip_writel = internal_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +000053 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +000054 .delay = internal_delay,
hailfingerabe249e2009-05-08 17:43:22 +000055 },
stepan927d4e22007-04-04 22:45:58 +000056
hailfinger571a6b32009-09-16 10:09:21 +000057#if DUMMY_SUPPORT == 1
hailfingera9df33c2009-05-09 00:54:55 +000058 {
hailfinger3548a9a2009-08-12 14:34:35 +000059 .name = "dummy",
hailfinger6c69ab02009-05-11 15:46:43 +000060 .init = dummy_init,
61 .shutdown = dummy_shutdown,
hailfinger11ae3c42009-05-11 14:13:25 +000062 .map_flash_region = dummy_map,
63 .unmap_flash_region = dummy_unmap,
hailfinger6c69ab02009-05-11 15:46:43 +000064 .chip_readb = dummy_chip_readb,
65 .chip_readw = dummy_chip_readw,
66 .chip_readl = dummy_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +000067 .chip_readn = dummy_chip_readn,
hailfinger6c69ab02009-05-11 15:46:43 +000068 .chip_writeb = dummy_chip_writeb,
69 .chip_writew = dummy_chip_writew,
70 .chip_writel = dummy_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +000071 .chip_writen = dummy_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +000072 .delay = internal_delay,
hailfingera9df33c2009-05-09 00:54:55 +000073 },
hailfinger571a6b32009-09-16 10:09:21 +000074#endif
hailfingera9df33c2009-05-09 00:54:55 +000075
hailfinger571a6b32009-09-16 10:09:21 +000076#if NIC3COM_SUPPORT == 1
uwe0f5a3a22009-05-13 11:36:06 +000077 {
hailfinger3548a9a2009-08-12 14:34:35 +000078 .name = "nic3com",
uwe0f5a3a22009-05-13 11:36:06 +000079 .init = nic3com_init,
80 .shutdown = nic3com_shutdown,
uwe3e656bd2009-05-17 23:12:17 +000081 .map_flash_region = fallback_map,
82 .unmap_flash_region = fallback_unmap,
uwe0f5a3a22009-05-13 11:36:06 +000083 .chip_readb = nic3com_chip_readb,
hailfinger43716942009-05-16 01:23:55 +000084 .chip_readw = fallback_chip_readw,
85 .chip_readl = fallback_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +000086 .chip_readn = fallback_chip_readn,
uwe0f5a3a22009-05-13 11:36:06 +000087 .chip_writeb = nic3com_chip_writeb,
hailfinger43716942009-05-16 01:23:55 +000088 .chip_writew = fallback_chip_writew,
89 .chip_writel = fallback_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +000090 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +000091 .delay = internal_delay,
uwe0f5a3a22009-05-13 11:36:06 +000092 },
hailfinger571a6b32009-09-16 10:09:21 +000093#endif
uwe0f5a3a22009-05-13 11:36:06 +000094
uweff4576d2009-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
hailfinger571a6b32009-09-16 10:09:21 +0000114#if DRKAISER_SUPPORT == 1
ruikda922a12009-05-17 19:39:27 +0000115 {
uwee2f95ef2009-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 },
hailfinger571a6b32009-09-16 10:09:21 +0000131#endif
uwee2f95ef2009-09-02 23:00:46 +0000132
hailfinger571a6b32009-09-16 10:09:21 +0000133#if SATASII_SUPPORT == 1
uwee2f95ef2009-09-02 23:00:46 +0000134 {
hailfinger3548a9a2009-08-12 14:34:35 +0000135 .name = "satasii",
ruikda922a12009-05-17 19:39:27 +0000136 .init = satasii_init,
137 .shutdown = satasii_shutdown,
uwe3e656bd2009-05-17 23:12:17 +0000138 .map_flash_region = fallback_map,
139 .unmap_flash_region = fallback_unmap,
ruikda922a12009-05-17 19:39:27 +0000140 .chip_readb = satasii_chip_readb,
141 .chip_readw = fallback_chip_readw,
142 .chip_readl = fallback_chip_readl,
hailfinger9d987ef2009-06-05 18:32:07 +0000143 .chip_readn = fallback_chip_readn,
ruikda922a12009-05-17 19:39:27 +0000144 .chip_writeb = satasii_chip_writeb,
145 .chip_writew = fallback_chip_writew,
146 .chip_writel = fallback_chip_writel,
hailfinger9d987ef2009-06-05 18:32:07 +0000147 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000148 .delay = internal_delay,
ruikda922a12009-05-17 19:39:27 +0000149 },
hailfinger571a6b32009-09-16 10:09:21 +0000150#endif
ruikda922a12009-05-17 19:39:27 +0000151
hailfinger26e212b2009-05-31 18:00:57 +0000152 {
hailfinger3548a9a2009-08-12 14:34:35 +0000153 .name = "it87spi",
hailfinger26e212b2009-05-31 18:00:57 +0000154 .init = it87spi_init,
hailfinger571a6b32009-09-16 10:09:21 +0000155 .shutdown = noop_shutdown,
hailfinger6fe23d62009-08-12 11:39:29 +0000156 .map_flash_region = fallback_map,
157 .unmap_flash_region = fallback_unmap,
hailfinger571a6b32009-09-16 10:09:21 +0000158 .chip_readb = noop_chip_readb,
hailfinger9d987ef2009-06-05 18:32:07 +0000159 .chip_readw = fallback_chip_readw,
160 .chip_readl = fallback_chip_readl,
161 .chip_readn = fallback_chip_readn,
hailfinger571a6b32009-09-16 10:09:21 +0000162 .chip_writeb = noop_chip_writeb,
hailfinger9d987ef2009-06-05 18:32:07 +0000163 .chip_writew = fallback_chip_writew,
164 .chip_writel = fallback_chip_writel,
165 .chip_writen = fallback_chip_writen,
hailfingere5829f62009-06-05 17:48:08 +0000166 .delay = internal_delay,
hailfinger26e212b2009-05-31 18:00:57 +0000167 },
168
hailfingerd9dcfbd2009-08-19 13:27:58 +0000169#if FT2232_SPI_SUPPORT == 1
hailfingerf31da3d2009-06-16 21:08:06 +0000170 {
hailfinger3548a9a2009-08-12 14:34:35 +0000171 .name = "ft2232spi",
hailfingerf31da3d2009-06-16 21:08:06 +0000172 .init = ft2232_spi_init,
hailfinger571a6b32009-09-16 10:09:21 +0000173 .shutdown = noop_shutdown, /* Missing shutdown */
hailfinger6fe23d62009-08-12 11:39:29 +0000174 .map_flash_region = fallback_map,
175 .unmap_flash_region = fallback_unmap,
hailfinger571a6b32009-09-16 10:09:21 +0000176 .chip_readb = noop_chip_readb,
hailfingerf31da3d2009-06-16 21:08:06 +0000177 .chip_readw = fallback_chip_readw,
178 .chip_readl = fallback_chip_readl,
179 .chip_readn = fallback_chip_readn,
hailfinger571a6b32009-09-16 10:09:21 +0000180 .chip_writeb = noop_chip_writeb,
hailfingerf31da3d2009-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 },
hailfingerd9dcfbd2009-08-19 13:27:58 +0000186#endif
hailfinger6fe23d62009-08-12 11:39:29 +0000187
hailfinger74d88a72009-08-12 16:17:41 +0000188#if SERPROG_SUPPORT == 1
hailfinger37b4fbf2009-06-23 11:33:43 +0000189 {
hailfinger3548a9a2009-08-12 14:34:35 +0000190 .name = "serprog",
hailfinger37b4fbf2009-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 },
hailfinger74d88a72009-08-12 16:17:41 +0000205#endif
hailfingerf31da3d2009-06-16 21:08:06 +0000206
hailfinger3548a9a2009-08-12 14:34:35 +0000207 {}, /* This entry corresponds to PROGRAMMER_INVALID. */
hailfingerabe249e2009-05-08 17:43:22 +0000208};
stepan927d4e22007-04-04 22:45:58 +0000209
uweabe92a52009-05-16 22:36:00 +0000210int programmer_init(void)
211{
212 return programmer_table[programmer].init();
213}
214
215int programmer_shutdown(void)
216{
217 return programmer_table[programmer].shutdown();
218}
219
220void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
221 size_t len)
222{
223 return programmer_table[programmer].map_flash_region(descr,
224 phys_addr, len);
225}
226
227void programmer_unmap_flash_region(void *virt_addr, size_t len)
228{
229 programmer_table[programmer].unmap_flash_region(virt_addr, len);
230}
231
232void chip_writeb(uint8_t val, chipaddr addr)
233{
234 programmer_table[programmer].chip_writeb(val, addr);
235}
236
237void chip_writew(uint16_t val, chipaddr addr)
238{
239 programmer_table[programmer].chip_writew(val, addr);
240}
241
242void chip_writel(uint32_t val, chipaddr addr)
243{
244 programmer_table[programmer].chip_writel(val, addr);
245}
246
hailfinger9d987ef2009-06-05 18:32:07 +0000247void chip_writen(uint8_t *buf, chipaddr addr, size_t len)
248{
249 programmer_table[programmer].chip_writen(buf, addr, len);
250}
251
uweabe92a52009-05-16 22:36:00 +0000252uint8_t chip_readb(const chipaddr addr)
253{
254 return programmer_table[programmer].chip_readb(addr);
255}
256
257uint16_t chip_readw(const chipaddr addr)
258{
259 return programmer_table[programmer].chip_readw(addr);
260}
261
262uint32_t chip_readl(const chipaddr addr)
263{
264 return programmer_table[programmer].chip_readl(addr);
265}
266
hailfinger9d987ef2009-06-05 18:32:07 +0000267void chip_readn(uint8_t *buf, chipaddr addr, size_t len)
268{
269 programmer_table[programmer].chip_readn(buf, addr, len);
hailfinger9d987ef2009-06-05 18:32:07 +0000270}
271
hailfingere5829f62009-06-05 17:48:08 +0000272void programmer_delay(int usecs)
273{
274 programmer_table[programmer].delay(usecs);
275}
276
stuge5ff0e6c2009-01-26 00:39:57 +0000277void map_flash_registers(struct flashchip *flash)
stepan15e64bc2007-05-24 08:48:10 +0000278{
stepan15e64bc2007-05-24 08:48:10 +0000279 size_t size = flash->total_size * 1024;
hailfinger8577ad12009-05-11 14:01:17 +0000280 /* Flash registers live 4 MByte below the flash. */
hailfinger0459e1c2009-08-19 13:55:34 +0000281 /* FIXME: This is incorrect for nonstandard flashbase. */
hailfinger82719632009-05-16 21:22:56 +0000282 flash->virtual_registers = (chipaddr)programmer_map_flash_region("flash chip registers", (0xFFFFFFFF - 0x400000 - size + 1), size);
stepan15e64bc2007-05-24 08:48:10 +0000283}
284
hailfinger0f08b7a2009-06-16 08:55:44 +0000285int read_memmapped(struct flashchip *flash, uint8_t *buf, int start, int len)
hailfinger23060112009-05-08 12:49:03 +0000286{
hailfinger0f08b7a2009-06-16 08:55:44 +0000287 chip_readn(buf, flash->virtual_memory + start, len);
hailfinger23060112009-05-08 12:49:03 +0000288
289 return 0;
290}
291
hailfinger7b414742009-06-13 12:04:03 +0000292int min(int a, int b)
293{
294 return (a < b) ? a : b;
295}
296
hailfinger7af83692009-06-15 17:23:36 +0000297int max(int a, int b)
298{
299 return (a > b) ? a : b;
300}
301
hailfingera916b422009-06-01 02:08:58 +0000302char *strcat_realloc(char *dest, const char *src)
303{
304 dest = realloc(dest, strlen(dest) + strlen(src) + 1);
305 if (!dest)
306 return NULL;
307 strcat(dest, src);
308 return dest;
309}
310
hailfinger7af83692009-06-15 17:23:36 +0000311/* start is an offset to the base address of the flash chip */
312int check_erased_range(struct flashchip *flash, int start, int len)
313{
314 int ret;
315 uint8_t *cmpbuf = malloc(len);
316
317 if (!cmpbuf) {
318 fprintf(stderr, "Could not allocate memory!\n");
319 exit(1);
320 }
321 memset(cmpbuf, 0xff, len);
322 ret = verify_range(flash, cmpbuf, start, len, "ERASE");
323 free(cmpbuf);
324 return ret;
325}
326
327/**
328 * @cmpbuf buffer to compare against
329 * @start offset to the base address of the flash chip
330 * @len length of the verified area
331 * @message string to print in the "FAILED" message
332 * @return 0 for success, -1 for failure
333 */
334int verify_range(struct flashchip *flash, uint8_t *cmpbuf, int start, int len, char *message)
335{
336 int i, j, starthere, lenhere, ret = 0;
hailfinger7af83692009-06-15 17:23:36 +0000337 int page_size = flash->page_size;
338 uint8_t *readbuf = malloc(page_size);
hailfinger5be6c0f2009-07-23 01:42:56 +0000339 int failcount = 0;
hailfinger7af83692009-06-15 17:23:36 +0000340
341 if (!len)
342 goto out_free;
343
hailfingerb0f4d122009-06-24 08:20:45 +0000344 if (!flash->read) {
345 fprintf(stderr, "ERROR: flashrom has no read function for this flash chip.\n");
346 return 1;
347 }
hailfinger7af83692009-06-15 17:23:36 +0000348 if (!readbuf) {
349 fprintf(stderr, "Could not allocate memory!\n");
350 exit(1);
351 }
352
353 if (start + len > flash->total_size * 1024) {
354 fprintf(stderr, "Error: %s called with start 0x%x + len 0x%x >"
355 " total_size 0x%x\n", __func__, start, len,
356 flash->total_size * 1024);
357 ret = -1;
358 goto out_free;
359 }
360 if (!message)
361 message = "VERIFY";
362
363 /* Warning: This loop has a very unusual condition and body.
364 * The loop needs to go through each page with at least one affected
365 * byte. The lowest page number is (start / page_size) since that
366 * division rounds down. The highest page number we want is the page
367 * where the last byte of the range lives. That last byte has the
368 * address (start + len - 1), thus the highest page number is
369 * (start + len - 1) / page_size. Since we want to include that last
370 * page as well, the loop condition uses <=.
371 */
372 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
373 /* Byte position of the first byte in the range in this page. */
374 starthere = max(start, i * page_size);
375 /* Length of bytes in the range in this page. */
376 lenhere = min(start + len, (i + 1) * page_size) - starthere;
hailfingerb0f4d122009-06-24 08:20:45 +0000377 flash->read(flash, readbuf, starthere, lenhere);
hailfinger7af83692009-06-15 17:23:36 +0000378 for (j = 0; j < lenhere; j++) {
379 if (cmpbuf[starthere - start + j] != readbuf[j]) {
hailfinger5be6c0f2009-07-23 01:42:56 +0000380 /* Only print the first failure. */
381 if (!failcount++)
382 fprintf(stderr, "%s FAILED at 0x%08x! "
383 "Expected=0x%02x, Read=0x%02x,",
384 message, starthere + j,
385 cmpbuf[starthere - start + j],
386 readbuf[j]);
hailfinger7af83692009-06-15 17:23:36 +0000387 }
388 }
389 }
hailfinger5be6c0f2009-07-23 01:42:56 +0000390 if (failcount) {
391 fprintf(stderr, " failed byte count from 0x%08x-0x%08x: 0x%x\n",
392 start, start + len - 1, failcount);
393 ret = -1;
394 }
hailfinger7af83692009-06-15 17:23:36 +0000395
396out_free:
397 free(readbuf);
398 return ret;
399}
400
stuge56300c32008-09-03 23:10:05 +0000401struct flashchip *probe_flash(struct flashchip *first_flash, int force)
rminnich8d3ff912003-10-25 17:01:29 +0000402{
stuge56300c32008-09-03 23:10:05 +0000403 struct flashchip *flash;
stuge0b8a7fb2008-12-03 23:36:48 +0000404 unsigned long base = 0, size;
hailfingera916b422009-06-01 02:08:58 +0000405 char *tmp;
rminnich8d3ff912003-10-25 17:01:29 +0000406
stuge56300c32008-09-03 23:10:05 +0000407 for (flash = first_flash; flash && flash->name; flash++) {
stugec1e55fe2008-07-02 17:15:47 +0000408 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
ollie5672ac62004-03-17 22:22:08 +0000409 continue;
stepanb8361b92008-03-17 22:59:40 +0000410 printf_debug("Probing for %s %s, %d KB: ",
411 flash->vendor, flash->name, flash->total_size);
stuge98c09aa2008-06-18 02:08:40 +0000412 if (!flash->probe && !force) {
stuge8ce3a3c2008-04-28 14:47:30 +0000413 printf_debug("failed! flashrom has no probe function for this flash chip.\n");
stuge8ce3a3c2008-04-28 14:47:30 +0000414 continue;
415 }
hailfingera916b422009-06-01 02:08:58 +0000416 if (!(buses_supported & flash->bustype)) {
417 tmp = flashbuses_to_text(buses_supported);
418 printf_debug("skipped. Host bus type %s ", tmp);
419 free(tmp);
420 tmp = flashbuses_to_text(flash->bustype);
421 printf_debug("and chip bus type %s are incompatible.\n", tmp);
422 free(tmp);
423 continue;
424 }
stepan782fb172007-04-06 11:58:03 +0000425
ollie5672ac62004-03-17 22:22:08 +0000426 size = flash->total_size * 1024;
stepan782fb172007-04-06 11:58:03 +0000427
hailfinger72d3b982009-05-09 07:27:23 +0000428 base = flashbase ? flashbase : (0xffffffff - size + 1);
hailfinger82719632009-05-16 21:22:56 +0000429 flash->virtual_memory = (chipaddr)programmer_map_flash_region("flash chip", base, size);
rminnich8d3ff912003-10-25 17:01:29 +0000430
stugec1e55fe2008-07-02 17:15:47 +0000431 if (force)
432 break;
stepanc98b80b2006-03-16 16:57:41 +0000433
stuge56300c32008-09-03 23:10:05 +0000434 if (flash->probe(flash) != 1)
435 goto notfound;
436
uwefa98ca12008-10-18 21:14:13 +0000437 if (first_flash == flashchips
438 || flash->model_id != GENERIC_DEVICE_ID)
stugec1e55fe2008-07-02 17:15:47 +0000439 break;
440
stuge56300c32008-09-03 23:10:05 +0000441notfound:
hailfinger82719632009-05-16 21:22:56 +0000442 programmer_unmap_flash_region((void *)flash->virtual_memory, size);
rminnich8d3ff912003-10-25 17:01:29 +0000443 }
uwebe4477b2007-08-23 16:08:21 +0000444
stugec1e55fe2008-07-02 17:15:47 +0000445 if (!flash || !flash->name)
446 return NULL;
447
uwe9e6811e2009-06-28 21:47:57 +0000448 printf("Found chip \"%s %s\" (%d KB, %s) at physical address 0x%lx.\n",
449 flash->vendor, flash->name, flash->total_size,
450 flashbuses_to_text(flash->bustype), base);
451
stugec1e55fe2008-07-02 17:15:47 +0000452 return flash;
rminnich8d3ff912003-10-25 17:01:29 +0000453}
454
stepan193c9c22005-12-18 16:41:10 +0000455int verify_flash(struct flashchip *flash, uint8_t *buf)
rminnich8d3ff912003-10-25 17:01:29 +0000456{
hailfingerb0f4d122009-06-24 08:20:45 +0000457 int ret;
ollie5b621572004-03-20 16:46:10 +0000458 int total_size = flash->total_size * 1024;
rminnich8d3ff912003-10-25 17:01:29 +0000459
uwefd2d0fe2007-10-17 23:55:15 +0000460 printf("Verifying flash... ");
uwef6641642007-05-09 10:17:44 +0000461
hailfingerb0f4d122009-06-24 08:20:45 +0000462 ret = verify_range(flash, buf, 0, total_size, NULL);
uwef6641642007-05-09 10:17:44 +0000463
hailfingerb0f4d122009-06-24 08:20:45 +0000464 if (!ret)
465 printf("VERIFIED. \n");
stepanc98b80b2006-03-16 16:57:41 +0000466
hailfingerb0f4d122009-06-24 08:20:45 +0000467 return ret;
rminnich8d3ff912003-10-25 17:01:29 +0000468}
469
hailfinger09bd6f02009-06-19 11:23:57 +0000470int read_flash(struct flashchip *flash, char *filename)
hailfingerd219a232009-01-28 00:27:54 +0000471{
472 unsigned long numbytes;
473 FILE *image;
474 unsigned long size = flash->total_size * 1024;
475 unsigned char *buf = calloc(size, sizeof(char));
hailfingerde345862009-06-01 22:07:52 +0000476
477 if (!filename) {
478 printf("Error: No filename specified.\n");
479 return 1;
480 }
hailfingerd219a232009-01-28 00:27:54 +0000481 if ((image = fopen(filename, "w")) == NULL) {
482 perror(filename);
483 exit(1);
484 }
485 printf("Reading flash... ");
hailfinger23060112009-05-08 12:49:03 +0000486 if (!flash->read) {
487 printf("FAILED!\n");
488 fprintf(stderr, "ERROR: flashrom has no read function for this flash chip.\n");
489 return 1;
490 } else
hailfinger0f08b7a2009-06-16 08:55:44 +0000491 flash->read(flash, buf, 0, size);
hailfingerd219a232009-01-28 00:27:54 +0000492
hailfingerd219a232009-01-28 00:27:54 +0000493 numbytes = fwrite(buf, 1, size, image);
494 fclose(image);
hailfingera2615252009-06-01 21:37:00 +0000495 free(buf);
hailfingerd219a232009-01-28 00:27:54 +0000496 printf("%s.\n", numbytes == size ? "done" : "FAILED");
497 if (numbytes != size)
498 return 1;
499 return 0;
500}
501
502int erase_flash(struct flashchip *flash)
503{
hailfinger7df21362009-09-05 02:30:58 +0000504 int i, j, k, ret = 0, found = 0;
505
hailfingerd219a232009-01-28 00:27:54 +0000506 printf("Erasing flash chip... ");
hailfinger7df21362009-09-05 02:30:58 +0000507 for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
508 unsigned long done = 0;
509 struct block_eraser eraser = flash->block_erasers[k];
510
511 printf_debug("Looking at blockwise erase function %i... ", k);
512 if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
513 printf_debug("not defined. "
514 "Looking for another erase function.\n");
515 continue;
516 }
517 if (!eraser.block_erase && eraser.eraseblocks[0].count) {
518 printf_debug("eraseblock layout is known, but no "
519 "matching block erase function found. "
520 "Looking for another erase function.\n");
521 continue;
522 }
523 if (eraser.block_erase && !eraser.eraseblocks[0].count) {
524 printf_debug("block erase function found, but "
525 "eraseblock layout is unknown. "
526 "Looking for another erase function.\n");
527 continue;
528 }
529 found = 1;
530 printf_debug("trying... ");
531 for (i = 0; i < NUM_ERASEREGIONS; i++) {
532 /* count==0 for all automatically initialized array
533 * members so the loop below won't be executed for them.
534 */
535 for (j = 0; j < eraser.eraseblocks[i].count; j++) {
536 ret = eraser.block_erase(flash, done + eraser.eraseblocks[i].size * j, eraser.eraseblocks[i].size);
537 if (ret)
538 break;
539 }
540 if (ret)
541 break;
542 }
543 /* If everything is OK, don't try another erase function. */
544 if (!ret)
545 break;
546 }
547 /* If no block erase function was found or block erase failed, retry. */
548 if ((!found || ret) && (flash->erase)) {
549 found = 1;
550 printf_debug("Trying whole-chip erase function... ");
551 ret = flash->erase(flash);
552 }
553 if (!found) {
hailfingerd219a232009-01-28 00:27:54 +0000554 fprintf(stderr, "ERROR: flashrom has no erase function for this flash chip.\n");
555 return 1;
556 }
hailfinger1e9ee0f2009-05-08 17:15:15 +0000557
hailfinger7df21362009-09-05 02:30:58 +0000558 if (ret) {
559 fprintf(stderr, "FAILED!\n");
560 } else {
561 printf("SUCCESS.\n");
562 }
563 return ret;
hailfingerd219a232009-01-28 00:27:54 +0000564}
565
hailfinger0459e1c2009-08-19 13:55:34 +0000566void emergency_help_message()
567{
568 fprintf(stderr, "Your flash chip is in an unknown state.\n"
569 "Get help on IRC at irc.freenode.net channel #flashrom or\n"
570 "mail flashrom@flashrom.org\n"
571 "------------------------------------------------------------\n"
572 "DO NOT REBOOT OR POWEROFF!\n");
573}
574
rminnich8d3ff912003-10-25 17:01:29 +0000575void usage(const char *name)
576{
hailfinger889cfa52009-08-13 11:38:44 +0000577 const char *pname;
578 int pnamelen;
579 int remaining = 0;
580 enum programmer p;
581
hailfinger09bd6f02009-06-19 11:23:57 +0000582 printf("usage: %s [-VfLzhR] [-E|-r file|-w file|-v file] [-c chipname]\n"
hailfingerf3cca3b2009-06-24 08:18:38 +0000583 " [-m [vendor:]part] [-l file] [-i image] [-p programmer]\n\n", name);
uwe4475e902009-05-19 14:14:21 +0000584
oxygene4a497262009-05-22 11:37:27 +0000585 printf("Please note that the command line interface for flashrom will "
586 "change before\nflashrom 1.0. Do not use flashrom in scripts "
587 "or other automated tools without\nchecking that your flashrom"
588 " version won't interpret options in a different way.\n\n");
uwe4475e902009-05-19 14:14:21 +0000589
uwef6641642007-05-09 10:17:44 +0000590 printf
stugeb9b411f2008-01-27 16:21:21 +0000591 (" -r | --read: read flash and save into file\n"
592 " -w | --write: write file into flash\n"
593 " -v | --verify: verify flash against file\n"
uwe889a4992009-06-24 17:31:08 +0000594 " -n | --noverify: don't verify flash against file\n"
stugeb9b411f2008-01-27 16:21:21 +0000595 " -E | --erase: erase flash device\n"
596 " -V | --verbose: more verbose output\n"
597 " -c | --chip <chipname>: probe only for specified flash chip\n"
stugeb9b411f2008-01-27 16:21:21 +0000598 " -m | --mainboard <[vendor:]part>: override mainboard settings\n"
599 " -f | --force: force write without checking image\n"
oxygene4a497262009-05-22 11:37:27 +0000600 " -l | --layout <file.layout>: read ROM layout from file\n"
stugeb9b411f2008-01-27 16:21:21 +0000601 " -i | --image <name>: only flash image name from flash layout\n"
uwe16f99092008-03-12 11:54:51 +0000602 " -L | --list-supported: print supported devices\n"
uwe61bf0dd2009-09-18 13:38:14 +0000603#if PRINT_WIKI_SUPPORT == 1
uwe8b452372009-06-19 10:42:43 +0000604 " -z | --list-supported-wiki: print supported devices in wiki syntax\n"
hailfinger0d784cd2009-09-16 12:19:03 +0000605#endif
hailfinger889cfa52009-08-13 11:38:44 +0000606 " -p | --programmer <name>: specify the programmer device");
607
608 for (p = 0; p < PROGRAMMER_INVALID; p++) {
609 pname = programmer_table[p].name;
610 pnamelen = strlen(pname);
611 if (remaining - pnamelen - 2 < 0) {
612 printf("\n ");
613 remaining = 43;
614 } else {
615 printf(" ");
616 remaining--;
617 }
618 if (p == 0) {
619 printf("(");
620 remaining--;
621 }
622 printf("%s", pname);
623 remaining -= pnamelen;
624 if (p < PROGRAMMER_INVALID - 1) {
625 printf(",");
626 remaining--;
627 } else {
628 printf(")\n");
629 }
630 }
631
632 printf(
uwe16f99092008-03-12 11:54:51 +0000633 " -h | --help: print this help text\n"
stugeb9b411f2008-01-27 16:21:21 +0000634 " -R | --version: print the version (release)\n"
hailfingerf3cca3b2009-06-24 08:18:38 +0000635 "\nYou can specify one of -E, -r, -w, -v or no operation. If no operation is\n"
636 "specified, then all that happens is that flash info is dumped.\n\n");
ollie5672ac62004-03-17 22:22:08 +0000637 exit(1);
rminnich8d3ff912003-10-25 17:01:29 +0000638}
639
uwefdeca092008-01-21 15:24:22 +0000640void print_version(void)
641{
hailfinger2d83b5b2009-07-22 20:13:00 +0000642 printf("flashrom v%s\n", flashrom_version);
uwefdeca092008-01-21 15:24:22 +0000643}
644
ollie5b621572004-03-20 16:46:10 +0000645int main(int argc, char *argv[])
rminnich8d3ff912003-10-25 17:01:29 +0000646{
ollie6a600992005-11-26 21:55:36 +0000647 uint8_t *buf;
stugebbcc2f12009-01-12 21:00:35 +0000648 unsigned long size, numbytes;
ollie5b621572004-03-20 16:46:10 +0000649 FILE *image;
stugec7354dc2008-05-08 00:31:44 +0000650 /* Probe for up to three flash chips. */
651 struct flashchip *flash, *flashes[3];
hailfinger3548a9a2009-08-12 14:34:35 +0000652 const char *name;
653 int namelen;
ollie5672ac62004-03-17 22:22:08 +0000654 int opt;
ollie6a600992005-11-26 21:55:36 +0000655 int option_index = 0;
stuge98c09aa2008-06-18 02:08:40 +0000656 int force = 0;
uwef6641642007-05-09 10:17:44 +0000657 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
hailfinger0d784cd2009-09-16 12:19:03 +0000658 int dont_verify_it = 0, list_supported = 0;
uwe61bf0dd2009-09-18 13:38:14 +0000659#if PRINT_WIKI_SUPPORT == 1
hailfinger0d784cd2009-09-16 12:19:03 +0000660 int list_supported_wiki = 0;
661#endif
hailfingerccbad522009-06-12 14:02:07 +0000662 int operation_specified = 0;
stugec7354dc2008-05-08 00:31:44 +0000663 int ret = 0, i;
ollie6a600992005-11-26 21:55:36 +0000664
uwe61bf0dd2009-09-18 13:38:14 +0000665#if PRINT_WIKI_SUPPORT == 1
hailfinger0d784cd2009-09-16 12:19:03 +0000666 const char *optstring = "rRwvnVEfc:m:l:i:p:Lzh";
667#else
668 const char *optstring = "rRwvnVEfc:m:l:i:p:Lh";
669#endif
uwef6641642007-05-09 10:17:44 +0000670 static struct option long_options[] = {
671 {"read", 0, 0, 'r'},
672 {"write", 0, 0, 'w'},
673 {"erase", 0, 0, 'E'},
674 {"verify", 0, 0, 'v'},
uwe889a4992009-06-24 17:31:08 +0000675 {"noverify", 0, 0, 'n'},
uwef6641642007-05-09 10:17:44 +0000676 {"chip", 1, 0, 'c'},
uwef6641642007-05-09 10:17:44 +0000677 {"mainboard", 1, 0, 'm'},
678 {"verbose", 0, 0, 'V'},
679 {"force", 0, 0, 'f'},
680 {"layout", 1, 0, 'l'},
681 {"image", 1, 0, 'i'},
uwe16f99092008-03-12 11:54:51 +0000682 {"list-supported", 0, 0, 'L'},
uwe61bf0dd2009-09-18 13:38:14 +0000683#if PRINT_WIKI_SUPPORT == 1
uwe8b452372009-06-19 10:42:43 +0000684 {"list-supported-wiki", 0, 0, 'z'},
hailfinger0d784cd2009-09-16 12:19:03 +0000685#endif
hailfingerabe249e2009-05-08 17:43:22 +0000686 {"programmer", 1, 0, 'p'},
uwef6641642007-05-09 10:17:44 +0000687 {"help", 0, 0, 'h'},
uwefdeca092008-01-21 15:24:22 +0000688 {"version", 0, 0, 'R'},
uwef6641642007-05-09 10:17:44 +0000689 {0, 0, 0, 0}
ollie6a600992005-11-26 21:55:36 +0000690 };
uwef6641642007-05-09 10:17:44 +0000691
ollie5672ac62004-03-17 22:22:08 +0000692 char *filename = NULL;
rminnich8d3ff912003-10-25 17:01:29 +0000693
uwef6641642007-05-09 10:17:44 +0000694 char *tempstr = NULL, *tempstr2 = NULL;
yhlu5d4383a2004-10-20 05:07:16 +0000695
hailfingerf17c52f2009-05-07 00:59:53 +0000696 print_version();
697
yhlu5d4383a2004-10-20 05:07:16 +0000698 if (argc > 1) {
699 /* Yes, print them. */
700 int i;
uwef6641642007-05-09 10:17:44 +0000701 printf_debug("The arguments are:\n");
yhlu5d4383a2004-10-20 05:07:16 +0000702 for (i = 1; i < argc; ++i)
uwef6641642007-05-09 10:17:44 +0000703 printf_debug("%s\n", argv[i]);
yhlu5d4383a2004-10-20 05:07:16 +0000704 }
705
hailfinger3548a9a2009-08-12 14:34:35 +0000706 /* Safety check. */
707 if (ARRAY_SIZE(programmer_table) - 1 != PROGRAMMER_INVALID) {
708 fprintf(stderr, "Programmer table miscompilation!\n");
709 exit(1);
710 }
hailfingerd9dcfbd2009-08-19 13:27:58 +0000711 if (spi_programmer_count - 1 != SPI_CONTROLLER_INVALID) {
712 fprintf(stderr, "SPI programmer table miscompilation!\n");
713 exit(1);
714 }
hailfingeracce2df2009-09-28 13:15:16 +0000715#if BITBANG_SPI_SUPPORT == 1
hailfinger8e278892009-10-01 14:51:25 +0000716 if (bitbang_spi_master_count - 1 != BITBANG_SPI_INVALID) {
hailfingeracce2df2009-09-28 13:15:16 +0000717 fprintf(stderr, "Bitbanging SPI master table miscompilation!\n");
718 exit(1);
719 }
720#endif
hailfinger3548a9a2009-08-12 14:34:35 +0000721
ollie5672ac62004-03-17 22:22:08 +0000722 setbuf(stdout, NULL);
hailfinger0d784cd2009-09-16 12:19:03 +0000723 while ((opt = getopt_long(argc, argv, optstring,
uwef6641642007-05-09 10:17:44 +0000724 long_options, &option_index)) != EOF) {
ollie5672ac62004-03-17 22:22:08 +0000725 switch (opt) {
726 case 'r':
hailfingerccbad522009-06-12 14:02:07 +0000727 if (++operation_specified > 1) {
728 fprintf(stderr, "More than one operation "
729 "specified. Aborting.\n");
730 exit(1);
731 }
ollie5672ac62004-03-17 22:22:08 +0000732 read_it = 1;
733 break;
734 case 'w':
hailfingerccbad522009-06-12 14:02:07 +0000735 if (++operation_specified > 1) {
736 fprintf(stderr, "More than one operation "
737 "specified. Aborting.\n");
738 exit(1);
739 }
ollie5672ac62004-03-17 22:22:08 +0000740 write_it = 1;
741 break;
742 case 'v':
hailfingerccbad522009-06-12 14:02:07 +0000743 if (++operation_specified > 1) {
744 fprintf(stderr, "More than one operation "
745 "specified. Aborting.\n");
746 exit(1);
747 }
ollie5672ac62004-03-17 22:22:08 +0000748 verify_it = 1;
749 break;
uwe889a4992009-06-24 17:31:08 +0000750 case 'n':
751 dont_verify_it = 1;
752 break;
ollie5672ac62004-03-17 22:22:08 +0000753 case 'c':
754 chip_to_probe = strdup(optarg);
755 break;
ollie077017b2004-03-18 20:27:33 +0000756 case 'V':
757 verbose = 1;
758 break;
ollie0eb62d62004-12-08 20:10:01 +0000759 case 'E':
hailfingerccbad522009-06-12 14:02:07 +0000760 if (++operation_specified > 1) {
761 fprintf(stderr, "More than one operation "
762 "specified. Aborting.\n");
763 exit(1);
764 }
ollie0eb62d62004-12-08 20:10:01 +0000765 erase_it = 1;
766 break;
ollie6a600992005-11-26 21:55:36 +0000767 case 'm':
768 tempstr = strdup(optarg);
769 strtok(tempstr, ":");
uwef6641642007-05-09 10:17:44 +0000770 tempstr2 = strtok(NULL, ":");
ollie6a600992005-11-26 21:55:36 +0000771 if (tempstr2) {
uwef6641642007-05-09 10:17:44 +0000772 lb_vendor = tempstr;
773 lb_part = tempstr2;
ollie6a600992005-11-26 21:55:36 +0000774 } else {
stugeb9b411f2008-01-27 16:21:21 +0000775 lb_vendor = NULL;
776 lb_part = tempstr;
ollie6a600992005-11-26 21:55:36 +0000777 }
778 break;
779 case 'f':
uwef6641642007-05-09 10:17:44 +0000780 force = 1;
ollie6a600992005-11-26 21:55:36 +0000781 break;
782 case 'l':
uwef6641642007-05-09 10:17:44 +0000783 tempstr = strdup(optarg);
stepan14566ee2007-04-14 16:32:59 +0000784 if (read_romlayout(tempstr))
785 exit(1);
ollie6a600992005-11-26 21:55:36 +0000786 break;
787 case 'i':
uwef6641642007-05-09 10:17:44 +0000788 tempstr = strdup(optarg);
ollie6a600992005-11-26 21:55:36 +0000789 find_romentry(tempstr);
790 break;
uwe16f99092008-03-12 11:54:51 +0000791 case 'L':
uwe5f612c82009-05-16 23:42:17 +0000792 list_supported = 1;
uwe16f99092008-03-12 11:54:51 +0000793 break;
uwe61bf0dd2009-09-18 13:38:14 +0000794#if PRINT_WIKI_SUPPORT == 1
uwe8b452372009-06-19 10:42:43 +0000795 case 'z':
796 list_supported_wiki = 1;
797 break;
hailfinger0d784cd2009-09-16 12:19:03 +0000798#endif
hailfingerabe249e2009-05-08 17:43:22 +0000799 case 'p':
hailfinger3548a9a2009-08-12 14:34:35 +0000800 for (programmer = 0; programmer < PROGRAMMER_INVALID; programmer++) {
801 name = programmer_table[programmer].name;
802 namelen = strlen(name);
803 if (strncmp(optarg, name, namelen) == 0) {
804 switch (optarg[namelen]) {
hailfinger901b2a22009-08-19 15:03:28 +0000805 case ':':
hailfinger3548a9a2009-08-12 14:34:35 +0000806 programmer_param = strdup(optarg + namelen + 1);
807 break;
808 case '\0':
809 break;
810 default:
811 /* The continue refers to the
812 * for loop. It is here to be
813 * able to differentiate between
814 * foo and foobar.
815 */
816 continue;
817 }
818 break;
819 }
820 }
821 if (programmer == PROGRAMMER_INVALID) {
hailfinger901b2a22009-08-19 15:03:28 +0000822 printf("Error: Unknown programmer %s.\n", optarg);
hailfingerabe249e2009-05-08 17:43:22 +0000823 exit(1);
824 }
825 break;
uwefdeca092008-01-21 15:24:22 +0000826 case 'R':
hailfingerf17c52f2009-05-07 00:59:53 +0000827 /* print_version() is always called during startup. */
uwefdeca092008-01-21 15:24:22 +0000828 exit(0);
829 break;
ollie6a600992005-11-26 21:55:36 +0000830 case 'h':
ollie5672ac62004-03-17 22:22:08 +0000831 default:
832 usage(argv[0]);
833 break;
834 }
835 }
yhlu5d4383a2004-10-20 05:07:16 +0000836
uwe5f612c82009-05-16 23:42:17 +0000837 if (list_supported) {
838 print_supported_chips();
839 print_supported_chipsets();
840 print_supported_boards();
841 printf("\nSupported PCI devices flashrom can use "
842 "as programmer:\n\n");
hailfinger571a6b32009-09-16 10:09:21 +0000843#if NIC3COM_SUPPORT == 1
uwe5f612c82009-05-16 23:42:17 +0000844 print_supported_pcidevs(nics_3com);
hailfinger571a6b32009-09-16 10:09:21 +0000845#endif
uweff4576d2009-09-30 18:29:55 +0000846#if GFXNVIDIA_SUPPORT == 1
847 print_supported_pcidevs(gfx_nvidia);
848#endif
hailfinger571a6b32009-09-16 10:09:21 +0000849#if DRKAISER_SUPPORT == 1
uwee2f95ef2009-09-02 23:00:46 +0000850 print_supported_pcidevs(drkaiser_pcidev);
hailfinger571a6b32009-09-16 10:09:21 +0000851#endif
852#if SATASII_SUPPORT == 1
uwef95d4462009-05-17 22:57:34 +0000853 print_supported_pcidevs(satas_sii);
hailfinger571a6b32009-09-16 10:09:21 +0000854#endif
uwe5f612c82009-05-16 23:42:17 +0000855 exit(0);
856 }
857
uwe61bf0dd2009-09-18 13:38:14 +0000858#if PRINT_WIKI_SUPPORT == 1
uwe8b452372009-06-19 10:42:43 +0000859 if (list_supported_wiki) {
uwe488f0842009-06-20 01:21:38 +0000860 print_wiki_tables();
uwe8b452372009-06-19 10:42:43 +0000861 exit(0);
862 }
hailfinger0d784cd2009-09-16 12:19:03 +0000863#endif
uwe8b452372009-06-19 10:42:43 +0000864
ollie5672ac62004-03-17 22:22:08 +0000865 if (read_it && write_it) {
uwe017911e2008-05-22 22:47:04 +0000866 printf("Error: -r and -w are mutually exclusive.\n");
ollie5672ac62004-03-17 22:22:08 +0000867 usage(argv[0]);
868 }
rminnich8d3ff912003-10-25 17:01:29 +0000869
ollie5672ac62004-03-17 22:22:08 +0000870 if (optind < argc)
871 filename = argv[optind++];
rminnich8d3ff912003-10-25 17:01:29 +0000872
hailfingerd9f5da22009-06-28 10:57:58 +0000873 if (programmer_init()) {
874 fprintf(stderr, "Error: Programmer initialization failed.\n");
875 exit(1);
876 }
stepan927d4e22007-04-04 22:45:58 +0000877
ollie5672ac62004-03-17 22:22:08 +0000878 myusec_calibrate_delay();
ollie6a600992005-11-26 21:55:36 +0000879
stugec7354dc2008-05-08 00:31:44 +0000880 for (i = 0; i < ARRAY_SIZE(flashes); i++) {
uwefa98ca12008-10-18 21:14:13 +0000881 flashes[i] =
882 probe_flash(i ? flashes[i - 1] + 1 : flashchips, 0);
stugec7354dc2008-05-08 00:31:44 +0000883 if (!flashes[i])
884 for (i++; i < ARRAY_SIZE(flashes); i++)
885 flashes[i] = NULL;
886 }
887
888 if (flashes[1]) {
889 printf("Multiple flash chips were detected:");
890 for (i = 0; i < ARRAY_SIZE(flashes) && flashes[i]; i++)
891 printf(" %s", flashes[i]->name);
892 printf("\nPlease specify which chip to use with the -c <chipname> option.\n");
uweff4576d2009-09-30 18:29:55 +0000893 programmer_shutdown();
stugec7354dc2008-05-08 00:31:44 +0000894 exit(1);
895 } else if (!flashes[0]) {
ollie6a600992005-11-26 21:55:36 +0000896 printf("No EEPROM/flash device found.\n");
stuge98c09aa2008-06-18 02:08:40 +0000897 if (!force || !chip_to_probe) {
898 printf("If you know which flash chip you have, and if this version of flashrom\n");
899 printf("supports a similar flash chip, you can try to force read your chip. Run:\n");
900 printf("flashrom -f -r -c similar_supported_flash_chip filename\n");
901 printf("\n");
902 printf("Note: flashrom can never write when the flash chip isn't found automatically.\n");
903 }
904 if (force && read_it && chip_to_probe) {
905 printf("Force read (-f -r -c) requested, forcing chip probe success:\n");
906 flashes[0] = probe_flash(flashchips, 1);
907 if (!flashes[0]) {
908 printf("flashrom does not support a flash chip named '%s'.\n", chip_to_probe);
909 printf("Run flashrom -L to view the hardware supported in this flashrom version.\n");
910 exit(1);
911 }
hailfinger0459e1c2009-08-19 13:55:34 +0000912 printf("Please note that forced reads most likely contain garbage.\n");
hailfinger09bd6f02009-06-19 11:23:57 +0000913 return read_flash(flashes[0], filename);
stuge98c09aa2008-06-18 02:08:40 +0000914 }
stepan9cbfb252007-10-04 06:26:41 +0000915 // FIXME: flash writes stay enabled!
uweff4576d2009-09-30 18:29:55 +0000916 programmer_shutdown();
ollie5672ac62004-03-17 22:22:08 +0000917 exit(1);
918 }
rminnich8d3ff912003-10-25 17:01:29 +0000919
stugec7354dc2008-05-08 00:31:44 +0000920 flash = flashes[0];
921
stuge9cd64bd2008-05-03 04:34:37 +0000922 if (TEST_OK_MASK != (flash->tested & TEST_OK_MASK)) {
923 printf("===\n");
924 if (flash->tested & TEST_BAD_MASK) {
925 printf("This flash part has status NOT WORKING for operations:");
926 if (flash->tested & TEST_BAD_PROBE)
927 printf(" PROBE");
928 if (flash->tested & TEST_BAD_READ)
929 printf(" READ");
930 if (flash->tested & TEST_BAD_ERASE)
931 printf(" ERASE");
932 if (flash->tested & TEST_BAD_WRITE)
933 printf(" WRITE");
934 printf("\n");
hailfinger6aaf46a2008-11-28 23:45:27 +0000935 }
936 if ((!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE)) ||
937 (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ)) ||
938 (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE)) ||
939 (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))) {
stuge9cd64bd2008-05-03 04:34:37 +0000940 printf("This flash part has status UNTESTED for operations:");
hailfinger6aaf46a2008-11-28 23:45:27 +0000941 if (!(flash->tested & TEST_BAD_PROBE) && !(flash->tested & TEST_OK_PROBE))
stuge9cd64bd2008-05-03 04:34:37 +0000942 printf(" PROBE");
hailfinger6aaf46a2008-11-28 23:45:27 +0000943 if (!(flash->tested & TEST_BAD_READ) && !(flash->tested & TEST_OK_READ))
stuge9cd64bd2008-05-03 04:34:37 +0000944 printf(" READ");
hailfinger6aaf46a2008-11-28 23:45:27 +0000945 if (!(flash->tested & TEST_BAD_ERASE) && !(flash->tested & TEST_OK_ERASE))
stuge9cd64bd2008-05-03 04:34:37 +0000946 printf(" ERASE");
hailfinger6aaf46a2008-11-28 23:45:27 +0000947 if (!(flash->tested & TEST_BAD_WRITE) && !(flash->tested & TEST_OK_WRITE))
stuge9cd64bd2008-05-03 04:34:37 +0000948 printf(" WRITE");
949 printf("\n");
950 }
stepan5388f172009-07-30 13:32:26 +0000951 printf("Please email a report to flashrom@flashrom.org if any "
uwe3cfe8a52009-05-21 15:55:46 +0000952 "of the above operations\nwork correctly for you with "
953 "this flash part. Please include the flashrom\noutput "
954 "with the additional -V option for all operations you "
955 "tested (-V, -rV,\n-wV, -EV), and mention which "
956 "mainboard you tested. Thanks for your help!\n===\n");
stuge9cd64bd2008-05-03 04:34:37 +0000957 }
ollie6a600992005-11-26 21:55:36 +0000958
stepan9cbfb252007-10-04 06:26:41 +0000959 if (!(read_it | write_it | verify_it | erase_it)) {
960 printf("No operations were specified.\n");
961 // FIXME: flash writes stay enabled!
uweff4576d2009-09-30 18:29:55 +0000962 programmer_shutdown();
stepan9cbfb252007-10-04 06:26:41 +0000963 exit(1);
964 }
965
ollie0eb62d62004-12-08 20:10:01 +0000966 if (!filename && !erase_it) {
stepan9cbfb252007-10-04 06:26:41 +0000967 printf("Error: No filename specified.\n");
968 // FIXME: flash writes stay enabled!
uweff4576d2009-09-30 18:29:55 +0000969 programmer_shutdown();
stepan9cbfb252007-10-04 06:26:41 +0000970 exit(1);
ollie5672ac62004-03-17 22:22:08 +0000971 }
ollie5672ac62004-03-17 22:22:08 +0000972
uwe889a4992009-06-24 17:31:08 +0000973 /* Always verify write operations unless -n is used. */
974 if (write_it && !dont_verify_it)
975 verify_it = 1;
976
ollie6a600992005-11-26 21:55:36 +0000977 size = flash->total_size * 1024;
978 buf = (uint8_t *) calloc(size, sizeof(char));
uwef6641642007-05-09 10:17:44 +0000979
ollie0eb62d62004-12-08 20:10:01 +0000980 if (erase_it) {
hailfinger0459e1c2009-08-19 13:55:34 +0000981 if (flash->tested & TEST_BAD_ERASE) {
982 fprintf(stderr, "Erase is not working on this chip. ");
983 if (!force) {
984 fprintf(stderr, "Aborting.\n");
uweff4576d2009-09-30 18:29:55 +0000985 programmer_shutdown();
hailfinger0459e1c2009-08-19 13:55:34 +0000986 return 1;
987 } else {
988 fprintf(stderr, "Continuing anyway.\n");
989 }
990 }
991 if (erase_flash(flash)) {
992 emergency_help_message();
uweff4576d2009-09-30 18:29:55 +0000993 programmer_shutdown();
stuge8ce3a3c2008-04-28 14:47:30 +0000994 return 1;
hailfinger0459e1c2009-08-19 13:55:34 +0000995 }
ollie0eb62d62004-12-08 20:10:01 +0000996 } else if (read_it) {
uweff4576d2009-09-30 18:29:55 +0000997 if (read_flash(flash, filename)) {
998 programmer_shutdown();
stugebbcc2f12009-01-12 21:00:35 +0000999 return 1;
uweff4576d2009-09-30 18:29:55 +00001000 }
ollie5672ac62004-03-17 22:22:08 +00001001 } else {
stepan1da96c02006-11-21 23:48:51 +00001002 struct stat image_stat;
1003
hailfinger0459e1c2009-08-19 13:55:34 +00001004 if (flash->tested & TEST_BAD_ERASE) {
1005 fprintf(stderr, "Erase is not working on this chip "
1006 "and erase is needed for write. ");
1007 if (!force) {
1008 fprintf(stderr, "Aborting.\n");
uweff4576d2009-09-30 18:29:55 +00001009 programmer_shutdown();
hailfinger0459e1c2009-08-19 13:55:34 +00001010 return 1;
1011 } else {
1012 fprintf(stderr, "Continuing anyway.\n");
1013 }
1014 }
1015 if (flash->tested & TEST_BAD_WRITE) {
1016 fprintf(stderr, "Write is not working on this chip. ");
1017 if (!force) {
1018 fprintf(stderr, "Aborting.\n");
uweff4576d2009-09-30 18:29:55 +00001019 programmer_shutdown();
hailfinger0459e1c2009-08-19 13:55:34 +00001020 return 1;
1021 } else {
1022 fprintf(stderr, "Continuing anyway.\n");
1023 }
1024 }
ollie5b621572004-03-20 16:46:10 +00001025 if ((image = fopen(filename, "r")) == NULL) {
ollie5672ac62004-03-17 22:22:08 +00001026 perror(filename);
uweff4576d2009-09-30 18:29:55 +00001027 programmer_shutdown();
ollie5672ac62004-03-17 22:22:08 +00001028 exit(1);
1029 }
stepan1da96c02006-11-21 23:48:51 +00001030 if (fstat(fileno(image), &image_stat) != 0) {
1031 perror(filename);
uweff4576d2009-09-30 18:29:55 +00001032 programmer_shutdown();
stepan1da96c02006-11-21 23:48:51 +00001033 exit(1);
1034 }
uwef6641642007-05-09 10:17:44 +00001035 if (image_stat.st_size != flash->total_size * 1024) {
uwe017911e2008-05-22 22:47:04 +00001036 fprintf(stderr, "Error: Image size doesn't match\n");
uweff4576d2009-09-30 18:29:55 +00001037 programmer_shutdown();
stepan1da96c02006-11-21 23:48:51 +00001038 exit(1);
1039 }
1040
stugebbcc2f12009-01-12 21:00:35 +00001041 numbytes = fread(buf, 1, size, image);
stuge98c09aa2008-06-18 02:08:40 +00001042 show_id(buf, size, force);
ollie5672ac62004-03-17 22:22:08 +00001043 fclose(image);
stugebbcc2f12009-01-12 21:00:35 +00001044 if (numbytes != size) {
1045 fprintf(stderr, "Error: Failed to read file. Got %ld bytes, wanted %ld!\n", numbytes, size);
uweff4576d2009-09-30 18:29:55 +00001046 programmer_shutdown();
stugebbcc2f12009-01-12 21:00:35 +00001047 return 1;
1048 }
ollie5672ac62004-03-17 22:22:08 +00001049 }
1050
ollie6a600992005-11-26 21:55:36 +00001051 // This should be moved into each flash part's code to do it
1052 // cleanly. This does the job.
hailfinger051b3442009-08-19 15:19:18 +00001053 handle_romentries(buf, flash);
uwef6641642007-05-09 10:17:44 +00001054
ollie6a600992005-11-26 21:55:36 +00001055 // ////////////////////////////////////////////////////////////
uwef6641642007-05-09 10:17:44 +00001056
stuge8ce3a3c2008-04-28 14:47:30 +00001057 if (write_it) {
hailfinger4e6f1fa2009-06-12 08:04:08 +00001058 printf("Writing flash chip... ");
stuge8ce3a3c2008-04-28 14:47:30 +00001059 if (!flash->write) {
1060 fprintf(stderr, "Error: flashrom has no write function for this flash chip.\n");
uweff4576d2009-09-30 18:29:55 +00001061 programmer_shutdown();
stuge8ce3a3c2008-04-28 14:47:30 +00001062 return 1;
1063 }
hailfingerdffbe6b2009-07-24 12:18:54 +00001064 ret = flash->write(flash, buf);
1065 if (ret) {
1066 fprintf(stderr, "FAILED!\n");
hailfinger0459e1c2009-08-19 13:55:34 +00001067 emergency_help_message();
uweff4576d2009-09-30 18:29:55 +00001068 programmer_shutdown();
hailfingerdffbe6b2009-07-24 12:18:54 +00001069 return 1;
1070 } else {
1071 printf("COMPLETE.\n");
1072 }
stuge8ce3a3c2008-04-28 14:47:30 +00001073 }
ollie6a600992005-11-26 21:55:36 +00001074
hailfinger0459e1c2009-08-19 13:55:34 +00001075 if (verify_it) {
1076 /* Work around chips which need some time to calm down. */
1077 if (write_it)
1078 programmer_delay(1000*1000);
hailfingerdffbe6b2009-07-24 12:18:54 +00001079 ret = verify_flash(flash, buf);
hailfinger0459e1c2009-08-19 13:55:34 +00001080 /* If we tried to write, and now we don't properly verify, we
1081 * might have an emergency situation.
1082 */
1083 if (ret && write_it)
1084 emergency_help_message();
1085 }
ollie6a600992005-11-26 21:55:36 +00001086
hailfingerabe249e2009-05-08 17:43:22 +00001087 programmer_shutdown();
1088
stepan83eca252006-01-04 16:42:57 +00001089 return ret;
rminnich8d3ff912003-10-25 17:01:29 +00001090}