]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/trab/auto_update.c
Fix e-mail address of Gary Jennejohn.
[people/ms/u-boot.git] / board / trab / auto_update.c
CommitLineData
f54ebdfa
WD
1/*
2 * (C) Copyright 2003
792a09eb 3 * Gary Jennejohn, DENX Software Engineering, garyj@denx.de.
f54ebdfa
WD
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <command.h>
26#include <malloc.h>
27#include <image.h>
28#include <asm/byteorder.h>
29#include <usb.h>
30
6d0f6bcf 31#ifdef CONFIG_SYS_HUSH_PARSER
f54ebdfa
WD
32#include <hush.h>
33#endif
34
35#ifdef CONFIG_AUTO_UPDATE
36
7b59b3c7 37#ifndef CONFIG_USB_OHCI_NEW
f54ebdfa
WD
38#error "must define CONFIG_USB_OHCI"
39#endif
40
41#ifndef CONFIG_USB_STORAGE
42#error "must define CONFIG_USB_STORAGE"
43#endif
44
6d0f6bcf
JCPV
45#ifndef CONFIG_SYS_HUSH_PARSER
46#error "must define CONFIG_SYS_HUSH_PARSER"
f54ebdfa
WD
47#endif
48
ab3abcba 49#if !defined(CONFIG_CMD_FAT)
d39b5741 50#error "must define CONFIG_CMD_FAT"
f54ebdfa
WD
51#endif
52
53/*
54 * Check whether a USB memory stick is plugged in.
55 * If one is found:
b0639ca3
WD
56 * 1) if prepare.img ist found load it into memory. If it is
57 * valid then run it.
58 * 2) if preinst.img is found load it into memory. If it is
59 * valid then run it. Update the EEPROM.
c786f427 60 * 3) if firmw_01.img is found load it into memory. If it is valid,
b0639ca3 61 * burn it into FLASH and update the EEPROM.
c786f427 62 * 4) if kernl_01.img is found load it into memory. If it is valid,
b0639ca3
WD
63 * burn it into FLASH and update the EEPROM.
64 * 5) if app.img is found load it into memory. If it is valid,
65 * burn it into FLASH and update the EEPROM.
66 * 6) if disk.img is found load it into memory. If it is valid,
67 * burn it into FLASH and update the EEPROM.
68 * 7) if postinst.img is found load it into memory. If it is
69 * valid then run it. Update the EEPROM.
f54ebdfa
WD
70 */
71
72#undef AU_DEBUG
73
74#undef debug
75#ifdef AU_DEBUG
76#define debug(fmt,args...) printf (fmt ,##args)
77#else
78#define debug(fmt,args...)
79#endif /* AU_DEBUG */
80
81/* possible names of files on the USB stick. */
82#define AU_PREPARE "prepare.img"
83#define AU_PREINST "preinst.img"
c786f427
WD
84#define AU_FIRMWARE "firmw_01.img"
85#define AU_KERNEL "kernl_01.img"
f54ebdfa
WD
86#define AU_APP "app.img"
87#define AU_DISK "disk.img"
88#define AU_POSTINST "postinst.img"
89
b0639ca3
WD
90struct flash_layout
91{
92 long start;
93 long end;
94};
95
f54ebdfa 96/* layout of the FLASH. ST = start address, ND = end address. */
b0639ca3 97#ifndef CONFIG_FLASH_8MB /* 16 MB Flash, 32 MB RAM */
f54ebdfa
WD
98#define AU_FL_FIRMWARE_ST 0x00000000
99#define AU_FL_FIRMWARE_ND 0x0009FFFF
100#define AU_FL_VFD_ST 0x000A0000
101#define AU_FL_VFD_ND 0x000BFFFF
102#define AU_FL_KERNEL_ST 0x000C0000
103#define AU_FL_KERNEL_ND 0x001BFFFF
104#define AU_FL_APP_ST 0x001C0000
105#define AU_FL_APP_ND 0x005BFFFF
106#define AU_FL_DISK_ST 0x005C0000
107#define AU_FL_DISK_ND 0x00FFFFFF
8a42eac7 108#else /* 8 MB Flash, 32 MB RAM */
f54ebdfa 109#define AU_FL_FIRMWARE_ST 0x00000000
8a42eac7 110#define AU_FL_FIRMWARE_ND 0x0005FFFF
111#define AU_FL_KERNEL_ST 0x00060000
112#define AU_FL_KERNEL_ND 0x0013FFFF
113#define AU_FL_APP_ST 0x00140000
114#define AU_FL_APP_ND 0x0067FFFF
115#define AU_FL_DISK_ST 0x00680000
f54ebdfa
WD
116#define AU_FL_DISK_ND 0x007DFFFF
117#define AU_FL_VFD_ST 0x007E0000
118#define AU_FL_VFD_ND 0x007FFFFF
b0639ca3 119#endif /* CONFIG_FLASH_8MB */
f54ebdfa
WD
120
121/* a structure with the offsets to values in the EEPROM */
122struct eeprom_layout
123{
b0639ca3
WD
124 int time;
125 int size;
126 int dcrc;
f54ebdfa
WD
127};
128
129/* layout of the EEPROM - offset from the start. All entries are 32 bit. */
130#define AU_EEPROM_TIME_PREINST 64
131#define AU_EEPROM_SIZE_PREINST 68
132#define AU_EEPROM_DCRC_PREINST 72
133#define AU_EEPROM_TIME_FIRMWARE 76
134#define AU_EEPROM_SIZE_FIRMWARE 80
135#define AU_EEPROM_DCRC_FIRMWARE 84
136#define AU_EEPROM_TIME_KERNEL 88
137#define AU_EEPROM_SIZE_KERNEL 92
138#define AU_EEPROM_DCRC_KERNEL 96
139#define AU_EEPROM_TIME_APP 100
140#define AU_EEPROM_SIZE_APP 104
141#define AU_EEPROM_DCRC_APP 108
142#define AU_EEPROM_TIME_DISK 112
143#define AU_EEPROM_SIZE_DISK 116
144#define AU_EEPROM_DCRC_DISK 120
145#define AU_EEPROM_TIME_POSTINST 124
146#define AU_EEPROM_SIZE_POSTINST 128
147#define AU_EEPROM_DCRC_POSTINST 132
148
149static int au_usb_stor_curr_dev; /* current device */
b0639ca3
WD
150
151/* index of each file in the following arrays */
152#define IDX_PREPARE 0
153#define IDX_PREINST 1
154#define IDX_FIRMWARE 2
155#define IDX_KERNEL 3
156#define IDX_APP 4
157#define IDX_DISK 5
158#define IDX_POSTINST 6
f54ebdfa
WD
159/* max. number of files which could interest us */
160#define AU_MAXFILES 7
161/* pointers to file names */
162char *aufile[AU_MAXFILES];
163/* sizes of flash areas for each file */
164long ausize[AU_MAXFILES];
165/* offsets into the EEEPROM */
166struct eeprom_layout auee_off[AU_MAXFILES] = { \
167 {0}, \
168 {AU_EEPROM_TIME_PREINST, AU_EEPROM_SIZE_PREINST, AU_EEPROM_DCRC_PREINST,}, \
169 {AU_EEPROM_TIME_FIRMWARE, AU_EEPROM_SIZE_FIRMWARE, AU_EEPROM_DCRC_FIRMWARE,}, \
170 {AU_EEPROM_TIME_KERNEL, AU_EEPROM_SIZE_KERNEL, AU_EEPROM_DCRC_KERNEL,}, \
171 {AU_EEPROM_TIME_APP, AU_EEPROM_SIZE_APP, AU_EEPROM_DCRC_APP,}, \
172 {AU_EEPROM_TIME_DISK, AU_EEPROM_SIZE_DISK, AU_EEPROM_DCRC_DISK,}, \
173 {AU_EEPROM_TIME_POSTINST, AU_EEPROM_SIZE_POSTINST, AU_EEPROM_DCRC_POSTINST,} \
174 };
b0639ca3
WD
175/* array of flash areas start and end addresses */
176struct flash_layout aufl_layout[AU_MAXFILES - 3] = { \
177 {AU_FL_FIRMWARE_ST, AU_FL_FIRMWARE_ND,}, \
178 {AU_FL_KERNEL_ST, AU_FL_KERNEL_ND,}, \
179 {AU_FL_APP_ST, AU_FL_APP_ND,}, \
180 {AU_FL_DISK_ST, AU_FL_DISK_ND,}, \
181};
182/* convert the index into aufile[] to an index into aufl_layout[] */
183#define FIDX_TO_LIDX(idx) ((idx) - 2)
184
f54ebdfa 185/* where to load files into memory */
a0ff7f2e 186#define LOAD_ADDR ((unsigned char *)0x0C100000)
8a42eac7 187/* the app is the largest image */
188#define MAX_LOADSZ ausize[IDX_APP]
f54ebdfa
WD
189
190/* externals */
191extern int fat_register_device(block_dev_desc_t *, int);
192extern int file_fat_detectfs(void);
193extern long file_fat_read(const char *, void *, unsigned long);
194extern int i2c_read (unsigned char, unsigned int, int , unsigned char* , int);
195extern int i2c_write (uchar, uint, int , uchar* , int);
196#ifdef CONFIG_VFD
197extern int trab_vfd (ulong);
198extern int transfer_pic(unsigned char, unsigned char *, int, int);
199#endif
a0ff7f2e
WD
200extern int flash_sect_erase(ulong, ulong);
201extern int flash_sect_protect (int, ulong, ulong);
170d5e6d 202extern int flash_write (char *, ulong, ulong);
b0639ca3
WD
203/* change char* to void* to shutup the compiler */
204extern int i2c_write_multiple (uchar, uint, int, void *, int);
205extern int i2c_read_multiple (uchar, uint, int, void *, int);
2d5b561e 206extern int u_boot_hush_start(void);
f54ebdfa
WD
207
208int
fa1399ed
WD
209au_check_cksum_valid(int idx, long nbytes)
210{
211 image_header_t *hdr;
fa1399ed
WD
212
213 hdr = (image_header_t *)LOAD_ADDR;
d5934ad7 214#if defined(CONFIG_FIT)
9a4daad0 215 if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {
d5934ad7
MB
216 puts ("Non legacy image format not supported\n");
217 return -1;
218 }
219#endif
fa1399ed 220
5e339fd9 221 if (nbytes != image_get_image_size (hdr)) {
fa1399ed
WD
222 printf ("Image %s bad total SIZE\n", aufile[idx]);
223 return -1;
224 }
225 /* check the data CRC */
5e339fd9 226 if (!image_check_dcrc (hdr)) {
fa1399ed
WD
227 printf ("Image %s bad data checksum\n", aufile[idx]);
228 return -1;
229 }
230 return 0;
231}
232
233int
234au_check_header_valid(int idx, long nbytes)
f54ebdfa
WD
235{
236 image_header_t *hdr;
237 unsigned long checksum;
238 unsigned char buf[4];
239
240 hdr = (image_header_t *)LOAD_ADDR;
d5934ad7 241#if defined(CONFIG_FIT)
9a4daad0 242 if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {
d5934ad7
MB
243 puts ("Non legacy image format not supported\n");
244 return -1;
245 }
246#endif
247
f54ebdfa 248 /* check the easy ones first */
b0639ca3 249#undef CHECK_VALID_DEBUG
f54ebdfa 250#ifdef CHECK_VALID_DEBUG
b97a2a0a
MB
251 printf("magic %#x %#x ", image_get_magic (hdr), IH_MAGIC);
252 printf("arch %#x %#x ", image_get_arch (hdr), IH_ARCH_ARM);
253 printf("size %#x %#lx ", image_get_data_size (hdr), nbytes);
254 printf("type %#x %#x ", image_get_type (hdr), IH_TYPE_KERNEL);
f54ebdfa 255#endif
5e339fd9 256 if (nbytes < image_get_header_size ()) {
fa1399ed
WD
257 printf ("Image %s bad header SIZE\n", aufile[idx]);
258 return -1;
259 }
5e339fd9 260 if (!image_check_magic (hdr) || !image_check_arch (hdr, IH_ARCH_ARM)) {
fa1399ed 261 printf ("Image %s bad MAGIC or ARCH\n", aufile[idx]);
80369866 262 return -1;
f54ebdfa
WD
263 }
264 /* check the hdr CRC */
b97a2a0a 265 if (!image_check_hcrc (hdr)) {
80369866
WD
266 printf ("Image %s bad header checksum\n", aufile[idx]);
267 return -1;
f54ebdfa 268 }
f54ebdfa 269 /* check the type - could do this all in one gigantic if() */
5e339fd9
BS
270 if ((idx == IDX_FIRMWARE) &&
271 !image_check_type (hdr, IH_TYPE_FIRMWARE)) {
80369866
WD
272 printf ("Image %s wrong type\n", aufile[idx]);
273 return -1;
f54ebdfa 274 }
b97a2a0a 275 if ((idx == IDX_KERNEL) && !image_check_type (hdr, IH_TYPE_KERNEL)) {
80369866
WD
276 printf ("Image %s wrong type\n", aufile[idx]);
277 return -1;
f54ebdfa 278 }
b97a2a0a 279 if ((idx == IDX_DISK) && !image_check_type (hdr, IH_TYPE_FILESYSTEM)) {
d9a405aa
WD
280 printf ("Image %s wrong type\n", aufile[idx]);
281 return -1;
282 }
b97a2a0a 283 if ((idx == IDX_APP) && !image_check_type (hdr, IH_TYPE_RAMDISK)
1d1cb427 284 && !image_check_type (hdr, IH_TYPE_FILESYSTEM)) {
80369866
WD
285 printf ("Image %s wrong type\n", aufile[idx]);
286 return -1;
f54ebdfa
WD
287 }
288 if ((idx == IDX_PREPARE || idx == IDX_PREINST || idx == IDX_POSTINST)
5e339fd9 289 && !image_check_type (hdr, IH_TYPE_SCRIPT)) {
80369866
WD
290 printf ("Image %s wrong type\n", aufile[idx]);
291 return -1;
f54ebdfa
WD
292 }
293 /* special case for prepare.img */
294 if (idx == IDX_PREPARE)
295 return 0;
d9a405aa 296 /* recycle checksum */
b97a2a0a 297 checksum = image_get_data_size (hdr);
d9a405aa 298 /* for kernel and app the image header must also fit into flash */
8b4c9e7c 299 if ((idx != IDX_DISK) && (idx != IDX_FIRMWARE))
b97a2a0a 300 checksum += image_get_header_size ();
d9a405aa
WD
301 /* check the size does not exceed space in flash. HUSH scripts */
302 /* all have ausize[] set to 0 */
303 if ((ausize[idx] != 0) && (ausize[idx] < checksum)) {
80369866
WD
304 printf ("Image %s is bigger than FLASH\n", aufile[idx]);
305 return -1;
f54ebdfa
WD
306 }
307 /* check the time stamp from the EEPROM */
308 /* read it in */
309 i2c_read_multiple(0x54, auee_off[idx].time, 1, buf, sizeof(buf));
310#ifdef CHECK_VALID_DEBUG
80369866
WD
311 printf ("buf[0] %#x buf[1] %#x buf[2] %#x buf[3] %#x "
312 "as int %#x time %#x\n",
313 buf[0], buf[1], buf[2], buf[3],
b97a2a0a 314 *((unsigned int *)buf), image_get_time (hdr));
f54ebdfa
WD
315#endif
316 /* check it */
b97a2a0a 317 if (*((unsigned int *)buf) >= image_get_time (hdr)) {
80369866
WD
318 printf ("Image %s is too old\n", aufile[idx]);
319 return -1;
f54ebdfa
WD
320 }
321
322 return 0;
323}
324
325/* power control defines */
326#define CPLD_VFD_BK ((volatile char *)0x04038002)
327#define POWER_OFF (1 << 1)
328
329int
a0ff7f2e 330au_do_update(int idx, long sz)
f54ebdfa
WD
331{
332 image_header_t *hdr;
333 char *addr;
b0639ca3 334 long start, end;
a0ff7f2e 335 int off, rc;
b0639ca3 336 uint nbytes;
f54ebdfa
WD
337
338 hdr = (image_header_t *)LOAD_ADDR;
d5934ad7 339#if defined(CONFIG_FIT)
9a4daad0 340 if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {
d5934ad7
MB
341 puts ("Non legacy image format not supported\n");
342 return -1;
343 }
344#endif
b0639ca3 345
f54ebdfa
WD
346 /* disable the power switch */
347 *CPLD_VFD_BK |= POWER_OFF;
b0639ca3 348
f54ebdfa 349 /* execute a script */
b97a2a0a
MB
350 if (image_check_type (hdr, IH_TYPE_SCRIPT)) {
351 addr = (char *)((char *)hdr + image_get_header_size ());
fbe4b5cb
WD
352 /* stick a NULL at the end of the script, otherwise */
353 /* parse_string_outer() runs off the end. */
b97a2a0a 354 addr[image_get_data_size (hdr)] = 0;
fbe4b5cb
WD
355 addr += 8;
356 parse_string_outer(addr, FLAG_PARSE_SEMICOLON);
f54ebdfa
WD
357 return 0;
358 }
b0639ca3
WD
359
360 start = aufl_layout[FIDX_TO_LIDX(idx)].start;
361 end = aufl_layout[FIDX_TO_LIDX(idx)].end;
362
363 /* unprotect the address range */
364 /* this assumes that ONLY the firmware is protected! */
365 if (idx == IDX_FIRMWARE) {
366#undef AU_UPDATE_TEST
367#ifdef AU_UPDATE_TEST
368 /* erase it where Linux goes */
369 start = aufl_layout[1].start;
370 end = aufl_layout[1].end;
371#endif
a0ff7f2e 372 flash_sect_protect(0, start, end);
b0639ca3
WD
373 }
374
80369866 375 /*
a0ff7f2e 376 * erase the address range.
80369866 377 */
a0ff7f2e
WD
378 debug ("flash_sect_erase(%lx, %lx);\n", start, end);
379 flash_sect_erase(start, end);
80369866 380 wait_ms(100);
3d1e8a9d 381 /* strip the header - except for the kernel and ramdisk */
b97a2a0a
MB
382 if (image_check_type (hdr, IH_TYPE_KERNEL) ||
383 image_check_type (hdr, IH_TYPE_RAMDISK)) {
3d1e8a9d 384 addr = (char *)hdr;
b97a2a0a
MB
385 off = image_get_header_size ();
386 nbytes = image_get_image_size (hdr);
3d1e8a9d 387 } else {
b97a2a0a 388 addr = (char *)((char *)hdr + image_get_header_size ());
b0639ca3
WD
389#ifdef AU_UPDATE_TEST
390 /* copy it to where Linux goes */
391 if (idx == IDX_FIRMWARE)
392 start = aufl_layout[1].start;
393#endif
394 off = 0;
b97a2a0a 395 nbytes = image_get_data_size (hdr);
b0639ca3
WD
396 }
397
398 /* copy the data from RAM to FLASH */
a0ff7f2e
WD
399 debug ("flash_write(%p, %lx %x)\n", addr, start, nbytes);
400 rc = flash_write(addr, start, nbytes);
401 if (rc != 0) {
402 printf("Flashing failed due to error %d\n", rc);
403 return -1;
404 }
b0639ca3
WD
405
406 /* check the dcrc of the copy */
b97a2a0a
MB
407 if (crc32 (0, (uchar *)(start + off), image_get_data_size (hdr)) !=
408 image_get_dcrc (hdr)) {
80369866
WD
409 printf ("Image %s Bad Data Checksum After COPY\n", aufile[idx]);
410 return -1;
b0639ca3
WD
411 }
412
413 /* protect the address range */
414 /* this assumes that ONLY the firmware is protected! */
a0ff7f2e
WD
415 if (idx == IDX_FIRMWARE)
416 flash_sect_protect(1, start, end);
f54ebdfa
WD
417 return 0;
418}
419
420int
421au_update_eeprom(int idx)
422{
423 image_header_t *hdr;
b0639ca3
WD
424 int off;
425 uint32_t val;
f54ebdfa 426
151ab83a
WD
427 /* special case for prepare.img */
428 if (idx == IDX_PREPARE) {
429 /* enable the power switch */
430 *CPLD_VFD_BK &= ~POWER_OFF;
431 return 0;
432 }
433
f54ebdfa 434 hdr = (image_header_t *)LOAD_ADDR;
d5934ad7 435#if defined(CONFIG_FIT)
9a4daad0 436 if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {
d5934ad7
MB
437 puts ("Non legacy image format not supported\n");
438 return -1;
439 }
440#endif
441
b0639ca3
WD
442 /* write the time field into EEPROM */
443 off = auee_off[idx].time;
b97a2a0a 444 val = image_get_time (hdr);
b0639ca3
WD
445 i2c_write_multiple(0x54, off, 1, &val, sizeof(val));
446 /* write the size field into EEPROM */
447 off = auee_off[idx].size;
b97a2a0a 448 val = image_get_data_size (hdr);
b0639ca3
WD
449 i2c_write_multiple(0x54, off, 1, &val, sizeof(val));
450 /* write the dcrc field into EEPROM */
451 off = auee_off[idx].dcrc;
b97a2a0a 452 val = image_get_dcrc (hdr);
b0639ca3 453 i2c_write_multiple(0x54, off, 1, &val, sizeof(val));
f54ebdfa
WD
454 /* enable the power switch */
455 *CPLD_VFD_BK &= ~POWER_OFF;
456 return 0;
457}
458
459/*
460 * this is called from board_init() after the hardware has been set up
461 * and is usable. That seems like a good time to do this.
462 * Right now the return value is ignored.
463 */
464int
465do_auto_update(void)
466{
467 block_dev_desc_t *stor_dev;
468 long sz;
a4d2636f 469 int i, res = 0, bitmap_first, cnt, old_ctrlc, got_ctrlc;
f54ebdfa 470 char *env;
80369866 471 long start, end;
f54ebdfa 472
b0639ca3 473#undef ERASE_EEPROM
f54ebdfa
WD
474#ifdef ERASE_EEPROM
475 int arr[18];
476 memset(arr, 0, sizeof(arr));
477 i2c_write_multiple(0x54, 64, 1, arr, sizeof(arr));
478#endif
479 au_usb_stor_curr_dev = -1;
480 /* start USB */
481 if (usb_stop() < 0) {
482 debug ("usb_stop failed\n");
483 return -1;
484 }
485 if (usb_init() < 0) {
486 debug ("usb_init failed\n");
487 return -1;
488 }
489 /*
490 * check whether a storage device is attached (assume that it's
491 * a USB memory stick, since nothing else should be attached).
492 */
9fd5e31f 493 au_usb_stor_curr_dev = usb_stor_scan(0);
f54ebdfa
WD
494 if (au_usb_stor_curr_dev == -1) {
495 debug ("No device found. Not initialized?\n");
a4d2636f
WD
496 res = -1;
497 goto xit;
f54ebdfa
WD
498 }
499 /* check whether it has a partition table */
80369866
WD
500 stor_dev = get_dev("usb", 0);
501 if (stor_dev == NULL) {
f54ebdfa 502 debug ("uknown device type\n");
a4d2636f
WD
503 res = -1;
504 goto xit;
f54ebdfa
WD
505 }
506 if (fat_register_device(stor_dev, 1) != 0) {
507 debug ("Unable to use USB %d:%d for fatls\n",
508 au_usb_stor_curr_dev, 1);
a4d2636f
WD
509 res = -1;
510 goto xit;
f54ebdfa
WD
511 }
512 if (file_fat_detectfs() != 0) {
513 debug ("file_fat_detectfs failed\n");
514 }
b0639ca3 515
f54ebdfa
WD
516 /* initialize the array of file names */
517 memset(aufile, 0, sizeof(aufile));
518 aufile[IDX_PREPARE] = AU_PREPARE;
519 aufile[IDX_PREINST] = AU_PREINST;
520 aufile[IDX_FIRMWARE] = AU_FIRMWARE;
521 aufile[IDX_KERNEL] = AU_KERNEL;
522 aufile[IDX_APP] = AU_APP;
523 aufile[IDX_DISK] = AU_DISK;
524 aufile[IDX_POSTINST] = AU_POSTINST;
525 /* initialize the array of flash sizes */
526 memset(ausize, 0, sizeof(ausize));
527 ausize[IDX_FIRMWARE] = (AU_FL_FIRMWARE_ND + 1) - AU_FL_FIRMWARE_ST;
528 ausize[IDX_KERNEL] = (AU_FL_KERNEL_ND + 1) - AU_FL_KERNEL_ST;
529 ausize[IDX_APP] = (AU_FL_APP_ND + 1) - AU_FL_APP_ST;
530 ausize[IDX_DISK] = (AU_FL_DISK_ND + 1) - AU_FL_DISK_ST;
80369866
WD
531 /*
532 * now check whether start and end are defined using environment
533 * variables.
534 */
1d70468b
WD
535 start = -1;
536 end = 0;
80369866
WD
537 env = getenv("firmware_st");
538 if (env != NULL)
539 start = simple_strtoul(env, NULL, 16);
540 env = getenv("firmware_nd");
541 if (env != NULL)
542 end = simple_strtoul(env, NULL, 16);
fbe4b5cb 543 if (start >= 0 && end && end > start) {
80369866 544 ausize[IDX_FIRMWARE] = (end + 1) - start;
fbe4b5cb
WD
545 aufl_layout[0].start = start;
546 aufl_layout[0].end = end;
547 }
1d70468b
WD
548 start = -1;
549 end = 0;
80369866
WD
550 env = getenv("kernel_st");
551 if (env != NULL)
552 start = simple_strtoul(env, NULL, 16);
553 env = getenv("kernel_nd");
554 if (env != NULL)
555 end = simple_strtoul(env, NULL, 16);
fbe4b5cb 556 if (start >= 0 && end && end > start) {
80369866 557 ausize[IDX_KERNEL] = (end + 1) - start;
fbe4b5cb
WD
558 aufl_layout[1].start = start;
559 aufl_layout[1].end = end;
560 }
1d70468b
WD
561 start = -1;
562 end = 0;
80369866
WD
563 env = getenv("app_st");
564 if (env != NULL)
565 start = simple_strtoul(env, NULL, 16);
566 env = getenv("app_nd");
567 if (env != NULL)
568 end = simple_strtoul(env, NULL, 16);
fbe4b5cb 569 if (start >= 0 && end && end > start) {
80369866 570 ausize[IDX_APP] = (end + 1) - start;
fbe4b5cb
WD
571 aufl_layout[2].start = start;
572 aufl_layout[2].end = end;
573 }
1d70468b
WD
574 start = -1;
575 end = 0;
80369866
WD
576 env = getenv("disk_st");
577 if (env != NULL)
578 start = simple_strtoul(env, NULL, 16);
579 env = getenv("disk_nd");
580 if (env != NULL)
581 end = simple_strtoul(env, NULL, 16);
fbe4b5cb 582 if (start >= 0 && end && end > start) {
80369866 583 ausize[IDX_DISK] = (end + 1) - start;
fbe4b5cb
WD
584 aufl_layout[3].start = start;
585 aufl_layout[3].end = end;
586 }
2d5b561e
WD
587 /* make certain that HUSH is runnable */
588 u_boot_hush_start();
80369866
WD
589 /* make sure that we see CTRL-C and save the old state */
590 old_ctrlc = disable_ctrlc(0);
591
f54ebdfa
WD
592 bitmap_first = 0;
593 /* just loop thru all the possible files */
594 for (i = 0; i < AU_MAXFILES; i++) {
fa1399ed 595 /* just read the header */
b97a2a0a 596 sz = file_fat_read(aufile[i], LOAD_ADDR, image_get_header_size ());
fa1399ed 597 debug ("read %s sz %ld hdr %d\n",
b97a2a0a
MB
598 aufile[i], sz, image_get_header_size ());
599 if (sz <= 0 || sz < image_get_header_size ()) {
fa1399ed
WD
600 debug ("%s not found\n", aufile[i]);
601 continue;
602 }
603 if (au_check_header_valid(i, sz) < 0) {
604 debug ("%s header not valid\n", aufile[i]);
605 continue;
606 }
f54ebdfa
WD
607 sz = file_fat_read(aufile[i], LOAD_ADDR, MAX_LOADSZ);
608 debug ("read %s sz %ld hdr %d\n",
b97a2a0a
MB
609 aufile[i], sz, image_get_header_size ());
610 if (sz <= 0 || sz <= image_get_header_size ()) {
f54ebdfa
WD
611 debug ("%s not found\n", aufile[i]);
612 continue;
613 }
fa1399ed
WD
614 if (au_check_cksum_valid(i, sz) < 0) {
615 debug ("%s checksum not valid\n", aufile[i]);
f54ebdfa
WD
616 continue;
617 }
618#ifdef CONFIG_VFD
619 /* now that we have a valid file we can display the */
620 /* bitmap. */
621 if (bitmap_first == 0) {
622 env = getenv("bitmap2");
623 if (env == NULL) {
624 trab_vfd(0);
625 } else {
626 /* not so simple - bitmap2 is supposed to */
627 /* contain the address of the bitmap */
628 env = (char *)simple_strtoul(env, NULL, 16);
629/* NOTE: these are taken from vfd_logo.h. If that file changes then */
630/* these defines MUST also be updated! These may be wrong for bitmap2. */
631#define VFD_LOGO_WIDTH 112
632#define VFD_LOGO_HEIGHT 72
633 /* must call transfer_pic directly */
a63c31cf
WD
634 transfer_pic(3, (unsigned char *)env,
635 VFD_LOGO_HEIGHT, VFD_LOGO_WIDTH);
f54ebdfa
WD
636 }
637 bitmap_first = 1;
638 }
639#endif
640 /* this is really not a good idea, but it's what the */
641 /* customer wants. */
b0639ca3 642 cnt = 0;
80369866 643 got_ctrlc = 0;
f54ebdfa 644 do {
a0ff7f2e 645 res = au_do_update(i, sz);
80369866
WD
646 /* let the user break out of the loop */
647 if (ctrlc() || had_ctrlc()) {
648 clear_ctrlc();
649 if (res < 0)
650 got_ctrlc = 1;
651 break;
652 }
b0639ca3 653 cnt++;
80369866 654#ifdef AU_TEST_ONLY
b0639ca3
WD
655 } while (res < 0 && cnt < 3);
656 if (cnt < 3)
657#else
f54ebdfa 658 } while (res < 0);
b0639ca3 659#endif
80369866
WD
660 /*
661 * it doesn't make sense to update the EEPROM if the
662 * update was interrupted by the user due to errors.
663 */
664 if (got_ctrlc == 0)
665 au_update_eeprom(i);
8a42eac7 666 else
667 /* enable the power switch */
668 *CPLD_VFD_BK &= ~POWER_OFF;
f54ebdfa 669 }
80369866
WD
670 /* restore the old state */
671 disable_ctrlc(old_ctrlc);
a4d2636f
WD
672xit:
673 usb_stop();
674 return res;
f54ebdfa
WD
675}
676#endif /* CONFIG_AUTO_UPDATE */