blob: 8423523410f18ee4f5eae21a1dd46f7e6c65b1dc [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 Reinauere3705282005-12-18 16:41:10 +000052
Stefan Reinauer70385642007-04-06 11:58:03 +000053int fd_mem;
54
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000055/*
56 *
57 */
Uwe Hermanna7e05482007-05-09 10:17:44 +000058struct pci_dev *pci_dev_find(uint16_t vendor, uint16_t device)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000059{
Uwe Hermanna7e05482007-05-09 10:17:44 +000060 struct pci_dev *temp;
61 struct pci_filter filter;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000062
Uwe Hermanna7e05482007-05-09 10:17:44 +000063 pci_filter_init(NULL, &filter);
64 filter.vendor = vendor;
65 filter.device = device;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000066
Uwe Hermanna7e05482007-05-09 10:17:44 +000067 for (temp = pacc->devices; temp; temp = temp->next)
68 if (pci_filter_match(&filter, temp))
69 return temp;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000070
Uwe Hermanna7e05482007-05-09 10:17:44 +000071 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000072}
73
74/*
75 *
76 */
Uwe Hermanna7e05482007-05-09 10:17:44 +000077struct pci_dev *pci_card_find(uint16_t vendor, uint16_t device,
78 uint16_t card_vendor, uint16_t card_device)
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000079{
Uwe Hermanna7e05482007-05-09 10:17:44 +000080 struct pci_dev *temp;
81 struct pci_filter filter;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000082
Uwe Hermanna7e05482007-05-09 10:17:44 +000083 pci_filter_init(NULL, &filter);
84 filter.vendor = vendor;
85 filter.device = device;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000086
Uwe Hermanna7e05482007-05-09 10:17:44 +000087 for (temp = pacc->devices; temp; temp = temp->next)
88 if (pci_filter_match(&filter, temp)) {
89 if ((card_vendor == pci_read_word(temp, 0x2C)) &&
90 (card_device == pci_read_word(temp, 0x2E)))
91 return temp;
92 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000093
Uwe Hermanna7e05482007-05-09 10:17:44 +000094 return NULL;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000095}
96
Stefan Reinauerff4f1972007-05-24 08:48:10 +000097int map_flash_registers(struct flashchip *flash)
98{
99 volatile uint8_t *registers;
100 size_t size = flash->total_size * 1024;
101
102 registers = mmap(0, size, PROT_WRITE | PROT_READ, MAP_SHARED,
Uwe Hermanna8808852007-05-24 19:17:29 +0000103 fd_mem, (off_t) (0xFFFFFFFF - 0x400000 - size + 1));
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000104
105 if (registers == MAP_FAILED) {
106 perror("Can't mmap registers using " MEM_DEV);
107 exit(1);
108 }
109 flash->virtual_registers = registers;
110
111 return 0;
112}
113
Ollie Lho761bf1b2004-03-20 16:46:10 +0000114struct flashchip *probe_flash(struct flashchip *flash)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000115{
Ollie Lho184a4042005-11-26 21:55:36 +0000116 volatile uint8_t *bios;
Stefan Reinauer70385642007-04-06 11:58:03 +0000117 unsigned long flash_baseaddr, size;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000118
Ollie Lhocbbf1252004-03-17 22:22:08 +0000119 while (flash->name != NULL) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000120 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000121 flash++;
122 continue;
123 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000124 printf_debug("Probing for %s, %d KB\n",
125 flash->name, flash->total_size);
Stefan Reinauer70385642007-04-06 11:58:03 +0000126
Ollie Lhocbbf1252004-03-17 22:22:08 +0000127 size = flash->total_size * 1024;
Stefan Reinauer70385642007-04-06 11:58:03 +0000128
129#ifdef TS5300
130 // FIXME: Wrong place for this decision
Stefan Reinauer7c1402f2007-05-23 18:24:58 +0000131 // FIXME: This should be autodetected. It is trivial.
Stefan Reinauer70385642007-04-06 11:58:03 +0000132 flash_baseaddr = 0x9400000;
133#else
134 flash_baseaddr = (0xffffffff - size + 1);
135#endif
136
137 /* If getpagesize() > size ->
Stefan Reinauer7c1402f2007-05-23 18:24:58 +0000138 * "Can't mmap memory using /dev/mem: Invalid argument"
Stefan Reinauer70385642007-04-06 11:58:03 +0000139 * This should never happen as we don't support any flash chips
Stefan Reinauer7c1402f2007-05-23 18:24:58 +0000140 * smaller than 4k or 8k (yet).
Stefan Reinauer70385642007-04-06 11:58:03 +0000141 */
142
Ollie Lhocbbf1252004-03-17 22:22:08 +0000143 if (getpagesize() > size) {
144 size = getpagesize();
Stefan Reinauer70385642007-04-06 11:58:03 +0000145 printf("WARNING: size: %d -> %ld (page size)\n",
Uwe Hermanna7e05482007-05-09 10:17:44 +0000146 flash->total_size * 1024, (unsigned long)size);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000147 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000148
Ollie Lho761bf1b2004-03-20 16:46:10 +0000149 bios = mmap(0, size, PROT_WRITE | PROT_READ, MAP_SHARED,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000150 fd_mem, (off_t) flash_baseaddr);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000151 if (bios == MAP_FAILED) {
Stefan Reinauer7c1402f2007-05-23 18:24:58 +0000152 perror("Can't mmap memory using " MEM_DEV);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000153 exit(1);
154 }
Stefan Reinauerce532972007-05-23 17:20:56 +0000155 flash->virtual_memory = bios;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000156
Ollie Lhocbbf1252004-03-17 22:22:08 +0000157 if (flash->probe(flash) == 1) {
Ollie Lho761bf1b2004-03-20 16:46:10 +0000158 printf("%s found at physical address: 0x%lx\n",
Stefan Reinauer70385642007-04-06 11:58:03 +0000159 flash->name, flash_baseaddr);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000160 return flash;
161 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000162 munmap((void *)bios, size);
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000163
Ollie Lhocbbf1252004-03-17 22:22:08 +0000164 flash++;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000165 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000166 return NULL;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000167}
168
Stefan Reinauere3705282005-12-18 16:41:10 +0000169int verify_flash(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000170{
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000171 int idx;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000172 int total_size = flash->total_size * 1024;
Stefan Reinauerce532972007-05-23 17:20:56 +0000173 volatile uint8_t *bios = flash->virtual_memory;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000174
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000175 printf("Verifying flash ");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000176
177 if (verbose)
178 printf("address: 0x00000000\b\b\b\b\b\b\b\b\b\b");
179
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000180 for (idx = 0; idx < total_size; idx++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000181 if (verbose && ((idx & 0xfff) == 0xfff))
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000182 printf("0x%08x", idx);
183
184 if (*(bios + idx) != *(buf + idx)) {
185 if (verbose) {
186 printf("0x%08x ", idx);
187 }
188 printf("- FAILED\n");
189 return 1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000190 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000191
192 if (verbose && ((idx & 0xfff) == 0xfff))
Ollie Lhocbbf1252004-03-17 22:22:08 +0000193 printf("\b\b\b\b\b\b\b\b\b\b");
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000194 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000195 if (verbose)
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000196 printf("\b\b\b\b\b\b\b\b\b\b ");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000197
Stefan Reinauerfcb63682006-03-16 16:57:41 +0000198 printf("- VERIFIED \n");
199 return 0;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000200}
201
Ronald G. Minniche5559572003-03-28 03:29:43 +0000202void usage(const char *name)
203{
Stefan Reinauerf8337dd2006-08-03 10:49:09 +0000204 printf("usage: %s [-rwvEVfh] [-c chipname] [-s exclude_start]\n", name);
205 printf(" [-e exclude_end] [-m vendor:part] [-l file.layout] [-i imagename] [file]\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000206 printf
207 (" -r | --read: read flash and save into file\n"
208 " -w | --write: write file into flash (default when\n"
209 " file is specified)\n"
210 " -v | --verify: verify flash against file\n"
211 " -E | --erase: erase flash device\n"
212 " -V | --verbose: more verbose output\n"
213 " -c | --chip <chipname>: probe only for specified flash chip\n"
214 " -s | --estart <addr>: exclude start position\n"
215 " -e | --eend <addr>: exclude end postion\n"
216 " -m | --mainboard <vendor:part>: override mainboard settings\n"
217 " -f | --force: force write without checking image\n"
218 " -l | --layout <file.layout>: read rom layout from file\n"
219 " -i | --image <name>: only flash image name from flash layout\n"
220 "\n" " If no file is specified, then all that happens\n"
221 " is that flash info is dumped.\n\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000222 exit(1);
Ronald G. Minniche5559572003-03-28 03:29:43 +0000223}
224
Ollie Lho761bf1b2004-03-20 16:46:10 +0000225int main(int argc, char *argv[])
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000226{
Ollie Lho184a4042005-11-26 21:55:36 +0000227 uint8_t *buf;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000228 unsigned long size;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000229 FILE *image;
230 struct flashchip *flash;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000231 int opt;
Ollie Lho184a4042005-11-26 21:55:36 +0000232 int option_index = 0;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000233 int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
Stefan Reinauer143da0b2006-01-04 16:42:57 +0000234 int ret = 0;
Ollie Lho184a4042005-11-26 21:55:36 +0000235
Uwe Hermanna7e05482007-05-09 10:17:44 +0000236 static struct option long_options[] = {
237 {"read", 0, 0, 'r'},
238 {"write", 0, 0, 'w'},
239 {"erase", 0, 0, 'E'},
240 {"verify", 0, 0, 'v'},
241 {"chip", 1, 0, 'c'},
242 {"estart", 1, 0, 's'},
243 {"eend", 1, 0, 'e'},
244 {"mainboard", 1, 0, 'm'},
245 {"verbose", 0, 0, 'V'},
246 {"force", 0, 0, 'f'},
247 {"layout", 1, 0, 'l'},
248 {"image", 1, 0, 'i'},
249 {"help", 0, 0, 'h'},
250 {0, 0, 0, 0}
Ollie Lho184a4042005-11-26 21:55:36 +0000251 };
Uwe Hermanna7e05482007-05-09 10:17:44 +0000252
Ollie Lhocbbf1252004-03-17 22:22:08 +0000253 char *filename = NULL;
Ronald G. Minnichceec4202003-07-25 04:37:41 +0000254
Uwe Hermanna7e05482007-05-09 10:17:44 +0000255 unsigned int exclude_start_position = 0, exclude_end_position = 0; // [x,y)
256 char *tempstr = NULL, *tempstr2 = NULL;
Yinghai Luad8ffd22004-10-20 05:07:16 +0000257
258 if (argc > 1) {
259 /* Yes, print them. */
260 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000261 printf_debug("The arguments are:\n");
Yinghai Luad8ffd22004-10-20 05:07:16 +0000262 for (i = 1; i < argc; ++i)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000263 printf_debug("%s\n", argv[i]);
Yinghai Luad8ffd22004-10-20 05:07:16 +0000264 }
265
Ollie Lhocbbf1252004-03-17 22:22:08 +0000266 setbuf(stdout, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000267 while ((opt = getopt_long(argc, argv, "rwvVEfc:s:e:m:l:i:h",
268 long_options, &option_index)) != EOF) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000269 switch (opt) {
270 case 'r':
271 read_it = 1;
272 break;
273 case 'w':
274 write_it = 1;
275 break;
276 case 'v':
277 verify_it = 1;
278 break;
279 case 'c':
280 chip_to_probe = strdup(optarg);
281 break;
Ollie Lho789ad3d2004-03-18 20:27:33 +0000282 case 'V':
283 verbose = 1;
284 break;
Ollie Lhoefa28582004-12-08 20:10:01 +0000285 case 'E':
286 erase_it = 1;
287 break;
Yinghai Luad8ffd22004-10-20 05:07:16 +0000288 case 's':
289 tempstr = strdup(optarg);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000290 sscanf(tempstr, "%x", &exclude_start_position);
Yinghai Luad8ffd22004-10-20 05:07:16 +0000291 break;
292 case 'e':
Ollie Lho98bea8a2004-12-07 03:15:51 +0000293 tempstr = strdup(optarg);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000294 sscanf(tempstr, "%x", &exclude_end_position);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000295 break;
Ollie Lho184a4042005-11-26 21:55:36 +0000296 case 'm':
297 tempstr = strdup(optarg);
298 strtok(tempstr, ":");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000299 tempstr2 = strtok(NULL, ":");
Ollie Lho184a4042005-11-26 21:55:36 +0000300 if (tempstr2) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000301 lb_vendor = tempstr;
302 lb_part = tempstr2;
Ollie Lho184a4042005-11-26 21:55:36 +0000303 } else {
304 printf("warning: ignored wrong format of"
Uwe Hermanna7e05482007-05-09 10:17:44 +0000305 " mainboard: %s\n", tempstr);
Ollie Lho184a4042005-11-26 21:55:36 +0000306 }
307 break;
308 case 'f':
Uwe Hermanna7e05482007-05-09 10:17:44 +0000309 force = 1;
Ollie Lho184a4042005-11-26 21:55:36 +0000310 break;
311 case 'l':
Uwe Hermanna7e05482007-05-09 10:17:44 +0000312 tempstr = strdup(optarg);
Stefan Reinauer0a05d672007-04-14 16:32:59 +0000313 if (read_romlayout(tempstr))
314 exit(1);
Ollie Lho184a4042005-11-26 21:55:36 +0000315 break;
316 case 'i':
Uwe Hermanna7e05482007-05-09 10:17:44 +0000317 tempstr = strdup(optarg);
Ollie Lho184a4042005-11-26 21:55:36 +0000318 find_romentry(tempstr);
319 break;
320 case 'h':
Ollie Lhocbbf1252004-03-17 22:22:08 +0000321 default:
322 usage(argv[0]);
323 break;
324 }
325 }
Yinghai Luad8ffd22004-10-20 05:07:16 +0000326
Ollie Lhocbbf1252004-03-17 22:22:08 +0000327 if (read_it && write_it) {
328 printf("-r and -w are mutually exclusive\n");
329 usage(argv[0]);
330 }
Ronald G. Minniche5559572003-03-28 03:29:43 +0000331
Ollie Lhocbbf1252004-03-17 22:22:08 +0000332 if (optind < argc)
333 filename = argv[optind++];
Ronald G. Minniche5559572003-03-28 03:29:43 +0000334
Uwe Hermanna7e05482007-05-09 10:17:44 +0000335 /* First get full io access */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000336#if defined (__sun) && (defined(__i386) || defined(__amd64))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000337 if (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) != 0) {
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000338#else
339 if (iopl(3) != 0) {
340#endif
Uwe Hermanna7e05482007-05-09 10:17:44 +0000341 fprintf(stderr, "ERROR: iopl failed: \"%s\"\n",
342 strerror(errno));
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000343 exit(1);
344 }
345
Uwe Hermanna7e05482007-05-09 10:17:44 +0000346 /* Initialize PCI access for flash enables */
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000347 pacc = pci_alloc(); /* Get the pci_access structure */
348 /* Set all options you want -- here we stick with the defaults */
349 pci_init(pacc); /* Initialize the PCI library */
350 pci_scan_bus(pacc); /* We want to get the list of devices */
351
Stefan Reinauer70385642007-04-06 11:58:03 +0000352 /* Open the memory device. A lot of functions need it */
353 if ((fd_mem = open(MEM_DEV, O_RDWR)) < 0) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000354 perror("Error: Can not access memory using " MEM_DEV
355 ". You need to be root.");
Stefan Reinauer70385642007-04-06 11:58:03 +0000356 exit(1);
357 }
358
Ollie Lhocbbf1252004-03-17 22:22:08 +0000359 myusec_calibrate_delay();
Ollie Lho184a4042005-11-26 21:55:36 +0000360
361 /* We look at the lbtable first to see if we need a
362 * mainboard specific flash enable sequence.
363 */
364 linuxbios_init();
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000365
Ollie Lhocbbf1252004-03-17 22:22:08 +0000366 /* try to enable it. Failure IS an option, since not all motherboards
Ollie Lho184a4042005-11-26 21:55:36 +0000367 * really need this to be done, etc., etc.
Ollie Lhocbbf1252004-03-17 22:22:08 +0000368 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000369 ret = chipset_flash_enable();
370 if (ret == -2) {
371 printf("WARNING: No chipset found. Flash detection "
372 "will most likely fail.\n");
373 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000374
Uwe Hermanna7e05482007-05-09 10:17:44 +0000375 board_flash_enable(lb_vendor, lb_part);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000376
377 if ((flash = probe_flash(flashchips)) == NULL) {
Ollie Lho184a4042005-11-26 21:55:36 +0000378 printf("No EEPROM/flash device found.\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000379 exit(1);
380 }
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000381
Uwe Hermannd1915c12006-10-07 00:23:51 +0000382 printf("Flash part is %s (%d KB)\n", flash->name, flash->total_size);
Ollie Lho184a4042005-11-26 21:55:36 +0000383
Ollie Lhoefa28582004-12-08 20:10:01 +0000384 if (!filename && !erase_it) {
Ollie Lho184a4042005-11-26 21:55:36 +0000385 // FIXME: Do we really want this feature implicitly?
386 printf("OK, only ENABLING flash write, but NOT FLASHING.\n");
Ollie Lhocbbf1252004-03-17 22:22:08 +0000387 return 0;
388 }
Ollie Lhocbbf1252004-03-17 22:22:08 +0000389
Ollie Lho184a4042005-11-26 21:55:36 +0000390 size = flash->total_size * 1024;
391 buf = (uint8_t *) calloc(size, sizeof(char));
Uwe Hermanna7e05482007-05-09 10:17:44 +0000392
Ollie Lhoefa28582004-12-08 20:10:01 +0000393 if (erase_it) {
394 printf("Erasing flash chip\n");
395 flash->erase(flash);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000396 exit(0);
Ollie Lhoefa28582004-12-08 20:10:01 +0000397 } else if (read_it) {
Ollie Lho761bf1b2004-03-20 16:46:10 +0000398 if ((image = fopen(filename, "w")) == NULL) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000399 perror(filename);
400 exit(1);
401 }
402 printf("Reading Flash...");
Ollie Lho73eca802004-03-19 22:10:07 +0000403 if (flash->read == NULL)
Stefan Reinauerce532972007-05-23 17:20:56 +0000404 memcpy(buf, (const char *)flash->virtual_memory, size);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000405 else
Ollie Lho761bf1b2004-03-20 16:46:10 +0000406 flash->read(flash, buf);
Yinghai Luad8ffd22004-10-20 05:07:16 +0000407
Ollie Lho98bea8a2004-12-07 03:15:51 +0000408 if (exclude_end_position - exclude_start_position > 0)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000409 memset(buf + exclude_start_position, 0,
410 exclude_end_position - exclude_start_position);
Yinghai Luad8ffd22004-10-20 05:07:16 +0000411
Ollie Lhocbbf1252004-03-17 22:22:08 +0000412 fwrite(buf, sizeof(char), size, image);
413 fclose(image);
414 printf("done\n");
415 } else {
Stefan Reinauer018aca82006-11-21 23:48:51 +0000416 struct stat image_stat;
417
Ollie Lho761bf1b2004-03-20 16:46:10 +0000418 if ((image = fopen(filename, "r")) == NULL) {
Ollie Lhocbbf1252004-03-17 22:22:08 +0000419 perror(filename);
420 exit(1);
421 }
Stefan Reinauer018aca82006-11-21 23:48:51 +0000422 if (fstat(fileno(image), &image_stat) != 0) {
423 perror(filename);
424 exit(1);
425 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000426 if (image_stat.st_size != flash->total_size * 1024) {
Stefan Reinauerdf8a3c82007-03-22 14:51:45 +0000427 fprintf(stderr, "Error: Image size doesnt match\n");
Stefan Reinauer018aca82006-11-21 23:48:51 +0000428 exit(1);
429 }
430
Ollie Lho761bf1b2004-03-20 16:46:10 +0000431 fread(buf, sizeof(char), size, image);
Ollie Lho184a4042005-11-26 21:55:36 +0000432 show_id(buf, size);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000433 fclose(image);
434 }
435
Ollie Lho184a4042005-11-26 21:55:36 +0000436 /* exclude range stuff. Nice idea, but at the moment it is only
437 * supported in hardware by the pm49fl004 chips.
438 * Instead of implementing this for all chips I suggest advancing
439 * it to the rom layout feature below and drop exclude range
440 * completely once all flash chips can do rom layouts. stepan
441 */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000442
Ollie Lho184a4042005-11-26 21:55:36 +0000443 // ////////////////////////////////////////////////////////////
Ollie Lho98bea8a2004-12-07 03:15:51 +0000444 if (exclude_end_position - exclude_start_position > 0)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000445 memcpy(buf + exclude_start_position,
Uwe Hermanna8808852007-05-24 19:17:29 +0000446 (const char *)flash->virtual_memory +
447 exclude_start_position,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000448 exclude_end_position - exclude_start_position);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000449
Uwe Hermanna7e05482007-05-09 10:17:44 +0000450 exclude_start_page = exclude_start_position / flash->page_size;
451 if ((exclude_start_position % flash->page_size) != 0) {
Ollie Lho98bea8a2004-12-07 03:15:51 +0000452 exclude_start_page++;
453 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000454 exclude_end_page = exclude_end_position / flash->page_size;
Ollie Lho184a4042005-11-26 21:55:36 +0000455 // ////////////////////////////////////////////////////////////
Yinghai Luad8ffd22004-10-20 05:07:16 +0000456
Ollie Lho184a4042005-11-26 21:55:36 +0000457 // This should be moved into each flash part's code to do it
458 // cleanly. This does the job.
Stefan Reinauerce532972007-05-23 17:20:56 +0000459 handle_romentries(buf, (uint8_t *) flash->virtual_memory);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000460
Ollie Lho184a4042005-11-26 21:55:36 +0000461 // ////////////////////////////////////////////////////////////
Uwe Hermanna7e05482007-05-09 10:17:44 +0000462
Ollie Lho184a4042005-11-26 21:55:36 +0000463 if (write_it)
Stefan Reinauer143da0b2006-01-04 16:42:57 +0000464 ret |= flash->write(flash, buf);
Ollie Lho184a4042005-11-26 21:55:36 +0000465
Ollie Lhocbbf1252004-03-17 22:22:08 +0000466 if (verify_it)
Stefan Reinauer143da0b2006-01-04 16:42:57 +0000467 ret |= verify_flash(flash, buf);
Ollie Lho184a4042005-11-26 21:55:36 +0000468
Stefan Reinauer143da0b2006-01-04 16:42:57 +0000469 return ret;
Ronald G. Minnichf4cf2ba2002-01-29 18:26:26 +0000470}