From: Yuri Tikhonov Date: Tue, 29 Apr 2008 11:32:45 +0000 (+0200) Subject: ppc flush_cache: add watch-dog triggering into the loops. X-Git-Tag: v2008.10-rc1~374^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=138105efe1d2b1a40a3a97b4c1f85c2111bea2d8;p=platform%2Fkernel%2Fu-boot.git ppc flush_cache: add watch-dog triggering into the loops. Some boards (e.g. lwmon5) need rather a frequent watch-dog kicking. Since the time it takes for the flush_cache() function to complete its job depends on the size of data being flushed, one may encounter watch-dog resets on such boards when, for example, download big files over ethernet. Signed-off-by: Yuri Tikhonov --- diff --git a/lib_ppc/cache.c b/lib_ppc/cache.c index 27e1a82..5bfb220 100644 --- a/lib_ppc/cache.c +++ b/lib_ppc/cache.c @@ -23,6 +23,7 @@ #include #include +#include void flush_cache (ulong start_addr, ulong size) { @@ -35,6 +36,7 @@ void flush_cache (ulong start_addr, ulong size) addr < end_addr; addr += CFG_CACHELINE_SIZE) { asm ("dcbst 0,%0": :"r" (addr)); + WATCHDOG_RESET(); } asm ("sync"); /* Wait for all dcbst to complete on bus */ @@ -42,6 +44,7 @@ void flush_cache (ulong start_addr, ulong size) addr < end_addr; addr += CFG_CACHELINE_SIZE) { asm ("icbi 0,%0": :"r" (addr)); + WATCHDOG_RESET(); } } asm ("sync"); /* Always flush prefetch queue in any case */