auto_update.c 17.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
/*
 * (C) Copyright 2003
 * Gary Jennejohn, DENX Software Engineering, gj@denx.de.
 *
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307 USA
 */

#include <common.h>
#include <command.h>
#include <malloc.h>
#include <image.h>
#include <asm/byteorder.h>
#include <usb.h>

#ifdef CFG_HUSH_PARSER
#include <hush.h>
#endif

#ifdef CONFIG_AUTO_UPDATE

#ifndef CONFIG_USB_OHCI
#error "must define CONFIG_USB_OHCI"
#endif

#ifndef CONFIG_USB_STORAGE
#error "must define CONFIG_USB_STORAGE"
#endif

#ifndef CFG_HUSH_PARSER
#error "must define CFG_HUSH_PARSER"
#endif

#if !(CONFIG_COMMANDS & CFG_CMD_FAT)
#error "must define CFG_CMD_FAT"
#endif

/*
 * Check whether a USB memory stick is plugged in.
 * If one is found:
56 57 58 59 60 61 62 63 64 65 66 67 68 69
 *	1) if prepare.img ist found load it into memory. If it is
 *		valid then run it.
 *	2) if preinst.img is found load it into memory. If it is
 *		valid then run it. Update the EEPROM.
 *	3) if firmware.img is found load it into memory. If it is valid,
 *		burn it into FLASH and update the EEPROM.
 *	4) if kernel.img is found load it into memory. If it is valid,
 *		burn it into FLASH and update the EEPROM.
 *	5) if app.img is found load it into memory. If it is valid,
 *		burn it into FLASH and update the EEPROM.
 *	6) if disk.img is found load it into memory. If it is valid,
 *		burn it into FLASH and update the EEPROM.
 *	7) if postinst.img is found load it into memory. If it is
 *		valid then run it. Update the EEPROM.
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
 */

#undef AU_DEBUG

#undef debug
#ifdef	AU_DEBUG
#define debug(fmt,args...)	printf (fmt ,##args)
#else
#define debug(fmt,args...)
#endif	/* AU_DEBUG */

/* possible names of files on the USB stick. */
#define AU_PREPARE	"prepare.img"
#define AU_PREINST	"preinst.img"
#define AU_FIRMWARE	"firmware.img"
#define AU_KERNEL	"kernel.img"
#define AU_APP		"app.img"
#define AU_DISK		"disk.img"
#define AU_POSTINST	"postinst.img"

90 91 92 93 94 95
struct flash_layout
{
	long start;
	long end;
};

96
/* layout of the FLASH. ST = start address, ND = end address. */
97
#ifndef CONFIG_FLASH_8MB			/* 16 MB Flash, 32 MB RAM */
98 99 100 101 102 103 104 105 106 107
#define AU_FL_FIRMWARE_ST	0x00000000
#define AU_FL_FIRMWARE_ND	0x0009FFFF
#define AU_FL_VFD_ST		0x000A0000
#define AU_FL_VFD_ND		0x000BFFFF
#define AU_FL_KERNEL_ST		0x000C0000
#define AU_FL_KERNEL_ND		0x001BFFFF
#define AU_FL_APP_ST		0x001C0000
#define AU_FL_APP_ND		0x005BFFFF
#define AU_FL_DISK_ST		0x005C0000
#define AU_FL_DISK_ND		0x00FFFFFF
108
#else						/*  8 MB Flash, 32 MB RAM */
109
#define AU_FL_FIRMWARE_ST	0x00000000
110 111 112 113 114 115
#define AU_FL_FIRMWARE_ND	0x0005FFFF
#define AU_FL_KERNEL_ST		0x00060000
#define AU_FL_KERNEL_ND		0x0013FFFF
#define AU_FL_APP_ST		0x00140000
#define AU_FL_APP_ND		0x0067FFFF
#define AU_FL_DISK_ST		0x00680000
116 117 118
#define AU_FL_DISK_ND		0x007DFFFF
#define AU_FL_VFD_ST		0x007E0000
#define AU_FL_VFD_ND		0x007FFFFF
119
#endif	/* CONFIG_FLASH_8MB */
120 121 122 123

