blob: 89f81067e09edba0c9cacdafd41cc97ea2b0e19e [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright (C) 2017 SiFive
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004 */
5
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006#include <asm/cacheflush.h>
7
David Brazdil0f672f62019-12-10 10:32:29 +00008#ifdef CONFIG_SMP
9
10#include <asm/sbi.h>
11
Olivier Deprez157378f2022-04-04 15:47:50 +020012static void ipi_remote_fence_i(void *info)
13{
14 return local_flush_icache_all();
15}
16
David Brazdil0f672f62019-12-10 10:32:29 +000017void flush_icache_all(void)
18{
Olivier Deprez157378f2022-04-04 15:47:50 +020019 local_flush_icache_all();
20
21 if (IS_ENABLED(CONFIG_RISCV_SBI))
22 sbi_remote_fence_i(NULL);
23 else
24 on_each_cpu(ipi_remote_fence_i, NULL, 1);
David Brazdil0f672f62019-12-10 10:32:29 +000025}
Olivier Deprez0e641232021-09-23 10:07:05 +020026EXPORT_SYMBOL(flush_icache_all);
David Brazdil0f672f62019-12-10 10:32:29 +000027
28/*
29 * Performs an icache flush for the given MM context. RISC-V has no direct
30 * mechanism for instruction cache shoot downs, so instead we send an IPI that
31 * informs the remote harts they need to flush their local instruction caches.
32 * To avoid pathologically slow behavior in a common case (a bunch of
33 * single-hart processes on a many-hart machine, ie 'make -j') we avoid the
34 * IPIs for harts that are not currently executing a MM context and instead
35 * schedule a deferred local instruction cache flush to be performed before
36 * execution resumes on each hart.
37 */
38void flush_icache_mm(struct mm_struct *mm, bool local)
39{
40 unsigned int cpu;
Olivier Deprez157378f2022-04-04 15:47:50 +020041 cpumask_t others, *mask;
David Brazdil0f672f62019-12-10 10:32:29 +000042
43 preempt_disable();
44
45 /* Mark every hart's icache as needing a flush for this MM. */
46 mask = &mm->context.icache_stale_mask;
47 cpumask_setall(mask);
48 /* Flush this hart's I$ now, and mark it as flushed. */
49 cpu = smp_processor_id();
50 cpumask_clear_cpu(cpu, mask);
51 local_flush_icache_all();
52
53 /*
54 * Flush the I$ of other harts concurrently executing, and mark them as
55 * flushed.
56 */
57 cpumask_andnot(&others, mm_cpumask(mm), cpumask_of(cpu));
58 local |= cpumask_empty(&others);
Olivier Deprez157378f2022-04-04 15:47:50 +020059 if (mm == current->active_mm && local) {
David Brazdil0f672f62019-12-10 10:32:29 +000060 /*
61 * It's assumed that at least one strongly ordered operation is
62 * performed on this hart between setting a hart's cpumask bit
63 * and scheduling this MM context on that hart. Sending an SBI
64 * remote message will do this, but in the case where no
65 * messages are sent we still need to order this hart's writes
66 * with flush_icache_deferred().
67 */
68 smp_mb();
Olivier Deprez157378f2022-04-04 15:47:50 +020069 } else if (IS_ENABLED(CONFIG_RISCV_SBI)) {
70 cpumask_t hartid_mask;
71
72 riscv_cpuid_to_hartid_mask(&others, &hartid_mask);
73 sbi_remote_fence_i(cpumask_bits(&hartid_mask));
74 } else {
75 on_each_cpu_mask(&others, ipi_remote_fence_i, NULL, 1);
David Brazdil0f672f62019-12-10 10:32:29 +000076 }
77
78 preempt_enable();
79}
80
81#endif /* CONFIG_SMP */
82
Olivier Deprez157378f2022-04-04 15:47:50 +020083#ifdef CONFIG_MMU
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000084void flush_icache_pte(pte_t pte)
85{
86 struct page *page = pte_page(pte);
87
88 if (!test_and_set_bit(PG_dcache_clean, &page->flags))
89 flush_icache_all();
90}
Olivier Deprez157378f2022-04-04 15:47:50 +020091#endif /* CONFIG_MMU */