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 * Synthesize TLB refill handlers at runtime.
8 * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer
9 * Copyright (C) 2005, 2007, 2008, 2009 Maciej W. Rozycki
10 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org)
11 * Copyright (C) 2008, 2009 Cavium Networks, Inc.
13 * ... and the days got worse and worse and now you see
14 * I've gone completly out of my mind.
16 * They're coming to take me a away haha
17 * they're coming to take me a away hoho hihi haha
18 * to the funny farm where code is beautiful all the time ...
20 * (Condolences to Napoleon XIV)
23 #include <linux/bug.h>
24 #include <linux/kernel.h>
25 #include <linux/types.h>
26 #include <linux/smp.h>
27 #include <linux/string.h>
28 #include <linux/init.h>
29 #include <linux/cache.h>
31 #include <asm/cacheflush.h>
32 #include <asm/pgtable.h>
35 #include <asm/setup.h>
38 * TLB load/store/modify handlers.
40 * Only the fastpath gets synthesized at runtime, the slowpath for
41 * do_page_fault remains normal asm.
43 extern void tlb_do_page_fault_0(void);
44 extern void tlb_do_page_fault_1(void);
46 struct work_registers
{
55 } ____cacheline_aligned_in_smp
;
57 static struct tlb_reg_save handler_reg_save
[NR_CPUS
];
59 static inline int r45k_bvahwbug(void)
61 /* XXX: We should probe for the presence of this bug, but we don't. */
65 static inline int r4k_250MHZhwbug(void)
67 /* XXX: We should probe for the presence of this bug, but we don't. */
71 static inline int __maybe_unused
bcm1250_m3_war(void)
73 return BCM1250_M3_WAR
;
76 static inline int __maybe_unused
r10000_llsc_war(void)
78 return R10000_LLSC_WAR
;
81 static int use_bbit_insns(void)
83 switch (current_cpu_type()) {
84 case CPU_CAVIUM_OCTEON
:
85 case CPU_CAVIUM_OCTEON_PLUS
:
86 case CPU_CAVIUM_OCTEON2
:
93 static int use_lwx_insns(void)
95 switch (current_cpu_type()) {
96 case CPU_CAVIUM_OCTEON2
:
102 #if defined(CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE) && \
103 CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE > 0
104 static bool scratchpad_available(void)
108 static int scratchpad_offset(int i
)
111 * CVMSEG starts at address -32768 and extends for
112 * CAVIUM_OCTEON_CVMSEG_SIZE 128 byte cache lines.
114 i
+= 1; /* Kernel use starts at the top and works down. */
115 return CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE
* 128 - (8 * i
) - 32768;
118 static bool scratchpad_available(void)
122 static int scratchpad_offset(int i
)
125 /* Really unreachable, but evidently some GCC want this. */
130 * Found by experiment: At least some revisions of the 4kc throw under
131 * some circumstances a machine check exception, triggered by invalid
132 * values in the index register. Delaying the tlbp instruction until
133 * after the next branch, plus adding an additional nop in front of
134 * tlbwi/tlbwr avoids the invalid index register values. Nobody knows
135 * why; it's not an issue caused by the core RTL.
138 static int __cpuinit
m4kc_tlbp_war(void)
140 return (current_cpu_data
.processor_id
& 0xffff00) ==
141 (PRID_COMP_MIPS
| PRID_IMP_4KC
);
144 /* Handle labels (which must be positive integers). */
146 label_second_part
= 1,
152 label_tlbl_goaround1
,
153 label_tlbl_goaround2
,
157 label_smp_pgtable_change
,
158 label_r3000_write_probe_fail
,
159 label_large_segbits_fault
,
160 #ifdef CONFIG_HUGETLB_PAGE
161 label_tlb_huge_update
,
165 UASM_L_LA(_second_part
)
168 UASM_L_LA(_vmalloc_done
)
169 UASM_L_LA(_tlbw_hazard
)
171 UASM_L_LA(_tlbl_goaround1
)
172 UASM_L_LA(_tlbl_goaround2
)
173 UASM_L_LA(_nopage_tlbl
)
174 UASM_L_LA(_nopage_tlbs
)
175 UASM_L_LA(_nopage_tlbm
)
176 UASM_L_LA(_smp_pgtable_change
)
177 UASM_L_LA(_r3000_write_probe_fail
)
178 UASM_L_LA(_large_segbits_fault
)
179 #ifdef CONFIG_HUGETLB_PAGE
180 UASM_L_LA(_tlb_huge_update
)
184 * For debug purposes.
186 static inline void dump_handler(const u32
*handler
, int count
)
190 pr_debug("\t.set push\n");
191 pr_debug("\t.set noreorder\n");
193 for (i
= 0; i
< count
; i
++)
194 pr_debug("\t%p\t.word 0x%08x\n", &handler
[i
], handler
[i
]);
196 pr_debug("\t.set pop\n");
199 /* The only general purpose registers allowed in TLB handlers. */
203 /* Some CP0 registers */
204 #define C0_INDEX 0, 0
205 #define C0_ENTRYLO0 2, 0
206 #define C0_TCBIND 2, 2
207 #define C0_ENTRYLO1 3, 0
208 #define C0_CONTEXT 4, 0
209 #define C0_PAGEMASK 5, 0
210 #define C0_BADVADDR 8, 0
211 #define C0_ENTRYHI 10, 0
213 #define C0_XCONTEXT 20, 0
216 # define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_XCONTEXT)
218 # define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_CONTEXT)
221 /* The worst case length of the handler is around 18 instructions for
222 * R3000-style TLBs and up to 63 instructions for R4000-style TLBs.
223 * Maximum space available is 32 instructions for R3000 and 64
224 * instructions for R4000.
226 * We deliberately chose a buffer size of 128, so we won't scribble
227 * over anything important on overflow before we panic.
229 static u32 tlb_handler
[128] __cpuinitdata
;
231 /* simply assume worst case size for labels and relocs */
232 static struct uasm_label labels
[128] __cpuinitdata
;
233 static struct uasm_reloc relocs
[128] __cpuinitdata
;
236 static int check_for_high_segbits __cpuinitdata
;
239 static int check_for_high_segbits __cpuinitdata
;
241 static unsigned int kscratch_used_mask __cpuinitdata
;
243 static int __cpuinit
allocate_kscratch(void)
246 unsigned int a
= cpu_data
[0].kscratch_mask
& ~kscratch_used_mask
;
253 r
--; /* make it zero based */
255 kscratch_used_mask
|= (1 << r
);
260 static int scratch_reg __cpuinitdata
;
261 static int pgd_reg __cpuinitdata
;
262 enum vmalloc64_mode
{not_refill
, refill_scratch
, refill_noscratch
};
264 static struct work_registers __cpuinit
build_get_work_registers(u32
**p
)
266 struct work_registers r
;
268 int smp_processor_id_reg
;
269 int smp_processor_id_sel
;
270 int smp_processor_id_shift
;
272 if (scratch_reg
> 0) {
273 /* Save in CPU local C0_KScratch? */
274 UASM_i_MTC0(p
, 1, 31, scratch_reg
);
281 if (num_possible_cpus() > 1) {
282 #ifdef CONFIG_MIPS_PGD_C0_CONTEXT
283 smp_processor_id_shift
= 51;
284 smp_processor_id_reg
= 20; /* XContext */
285 smp_processor_id_sel
= 0;
288 smp_processor_id_shift
= 25;
289 smp_processor_id_reg
= 4; /* Context */
290 smp_processor_id_sel
= 0;
293 smp_processor_id_shift
= 26;
294 smp_processor_id_reg
= 4; /* Context */
295 smp_processor_id_sel
= 0;
298 /* Get smp_processor_id */
299 UASM_i_MFC0(p
, K0
, smp_processor_id_reg
, smp_processor_id_sel
);
300 UASM_i_SRL_SAFE(p
, K0
, K0
, smp_processor_id_shift
);
302 /* handler_reg_save index in K0 */
303 UASM_i_SLL(p
, K0
, K0
, ilog2(sizeof(struct tlb_reg_save
)));
305 UASM_i_LA(p
, K1
, (long)&handler_reg_save
);
306 UASM_i_ADDU(p
, K0
, K0
, K1
);
308 UASM_i_LA(p
, K0
, (long)&handler_reg_save
);
310 /* K0 now points to save area, save $1 and $2 */
311 UASM_i_SW(p
, 1, offsetof(struct tlb_reg_save
, a
), K0
);
312 UASM_i_SW(p
, 2, offsetof(struct tlb_reg_save
, b
), K0
);
320 static void __cpuinit
build_restore_work_registers(u32
**p
)
322 if (scratch_reg
> 0) {
323 UASM_i_MFC0(p
, 1, 31, scratch_reg
);
326 /* K0 already points to save area, restore $1 and $2 */
327 UASM_i_LW(p
, 1, offsetof(struct tlb_reg_save
, a
), K0
);
328 UASM_i_LW(p
, 2, offsetof(struct tlb_reg_save
, b
), K0
);
331 #ifndef CONFIG_MIPS_PGD_C0_CONTEXT
334 * CONFIG_MIPS_PGD_C0_CONTEXT implies 64 bit and lack of pgd_current,
335 * we cannot do r3000 under these circumstances.
337 * Declare pgd_current here instead of including mmu_context.h to avoid type
338 * conflicts for tlbmiss_handler_setup_pgd
340 extern unsigned long pgd_current
[];
343 * The R3000 TLB handler is simple.
345 static void __cpuinit
build_r3000_tlb_refill_handler(void)
347 long pgdc
= (long)pgd_current
;
350 memset(tlb_handler
, 0, sizeof(tlb_handler
));
353 uasm_i_mfc0(&p
, K0
, C0_BADVADDR
);
354 uasm_i_lui(&p
, K1
, uasm_rel_hi(pgdc
)); /* cp0 delay */
355 uasm_i_lw(&p
, K1
, uasm_rel_lo(pgdc
), K1
);
356 uasm_i_srl(&p
, K0
, K0
, 22); /* load delay */
357 uasm_i_sll(&p
, K0
, K0
, 2);
358 uasm_i_addu(&p
, K1
, K1
, K0
);
359 uasm_i_mfc0(&p
, K0
, C0_CONTEXT
);
360 uasm_i_lw(&p
, K1
, 0, K1
); /* cp0 delay */
361 uasm_i_andi(&p
, K0
, K0
, 0xffc); /* load delay */
362 uasm_i_addu(&p
, K1
, K1
, K0
);
363 uasm_i_lw(&p
, K0
, 0, K1
);
364 uasm_i_nop(&p
); /* load delay */
365 uasm_i_mtc0(&p
, K0
, C0_ENTRYLO0
);
366 uasm_i_mfc0(&p
, K1
, C0_EPC
); /* cp0 delay */
367 uasm_i_tlbwr(&p
); /* cp0 delay */
369 uasm_i_rfe(&p
); /* branch delay */
371 if (p
> tlb_handler
+ 32)
372 panic("TLB refill handler space exceeded");
374 pr_debug("Wrote TLB refill handler (%u instructions).\n",
375 (unsigned int)(p
- tlb_handler
));
377 memcpy((void *)ebase
, tlb_handler
, 0x80);
379 dump_handler((u32
*)ebase
, 32);
381 #endif /* CONFIG_MIPS_PGD_C0_CONTEXT */
384 * The R4000 TLB handler is much more complicated. We have two
385 * consecutive handler areas with 32 instructions space each.
386 * Since they aren't used at the same time, we can overflow in the
387 * other one.To keep things simple, we first assume linear space,
388 * then we relocate it to the final handler layout as needed.
390 static u32 final_handler
[64] __cpuinitdata
;
395 * From the IDT errata for the QED RM5230 (Nevada), processor revision 1.0:
396 * 2. A timing hazard exists for the TLBP instruction.
398 * stalling_instruction
401 * The JTLB is being read for the TLBP throughout the stall generated by the
402 * previous instruction. This is not really correct as the stalling instruction
403 * can modify the address used to access the JTLB. The failure symptom is that
404 * the TLBP instruction will use an address created for the stalling instruction
405 * and not the address held in C0_ENHI and thus report the wrong results.
407 * The software work-around is to not allow the instruction preceding the TLBP
408 * to stall - make it an NOP or some other instruction guaranteed not to stall.
410 * Errata 2 will not be fixed. This errata is also on the R5000.
412 * As if we MIPS hackers wouldn't know how to nop pipelines happy ...
414 static void __cpuinit __maybe_unused
build_tlb_probe_entry(u32
**p
)
416 switch (current_cpu_type()) {
417 /* Found by experiment: R4600 v2.0/R4700 needs this, too. */
434 * Write random or indexed TLB entry, and care about the hazards from
435 * the preceding mtc0 and for the following eret.
437 enum tlb_write_entry
{ tlb_random
, tlb_indexed
};
439 static void __cpuinit
build_tlb_write_entry(u32
**p
, struct uasm_label
**l
,
440 struct uasm_reloc
**r
,
441 enum tlb_write_entry wmode
)
443 void(*tlbw
)(u32
**) = NULL
;
446 case tlb_random
: tlbw
= uasm_i_tlbwr
; break;
447 case tlb_indexed
: tlbw
= uasm_i_tlbwi
; break;
450 if (cpu_has_mips_r2
) {
451 if (cpu_has_mips_r2_exec_hazard
)
457 switch (current_cpu_type()) {
465 * This branch uses up a mtc0 hazard nop slot and saves
466 * two nops after the tlbw instruction.
468 uasm_il_bgezl(p
, r
, 0, label_tlbw_hazard
);
470 uasm_l_tlbw_hazard(l
, *p
);
516 uasm_i_nop(p
); /* QED specifies 2 nops hazard */
518 * This branch uses up a mtc0 hazard nop slot and saves
519 * a nop after the tlbw instruction.
521 uasm_il_bgezl(p
, r
, 0, label_tlbw_hazard
);
523 uasm_l_tlbw_hazard(l
, *p
);
536 * When the JTLB is updated by tlbwi or tlbwr, a subsequent
537 * use of the JTLB for instructions should not occur for 4
538 * cpu cycles and use for data translations should not occur
578 panic("No TLB refill handler yet (CPU type: %d)",
579 current_cpu_data
.cputype
);
584 static __cpuinit __maybe_unused
void build_convert_pte_to_entrylo(u32
**p
,
587 if (kernel_uses_smartmips_rixi
) {
588 UASM_i_SRL(p
, reg
, reg
, ilog2(_PAGE_NO_EXEC
));
589 UASM_i_ROTR(p
, reg
, reg
, ilog2(_PAGE_GLOBAL
) - ilog2(_PAGE_NO_EXEC
));
591 #ifdef CONFIG_64BIT_PHYS_ADDR
592 uasm_i_dsrl_safe(p
, reg
, reg
, ilog2(_PAGE_GLOBAL
));
594 UASM_i_SRL(p
, reg
, reg
, ilog2(_PAGE_GLOBAL
));
599 #ifdef CONFIG_HUGETLB_PAGE
601 static __cpuinit
void build_restore_pagemask(u32
**p
,
602 struct uasm_reloc
**r
,
607 if (restore_scratch
) {
608 /* Reset default page size */
609 if (PM_DEFAULT_MASK
>> 16) {
610 uasm_i_lui(p
, tmp
, PM_DEFAULT_MASK
>> 16);
611 uasm_i_ori(p
, tmp
, tmp
, PM_DEFAULT_MASK
& 0xffff);
612 uasm_i_mtc0(p
, tmp
, C0_PAGEMASK
);
613 uasm_il_b(p
, r
, lid
);
614 } else if (PM_DEFAULT_MASK
) {
615 uasm_i_ori(p
, tmp
, 0, PM_DEFAULT_MASK
);
616 uasm_i_mtc0(p
, tmp
, C0_PAGEMASK
);
617 uasm_il_b(p
, r
, lid
);
619 uasm_i_mtc0(p
, 0, C0_PAGEMASK
);
620 uasm_il_b(p
, r
, lid
);
623 UASM_i_MFC0(p
, 1, 31, scratch_reg
);
625 UASM_i_LW(p
, 1, scratchpad_offset(0), 0);
627 /* Reset default page size */
628 if (PM_DEFAULT_MASK
>> 16) {
629 uasm_i_lui(p
, tmp
, PM_DEFAULT_MASK
>> 16);
630 uasm_i_ori(p
, tmp
, tmp
, PM_DEFAULT_MASK
& 0xffff);
631 uasm_il_b(p
, r
, lid
);
632 uasm_i_mtc0(p
, tmp
, C0_PAGEMASK
);
633 } else if (PM_DEFAULT_MASK
) {
634 uasm_i_ori(p
, tmp
, 0, PM_DEFAULT_MASK
);
635 uasm_il_b(p
, r
, lid
);
636 uasm_i_mtc0(p
, tmp
, C0_PAGEMASK
);
638 uasm_il_b(p
, r
, lid
);
639 uasm_i_mtc0(p
, 0, C0_PAGEMASK
);
644 static __cpuinit
void build_huge_tlb_write_entry(u32
**p
,
645 struct uasm_label
**l
,
646 struct uasm_reloc
**r
,
648 enum tlb_write_entry wmode
,
651 /* Set huge page tlb entry size */
652 uasm_i_lui(p
, tmp
, PM_HUGE_MASK
>> 16);
653 uasm_i_ori(p
, tmp
, tmp
, PM_HUGE_MASK
& 0xffff);
654 uasm_i_mtc0(p
, tmp
, C0_PAGEMASK
);
656 build_tlb_write_entry(p
, l
, r
, wmode
);
658 build_restore_pagemask(p
, r
, tmp
, label_leave
, restore_scratch
);
662 * Check if Huge PTE is present, if so then jump to LABEL.
664 static void __cpuinit
665 build_is_huge_pte(u32
**p
, struct uasm_reloc
**r
, unsigned int tmp
,
666 unsigned int pmd
, int lid
)
668 UASM_i_LW(p
, tmp
, 0, pmd
);
669 if (use_bbit_insns()) {
670 uasm_il_bbit1(p
, r
, tmp
, ilog2(_PAGE_HUGE
), lid
);
672 uasm_i_andi(p
, tmp
, tmp
, _PAGE_HUGE
);
673 uasm_il_bnez(p
, r
, tmp
, lid
);
677 static __cpuinit
void build_huge_update_entries(u32
**p
,
684 * A huge PTE describes an area the size of the
685 * configured huge page size. This is twice the
686 * of the large TLB entry size we intend to use.
687 * A TLB entry half the size of the configured
688 * huge page size is configured into entrylo0
689 * and entrylo1 to cover the contiguous huge PTE
692 small_sequence
= (HPAGE_SIZE
>> 7) < 0x10000;
694 /* We can clobber tmp. It isn't used after this.*/
696 uasm_i_lui(p
, tmp
, HPAGE_SIZE
>> (7 + 16));
698 build_convert_pte_to_entrylo(p
, pte
);
699 UASM_i_MTC0(p
, pte
, C0_ENTRYLO0
); /* load it */
700 /* convert to entrylo1 */
702 UASM_i_ADDIU(p
, pte
, pte
, HPAGE_SIZE
>> 7);
704 UASM_i_ADDU(p
, pte
, pte
, tmp
);
706 UASM_i_MTC0(p
, pte
, C0_ENTRYLO1
); /* load it */
709 static __cpuinit
void build_huge_handler_tail(u32
**p
,
710 struct uasm_reloc
**r
,
711 struct uasm_label
**l
,
716 UASM_i_SC(p
, pte
, 0, ptr
);
717 uasm_il_beqz(p
, r
, pte
, label_tlb_huge_update
);
718 UASM_i_LW(p
, pte
, 0, ptr
); /* Needed because SC killed our PTE */
720 UASM_i_SW(p
, pte
, 0, ptr
);
722 build_huge_update_entries(p
, pte
, ptr
);
723 build_huge_tlb_write_entry(p
, l
, r
, pte
, tlb_indexed
, 0);
725 #endif /* CONFIG_HUGETLB_PAGE */
729 * TMP and PTR are scratch.
730 * TMP will be clobbered, PTR will hold the pmd entry.
732 static void __cpuinit
733 build_get_pmde64(u32
**p
, struct uasm_label
**l
, struct uasm_reloc
**r
,
734 unsigned int tmp
, unsigned int ptr
)
736 #ifndef CONFIG_MIPS_PGD_C0_CONTEXT
737 long pgdc
= (long)pgd_current
;
740 * The vmalloc handling is not in the hotpath.
742 uasm_i_dmfc0(p
, tmp
, C0_BADVADDR
);
744 if (check_for_high_segbits
) {
746 * The kernel currently implicitely assumes that the
747 * MIPS SEGBITS parameter for the processor is
748 * (PGDIR_SHIFT+PGDIR_BITS) or less, and will never
749 * allocate virtual addresses outside the maximum
750 * range for SEGBITS = (PGDIR_SHIFT+PGDIR_BITS). But
751 * that doesn't prevent user code from accessing the
752 * higher xuseg addresses. Here, we make sure that
753 * everything but the lower xuseg addresses goes down
754 * the module_alloc/vmalloc path.
756 uasm_i_dsrl_safe(p
, ptr
, tmp
, PGDIR_SHIFT
+ PGD_ORDER
+ PAGE_SHIFT
- 3);
757 uasm_il_bnez(p
, r
, ptr
, label_vmalloc
);
759 uasm_il_bltz(p
, r
, tmp
, label_vmalloc
);
761 /* No uasm_i_nop needed here, since the next insn doesn't touch TMP. */
763 #ifdef CONFIG_MIPS_PGD_C0_CONTEXT
765 /* pgd is in pgd_reg */
766 UASM_i_MFC0(p
, ptr
, 31, pgd_reg
);
769 * &pgd << 11 stored in CONTEXT [23..63].
771 UASM_i_MFC0(p
, ptr
, C0_CONTEXT
);
773 /* Clear lower 23 bits of context. */
774 uasm_i_dins(p
, ptr
, 0, 0, 23);
776 /* 1 0 1 0 1 << 6 xkphys cached */
777 uasm_i_ori(p
, ptr
, ptr
, 0x540);
778 uasm_i_drotr(p
, ptr
, ptr
, 11);
780 #elif defined(CONFIG_SMP)
781 # ifdef CONFIG_MIPS_MT_SMTC
783 * SMTC uses TCBind value as "CPU" index
785 uasm_i_mfc0(p
, ptr
, C0_TCBIND
);
786 uasm_i_dsrl_safe(p
, ptr
, ptr
, 19);
789 * 64 bit SMP running in XKPHYS has smp_processor_id() << 3
792 uasm_i_dmfc0(p
, ptr
, C0_CONTEXT
);
793 uasm_i_dsrl_safe(p
, ptr
, ptr
, 23);
795 UASM_i_LA_mostly(p
, tmp
, pgdc
);
796 uasm_i_daddu(p
, ptr
, ptr
, tmp
);
797 uasm_i_dmfc0(p
, tmp
, C0_BADVADDR
);
798 uasm_i_ld(p
, ptr
, uasm_rel_lo(pgdc
), ptr
);
800 UASM_i_LA_mostly(p
, ptr
, pgdc
);
801 uasm_i_ld(p
, ptr
, uasm_rel_lo(pgdc
), ptr
);
804 uasm_l_vmalloc_done(l
, *p
);
806 /* get pgd offset in bytes */
807 uasm_i_dsrl_safe(p
, tmp
, tmp
, PGDIR_SHIFT
- 3);
809 uasm_i_andi(p
, tmp
, tmp
, (PTRS_PER_PGD
- 1)<<3);
810 uasm_i_daddu(p
, ptr
, ptr
, tmp
); /* add in pgd offset */
811 #ifndef __PAGETABLE_PMD_FOLDED
812 uasm_i_dmfc0(p
, tmp
, C0_BADVADDR
); /* get faulting address */
813 uasm_i_ld(p
, ptr
, 0, ptr
); /* get pmd pointer */
814 uasm_i_dsrl_safe(p
, tmp
, tmp
, PMD_SHIFT
-3); /* get pmd offset in bytes */
815 uasm_i_andi(p
, tmp
, tmp
, (PTRS_PER_PMD
- 1)<<3);
816 uasm_i_daddu(p
, ptr
, ptr
, tmp
); /* add in pmd offset */
821 * BVADDR is the faulting address, PTR is scratch.
822 * PTR will hold the pgd for vmalloc.
824 static void __cpuinit
825 build_get_pgd_vmalloc64(u32
**p
, struct uasm_label
**l
, struct uasm_reloc
**r
,
826 unsigned int bvaddr
, unsigned int ptr
,
827 enum vmalloc64_mode mode
)
829 long swpd
= (long)swapper_pg_dir
;
830 int single_insn_swpd
;
831 int did_vmalloc_branch
= 0;
833 single_insn_swpd
= uasm_in_compat_space_p(swpd
) && !uasm_rel_lo(swpd
);
835 uasm_l_vmalloc(l
, *p
);
837 if (mode
!= not_refill
&& check_for_high_segbits
) {
838 if (single_insn_swpd
) {
839 uasm_il_bltz(p
, r
, bvaddr
, label_vmalloc_done
);
840 uasm_i_lui(p
, ptr
, uasm_rel_hi(swpd
));
841 did_vmalloc_branch
= 1;
844 uasm_il_bgez(p
, r
, bvaddr
, label_large_segbits_fault
);
847 if (!did_vmalloc_branch
) {
848 if (uasm_in_compat_space_p(swpd
) && !uasm_rel_lo(swpd
)) {
849 uasm_il_b(p
, r
, label_vmalloc_done
);
850 uasm_i_lui(p
, ptr
, uasm_rel_hi(swpd
));
852 UASM_i_LA_mostly(p
, ptr
, swpd
);
853 uasm_il_b(p
, r
, label_vmalloc_done
);
854 if (uasm_in_compat_space_p(swpd
))
855 uasm_i_addiu(p
, ptr
, ptr
, uasm_rel_lo(swpd
));
857 uasm_i_daddiu(p
, ptr
, ptr
, uasm_rel_lo(swpd
));
860 if (mode
!= not_refill
&& check_for_high_segbits
) {
861 uasm_l_large_segbits_fault(l
, *p
);
863 * We get here if we are an xsseg address, or if we are
864 * an xuseg address above (PGDIR_SHIFT+PGDIR_BITS) boundary.
866 * Ignoring xsseg (assume disabled so would generate
867 * (address errors?), the only remaining possibility
868 * is the upper xuseg addresses. On processors with
869 * TLB_SEGBITS <= PGDIR_SHIFT+PGDIR_BITS, these
870 * addresses would have taken an address error. We try
871 * to mimic that here by taking a load/istream page
874 UASM_i_LA(p
, ptr
, (unsigned long)tlb_do_page_fault_0
);
877 if (mode
== refill_scratch
) {
879 UASM_i_MFC0(p
, 1, 31, scratch_reg
);
881 UASM_i_LW(p
, 1, scratchpad_offset(0), 0);
888 #else /* !CONFIG_64BIT */
891 * TMP and PTR are scratch.
892 * TMP will be clobbered, PTR will hold the pgd entry.
894 static void __cpuinit __maybe_unused
895 build_get_pgde32(u32
**p
, unsigned int tmp
, unsigned int ptr
)
897 long pgdc
= (long)pgd_current
;
899 /* 32 bit SMP has smp_processor_id() stored in CONTEXT. */
901 #ifdef CONFIG_MIPS_MT_SMTC
903 * SMTC uses TCBind value as "CPU" index
905 uasm_i_mfc0(p
, ptr
, C0_TCBIND
);
906 UASM_i_LA_mostly(p
, tmp
, pgdc
);
907 uasm_i_srl(p
, ptr
, ptr
, 19);
910 * smp_processor_id() << 3 is stored in CONTEXT.
912 uasm_i_mfc0(p
, ptr
, C0_CONTEXT
);
913 UASM_i_LA_mostly(p
, tmp
, pgdc
);
914 uasm_i_srl(p
, ptr
, ptr
, 23);
916 uasm_i_addu(p
, ptr
, tmp
, ptr
);
918 UASM_i_LA_mostly(p
, ptr
, pgdc
);
920 uasm_i_mfc0(p
, tmp
, C0_BADVADDR
); /* get faulting address */
921 uasm_i_lw(p
, ptr
, uasm_rel_lo(pgdc
), ptr
);
922 uasm_i_srl(p
, tmp
, tmp
, PGDIR_SHIFT
); /* get pgd only bits */
923 uasm_i_sll(p
, tmp
, tmp
, PGD_T_LOG2
);
924 uasm_i_addu(p
, ptr
, ptr
, tmp
); /* add in pgd offset */
927 #endif /* !CONFIG_64BIT */
929 static void __cpuinit
build_adjust_context(u32
**p
, unsigned int ctx
)
931 unsigned int shift
= 4 - (PTE_T_LOG2
+ 1) + PAGE_SHIFT
- 12;
932 unsigned int mask
= (PTRS_PER_PTE
/ 2 - 1) << (PTE_T_LOG2
+ 1);
934 switch (current_cpu_type()) {
951 UASM_i_SRL(p
, ctx
, ctx
, shift
);
952 uasm_i_andi(p
, ctx
, ctx
, mask
);
955 static void __cpuinit
build_get_ptep(u32
**p
, unsigned int tmp
, unsigned int ptr
)
958 * Bug workaround for the Nevada. It seems as if under certain
959 * circumstances the move from cp0_context might produce a
960 * bogus result when the mfc0 instruction and its consumer are
961 * in a different cacheline or a load instruction, probably any
962 * memory reference, is between them.
964 switch (current_cpu_type()) {
966 UASM_i_LW(p
, ptr
, 0, ptr
);
967 GET_CONTEXT(p
, tmp
); /* get context reg */
971 GET_CONTEXT(p
, tmp
); /* get context reg */
972 UASM_i_LW(p
, ptr
, 0, ptr
);
976 build_adjust_context(p
, tmp
);
977 UASM_i_ADDU(p
, ptr
, ptr
, tmp
); /* add in offset */
980 static void __cpuinit
build_update_entries(u32
**p
, unsigned int tmp
,
984 * 64bit address support (36bit on a 32bit CPU) in a 32bit
985 * Kernel is a special case. Only a few CPUs use it.
987 #ifdef CONFIG_64BIT_PHYS_ADDR
988 if (cpu_has_64bits
) {
989 uasm_i_ld(p
, tmp
, 0, ptep
); /* get even pte */
990 uasm_i_ld(p
, ptep
, sizeof(pte_t
), ptep
); /* get odd pte */
991 if (kernel_uses_smartmips_rixi
) {
992 UASM_i_SRL(p
, tmp
, tmp
, ilog2(_PAGE_NO_EXEC
));
993 UASM_i_SRL(p
, ptep
, ptep
, ilog2(_PAGE_NO_EXEC
));
994 UASM_i_ROTR(p
, tmp
, tmp
, ilog2(_PAGE_GLOBAL
) - ilog2(_PAGE_NO_EXEC
));
995 UASM_i_MTC0(p
, tmp
, C0_ENTRYLO0
); /* load it */
996 UASM_i_ROTR(p
, ptep
, ptep
, ilog2(_PAGE_GLOBAL
) - ilog2(_PAGE_NO_EXEC
));
998 uasm_i_dsrl_safe(p
, tmp
, tmp
, ilog2(_PAGE_GLOBAL
)); /* convert to entrylo0 */
999 UASM_i_MTC0(p
, tmp
, C0_ENTRYLO0
); /* load it */
1000 uasm_i_dsrl_safe(p
, ptep
, ptep
, ilog2(_PAGE_GLOBAL
)); /* convert to entrylo1 */
1002 UASM_i_MTC0(p
, ptep
, C0_ENTRYLO1
); /* load it */
1004 int pte_off_even
= sizeof(pte_t
) / 2;
1005 int pte_off_odd
= pte_off_even
+ sizeof(pte_t
);
1007 /* The pte entries are pre-shifted */
1008 uasm_i_lw(p
, tmp
, pte_off_even
, ptep
); /* get even pte */
1009 UASM_i_MTC0(p
, tmp
, C0_ENTRYLO0
); /* load it */
1010 uasm_i_lw(p
, ptep
, pte_off_odd
, ptep
); /* get odd pte */
1011 UASM_i_MTC0(p
, ptep
, C0_ENTRYLO1
); /* load it */
1014 UASM_i_LW(p
, tmp
, 0, ptep
); /* get even pte */
1015 UASM_i_LW(p
, ptep
, sizeof(pte_t
), ptep
); /* get odd pte */
1016 if (r45k_bvahwbug())
1017 build_tlb_probe_entry(p
);
1018 if (kernel_uses_smartmips_rixi
) {
1019 UASM_i_SRL(p
, tmp
, tmp
, ilog2(_PAGE_NO_EXEC
));
1020 UASM_i_SRL(p
, ptep
, ptep
, ilog2(_PAGE_NO_EXEC
));
1021 UASM_i_ROTR(p
, tmp
, tmp
, ilog2(_PAGE_GLOBAL
) - ilog2(_PAGE_NO_EXEC
));
1022 if (r4k_250MHZhwbug())
1023 UASM_i_MTC0(p
, 0, C0_ENTRYLO0
);
1024 UASM_i_MTC0(p
, tmp
, C0_ENTRYLO0
); /* load it */
1025 UASM_i_ROTR(p
, ptep
, ptep
, ilog2(_PAGE_GLOBAL
) - ilog2(_PAGE_NO_EXEC
));
1027 UASM_i_SRL(p
, tmp
, tmp
, ilog2(_PAGE_GLOBAL
)); /* convert to entrylo0 */
1028 if (r4k_250MHZhwbug())
1029 UASM_i_MTC0(p
, 0, C0_ENTRYLO0
);
1030 UASM_i_MTC0(p
, tmp
, C0_ENTRYLO0
); /* load it */
1031 UASM_i_SRL(p
, ptep
, ptep
, ilog2(_PAGE_GLOBAL
)); /* convert to entrylo1 */
1032 if (r45k_bvahwbug())
1033 uasm_i_mfc0(p
, tmp
, C0_INDEX
);
1035 if (r4k_250MHZhwbug())
1036 UASM_i_MTC0(p
, 0, C0_ENTRYLO1
);
1037 UASM_i_MTC0(p
, ptep
, C0_ENTRYLO1
); /* load it */
1041 struct mips_huge_tlb_info
{
1043 int restore_scratch
;
1046 static struct mips_huge_tlb_info __cpuinit
1047 build_fast_tlb_refill_handler (u32
**p
, struct uasm_label
**l
,
1048 struct uasm_reloc
**r
, unsigned int tmp
,
1049 unsigned int ptr
, int c0_scratch
)
1051 struct mips_huge_tlb_info rv
;
1052 unsigned int even
, odd
;
1053 int vmalloc_branch_delay_filled
= 0;
1054 const int scratch
= 1; /* Our extra working register */
1056 rv
.huge_pte
= scratch
;
1057 rv
.restore_scratch
= 0;
1059 if (check_for_high_segbits
) {
1060 UASM_i_MFC0(p
, tmp
, C0_BADVADDR
);
1063 UASM_i_MFC0(p
, ptr
, 31, pgd_reg
);
1065 UASM_i_MFC0(p
, ptr
, C0_CONTEXT
);
1067 if (c0_scratch
>= 0)
1068 UASM_i_MTC0(p
, scratch
, 31, c0_scratch
);
1070 UASM_i_SW(p
, scratch
, scratchpad_offset(0), 0);
1072 uasm_i_dsrl_safe(p
, scratch
, tmp
,
1073 PGDIR_SHIFT
+ PGD_ORDER
+ PAGE_SHIFT
- 3);
1074 uasm_il_bnez(p
, r
, scratch
, label_vmalloc
);
1076 if (pgd_reg
== -1) {
1077 vmalloc_branch_delay_filled
= 1;
1078 /* Clear lower 23 bits of context. */
1079 uasm_i_dins(p
, ptr
, 0, 0, 23);
1083 UASM_i_MFC0(p
, ptr
, 31, pgd_reg
);
1085 UASM_i_MFC0(p
, ptr
, C0_CONTEXT
);
1087 UASM_i_MFC0(p
, tmp
, C0_BADVADDR
);
1089 if (c0_scratch
>= 0)
1090 UASM_i_MTC0(p
, scratch
, 31, c0_scratch
);
1092 UASM_i_SW(p
, scratch
, scratchpad_offset(0), 0);
1095 /* Clear lower 23 bits of context. */
1096 uasm_i_dins(p
, ptr
, 0, 0, 23);
1098 uasm_il_bltz(p
, r
, tmp
, label_vmalloc
);
1101 if (pgd_reg
== -1) {
1102 vmalloc_branch_delay_filled
= 1;
1103 /* 1 0 1 0 1 << 6 xkphys cached */
1104 uasm_i_ori(p
, ptr
, ptr
, 0x540);
1105 uasm_i_drotr(p
, ptr
, ptr
, 11);
1108 #ifdef __PAGETABLE_PMD_FOLDED
1109 #define LOC_PTEP scratch
1111 #define LOC_PTEP ptr
1114 if (!vmalloc_branch_delay_filled
)
1115 /* get pgd offset in bytes */
1116 uasm_i_dsrl_safe(p
, scratch
, tmp
, PGDIR_SHIFT
- 3);
1118 uasm_l_vmalloc_done(l
, *p
);
1122 * fall-through case = badvaddr *pgd_current
1123 * vmalloc case = badvaddr swapper_pg_dir
1126 if (vmalloc_branch_delay_filled
)
1127 /* get pgd offset in bytes */
1128 uasm_i_dsrl_safe(p
, scratch
, tmp
, PGDIR_SHIFT
- 3);
1130 #ifdef __PAGETABLE_PMD_FOLDED
1131 GET_CONTEXT(p
, tmp
); /* get context reg */
1133 uasm_i_andi(p
, scratch
, scratch
, (PTRS_PER_PGD
- 1) << 3);
1135 if (use_lwx_insns()) {
1136 UASM_i_LWX(p
, LOC_PTEP
, scratch
, ptr
);
1138 uasm_i_daddu(p
, ptr
, ptr
, scratch
); /* add in pgd offset */
1139 uasm_i_ld(p
, LOC_PTEP
, 0, ptr
); /* get pmd pointer */
1142 #ifndef __PAGETABLE_PMD_FOLDED
1143 /* get pmd offset in bytes */
1144 uasm_i_dsrl_safe(p
, scratch
, tmp
, PMD_SHIFT
- 3);
1145 uasm_i_andi(p
, scratch
, scratch
, (PTRS_PER_PMD
- 1) << 3);
1146 GET_CONTEXT(p
, tmp
); /* get context reg */
1148 if (use_lwx_insns()) {
1149 UASM_i_LWX(p
, scratch
, scratch
, ptr
);
1151 uasm_i_daddu(p
, ptr
, ptr
, scratch
); /* add in pmd offset */
1152 UASM_i_LW(p
, scratch
, 0, ptr
);
1155 /* Adjust the context during the load latency. */
1156 build_adjust_context(p
, tmp
);
1158 #ifdef CONFIG_HUGETLB_PAGE
1159 uasm_il_bbit1(p
, r
, scratch
, ilog2(_PAGE_HUGE
), label_tlb_huge_update
);
1161 * The in the LWX case we don't want to do the load in the
1162 * delay slot. It cannot issue in the same cycle and may be
1163 * speculative and unneeded.
1165 if (use_lwx_insns())
1167 #endif /* CONFIG_HUGETLB_PAGE */
1170 /* build_update_entries */
1171 if (use_lwx_insns()) {
1174 UASM_i_LWX(p
, even
, scratch
, tmp
);
1175 UASM_i_ADDIU(p
, tmp
, tmp
, sizeof(pte_t
));
1176 UASM_i_LWX(p
, odd
, scratch
, tmp
);
1178 UASM_i_ADDU(p
, ptr
, scratch
, tmp
); /* add in offset */
1181 UASM_i_LW(p
, even
, 0, ptr
); /* get even pte */
1182 UASM_i_LW(p
, odd
, sizeof(pte_t
), ptr
); /* get odd pte */
1184 if (kernel_uses_smartmips_rixi
) {
1185 uasm_i_dsrl_safe(p
, even
, even
, ilog2(_PAGE_NO_EXEC
));
1186 uasm_i_dsrl_safe(p
, odd
, odd
, ilog2(_PAGE_NO_EXEC
));
1187 uasm_i_drotr(p
, even
, even
,
1188 ilog2(_PAGE_GLOBAL
) - ilog2(_PAGE_NO_EXEC
));
1189 UASM_i_MTC0(p
, even
, C0_ENTRYLO0
); /* load it */
1190 uasm_i_drotr(p
, odd
, odd
,
1191 ilog2(_PAGE_GLOBAL
) - ilog2(_PAGE_NO_EXEC
));
1193 uasm_i_dsrl_safe(p
, even
, even
, ilog2(_PAGE_GLOBAL
));
1194 UASM_i_MTC0(p
, even
, C0_ENTRYLO0
); /* load it */
1195 uasm_i_dsrl_safe(p
, odd
, odd
, ilog2(_PAGE_GLOBAL
));
1197 UASM_i_MTC0(p
, odd
, C0_ENTRYLO1
); /* load it */
1199 if (c0_scratch
>= 0) {
1200 UASM_i_MFC0(p
, scratch
, 31, c0_scratch
);
1201 build_tlb_write_entry(p
, l
, r
, tlb_random
);
1202 uasm_l_leave(l
, *p
);
1203 rv
.restore_scratch
= 1;
1204 } else if (PAGE_SHIFT
== 14 || PAGE_SHIFT
== 13) {
1205 build_tlb_write_entry(p
, l
, r
, tlb_random
);
1206 uasm_l_leave(l
, *p
);
1207 UASM_i_LW(p
, scratch
, scratchpad_offset(0), 0);
1209 UASM_i_LW(p
, scratch
, scratchpad_offset(0), 0);
1210 build_tlb_write_entry(p
, l
, r
, tlb_random
);
1211 uasm_l_leave(l
, *p
);
1212 rv
.restore_scratch
= 1;
1215 uasm_i_eret(p
); /* return from trap */
1221 * For a 64-bit kernel, we are using the 64-bit XTLB refill exception
1222 * because EXL == 0. If we wrap, we can also use the 32 instruction
1223 * slots before the XTLB refill exception handler which belong to the
1224 * unused TLB refill exception.
1226 #define MIPS64_REFILL_INSNS 32
1228 static void __cpuinit
build_r4000_tlb_refill_handler(void)
1230 u32
*p
= tlb_handler
;
1231 struct uasm_label
*l
= labels
;
1232 struct uasm_reloc
*r
= relocs
;
1234 unsigned int final_len
;
1235 struct mips_huge_tlb_info htlb_info __maybe_unused
;
1236 enum vmalloc64_mode vmalloc_mode __maybe_unused
;
1238 memset(tlb_handler
, 0, sizeof(tlb_handler
));
1239 memset(labels
, 0, sizeof(labels
));
1240 memset(relocs
, 0, sizeof(relocs
));
1241 memset(final_handler
, 0, sizeof(final_handler
));
1243 if ((scratch_reg
> 0 || scratchpad_available()) && use_bbit_insns()) {
1244 htlb_info
= build_fast_tlb_refill_handler(&p
, &l
, &r
, K0
, K1
,
1246 vmalloc_mode
= refill_scratch
;
1248 htlb_info
.huge_pte
= K0
;
1249 htlb_info
.restore_scratch
= 0;
1250 vmalloc_mode
= refill_noscratch
;
1252 * create the plain linear handler
1254 if (bcm1250_m3_war()) {
1255 unsigned int segbits
= 44;
1257 uasm_i_dmfc0(&p
, K0
, C0_BADVADDR
);
1258 uasm_i_dmfc0(&p
, K1
, C0_ENTRYHI
);
1259 uasm_i_xor(&p
, K0
, K0
, K1
);
1260 uasm_i_dsrl_safe(&p
, K1
, K0
, 62);
1261 uasm_i_dsrl_safe(&p
, K0
, K0
, 12 + 1);
1262 uasm_i_dsll_safe(&p
, K0
, K0
, 64 + 12 + 1 - segbits
);
1263 uasm_i_or(&p
, K0
, K0
, K1
);
1264 uasm_il_bnez(&p
, &r
, K0
, label_leave
);
1265 /* No need for uasm_i_nop */
1269 build_get_pmde64(&p
, &l
, &r
, K0
, K1
); /* get pmd in K1 */
1271 build_get_pgde32(&p
, K0
, K1
); /* get pgd in K1 */
1274 #ifdef CONFIG_HUGETLB_PAGE
1275 build_is_huge_pte(&p
, &r
, K0
, K1
, label_tlb_huge_update
);
1278 build_get_ptep(&p
, K0
, K1
);
1279 build_update_entries(&p
, K0
, K1
);
1280 build_tlb_write_entry(&p
, &l
, &r
, tlb_random
);
1281 uasm_l_leave(&l
, p
);
1282 uasm_i_eret(&p
); /* return from trap */
1284 #ifdef CONFIG_HUGETLB_PAGE
1285 uasm_l_tlb_huge_update(&l
, p
);
1286 build_huge_update_entries(&p
, htlb_info
.huge_pte
, K1
);
1287 build_huge_tlb_write_entry(&p
, &l
, &r
, K0
, tlb_random
,
1288 htlb_info
.restore_scratch
);
1292 build_get_pgd_vmalloc64(&p
, &l
, &r
, K0
, K1
, vmalloc_mode
);
1296 * Overflow check: For the 64bit handler, we need at least one
1297 * free instruction slot for the wrap-around branch. In worst
1298 * case, if the intended insertion point is a delay slot, we
1299 * need three, with the second nop'ed and the third being
1302 /* Loongson2 ebase is different than r4k, we have more space */
1303 #if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2)
1304 if ((p
- tlb_handler
) > 64)
1305 panic("TLB refill handler space exceeded");
1307 if (((p
- tlb_handler
) > (MIPS64_REFILL_INSNS
* 2) - 1)
1308 || (((p
- tlb_handler
) > (MIPS64_REFILL_INSNS
* 2) - 3)
1309 && uasm_insn_has_bdelay(relocs
,
1310 tlb_handler
+ MIPS64_REFILL_INSNS
- 3)))
1311 panic("TLB refill handler space exceeded");
1315 * Now fold the handler in the TLB refill handler space.
1317 #if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2)
1319 /* Simplest case, just copy the handler. */
1320 uasm_copy_handler(relocs
, labels
, tlb_handler
, p
, f
);
1321 final_len
= p
- tlb_handler
;
1322 #else /* CONFIG_64BIT */
1323 f
= final_handler
+ MIPS64_REFILL_INSNS
;
1324 if ((p
- tlb_handler
) <= MIPS64_REFILL_INSNS
) {
1325 /* Just copy the handler. */
1326 uasm_copy_handler(relocs
, labels
, tlb_handler
, p
, f
);
1327 final_len
= p
- tlb_handler
;
1329 #if defined(CONFIG_HUGETLB_PAGE)
1330 const enum label_id ls
= label_tlb_huge_update
;
1332 const enum label_id ls
= label_vmalloc
;
1338 for (i
= 0; i
< ARRAY_SIZE(labels
) && labels
[i
].lab
!= ls
; i
++)
1340 BUG_ON(i
== ARRAY_SIZE(labels
));
1341 split
= labels
[i
].addr
;
1344 * See if we have overflown one way or the other.
1346 if (split
> tlb_handler
+ MIPS64_REFILL_INSNS
||
1347 split
< p
- MIPS64_REFILL_INSNS
)
1352 * Split two instructions before the end. One
1353 * for the branch and one for the instruction
1354 * in the delay slot.
1356 split
= tlb_handler
+ MIPS64_REFILL_INSNS
- 2;
1359 * If the branch would fall in a delay slot,
1360 * we must back up an additional instruction
1361 * so that it is no longer in a delay slot.
1363 if (uasm_insn_has_bdelay(relocs
, split
- 1))
1366 /* Copy first part of the handler. */
1367 uasm_copy_handler(relocs
, labels
, tlb_handler
, split
, f
);
1368 f
+= split
- tlb_handler
;
1371 /* Insert branch. */
1372 uasm_l_split(&l
, final_handler
);
1373 uasm_il_b(&f
, &r
, label_split
);
1374 if (uasm_insn_has_bdelay(relocs
, split
))
1377 uasm_copy_handler(relocs
, labels
,
1378 split
, split
+ 1, f
);
1379 uasm_move_labels(labels
, f
, f
+ 1, -1);
1385 /* Copy the rest of the handler. */
1386 uasm_copy_handler(relocs
, labels
, split
, p
, final_handler
);
1387 final_len
= (f
- (final_handler
+ MIPS64_REFILL_INSNS
)) +
1390 #endif /* CONFIG_64BIT */
1392 uasm_resolve_relocs(relocs
, labels
);
1393 pr_debug("Wrote TLB refill handler (%u instructions).\n",
1396 memcpy((void *)ebase
, final_handler
, 0x100);
1398 dump_handler((u32
*)ebase
, 64);
1402 * 128 instructions for the fastpath handler is generous and should
1403 * never be exceeded.
1405 #define FASTPATH_SIZE 128
1407 u32 handle_tlbl
[FASTPATH_SIZE
] __cacheline_aligned
;
1408 u32 handle_tlbs
[FASTPATH_SIZE
] __cacheline_aligned
;
1409 u32 handle_tlbm
[FASTPATH_SIZE
] __cacheline_aligned
;
1410 #ifdef CONFIG_MIPS_PGD_C0_CONTEXT
1411 u32 tlbmiss_handler_setup_pgd
[16] __cacheline_aligned
;
1413 static void __cpuinit
build_r4000_setup_pgd(void)
1417 u32
*p
= tlbmiss_handler_setup_pgd
;
1418 struct uasm_label
*l
= labels
;
1419 struct uasm_reloc
*r
= relocs
;
1421 memset(tlbmiss_handler_setup_pgd
, 0, sizeof(tlbmiss_handler_setup_pgd
));
1422 memset(labels
, 0, sizeof(labels
));
1423 memset(relocs
, 0, sizeof(relocs
));
1425 pgd_reg
= allocate_kscratch();
1427 if (pgd_reg
== -1) {
1428 /* PGD << 11 in c0_Context */
1430 * If it is a ckseg0 address, convert to a physical
1431 * address. Shifting right by 29 and adding 4 will
1432 * result in zero for these addresses.
1435 UASM_i_SRA(&p
, a1
, a0
, 29);
1436 UASM_i_ADDIU(&p
, a1
, a1
, 4);
1437 uasm_il_bnez(&p
, &r
, a1
, label_tlbl_goaround1
);
1439 uasm_i_dinsm(&p
, a0
, 0, 29, 64 - 29);
1440 uasm_l_tlbl_goaround1(&l
, p
);
1441 UASM_i_SLL(&p
, a0
, a0
, 11);
1443 UASM_i_MTC0(&p
, a0
, C0_CONTEXT
);
1445 /* PGD in c0_KScratch */
1447 UASM_i_MTC0(&p
, a0
, 31, pgd_reg
);
1449 if (p
- tlbmiss_handler_setup_pgd
> ARRAY_SIZE(tlbmiss_handler_setup_pgd
))
1450 panic("tlbmiss_handler_setup_pgd space exceeded");
1451 uasm_resolve_relocs(relocs
, labels
);
1452 pr_debug("Wrote tlbmiss_handler_setup_pgd (%u instructions).\n",
1453 (unsigned int)(p
- tlbmiss_handler_setup_pgd
));
1455 dump_handler(tlbmiss_handler_setup_pgd
,
1456 ARRAY_SIZE(tlbmiss_handler_setup_pgd
));
1460 static void __cpuinit
1461 iPTE_LW(u32
**p
, unsigned int pte
, unsigned int ptr
)
1464 # ifdef CONFIG_64BIT_PHYS_ADDR
1466 uasm_i_lld(p
, pte
, 0, ptr
);
1469 UASM_i_LL(p
, pte
, 0, ptr
);
1471 # ifdef CONFIG_64BIT_PHYS_ADDR
1473 uasm_i_ld(p
, pte
, 0, ptr
);
1476 UASM_i_LW(p
, pte
, 0, ptr
);
1480 static void __cpuinit
1481 iPTE_SW(u32
**p
, struct uasm_reloc
**r
, unsigned int pte
, unsigned int ptr
,
1484 #ifdef CONFIG_64BIT_PHYS_ADDR
1485 unsigned int hwmode
= mode
& (_PAGE_VALID
| _PAGE_DIRTY
);
1488 uasm_i_ori(p
, pte
, pte
, mode
);
1490 # ifdef CONFIG_64BIT_PHYS_ADDR
1492 uasm_i_scd(p
, pte
, 0, ptr
);
1495 UASM_i_SC(p
, pte
, 0, ptr
);
1497 if (r10000_llsc_war())
1498 uasm_il_beqzl(p
, r
, pte
, label_smp_pgtable_change
);
1500 uasm_il_beqz(p
, r
, pte
, label_smp_pgtable_change
);
1502 # ifdef CONFIG_64BIT_PHYS_ADDR
1503 if (!cpu_has_64bits
) {
1504 /* no uasm_i_nop needed */
1505 uasm_i_ll(p
, pte
, sizeof(pte_t
) / 2, ptr
);
1506 uasm_i_ori(p
, pte
, pte
, hwmode
);
1507 uasm_i_sc(p
, pte
, sizeof(pte_t
) / 2, ptr
);
1508 uasm_il_beqz(p
, r
, pte
, label_smp_pgtable_change
);
1509 /* no uasm_i_nop needed */
1510 uasm_i_lw(p
, pte
, 0, ptr
);
1517 # ifdef CONFIG_64BIT_PHYS_ADDR
1519 uasm_i_sd(p
, pte
, 0, ptr
);
1522 UASM_i_SW(p
, pte
, 0, ptr
);
1524 # ifdef CONFIG_64BIT_PHYS_ADDR
1525 if (!cpu_has_64bits
) {
1526 uasm_i_lw(p
, pte
, sizeof(pte_t
) / 2, ptr
);
1527 uasm_i_ori(p
, pte
, pte
, hwmode
);
1528 uasm_i_sw(p
, pte
, sizeof(pte_t
) / 2, ptr
);
1529 uasm_i_lw(p
, pte
, 0, ptr
);
1536 * Check if PTE is present, if not then jump to LABEL. PTR points to
1537 * the page table where this PTE is located, PTE will be re-loaded
1538 * with it's original value.
1540 static void __cpuinit
1541 build_pte_present(u32
**p
, struct uasm_reloc
**r
,
1542 int pte
, int ptr
, int scratch
, enum label_id lid
)
1544 int t
= scratch
>= 0 ? scratch
: pte
;
1546 if (kernel_uses_smartmips_rixi
) {
1547 if (use_bbit_insns()) {
1548 uasm_il_bbit0(p
, r
, pte
, ilog2(_PAGE_PRESENT
), lid
);
1551 uasm_i_andi(p
, t
, pte
, _PAGE_PRESENT
);
1552 uasm_il_beqz(p
, r
, t
, lid
);
1554 /* You lose the SMP race :-(*/
1555 iPTE_LW(p
, pte
, ptr
);
1558 uasm_i_andi(p
, t
, pte
, _PAGE_PRESENT
| _PAGE_READ
);
1559 uasm_i_xori(p
, t
, t
, _PAGE_PRESENT
| _PAGE_READ
);
1560 uasm_il_bnez(p
, r
, t
, lid
);
1562 /* You lose the SMP race :-(*/
1563 iPTE_LW(p
, pte
, ptr
);
1567 /* Make PTE valid, store result in PTR. */
1568 static void __cpuinit
1569 build_make_valid(u32
**p
, struct uasm_reloc
**r
, unsigned int pte
,
1572 unsigned int mode
= _PAGE_VALID
| _PAGE_ACCESSED
;
1574 iPTE_SW(p
, r
, pte
, ptr
, mode
);
1578 * Check if PTE can be written to, if not branch to LABEL. Regardless
1579 * restore PTE with value from PTR when done.
1581 static void __cpuinit
1582 build_pte_writable(u32
**p
, struct uasm_reloc
**r
,
1583 unsigned int pte
, unsigned int ptr
, int scratch
,
1586 int t
= scratch
>= 0 ? scratch
: pte
;
1588 uasm_i_andi(p
, t
, pte
, _PAGE_PRESENT
| _PAGE_WRITE
);
1589 uasm_i_xori(p
, t
, t
, _PAGE_PRESENT
| _PAGE_WRITE
);
1590 uasm_il_bnez(p
, r
, t
, lid
);
1592 /* You lose the SMP race :-(*/
1593 iPTE_LW(p
, pte
, ptr
);
1598 /* Make PTE writable, update software status bits as well, then store
1601 static void __cpuinit
1602 build_make_write(u32
**p
, struct uasm_reloc
**r
, unsigned int pte
,
1605 unsigned int mode
= (_PAGE_ACCESSED
| _PAGE_MODIFIED
| _PAGE_VALID
1608 iPTE_SW(p
, r
, pte
, ptr
, mode
);
1612 * Check if PTE can be modified, if not branch to LABEL. Regardless
1613 * restore PTE with value from PTR when done.
1615 static void __cpuinit
1616 build_pte_modifiable(u32
**p
, struct uasm_reloc
**r
,
1617 unsigned int pte
, unsigned int ptr
, int scratch
,
1620 if (use_bbit_insns()) {
1621 uasm_il_bbit0(p
, r
, pte
, ilog2(_PAGE_WRITE
), lid
);
1624 int t
= scratch
>= 0 ? scratch
: pte
;
1625 uasm_i_andi(p
, t
, pte
, _PAGE_WRITE
);
1626 uasm_il_beqz(p
, r
, t
, lid
);
1628 /* You lose the SMP race :-(*/
1629 iPTE_LW(p
, pte
, ptr
);
1633 #ifndef CONFIG_MIPS_PGD_C0_CONTEXT
1637 * R3000 style TLB load/store/modify handlers.
1641 * This places the pte into ENTRYLO0 and writes it with tlbwi.
1644 static void __cpuinit
1645 build_r3000_pte_reload_tlbwi(u32
**p
, unsigned int pte
, unsigned int tmp
)
1647 uasm_i_mtc0(p
, pte
, C0_ENTRYLO0
); /* cp0 delay */
1648 uasm_i_mfc0(p
, tmp
, C0_EPC
); /* cp0 delay */
1651 uasm_i_rfe(p
); /* branch delay */
1655 * This places the pte into ENTRYLO0 and writes it with tlbwi
1656 * or tlbwr as appropriate. This is because the index register
1657 * may have the probe fail bit set as a result of a trap on a
1658 * kseg2 access, i.e. without refill. Then it returns.
1660 static void __cpuinit
1661 build_r3000_tlb_reload_write(u32
**p
, struct uasm_label
**l
,
1662 struct uasm_reloc
**r
, unsigned int pte
,
1665 uasm_i_mfc0(p
, tmp
, C0_INDEX
);
1666 uasm_i_mtc0(p
, pte
, C0_ENTRYLO0
); /* cp0 delay */
1667 uasm_il_bltz(p
, r
, tmp
, label_r3000_write_probe_fail
); /* cp0 delay */
1668 uasm_i_mfc0(p
, tmp
, C0_EPC
); /* branch delay */
1669 uasm_i_tlbwi(p
); /* cp0 delay */
1671 uasm_i_rfe(p
); /* branch delay */
1672 uasm_l_r3000_write_probe_fail(l
, *p
);
1673 uasm_i_tlbwr(p
); /* cp0 delay */
1675 uasm_i_rfe(p
); /* branch delay */
1678 static void __cpuinit
1679 build_r3000_tlbchange_handler_head(u32
**p
, unsigned int pte
,
1682 long pgdc
= (long)pgd_current
;
1684 uasm_i_mfc0(p
, pte
, C0_BADVADDR
);
1685 uasm_i_lui(p
, ptr
, uasm_rel_hi(pgdc
)); /* cp0 delay */
1686 uasm_i_lw(p
, ptr
, uasm_rel_lo(pgdc
), ptr
);
1687 uasm_i_srl(p
, pte
, pte
, 22); /* load delay */
1688 uasm_i_sll(p
, pte
, pte
, 2);
1689 uasm_i_addu(p
, ptr
, ptr
, pte
);
1690 uasm_i_mfc0(p
, pte
, C0_CONTEXT
);
1691 uasm_i_lw(p
, ptr
, 0, ptr
); /* cp0 delay */
1692 uasm_i_andi(p
, pte
, pte
, 0xffc); /* load delay */
1693 uasm_i_addu(p
, ptr
, ptr
, pte
);
1694 uasm_i_lw(p
, pte
, 0, ptr
);
1695 uasm_i_tlbp(p
); /* load delay */
1698 static void __cpuinit
build_r3000_tlb_load_handler(void)
1700 u32
*p
= handle_tlbl
;
1701 struct uasm_label
*l
= labels
;
1702 struct uasm_reloc
*r
= relocs
;
1704 memset(handle_tlbl
, 0, sizeof(handle_tlbl
));
1705 memset(labels
, 0, sizeof(labels
));
1706 memset(relocs
, 0, sizeof(relocs
));
1708 build_r3000_tlbchange_handler_head(&p
, K0
, K1
);
1709 build_pte_present(&p
, &r
, K0
, K1
, -1, label_nopage_tlbl
);
1710 uasm_i_nop(&p
); /* load delay */
1711 build_make_valid(&p
, &r
, K0
, K1
);
1712 build_r3000_tlb_reload_write(&p
, &l
, &r
, K0
, K1
);
1714 uasm_l_nopage_tlbl(&l
, p
);
1715 uasm_i_j(&p
, (unsigned long)tlb_do_page_fault_0
& 0x0fffffff);
1718 if ((p
- handle_tlbl
) > FASTPATH_SIZE
)
1719 panic("TLB load handler fastpath space exceeded");
1721 uasm_resolve_relocs(relocs
, labels
);
1722 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
1723 (unsigned int)(p
- handle_tlbl
));
1725 dump_handler(handle_tlbl
, ARRAY_SIZE(handle_tlbl
));
1728 static void __cpuinit
build_r3000_tlb_store_handler(void)
1730 u32
*p
= handle_tlbs
;
1731 struct uasm_label
*l
= labels
;
1732 struct uasm_reloc
*r
= relocs
;
1734 memset(handle_tlbs
, 0, sizeof(handle_tlbs
));
1735 memset(labels
, 0, sizeof(labels
));
1736 memset(relocs
, 0, sizeof(relocs
));
1738 build_r3000_tlbchange_handler_head(&p
, K0
, K1
);
1739 build_pte_writable(&p
, &r
, K0
, K1
, -1, label_nopage_tlbs
);
1740 uasm_i_nop(&p
); /* load delay */
1741 build_make_write(&p
, &r
, K0
, K1
);
1742 build_r3000_tlb_reload_write(&p
, &l
, &r
, K0
, K1
);
1744 uasm_l_nopage_tlbs(&l
, p
);
1745 uasm_i_j(&p
, (unsigned long)tlb_do_page_fault_1
& 0x0fffffff);
1748 if ((p
- handle_tlbs
) > FASTPATH_SIZE
)
1749 panic("TLB store handler fastpath space exceeded");
1751 uasm_resolve_relocs(relocs
, labels
);
1752 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
1753 (unsigned int)(p
- handle_tlbs
));
1755 dump_handler(handle_tlbs
, ARRAY_SIZE(handle_tlbs
));
1758 static void __cpuinit
build_r3000_tlb_modify_handler(void)
1760 u32
*p
= handle_tlbm
;
1761 struct uasm_label
*l
= labels
;
1762 struct uasm_reloc
*r
= relocs
;
1764 memset(handle_tlbm
, 0, sizeof(handle_tlbm
));
1765 memset(labels
, 0, sizeof(labels
));
1766 memset(relocs
, 0, sizeof(relocs
));
1768 build_r3000_tlbchange_handler_head(&p
, K0
, K1
);
1769 build_pte_modifiable(&p
, &r
, K0
, K1
, -1, label_nopage_tlbm
);
1770 uasm_i_nop(&p
); /* load delay */
1771 build_make_write(&p
, &r
, K0
, K1
);
1772 build_r3000_pte_reload_tlbwi(&p
, K0
, K1
);
1774 uasm_l_nopage_tlbm(&l
, p
);
1775 uasm_i_j(&p
, (unsigned long)tlb_do_page_fault_1
& 0x0fffffff);
1778 if ((p
- handle_tlbm
) > FASTPATH_SIZE
)
1779 panic("TLB modify handler fastpath space exceeded");
1781 uasm_resolve_relocs(relocs
, labels
);
1782 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
1783 (unsigned int)(p
- handle_tlbm
));
1785 dump_handler(handle_tlbm
, ARRAY_SIZE(handle_tlbm
));
1787 #endif /* CONFIG_MIPS_PGD_C0_CONTEXT */
1790 * R4000 style TLB load/store/modify handlers.
1792 static struct work_registers __cpuinit
1793 build_r4000_tlbchange_handler_head(u32
**p
, struct uasm_label
**l
,
1794 struct uasm_reloc
**r
)
1796 struct work_registers wr
= build_get_work_registers(p
);
1799 build_get_pmde64(p
, l
, r
, wr
.r1
, wr
.r2
); /* get pmd in ptr */
1801 build_get_pgde32(p
, wr
.r1
, wr
.r2
); /* get pgd in ptr */
1804 #ifdef CONFIG_HUGETLB_PAGE
1806 * For huge tlb entries, pmd doesn't contain an address but
1807 * instead contains the tlb pte. Check the PAGE_HUGE bit and
1808 * see if we need to jump to huge tlb processing.
1810 build_is_huge_pte(p
, r
, wr
.r1
, wr
.r2
, label_tlb_huge_update
);
1813 UASM_i_MFC0(p
, wr
.r1
, C0_BADVADDR
);
1814 UASM_i_LW(p
, wr
.r2
, 0, wr
.r2
);
1815 UASM_i_SRL(p
, wr
.r1
, wr
.r1
, PAGE_SHIFT
+ PTE_ORDER
- PTE_T_LOG2
);
1816 uasm_i_andi(p
, wr
.r1
, wr
.r1
, (PTRS_PER_PTE
- 1) << PTE_T_LOG2
);
1817 UASM_i_ADDU(p
, wr
.r2
, wr
.r2
, wr
.r1
);
1820 uasm_l_smp_pgtable_change(l
, *p
);
1822 iPTE_LW(p
, wr
.r1
, wr
.r2
); /* get even pte */
1823 if (!m4kc_tlbp_war())
1824 build_tlb_probe_entry(p
);
1828 static void __cpuinit
1829 build_r4000_tlbchange_handler_tail(u32
**p
, struct uasm_label
**l
,
1830 struct uasm_reloc
**r
, unsigned int tmp
,
1833 uasm_i_ori(p
, ptr
, ptr
, sizeof(pte_t
));
1834 uasm_i_xori(p
, ptr
, ptr
, sizeof(pte_t
));
1835 build_update_entries(p
, tmp
, ptr
);
1836 build_tlb_write_entry(p
, l
, r
, tlb_indexed
);
1837 uasm_l_leave(l
, *p
);
1838 build_restore_work_registers(p
);
1839 uasm_i_eret(p
); /* return from trap */
1842 build_get_pgd_vmalloc64(p
, l
, r
, tmp
, ptr
, not_refill
);
1846 static void __cpuinit
build_r4000_tlb_load_handler(void)
1848 u32
*p
= handle_tlbl
;
1849 struct uasm_label
*l
= labels
;
1850 struct uasm_reloc
*r
= relocs
;
1851 struct work_registers wr
;
1853 memset(handle_tlbl
, 0, sizeof(handle_tlbl
));
1854 memset(labels
, 0, sizeof(labels
));
1855 memset(relocs
, 0, sizeof(relocs
));
1857 if (bcm1250_m3_war()) {
1858 unsigned int segbits
= 44;
1860 uasm_i_dmfc0(&p
, K0
, C0_BADVADDR
);
1861 uasm_i_dmfc0(&p
, K1
, C0_ENTRYHI
);
1862 uasm_i_xor(&p
, K0
, K0
, K1
);
1863 uasm_i_dsrl_safe(&p
, K1
, K0
, 62);
1864 uasm_i_dsrl_safe(&p
, K0
, K0
, 12 + 1);
1865 uasm_i_dsll_safe(&p
, K0
, K0
, 64 + 12 + 1 - segbits
);
1866 uasm_i_or(&p
, K0
, K0
, K1
);
1867 uasm_il_bnez(&p
, &r
, K0
, label_leave
);
1868 /* No need for uasm_i_nop */
1871 wr
= build_r4000_tlbchange_handler_head(&p
, &l
, &r
);
1872 build_pte_present(&p
, &r
, wr
.r1
, wr
.r2
, wr
.r3
, label_nopage_tlbl
);
1873 if (m4kc_tlbp_war())
1874 build_tlb_probe_entry(&p
);
1876 if (kernel_uses_smartmips_rixi
) {
1878 * If the page is not _PAGE_VALID, RI or XI could not
1879 * have triggered it. Skip the expensive test..
1881 if (use_bbit_insns()) {
1882 uasm_il_bbit0(&p
, &r
, wr
.r1
, ilog2(_PAGE_VALID
),
1883 label_tlbl_goaround1
);
1885 uasm_i_andi(&p
, wr
.r3
, wr
.r1
, _PAGE_VALID
);
1886 uasm_il_beqz(&p
, &r
, wr
.r3
, label_tlbl_goaround1
);
1891 /* Examine entrylo 0 or 1 based on ptr. */
1892 if (use_bbit_insns()) {
1893 uasm_i_bbit0(&p
, wr
.r2
, ilog2(sizeof(pte_t
)), 8);
1895 uasm_i_andi(&p
, wr
.r3
, wr
.r2
, sizeof(pte_t
));
1896 uasm_i_beqz(&p
, wr
.r3
, 8);
1898 /* load it in the delay slot*/
1899 UASM_i_MFC0(&p
, wr
.r3
, C0_ENTRYLO0
);
1900 /* load it if ptr is odd */
1901 UASM_i_MFC0(&p
, wr
.r3
, C0_ENTRYLO1
);
1903 * If the entryLo (now in wr.r3) is valid (bit 1), RI or
1904 * XI must have triggered it.
1906 if (use_bbit_insns()) {
1907 uasm_il_bbit1(&p
, &r
, wr
.r3
, 1, label_nopage_tlbl
);
1909 uasm_l_tlbl_goaround1(&l
, p
);
1911 uasm_i_andi(&p
, wr
.r3
, wr
.r3
, 2);
1912 uasm_il_bnez(&p
, &r
, wr
.r3
, label_nopage_tlbl
);
1915 uasm_l_tlbl_goaround1(&l
, p
);
1917 build_make_valid(&p
, &r
, wr
.r1
, wr
.r2
);
1918 build_r4000_tlbchange_handler_tail(&p
, &l
, &r
, wr
.r1
, wr
.r2
);
1920 #ifdef CONFIG_HUGETLB_PAGE
1922 * This is the entry point when build_r4000_tlbchange_handler_head
1923 * spots a huge page.
1925 uasm_l_tlb_huge_update(&l
, p
);
1926 iPTE_LW(&p
, wr
.r1
, wr
.r2
);
1927 build_pte_present(&p
, &r
, wr
.r1
, wr
.r2
, wr
.r3
, label_nopage_tlbl
);
1928 build_tlb_probe_entry(&p
);
1930 if (kernel_uses_smartmips_rixi
) {
1932 * If the page is not _PAGE_VALID, RI or XI could not
1933 * have triggered it. Skip the expensive test..
1935 if (use_bbit_insns()) {
1936 uasm_il_bbit0(&p
, &r
, wr
.r1
, ilog2(_PAGE_VALID
),
1937 label_tlbl_goaround2
);
1939 uasm_i_andi(&p
, wr
.r3
, wr
.r1
, _PAGE_VALID
);
1940 uasm_il_beqz(&p
, &r
, wr
.r3
, label_tlbl_goaround2
);
1945 /* Examine entrylo 0 or 1 based on ptr. */
1946 if (use_bbit_insns()) {
1947 uasm_i_bbit0(&p
, wr
.r2
, ilog2(sizeof(pte_t
)), 8);
1949 uasm_i_andi(&p
, wr
.r3
, wr
.r2
, sizeof(pte_t
));
1950 uasm_i_beqz(&p
, wr
.r3
, 8);
1952 /* load it in the delay slot*/
1953 UASM_i_MFC0(&p
, wr
.r3
, C0_ENTRYLO0
);
1954 /* load it if ptr is odd */
1955 UASM_i_MFC0(&p
, wr
.r3
, C0_ENTRYLO1
);
1957 * If the entryLo (now in wr.r3) is valid (bit 1), RI or
1958 * XI must have triggered it.
1960 if (use_bbit_insns()) {
1961 uasm_il_bbit0(&p
, &r
, wr
.r3
, 1, label_tlbl_goaround2
);
1963 uasm_i_andi(&p
, wr
.r3
, wr
.r3
, 2);
1964 uasm_il_beqz(&p
, &r
, wr
.r3
, label_tlbl_goaround2
);
1966 if (PM_DEFAULT_MASK
== 0)
1969 * We clobbered C0_PAGEMASK, restore it. On the other branch
1970 * it is restored in build_huge_tlb_write_entry.
1972 build_restore_pagemask(&p
, &r
, wr
.r3
, label_nopage_tlbl
, 0);
1974 uasm_l_tlbl_goaround2(&l
, p
);
1976 uasm_i_ori(&p
, wr
.r1
, wr
.r1
, (_PAGE_ACCESSED
| _PAGE_VALID
));
1977 build_huge_handler_tail(&p
, &r
, &l
, wr
.r1
, wr
.r2
);
1980 uasm_l_nopage_tlbl(&l
, p
);
1981 build_restore_work_registers(&p
);
1982 uasm_i_j(&p
, (unsigned long)tlb_do_page_fault_0
& 0x0fffffff);
1985 if ((p
- handle_tlbl
) > FASTPATH_SIZE
)
1986 panic("TLB load handler fastpath space exceeded");
1988 uasm_resolve_relocs(relocs
, labels
);
1989 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
1990 (unsigned int)(p
- handle_tlbl
));
1992 dump_handler(handle_tlbl
, ARRAY_SIZE(handle_tlbl
));
1995 static void __cpuinit
build_r4000_tlb_store_handler(void)
1997 u32
*p
= handle_tlbs
;
1998 struct uasm_label
*l
= labels
;
1999 struct uasm_reloc
*r
= relocs
;
2000 struct work_registers wr
;
2002 memset(handle_tlbs
, 0, sizeof(handle_tlbs
));
2003 memset(labels
, 0, sizeof(labels
));
2004 memset(relocs
, 0, sizeof(relocs
));
2006 wr
= build_r4000_tlbchange_handler_head(&p
, &l
, &r
);
2007 build_pte_writable(&p
, &r
, wr
.r1
, wr
.r2
, wr
.r3
, label_nopage_tlbs
);
2008 if (m4kc_tlbp_war())
2009 build_tlb_probe_entry(&p
);
2010 build_make_write(&p
, &r
, wr
.r1
, wr
.r2
);
2011 build_r4000_tlbchange_handler_tail(&p
, &l
, &r
, wr
.r1
, wr
.r2
);
2013 #ifdef CONFIG_HUGETLB_PAGE
2015 * This is the entry point when
2016 * build_r4000_tlbchange_handler_head spots a huge page.
2018 uasm_l_tlb_huge_update(&l
, p
);
2019 iPTE_LW(&p
, wr
.r1
, wr
.r2
);
2020 build_pte_writable(&p
, &r
, wr
.r1
, wr
.r2
, wr
.r3
, label_nopage_tlbs
);
2021 build_tlb_probe_entry(&p
);
2022 uasm_i_ori(&p
, wr
.r1
, wr
.r1
,
2023 _PAGE_ACCESSED
| _PAGE_MODIFIED
| _PAGE_VALID
| _PAGE_DIRTY
);
2024 build_huge_handler_tail(&p
, &r
, &l
, wr
.r1
, wr
.r2
);
2027 uasm_l_nopage_tlbs(&l
, p
);
2028 build_restore_work_registers(&p
);
2029 uasm_i_j(&p
, (unsigned long)tlb_do_page_fault_1
& 0x0fffffff);
2032 if ((p
- handle_tlbs
) > FASTPATH_SIZE
)
2033 panic("TLB store handler fastpath space exceeded");
2035 uasm_resolve_relocs(relocs
, labels
);
2036 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
2037 (unsigned int)(p
- handle_tlbs
));
2039 dump_handler(handle_tlbs
, ARRAY_SIZE(handle_tlbs
));
2042 static void __cpuinit
build_r4000_tlb_modify_handler(void)
2044 u32
*p
= handle_tlbm
;
2045 struct uasm_label
*l
= labels
;
2046 struct uasm_reloc
*r
= relocs
;
2047 struct work_registers wr
;
2049 memset(handle_tlbm
, 0, sizeof(handle_tlbm
));
2050 memset(labels
, 0, sizeof(labels
));
2051 memset(relocs
, 0, sizeof(relocs
));
2053 wr
= build_r4000_tlbchange_handler_head(&p
, &l
, &r
);
2054 build_pte_modifiable(&p
, &r
, wr
.r1
, wr
.r2
, wr
.r3
, label_nopage_tlbm
);
2055 if (m4kc_tlbp_war())
2056 build_tlb_probe_entry(&p
);
2057 /* Present and writable bits set, set accessed and dirty bits. */
2058 build_make_write(&p
, &r
, wr
.r1
, wr
.r2
);
2059 build_r4000_tlbchange_handler_tail(&p
, &l
, &r
, wr
.r1
, wr
.r2
);
2061 #ifdef CONFIG_HUGETLB_PAGE
2063 * This is the entry point when
2064 * build_r4000_tlbchange_handler_head spots a huge page.
2066 uasm_l_tlb_huge_update(&l
, p
);
2067 iPTE_LW(&p
, wr
.r1
, wr
.r2
);
2068 build_pte_modifiable(&p
, &r
, wr
.r1
, wr
.r2
, wr
.r3
, label_nopage_tlbm
);
2069 build_tlb_probe_entry(&p
);
2070 uasm_i_ori(&p
, wr
.r1
, wr
.r1
,
2071 _PAGE_ACCESSED
| _PAGE_MODIFIED
| _PAGE_VALID
| _PAGE_DIRTY
);
2072 build_huge_handler_tail(&p
, &r
, &l
, wr
.r1
, wr
.r2
);
2075 uasm_l_nopage_tlbm(&l
, p
);
2076 build_restore_work_registers(&p
);
2077 uasm_i_j(&p
, (unsigned long)tlb_do_page_fault_1
& 0x0fffffff);
2080 if ((p
- handle_tlbm
) > FASTPATH_SIZE
)
2081 panic("TLB modify handler fastpath space exceeded");
2083 uasm_resolve_relocs(relocs
, labels
);
2084 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
2085 (unsigned int)(p
- handle_tlbm
));
2087 dump_handler(handle_tlbm
, ARRAY_SIZE(handle_tlbm
));
2090 void __cpuinit
build_tlb_refill_handler(void)
2093 * The refill handler is generated per-CPU, multi-node systems
2094 * may have local storage for it. The other handlers are only
2097 static int run_once
= 0;
2100 check_for_high_segbits
= current_cpu_data
.vmbits
> (PGDIR_SHIFT
+ PGD_ORDER
+ PAGE_SHIFT
- 3);
2103 switch (current_cpu_type()) {
2111 #ifndef CONFIG_MIPS_PGD_C0_CONTEXT
2112 build_r3000_tlb_refill_handler();
2114 build_r3000_tlb_load_handler();
2115 build_r3000_tlb_store_handler();
2116 build_r3000_tlb_modify_handler();
2120 panic("No R3000 TLB refill handler");
2126 panic("No R6000 TLB refill handler yet");
2130 panic("No R8000 TLB refill handler yet");
2135 scratch_reg
= allocate_kscratch();
2136 #ifdef CONFIG_MIPS_PGD_C0_CONTEXT
2137 build_r4000_setup_pgd();
2139 build_r4000_tlb_load_handler();
2140 build_r4000_tlb_store_handler();
2141 build_r4000_tlb_modify_handler();
2144 build_r4000_tlb_refill_handler();
2148 void __cpuinit
flush_tlb_handlers(void)
2150 local_flush_icache_range((unsigned long)handle_tlbl
,
2151 (unsigned long)handle_tlbl
+ sizeof(handle_tlbl
));
2152 local_flush_icache_range((unsigned long)handle_tlbs
,
2153 (unsigned long)handle_tlbs
+ sizeof(handle_tlbs
));
2154 local_flush_icache_range((unsigned long)handle_tlbm
,
2155 (unsigned long)handle_tlbm
+ sizeof(handle_tlbm
));
2156 #ifdef CONFIG_MIPS_PGD_C0_CONTEXT
2157 local_flush_icache_range((unsigned long)tlbmiss_handler_setup_pgd
,
2158 (unsigned long)tlbmiss_handler_setup_pgd
+ sizeof(handle_tlbm
));