/* a structure with the offsets to values in the EEPROM */
struct eeprom_layout
{
124 125 126
	int time;
	int size;
	int dcrc;
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
};

/* layout of the EEPROM - offset from the start. All entries are 32 bit. */
#define AU_EEPROM_TIME_PREINST	64
#define AU_EEPROM_SIZE_PREINST	68
#define AU_EEPROM_DCRC_PREINST	72
#define AU_EEPROM_TIME_FIRMWARE	76
#define AU_EEPROM_SIZE_FIRMWARE	80
#define AU_EEPROM_DCRC_FIRMWARE	84
#define AU_EEPROM_TIME_KERNEL	88
#define AU_EEPROM_SIZE_KERNEL	92
#define AU_EEPROM_DCRC_KERNEL	96
#define AU_EEPROM_TIME_APP	100
#define AU_EEPROM_SIZE_APP	104
#define AU_EEPROM_DCRC_APP	108
#define AU_EEPROM_TIME_DISK	112
#define AU_EEPROM_SIZE_DISK	116
#define AU_EEPROM_DCRC_DISK	120
#define AU_EEPROM_TIME_POSTINST 124
#define AU_EEPROM_SIZE_POSTINST 128
#define AU_EEPROM_DCRC_POSTINST 132

static int au_usb_stor_curr_dev; /* current device */
150 151 152 153 154 155 156 157 158

/* index of each file in the following arrays */
#define IDX_PREPARE	0
#define IDX_PREINST	1
#define IDX_FIRMWARE	2
#define IDX_KERNEL	3
#define IDX_APP		4
#define IDX_DISK	5
#define IDX_POSTINST	6
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
/* max. number of files which could interest us */
#define AU_MAXFILES 7
/* pointers to file names */
char *aufile[AU_MAXFILES];
/* sizes of flash areas for each file */
long ausize[AU_MAXFILES];
/* offsets into the EEEPROM */
struct eeprom_layout auee_off[AU_MAXFILES] = { \
	{0}, \
	{AU_EEPROM_TIME_PREINST, AU_EEPROM_SIZE_PREINST, AU_EEPROM_DCRC_PREINST,}, \
	{AU_EEPROM_TIME_FIRMWARE, AU_EEPROM_SIZE_FIRMWARE, AU_EEPROM_DCRC_FIRMWARE,}, \
	{AU_EEPROM_TIME_KERNEL, AU_EEPROM_SIZE_KERNEL, AU_EEPROM_DCRC_KERNEL,}, \
	{AU_EEPROM_TIME_APP, AU_EEPROM_SIZE_APP, AU_EEPROM_DCRC_APP,}, \
	{AU_EEPROM_TIME_DISK, AU_EEPROM_SIZE_DISK, AU_EEPROM_DCRC_DISK,}, \
	{AU_EEPROM_TIME_POSTINST, AU_EEPROM_SIZE_POSTINST, AU_EEPROM_DCRC_POSTINST,} \
	};
175 176 177 178 179 180 181 182 183 184
/* array of flash areas start and end addresses */
struct flash_layout aufl_layout[AU_MAXFILES - 3] = { \
	{AU_FL_FIRMWARE_ST, AU_FL_FIRMWARE_ND,}, \
	{AU_FL_KERNEL_ST, AU_FL_KERNEL_ND,}, \
	{AU_FL_APP_ST, AU_FL_APP_ND,}, \
	{AU_FL_DISK_ST, AU_FL_DISK_ND,}, \
};
/* convert the index into aufile[] to an index into aufl_layout[] */
#define FIDX_TO_LIDX(idx) ((idx) - 2)

185
/* where to load files into memory */
186 187 188
#define LOAD_ADDR ((unsigned char *)0x0C100100)
/* where to build strings in memory - 256 bytes should be enough */
#define STRING_ADDR ((char *)0x0C100000)
189 190
/* the app is the largest image */
#define MAX_LOADSZ ausize[IDX_APP]
191 192 193 194 195 196 197 198 199 200 201

