1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * Linux architectural port borrowing liberally from similar works of
6 * others. All original copyrights apply as per the original source
9 * Modifications for the OpenRISC architecture:
10 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
11 * Copyright (C) 2010-2011 Julius Baxter <julius.baxter@orsoc.se>
12 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
15 #include <linux/sched.h>
16 #include <linux/kernel.h>
17 #include <linux/errno.h>
18 #include <linux/string.h>
19 #include <linux/types.h>
20 #include <linux/ptrace.h>
21 #include <linux/mman.h>
23 #include <linux/init.h>
25 #include <asm/tlbflush.h>
26 #include <asm/mmu_context.h>
27 #include <asm/spr_defs.h>
31 #define NUM_DTLB_SETS (1 << ((mfspr(SPR_IMMUCFGR) & SPR_IMMUCFGR_NTS) >> \
32 SPR_DMMUCFGR_NTS_OFF))
33 #define NUM_ITLB_SETS (1 << ((mfspr(SPR_IMMUCFGR) & SPR_IMMUCFGR_NTS) >> \
34 SPR_IMMUCFGR_NTS_OFF))
35 #define DTLB_OFFSET(addr) (((addr) >> PAGE_SHIFT) & (NUM_DTLB_SETS-1))
36 #define ITLB_OFFSET(addr) (((addr) >> PAGE_SHIFT) & (NUM_ITLB_SETS-1))
38 * Invalidate all TLB entries.
40 * This comes down to setting the 'valid' bit for all xTLBMR registers to 0.
41 * Easiest way to accomplish this is to just zero out the xTLBMR register
46 void local_flush_tlb_all(void)
49 unsigned long num_tlb_sets
;
51 /* Determine number of sets for IMMU. */
52 /* FIXME: Assumption is I & D nsets equal. */
53 num_tlb_sets
= NUM_ITLB_SETS
;
55 for (i
= 0; i
< num_tlb_sets
; i
++) {
56 mtspr_off(SPR_DTLBMR_BASE(0), i
, 0);
57 mtspr_off(SPR_ITLBMR_BASE(0), i
, 0);
61 #define have_dtlbeir (mfspr(SPR_DMMUCFGR) & SPR_DMMUCFGR_TEIRI)
62 #define have_itlbeir (mfspr(SPR_IMMUCFGR) & SPR_IMMUCFGR_TEIRI)
65 * Invalidate a single page. This is what the xTLBEIR register is for.
67 * There's no point in checking the vma for PAGE_EXEC to determine whether it's
68 * the data or instruction TLB that should be flushed... that would take more
69 * than the few instructions that the following compiles down to!
71 * The case where we don't have the xTLBEIR register really only works for
72 * MMU's with a single way and is hard-coded that way.
75 #define flush_dtlb_page_eir(addr) mtspr(SPR_DTLBEIR, addr)
76 #define flush_dtlb_page_no_eir(addr) \
77 mtspr_off(SPR_DTLBMR_BASE(0), DTLB_OFFSET(addr), 0);
79 #define flush_itlb_page_eir(addr) mtspr(SPR_ITLBEIR, addr)
80 #define flush_itlb_page_no_eir(addr) \
81 mtspr_off(SPR_ITLBMR_BASE(0), ITLB_OFFSET(addr), 0);
83 void local_flush_tlb_page(struct vm_area_struct
*vma
, unsigned long addr
)
86 flush_dtlb_page_eir(addr
);
88 flush_dtlb_page_no_eir(addr
);
91 flush_itlb_page_eir(addr
);
93 flush_itlb_page_no_eir(addr
);
96 void local_flush_tlb_range(struct vm_area_struct
*vma
,
97 unsigned long start
, unsigned long end
)
103 dtlbeir
= have_dtlbeir
;
104 itlbeir
= have_itlbeir
;
106 for (addr
= start
; addr
< end
; addr
+= PAGE_SIZE
) {
108 flush_dtlb_page_eir(addr
);
110 flush_dtlb_page_no_eir(addr
);
113 flush_itlb_page_eir(addr
);
115 flush_itlb_page_no_eir(addr
);
120 * Invalidate the selected mm context only.
122 * FIXME: Due to some bug here, we're flushing everything for now.
123 * This should be changed to loop over over mm and call flush_tlb_range.
126 void local_flush_tlb_mm(struct mm_struct
*mm
)
129 /* Was seeing bugs with the mm struct passed to us. Scrapped most of
131 /* Several architctures do this */
132 local_flush_tlb_all();
135 /* called in schedule() just before actually doing the switch_to */
137 void switch_mm(struct mm_struct
*prev
, struct mm_struct
*next
,
138 struct task_struct
*next_tsk
)
142 if (unlikely(prev
== next
))
145 cpu
= smp_processor_id();
147 cpumask_clear_cpu(cpu
, mm_cpumask(prev
));
148 cpumask_set_cpu(cpu
, mm_cpumask(next
));
150 /* remember the pgd for the fault handlers
151 * this is similar to the pgd register in some other CPU's.
152 * we need our own copy of it because current and active_mm
153 * might be invalid at points where we still need to derefer
156 current_pgd
[cpu
] = next
->pgd
;
158 /* We don't have context support implemented, so flush all
159 * entries belonging to previous map
161 local_flush_tlb_mm(prev
);
165 * Initialize the context related info for a new mm_struct
169 int init_new_context(struct task_struct
*tsk
, struct mm_struct
*mm
)
171 mm
->context
= NO_CONTEXT
;
175 /* called by __exit_mm to destroy the used MMU context if any before
176 * destroying the mm itself. this is only called when the last user of the mm
180 void destroy_context(struct mm_struct
*mm
)
186 /* called once during VM initialization, from init.c */
188 void __init
tlb_init(void)
191 /* invalidate the entire TLB */
192 /* flush_tlb_all(); */