2019-05-29 21:18:00 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2017-07-11 08:02:19 +07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Regents of the University of California
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_RISCV_CACHEFLUSH_H
|
|
|
|
#define _ASM_RISCV_CACHEFLUSH_H
|
|
|
|
|
|
|
|
#include <asm-generic/cacheflush.h>
|
|
|
|
|
|
|
|
#undef flush_icache_range
|
|
|
|
#undef flush_icache_user_range
|
2017-10-26 04:30:32 +07:00
|
|
|
#undef flush_dcache_page
|
2017-07-11 08:02:19 +07:00
|
|
|
|
|
|
|
static inline void local_flush_icache_all(void)
|
|
|
|
{
|
|
|
|
asm volatile ("fence.i" ::: "memory");
|
|
|
|
}
|
|
|
|
|
2017-10-26 04:30:32 +07:00
|
|
|
#define PG_dcache_clean PG_arch_1
|
|
|
|
|
|
|
|
static inline void flush_dcache_page(struct page *page)
|
|
|
|
{
|
|
|
|
if (test_bit(PG_dcache_clean, &page->flags))
|
|
|
|
clear_bit(PG_dcache_clean, &page->flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RISC-V doesn't have an instruction to flush parts of the instruction cache,
|
|
|
|
* so instead we just flush the whole thing.
|
|
|
|
*/
|
|
|
|
#define flush_icache_range(start, end) flush_icache_all()
|
|
|
|
#define flush_icache_user_range(vma, pg, addr, len) flush_icache_all()
|
|
|
|
|
2017-07-11 08:02:19 +07:00
|
|
|
#ifndef CONFIG_SMP
|
|
|
|
|
2017-10-26 04:30:32 +07:00
|
|
|
#define flush_icache_all() local_flush_icache_all()
|
|
|
|
#define flush_icache_mm(mm, local) flush_icache_all()
|
2017-07-11 08:02:19 +07:00
|
|
|
|
|
|
|
#else /* CONFIG_SMP */
|
|
|
|
|
2019-03-27 07:41:25 +07:00
|
|
|
void flush_icache_all(void);
|
2017-10-26 04:30:32 +07:00
|
|
|
void flush_icache_mm(struct mm_struct *mm, bool local);
|
2017-07-11 08:02:19 +07:00
|
|
|
|
|
|
|
#endif /* CONFIG_SMP */
|
|
|
|
|
2017-10-26 04:32:16 +07:00
|
|
|
/*
|
|
|
|
* Bits in sys_riscv_flush_icache()'s flags argument.
|
|
|
|
*/
|
|
|
|
#define SYS_RISCV_FLUSH_ICACHE_LOCAL 1UL
|
|
|
|
#define SYS_RISCV_FLUSH_ICACHE_ALL (SYS_RISCV_FLUSH_ICACHE_LOCAL)
|
|
|
|
|
2017-07-11 08:02:19 +07:00
|
|
|
#endif /* _ASM_RISCV_CACHEFLUSH_H */
|