/* externals */
extern int fat_register_device(block_dev_desc_t *, int);
extern int file_fat_detectfs(void);
extern long file_fat_read(const char *, void *, unsigned long);
extern int i2c_read (unsigned char, unsigned int, int , unsigned char* , int);
extern int i2c_write (uchar, uint, int , uchar* , int);
#ifdef CONFIG_VFD
extern int trab_vfd (ulong);
extern int transfer_pic(unsigned char, unsigned char *, int, int);
#endif
202 203 204
/* change char* to void* to shutup the compiler */
extern int i2c_write_multiple (uchar, uint, int, void *, int);
extern int i2c_read_multiple (uchar, uint, int, void *, int);
W
wdenk 已提交
205
extern block_dev_desc_t *get_dev (char*, int);
206 207 208 209 210 211 212 213 214 215

int
au_check_valid(int idx, long nbytes)
{
	image_header_t *hdr;
	unsigned long checksum;
	unsigned char buf[4];

	hdr = (image_header_t *)LOAD_ADDR;
	/* check the easy ones first */
216
#undef CHECK_VALID_DEBUG
217 218 219 220 221 222 223
#ifdef CHECK_VALID_DEBUG
	printf("magic %#x %#x ", ntohl(hdr->ih_magic), IH_MAGIC);
	printf("arch %#x %#x ", hdr->ih_arch, IH_CPU_ARM);
	printf("size %#x %#lx ", ntohl(hdr->ih_size), nbytes);
	printf("type %#x %#x ", hdr->ih_type, IH_TYPE_KERNEL);
#endif
	if (ntohl(hdr->ih_magic) != IH_MAGIC ||
W
wdenk 已提交
224
	    hdr->ih_arch != IH_CPU_ARM ||
225
	    nbytes != (sizeof(*hdr) + ntohl(hdr->ih_size)))
W
wdenk 已提交
226 227 228
	{
		printf ("Image %s bad MAGIC or ARCH or SIZE\n", aufile[idx]);
		return -1;
229 230 231 232 233 234
	}
	/* check the hdr CRC */
	checksum = ntohl(hdr->ih_hcrc);
	hdr->ih_hcrc = 0;

	if (crc32 (0, (char *)hdr, sizeof(*hdr)) != checksum) {
W
wdenk 已提交
235 236
		printf ("Image %s bad header checksum\n", aufile[idx]);
		return -1;
237
	}
W
wdenk 已提交
238
	hdr->ih_hcrc = htonl(checksum);
239 240 241 242 243 244
	/* check the data CRC */
	checksum = ntohl(hdr->ih_dcrc);

	if (crc32 (0, (char *)(LOAD_ADDR + sizeof(*hdr)), ntohl(hdr->ih_size))
		!= checksum)
	{
W
wdenk 已提交
245 246
		printf ("Image %s bad data checksum\n", aufile[idx]);
		return -1;
247 248 249
	}
	/* check the type - could do this all in one gigantic if() */
	if ((idx == IDX_FIRMWARE) && (hdr->ih_type != IH_TYPE_FIRMWARE)) {
W
wdenk 已提交
250 251
		printf ("Image %s wrong type\n", aufile[idx]);
		return -1;
252 253
	}
	if ((idx == IDX_KERNEL) && (hdr->ih_type != IH_TYPE_KERNEL)) {
W
wdenk 已提交
254 255
		printf ("Image %s wrong type\n", aufile[idx]);
		return -1;
256
	}
257 258 259 260 261
	if ((idx == IDX_DISK) && (hdr->ih_type != IH_TYPE_FILESYSTEM)) {
		printf ("Image %s wrong type\n", aufile[idx]);
		return -1;
	}
	if ((idx == IDX_APP) && (hdr->ih_type != IH_TYPE_RAMDISK)) {
W
wdenk 已提交
262 263
		printf ("Image %s wrong type\n", aufile[idx]);
		return -1;
264 265 266 267
	}
	if ((idx == IDX_PREPARE || idx == IDX_PREINST || idx == IDX_POSTINST)
		&& (hdr->ih_type != IH_TYPE_SCRIPT))
	{
W
wdenk 已提交
268 269
		printf ("Image %s wrong type\n", aufile[idx]);
		return -1;
270 271 272 273
	}
	/* special case for prepare.img */
	if (idx == IDX_PREPARE)
		return 0;
274 275 276 277 278 279 280 281
	/* recycle checksum */
	checksum = ntohl(hdr->ih_size);
	/* for kernel and app the image header must also fit into flash */
	if (idx != IDX_DISK)
		checksum += sizeof(*hdr);
	/* check the size does not exceed space in flash. HUSH scripts */
	/* all have ausize[] set to 0 */
	if ((ausize[idx] != 0) && (ausize[idx] < checksum)) {
W
wdenk 已提交
282 283
		printf ("Image %s is bigger than FLASH\n", aufile[idx]);
		return -1;
284 285 286 287 288
	}
	/* check the time stamp from the EEPROM */
	/* read it in */
	i2c_read_multiple(0x54, auee_off[idx].time, 1, buf, sizeof(buf));
#ifdef CHECK_VALID_DEBUG
W
wdenk 已提交
289 290 291 292
	printf ("buf[0] %#x buf[1] %#x buf[2] %#x buf[3] %#x "
		"as int %#x time %#x\n",
		buf[0], buf[1], buf[2], buf[3],
		*((unsigned int *)buf), ntohl(hdr->ih_time));
293 294 295
#endif
	/* check it */
	if (*((unsigned int *)buf) >= ntohl(hdr->ih_time)) {
W
wdenk 已提交
296 297
		printf ("Image %s is too old\n", aufile[idx]);
		return -1;
298 299 300 301 302 303 304 305 306 307
	}

	return 0;
}

