]>
git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - arch/mips/mm/tlb-r4k.c
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
6 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
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.
11 #include <linux/init.h>
12 #include <linux/sched.h>
13 #include <linux/smp.h>
15 #include <linux/hugetlb.h>
18 #include <asm/bootinfo.h>
19 #include <asm/mmu_context.h>
20 #include <asm/pgtable.h>
21 #include <asm/tlbmisc.h>
23 extern void build_tlb_refill_handler(void);
26 * Make sure all entries differ. If they're not different
27 * MIPS32 will take revenge ...
29 #define UNIQUE_ENTRYHI(idx) (CKSEG0 + ((idx) << (PAGE_SHIFT + 1)))
31 /* Atomicity and interruptability */
32 #ifdef CONFIG_MIPS_MT_SMTC
35 #include <asm/mipsmtregs.h>
37 #define ENTER_CRITICAL(flags) \
39 unsigned int mvpflags; \
40 local_irq_save(flags);\
42 #define EXIT_CRITICAL(flags) \
44 local_irq_restore(flags); \
48 #define ENTER_CRITICAL(flags) local_irq_save(flags)
49 #define EXIT_CRITICAL(flags) local_irq_restore(flags)
51 #endif /* CONFIG_MIPS_MT_SMTC */
53 #if defined(CONFIG_CPU_LOONGSON2)
55 * LOONGSON2 has a 4 entry itlb which is a subset of dtlb,
56 * unfortrunately, itlb is not totally transparent to software.
58 #define FLUSH_ITLB write_c0_diag(4);
60 #define FLUSH_ITLB_VM(vma) { if ((vma)->vm_flags & VM_EXEC) write_c0_diag(4); }
65 #define FLUSH_ITLB_VM(vma)
69 void local_flush_tlb_all(void)
72 unsigned long old_ctx
;
75 ENTER_CRITICAL(flags
);
76 /* Save old context and create impossible VPN2 value */
77 old_ctx
= read_c0_entryhi();
81 entry
= read_c0_wired();
83 /* Blast 'em all away. */
84 while (entry
< current_cpu_data
.tlbsize
) {
85 /* Make sure all entries differ. */
86 write_c0_entryhi(UNIQUE_ENTRYHI(entry
));
87 write_c0_index(entry
);
93 write_c0_entryhi(old_ctx
);
98 /* All entries common to a mm share an asid. To effectively flush
99 these entries, we just bump the asid. */
100 void local_flush_tlb_mm(struct mm_struct
*mm
)
106 cpu
= smp_processor_id();
108 if (cpu_context(cpu
, mm
) != 0) {
109 drop_mmu_context(mm
, cpu
);
115 void local_flush_tlb_range(struct vm_area_struct
*vma
, unsigned long start
,
118 struct mm_struct
*mm
= vma
->vm_mm
;
119 int cpu
= smp_processor_id();
121 if (cpu_context(cpu
, mm
) != 0) {
122 unsigned long size
, flags
;
124 ENTER_CRITICAL(flags
);
125 start
= round_down(start
, PAGE_SIZE
<< 1);
126 end
= round_up(end
, PAGE_SIZE
<< 1);
127 size
= (end
- start
) >> (PAGE_SHIFT
+ 1);
128 if (size
<= current_cpu_data
.tlbsize
/2) {
129 int oldpid
= read_c0_entryhi();
130 int newpid
= cpu_asid(cpu
, mm
);
132 while (start
< end
) {
135 write_c0_entryhi(start
| newpid
);
136 start
+= (PAGE_SIZE
<< 1);
140 idx
= read_c0_index();
141 write_c0_entrylo0(0);
142 write_c0_entrylo1(0);
145 /* Make sure all entries differ. */
146 write_c0_entryhi(UNIQUE_ENTRYHI(idx
));
151 write_c0_entryhi(oldpid
);
153 drop_mmu_context(mm
, cpu
);
156 EXIT_CRITICAL(flags
);
160 void local_flush_tlb_kernel_range(unsigned long start
, unsigned long end
)
162 unsigned long size
, flags
;
164 ENTER_CRITICAL(flags
);
165 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();
170 start
&= (PAGE_MASK
<< 1);
171 end
+= ((PAGE_SIZE
<< 1) - 1);
172 end
&= (PAGE_MASK
<< 1);
174 while (start
< end
) {
177 write_c0_entryhi(start
);
178 start
+= (PAGE_SIZE
<< 1);
182 idx
= read_c0_index();
183 write_c0_entrylo0(0);
184 write_c0_entrylo1(0);
187 /* Make sure all entries differ. */
188 write_c0_entryhi(UNIQUE_ENTRYHI(idx
));
193 write_c0_entryhi(pid
);
195 local_flush_tlb_all();
198 EXIT_CRITICAL(flags
);
201 void local_flush_tlb_page(struct vm_area_struct
*vma
, unsigned long page
)
203 int cpu
= smp_processor_id();
205 if (cpu_context(cpu
, vma
->vm_mm
) != 0) {
207 int oldpid
, newpid
, idx
;
209 newpid
= cpu_asid(cpu
, vma
->vm_mm
);
210 page
&= (PAGE_MASK
<< 1);
211 ENTER_CRITICAL(flags
);
212 oldpid
= read_c0_entryhi();
213 write_c0_entryhi(page
| newpid
);
217 idx
= read_c0_index();
218 write_c0_entrylo0(0);
219 write_c0_entrylo1(0);
222 /* Make sure all entries differ. */
223 write_c0_entryhi(UNIQUE_ENTRYHI(idx
));
229 write_c0_entryhi(oldpid
);
231 EXIT_CRITICAL(flags
);
236 * This one is only used for pages with the global bit set so we don't care
237 * much about the ASID.
239 void local_flush_tlb_one(unsigned long page
)
244 ENTER_CRITICAL(flags
);
245 oldpid
= read_c0_entryhi();
246 page
&= (PAGE_MASK
<< 1);
247 write_c0_entryhi(page
);
251 idx
= read_c0_index();
252 write_c0_entrylo0(0);
253 write_c0_entrylo1(0);
255 /* Make sure all entries differ. */
256 write_c0_entryhi(UNIQUE_ENTRYHI(idx
));
261 write_c0_entryhi(oldpid
);
263 EXIT_CRITICAL(flags
);
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.
271 void __update_tlb(struct vm_area_struct
* vma
, unsigned long address
, pte_t pte
)
281 * Handle debugger faulting in for debugee.
283 if (current
->active_mm
!= vma
->vm_mm
)
286 ENTER_CRITICAL(flags
);
288 pid
= read_c0_entryhi() & ASID_MASK
;
289 address
&= (PAGE_MASK
<< 1);
290 write_c0_entryhi(address
| pid
);
291 pgdp
= pgd_offset(vma
->vm_mm
, address
);
295 pudp
= pud_offset(pgdp
, address
);
296 pmdp
= pmd_offset(pudp
, address
);
297 idx
= read_c0_index();
298 #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
299 /* this could be a huge page */
300 if (pmd_huge(*pmdp
)) {
302 write_c0_pagemask(PM_HUGE_MASK
);
303 ptep
= (pte_t
*)pmdp
;
304 lo
= pte_to_entrylo(pte_val(*ptep
));
305 write_c0_entrylo0(lo
);
306 write_c0_entrylo1(lo
+ (HPAGE_SIZE
>> 7));
314 write_c0_pagemask(PM_DEFAULT_MASK
);
318 ptep
= pte_offset_map(pmdp
, address
);
320 #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
321 write_c0_entrylo0(ptep
->pte_high
);
323 write_c0_entrylo1(ptep
->pte_high
);
325 write_c0_entrylo0(pte_to_entrylo(pte_val(*ptep
++)));
326 write_c0_entrylo1(pte_to_entrylo(pte_val(*ptep
)));
336 EXIT_CRITICAL(flags
);
339 void add_wired_entry(unsigned long entrylo0
, unsigned long entrylo1
,
340 unsigned long entryhi
, unsigned long pagemask
)
344 unsigned long old_pagemask
;
345 unsigned long old_ctx
;
347 ENTER_CRITICAL(flags
);
348 /* Save old context and create impossible VPN2 value */
349 old_ctx
= read_c0_entryhi();
350 old_pagemask
= read_c0_pagemask();
351 wired
= read_c0_wired();
352 write_c0_wired(wired
+ 1);
353 write_c0_index(wired
);
354 tlbw_use_hazard(); /* What is the hazard here? */
355 write_c0_pagemask(pagemask
);
356 write_c0_entryhi(entryhi
);
357 write_c0_entrylo0(entrylo0
);
358 write_c0_entrylo1(entrylo1
);
363 write_c0_entryhi(old_ctx
);
364 tlbw_use_hazard(); /* What is the hazard here? */
365 write_c0_pagemask(old_pagemask
);
366 local_flush_tlb_all();
367 EXIT_CRITICAL(flags
);
370 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
372 int __init
has_transparent_hugepage(void)
377 ENTER_CRITICAL(flags
);
378 write_c0_pagemask(PM_HUGE_MASK
);
379 back_to_back_c0_hazard();
380 mask
= read_c0_pagemask();
381 write_c0_pagemask(PM_DEFAULT_MASK
);
383 EXIT_CRITICAL(flags
);
385 return mask
== PM_HUGE_MASK
;
388 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
390 static int __cpuinitdata ntlb
;
391 static int __init
set_ntlb(char *str
)
393 get_option(&str
, &ntlb
);
397 __setup("ntlb=", set_ntlb
);
399 void __cpuinit
tlb_init(void)
402 * You should never change this register:
403 * - On R4600 1.7 the tlbp never hits for pages smaller than
404 * the value in the c0_pagemask register.
405 * - The entire mm handling assumes the c0_pagemask register to
406 * be set to fixed-size pages.
408 write_c0_pagemask(PM_DEFAULT_MASK
);
410 if (current_cpu_type() == CPU_R10000
||
411 current_cpu_type() == CPU_R12000
||
412 current_cpu_type() == CPU_R14000
)
413 write_c0_framemask(0);
417 * Enable the no read, no exec bits, and enable large virtual
420 u32 pg
= PG_RIE
| PG_XIE
;
424 write_c0_pagegrain(pg
);
427 /* From this point on the ARC firmware is dead. */
428 local_flush_tlb_all();
430 /* Did I tell you that ARC SUCKS? */
433 if (ntlb
> 1 && ntlb
<= current_cpu_data
.tlbsize
) {
434 int wired
= current_cpu_data
.tlbsize
- ntlb
;
435 write_c0_wired(wired
);
436 write_c0_index(wired
-1);
437 printk("Restricting TLB to %d entries\n", ntlb
);
439 printk("Ignoring invalid argument ntlb=%d\n", ntlb
);
442 build_tlb_refill_handler();