Merge tag 'linux-kselftest-kunit-fixes-5.11-rc3' of git://git.kernel.org/pub/scm...
[linux/fpc-iii.git] / arch / riscv / include / asm / cacheflush.h
blob23ff7035099261a7c8cc972bb0259aca45437fc7
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2015 Regents of the University of California
4 */
6 #ifndef _ASM_RISCV_CACHEFLUSH_H
7 #define _ASM_RISCV_CACHEFLUSH_H
9 #include <linux/mm.h>
11 static inline void local_flush_icache_all(void)
13 asm volatile ("fence.i" ::: "memory");
16 #define PG_dcache_clean PG_arch_1
18 static inline void flush_dcache_page(struct page *page)
20 if (test_bit(PG_dcache_clean, &page->flags))
21 clear_bit(PG_dcache_clean, &page->flags);
23 #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
26 * RISC-V doesn't have an instruction to flush parts of the instruction cache,
27 * so instead we just flush the whole thing.
29 #define flush_icache_range(start, end) flush_icache_all()
30 #define flush_icache_user_page(vma, pg, addr, len) \
31 flush_icache_mm(vma->vm_mm, 0)
33 #ifndef CONFIG_SMP
35 #define flush_icache_all() local_flush_icache_all()
36 #define flush_icache_mm(mm, local) flush_icache_all()
38 #else /* CONFIG_SMP */
40 void flush_icache_all(void);
41 void flush_icache_mm(struct mm_struct *mm, bool local);
43 #endif /* CONFIG_SMP */
46 * Bits in sys_riscv_flush_icache()'s flags argument.
48 #define SYS_RISCV_FLUSH_ICACHE_LOCAL 1UL
49 #define SYS_RISCV_FLUSH_ICACHE_ALL (SYS_RISCV_FLUSH_ICACHE_LOCAL)
51 #include <asm-generic/cacheflush.h>
53 #endif /* _ASM_RISCV_CACHEFLUSH_H */