aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm/cacheflush.h
diff options
context:
space:
mode:
authorCatalin Marinas <catalin.marinas@arm.com>2008-06-13 05:28:36 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2008-07-03 11:39:57 -0400
commit826cbdaff29764bb6928c715c6a025e49469dda9 (patch)
tree0fa040b3be05d88291eb5dca05f77202ad56ab45 /include/asm-arm/cacheflush.h
parent43df5220e455d426ec7462d0bf906e686c65ebb5 (diff)
[ARM] 5092/1: Fix the I-cache invalidation on ARMv6 and later CPUs
This patch adds the I-cache invalidation in update_mmu_cache if the corresponding vma is marked as executable. It also invalidates the I-cache if a thread migrates to a CPU it never ran on. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm/cacheflush.h')
-rw-r--r--include/asm-arm/cacheflush.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asm-arm/cacheflush.h b/include/asm-arm/cacheflush.h
index 759a97b56eed..559fb4af1f62 100644
--- a/include/asm-arm/cacheflush.h
+++ b/include/asm-arm/cacheflush.h
@@ -410,6 +410,13 @@ extern void flush_dcache_page(struct page *);
410 410
411extern void __flush_dcache_page(struct address_space *mapping, struct page *page); 411extern void __flush_dcache_page(struct address_space *mapping, struct page *page);
412 412
413static inline void __flush_icache_all(void)
414{
415 asm("mcr p15, 0, %0, c7, c5, 0 @ invalidate I-cache\n"
416 :
417 : "r" (0));
418}
419
413#define ARCH_HAS_FLUSH_ANON_PAGE 420#define ARCH_HAS_FLUSH_ANON_PAGE
414static inline void flush_anon_page(struct vm_area_struct *vma, 421static inline void flush_anon_page(struct vm_area_struct *vma,
415 struct page *page, unsigned long vmaddr) 422 struct page *page, unsigned long vmaddr)