aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arc/include
diff options
context:
space:
mode:
authorVineet Gupta <vgupta@synopsys.com>2013-04-12 02:50:23 -0400
committerVineet Gupta <vgupta@synopsys.com>2013-05-07 09:38:13 -0400
commit94bad1afeeefbd1b27d7f642de12c04339501a99 (patch)
tree0113eafd9ff09c96053c34acc5edb6b3e03bb820 /arch/arc/include
parent7586bf7286097cd47299c44192c30e01f0d55391 (diff)
ARC: [mm] consolidate icache/dcache sync code
Now that we have same helper used for all icache invalidates (i.e. vaddr+paddr based exact line invalidate), consolidate the open coded calls into one place. Also rename flush_icache_range_vaddr => __sync_icache_dcache Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/include')
-rw-r--r--arch/arc/include/asm/cacheflush.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arc/include/asm/cacheflush.h b/arch/arc/include/asm/cacheflush.h
index 46f13e7314dc..65ed8d2d4597 100644
--- a/arch/arc/include/asm/cacheflush.h
+++ b/arch/arc/include/asm/cacheflush.h
@@ -31,8 +31,7 @@
31void flush_cache_all(void); 31void flush_cache_all(void);
32 32
33void flush_icache_range(unsigned long start, unsigned long end); 33void flush_icache_range(unsigned long start, unsigned long end);
34void flush_icache_range_vaddr(unsigned long paddr, unsigned long u_vaddr, 34void __sync_icache_dcache(unsigned long paddr, unsigned long vaddr, int len);
35 int len);
36void __inv_icache_page(unsigned long paddr, unsigned long vaddr); 35void __inv_icache_page(unsigned long paddr, unsigned long vaddr);
37 36
38#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1 37#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
@@ -66,7 +65,7 @@ void dma_cache_wback(unsigned long start, unsigned long sz);
66do { \ 65do { \
67 memcpy(dst, src, len); \ 66 memcpy(dst, src, len); \
68 if (vma->vm_flags & VM_EXEC) \ 67 if (vma->vm_flags & VM_EXEC) \
69 flush_icache_range_vaddr((unsigned long)(dst), vaddr, len);\ 68 __sync_icache_dcache((unsigned long)(dst), vaddr, len); \
70} while (0) 69} while (0)
71 70
72#define copy_from_user_page(vma, page, vaddr, dst, src, len) \ 71#define copy_from_user_page(vma, page, vaddr, dst, src, len) \