blob: 892be426787c8353a22a7e5fb133ee202b70e2af [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
7 * Copyright (C) 1997, 1998, 1999, 2000 Ralf Baechle ralf@gnu.org
8 * Carsten Langgaard, carstenl@mips.com
9 * Copyright (C) 2002 MIPS Technologies, Inc. All rights reserved.
10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/init.h>
12#include <linux/sched.h>
13#include <linux/mm.h>
14
15#include <asm/cpu.h>
16#include <asm/bootinfo.h>
17#include <asm/mmu_context.h>
18#include <asm/pgtable.h>
19#include <asm/system.h>
20
21extern void build_tlb_refill_handler(void);
22
Thiemo Seufer172546b2005-04-02 10:21:56 +000023/*
24 * Make sure all entries differ. If they're not different
25 * MIPS32 will take revenge ...
26 */
27#define UNIQUE_ENTRYHI(idx) (CKSEG0 + ((idx) << (PAGE_SHIFT + 1)))
28
Ralf Baechle41c594a2006-04-05 09:45:45 +010029/* Atomicity and interruptability */
30#ifdef CONFIG_MIPS_MT_SMTC
31
32#include <asm/smtc.h>
33#include <asm/mipsmtregs.h>
34
35#define ENTER_CRITICAL(flags) \
36 { \
37 unsigned int mvpflags; \
38 local_irq_save(flags);\
39 mvpflags = dvpe()
40#define EXIT_CRITICAL(flags) \
41 evpe(mvpflags); \
42 local_irq_restore(flags); \
43 }
44#else
45
46#define ENTER_CRITICAL(flags) local_irq_save(flags)
47#define EXIT_CRITICAL(flags) local_irq_restore(flags)
48
49#endif /* CONFIG_MIPS_MT_SMTC */
50
Fuxin Zhang2a21c732007-06-06 14:52:43 +080051#if defined(CONFIG_CPU_LOONGSON2)
52/*
53 * LOONGSON2 has a 4 entry itlb which is a subset of dtlb,
54 * unfortrunately, itlb is not totally transparent to software.
55 */
56#define FLUSH_ITLB write_c0_diag(4);
57
58#define FLUSH_ITLB_VM(vma) { if ((vma)->vm_flags & VM_EXEC) write_c0_diag(4); }
59
60#else
61
62#define FLUSH_ITLB
63#define FLUSH_ITLB_VM(vma)
64
65#endif
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067void local_flush_tlb_all(void)
68{
69 unsigned long flags;
70 unsigned long old_ctx;
71 int entry;
72
Ralf Baechle41c594a2006-04-05 09:45:45 +010073 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 /* Save old context and create impossible VPN2 value */
75 old_ctx = read_c0_entryhi();
76 write_c0_entrylo0(0);
77 write_c0_entrylo1(0);
78
79 entry = read_c0_wired();
80
81 /* Blast 'em all away. */
82 while (entry < current_cpu_data.tlbsize) {
Thiemo Seufer172546b2005-04-02 10:21:56 +000083 /* Make sure all entries differ. */
84 write_c0_entryhi(UNIQUE_ENTRYHI(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 write_c0_index(entry);
86 mtc0_tlbw_hazard();
87 tlb_write_indexed();
88 entry++;
89 }
90 tlbw_use_hazard();
91 write_c0_entryhi(old_ctx);
Fuxin Zhang2a21c732007-06-06 14:52:43 +080092 FLUSH_ITLB;
Ralf Baechle41c594a2006-04-05 09:45:45 +010093 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
Thiemo Seufer172546b2005-04-02 10:21:56 +000096/* All entries common to a mm share an asid. To effectively flush
97 these entries, we just bump the asid. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070098void local_flush_tlb_mm(struct mm_struct *mm)
99{
Thiemo Seufer172546b2005-04-02 10:21:56 +0000100 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Thiemo Seufer172546b2005-04-02 10:21:56 +0000102 preempt_disable();
103
104 cpu = smp_processor_id();
105
106 if (cpu_context(cpu, mm) != 0) {
107 drop_mmu_context(mm, cpu);
108 }
109
110 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
114 unsigned long end)
115{
116 struct mm_struct *mm = vma->vm_mm;
117 int cpu = smp_processor_id();
118
119 if (cpu_context(cpu, mm) != 0) {
Greg Ungerera5e696e2009-05-20 16:12:32 +1000120 unsigned long size, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Ralf Baechle41c594a2006-04-05 09:45:45 +0100122 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
124 size = (size + 1) >> 1;
125 if (size <= current_cpu_data.tlbsize/2) {
126 int oldpid = read_c0_entryhi();
127 int newpid = cpu_asid(cpu, mm);
128
129 start &= (PAGE_MASK << 1);
130 end += ((PAGE_SIZE << 1) - 1);
131 end &= (PAGE_MASK << 1);
132 while (start < end) {
133 int idx;
134
135 write_c0_entryhi(start | newpid);
136 start += (PAGE_SIZE << 1);
137 mtc0_tlbw_hazard();
138 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200139 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 idx = read_c0_index();
141 write_c0_entrylo0(0);
142 write_c0_entrylo1(0);
143 if (idx < 0)
144 continue;
145 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000146 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 mtc0_tlbw_hazard();
148 tlb_write_indexed();
149 }
150 tlbw_use_hazard();
151 write_c0_entryhi(oldpid);
152 } else {
153 drop_mmu_context(mm, cpu);
154 }
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800155 FLUSH_ITLB;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100156 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158}
159
160void local_flush_tlb_kernel_range(unsigned long start, unsigned long end)
161{
Greg Ungerera5e696e2009-05-20 16:12:32 +1000162 unsigned long size, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Ralf Baechle41c594a2006-04-05 09:45:45 +0100164 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
166 size = (size + 1) >> 1;
167 if (size <= current_cpu_data.tlbsize / 2) {
168 int pid = read_c0_entryhi();
169
170 start &= (PAGE_MASK << 1);
171 end += ((PAGE_SIZE << 1) - 1);
172 end &= (PAGE_MASK << 1);
173
174 while (start < end) {
175 int idx;
176
177 write_c0_entryhi(start);
178 start += (PAGE_SIZE << 1);
179 mtc0_tlbw_hazard();
180 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200181 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 idx = read_c0_index();
183 write_c0_entrylo0(0);
184 write_c0_entrylo1(0);
185 if (idx < 0)
186 continue;
187 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000188 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 mtc0_tlbw_hazard();
190 tlb_write_indexed();
191 }
192 tlbw_use_hazard();
193 write_c0_entryhi(pid);
194 } else {
195 local_flush_tlb_all();
196 }
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800197 FLUSH_ITLB;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100198 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
201void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
202{
203 int cpu = smp_processor_id();
204
205 if (cpu_context(cpu, vma->vm_mm) != 0) {
206 unsigned long flags;
207 int oldpid, newpid, idx;
208
209 newpid = cpu_asid(cpu, vma->vm_mm);
210 page &= (PAGE_MASK << 1);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100211 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 oldpid = read_c0_entryhi();
213 write_c0_entryhi(page | newpid);
214 mtc0_tlbw_hazard();
215 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200216 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 idx = read_c0_index();
218 write_c0_entrylo0(0);
219 write_c0_entrylo1(0);
220 if (idx < 0)
221 goto finish;
222 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000223 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 mtc0_tlbw_hazard();
225 tlb_write_indexed();
226 tlbw_use_hazard();
227
228 finish:
229 write_c0_entryhi(oldpid);
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800230 FLUSH_ITLB_VM(vma);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100231 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
233}
234
235/*
236 * This one is only used for pages with the global bit set so we don't care
237 * much about the ASID.
238 */
239void local_flush_tlb_one(unsigned long page)
240{
241 unsigned long flags;
242 int oldpid, idx;
243
Ralf Baechle41c594a2006-04-05 09:45:45 +0100244 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 oldpid = read_c0_entryhi();
Thiemo Seufer172546b2005-04-02 10:21:56 +0000246 page &= (PAGE_MASK << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 write_c0_entryhi(page);
248 mtc0_tlbw_hazard();
249 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200250 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 idx = read_c0_index();
252 write_c0_entrylo0(0);
253 write_c0_entrylo1(0);
254 if (idx >= 0) {
255 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000256 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 mtc0_tlbw_hazard();
258 tlb_write_indexed();
259 tlbw_use_hazard();
260 }
261 write_c0_entryhi(oldpid);
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800262 FLUSH_ITLB;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100263 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266/*
267 * We will need multiple versions of update_mmu_cache(), one that just
268 * updates the TLB with the new pte(s), and another which also checks
269 * for the R4k "end of page" hardware bug and does the needy.
270 */
271void __update_tlb(struct vm_area_struct * vma, unsigned long address, pte_t pte)
272{
273 unsigned long flags;
274 pgd_t *pgdp;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000275 pud_t *pudp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 pmd_t *pmdp;
277 pte_t *ptep;
278 int idx, pid;
279
280 /*
281 * Handle debugger faulting in for debugee.
282 */
283 if (current->active_mm != vma->vm_mm)
284 return;
285
Ralf Baechle41c594a2006-04-05 09:45:45 +0100286 ENTER_CRITICAL(flags);
Thiemo Seufer172546b2005-04-02 10:21:56 +0000287
288 pid = read_c0_entryhi() & ASID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 address &= (PAGE_MASK << 1);
290 write_c0_entryhi(address | pid);
291 pgdp = pgd_offset(vma->vm_mm, address);
292 mtc0_tlbw_hazard();
293 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200294 tlb_probe_hazard();
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000295 pudp = pud_offset(pgdp, address);
296 pmdp = pmd_offset(pudp, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 idx = read_c0_index();
298 ptep = pte_offset_map(pmdp, address);
299
Chris Dearman962f4802007-09-19 00:46:32 +0100300#if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
Maciej W. Rozycki30442992005-02-01 23:02:12 +0000301 write_c0_entrylo0(ptep->pte_high);
302 ptep++;
303 write_c0_entrylo1(ptep->pte_high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304#else
Maciej W. Rozycki30442992005-02-01 23:02:12 +0000305 write_c0_entrylo0(pte_val(*ptep++) >> 6);
306 write_c0_entrylo1(pte_val(*ptep) >> 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 mtc0_tlbw_hazard();
309 if (idx < 0)
310 tlb_write_random();
311 else
312 tlb_write_indexed();
313 tlbw_use_hazard();
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800314 FLUSH_ITLB_VM(vma);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100315 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318#if 0
319static void r4k_update_mmu_cache_hwbug(struct vm_area_struct * vma,
320 unsigned long address, pte_t pte)
321{
322 unsigned long flags;
323 unsigned int asid;
324 pgd_t *pgdp;
325 pmd_t *pmdp;
326 pte_t *ptep;
327 int idx;
328
Ralf Baechle41c594a2006-04-05 09:45:45 +0100329 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 address &= (PAGE_MASK << 1);
331 asid = read_c0_entryhi() & ASID_MASK;
332 write_c0_entryhi(address | asid);
333 pgdp = pgd_offset(vma->vm_mm, address);
334 mtc0_tlbw_hazard();
335 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200336 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 pmdp = pmd_offset(pgdp, address);
338 idx = read_c0_index();
339 ptep = pte_offset_map(pmdp, address);
340 write_c0_entrylo0(pte_val(*ptep++) >> 6);
341 write_c0_entrylo1(pte_val(*ptep) >> 6);
342 mtc0_tlbw_hazard();
343 if (idx < 0)
344 tlb_write_random();
345 else
346 tlb_write_indexed();
347 tlbw_use_hazard();
Ralf Baechle41c594a2006-04-05 09:45:45 +0100348 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350#endif
351
352void __init add_wired_entry(unsigned long entrylo0, unsigned long entrylo1,
353 unsigned long entryhi, unsigned long pagemask)
354{
355 unsigned long flags;
356 unsigned long wired;
357 unsigned long old_pagemask;
358 unsigned long old_ctx;
359
Ralf Baechle41c594a2006-04-05 09:45:45 +0100360 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 /* Save old context and create impossible VPN2 value */
362 old_ctx = read_c0_entryhi();
363 old_pagemask = read_c0_pagemask();
364 wired = read_c0_wired();
365 write_c0_wired(wired + 1);
366 write_c0_index(wired);
Ralf Baechle432bef22006-09-08 04:16:21 +0200367 tlbw_use_hazard(); /* What is the hazard here? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 write_c0_pagemask(pagemask);
369 write_c0_entryhi(entryhi);
370 write_c0_entrylo0(entrylo0);
371 write_c0_entrylo1(entrylo1);
372 mtc0_tlbw_hazard();
373 tlb_write_indexed();
374 tlbw_use_hazard();
375
376 write_c0_entryhi(old_ctx);
Ralf Baechle432bef22006-09-08 04:16:21 +0200377 tlbw_use_hazard(); /* What is the hazard here? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 write_c0_pagemask(old_pagemask);
379 local_flush_tlb_all();
Ralf Baechle41c594a2006-04-05 09:45:45 +0100380 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
383/*
384 * Used for loading TLB entries before trap_init() has started, when we
385 * don't actually want to add a wired entry which remains throughout the
386 * lifetime of the system
387 */
388
Ralf Baechle234fcd12008-03-08 09:56:28 +0000389static int temp_tlb_entry __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391__init int add_temporary_entry(unsigned long entrylo0, unsigned long entrylo1,
392 unsigned long entryhi, unsigned long pagemask)
393{
394 int ret = 0;
395 unsigned long flags;
396 unsigned long wired;
397 unsigned long old_pagemask;
398 unsigned long old_ctx;
399
Ralf Baechle41c594a2006-04-05 09:45:45 +0100400 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* Save old context and create impossible VPN2 value */
402 old_ctx = read_c0_entryhi();
403 old_pagemask = read_c0_pagemask();
404 wired = read_c0_wired();
405 if (--temp_tlb_entry < wired) {
Maciej W. Rozycki30442992005-02-01 23:02:12 +0000406 printk(KERN_WARNING
407 "No TLB space left for add_temporary_entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 ret = -ENOSPC;
409 goto out;
410 }
411
412 write_c0_index(temp_tlb_entry);
413 write_c0_pagemask(pagemask);
414 write_c0_entryhi(entryhi);
415 write_c0_entrylo0(entrylo0);
416 write_c0_entrylo1(entrylo1);
417 mtc0_tlbw_hazard();
418 tlb_write_indexed();
419 tlbw_use_hazard();
420
421 write_c0_entryhi(old_ctx);
422 write_c0_pagemask(old_pagemask);
423out:
Ralf Baechle41c594a2006-04-05 09:45:45 +0100424 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return ret;
426}
427
Ralf Baechle234fcd12008-03-08 09:56:28 +0000428static void __cpuinit probe_tlb(unsigned long config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 struct cpuinfo_mips *c = &current_cpu_data;
431 unsigned int reg;
432
433 /*
434 * If this isn't a MIPS32 / MIPS64 compliant CPU. Config 1 register
435 * is not supported, we assume R4k style. Cpu probing already figured
436 * out the number of tlb entries.
437 */
Maciej W. Rozycki30442992005-02-01 23:02:12 +0000438 if ((c->processor_id & 0xff0000) == PRID_COMP_LEGACY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100440#ifdef CONFIG_MIPS_MT_SMTC
441 /*
442 * If TLB is shared in SMTC system, total size already
443 * has been calculated and written into cpu_data tlbsize
444 */
445 if((smtc_status & SMTC_TLB_SHARED) == SMTC_TLB_SHARED)
446 return;
447#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 reg = read_c0_config1();
450 if (!((config >> 7) & 3))
451 panic("No TLB present");
452
453 c->tlbsize = ((reg >> 25) & 0x3f) + 1;
454}
455
Ralf Baechle234fcd12008-03-08 09:56:28 +0000456static int __cpuinitdata ntlb = 0;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100457static int __init set_ntlb(char *str)
458{
459 get_option(&str, &ntlb);
460 return 1;
461}
462
463__setup("ntlb=", set_ntlb);
464
Ralf Baechle234fcd12008-03-08 09:56:28 +0000465void __cpuinit tlb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 unsigned int config = read_c0_config();
468
469 /*
470 * You should never change this register:
471 * - On R4600 1.7 the tlbp never hits for pages smaller than
472 * the value in the c0_pagemask register.
473 * - The entire mm handling assumes the c0_pagemask register to
Thiemo Seufera7c29962008-02-29 00:43:47 +0000474 * be set to fixed-size pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 */
476 probe_tlb(config);
477 write_c0_pagemask(PM_DEFAULT_MASK);
478 write_c0_wired(0);
Ralf Baechlecde15b52009-01-06 23:07:20 +0000479 if (current_cpu_type() == CPU_R10000 ||
480 current_cpu_type() == CPU_R12000 ||
481 current_cpu_type() == CPU_R14000)
482 write_c0_framemask(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 temp_tlb_entry = current_cpu_data.tlbsize - 1;
Thiemo Seuferc6281ed2006-03-14 14:35:27 +0000484
485 /* From this point on the ARC firmware is dead. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 local_flush_tlb_all();
487
Thiemo Seuferc6281ed2006-03-14 14:35:27 +0000488 /* Did I tell you that ARC SUCKS? */
489
Ralf Baechle41c594a2006-04-05 09:45:45 +0100490 if (ntlb) {
491 if (ntlb > 1 && ntlb <= current_cpu_data.tlbsize) {
492 int wired = current_cpu_data.tlbsize - ntlb;
493 write_c0_wired(wired);
494 write_c0_index(wired-1);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100495 printk("Restricting TLB to %d entries\n", ntlb);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100496 } else
497 printk("Ignoring invalid argument ntlb=%d\n", ntlb);
498 }
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 build_tlb_refill_handler();
501}