1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_GENERIC_CACHEFLUSH_H
3 #define _ASM_GENERIC_CACHEFLUSH_H
6 * The cache doesn't need to be flushed when TLB entries change when
7 * the cache is mapped to physical memory, not virtual memory
9 #ifndef flush_cache_all
10 static inline void flush_cache_all(void)
15 #ifndef flush_cache_mm
16 static inline void flush_cache_mm(struct mm_struct
*mm
)
21 #ifndef flush_cache_dup_mm
22 static inline void flush_cache_dup_mm(struct mm_struct
*mm
)
27 #ifndef flush_cache_range
28 static inline void flush_cache_range(struct vm_area_struct
*vma
,
35 #ifndef flush_cache_page
36 static inline void flush_cache_page(struct vm_area_struct
*vma
,
43 #ifndef ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
44 static inline void flush_dcache_page(struct page
*page
)
47 #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 0
51 #ifndef flush_dcache_mmap_lock
52 static inline void flush_dcache_mmap_lock(struct address_space
*mapping
)
57 #ifndef flush_dcache_mmap_unlock
58 static inline void flush_dcache_mmap_unlock(struct address_space
*mapping
)
63 #ifndef flush_icache_range
64 static inline void flush_icache_range(unsigned long start
, unsigned long end
)
69 #ifndef flush_icache_user_range
70 #define flush_icache_user_range flush_icache_range
73 #ifndef flush_icache_page
74 static inline void flush_icache_page(struct vm_area_struct
*vma
,
80 #ifndef flush_icache_user_page
81 static inline void flush_icache_user_page(struct vm_area_struct
*vma
,
83 unsigned long addr
, int len
)
88 #ifndef flush_cache_vmap
89 static inline void flush_cache_vmap(unsigned long start
, unsigned long end
)
94 #ifndef flush_cache_vunmap
95 static inline void flush_cache_vunmap(unsigned long start
, unsigned long end
)
100 #ifndef copy_to_user_page
101 #define copy_to_user_page(vma, page, vaddr, dst, src, len) \
103 memcpy(dst, src, len); \
104 flush_icache_user_page(vma, page, vaddr, len); \
108 #ifndef copy_from_user_page
109 #define copy_from_user_page(vma, page, vaddr, dst, src, len) \
110 memcpy(dst, src, len)
113 #endif /* _ASM_GENERIC_CACHEFLUSH_H */