From: Vasili Galka Date: Mon, 30 Jun 2014 10:00:12 +0000 (+0300) Subject: blackfin: Add more dcache functions X-Git-Tag: v2014.07~29 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a91fd00175f56e2d697c6f883f7d9b328242ca8b;p=karo-tx-uboot.git blackfin: Add more dcache functions Add invalidate_dcache_range() and flush_dcache_range() for the blackfin architecture. Such functions already exist on this arch with different names, so just forward the call. This fixes the build of bf609-ezkit board as it uses drivers/net/designware.c which requires the above functions. Cc: Sonic Zhang , Alexey Brodkin Signed-off-by: Vasili Galka --- diff --git a/arch/blackfin/lib/cache.c b/arch/blackfin/lib/cache.c index 0a321a448f..e8a0cb5deb 100644 --- a/arch/blackfin/lib/cache.c +++ b/arch/blackfin/lib/cache.c @@ -111,3 +111,13 @@ int dcache_status(void) { return bfin_read_DMEM_CONTROL() & ACACHE_BCACHE; } + +void invalidate_dcache_range(unsigned long start, unsigned long stop) +{ + blackfin_dcache_flush_invalidate_range((const void *)start, (const void *)stop); +} + +void flush_dcache_range(unsigned long start, unsigned long stop) +{ + blackfin_dcache_flush_range((const void *)start, (const void *)stop); +}