/* power control defines */
#define CPLD_VFD_BK ((volatile char *)0x04038002)
#define POWER_OFF (1 << 1)

int
W
wdenk 已提交
308
au_do_update(int idx, long sz, int repeat)
309 310 311
{
	image_header_t *hdr;
	char *addr;
312 313 314 315
	long start, end;
	char *strbuf = STRING_ADDR;
	int off;
	uint nbytes;
316 317

	hdr = (image_header_t *)LOAD_ADDR;
318

319 320
	/* disable the power switch */
	*CPLD_VFD_BK |= POWER_OFF;
321

322 323
	/* execute a script */
	if (hdr->ih_type == IH_TYPE_SCRIPT) {
W
wdenk 已提交
324 325 326 327 328 329
		addr = (char *)((char *)hdr + sizeof(*hdr));
		/* stick a NULL at the end of the script, otherwise */
		/* parse_string_outer() runs off the end. */
		addr[ntohl(hdr->ih_size)] = 0;
		addr += 8;
		parse_string_outer(addr, FLAG_PARSE_SEMICOLON);
330 331
		return 0;
	}
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346

	start = aufl_layout[FIDX_TO_LIDX(idx)].start;
	end = aufl_layout[FIDX_TO_LIDX(idx)].end;

	/* unprotect the address range */
	/* this assumes that ONLY the firmware is protected! */
	if (idx == IDX_FIRMWARE) {
#undef AU_UPDATE_TEST
#ifdef AU_UPDATE_TEST
		/* erase it where Linux goes */
		start = aufl_layout[1].start;
		end = aufl_layout[1].end;
#endif
		debug ("protect off %lx %lx\n", start, end);
		sprintf(strbuf, "protect off %lx %lx\n", start, end);
W
wdenk 已提交
347
		parse_string_outer(strbuf, FLAG_PARSE_SEMICOLON);
348 349
	}

W
wdenk 已提交
350 351 352 353 354 355 356
	/*
	 * erase the address range. Multiple erases seem to cause
	 * problems.
	 */
	if (repeat == 0) {
		debug ("erase %lx %lx\n", start, end);
		sprintf(strbuf, "erase %lx %lx\n", start, end);
W
wdenk 已提交
357
		parse_string_outer(strbuf, FLAG_PARSE_SEMICOLON);
W
wdenk 已提交
358 359
	}
	wait_ms(100);
W
wdenk 已提交
360 361
	/* strip the header - except for the kernel and app */
	if (idx == IDX_FIRMWARE || idx == IDX_DISK) {
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
		addr = (char *)((char *)hdr + sizeof(*hdr));
#ifdef AU_UPDATE_TEST
		/* copy it to where Linux goes */
		if (idx == IDX_FIRMWARE)
			start = aufl_layout[1].start;
#endif
		off = 0;
		nbytes = ntohl(hdr->ih_size);
	} else {
		addr = (char *)hdr;
		off = sizeof(*hdr);
		nbytes = sizeof(*hdr) + ntohl(hdr->ih_size);
	}

	/* copy the data from RAM to FLASH */
	debug ("cp.b %p %lx %x\n", addr, start, nbytes);
	sprintf(strbuf, "cp.b %p %lx %x\n", addr, start, nbytes);
W
wdenk 已提交
379
	parse_string_outer(strbuf, FLAG_PARSE_SEMICOLON);
380 381

	/* check the dcrc of the copy */
W
wdenk 已提交
382 383 384
	if (crc32 (0, (char *)(start + off), ntohl(hdr->ih_size)) != ntohl(hdr->ih_dcrc)) {
		printf ("Image %s Bad Data Checksum After COPY\n", aufile[idx]);
		return -1;
385 386 387 388 389
	}

	/* protect the address range */
	/* this assumes that ONLY the firmware is protected! */
	if (idx == IDX_FIRMWARE) {
W
wdenk 已提交
390
		debug ("protect on %lx %lx\n", start, end);
391
		sprintf(strbuf, "protect on %lx %lx\n", start, end);
W
wdenk 已提交
392
		parse_string_outer(strbuf, FLAG_PARSE_SEMICOLON);
393
	}
394 395 396 397 398 399 400
	return 0;
}

