]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Add watchdog_reset to download loop; wait for download indefinitely
authorLothar Waßmann <LW@KARO-electronics.de>
Wed, 1 Aug 2012 09:40:25 +0000 (11:40 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Wed, 1 Aug 2012 09:40:25 +0000 (11:40 +0200)
arch/arm/cpu/armv7/omap-common/spl_ymodem.c

index 47663f7edf443d352530bee94e1690399057f938..a4aa15394a2036b9ac1972b55aa448fdcfe02574 100644 (file)
@@ -31,6 +31,7 @@
 #include <asm/utils.h>
 #include <asm/arch/sys_proto.h>
 #include <asm/omap_common.h>
+#include <watchdog.h>
 
 #define BUF_SIZE 1024
 
@@ -51,20 +52,22 @@ void spl_ymodem_load_image(void)
        ulong store_addr = ~0;
        ulong addr = 0;
 
+loop:
        info.mode = xyzModem_ymodem;
        ret = xyzModem_stream_open(&info, &err);
-
-       if (!ret) {
+       if (ret == 0) {
                while ((res =
                        xyzModem_stream_read(buf, BUF_SIZE, &err)) > 0) {
                        if (addr == 0)
                                spl_parse_image_header((struct image_header *)buf);
                        store_addr = addr + spl_image.load_addr;
+                       WATCHDOG_RESET();
                        size += res;
                        addr += res;
-                       memcpy((char *)(store_addr), buf, res);
+                       memcpy((char *)store_addr, buf, res);
                }
        } else {
+               goto loop;
                printf("spl: ymodem err - %s\n", xyzModem_error(err));
                hang();
        }