blob: 28e4c877b538fe0d6dae5746861fa0a9f6823627 [file] [log] [blame]
Andrei Safronovcdb97a62006-12-08 16:23:08 +01001/*
2 * (C) Copyright 2006
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18 * MA 02111-1307 USA
19 */
20#include <common.h>
21#include <command.h>
22#include <malloc.h>
23#include <image.h>
24#include <asm/byteorder.h>
25#include <usb.h>
Grant Likely735dd972007-02-20 09:04:34 +010026#include <part.h>
Andrei Safronovcdb97a62006-12-08 16:23:08 +010027
28#ifdef CFG_HUSH_PARSER
29#include <hush.h>
30#endif
31
32
33#ifdef CONFIG_AUTO_UPDATE
34
35#ifndef CONFIG_USB_OHCI
36#error "must define CONFIG_USB_OHCI"
37#endif
38
39#ifndef CONFIG_USB_STORAGE
40#error "must define CONFIG_USB_STORAGE"
41#endif
42
43#ifndef CFG_HUSH_PARSER
44#error "must define CFG_HUSH_PARSER"
45#endif
46
Jon Loeliger3fe00102007-07-09 18:38:39 -050047#if !defined(CONFIG_CMD_FAT)
Jon Loeligerd39b5742007-07-10 10:48:22 -050048#error "must define CONFIG_CMD_FAT"
Andrei Safronovcdb97a62006-12-08 16:23:08 +010049#endif
50
Andrei Safronovcdb97a62006-12-08 16:23:08 +010051#undef AU_DEBUG
52
53#undef debug
54#ifdef AU_DEBUG
55#define debug(fmt,args...) printf (fmt ,##args)
56#else
57#define debug(fmt,args...)
58#endif /* AU_DEBUG */
59
60/* possible names of files on the USB stick. */
61#define AU_FIRMWARE "u-boot.img"
62#define AU_KERNEL "kernel.img"
Sergei Poselenov489c6962007-02-14 14:30:28 +030063#define AU_ROOTFS "rootfs.img"
Andrei Safronovcdb97a62006-12-08 16:23:08 +010064
Wolfgang Denk82e52362006-12-22 10:30:26 +010065struct flash_layout {
Andrei Safronovcdb97a62006-12-08 16:23:08 +010066 long start;
67 long end;
68};
69
70/* layout of the FLASH. ST = start address, ND = end address. */
71#define AU_FL_FIRMWARE_ST 0xfC000000
72#define AU_FL_FIRMWARE_ND 0xfC03FFFF
73#define AU_FL_KERNEL_ST 0xfC0C0000
74#define AU_FL_KERNEL_ND 0xfC1BFFFF
Sergei Poselenov489c6962007-02-14 14:30:28 +030075#define AU_FL_ROOTFS_ST 0xFC1C0000
76#define AU_FL_ROOTFS_ND 0xFCFBFFFF
Andrei Safronovcdb97a62006-12-08 16:23:08 +010077
78static int au_usb_stor_curr_dev; /* current device */
79
80/* index of each file in the following arrays */
81#define IDX_FIRMWARE 0
82#define IDX_KERNEL 1
Sergei Poselenov489c6962007-02-14 14:30:28 +030083#define IDX_ROOTFS 2
Andrei Safronovcdb97a62006-12-08 16:23:08 +010084
85/* max. number of files which could interest us */
Sergei Poselenov489c6962007-02-14 14:30:28 +030086#define AU_MAXFILES 3
Andrei Safronovcdb97a62006-12-08 16:23:08 +010087
88/* pointers to file names */
Sergei Poselenov489c6962007-02-14 14:30:28 +030089char *aufile[AU_MAXFILES] = {
90 AU_FIRMWARE,
91 AU_KERNEL,
92 AU_ROOTFS
93};
Andrei Safronovcdb97a62006-12-08 16:23:08 +010094
95/* sizes of flash areas for each file */
Sergei Poselenov489c6962007-02-14 14:30:28 +030096long ausize[AU_MAXFILES] = {
97 (AU_FL_FIRMWARE_ND + 1) - AU_FL_FIRMWARE_ST,
Wolfgang Denkf5fcc3c2007-02-19 23:09:51 +010098 (AU_FL_KERNEL_ND + 1) - AU_FL_KERNEL_ST,
99 (AU_FL_ROOTFS_ND + 1) - AU_FL_ROOTFS_ST,
Sergei Poselenov489c6962007-02-14 14:30:28 +0300100};
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100101
102/* array of flash areas start and end addresses */
Sergei Poselenov489c6962007-02-14 14:30:28 +0300103struct flash_layout aufl_layout[AU_MAXFILES] = {
Wolfgang Denkf5fcc3c2007-02-19 23:09:51 +0100104 { AU_FL_FIRMWARE_ST, AU_FL_FIRMWARE_ND, },
105 { AU_FL_KERNEL_ST, AU_FL_KERNEL_ND, },
106 { AU_FL_ROOTFS_ST, AU_FL_ROOTFS_ND, },
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100107};
108
Sergei Poselenov638dd142007-02-27 12:40:16 +0300109ulong totsize;
110
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100111/* where to load files into memory */
112#define LOAD_ADDR ((unsigned char *)0x00200000)
113
Wolfgang Denkf5fcc3c2007-02-19 23:09:51 +0100114/* the root file system is the largest image */
Sergei Poselenov489c6962007-02-14 14:30:28 +0300115#define MAX_LOADSZ ausize[IDX_ROOTFS]
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100116
117/*i2c address of the keypad status*/
118#define I2C_PSOC_KEYPAD_ADDR 0x53
119
120/* keypad mask */
Wolfgang Denk787fa152007-01-10 01:28:39 +0100121#define KEYPAD_ROW 2
122#define KEYPAD_COL 2
123#define KEYPAD_MASK_LO ((1<<(KEYPAD_COL-1+(KEYPAD_ROW*3-3)))&0xFF)
124#define KEYPAD_MASK_HI ((1<<(KEYPAD_COL-1+(KEYPAD_ROW*3-3)))>>8)
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100125
126/* externals */
127extern int fat_register_device(block_dev_desc_t *, int);
128extern int file_fat_detectfs(void);
129extern long file_fat_read(const char *, void *, unsigned long);
130extern int i2c_read (unsigned char, unsigned int, int , unsigned char* , int);
131extern int flash_sect_erase(ulong, ulong);
132extern int flash_sect_protect (int, ulong, ulong);
133extern int flash_write (char *, ulong, ulong);
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100134extern int u_boot_hush_start(void);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300135#ifdef CONFIG_PROGRESSBAR
136extern void show_progress(int, int);
137extern void lcd_puts (char *);
138extern void lcd_enable(void);
139#endif
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100140
Wolfgang Denk82e52362006-12-22 10:30:26 +0100141int au_check_cksum_valid(int idx, long nbytes)
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100142{
143 image_header_t *hdr;
144 unsigned long checksum;
145
146 hdr = (image_header_t *)LOAD_ADDR;
147
Wolfgang Denk82e52362006-12-22 10:30:26 +0100148 if (nbytes != (sizeof(*hdr) + ntohl(hdr->ih_size))) {
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100149 printf ("Image %s bad total SIZE\n", aufile[idx]);
150 return -1;
151 }
152 /* check the data CRC */
153 checksum = ntohl(hdr->ih_dcrc);
154
Wolfgang Denk82e52362006-12-22 10:30:26 +0100155 if (crc32 (0, (uchar *)(LOAD_ADDR + sizeof(*hdr)), ntohl(hdr->ih_size)) != checksum) {
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100156 printf ("Image %s bad data checksum\n", aufile[idx]);
157 return -1;
158 }
159 return 0;
160}
161
Wolfgang Denk82e52362006-12-22 10:30:26 +0100162int au_check_header_valid(int idx, long nbytes)
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100163{
164 image_header_t *hdr;
Sergei Poselenove3445682007-02-27 20:15:30 +0300165 unsigned long checksum, fsize;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100166
167 hdr = (image_header_t *)LOAD_ADDR;
168 /* check the easy ones first */
169#undef CHECK_VALID_DEBUG
170#ifdef CHECK_VALID_DEBUG
171 printf("magic %#x %#x ", ntohl(hdr->ih_magic), IH_MAGIC);
172 printf("arch %#x %#x ", hdr->ih_arch, IH_CPU_ARM);
173 printf("size %#x %#lx ", ntohl(hdr->ih_size), nbytes);
174 printf("type %#x %#x ", hdr->ih_type, IH_TYPE_KERNEL);
175#endif
Wolfgang Denk82e52362006-12-22 10:30:26 +0100176 if (nbytes < sizeof(*hdr)) {
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100177 printf ("Image %s bad header SIZE\n", aufile[idx]);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300178 ausize[idx] = 0;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100179 return -1;
180 }
Wolfgang Denk82e52362006-12-22 10:30:26 +0100181 if (ntohl(hdr->ih_magic) != IH_MAGIC || hdr->ih_arch != IH_CPU_PPC) {
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100182 printf ("Image %s bad MAGIC or ARCH\n", aufile[idx]);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300183 ausize[idx] = 0;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100184 return -1;
185 }
186 /* check the hdr CRC */
187 checksum = ntohl(hdr->ih_hcrc);
188 hdr->ih_hcrc = 0;
189
190 if (crc32 (0, (uchar *)hdr, sizeof(*hdr)) != checksum) {
191 printf ("Image %s bad header checksum\n", aufile[idx]);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300192 ausize[idx] = 0;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100193 return -1;
194 }
195 hdr->ih_hcrc = htonl(checksum);
196 /* check the type - could do this all in one gigantic if() */
197 if ((idx == IDX_FIRMWARE) && (hdr->ih_type != IH_TYPE_FIRMWARE)) {
198 printf ("Image %s wrong type\n", aufile[idx]);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300199 ausize[idx] = 0;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100200 return -1;
201 }
202 if ((idx == IDX_KERNEL) && (hdr->ih_type != IH_TYPE_KERNEL)) {
203 printf ("Image %s wrong type\n", aufile[idx]);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300204 ausize[idx] = 0;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100205 return -1;
206 }
Wolfgang Denkf5fcc3c2007-02-19 23:09:51 +0100207 if ((idx == IDX_ROOTFS) &&
Sergei Poselenove3445682007-02-27 20:15:30 +0300208 ( (hdr->ih_type != IH_TYPE_RAMDISK) && (hdr->ih_type != IH_TYPE_FILESYSTEM) )
Wolfgang Denkf5fcc3c2007-02-19 23:09:51 +0100209 ) {
Sergei Poselenov489c6962007-02-14 14:30:28 +0300210 printf ("Image %s wrong type\n", aufile[idx]);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300211 ausize[idx] = 0;
Sergei Poselenov489c6962007-02-14 14:30:28 +0300212 return -1;
213 }
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100214 /* recycle checksum */
215 checksum = ntohl(hdr->ih_size);
Sergei Poselenove3445682007-02-27 20:15:30 +0300216
217 fsize = checksum + sizeof(*hdr);
218 /* for kernel and ramdisk the image header must also fit into flash */
219 if (idx == IDX_KERNEL || hdr->ih_type == IH_TYPE_RAMDISK)
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100220 checksum += sizeof(*hdr);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300221
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100222 /* check the size does not exceed space in flash. HUSH scripts */
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100223 if ((ausize[idx] != 0) && (ausize[idx] < checksum)) {
224 printf ("Image %s is bigger than FLASH\n", aufile[idx]);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300225 ausize[idx] = 0;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100226 return -1;
227 }
Sergei Poselenov638dd142007-02-27 12:40:16 +0300228 /* Update with the real filesize */
Sergei Poselenove3445682007-02-27 20:15:30 +0300229 ausize[idx] = fsize;
Sergei Poselenov638dd142007-02-27 12:40:16 +0300230
231 return checksum; /* return size to be written to flash */
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100232}
233
Wolfgang Denk82e52362006-12-22 10:30:26 +0100234int au_do_update(int idx, long sz)
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100235{
236 image_header_t *hdr;
237 char *addr;
238 long start, end;
239 int off, rc;
240 uint nbytes;
241
242 hdr = (image_header_t *)LOAD_ADDR;
243
244 /* execute a script */
245 if (hdr->ih_type == IH_TYPE_SCRIPT) {
246 addr = (char *)((char *)hdr + sizeof(*hdr));
247 /* stick a NULL at the end of the script, otherwise */
248 /* parse_string_outer() runs off the end. */
249 addr[ntohl(hdr->ih_size)] = 0;
250 addr += 8;
251 parse_string_outer(addr, FLAG_PARSE_SEMICOLON);
252 return 0;
253 }
254
255 start = aufl_layout[idx].start;
256 end = aufl_layout[idx].end;
257
258 /* unprotect the address range */
259 /* this assumes that ONLY the firmware is protected! */
260 if (idx == IDX_FIRMWARE) {
261#undef AU_UPDATE_TEST
262#ifdef AU_UPDATE_TEST
263 /* erase it where Linux goes */
264 start = aufl_layout[1].start;
265 end = aufl_layout[1].end;
266#endif
267 flash_sect_protect(0, start, end);
268 }
269
270 /*
271 * erase the address range.
272 */
273 debug ("flash_sect_erase(%lx, %lx);\n", start, end);
274 flash_sect_erase(start, end);
275 wait_ms(100);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300276#ifdef CONFIG_PROGRESSBAR
277 show_progress(end - start, totsize);
278#endif
279
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100280 /* strip the header - except for the kernel and ramdisk */
Sergei Poselenov489c6962007-02-14 14:30:28 +0300281 if (hdr->ih_type == IH_TYPE_KERNEL || hdr->ih_type == IH_TYPE_RAMDISK) {
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100282 addr = (char *)hdr;
283 off = sizeof(*hdr);
284 nbytes = sizeof(*hdr) + ntohl(hdr->ih_size);
285 } else {
286 addr = (char *)((char *)hdr + sizeof(*hdr));
287#ifdef AU_UPDATE_TEST
288 /* copy it to where Linux goes */
289 if (idx == IDX_FIRMWARE)
290 start = aufl_layout[1].start;
291#endif
292 off = 0;
293 nbytes = ntohl(hdr->ih_size);
294 }
295
296 /* copy the data from RAM to FLASH */
297 debug ("flash_write(%p, %lx %x)\n", addr, start, nbytes);
298 rc = flash_write(addr, start, nbytes);
299 if (rc != 0) {
300 printf("Flashing failed due to error %d\n", rc);
301 return -1;
302 }
303
Sergei Poselenov638dd142007-02-27 12:40:16 +0300304#ifdef CONFIG_PROGRESSBAR
305 show_progress(nbytes, totsize);
306#endif
307
Wolfgang Denkf5fcc3c2007-02-19 23:09:51 +0100308 /* check the data CRC of the copy */
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100309 if (crc32 (0, (uchar *)(start + off), ntohl(hdr->ih_size)) != ntohl(hdr->ih_dcrc)) {
Wolfgang Denkf5fcc3c2007-02-19 23:09:51 +0100310 printf ("Image %s Bad Data Checksum after COPY\n", aufile[idx]);
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100311 return -1;
312 }
313
314 /* protect the address range */
315 /* this assumes that ONLY the firmware is protected! */
316 if (idx == IDX_FIRMWARE)
317 flash_sect_protect(1, start, end);
318 return 0;
319}
320
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100321/*
322 * this is called from board_init() after the hardware has been set up
323 * and is usable. That seems like a good time to do this.
324 * Right now the return value is ignored.
325 */
Wolfgang Denk82e52362006-12-22 10:30:26 +0100326int do_auto_update(void)
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100327{
328 block_dev_desc_t *stor_dev;
329 long sz;
Sergei Poselenov638dd142007-02-27 12:40:16 +0300330 int i, res = 0, bitmap_first, cnt, old_ctrlc, got_ctrlc;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100331 char *env;
332 long start, end;
Wolfgang Denka4d26362007-08-12 15:11:38 +0200333
334#if 0 /* disable key-press detection to speed up boot-up time */
Sergei Poselenov489c6962007-02-14 14:30:28 +0300335 uchar keypad_status1[2] = {0,0}, keypad_status2[2] = {0,0};
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100336
337 /*
338 * Read keypad status
339 */
340 i2c_read(I2C_PSOC_KEYPAD_ADDR, 0, 0, keypad_status1, 2);
341 wait_ms(500);
342 i2c_read(I2C_PSOC_KEYPAD_ADDR, 0, 0, keypad_status2, 2);
343
344 /*
345 * Check keypad
346 */
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100347 if ( !(keypad_status1[1] & KEYPAD_MASK_LO) ||
348 (keypad_status1[1] != keypad_status2[1])) {
349 return 0;
350 }
Sergei Poselenov638dd142007-02-27 12:40:16 +0300351
Wolfgang Denka4d26362007-08-12 15:11:38 +0200352#endif
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100353 au_usb_stor_curr_dev = -1;
354 /* start USB */
355 if (usb_stop() < 0) {
356 debug ("usb_stop failed\n");
357 return -1;
358 }
359 if (usb_init() < 0) {
360 debug ("usb_init failed\n");
361 return -1;
362 }
363 /*
364 * check whether a storage device is attached (assume that it's
365 * a USB memory stick, since nothing else should be attached).
366 */
367 au_usb_stor_curr_dev = usb_stor_scan(0);
368 if (au_usb_stor_curr_dev == -1) {
369 debug ("No device found. Not initialized?\n");
Wolfgang Denka4d26362007-08-12 15:11:38 +0200370 res = -1;
371 goto xit;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100372 }
373 /* check whether it has a partition table */
374 stor_dev = get_dev("usb", 0);
375 if (stor_dev == NULL) {
376 debug ("uknown device type\n");
Wolfgang Denka4d26362007-08-12 15:11:38 +0200377 res = -1;
378 goto xit;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100379 }
380 if (fat_register_device(stor_dev, 1) != 0) {
381 debug ("Unable to use USB %d:%d for fatls\n",
382 au_usb_stor_curr_dev, 1);
Wolfgang Denka4d26362007-08-12 15:11:38 +0200383 res = -1;
384 goto xit;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100385 }
386 if (file_fat_detectfs() != 0) {
387 debug ("file_fat_detectfs failed\n");
388 }
389
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100390 /*
391 * now check whether start and end are defined using environment
392 * variables.
393 */
394 start = -1;
395 end = 0;
396 env = getenv("firmware_st");
397 if (env != NULL)
398 start = simple_strtoul(env, NULL, 16);
399 env = getenv("firmware_nd");
400 if (env != NULL)
401 end = simple_strtoul(env, NULL, 16);
402 if (start >= 0 && end && end > start) {
403 ausize[IDX_FIRMWARE] = (end + 1) - start;
Sergei Poselenov489c6962007-02-14 14:30:28 +0300404 aufl_layout[IDX_FIRMWARE].start = start;
405 aufl_layout[IDX_FIRMWARE].end = end;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100406 }
407 start = -1;
408 end = 0;
409 env = getenv("kernel_st");
410 if (env != NULL)
411 start = simple_strtoul(env, NULL, 16);
412 env = getenv("kernel_nd");
413 if (env != NULL)
414 end = simple_strtoul(env, NULL, 16);
415 if (start >= 0 && end && end > start) {
416 ausize[IDX_KERNEL] = (end + 1) - start;
Sergei Poselenov489c6962007-02-14 14:30:28 +0300417 aufl_layout[IDX_KERNEL].start = start;
418 aufl_layout[IDX_KERNEL].end = end;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100419 }
Sergei Poselenov489c6962007-02-14 14:30:28 +0300420 start = -1;
421 end = 0;
422 env = getenv("rootfs_st");
423 if (env != NULL)
424 start = simple_strtoul(env, NULL, 16);
425 env = getenv("rootfs_nd");
426 if (env != NULL)
427 end = simple_strtoul(env, NULL, 16);
428 if (start >= 0 && end && end > start) {
429 ausize[IDX_ROOTFS] = (end + 1) - start;
430 aufl_layout[IDX_ROOTFS].start = start;
431 aufl_layout[IDX_ROOTFS].end = end;
432 }
433
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100434 /* make certain that HUSH is runnable */
435 u_boot_hush_start();
436 /* make sure that we see CTRL-C and save the old state */
437 old_ctrlc = disable_ctrlc(0);
438
439 bitmap_first = 0;
Sergei Poselenov638dd142007-02-27 12:40:16 +0300440
Wolfgang Denk74357112007-02-27 14:26:04 +0100441 /* validate the images first */
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100442 for (i = 0; i < AU_MAXFILES; i++) {
Sergei Poselenov638dd142007-02-27 12:40:16 +0300443 ulong imsize;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100444 /* just read the header */
445 sz = file_fat_read(aufile[i], LOAD_ADDR, sizeof(image_header_t));
446 debug ("read %s sz %ld hdr %d\n",
447 aufile[i], sz, sizeof(image_header_t));
448 if (sz <= 0 || sz < sizeof(image_header_t)) {
449 debug ("%s not found\n", aufile[i]);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300450 ausize[i] = 0;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100451 continue;
452 }
Sergei Poselenov638dd142007-02-27 12:40:16 +0300453 /* au_check_header_valid() updates ausize[] */
454 if ((imsize = au_check_header_valid(i, sz)) < 0) {
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100455 debug ("%s header not valid\n", aufile[i]);
456 continue;
457 }
Sergei Poselenov638dd142007-02-27 12:40:16 +0300458 /* totsize accounts for image size and flash erase size */
Wolfgang Denk74357112007-02-27 14:26:04 +0100459 totsize += (imsize + (aufl_layout[i].end - aufl_layout[i].start));
Sergei Poselenov638dd142007-02-27 12:40:16 +0300460 }
461
462#ifdef CONFIG_PROGRESSBAR
463 if (totsize) {
464 lcd_puts(" Update in progress\n");
465 lcd_enable();
466 }
467#endif
468
469 /* just loop thru all the possible files */
470 for (i = 0; i < AU_MAXFILES && totsize; i++) {
471 if (!ausize[i]) {
472 continue;
473 }
474 sz = file_fat_read(aufile[i], LOAD_ADDR, ausize[i]);
475
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100476 debug ("read %s sz %ld hdr %d\n",
477 aufile[i], sz, sizeof(image_header_t));
Sergei Poselenov638dd142007-02-27 12:40:16 +0300478
479 if (sz != ausize[i]) {
480 printf ("%s: size %d read %d?\n", aufile[i], ausize[i], sz);
Wolfgang Denk74357112007-02-27 14:26:04 +0100481 continue;
482 }
Sergei Poselenov638dd142007-02-27 12:40:16 +0300483
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100484 if (sz <= 0 || sz <= sizeof(image_header_t)) {
485 debug ("%s not found\n", aufile[i]);
486 continue;
487 }
488 if (au_check_cksum_valid(i, sz) < 0) {
489 debug ("%s checksum not valid\n", aufile[i]);
490 continue;
491 }
492 /* this is really not a good idea, but it's what the */
493 /* customer wants. */
494 cnt = 0;
495 got_ctrlc = 0;
496 do {
497 res = au_do_update(i, sz);
498 /* let the user break out of the loop */
499 if (ctrlc() || had_ctrlc()) {
500 clear_ctrlc();
501 if (res < 0)
502 got_ctrlc = 1;
503 break;
504 }
505 cnt++;
506#ifdef AU_TEST_ONLY
Sergei Poselenov489c6962007-02-14 14:30:28 +0300507 } while (res < 0 && cnt < (AU_MAXFILES + 1));
508 if (cnt < (AU_MAXFILES + 1))
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100509#else
510 } while (res < 0);
511#endif
512 }
Wolfgang Denka4d26362007-08-12 15:11:38 +0200513
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100514 /* restore the old state */
515 disable_ctrlc(old_ctrlc);
Sergei Poselenov638dd142007-02-27 12:40:16 +0300516#ifdef CONFIG_PROGRESSBAR
517 if (totsize) {
518 if (!res) {
519 lcd_puts("\n Update completed\n");
520 } else {
521 lcd_puts("\n Update error\n");
522 }
523 lcd_enable();
524 }
525#endif
Wolfgang Denka4d26362007-08-12 15:11:38 +0200526 xit:
527 usb_stop();
528 return res;
Andrei Safronovcdb97a62006-12-08 16:23:08 +0100529}
530#endif /* CONFIG_AUTO_UPDATE */