int
au_update_eeprom(int idx)
{
	image_header_t *hdr;
401 402
	int off;
	uint32_t val;
403 404

	hdr = (image_header_t *)LOAD_ADDR;
405 406 407 408 409 410 411 412 413 414 415 416
	/* write the time field into EEPROM */
	off = auee_off[idx].time;
	val = ntohl(hdr->ih_time);
	i2c_write_multiple(0x54, off, 1, &val, sizeof(val));
	/* write the size field into EEPROM */
	off = auee_off[idx].size;
	val = ntohl(hdr->ih_size);
	i2c_write_multiple(0x54, off, 1, &val, sizeof(val));
	/* write the dcrc field into EEPROM */
	off = auee_off[idx].dcrc;
	val = ntohl(hdr->ih_dcrc);
	i2c_write_multiple(0x54, off, 1, &val, sizeof(val));
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
	/* enable the power switch */
	*CPLD_VFD_BK &= ~POWER_OFF;
	return 0;
}

/*
 * this is called from board_init() after the hardware has been set up
 * and is usable. That seems like a good time to do this.
 * Right now the return value is ignored.
 */
int
do_auto_update(void)
{
	block_dev_desc_t *stor_dev;
	long sz;
W
wdenk 已提交
432
	int i, res, bitmap_first, cnt, old_ctrlc, got_ctrlc;
433
	char *env;
W
wdenk 已提交
434
	long start, end;
435

436
#undef ERASE_EEPROM
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
#ifdef ERASE_EEPROM
	int arr[18];
	memset(arr, 0, sizeof(arr));
	i2c_write_multiple(0x54, 64, 1, arr, sizeof(arr));
#endif
	au_usb_stor_curr_dev = -1;
	/* start USB */
	if (usb_stop() < 0) {
		debug ("usb_stop failed\n");
		return -1;
	}
	if (usb_init() < 0) {
		debug ("usb_init failed\n");
		return -1;
	}
	/*
	 * check whether a storage device is attached (assume that it's
	 * a USB memory stick, since nothing else should be attached).
	 */
	au_usb_stor_curr_dev = usb_stor_scan(1);
	if (au_usb_stor_curr_dev == -1) {
		debug ("No device found. Not initialized?\n");
		return -1;
	}
	/* check whether it has a partition table */
W
wdenk 已提交
462 463
	stor_dev = get_dev("usb", 0);
	if (stor_dev == NULL) {
464 465 466 467 468 469 470 471 472 473 474
		debug ("uknown device type\n");
		return -1;
	}
	if (fat_register_device(stor_dev, 1) != 0) {
		debug ("Unable to use USB %d:%d for fatls\n",
			au_usb_stor_curr_dev, 1);
		return -1;
	}
	if (file_fat_detectfs() != 0) {
		debug ("file_fat_detectfs failed\n");
	}
475

476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
	/* initialize the array of file names */
	memset(aufile, 0, sizeof(aufile));
	aufile[IDX_PREPARE] = AU_PREPARE;
	aufile[IDX_PREINST] = AU_PREINST;
	aufile[IDX_FIRMWARE] = AU_FIRMWARE;
	aufile[IDX_KERNEL] = AU_KERNEL;
	aufile[IDX_APP] = AU_APP;
	aufile[IDX_DISK] = AU_DISK;
	aufile[IDX_POSTINST] = AU_POSTINST;
	/* initialize the array of flash sizes */
	memset(ausize, 0, sizeof(ausize));
	ausize[IDX_FIRMWARE] = (AU_FL_FIRMWARE_ND + 1) - AU_FL_FIRMWARE_ST;
	ausize[IDX_KERNEL] = (AU_FL_KERNEL_ND + 1) - AU_FL_KERNEL_ST;
	ausize[IDX_APP] = (AU_FL_APP_ND + 1) - AU_FL_APP_ST;
	ausize[IDX_DISK] = (AU_FL_DISK_ND + 1) - AU_FL_DISK_ST;
W
wdenk 已提交
491 492 493 494
	/*
	 * now check whether start and end are defined using environment
	 * variables.
	 */
W
wdenk 已提交
495 496
	start = -1;
	end = 0;
W
wdenk 已提交
497 498 499 500 501 502
	env = getenv("firmware_st");
	if (env != NULL)
		start = simple_strtoul(env, NULL, 16);
	env = getenv("firmware_nd");
	if (env != NULL)
		end = simple_strtoul(env, NULL, 16);
W
wdenk 已提交
503
	if (start >= 0 && end && end > start) {
W
wdenk 已提交
504
		ausize[IDX_FIRMWARE] = (end + 1) - start;
W
wdenk 已提交
505 506 507
		aufl_layout[0].start = start;
		aufl_layout[0].end = end;
	}
W
wdenk 已提交
508 509
	start = -1;
	end = 0;
W
wdenk 已提交
510 511 512 513 514 515
	env = getenv("kernel_st");
	if (env != NULL)
		start = simple_strtoul(env, NULL, 16);
	env = getenv("kernel_nd");
	if (env != NULL)
		end = simple_strtoul(env, NULL, 16);
W
wdenk 已提交
516
	if (start >= 0 && end && end > start) {
W
wdenk 已提交
517
		ausize[IDX_KERNEL] = (end + 1) - start;
W
wdenk 已提交
518 519 520
		aufl_layout[1].start = start;
		aufl_layout[1].end = end;
	}
W
wdenk 已提交
521 522
	start = -1;
	end = 0;
W
wdenk 已提交
523 524 525 526 527 528
	env = getenv("app_st");
	if (env != NULL)
		start = simple_strtoul(env, NULL, 16);
	env = getenv("app_nd");
	if (env != NULL)
		end = simple_strtoul(env, NULL, 16);
W
wdenk 已提交
529
	if (start >= 0 && end && end > start) {
W
wdenk 已提交
530
		ausize[IDX_APP] = (end + 1) - start;
W
wdenk 已提交
531 532 533
		aufl_layout[2].start = start;
		aufl_layout[2].end = end;
	}
W
wdenk 已提交
534 535
	start = -1;
	end = 0;
W
wdenk 已提交
536 537 538 539 540 541
	env = getenv("disk_st");
	if (env != NULL)
		start = simple_strtoul(env, NULL, 16);
	env = getenv("disk_nd");
	if (env != NULL)
		end = simple_strtoul(env, NULL, 16);
W
wdenk 已提交
542
	if (start >= 0 && end && end > start) {
W
wdenk 已提交
543
		ausize[IDX_DISK] = (end + 1) - start;
W
wdenk 已提交
544 545 546
		aufl_layout[3].start = start;
		aufl_layout[3].end = end;
	}
W
wdenk 已提交
547 548 549
	/* make sure that we see CTRL-C and save the old state */
	old_ctrlc = disable_ctrlc(0);

550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586
	bitmap_first = 0;
	/* just loop thru all the possible files */
	for (i = 0; i < AU_MAXFILES; i++) {
		sz = file_fat_read(aufile[i], LOAD_ADDR, MAX_LOADSZ);
		debug ("read %s sz %ld hdr %d\n",
			aufile[i], sz, sizeof(image_header_t));
		if (sz <= 0 || sz <= sizeof(image_header_t)) {
			debug ("%s not found\n", aufile[i]);
			continue;
		}
		if (au_check_valid(i, sz) < 0) {
			debug ("%s not valid\n", aufile[i]);
			continue;
		}
#ifdef CONFIG_VFD
		/* now that we have a valid file we can display the */
		/* bitmap. */
		if (bitmap_first == 0) {
			env = getenv("bitmap2");
			if (env == NULL) {
				trab_vfd(0);
			} else {
				/* not so simple - bitmap2 is supposed to */
				/* contain the address of the bitmap */
				env = (char *)simple_strtoul(env, NULL, 16);
/* NOTE: these are taken from vfd_logo.h. If that file changes then */
/* these defines MUST also be updated! These may be wrong for bitmap2. */
#define VFD_LOGO_WIDTH 112
#define VFD_LOGO_HEIGHT 72
				/* must call transfer_pic directly */
				transfer_pic(3, env, VFD_LOGO_HEIGHT, VFD_LOGO_WIDTH);
			}
			bitmap_first = 1;
		}
#endif
		/* this is really not a good idea, but it's what the */
		/* customer wants. */
587
		cnt = 0;
W
wdenk 已提交
588
		got_ctrlc = 0;
589
		do {
W
wdenk 已提交
590 591 592 593 594 595 596 597
			res = au_do_update(i, sz, cnt);
			/* let the user break out of the loop */
			if (ctrlc() || had_ctrlc()) {
				clear_ctrlc();
				if (res < 0)
					got_ctrlc = 1;
				break;
			}
598
			cnt++;
W
wdenk 已提交
599
#ifdef AU_TEST_ONLY
600 601 602
		} while (res < 0 && cnt < 3);
		if (cnt < 3)
#else
603
		} while (res < 0);
604
#endif
W
wdenk 已提交
605 606 607 608 609 610
		/*
		 * it doesn't make sense to update the EEPROM if the
		 * update was interrupted by the user due to errors.
		 */
		if (got_ctrlc == 0)
			au_update_eeprom(i);
611 612 613
		else
			/* enable the power switch */
			*CPLD_VFD_BK &= ~POWER_OFF;
614
	}
615
	usb_stop();
W
wdenk 已提交
616 617
	/* restore the old state */
	disable_ctrlc(old_ctrlc);
618 619 620
	return 0;
}
#endif /* CONFIG_AUTO_UPDATE */