2 * r2300.c: R2000 and R3000 specific mmu/cache code.
4 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
6 * with a lot of changes to make this thing work for R3000s
7 * Tx39XX R4k style caches added. HK
8 * Copyright (C) 1998, 1999, 2000 Harald Koerfgen
9 * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov
10 * Copyright (C) 2002 Ralf Baechle
11 * Copyright (C) 2002 Maciej W. Rozycki
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/smp.h>
19 #include <asm/pgtable.h>
20 #include <asm/mmu_context.h>
21 #include <asm/tlbmisc.h>
22 #include <asm/isadep.h>
24 #include <asm/bootinfo.h>
29 extern void build_tlb_refill_handler(void);
31 /* CP0 hazard avoidance. */
33 __asm__ __volatile__( \
35 ".set noreorder\n\t" \
39 int r3k_have_wired_reg
; /* Should be in cpu_data? */
42 static void local_flush_tlb_from(int entry
)
44 unsigned long old_ctx
;
46 old_ctx
= read_c0_entryhi() & ASID_MASK
;
48 while (entry
< current_cpu_data
.tlbsize
) {
49 write_c0_index(entry
<< 8);
50 write_c0_entryhi((entry
| 0x80000) << 12);
51 entry
++; /* BARRIER */
54 write_c0_entryhi(old_ctx
);
57 void local_flush_tlb_all(void)
64 local_irq_save(flags
);
65 local_flush_tlb_from(r3k_have_wired_reg
? read_c0_wired() : 8);
66 local_irq_restore(flags
);
69 void local_flush_tlb_mm(struct mm_struct
*mm
)
71 int cpu
= smp_processor_id();
73 if (cpu_context(cpu
, mm
) != 0) {
75 printk("[tlbmm<%lu>]", (unsigned long)cpu_context(cpu
, mm
));
77 drop_mmu_context(mm
, cpu
);
81 void local_flush_tlb_range(struct vm_area_struct
*vma
, unsigned long start
,
84 struct mm_struct
*mm
= vma
->vm_mm
;
85 int cpu
= smp_processor_id();
87 if (cpu_context(cpu
, mm
) != 0) {
88 unsigned long size
, flags
;
91 printk("[tlbrange<%lu,0x%08lx,0x%08lx>]",
92 cpu_context(cpu
, mm
) & ASID_MASK
, start
, end
);
94 local_irq_save(flags
);
95 size
= (end
- start
+ (PAGE_SIZE
- 1)) >> PAGE_SHIFT
;
96 if (size
<= current_cpu_data
.tlbsize
) {
97 int oldpid
= read_c0_entryhi() & ASID_MASK
;
98 int newpid
= cpu_context(cpu
, mm
) & ASID_MASK
;
101 end
+= PAGE_SIZE
- 1;
103 while (start
< end
) {
106 write_c0_entryhi(start
| newpid
);
107 start
+= PAGE_SIZE
; /* BARRIER */
109 idx
= read_c0_index();
110 write_c0_entrylo0(0);
111 write_c0_entryhi(KSEG0
);
112 if (idx
< 0) /* BARRIER */
116 write_c0_entryhi(oldpid
);
118 drop_mmu_context(mm
, cpu
);
120 local_irq_restore(flags
);
124 void local_flush_tlb_kernel_range(unsigned long start
, unsigned long end
)
126 unsigned long size
, flags
;
129 printk("[tlbrange<%lu,0x%08lx,0x%08lx>]", start
, end
);
131 local_irq_save(flags
);
132 size
= (end
- start
+ (PAGE_SIZE
- 1)) >> PAGE_SHIFT
;
133 if (size
<= current_cpu_data
.tlbsize
) {
134 int pid
= read_c0_entryhi();
137 end
+= PAGE_SIZE
- 1;
140 while (start
< end
) {
143 write_c0_entryhi(start
);
144 start
+= PAGE_SIZE
; /* BARRIER */
146 idx
= read_c0_index();
147 write_c0_entrylo0(0);
148 write_c0_entryhi(KSEG0
);
149 if (idx
< 0) /* BARRIER */
153 write_c0_entryhi(pid
);
155 local_flush_tlb_all();
157 local_irq_restore(flags
);
160 void local_flush_tlb_page(struct vm_area_struct
*vma
, unsigned long page
)
162 int cpu
= smp_processor_id();
164 if (cpu_context(cpu
, vma
->vm_mm
) != 0) {
166 int oldpid
, newpid
, idx
;
169 printk("[tlbpage<%lu,0x%08lx>]", cpu_context(cpu
, vma
->vm_mm
), page
);
171 newpid
= cpu_context(cpu
, vma
->vm_mm
) & ASID_MASK
;
173 local_irq_save(flags
);
174 oldpid
= read_c0_entryhi() & ASID_MASK
;
175 write_c0_entryhi(page
| newpid
);
178 idx
= read_c0_index();
179 write_c0_entrylo0(0);
180 write_c0_entryhi(KSEG0
);
181 if (idx
< 0) /* BARRIER */
186 write_c0_entryhi(oldpid
);
187 local_irq_restore(flags
);
191 void __update_tlb(struct vm_area_struct
*vma
, unsigned long address
, pte_t pte
)
197 * Handle debugger faulting in for debugee.
199 if (current
->active_mm
!= vma
->vm_mm
)
202 pid
= read_c0_entryhi() & ASID_MASK
;
205 if ((pid
!= (cpu_context(cpu
, vma
->vm_mm
) & ASID_MASK
)) || (cpu_context(cpu
, vma
->vm_mm
) == 0)) {
206 printk("update_mmu_cache: Wheee, bogus tlbpid mmpid=%lu tlbpid=%d\n",
207 (cpu_context(cpu
, vma
->vm_mm
)), pid
);
211 local_irq_save(flags
);
212 address
&= PAGE_MASK
;
213 write_c0_entryhi(address
| pid
);
216 idx
= read_c0_index();
217 write_c0_entrylo0(pte_val(pte
));
218 write_c0_entryhi(address
| pid
);
219 if (idx
< 0) { /* BARRIER */
224 write_c0_entryhi(pid
);
225 local_irq_restore(flags
);
228 void add_wired_entry(unsigned long entrylo0
, unsigned long entrylo1
,
229 unsigned long entryhi
, unsigned long pagemask
)
232 unsigned long old_ctx
;
233 static unsigned long wired
= 0;
235 if (r3k_have_wired_reg
) { /* TX39XX */
236 unsigned long old_pagemask
;
240 printk("[tlbwired<entry lo0 %8x, hi %8x\n, pagemask %8x>]\n",
241 entrylo0
, entryhi
, pagemask
);
244 local_irq_save(flags
);
245 /* Save old context and create impossible VPN2 value */
246 old_ctx
= read_c0_entryhi() & ASID_MASK
;
247 old_pagemask
= read_c0_pagemask();
249 write_c0_wired(w
+ 1);
250 write_c0_index(w
<< 8);
251 write_c0_pagemask(pagemask
);
252 write_c0_entryhi(entryhi
);
253 write_c0_entrylo0(entrylo0
);
257 write_c0_entryhi(old_ctx
);
258 write_c0_pagemask(old_pagemask
);
259 local_flush_tlb_all();
260 local_irq_restore(flags
);
262 } else if (wired
< 8) {
264 printk("[tlbwired<entry lo0 %8x, hi %8x\n>]\n",
268 local_irq_save(flags
);
269 old_ctx
= read_c0_entryhi() & ASID_MASK
;
270 write_c0_entrylo0(entrylo0
);
271 write_c0_entryhi(entryhi
);
272 write_c0_index(wired
);
273 wired
++; /* BARRIER */
275 write_c0_entryhi(old_ctx
);
276 local_flush_tlb_all();
277 local_irq_restore(flags
);
283 switch (current_cpu_type()) {
286 r3k_have_wired_reg
= 1;
287 write_c0_wired(0); /* Set to 8 on reset... */
290 local_flush_tlb_from(0);
291 build_tlb_refill_handler();