blob: 50f207591b6d08b6bb8326debe3e90721522c7cf [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * r2300.c: R2000 and R3000 specific mmu/cache code.
4 *
Justin P. Mattock79add622011-04-04 14:15:29 -07005 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * with a lot of changes to make this thing work for R3000s
8 * Tx39XX R4k style caches added. HK
9 * Copyright (C) 1998, 1999, 2000 Harald Koerfgen
10 * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
11 * Copyright (C) 2002 Ralf Baechle
12 * Copyright (C) 2002 Maciej W. Rozycki
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/sched.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010016#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mm.h>
18
19#include <asm/page.h>
20#include <asm/pgtable.h>
21#include <asm/mmu_context.h>
Ralf Baechle3d18c982011-11-28 16:11:28 +000022#include <asm/tlbmisc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/isadep.h>
24#include <asm/io.h>
25#include <asm/bootinfo.h>
26#include <asm/cpu.h>
27
28#undef DEBUG_TLB
29
30extern void build_tlb_refill_handler(void);
31
32/* CP0 hazard avoidance. */
33#define BARRIER \
34 __asm__ __volatile__( \
35 ".set push\n\t" \
36 ".set noreorder\n\t" \
37 "nop\n\t" \
38 ".set pop\n\t")
39
James Hogan3c865dd2015-07-15 16:17:43 +010040int r3k_have_wired_reg; /* Should be in cpu_data? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* TLB operations. */
Maciej W. Rozyckidbfbf602015-05-27 14:15:08 +010043static void local_flush_tlb_from(int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 unsigned long old_ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Paul Burton4edf00a2016-05-06 14:36:23 +010047 old_ctx = read_c0_entryhi() & cpu_asid_mask(&current_cpu_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 write_c0_entrylo0(0);
Maciej W. Rozycki9a20b092015-05-27 14:15:20 +010049 while (entry < current_cpu_data.tlbsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 write_c0_index(entry << 8);
51 write_c0_entryhi((entry | 0x80000) << 12);
Maciej W. Rozycki9a20b092015-05-27 14:15:20 +010052 entry++; /* BARRIER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 tlb_write_indexed();
54 }
55 write_c0_entryhi(old_ctx);
Maciej W. Rozyckidbfbf602015-05-27 14:15:08 +010056}
57
58void local_flush_tlb_all(void)
59{
60 unsigned long flags;
61
62#ifdef DEBUG_TLB
63 printk("[tlball]");
64#endif
65 local_irq_save(flags);
66 local_flush_tlb_from(r3k_have_wired_reg ? read_c0_wired() : 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 local_irq_restore(flags);
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
71 unsigned long end)
72{
Paul Burton4edf00a2016-05-06 14:36:23 +010073 unsigned long asid_mask = cpu_asid_mask(&current_cpu_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct mm_struct *mm = vma->vm_mm;
75 int cpu = smp_processor_id();
76
77 if (cpu_context(cpu, mm) != 0) {
Greg Ungerera5e696e2009-05-20 16:12:32 +100078 unsigned long size, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80#ifdef DEBUG_TLB
81 printk("[tlbrange<%lu,0x%08lx,0x%08lx>]",
Paul Burton4edf00a2016-05-06 14:36:23 +010082 cpu_context(cpu, mm) & asid_mask, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
84 local_irq_save(flags);
85 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
86 if (size <= current_cpu_data.tlbsize) {
Paul Burton4edf00a2016-05-06 14:36:23 +010087 int oldpid = read_c0_entryhi() & asid_mask;
88 int newpid = cpu_context(cpu, mm) & asid_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 start &= PAGE_MASK;
91 end += PAGE_SIZE - 1;
92 end &= PAGE_MASK;
93 while (start < end) {
94 int idx;
95
96 write_c0_entryhi(start | newpid);
97 start += PAGE_SIZE; /* BARRIER */
98 tlb_probe();
99 idx = read_c0_index();
100 write_c0_entrylo0(0);
101 write_c0_entryhi(KSEG0);
102 if (idx < 0) /* BARRIER */
103 continue;
104 tlb_write_indexed();
105 }
106 write_c0_entryhi(oldpid);
107 } else {
Paul Burton9a273242019-02-02 01:43:16 +0000108 drop_mmu_context(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110 local_irq_restore(flags);
111 }
112}
113
114void local_flush_tlb_kernel_range(unsigned long start, unsigned long end)
115{
Greg Ungerera5e696e2009-05-20 16:12:32 +1000116 unsigned long size, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118#ifdef DEBUG_TLB
119 printk("[tlbrange<%lu,0x%08lx,0x%08lx>]", start, end);
120#endif
121 local_irq_save(flags);
122 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
123 if (size <= current_cpu_data.tlbsize) {
124 int pid = read_c0_entryhi();
125
126 start &= PAGE_MASK;
127 end += PAGE_SIZE - 1;
128 end &= PAGE_MASK;
129
130 while (start < end) {
131 int idx;
132
133 write_c0_entryhi(start);
134 start += PAGE_SIZE; /* BARRIER */
135 tlb_probe();
136 idx = read_c0_index();
137 write_c0_entrylo0(0);
138 write_c0_entryhi(KSEG0);
139 if (idx < 0) /* BARRIER */
140 continue;
141 tlb_write_indexed();
142 }
143 write_c0_entryhi(pid);
144 } else {
145 local_flush_tlb_all();
146 }
147 local_irq_restore(flags);
148}
149
150void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
151{
Paul Burton4edf00a2016-05-06 14:36:23 +0100152 unsigned long asid_mask = cpu_asid_mask(&current_cpu_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 int cpu = smp_processor_id();
154
Emil Goodee5cd5342014-07-06 01:23:58 +0200155 if (cpu_context(cpu, vma->vm_mm) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 unsigned long flags;
157 int oldpid, newpid, idx;
158
159#ifdef DEBUG_TLB
160 printk("[tlbpage<%lu,0x%08lx>]", cpu_context(cpu, vma->vm_mm), page);
161#endif
Paul Burton4edf00a2016-05-06 14:36:23 +0100162 newpid = cpu_context(cpu, vma->vm_mm) & asid_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 page &= PAGE_MASK;
164 local_irq_save(flags);
Paul Burton4edf00a2016-05-06 14:36:23 +0100165 oldpid = read_c0_entryhi() & asid_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 write_c0_entryhi(page | newpid);
167 BARRIER;
168 tlb_probe();
169 idx = read_c0_index();
170 write_c0_entrylo0(0);
171 write_c0_entryhi(KSEG0);
172 if (idx < 0) /* BARRIER */
173 goto finish;
174 tlb_write_indexed();
175
176finish:
177 write_c0_entryhi(oldpid);
178 local_irq_restore(flags);
179 }
180}
181
182void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte)
183{
Paul Burton4edf00a2016-05-06 14:36:23 +0100184 unsigned long asid_mask = cpu_asid_mask(&current_cpu_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 unsigned long flags;
186 int idx, pid;
187
188 /*
189 * Handle debugger faulting in for debugee.
190 */
191 if (current->active_mm != vma->vm_mm)
192 return;
193
Paul Burton4edf00a2016-05-06 14:36:23 +0100194 pid = read_c0_entryhi() & asid_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196#ifdef DEBUG_TLB
Paul Burton4edf00a2016-05-06 14:36:23 +0100197 if ((pid != (cpu_context(cpu, vma->vm_mm) & asid_mask)) || (cpu_context(cpu, vma->vm_mm) == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 printk("update_mmu_cache: Wheee, bogus tlbpid mmpid=%lu tlbpid=%d\n",
199 (cpu_context(cpu, vma->vm_mm)), pid);
200 }
201#endif
202
203 local_irq_save(flags);
204 address &= PAGE_MASK;
205 write_c0_entryhi(address | pid);
206 BARRIER;
207 tlb_probe();
208 idx = read_c0_index();
209 write_c0_entrylo0(pte_val(pte));
210 write_c0_entryhi(address | pid);
211 if (idx < 0) { /* BARRIER */
212 tlb_write_random();
213 } else {
214 tlb_write_indexed();
215 }
216 write_c0_entryhi(pid);
217 local_irq_restore(flags);
218}
219
Manuel Lauss694b8c32011-08-02 19:51:08 +0200220void add_wired_entry(unsigned long entrylo0, unsigned long entrylo1,
221 unsigned long entryhi, unsigned long pagemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Paul Burton4edf00a2016-05-06 14:36:23 +0100223 unsigned long asid_mask = cpu_asid_mask(&current_cpu_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 unsigned long flags;
225 unsigned long old_ctx;
226 static unsigned long wired = 0;
227
228 if (r3k_have_wired_reg) { /* TX39XX */
229 unsigned long old_pagemask;
230 unsigned long w;
231
232#ifdef DEBUG_TLB
233 printk("[tlbwired<entry lo0 %8x, hi %8x\n, pagemask %8x>]\n",
234 entrylo0, entryhi, pagemask);
235#endif
236
237 local_irq_save(flags);
238 /* Save old context and create impossible VPN2 value */
Paul Burton4edf00a2016-05-06 14:36:23 +0100239 old_ctx = read_c0_entryhi() & asid_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 old_pagemask = read_c0_pagemask();
241 w = read_c0_wired();
242 write_c0_wired(w + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 write_c0_index(w << 8);
244 write_c0_pagemask(pagemask);
245 write_c0_entryhi(entryhi);
246 write_c0_entrylo0(entrylo0);
247 BARRIER;
248 tlb_write_indexed();
249
250 write_c0_entryhi(old_ctx);
251 write_c0_pagemask(old_pagemask);
252 local_flush_tlb_all();
253 local_irq_restore(flags);
254
255 } else if (wired < 8) {
256#ifdef DEBUG_TLB
257 printk("[tlbwired<entry lo0 %8x, hi %8x\n>]\n",
258 entrylo0, entryhi);
259#endif
260
261 local_irq_save(flags);
Paul Burton4edf00a2016-05-06 14:36:23 +0100262 old_ctx = read_c0_entryhi() & asid_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 write_c0_entrylo0(entrylo0);
264 write_c0_entryhi(entryhi);
265 write_c0_index(wired);
266 wired++; /* BARRIER */
267 tlb_write_indexed();
268 write_c0_entryhi(old_ctx);
269 local_flush_tlb_all();
270 local_irq_restore(flags);
271 }
272}
273
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000274void tlb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Maciej W. Rozycki3bcb03f2015-05-27 14:15:15 +0100276 switch (current_cpu_type()) {
277 case CPU_TX3922:
278 case CPU_TX3927:
279 r3k_have_wired_reg = 1;
280 write_c0_wired(0); /* Set to 8 on reset... */
281 break;
282 }
Maciej W. Rozyckidbfbf602015-05-27 14:15:08 +0100283 local_flush_tlb_from(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 build_tlb_refill_handler();
285}