removed false alarm of erase/write, use verify '-v' if you are not sure about the...
[coreboot.git] / util / flash_and_burn / flash_rom.c
1 /*
2  * flash_rom.c: Flash programming utility for SiS 630/950 M/Bs
3  *
4  *
5  * Copyright 2000 Silicon Integrated System Corporation
6  *
7  *      This program is free software; you can redistribute it and/or modify
8  *      it under the terms of the GNU General Public License as published by
9  *      the Free Software Foundation; either version 2 of the License, or
10  *      (at your option) any later version.
11  *
12  *      This program is distributed in the hope that it will be useful,
13  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *      GNU General Public License for more details.
16  *
17  *      You should have received a copy of the GNU General Public License
18  *      along with this program; if not, write to the Free Software
19  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  *
22  * Reference:
23  *      1. SiS 630 Specification
24  *      2. SiS 950 Specification
25  *
26  * $Id$
27  */
28
29 #include <errno.h>
30 #include <fcntl.h>
31 #include <sys/mman.h>
32 #include <unistd.h>
33 #include <stdio.h>
34 #include <string.h>
35 #include <stdlib.h>
36
37 #include "flash.h"
38 #include "jedec.h"
39 #include "m29f400bt.h"
40 #include "82802ab.h"
41 #include "msys_doc.h"
42 #include "am29f040b.h"
43 #include "sst28sf040.h"
44 #include "w49f002u.h"
45 #include "sst39sf020.h"
46 #include "sst49lf040.h"
47 #include "pm49fl004.h"
48 #include "mx29f002.h"
49
50 struct flashchip flashchips[] = {
51         {"Am29F040B",   AMD_ID,         AM_29F040B,     NULL, 512, 64 * 1024,
52          probe_29f040b, erase_29f040b,  write_29f040b,  NULL},
53         {"At29C040A",   ATMEL_ID,       AT_29C040A,     NULL, 512, 256,
54          probe_jedec,   erase_chip_jedec, write_jedec,  NULL},
55         {"Mx29f002",    MX_ID,          MX_29F002,      NULL, 256, 64 * 1024,
56          probe_29f002,  erase_29f002,   write_29f002,   NULL},
57         {"SST29EE020A", SST_ID,         SST_29EE020A,   NULL, 256, 128,
58          probe_jedec,   erase_chip_jedec, write_jedec,  NULL},
59         {"SST28SF040A", SST_ID,         SST_28SF040,    NULL, 512, 256,
60          probe_28sf040, erase_28sf040, write_28sf040,   NULL},
61         {"SST39SF020A", SST_ID,         SST_39SF020,    NULL, 256, 4096,
62          probe_jedec,   erase_chip_jedec, write_39sf020,NULL},
63         {"SST39VF020",  SST_ID,         SST_39VF020,    NULL, 256, 4096,
64          probe_jedec,   erase_chip_jedec, write_39sf020,NULL},
65         {"SST49LF040",  SST_ID,         SST_49LF040,    NULL, 512, 4096,
66          probe_jedec,   erase_chip_jedec, write_49lf040,NULL},
67         {"SST49LF080A", SST_ID,         SST_49LF080A,   NULL, 1024, 4096,
68          probe_jedec,   erase_chip_jedec, write_49lf040,NULL},
69         {"SST49LF002A", SST_ID,         SST_49LF002A,   NULL, 256, 4096,
70          probe_jedec,   erase_chip_jedec, write_49lf040,NULL},
71         {"SST49LF003A", SST_ID,         SST_49LF003A,   NULL, 384, 4096,
72          probe_jedec,   erase_chip_jedec, write_49lf040,NULL},
73         {"SST49LF004A", SST_ID,         SST_49LF004A,   NULL, 512, 4096,
74          probe_jedec,   erase_chip_jedec, write_49lf040,NULL},
75         {"SST49LF008A", SST_ID,         SST_49LF008A,   NULL, 1024, 4096,
76          probe_jedec,   erase_chip_jedec, write_49lf040,NULL},
77         {"Pm49FL004",   PMC_ID,         PMC_49FL004,    NULL, 512, 64 * 1024,
78          probe_jedec,   erase_chip_jedec, write_49fl004,NULL},
79         {"W29C011",     WINBOND_ID,     W_29C011,       NULL, 128, 128,
80          probe_jedec,   erase_chip_jedec, write_jedec,  NULL},
81         {"W29C020C",    WINBOND_ID,     W_29C020C,      NULL, 256, 128,
82          probe_jedec,   erase_chip_jedec, write_jedec,  NULL},
83         {"W49F002U",    WINBOND_ID,     W_49F002U,      NULL, 256, 128,
84          probe_jedec,   erase_chip_jedec, write_49f002, NULL},
85         {"M29F400BT",   ST_ID,          ST_M29F400BT,   NULL, 512, 64 * 1024,
86          probe_m29f400bt, erase_m29f400bt, write_linuxbios_m29f400bt, NULL},
87         {"82802ab",     137,            173,            NULL, 512, 64 * 1024,
88          probe_82802ab, erase_82802ab,  write_82802ab,  NULL},
89         {"82802ac",     137,            172,            NULL, 1024, 64 * 1024,
90          probe_82802ab, erase_82802ab,  write_82802ab,  NULL},
91         {"MD-2802 (M-Systems DiskOnChip Millennium Module)",
92          MSYSTEMS_ID, MSYSTEMS_MD2802,
93          NULL, 8, 8 * 1024,
94          probe_md2802, erase_md2802, write_md2802, read_md2802},
95         {NULL,}
96 };
97
98 char *chip_to_probe = NULL;
99
100 struct flashchip *probe_flash(struct flashchip *flash)
101 {
102         int fd_mem;
103         volatile char *bios;
104         unsigned long size;
105
106         if ((fd_mem = open("/dev/mem", O_RDWR)) < 0) {
107                 perror("Can not open /dev/mem");
108                 exit(1);
109         }
110
111         while (flash->name != NULL) {
112                 if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0) {
113                         flash++;
114                         continue;
115                 }
116                 printf("Trying %s, %d KB\n", flash->name, flash->total_size);
117                 size = flash->total_size * 1024;
118                 /* BUG? what happens if getpagesize() > size!?
119                    -> ``Error MMAP /dev/mem: Invalid argument'' NIKI */
120                 if (getpagesize() > size) {
121                         size = getpagesize();
122                         printf("%s: warning: size: %d -> %ld\n",
123                                __FUNCTION__, flash->total_size * 1024,
124                                (unsigned long) size);
125                 }
126                 bios = mmap(0, size, PROT_WRITE | PROT_READ, MAP_SHARED,
127                             fd_mem, (off_t) (0xffffffff - size + 1));
128                 if (bios == MAP_FAILED) {
129                         perror("Error MMAP /dev/mem");
130                         exit(1);
131                 }
132                 flash->virt_addr = bios;
133                 flash->fd_mem = fd_mem;
134
135                 if (flash->probe(flash) == 1) {
136                         printf("%s found at physical address: 0x%lx\n",
137                                flash->name, (0xffffffff - size + 1));
138                         return flash;
139                 }
140                 munmap((void *) bios, size);
141                 flash++;
142         }
143         return NULL;
144 }
145
146 int verify_flash(struct flashchip *flash, char *buf, int verbose)
147 {
148         int i;
149         int total_size = flash->total_size * 1024;
150         volatile char *bios = flash->virt_addr;
151
152         printf("Verifying address: ");
153         for (i = 0; i < total_size; i++) {
154                 if (verbose)
155                         printf("0x%08x", i);
156                 if (*(bios + i) != *(buf + i)) {
157                         printf("FAILED\n");
158                         return 0;
159                 }
160                 if (verbose)
161                         printf("\b\b\b\b\b\b\b\b\b\b");
162         }
163         if (verbose)
164                 printf("\n");
165         else
166                 printf("VERIFIED\n");
167         return 1;
168 }
169
170
171 void usage(const char *name)
172 {
173         printf("usage: %s [-rwv] [-c chipname][file]\n", name);
174         printf("-r: read flash and save into file\n"
175                "-w: write file into flash (default when file is specified)\n"
176                "-v: verify flash against file\n"
177                "-c: probe only for specified flash chip\n"
178                " If no file is specified, then all that happens\n"
179                " is that flash info is dumped\n");
180         exit(1);
181 }
182
183 int main(int argc, char *argv[])
184 {
185         char *buf;
186         unsigned long size;
187         FILE *image;
188         struct flashchip *flash;
189         int opt;
190         int read_it = 0, write_it = 0, verify_it = 0, verbose = 0;
191         char *filename = NULL;
192
193         setbuf(stdout, NULL);
194
195         while ((opt = getopt(argc, argv, "rwvVc:")) != EOF) {
196                 switch (opt) {
197                 case 'r':
198                         read_it = 1;
199                         break;
200                 case 'w':
201                         write_it = 1;
202                         break;
203                 case 'v':
204                         verify_it = 1;
205                         break;
206                 case 'c':
207                         chip_to_probe = strdup(optarg);
208                         break;
209                 case 'V':
210                         verbose = 1;
211                         break;
212                 default:
213                         usage(argv[0]);
214                         break;
215                 }
216         }
217         if (read_it && write_it) {
218                 printf("-r and -w are mutually exclusive\n");
219                 usage(argv[0]);
220         }
221
222         if (optind < argc)
223                 filename = argv[optind++];
224
225         printf("Calibrating timer since microsleep sucks ... takes a second\n");
226         myusec_calibrate_delay();
227         printf("OK, calibrated, now do the deed\n");
228
229         /* try to enable it. Failure IS an option, since not all motherboards
230          * really need this to be done, etc., etc. It sucks.
231          */
232         (void) enable_flash_write();
233
234         if ((flash = probe_flash(flashchips)) == NULL) {
235                 printf("EEPROM not found\n");
236                 exit(1);
237         }
238
239         printf("Part is %s\n", flash->name);
240         if (!filename) {
241                 printf
242                     ("OK, only ENABLING flash write, but NOT FLASHING\n");
243                 return 0;
244         }
245         size = flash->total_size * 1024;
246         buf = (char *) calloc(size, sizeof(char));
247
248         if (read_it) {
249                 if ((image = fopen(filename, "w")) == NULL) {
250                         perror(filename);
251                         exit(1);
252                 }
253                 printf("Reading Flash...");
254                 if (flash->read == NULL)
255                         memcpy(buf, (const char *) flash->virt_addr, size);
256                 else
257                         flash->read(flash, buf);
258                 fwrite(buf, sizeof(char), size, image);
259                 fclose(image);
260                 printf("done\n");
261         } else {
262                 if ((image = fopen(filename, "r")) == NULL) {
263                         perror(filename);
264                         exit(1);
265                 }
266                 fread(buf, sizeof(char), size, image);
267                 fclose(image);
268         }
269
270         if (write_it || (!read_it && !verify_it))
271                 flash->write(flash, buf);
272         if (verify_it)
273                 verify_flash(flash, buf, verbose);
274         return 0;
275 }