blob: ae4ca24507072f8cd3a94b02a935442091aae76b [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 *
Justin P. Mattock79add622011-04-04 14:15:29 -07006 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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>
Ralf Baechle631330f2009-06-19 14:05:26 +010013#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/mm.h>
David Daneyfd062c82009-05-27 17:47:44 -070015#include <linux/hugetlb.h>
Sanjay Lalf2e36562012-11-21 18:34:10 -080016#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/cpu.h>
Ralf Baechle69f24d12013-09-17 10:25:47 +020019#include <asm/cpu-type.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/bootinfo.h>
21#include <asm/mmu_context.h>
22#include <asm/pgtable.h>
Markos Chandrasc01905e2013-11-14 16:12:22 +000023#include <asm/tlb.h>
Ralf Baechle3d18c982011-11-28 16:11:28 +000024#include <asm/tlbmisc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26extern void build_tlb_refill_handler(void);
27
Ralf Baechle41c594a2006-04-05 09:45:45 +010028/* Atomicity and interruptability */
29#ifdef CONFIG_MIPS_MT_SMTC
30
31#include <asm/smtc.h>
32#include <asm/mipsmtregs.h>
33
34#define ENTER_CRITICAL(flags) \
35 { \
36 unsigned int mvpflags; \
37 local_irq_save(flags);\
38 mvpflags = dvpe()
39#define EXIT_CRITICAL(flags) \
40 evpe(mvpflags); \
41 local_irq_restore(flags); \
42 }
43#else
44
45#define ENTER_CRITICAL(flags) local_irq_save(flags)
46#define EXIT_CRITICAL(flags) local_irq_restore(flags)
47
48#endif /* CONFIG_MIPS_MT_SMTC */
49
Fuxin Zhang2a21c732007-06-06 14:52:43 +080050/*
51 * LOONGSON2 has a 4 entry itlb which is a subset of dtlb,
52 * unfortrunately, itlb is not totally transparent to software.
53 */
Ralf Baechle14bd8c02013-09-25 18:21:26 +020054static inline void flush_itlb(void)
55{
56 switch (current_cpu_type()) {
57 case CPU_LOONGSON2:
58 write_c0_diag(4);
59 break;
60 default:
61 break;
62 }
63}
Fuxin Zhang2a21c732007-06-06 14:52:43 +080064
Ralf Baechle14bd8c02013-09-25 18:21:26 +020065static inline void flush_itlb_vm(struct vm_area_struct *vma)
66{
67 if (vma->vm_flags & VM_EXEC)
68 flush_itlb();
69}
Fuxin Zhang2a21c732007-06-06 14:52:43 +080070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071void local_flush_tlb_all(void)
72{
73 unsigned long flags;
74 unsigned long old_ctx;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +000075 int entry, ftlbhighset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Ralf Baechle41c594a2006-04-05 09:45:45 +010077 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 /* Save old context and create impossible VPN2 value */
79 old_ctx = read_c0_entryhi();
80 write_c0_entrylo0(0);
81 write_c0_entrylo1(0);
82
83 entry = read_c0_wired();
84
85 /* Blast 'em all away. */
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +000086 if (cpu_has_tlbinv) {
87 if (current_cpu_data.tlbsizevtlb) {
88 write_c0_index(0);
89 mtc0_tlbw_hazard();
90 tlbinvf(); /* invalidate VTLB */
91 }
92 ftlbhighset = current_cpu_data.tlbsizevtlb +
93 current_cpu_data.tlbsizeftlbsets;
94 for (entry = current_cpu_data.tlbsizevtlb;
95 entry < ftlbhighset;
96 entry++) {
97 write_c0_index(entry);
98 mtc0_tlbw_hazard();
99 tlbinvf(); /* invalidate one FTLB set */
100 }
Leonid Yegoshin601cfa72013-11-14 16:12:30 +0000101 } else {
102 while (entry < current_cpu_data.tlbsize) {
103 /* Make sure all entries differ. */
104 write_c0_entryhi(UNIQUE_ENTRYHI(entry));
105 write_c0_index(entry);
106 mtc0_tlbw_hazard();
107 tlb_write_indexed();
108 entry++;
109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111 tlbw_use_hazard();
112 write_c0_entryhi(old_ctx);
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200113 flush_itlb();
Ralf Baechle41c594a2006-04-05 09:45:45 +0100114 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
Sanjay Lalf2e36562012-11-21 18:34:10 -0800116EXPORT_SYMBOL(local_flush_tlb_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Thiemo Seufer172546b2005-04-02 10:21:56 +0000118/* All entries common to a mm share an asid. To effectively flush
119 these entries, we just bump the asid. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120void local_flush_tlb_mm(struct mm_struct *mm)
121{
Thiemo Seufer172546b2005-04-02 10:21:56 +0000122 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Thiemo Seufer172546b2005-04-02 10:21:56 +0000124 preempt_disable();
125
126 cpu = smp_processor_id();
127
128 if (cpu_context(cpu, mm) != 0) {
129 drop_mmu_context(mm, cpu);
130 }
131
132 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
136 unsigned long end)
137{
138 struct mm_struct *mm = vma->vm_mm;
139 int cpu = smp_processor_id();
140
141 if (cpu_context(cpu, mm) != 0) {
Greg Ungerera5e696e2009-05-20 16:12:32 +1000142 unsigned long size, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Ralf Baechle41c594a2006-04-05 09:45:45 +0100144 ENTER_CRITICAL(flags);
David Daneyac53c4f2012-12-03 12:44:26 -0800145 start = round_down(start, PAGE_SIZE << 1);
146 end = round_up(end, PAGE_SIZE << 1);
147 size = (end - start) >> (PAGE_SHIFT + 1);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000148 if (size <= (current_cpu_data.tlbsizeftlbsets ?
149 current_cpu_data.tlbsize / 8 :
150 current_cpu_data.tlbsize / 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 int oldpid = read_c0_entryhi();
152 int newpid = cpu_asid(cpu, mm);
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 while (start < end) {
155 int idx;
156
157 write_c0_entryhi(start | newpid);
David Daneyac53c4f2012-12-03 12:44:26 -0800158 start += (PAGE_SIZE << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 mtc0_tlbw_hazard();
160 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200161 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 idx = read_c0_index();
163 write_c0_entrylo0(0);
164 write_c0_entrylo1(0);
165 if (idx < 0)
166 continue;
167 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000168 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 mtc0_tlbw_hazard();
170 tlb_write_indexed();
171 }
172 tlbw_use_hazard();
173 write_c0_entryhi(oldpid);
174 } else {
175 drop_mmu_context(mm, cpu);
176 }
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200177 flush_itlb();
Ralf Baechle41c594a2006-04-05 09:45:45 +0100178 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180}
181
182void local_flush_tlb_kernel_range(unsigned long start, unsigned long end)
183{
Greg Ungerera5e696e2009-05-20 16:12:32 +1000184 unsigned long size, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Ralf Baechle41c594a2006-04-05 09:45:45 +0100186 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
188 size = (size + 1) >> 1;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000189 if (size <= (current_cpu_data.tlbsizeftlbsets ?
190 current_cpu_data.tlbsize / 8 :
191 current_cpu_data.tlbsize / 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 int pid = read_c0_entryhi();
193
194 start &= (PAGE_MASK << 1);
195 end += ((PAGE_SIZE << 1) - 1);
196 end &= (PAGE_MASK << 1);
197
198 while (start < end) {
199 int idx;
200
201 write_c0_entryhi(start);
202 start += (PAGE_SIZE << 1);
203 mtc0_tlbw_hazard();
204 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200205 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 idx = read_c0_index();
207 write_c0_entrylo0(0);
208 write_c0_entrylo1(0);
209 if (idx < 0)
210 continue;
211 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000212 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 mtc0_tlbw_hazard();
214 tlb_write_indexed();
215 }
216 tlbw_use_hazard();
217 write_c0_entryhi(pid);
218 } else {
219 local_flush_tlb_all();
220 }
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200221 flush_itlb();
Ralf Baechle41c594a2006-04-05 09:45:45 +0100222 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
226{
227 int cpu = smp_processor_id();
228
229 if (cpu_context(cpu, vma->vm_mm) != 0) {
230 unsigned long flags;
231 int oldpid, newpid, idx;
232
233 newpid = cpu_asid(cpu, vma->vm_mm);
234 page &= (PAGE_MASK << 1);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100235 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 oldpid = read_c0_entryhi();
237 write_c0_entryhi(page | newpid);
238 mtc0_tlbw_hazard();
239 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200240 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 idx = read_c0_index();
242 write_c0_entrylo0(0);
243 write_c0_entrylo1(0);
244 if (idx < 0)
245 goto finish;
246 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000247 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 mtc0_tlbw_hazard();
249 tlb_write_indexed();
250 tlbw_use_hazard();
251
252 finish:
253 write_c0_entryhi(oldpid);
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200254 flush_itlb_vm(vma);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100255 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257}
258
259/*
260 * This one is only used for pages with the global bit set so we don't care
261 * much about the ASID.
262 */
263void local_flush_tlb_one(unsigned long page)
264{
265 unsigned long flags;
266 int oldpid, idx;
267
Ralf Baechle41c594a2006-04-05 09:45:45 +0100268 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 oldpid = read_c0_entryhi();
Thiemo Seufer172546b2005-04-02 10:21:56 +0000270 page &= (PAGE_MASK << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 write_c0_entryhi(page);
272 mtc0_tlbw_hazard();
273 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200274 tlb_probe_hazard();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 idx = read_c0_index();
276 write_c0_entrylo0(0);
277 write_c0_entrylo1(0);
278 if (idx >= 0) {
279 /* Make sure all entries differ. */
Thiemo Seufer172546b2005-04-02 10:21:56 +0000280 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 mtc0_tlbw_hazard();
282 tlb_write_indexed();
283 tlbw_use_hazard();
284 }
285 write_c0_entryhi(oldpid);
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200286 flush_itlb();
Ralf Baechle41c594a2006-04-05 09:45:45 +0100287 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290/*
291 * We will need multiple versions of update_mmu_cache(), one that just
292 * updates the TLB with the new pte(s), and another which also checks
293 * for the R4k "end of page" hardware bug and does the needy.
294 */
295void __update_tlb(struct vm_area_struct * vma, unsigned long address, pte_t pte)
296{
297 unsigned long flags;
298 pgd_t *pgdp;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000299 pud_t *pudp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 pmd_t *pmdp;
301 pte_t *ptep;
302 int idx, pid;
303
304 /*
305 * Handle debugger faulting in for debugee.
306 */
307 if (current->active_mm != vma->vm_mm)
308 return;
309
Ralf Baechle41c594a2006-04-05 09:45:45 +0100310 ENTER_CRITICAL(flags);
Thiemo Seufer172546b2005-04-02 10:21:56 +0000311
David Daney48c4ac92013-05-13 13:56:44 -0700312 pid = read_c0_entryhi() & ASID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 address &= (PAGE_MASK << 1);
314 write_c0_entryhi(address | pid);
315 pgdp = pgd_offset(vma->vm_mm, address);
316 mtc0_tlbw_hazard();
317 tlb_probe();
Ralf Baechle432bef22006-09-08 04:16:21 +0200318 tlb_probe_hazard();
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000319 pudp = pud_offset(pgdp, address);
320 pmdp = pmd_offset(pudp, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 idx = read_c0_index();
David Daneyaa1762f2012-10-17 00:48:10 +0200322#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -0700323 /* this could be a huge page */
324 if (pmd_huge(*pmdp)) {
325 unsigned long lo;
326 write_c0_pagemask(PM_HUGE_MASK);
327 ptep = (pte_t *)pmdp;
David Daney6dd93442010-02-10 15:12:47 -0800328 lo = pte_to_entrylo(pte_val(*ptep));
David Daneyfd062c82009-05-27 17:47:44 -0700329 write_c0_entrylo0(lo);
330 write_c0_entrylo1(lo + (HPAGE_SIZE >> 7));
331
332 mtc0_tlbw_hazard();
333 if (idx < 0)
334 tlb_write_random();
335 else
336 tlb_write_indexed();
Ralf Baechlefb944c92012-10-17 01:01:21 +0200337 tlbw_use_hazard();
David Daneyfd062c82009-05-27 17:47:44 -0700338 write_c0_pagemask(PM_DEFAULT_MASK);
339 } else
340#endif
341 {
342 ptep = pte_offset_map(pmdp, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Chris Dearman962f4802007-09-19 00:46:32 +0100344#if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
David Daneyfd062c82009-05-27 17:47:44 -0700345 write_c0_entrylo0(ptep->pte_high);
346 ptep++;
347 write_c0_entrylo1(ptep->pte_high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348#else
David Daney6dd93442010-02-10 15:12:47 -0800349 write_c0_entrylo0(pte_to_entrylo(pte_val(*ptep++)));
350 write_c0_entrylo1(pte_to_entrylo(pte_val(*ptep)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351#endif
David Daneyfd062c82009-05-27 17:47:44 -0700352 mtc0_tlbw_hazard();
353 if (idx < 0)
354 tlb_write_random();
355 else
356 tlb_write_indexed();
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 tlbw_use_hazard();
Ralf Baechle14bd8c02013-09-25 18:21:26 +0200359 flush_itlb_vm(vma);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100360 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Manuel Lauss694b8c32011-08-02 19:51:08 +0200363void add_wired_entry(unsigned long entrylo0, unsigned long entrylo1,
364 unsigned long entryhi, unsigned long pagemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 unsigned long flags;
367 unsigned long wired;
368 unsigned long old_pagemask;
369 unsigned long old_ctx;
370
Ralf Baechle41c594a2006-04-05 09:45:45 +0100371 ENTER_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* Save old context and create impossible VPN2 value */
373 old_ctx = read_c0_entryhi();
374 old_pagemask = read_c0_pagemask();
375 wired = read_c0_wired();
376 write_c0_wired(wired + 1);
377 write_c0_index(wired);
Ralf Baechle432bef22006-09-08 04:16:21 +0200378 tlbw_use_hazard(); /* What is the hazard here? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 write_c0_pagemask(pagemask);
380 write_c0_entryhi(entryhi);
381 write_c0_entrylo0(entrylo0);
382 write_c0_entrylo1(entrylo1);
383 mtc0_tlbw_hazard();
384 tlb_write_indexed();
385 tlbw_use_hazard();
386
387 write_c0_entryhi(old_ctx);
Ralf Baechle432bef22006-09-08 04:16:21 +0200388 tlbw_use_hazard(); /* What is the hazard here? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 write_c0_pagemask(old_pagemask);
390 local_flush_tlb_all();
Ralf Baechle41c594a2006-04-05 09:45:45 +0100391 EXIT_CRITICAL(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
Ralf Baechle970d0322012-10-18 13:54:15 +0200394#ifdef CONFIG_TRANSPARENT_HUGEPAGE
395
396int __init has_transparent_hugepage(void)
397{
398 unsigned int mask;
399 unsigned long flags;
400
401 ENTER_CRITICAL(flags);
402 write_c0_pagemask(PM_HUGE_MASK);
403 back_to_back_c0_hazard();
404 mask = read_c0_pagemask();
405 write_c0_pagemask(PM_DEFAULT_MASK);
406
407 EXIT_CRITICAL(flags);
408
409 return mask == PM_HUGE_MASK;
410}
411
412#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
413
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000414static int ntlb;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100415static int __init set_ntlb(char *str)
416{
417 get_option(&str, &ntlb);
418 return 1;
419}
420
421__setup("ntlb=", set_ntlb);
422
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000423void tlb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /*
426 * You should never change this register:
427 * - On R4600 1.7 the tlbp never hits for pages smaller than
428 * the value in the c0_pagemask register.
429 * - The entire mm handling assumes the c0_pagemask register to
Thiemo Seufera7c29962008-02-29 00:43:47 +0000430 * be set to fixed-size pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 write_c0_pagemask(PM_DEFAULT_MASK);
433 write_c0_wired(0);
Ralf Baechlecde15b52009-01-06 23:07:20 +0000434 if (current_cpu_type() == CPU_R10000 ||
435 current_cpu_type() == CPU_R12000 ||
436 current_cpu_type() == CPU_R14000)
437 write_c0_framemask(0);
David Daney6dd93442010-02-10 15:12:47 -0800438
Steven J. Hill05857c62012-09-13 16:51:46 -0500439 if (cpu_has_rixi) {
David Daney6dd93442010-02-10 15:12:47 -0800440 /*
441 * Enable the no read, no exec bits, and enable large virtual
442 * address.
443 */
444 u32 pg = PG_RIE | PG_XIE;
445#ifdef CONFIG_64BIT
446 pg |= PG_ELPA;
447#endif
448 write_c0_pagegrain(pg);
449 }
450
Ralf Baechle70342282013-01-22 12:59:30 +0100451 /* From this point on the ARC firmware is dead. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 local_flush_tlb_all();
453
Thiemo Seuferc6281ed2006-03-14 14:35:27 +0000454 /* Did I tell you that ARC SUCKS? */
455
Ralf Baechle41c594a2006-04-05 09:45:45 +0100456 if (ntlb) {
457 if (ntlb > 1 && ntlb <= current_cpu_data.tlbsize) {
458 int wired = current_cpu_data.tlbsize - ntlb;
459 write_c0_wired(wired);
460 write_c0_index(wired-1);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100461 printk("Restricting TLB to %d entries\n", ntlb);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100462 } else
463 printk("Ignoring invalid argument ntlb=%d\n", ntlb);
464 }
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 build_tlb_refill_handler();
467}