blob: 2aef991caf7d8f03fa80ae48a98294ff80b43a57 [file] [log] [blame]
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00001/*
Uwe Hermann9a37ba62007-04-11 23:31:45 +00002 * flashrom.c: Flash programming utility
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +00003 *
4 * Copyright 2000 Silicon Integrated System Corporation
Yinghai Luad8ffd22004-10-20 05:07:16 +00005 * Copyright 2004 Tyan Corp
6 * yhlu yhlu@tyan.com add exclude start and end option
Stefan Reinauer70385642007-04-06 11:58:03 +00007 * Copyright 2005-2007 coresystems GmbH
Stefan Reinauerfcb63682006-03-16 16:57:41 +00008 * Stefan Reinauer <stepan@coresystems.de> added rom layout
9 * support, and checking for suitable rom image, various fixes
10 * support for flashing the Technologic Systems 5300.
Ollie Lho184a4042005-11-26 21:55:36 +000011 *
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000026 */
27
28#include <errno.h>
29#include <fcntl.h>
30#include <sys/mman.h>
Stefan Reinauer018aca82006-11-21 23:48:51 +000031#include <sys/types.h>
32#include <sys/stat.h>
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000033#include <unistd.h>
34#include <stdio.h>
Ronald G. Minnichceec4202003-07-25 04:37:41 +000035#include <string.h>
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000036#include <stdlib.h>
Ollie Lho184a4042005-11-26 21:55:36 +000037#include <getopt.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000038#include <pci/pci.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000039/* for iopl */
40#if defined (__sun) && (defined(__i386) || defined(__amd64))
41#include <strings.h>
42#include <sys/sysi86.h>
43#include <sys/psw.h>
44#include <asm/sunddi.h>
45#endif
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000046#include "flash.h"
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +000047
Ronald G. Minnichceec4202003-07-25 04:37:41 +000048char *chip_to_probe = NULL;
Uwe Hermanna7e05482007-05-09 10:17:44 +000049struct pci_access *pacc; /* For board and chipset_enable */
Stefan Reinauere3705282005-12-18 16:41:10 +000050int exclude_start_page, exclude_end_page;
Uwe Hermanna7e05482007-05-09 10:17:44 +000051int force = 0, verbose = 0;
Stefan Reinauer70385642007-04-06 11:58:03 +000052int fd_mem;
53
Uwe Hermanna7e05482007-05-09 10:17:44 +000054struct pci_dev *pci_dev_find(uint16_t vendor, uint16_t device)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000055{
Uwe Hermanna7e05482007-05-09 10:17:44 +000056 struct pci_dev *temp;
57 struct pci_filter filter;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000058
Uwe Hermanna7e05482007-05-09 10:17:44 +000059 pci_filter_init(NULL, &filter);
60 filter.vendor = vendor;
61 filter.device = device;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000062
Uwe Hermanna7e05482007-05-09 10:17:44 +000063 for (temp = pacc->devices; temp; temp = temp->next)
64 if (pci_filter_match(&filter, temp))
65 return temp;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000066
Uwe Hermanna7e05482007-05-09 10:17:44 +000067 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000068}
69
Uwe Hermanna7e05482007-05-09 10:17:44 +000070struct pci_dev *pci_card_find(uint16_t vendor, uint16_t device,
71 uint16_t card_vendor, uint16_t card_device)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000072{
Uwe Hermanna7e05482007-05-09 10:17:44 +000073 struct pci_dev *temp;
74 struct pci_filter filter;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000075
Uwe Hermanna7e05482007-05-09 10:17:44 +000076 pci_filter_init(NULL, &filter);
77 filter.vendor = vendor;
78 filter.device = device;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000079
Uwe Hermanna7e05482007-05-09 10:17:44 +000080 for (temp = pacc->devices; temp; temp = temp->next)
81 if (pci_filter_match(&filter, temp)) {
82 if ((card_vendor == pci_read_word(temp, 0x2C)) &&
83 (card_device == pci_read_word(temp, 0x2E)))
84 return temp;
85 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000086
Uwe Hermanna7e05482007-05-09 10:17:44 +000087 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000088}
89
Stefan Reinauerff4f1972007-05-24 08:48:10 +000090int map_flash_registers(struct flashchip *flash)
91{
92 volatile uint8_t *registers;
93 size_t size = flash->total_size * 1024;
94
95 registers = mmap(0, size, PROT_WRITE | PROT_READ, MAP_SHARED,
Uwe Hermanna8808852007-05-24 19:17:29 +000096 fd_mem, (off_t) (0xFFFFFFFF - 0x400000 - size + 1));
Stefan Reinauerff4f1972007-05-24 08:48:10 +000097
98 if (registers == MAP_FAILED) {
99 perror("Can't mmap registers using " MEM_DEV);
100 exit(1);
101 }
102 flash->virtual_registers = registers;
103
104 return 0;
105}
106
Ollie Lho761bf1b2004-03-20 16:46:10 +0000107struct flashchip *probe_flash(struct flashchip *flash)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000108{
Ollie Lho184a4042005-11-26 21:55:36 +0000109 volatile uint8_t *bios;
Stefan Reinauer70385642007-04-06 11:58:03 +0000110 unsigned long flash_baseaddr, size;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000111
Ollie Lhocbbf1252004-03-17 22:22:08 +0000112 while (flash->name != NULL) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000113 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000114 flash++;
115 continue;
116 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000117 printf_debug("Probing for %s, %d KB\n",
118 flash->name, flash->total_size);
Stefan Reinauer70385642007-04-06 11:58:03 +0000119
Ollie Lhocbbf1252004-03-17 22:22:08 +0000120 size = flash->total_size * 1024;
Stefan Reinauer70385642007-04-06 11:58:03 +0000121
122#ifdef TS5300
123 // FIXME: Wrong place for this decision
Stefan Reinauer7c1402f2007-05-23 18:24:58 +0000124 // FIXME: This should be autodetected. It is trivial.
Stefan Reinauer70385642007-04-06 11:58:03 +0000125 flash_baseaddr = 0x9400000;
126#else
127 flash_baseaddr = (0xffffffff - size + 1);
128#endif
129
130 /* If getpagesize() > size ->
Stefan Reinauer7c1402f2007-05-23 18:24:58 +0000131 * "Can't mmap memory using /dev/mem: Invalid argument"
Stefan Reinauer70385642007-04-06 11:58:03 +0000132 * This should never happen as we don't support any flash chips
Stefan Reinauer7c1402f2007-05-23 18:24:58 +0000133 * smaller than 4k or 8k (yet).
Stefan Reinauer70385642007-04-06 11:58:03 +0000134 */
135
Ollie Lhocbbf1252004-03-17 22:22:08 +0000136 if (getpagesize() > size) {
137 size = getpagesize();
Stefan Reinauer70385642007-04-06 11:58:03 +0000138 printf("WARNING: size: %d -> %ld (page size)\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000139 flash->total_size * 1024, (unsigned long)size);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000140 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000141
Ollie Lho761bf1b2004-03-20 16:46:10 +0000142 bios = mmap(0, size, PROT_WRITE | PROT_READ, MAP_SHARED,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000143 fd_mem, (off_t) flash_baseaddr);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000144 if (bios == MAP_FAILED) {
Stefan Reinauer7c1402f2007-05-23 18:24:58 +0000145 perror("Can't mmap memory using " MEM_DEV);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000146 exit(1);
147 }
Stefan Reinauerce532972007-05-23 17:20:56 +0000148 flash->virtual_memory = bios;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000149
Ollie Lhocbbf1252004-03-17 22:22:08 +0000150 if (flash->probe(flash) == 1) {
Ollie Lho761bf1b2004-03-20 16:46:10 +0000151 printf("%s found at physical address: 0x%lx\n",
Stefan Reinauer70385642007-04-06 11:58:03 +0000152 flash->name, flash_baseaddr);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000153 return flash;
154 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000155 munmap((void *)bios, size);
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000156
Ollie Lhocbbf1252004-03-17 22:22:08 +0000157 flash++;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000158 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000159
Ollie Lhocbbf1252004-03-17 22:22:08 +0000160 return NULL;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000161}
162
Stefan Reinauere3705282005-12-18 16:41:10 +0000163int verify_flash(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000164{
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000165 int idx;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000166 int total_size = flash->total_size * 1024;
Stefan Reinauerce532972007-05-23 17:20:56 +0000167 volatile uint8_t *bios = flash->virtual_memory;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000168
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000169 printf("Verifying flash ");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000170
171 if (verbose)
172 printf("address: 0x00000000\b\b\b\b\b\b\b\b\b\b");
173
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000174 for (idx = 0; idx < total_size; idx++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000175 if (verbose && ((idx & 0xfff) == 0xfff))
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000176 printf("0x%08x", idx);
177
178 if (*(bios + idx) != *(buf + idx)) {
179 if (verbose) {
180 printf("0x%08x ", idx);
181 }
182 printf("- FAILED\n");
183 return 1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000184 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000185
186 if (verbose && ((idx & 0xfff) == 0xfff))
Ollie Lhocbbf1252004-03-17 22:22:08 +0000187 printf("\b\b\b\b\b\b\b\b\b\b");
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000188 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000189 if (verbose)
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000190 printf("\b\b\b\b\b\b\b\b\b\b ");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000191
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000192 printf("- VERIFIED \n");
Uwe Hermannffec5f32007-08-23 16:08:21 +0000193
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000194 return 0;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000195}
196
Ronald G. Minniche5559572003-03-28 03:29:43 +0000197void usage(const char *name)
198{
Stefan Reinauerf8337dd2006-08-03 10:49:09 +0000199 printf("usage: %s [-rwvEVfh] [-c chipname] [-s exclude_start]\n", name);
200 printf(" [-e exclude_end] [-m vendor:part] [-l file.layout] [-i imagename] [file]\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000201 printf
202 (" -r | --read: read flash and save into file\n"
203 " -w | --write: write file into flash (default when\n"
204 " file is specified)\n"
205 " -v | --verify: verify flash against file\n"
206 " -E | --erase: erase flash device\n"
207 " -V | --verbose: more verbose output\n"
208 " -c | --chip <chipname>: probe only for specified flash chip\n"
209 " -s | --estart <addr>: exclude start position\n"
210 " -e | --eend <addr>: exclude end postion\n"
211 " -m | --mainboard <vendor:part>: override mainboard settings\n"
212 " -f | --force: force write without checking image\n"
213 " -l | --layout <file.layout>: read rom layout from file\n"
214 " -i | --image <name>: only flash image name from flash layout\n"
215 "\n" " If no file is specified, then all that happens\n"
216 " is that flash info is dumped.\n\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000217 exit(1);
Ronald G. Minniche5559572003-03-28 03:29:43 +0000218}
219
Ollie Lho761bf1b2004-03-20 16:46:10 +0000220int main(int argc, char *argv[])
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000221{
Ollie Lho184a4042005-11-26 21:55:36 +0000222 uint8_t *buf;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000223 unsigned long size;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000224 FILE *image;
225 struct flashchip *flash;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000226 int opt;
Ollie Lho184a4042005-11-26 21:55:36 +0000227 int option_index = 0;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000228 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
Stefan Reinauer143da0b2006-01-04 16:42:57 +0000229 int ret = 0;
Ollie Lho184a4042005-11-26 21:55:36 +0000230
Uwe Hermanna7e05482007-05-09 10:17:44 +0000231 static struct option long_options[] = {
232 {"read", 0, 0, 'r'},
233 {"write", 0, 0, 'w'},
234 {"erase", 0, 0, 'E'},
235 {"verify", 0, 0, 'v'},
236 {"chip", 1, 0, 'c'},
237 {"estart", 1, 0, 's'},
238 {"eend", 1, 0, 'e'},
239 {"mainboard", 1, 0, 'm'},
240 {"verbose", 0, 0, 'V'},
241 {"force", 0, 0, 'f'},
242 {"layout", 1, 0, 'l'},
243 {"image", 1, 0, 'i'},
244 {"help", 0, 0, 'h'},
245 {0, 0, 0, 0}
Ollie Lho184a4042005-11-26 21:55:36 +0000246 };
Uwe Hermanna7e05482007-05-09 10:17:44 +0000247
Ollie Lhocbbf1252004-03-17 22:22:08 +0000248 char *filename = NULL;
Ronald G. Minnichceec4202003-07-25 04:37:41 +0000249
Uwe Hermanna7e05482007-05-09 10:17:44 +0000250 unsigned int exclude_start_position = 0, exclude_end_position = 0; // [x,y)
251 char *tempstr = NULL, *tempstr2 = NULL;
Yinghai Luad8ffd22004-10-20 05:07:16 +0000252
253 if (argc > 1) {
254 /* Yes, print them. */
255 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000256 printf_debug("The arguments are:\n");
Yinghai Luad8ffd22004-10-20 05:07:16 +0000257 for (i = 1; i < argc; ++i)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000258 printf_debug("%s\n", argv[i]);
Yinghai Luad8ffd22004-10-20 05:07:16 +0000259 }
260
Ollie Lhocbbf1252004-03-17 22:22:08 +0000261 setbuf(stdout, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000262 while ((opt = getopt_long(argc, argv, "rwvVEfc:s:e:m:l:i:h",
263 long_options, &option_index)) != EOF) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000264 switch (opt) {
265 case 'r':
266 read_it = 1;
267 break;
268 case 'w':
269 write_it = 1;
270 break;
271 case 'v':
272 verify_it = 1;
273 break;
274 case 'c':
275 chip_to_probe = strdup(optarg);
276 break;
Ollie Lho789ad3d2004-03-18 20:27:33 +0000277 case 'V':
278 verbose = 1;
279 break;
Ollie Lhoefa28582004-12-08 20:10:01 +0000280 case 'E':
281 erase_it = 1;
282 break;
Yinghai Luad8ffd22004-10-20 05:07:16 +0000283 case 's':
284 tempstr = strdup(optarg);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000285 sscanf(tempstr, "%x", &exclude_start_position);
Yinghai Luad8ffd22004-10-20 05:07:16 +0000286 break;
287 case 'e':
Ollie Lho98bea8a2004-12-07 03:15:51 +0000288 tempstr = strdup(optarg);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000289 sscanf(tempstr, "%x", &exclude_end_position);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000290 break;
Ollie Lho184a4042005-11-26 21:55:36 +0000291 case 'm':
292 tempstr = strdup(optarg);
293 strtok(tempstr, ":");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000294 tempstr2 = strtok(NULL, ":");
Ollie Lho184a4042005-11-26 21:55:36 +0000295 if (tempstr2) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000296 lb_vendor = tempstr;
297 lb_part = tempstr2;
Ollie Lho184a4042005-11-26 21:55:36 +0000298 } else {
299 printf("warning: ignored wrong format of"
Uwe Hermanna7e05482007-05-09 10:17:44 +0000300 " mainboard: %s\n", tempstr);
Ollie Lho184a4042005-11-26 21:55:36 +0000301 }
302 break;
303 case 'f':
Uwe Hermanna7e05482007-05-09 10:17:44 +0000304 force = 1;
Ollie Lho184a4042005-11-26 21:55:36 +0000305 break;
306 case 'l':
Uwe Hermanna7e05482007-05-09 10:17:44 +0000307 tempstr = strdup(optarg);
Stefan Reinauer0a05d672007-04-14 16:32:59 +0000308 if (read_romlayout(tempstr))
309 exit(1);
Ollie Lho184a4042005-11-26 21:55:36 +0000310 break;
311 case 'i':
Uwe Hermanna7e05482007-05-09 10:17:44 +0000312 tempstr = strdup(optarg);
Ollie Lho184a4042005-11-26 21:55:36 +0000313 find_romentry(tempstr);
314 break;
315 case 'h':
Ollie Lhocbbf1252004-03-17 22:22:08 +0000316 default:
317 usage(argv[0]);
318 break;
319 }
320 }
Yinghai Luad8ffd22004-10-20 05:07:16 +0000321
Ollie Lhocbbf1252004-03-17 22:22:08 +0000322 if (read_it && write_it) {
323 printf("-r and -w are mutually exclusive\n");
324 usage(argv[0]);
325 }
Ronald G. Minniche5559572003-03-28 03:29:43 +0000326
Ollie Lhocbbf1252004-03-17 22:22:08 +0000327 if (optind < argc)
328 filename = argv[optind++];
Ronald G. Minniche5559572003-03-28 03:29:43 +0000329
Uwe Hermanna7e05482007-05-09 10:17:44 +0000330 /* First get full io access */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000331#if defined (__sun) && (defined(__i386) || defined(__amd64))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000332 if (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) != 0) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000333#else
334 if (iopl(3) != 0) {
335#endif
Uwe Hermanna7e05482007-05-09 10:17:44 +0000336 fprintf(stderr, "ERROR: iopl failed: \"%s\"\n",
337 strerror(errno));
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000338 exit(1);
339 }
340
Uwe Hermanna7e05482007-05-09 10:17:44 +0000341 /* Initialize PCI access for flash enables */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000342 pacc = pci_alloc(); /* Get the pci_access structure */
343 /* Set all options you want -- here we stick with the defaults */
344 pci_init(pacc); /* Initialize the PCI library */
345 pci_scan_bus(pacc); /* We want to get the list of devices */
346
Stefan Reinauer70385642007-04-06 11:58:03 +0000347 /* Open the memory device. A lot of functions need it */
348 if ((fd_mem = open(MEM_DEV, O_RDWR)) < 0) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000349 perror("Error: Can not access memory using " MEM_DEV
350 ". You need to be root.");
Stefan Reinauer70385642007-04-06 11:58:03 +0000351 exit(1);
352 }
353
Ollie Lhocbbf1252004-03-17 22:22:08 +0000354 myusec_calibrate_delay();
Ollie Lho184a4042005-11-26 21:55:36 +0000355
356 /* We look at the lbtable first to see if we need a
357 * mainboard specific flash enable sequence.
358 */
359 linuxbios_init();
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000360
Ollie Lhocbbf1252004-03-17 22:22:08 +0000361 /* try to enable it. Failure IS an option, since not all motherboards
Ollie Lho184a4042005-11-26 21:55:36 +0000362 * really need this to be done, etc., etc.
Ollie Lhocbbf1252004-03-17 22:22:08 +0000363 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000364 ret = chipset_flash_enable();
365 if (ret == -2) {
366 printf("WARNING: No chipset found. Flash detection "
367 "will most likely fail.\n");
368 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000369
Uwe Hermanna7e05482007-05-09 10:17:44 +0000370 board_flash_enable(lb_vendor, lb_part);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000371
372 if ((flash = probe_flash(flashchips)) == NULL) {
Ollie Lho184a4042005-11-26 21:55:36 +0000373 printf("No EEPROM/flash device found.\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000374 exit(1);
375 }
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000376
Uwe Hermannd1915c12006-10-07 00:23:51 +0000377 printf("Flash part is %s (%d KB)\n", flash->name, flash->total_size);
Ollie Lho184a4042005-11-26 21:55:36 +0000378
Ollie Lhoefa28582004-12-08 20:10:01 +0000379 if (!filename && !erase_it) {
Ollie Lho184a4042005-11-26 21:55:36 +0000380 // FIXME: Do we really want this feature implicitly?
381 printf("OK, only ENABLING flash write, but NOT FLASHING.\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000382 return 0;
383 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000384
Ollie Lho184a4042005-11-26 21:55:36 +0000385 size = flash->total_size * 1024;
386 buf = (uint8_t *) calloc(size, sizeof(char));
Uwe Hermanna7e05482007-05-09 10:17:44 +0000387
Ollie Lhoefa28582004-12-08 20:10:01 +0000388 if (erase_it) {
389 printf("Erasing flash chip\n");
390 flash->erase(flash);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000391 exit(0);
Ollie Lhoefa28582004-12-08 20:10:01 +0000392 } else if (read_it) {
Ollie Lho761bf1b2004-03-20 16:46:10 +0000393 if ((image = fopen(filename, "w")) == NULL) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000394 perror(filename);
395 exit(1);
396 }
397 printf("Reading Flash...");
Ollie Lho73eca802004-03-19 22:10:07 +0000398 if (flash->read == NULL)
Stefan Reinauerce532972007-05-23 17:20:56 +0000399 memcpy(buf, (const char *)flash->virtual_memory, size);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000400 else
Ollie Lho761bf1b2004-03-20 16:46:10 +0000401 flash->read(flash, buf);
Yinghai Luad8ffd22004-10-20 05:07:16 +0000402
Ollie Lho98bea8a2004-12-07 03:15:51 +0000403 if (exclude_end_position - exclude_start_position > 0)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000404 memset(buf + exclude_start_position, 0,
405 exclude_end_position - exclude_start_position);
Yinghai Luad8ffd22004-10-20 05:07:16 +0000406
Ollie Lhocbbf1252004-03-17 22:22:08 +0000407 fwrite(buf, sizeof(char), size, image);
408 fclose(image);
409 printf("done\n");
410 } else {
Stefan Reinauer018aca82006-11-21 23:48:51 +0000411 struct stat image_stat;
412
Ollie Lho761bf1b2004-03-20 16:46:10 +0000413 if ((image = fopen(filename, "r")) == NULL) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000414 perror(filename);
415 exit(1);
416 }
Stefan Reinauer018aca82006-11-21 23:48:51 +0000417 if (fstat(fileno(image), &image_stat) != 0) {
418 perror(filename);
419 exit(1);
420 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000421 if (image_stat.st_size != flash->total_size * 1024) {
Stefan Reinauerdf8a3c82007-03-22 14:51:45 +0000422 fprintf(stderr, "Error: Image size doesnt match\n");
Stefan Reinauer018aca82006-11-21 23:48:51 +0000423 exit(1);
424 }
425
Ollie Lho761bf1b2004-03-20 16:46:10 +0000426 fread(buf, sizeof(char), size, image);
Ollie Lho184a4042005-11-26 21:55:36 +0000427 show_id(buf, size);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000428 fclose(image);
429 }
430
Ollie Lho184a4042005-11-26 21:55:36 +0000431 /* exclude range stuff. Nice idea, but at the moment it is only
432 * supported in hardware by the pm49fl004 chips.
433 * Instead of implementing this for all chips I suggest advancing
434 * it to the rom layout feature below and drop exclude range
435 * completely once all flash chips can do rom layouts. stepan
436 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000437
Ollie Lho184a4042005-11-26 21:55:36 +0000438 // ////////////////////////////////////////////////////////////
Ollie Lho98bea8a2004-12-07 03:15:51 +0000439 if (exclude_end_position - exclude_start_position > 0)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000440 memcpy(buf + exclude_start_position,
Uwe Hermanna8808852007-05-24 19:17:29 +0000441 (const char *)flash->virtual_memory +
442 exclude_start_position,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000443 exclude_end_position - exclude_start_position);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000444
Uwe Hermanna7e05482007-05-09 10:17:44 +0000445 exclude_start_page = exclude_start_position / flash->page_size;
446 if ((exclude_start_position % flash->page_size) != 0) {
Ollie Lho98bea8a2004-12-07 03:15:51 +0000447 exclude_start_page++;
448 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000449 exclude_end_page = exclude_end_position / flash->page_size;
Ollie Lho184a4042005-11-26 21:55:36 +0000450 // ////////////////////////////////////////////////////////////
Yinghai Luad8ffd22004-10-20 05:07:16 +0000451
Ollie Lho184a4042005-11-26 21:55:36 +0000452 // This should be moved into each flash part's code to do it
453 // cleanly. This does the job.
Stefan Reinauerce532972007-05-23 17:20:56 +0000454 handle_romentries(buf, (uint8_t *) flash->virtual_memory);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000455
Ollie Lho184a4042005-11-26 21:55:36 +0000456 // ////////////////////////////////////////////////////////////
Uwe Hermanna7e05482007-05-09 10:17:44 +0000457
Ollie Lho184a4042005-11-26 21:55:36 +0000458 if (write_it)
Stefan Reinauer143da0b2006-01-04 16:42:57 +0000459 ret |= flash->write(flash, buf);
Ollie Lho184a4042005-11-26 21:55:36 +0000460
Ollie Lhocbbf1252004-03-17 22:22:08 +0000461 if (verify_it)
Stefan Reinauer143da0b2006-01-04 16:42:57 +0000462 ret |= verify_flash(flash, buf);
Ollie Lho184a4042005-11-26 21:55:36 +0000463
Stefan Reinauer143da0b2006-01-04 16:42:57 +0000464 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000465}