]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/mips/mm/tlbex.c
MIPS: Fold the TLB refill at the vmalloc path if possible.
[mirror_ubuntu-zesty-kernel.git] / arch / mips / mm / tlbex.c
CommitLineData
1da177e4
LT
1/*
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 * Synthesize TLB refill handlers at runtime.
7 *
e30ec452 8 * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer
95affdda 9 * Copyright (C) 2005, 2007, 2008, 2009 Maciej W. Rozycki
41c594ab
RB
10 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org)
11 *
12 * ... and the days got worse and worse and now you see
13 * I've gone completly out of my mind.
14 *
15 * They're coming to take me a away haha
16 * they're coming to take me a away hoho hihi haha
17 * to the funny farm where code is beautiful all the time ...
18 *
19 * (Condolences to Napoleon XIV)
1da177e4
LT
20 */
21
95affdda 22#include <linux/bug.h>
1da177e4
LT
23#include <linux/kernel.h>
24#include <linux/types.h>
25#include <linux/string.h>
26#include <linux/init.h>
27
1da177e4 28#include <asm/mmu_context.h>
1da177e4
LT
29#include <asm/war.h>
30
e30ec452
TS
31#include "uasm.h"
32
aeffdbba 33static inline int r45k_bvahwbug(void)
1da177e4
LT
34{
35 /* XXX: We should probe for the presence of this bug, but we don't. */
36 return 0;
37}
38
aeffdbba 39static inline int r4k_250MHZhwbug(void)
1da177e4
LT
40{
41 /* XXX: We should probe for the presence of this bug, but we don't. */
42 return 0;
43}
44
aeffdbba 45static inline int __maybe_unused bcm1250_m3_war(void)
1da177e4
LT
46{
47 return BCM1250_M3_WAR;
48}
49
aeffdbba 50static inline int __maybe_unused r10000_llsc_war(void)
1da177e4
LT
51{
52 return R10000_LLSC_WAR;
53}
54
8df5beac
MR
55/*
56 * Found by experiment: At least some revisions of the 4kc throw under
57 * some circumstances a machine check exception, triggered by invalid
58 * values in the index register. Delaying the tlbp instruction until
59 * after the next branch, plus adding an additional nop in front of
60 * tlbwi/tlbwr avoids the invalid index register values. Nobody knows
61 * why; it's not an issue caused by the core RTL.
62 *
63 */
234fcd14 64static int __cpuinit m4kc_tlbp_war(void)
8df5beac
MR
65{
66 return (current_cpu_data.processor_id & 0xffff00) ==
67 (PRID_COMP_MIPS | PRID_IMP_4KC);
68}
69
e30ec452 70/* Handle labels (which must be positive integers). */
1da177e4 71enum label_id {
e30ec452 72 label_second_part = 1,
1da177e4 73 label_leave,
656be92f
AN
74#ifdef MODULE_START
75 label_module_alloc,
76#endif
1da177e4
LT
77 label_vmalloc,
78 label_vmalloc_done,
79 label_tlbw_hazard,
80 label_split,
81 label_nopage_tlbl,
82 label_nopage_tlbs,
83 label_nopage_tlbm,
84 label_smp_pgtable_change,
85 label_r3000_write_probe_fail,
1da177e4
LT
86};
87
e30ec452
TS
88UASM_L_LA(_second_part)
89UASM_L_LA(_leave)
656be92f 90#ifdef MODULE_START
e30ec452 91UASM_L_LA(_module_alloc)
619b6e18 92#endif
e30ec452
TS
93UASM_L_LA(_vmalloc)
94UASM_L_LA(_vmalloc_done)
95UASM_L_LA(_tlbw_hazard)
96UASM_L_LA(_split)
97UASM_L_LA(_nopage_tlbl)
98UASM_L_LA(_nopage_tlbs)
99UASM_L_LA(_nopage_tlbm)
100UASM_L_LA(_smp_pgtable_change)
101UASM_L_LA(_r3000_write_probe_fail)
656be92f 102
92b1e6a6
FBH
103/*
104 * For debug purposes.
105 */
106static inline void dump_handler(const u32 *handler, int count)
107{
108 int i;
109
110 pr_debug("\t.set push\n");
111 pr_debug("\t.set noreorder\n");
112
113 for (i = 0; i < count; i++)
114 pr_debug("\t%p\t.word 0x%08x\n", &handler[i], handler[i]);
115
116 pr_debug("\t.set pop\n");
117}
118
1da177e4
LT
119/* The only general purpose registers allowed in TLB handlers. */
120#define K0 26
121#define K1 27
122
123/* Some CP0 registers */
41c594ab
RB
124#define C0_INDEX 0, 0
125#define C0_ENTRYLO0 2, 0
126#define C0_TCBIND 2, 2
127#define C0_ENTRYLO1 3, 0
128#define C0_CONTEXT 4, 0
129#define C0_BADVADDR 8, 0
130#define C0_ENTRYHI 10, 0
131#define C0_EPC 14, 0
132#define C0_XCONTEXT 20, 0
1da177e4 133
875d43e7 134#ifdef CONFIG_64BIT
e30ec452 135# define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_XCONTEXT)
1da177e4 136#else
e30ec452 137# define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_CONTEXT)
1da177e4
LT
138#endif
139
140/* The worst case length of the handler is around 18 instructions for
141 * R3000-style TLBs and up to 63 instructions for R4000-style TLBs.
142 * Maximum space available is 32 instructions for R3000 and 64
143 * instructions for R4000.
144 *
145 * We deliberately chose a buffer size of 128, so we won't scribble
146 * over anything important on overflow before we panic.
147 */
234fcd14 148static u32 tlb_handler[128] __cpuinitdata;
1da177e4
LT
149
150/* simply assume worst case size for labels and relocs */
234fcd14
RB
151static struct uasm_label labels[128] __cpuinitdata;
152static struct uasm_reloc relocs[128] __cpuinitdata;
1da177e4
LT
153
154/*
155 * The R3000 TLB handler is simple.
156 */
234fcd14 157static void __cpuinit build_r3000_tlb_refill_handler(void)
1da177e4
LT
158{
159 long pgdc = (long)pgd_current;
160 u32 *p;
161
162 memset(tlb_handler, 0, sizeof(tlb_handler));
163 p = tlb_handler;
164
e30ec452
TS
165 uasm_i_mfc0(&p, K0, C0_BADVADDR);
166 uasm_i_lui(&p, K1, uasm_rel_hi(pgdc)); /* cp0 delay */
167 uasm_i_lw(&p, K1, uasm_rel_lo(pgdc), K1);
168 uasm_i_srl(&p, K0, K0, 22); /* load delay */
169 uasm_i_sll(&p, K0, K0, 2);
170 uasm_i_addu(&p, K1, K1, K0);
171 uasm_i_mfc0(&p, K0, C0_CONTEXT);
172 uasm_i_lw(&p, K1, 0, K1); /* cp0 delay */
173 uasm_i_andi(&p, K0, K0, 0xffc); /* load delay */
174 uasm_i_addu(&p, K1, K1, K0);
175 uasm_i_lw(&p, K0, 0, K1);
176 uasm_i_nop(&p); /* load delay */
177 uasm_i_mtc0(&p, K0, C0_ENTRYLO0);
178 uasm_i_mfc0(&p, K1, C0_EPC); /* cp0 delay */
179 uasm_i_tlbwr(&p); /* cp0 delay */
180 uasm_i_jr(&p, K1);
181 uasm_i_rfe(&p); /* branch delay */
1da177e4
LT
182
183 if (p > tlb_handler + 32)
184 panic("TLB refill handler space exceeded");
185
e30ec452
TS
186 pr_debug("Wrote TLB refill handler (%u instructions).\n",
187 (unsigned int)(p - tlb_handler));
1da177e4 188
91b05e67 189 memcpy((void *)ebase, tlb_handler, 0x80);
92b1e6a6
FBH
190
191 dump_handler((u32 *)ebase, 32);
1da177e4
LT
192}
193
194/*
195 * The R4000 TLB handler is much more complicated. We have two
196 * consecutive handler areas with 32 instructions space each.
197 * Since they aren't used at the same time, we can overflow in the
198 * other one.To keep things simple, we first assume linear space,
199 * then we relocate it to the final handler layout as needed.
200 */
234fcd14 201static u32 final_handler[64] __cpuinitdata;
1da177e4
LT
202
203/*
204 * Hazards
205 *
206 * From the IDT errata for the QED RM5230 (Nevada), processor revision 1.0:
207 * 2. A timing hazard exists for the TLBP instruction.
208 *
209 * stalling_instruction
210 * TLBP
211 *
212 * The JTLB is being read for the TLBP throughout the stall generated by the
213 * previous instruction. This is not really correct as the stalling instruction
214 * can modify the address used to access the JTLB. The failure symptom is that
215 * the TLBP instruction will use an address created for the stalling instruction
216 * and not the address held in C0_ENHI and thus report the wrong results.
217 *
218 * The software work-around is to not allow the instruction preceding the TLBP
219 * to stall - make it an NOP or some other instruction guaranteed not to stall.
220 *
221 * Errata 2 will not be fixed. This errata is also on the R5000.
222 *
223 * As if we MIPS hackers wouldn't know how to nop pipelines happy ...
224 */
234fcd14 225static void __cpuinit __maybe_unused build_tlb_probe_entry(u32 **p)
1da177e4 226{
10cc3529 227 switch (current_cpu_type()) {
326e2e1a 228 /* Found by experiment: R4600 v2.0/R4700 needs this, too. */
f5b4d956 229 case CPU_R4600:
326e2e1a 230 case CPU_R4700:
1da177e4
LT
231 case CPU_R5000:
232 case CPU_R5000A:
233 case CPU_NEVADA:
e30ec452
TS
234 uasm_i_nop(p);
235 uasm_i_tlbp(p);
1da177e4
LT
236 break;
237
238 default:
e30ec452 239 uasm_i_tlbp(p);
1da177e4
LT
240 break;
241 }
242}
243
244/*
245 * Write random or indexed TLB entry, and care about the hazards from
246 * the preceeding mtc0 and for the following eret.
247 */
248enum tlb_write_entry { tlb_random, tlb_indexed };
249
234fcd14 250static void __cpuinit build_tlb_write_entry(u32 **p, struct uasm_label **l,
e30ec452 251 struct uasm_reloc **r,
1da177e4
LT
252 enum tlb_write_entry wmode)
253{
254 void(*tlbw)(u32 **) = NULL;
255
256 switch (wmode) {
e30ec452
TS
257 case tlb_random: tlbw = uasm_i_tlbwr; break;
258 case tlb_indexed: tlbw = uasm_i_tlbwi; break;
1da177e4
LT
259 }
260
161548bf 261 if (cpu_has_mips_r2) {
e30ec452 262 uasm_i_ehb(p);
161548bf
RB
263 tlbw(p);
264 return;
265 }
266
10cc3529 267 switch (current_cpu_type()) {
1da177e4
LT
268 case CPU_R4000PC:
269 case CPU_R4000SC:
270 case CPU_R4000MC:
271 case CPU_R4400PC:
272 case CPU_R4400SC:
273 case CPU_R4400MC:
274 /*
275 * This branch uses up a mtc0 hazard nop slot and saves
276 * two nops after the tlbw instruction.
277 */
e30ec452 278 uasm_il_bgezl(p, r, 0, label_tlbw_hazard);
1da177e4 279 tlbw(p);
e30ec452
TS
280 uasm_l_tlbw_hazard(l, *p);
281 uasm_i_nop(p);
1da177e4
LT
282 break;
283
284 case CPU_R4600:
285 case CPU_R4700:
286 case CPU_R5000:
287 case CPU_R5000A:
e30ec452 288 uasm_i_nop(p);
2c93e12c 289 tlbw(p);
e30ec452 290 uasm_i_nop(p);
2c93e12c
MR
291 break;
292
293 case CPU_R4300:
1da177e4
LT
294 case CPU_5KC:
295 case CPU_TX49XX:
bdf21b18 296 case CPU_PR4450:
e30ec452 297 uasm_i_nop(p);
1da177e4
LT
298 tlbw(p);
299 break;
300
301 case CPU_R10000:
302 case CPU_R12000:
44d921b2 303 case CPU_R14000:
1da177e4 304 case CPU_4KC:
b1ec4c8e 305 case CPU_4KEC:
1da177e4 306 case CPU_SB1:
93ce2f52 307 case CPU_SB1A:
1da177e4
LT
308 case CPU_4KSC:
309 case CPU_20KC:
310 case CPU_25KF:
1c0c13eb
AJ
311 case CPU_BCM3302:
312 case CPU_BCM4710:
2a21c730 313 case CPU_LOONGSON2:
ec454d8c 314 case CPU_CAVIUM_OCTEON:
a644b277 315 case CPU_R5500:
8df5beac 316 if (m4kc_tlbp_war())
e30ec452 317 uasm_i_nop(p);
2f794d09 318 case CPU_ALCHEMY:
1da177e4
LT
319 tlbw(p);
320 break;
321
322 case CPU_NEVADA:
e30ec452 323 uasm_i_nop(p); /* QED specifies 2 nops hazard */
1da177e4
LT
324 /*
325 * This branch uses up a mtc0 hazard nop slot and saves
326 * a nop after the tlbw instruction.
327 */
e30ec452 328 uasm_il_bgezl(p, r, 0, label_tlbw_hazard);
1da177e4 329 tlbw(p);
e30ec452 330 uasm_l_tlbw_hazard(l, *p);
1da177e4
LT
331 break;
332
333 case CPU_RM7000:
e30ec452
TS
334 uasm_i_nop(p);
335 uasm_i_nop(p);
336 uasm_i_nop(p);
337 uasm_i_nop(p);
1da177e4
LT
338 tlbw(p);
339 break;
340
1da177e4
LT
341 case CPU_RM9000:
342 /*
343 * When the JTLB is updated by tlbwi or tlbwr, a subsequent
344 * use of the JTLB for instructions should not occur for 4
345 * cpu cycles and use for data translations should not occur
346 * for 3 cpu cycles.
347 */
e30ec452
TS
348 uasm_i_ssnop(p);
349 uasm_i_ssnop(p);
350 uasm_i_ssnop(p);
351 uasm_i_ssnop(p);
1da177e4 352 tlbw(p);
e30ec452
TS
353 uasm_i_ssnop(p);
354 uasm_i_ssnop(p);
355 uasm_i_ssnop(p);
356 uasm_i_ssnop(p);
1da177e4
LT
357 break;
358
359 case CPU_VR4111:
360 case CPU_VR4121:
361 case CPU_VR4122:
362 case CPU_VR4181:
363 case CPU_VR4181A:
e30ec452
TS
364 uasm_i_nop(p);
365 uasm_i_nop(p);
1da177e4 366 tlbw(p);
e30ec452
TS
367 uasm_i_nop(p);
368 uasm_i_nop(p);
1da177e4
LT
369 break;
370
371 case CPU_VR4131:
372 case CPU_VR4133:
7623debf 373 case CPU_R5432:
e30ec452
TS
374 uasm_i_nop(p);
375 uasm_i_nop(p);
1da177e4
LT
376 tlbw(p);
377 break;
378
379 default:
380 panic("No TLB refill handler yet (CPU type: %d)",
381 current_cpu_data.cputype);
382 break;
383 }
384}
385
875d43e7 386#ifdef CONFIG_64BIT
1da177e4
LT
387/*
388 * TMP and PTR are scratch.
389 * TMP will be clobbered, PTR will hold the pmd entry.
390 */
234fcd14 391static void __cpuinit
e30ec452 392build_get_pmde64(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
1da177e4
LT
393 unsigned int tmp, unsigned int ptr)
394{
395 long pgdc = (long)pgd_current;
396
397 /*
398 * The vmalloc handling is not in the hotpath.
399 */
e30ec452 400 uasm_i_dmfc0(p, tmp, C0_BADVADDR);
656be92f 401#ifdef MODULE_START
e30ec452 402 uasm_il_bltz(p, r, tmp, label_module_alloc);
656be92f 403#else
e30ec452 404 uasm_il_bltz(p, r, tmp, label_vmalloc);
656be92f 405#endif
e30ec452 406 /* No uasm_i_nop needed here, since the next insn doesn't touch TMP. */
1da177e4
LT
407
408#ifdef CONFIG_SMP
41c594ab
RB
409# ifdef CONFIG_MIPS_MT_SMTC
410 /*
411 * SMTC uses TCBind value as "CPU" index
412 */
e30ec452
TS
413 uasm_i_mfc0(p, ptr, C0_TCBIND);
414 uasm_i_dsrl(p, ptr, ptr, 19);
41c594ab 415# else
1da177e4 416 /*
1b3a6e97 417 * 64 bit SMP running in XKPHYS has smp_processor_id() << 3
1da177e4
LT
418 * stored in CONTEXT.
419 */
e30ec452
TS
420 uasm_i_dmfc0(p, ptr, C0_CONTEXT);
421 uasm_i_dsrl(p, ptr, ptr, 23);
41c594ab 422#endif
e30ec452
TS
423 UASM_i_LA_mostly(p, tmp, pgdc);
424 uasm_i_daddu(p, ptr, ptr, tmp);
425 uasm_i_dmfc0(p, tmp, C0_BADVADDR);
426 uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr);
1da177e4 427#else
e30ec452
TS
428 UASM_i_LA_mostly(p, ptr, pgdc);
429 uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr);
1da177e4
LT
430#endif
431
e30ec452 432 uasm_l_vmalloc_done(l, *p);
242954b5
RB
433
434 if (PGDIR_SHIFT - 3 < 32) /* get pgd offset in bytes */
e30ec452 435 uasm_i_dsrl(p, tmp, tmp, PGDIR_SHIFT-3);
242954b5 436 else
e30ec452
TS
437 uasm_i_dsrl32(p, tmp, tmp, PGDIR_SHIFT - 3 - 32);
438
439 uasm_i_andi(p, tmp, tmp, (PTRS_PER_PGD - 1)<<3);
440 uasm_i_daddu(p, ptr, ptr, tmp); /* add in pgd offset */
441 uasm_i_dmfc0(p, tmp, C0_BADVADDR); /* get faulting address */
442 uasm_i_ld(p, ptr, 0, ptr); /* get pmd pointer */
443 uasm_i_dsrl(p, tmp, tmp, PMD_SHIFT-3); /* get pmd offset in bytes */
444 uasm_i_andi(p, tmp, tmp, (PTRS_PER_PMD - 1)<<3);
445 uasm_i_daddu(p, ptr, ptr, tmp); /* add in pmd offset */
1da177e4
LT
446}
447
448/*
449 * BVADDR is the faulting address, PTR is scratch.
450 * PTR will hold the pgd for vmalloc.
451 */
234fcd14 452static void __cpuinit
e30ec452 453build_get_pgd_vmalloc64(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
1da177e4
LT
454 unsigned int bvaddr, unsigned int ptr)
455{
456 long swpd = (long)swapper_pg_dir;
457
656be92f
AN
458#ifdef MODULE_START
459 long modd = (long)module_pg_dir;
460
e30ec452 461 uasm_l_module_alloc(l, *p);
656be92f
AN
462 /*
463 * Assumption:
464 * VMALLOC_START >= 0xc000000000000000UL
465 * MODULE_START >= 0xe000000000000000UL
466 */
e30ec452
TS
467 UASM_i_SLL(p, ptr, bvaddr, 2);
468 uasm_il_bgez(p, r, ptr, label_vmalloc);
656be92f 469
e30ec452
TS
470 if (uasm_in_compat_space_p(MODULE_START) &&
471 !uasm_rel_lo(MODULE_START)) {
472 uasm_i_lui(p, ptr, uasm_rel_hi(MODULE_START)); /* delay slot */
656be92f
AN
473 } else {
474 /* unlikely configuration */
e30ec452
TS
475 uasm_i_nop(p); /* delay slot */
476 UASM_i_LA(p, ptr, MODULE_START);
656be92f 477 }
e30ec452 478 uasm_i_dsubu(p, bvaddr, bvaddr, ptr);
656be92f 479
e30ec452
TS
480 if (uasm_in_compat_space_p(modd) && !uasm_rel_lo(modd)) {
481 uasm_il_b(p, r, label_vmalloc_done);
482 uasm_i_lui(p, ptr, uasm_rel_hi(modd));
656be92f 483 } else {
e30ec452
TS
484 UASM_i_LA_mostly(p, ptr, modd);
485 uasm_il_b(p, r, label_vmalloc_done);
486 if (uasm_in_compat_space_p(modd))
487 uasm_i_addiu(p, ptr, ptr, uasm_rel_lo(modd));
619b6e18 488 else
e30ec452 489 uasm_i_daddiu(p, ptr, ptr, uasm_rel_lo(modd));
656be92f
AN
490 }
491
e30ec452
TS
492 uasm_l_vmalloc(l, *p);
493 if (uasm_in_compat_space_p(MODULE_START) &&
494 !uasm_rel_lo(MODULE_START) &&
656be92f 495 MODULE_START << 32 == VMALLOC_START)
e30ec452 496 uasm_i_dsll32(p, ptr, ptr, 0); /* typical case */
656be92f 497 else
e30ec452 498 UASM_i_LA(p, ptr, VMALLOC_START);
656be92f 499#else
e30ec452
TS
500 uasm_l_vmalloc(l, *p);
501 UASM_i_LA(p, ptr, VMALLOC_START);
656be92f 502#endif
e30ec452 503 uasm_i_dsubu(p, bvaddr, bvaddr, ptr);
1da177e4 504
e30ec452
TS
505 if (uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd)) {
506 uasm_il_b(p, r, label_vmalloc_done);
507 uasm_i_lui(p, ptr, uasm_rel_hi(swpd));
1da177e4 508 } else {
e30ec452
TS
509 UASM_i_LA_mostly(p, ptr, swpd);
510 uasm_il_b(p, r, label_vmalloc_done);
511 if (uasm_in_compat_space_p(swpd))
512 uasm_i_addiu(p, ptr, ptr, uasm_rel_lo(swpd));
619b6e18 513 else
e30ec452 514 uasm_i_daddiu(p, ptr, ptr, uasm_rel_lo(swpd));
1da177e4
LT
515 }
516}
517
875d43e7 518#else /* !CONFIG_64BIT */
1da177e4
LT
519
520/*
521 * TMP and PTR are scratch.
522 * TMP will be clobbered, PTR will hold the pgd entry.
523 */
234fcd14 524static void __cpuinit __maybe_unused
1da177e4
LT
525build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr)
526{
527 long pgdc = (long)pgd_current;
528
529 /* 32 bit SMP has smp_processor_id() stored in CONTEXT. */
530#ifdef CONFIG_SMP
41c594ab
RB
531#ifdef CONFIG_MIPS_MT_SMTC
532 /*
533 * SMTC uses TCBind value as "CPU" index
534 */
e30ec452
TS
535 uasm_i_mfc0(p, ptr, C0_TCBIND);
536 UASM_i_LA_mostly(p, tmp, pgdc);
537 uasm_i_srl(p, ptr, ptr, 19);
41c594ab
RB
538#else
539 /*
540 * smp_processor_id() << 3 is stored in CONTEXT.
541 */
e30ec452
TS
542 uasm_i_mfc0(p, ptr, C0_CONTEXT);
543 UASM_i_LA_mostly(p, tmp, pgdc);
544 uasm_i_srl(p, ptr, ptr, 23);
41c594ab 545#endif
e30ec452 546 uasm_i_addu(p, ptr, tmp, ptr);
1da177e4 547#else
e30ec452 548 UASM_i_LA_mostly(p, ptr, pgdc);
1da177e4 549#endif
e30ec452
TS
550 uasm_i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */
551 uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr);
552 uasm_i_srl(p, tmp, tmp, PGDIR_SHIFT); /* get pgd only bits */
553 uasm_i_sll(p, tmp, tmp, PGD_T_LOG2);
554 uasm_i_addu(p, ptr, ptr, tmp); /* add in pgd offset */
1da177e4
LT
555}
556
875d43e7 557#endif /* !CONFIG_64BIT */
1da177e4 558
234fcd14 559static void __cpuinit build_adjust_context(u32 **p, unsigned int ctx)
1da177e4 560{
242954b5 561 unsigned int shift = 4 - (PTE_T_LOG2 + 1) + PAGE_SHIFT - 12;
1da177e4
LT
562 unsigned int mask = (PTRS_PER_PTE / 2 - 1) << (PTE_T_LOG2 + 1);
563
10cc3529 564 switch (current_cpu_type()) {
1da177e4
LT
565 case CPU_VR41XX:
566 case CPU_VR4111:
567 case CPU_VR4121:
568 case CPU_VR4122:
569 case CPU_VR4131:
570 case CPU_VR4181:
571 case CPU_VR4181A:
572 case CPU_VR4133:
573 shift += 2;
574 break;
575
576 default:
577 break;
578 }
579
580 if (shift)
e30ec452
TS
581 UASM_i_SRL(p, ctx, ctx, shift);
582 uasm_i_andi(p, ctx, ctx, mask);
1da177e4
LT
583}
584
234fcd14 585static void __cpuinit build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr)
1da177e4
LT
586{
587 /*
588 * Bug workaround for the Nevada. It seems as if under certain
589 * circumstances the move from cp0_context might produce a
590 * bogus result when the mfc0 instruction and its consumer are
591 * in a different cacheline or a load instruction, probably any
592 * memory reference, is between them.
593 */
10cc3529 594 switch (current_cpu_type()) {
1da177e4 595 case CPU_NEVADA:
e30ec452 596 UASM_i_LW(p, ptr, 0, ptr);
1da177e4
LT
597 GET_CONTEXT(p, tmp); /* get context reg */
598 break;
599
600 default:
601 GET_CONTEXT(p, tmp); /* get context reg */
e30ec452 602 UASM_i_LW(p, ptr, 0, ptr);
1da177e4
LT
603 break;
604 }
605
606 build_adjust_context(p, tmp);
e30ec452 607 UASM_i_ADDU(p, ptr, ptr, tmp); /* add in offset */
1da177e4
LT
608}
609
234fcd14 610static void __cpuinit build_update_entries(u32 **p, unsigned int tmp,
1da177e4
LT
611 unsigned int ptep)
612{
613 /*
614 * 64bit address support (36bit on a 32bit CPU) in a 32bit
615 * Kernel is a special case. Only a few CPUs use it.
616 */
617#ifdef CONFIG_64BIT_PHYS_ADDR
618 if (cpu_has_64bits) {
e30ec452
TS
619 uasm_i_ld(p, tmp, 0, ptep); /* get even pte */
620 uasm_i_ld(p, ptep, sizeof(pte_t), ptep); /* get odd pte */
621 uasm_i_dsrl(p, tmp, tmp, 6); /* convert to entrylo0 */
622 uasm_i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */
623 uasm_i_dsrl(p, ptep, ptep, 6); /* convert to entrylo1 */
624 uasm_i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */
1da177e4
LT
625 } else {
626 int pte_off_even = sizeof(pte_t) / 2;
627 int pte_off_odd = pte_off_even + sizeof(pte_t);
628
629 /* The pte entries are pre-shifted */
e30ec452
TS
630 uasm_i_lw(p, tmp, pte_off_even, ptep); /* get even pte */
631 uasm_i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */
632 uasm_i_lw(p, ptep, pte_off_odd, ptep); /* get odd pte */
633 uasm_i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */
1da177e4
LT
634 }
635#else
e30ec452
TS
636 UASM_i_LW(p, tmp, 0, ptep); /* get even pte */
637 UASM_i_LW(p, ptep, sizeof(pte_t), ptep); /* get odd pte */
1da177e4
LT
638 if (r45k_bvahwbug())
639 build_tlb_probe_entry(p);
e30ec452 640 UASM_i_SRL(p, tmp, tmp, 6); /* convert to entrylo0 */
1da177e4 641 if (r4k_250MHZhwbug())
e30ec452
TS
642 uasm_i_mtc0(p, 0, C0_ENTRYLO0);
643 uasm_i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */
644 UASM_i_SRL(p, ptep, ptep, 6); /* convert to entrylo1 */
1da177e4 645 if (r45k_bvahwbug())
e30ec452 646 uasm_i_mfc0(p, tmp, C0_INDEX);
1da177e4 647 if (r4k_250MHZhwbug())
e30ec452
TS
648 uasm_i_mtc0(p, 0, C0_ENTRYLO1);
649 uasm_i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */
1da177e4
LT
650#endif
651}
652
e6f72d3a
DD
653/*
654 * For a 64-bit kernel, we are using the 64-bit XTLB refill exception
655 * because EXL == 0. If we wrap, we can also use the 32 instruction
656 * slots before the XTLB refill exception handler which belong to the
657 * unused TLB refill exception.
658 */
659#define MIPS64_REFILL_INSNS 32
660
234fcd14 661static void __cpuinit build_r4000_tlb_refill_handler(void)
1da177e4
LT
662{
663 u32 *p = tlb_handler;
e30ec452
TS
664 struct uasm_label *l = labels;
665 struct uasm_reloc *r = relocs;
1da177e4
LT
666 u32 *f;
667 unsigned int final_len;
668
669 memset(tlb_handler, 0, sizeof(tlb_handler));
670 memset(labels, 0, sizeof(labels));
671 memset(relocs, 0, sizeof(relocs));
672 memset(final_handler, 0, sizeof(final_handler));
673
674 /*
675 * create the plain linear handler
676 */
677 if (bcm1250_m3_war()) {
e30ec452
TS
678 UASM_i_MFC0(&p, K0, C0_BADVADDR);
679 UASM_i_MFC0(&p, K1, C0_ENTRYHI);
680 uasm_i_xor(&p, K0, K0, K1);
681 UASM_i_SRL(&p, K0, K0, PAGE_SHIFT + 1);
682 uasm_il_bnez(&p, &r, K0, label_leave);
683 /* No need for uasm_i_nop */
1da177e4
LT
684 }
685
875d43e7 686#ifdef CONFIG_64BIT
1da177e4
LT
687 build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */
688#else
689 build_get_pgde32(&p, K0, K1); /* get pgd in K1 */
690#endif
691
692 build_get_ptep(&p, K0, K1);
693 build_update_entries(&p, K0, K1);
694 build_tlb_write_entry(&p, &l, &r, tlb_random);
e30ec452
TS
695 uasm_l_leave(&l, p);
696 uasm_i_eret(&p); /* return from trap */
1da177e4 697
875d43e7 698#ifdef CONFIG_64BIT
1da177e4
LT
699 build_get_pgd_vmalloc64(&p, &l, &r, K0, K1);
700#endif
701
702 /*
703 * Overflow check: For the 64bit handler, we need at least one
704 * free instruction slot for the wrap-around branch. In worst
705 * case, if the intended insertion point is a delay slot, we
4b3f686d 706 * need three, with the second nop'ed and the third being
1da177e4
LT
707 * unused.
708 */
2a21c730
FZ
709 /* Loongson2 ebase is different than r4k, we have more space */
710#if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2)
1da177e4
LT
711 if ((p - tlb_handler) > 64)
712 panic("TLB refill handler space exceeded");
713#else
e6f72d3a
DD
714 if (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 1)
715 || (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 3)
716 && uasm_insn_has_bdelay(relocs,
717 tlb_handler + MIPS64_REFILL_INSNS - 3)))
1da177e4
LT
718 panic("TLB refill handler space exceeded");
719#endif
720
721 /*
722 * Now fold the handler in the TLB refill handler space.
723 */
2a21c730 724#if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2)
1da177e4
LT
725 f = final_handler;
726 /* Simplest case, just copy the handler. */
e30ec452 727 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
1da177e4 728 final_len = p - tlb_handler;
875d43e7 729#else /* CONFIG_64BIT */
e6f72d3a
DD
730 f = final_handler + MIPS64_REFILL_INSNS;
731 if ((p - tlb_handler) <= MIPS64_REFILL_INSNS) {
1da177e4 732 /* Just copy the handler. */
e30ec452 733 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
1da177e4
LT
734 final_len = p - tlb_handler;
735 } else {
95affdda
DD
736#ifdef MODULE_START
737 const enum label_id ls = label_module_alloc;
738#else
739 const enum label_id ls = label_vmalloc;
740#endif
741 u32 *split;
742 int ov = 0;
743 int i;
744
745 for (i = 0; i < ARRAY_SIZE(labels) && labels[i].lab != ls; i++)
746 ;
747 BUG_ON(i == ARRAY_SIZE(labels));
748 split = labels[i].addr;
1da177e4
LT
749
750 /*
95affdda 751 * See if we have overflown one way or the other.
1da177e4 752 */
95affdda
DD
753 if (split > tlb_handler + MIPS64_REFILL_INSNS ||
754 split < p - MIPS64_REFILL_INSNS)
755 ov = 1;
756
757 if (ov) {
758 /*
759 * Split two instructions before the end. One
760 * for the branch and one for the instruction
761 * in the delay slot.
762 */
763 split = tlb_handler + MIPS64_REFILL_INSNS - 2;
764
765 /*
766 * If the branch would fall in a delay slot,
767 * we must back up an additional instruction
768 * so that it is no longer in a delay slot.
769 */
770 if (uasm_insn_has_bdelay(relocs, split - 1))
771 split--;
772 }
1da177e4 773 /* Copy first part of the handler. */
e30ec452 774 uasm_copy_handler(relocs, labels, tlb_handler, split, f);
1da177e4
LT
775 f += split - tlb_handler;
776
95affdda
DD
777 if (ov) {
778 /* Insert branch. */
779 uasm_l_split(&l, final_handler);
780 uasm_il_b(&f, &r, label_split);
781 if (uasm_insn_has_bdelay(relocs, split))
782 uasm_i_nop(&f);
783 else {
784 uasm_copy_handler(relocs, labels,
785 split, split + 1, f);
786 uasm_move_labels(labels, f, f + 1, -1);
787 f++;
788 split++;
789 }
1da177e4
LT
790 }
791
792 /* Copy the rest of the handler. */
e30ec452 793 uasm_copy_handler(relocs, labels, split, p, final_handler);
e6f72d3a
DD
794 final_len = (f - (final_handler + MIPS64_REFILL_INSNS)) +
795 (p - split);
1da177e4 796 }
875d43e7 797#endif /* CONFIG_64BIT */
1da177e4 798
e30ec452
TS
799 uasm_resolve_relocs(relocs, labels);
800 pr_debug("Wrote TLB refill handler (%u instructions).\n",
801 final_len);
1da177e4 802
91b05e67 803 memcpy((void *)ebase, final_handler, 0x100);
92b1e6a6
FBH
804
805 dump_handler((u32 *)ebase, 64);
1da177e4
LT
806}
807
808/*
809 * TLB load/store/modify handlers.
810 *
811 * Only the fastpath gets synthesized at runtime, the slowpath for
812 * do_page_fault remains normal asm.
813 */
814extern void tlb_do_page_fault_0(void);
815extern void tlb_do_page_fault_1(void);
816
1da177e4
LT
817/*
818 * 128 instructions for the fastpath handler is generous and should
819 * never be exceeded.
820 */
821#define FASTPATH_SIZE 128
822
cbdbe07f
FBH
823u32 handle_tlbl[FASTPATH_SIZE] __cacheline_aligned;
824u32 handle_tlbs[FASTPATH_SIZE] __cacheline_aligned;
825u32 handle_tlbm[FASTPATH_SIZE] __cacheline_aligned;
1da177e4 826
234fcd14 827static void __cpuinit
e30ec452 828iPTE_LW(u32 **p, struct uasm_label **l, unsigned int pte, unsigned int ptr)
1da177e4
LT
829{
830#ifdef CONFIG_SMP
831# ifdef CONFIG_64BIT_PHYS_ADDR
832 if (cpu_has_64bits)
e30ec452 833 uasm_i_lld(p, pte, 0, ptr);
1da177e4
LT
834 else
835# endif
e30ec452 836 UASM_i_LL(p, pte, 0, ptr);
1da177e4
LT
837#else
838# ifdef CONFIG_64BIT_PHYS_ADDR
839 if (cpu_has_64bits)
e30ec452 840 uasm_i_ld(p, pte, 0, ptr);
1da177e4
LT
841 else
842# endif
e30ec452 843 UASM_i_LW(p, pte, 0, ptr);
1da177e4
LT
844#endif
845}
846
234fcd14 847static void __cpuinit
e30ec452 848iPTE_SW(u32 **p, struct uasm_reloc **r, unsigned int pte, unsigned int ptr,
63b2d2f4 849 unsigned int mode)
1da177e4 850{
63b2d2f4
TS
851#ifdef CONFIG_64BIT_PHYS_ADDR
852 unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY);
853#endif
854
e30ec452 855 uasm_i_ori(p, pte, pte, mode);
1da177e4
LT
856#ifdef CONFIG_SMP
857# ifdef CONFIG_64BIT_PHYS_ADDR
858 if (cpu_has_64bits)
e30ec452 859 uasm_i_scd(p, pte, 0, ptr);
1da177e4
LT
860 else
861# endif
e30ec452 862 UASM_i_SC(p, pte, 0, ptr);
1da177e4
LT
863
864 if (r10000_llsc_war())
e30ec452 865 uasm_il_beqzl(p, r, pte, label_smp_pgtable_change);
1da177e4 866 else
e30ec452 867 uasm_il_beqz(p, r, pte, label_smp_pgtable_change);
1da177e4
LT
868
869# ifdef CONFIG_64BIT_PHYS_ADDR
870 if (!cpu_has_64bits) {
e30ec452
TS
871 /* no uasm_i_nop needed */
872 uasm_i_ll(p, pte, sizeof(pte_t) / 2, ptr);
873 uasm_i_ori(p, pte, pte, hwmode);
874 uasm_i_sc(p, pte, sizeof(pte_t) / 2, ptr);
875 uasm_il_beqz(p, r, pte, label_smp_pgtable_change);
876 /* no uasm_i_nop needed */
877 uasm_i_lw(p, pte, 0, ptr);
1da177e4 878 } else
e30ec452 879 uasm_i_nop(p);
1da177e4 880# else
e30ec452 881 uasm_i_nop(p);
1da177e4
LT
882# endif
883#else
884# ifdef CONFIG_64BIT_PHYS_ADDR
885 if (cpu_has_64bits)
e30ec452 886 uasm_i_sd(p, pte, 0, ptr);
1da177e4
LT
887 else
888# endif
e30ec452 889 UASM_i_SW(p, pte, 0, ptr);
1da177e4
LT
890
891# ifdef CONFIG_64BIT_PHYS_ADDR
892 if (!cpu_has_64bits) {
e30ec452
TS
893 uasm_i_lw(p, pte, sizeof(pte_t) / 2, ptr);
894 uasm_i_ori(p, pte, pte, hwmode);
895 uasm_i_sw(p, pte, sizeof(pte_t) / 2, ptr);
896 uasm_i_lw(p, pte, 0, ptr);
1da177e4
LT
897 }
898# endif
899#endif
900}
901
902/*
903 * Check if PTE is present, if not then jump to LABEL. PTR points to
904 * the page table where this PTE is located, PTE will be re-loaded
905 * with it's original value.
906 */
234fcd14 907static void __cpuinit
e30ec452 908build_pte_present(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
1da177e4
LT
909 unsigned int pte, unsigned int ptr, enum label_id lid)
910{
e30ec452
TS
911 uasm_i_andi(p, pte, pte, _PAGE_PRESENT | _PAGE_READ);
912 uasm_i_xori(p, pte, pte, _PAGE_PRESENT | _PAGE_READ);
913 uasm_il_bnez(p, r, pte, lid);
63b2d2f4 914 iPTE_LW(p, l, pte, ptr);
1da177e4
LT
915}
916
917/* Make PTE valid, store result in PTR. */
234fcd14 918static void __cpuinit
e30ec452 919build_make_valid(u32 **p, struct uasm_reloc **r, unsigned int pte,
1da177e4
LT
920 unsigned int ptr)
921{
63b2d2f4
TS
922 unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED;
923
924 iPTE_SW(p, r, pte, ptr, mode);
1da177e4
LT
925}
926
927/*
928 * Check if PTE can be written to, if not branch to LABEL. Regardless
929 * restore PTE with value from PTR when done.
930 */
234fcd14 931static void __cpuinit
e30ec452 932build_pte_writable(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
1da177e4
LT
933 unsigned int pte, unsigned int ptr, enum label_id lid)
934{
e30ec452
TS
935 uasm_i_andi(p, pte, pte, _PAGE_PRESENT | _PAGE_WRITE);
936 uasm_i_xori(p, pte, pte, _PAGE_PRESENT | _PAGE_WRITE);
937 uasm_il_bnez(p, r, pte, lid);
63b2d2f4 938 iPTE_LW(p, l, pte, ptr);
1da177e4
LT
939}
940
941/* Make PTE writable, update software status bits as well, then store
942 * at PTR.
943 */
234fcd14 944static void __cpuinit
e30ec452 945build_make_write(u32 **p, struct uasm_reloc **r, unsigned int pte,
1da177e4
LT
946 unsigned int ptr)
947{
63b2d2f4
TS
948 unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID
949 | _PAGE_DIRTY);
950
951 iPTE_SW(p, r, pte, ptr, mode);
1da177e4
LT
952}
953
954/*
955 * Check if PTE can be modified, if not branch to LABEL. Regardless
956 * restore PTE with value from PTR when done.
957 */
234fcd14 958static void __cpuinit
e30ec452 959build_pte_modifiable(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
1da177e4
LT
960 unsigned int pte, unsigned int ptr, enum label_id lid)
961{
e30ec452
TS
962 uasm_i_andi(p, pte, pte, _PAGE_WRITE);
963 uasm_il_beqz(p, r, pte, lid);
63b2d2f4 964 iPTE_LW(p, l, pte, ptr);
1da177e4
LT
965}
966
967/*
968 * R3000 style TLB load/store/modify handlers.
969 */
970
fded2e50
MR
971/*
972 * This places the pte into ENTRYLO0 and writes it with tlbwi.
973 * Then it returns.
974 */
234fcd14 975static void __cpuinit
fded2e50 976build_r3000_pte_reload_tlbwi(u32 **p, unsigned int pte, unsigned int tmp)
1da177e4 977{
e30ec452
TS
978 uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
979 uasm_i_mfc0(p, tmp, C0_EPC); /* cp0 delay */
980 uasm_i_tlbwi(p);
981 uasm_i_jr(p, tmp);
982 uasm_i_rfe(p); /* branch delay */
1da177e4
LT
983}
984
985/*
fded2e50
MR
986 * This places the pte into ENTRYLO0 and writes it with tlbwi
987 * or tlbwr as appropriate. This is because the index register
988 * may have the probe fail bit set as a result of a trap on a
989 * kseg2 access, i.e. without refill. Then it returns.
1da177e4 990 */
234fcd14 991static void __cpuinit
e30ec452
TS
992build_r3000_tlb_reload_write(u32 **p, struct uasm_label **l,
993 struct uasm_reloc **r, unsigned int pte,
994 unsigned int tmp)
995{
996 uasm_i_mfc0(p, tmp, C0_INDEX);
997 uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
998 uasm_il_bltz(p, r, tmp, label_r3000_write_probe_fail); /* cp0 delay */
999 uasm_i_mfc0(p, tmp, C0_EPC); /* branch delay */
1000 uasm_i_tlbwi(p); /* cp0 delay */
1001 uasm_i_jr(p, tmp);
1002 uasm_i_rfe(p); /* branch delay */
1003 uasm_l_r3000_write_probe_fail(l, *p);
1004 uasm_i_tlbwr(p); /* cp0 delay */
1005 uasm_i_jr(p, tmp);
1006 uasm_i_rfe(p); /* branch delay */
1da177e4
LT
1007}
1008
234fcd14 1009static void __cpuinit
1da177e4
LT
1010build_r3000_tlbchange_handler_head(u32 **p, unsigned int pte,
1011 unsigned int ptr)
1012{
1013 long pgdc = (long)pgd_current;
1014
e30ec452
TS
1015 uasm_i_mfc0(p, pte, C0_BADVADDR);
1016 uasm_i_lui(p, ptr, uasm_rel_hi(pgdc)); /* cp0 delay */
1017 uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr);
1018 uasm_i_srl(p, pte, pte, 22); /* load delay */
1019 uasm_i_sll(p, pte, pte, 2);
1020 uasm_i_addu(p, ptr, ptr, pte);
1021 uasm_i_mfc0(p, pte, C0_CONTEXT);
1022 uasm_i_lw(p, ptr, 0, ptr); /* cp0 delay */
1023 uasm_i_andi(p, pte, pte, 0xffc); /* load delay */
1024 uasm_i_addu(p, ptr, ptr, pte);
1025 uasm_i_lw(p, pte, 0, ptr);
1026 uasm_i_tlbp(p); /* load delay */
1da177e4
LT
1027}
1028
234fcd14 1029static void __cpuinit build_r3000_tlb_load_handler(void)
1da177e4
LT
1030{
1031 u32 *p = handle_tlbl;
e30ec452
TS
1032 struct uasm_label *l = labels;
1033 struct uasm_reloc *r = relocs;
1da177e4
LT
1034
1035 memset(handle_tlbl, 0, sizeof(handle_tlbl));
1036 memset(labels, 0, sizeof(labels));
1037 memset(relocs, 0, sizeof(relocs));
1038
1039 build_r3000_tlbchange_handler_head(&p, K0, K1);
1040 build_pte_present(&p, &l, &r, K0, K1, label_nopage_tlbl);
e30ec452 1041 uasm_i_nop(&p); /* load delay */
1da177e4 1042 build_make_valid(&p, &r, K0, K1);
fded2e50 1043 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
1da177e4 1044
e30ec452
TS
1045 uasm_l_nopage_tlbl(&l, p);
1046 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
1047 uasm_i_nop(&p);
1da177e4
LT
1048
1049 if ((p - handle_tlbl) > FASTPATH_SIZE)
1050 panic("TLB load handler fastpath space exceeded");
1051
e30ec452
TS
1052 uasm_resolve_relocs(relocs, labels);
1053 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
1054 (unsigned int)(p - handle_tlbl));
1da177e4 1055
92b1e6a6 1056 dump_handler(handle_tlbl, ARRAY_SIZE(handle_tlbl));
1da177e4
LT
1057}
1058
234fcd14 1059static void __cpuinit build_r3000_tlb_store_handler(void)
1da177e4
LT
1060{
1061 u32 *p = handle_tlbs;
e30ec452
TS
1062 struct uasm_label *l = labels;
1063 struct uasm_reloc *r = relocs;
1da177e4
LT
1064
1065 memset(handle_tlbs, 0, sizeof(handle_tlbs));
1066 memset(labels, 0, sizeof(labels));
1067 memset(relocs, 0, sizeof(relocs));
1068
1069 build_r3000_tlbchange_handler_head(&p, K0, K1);
1070 build_pte_writable(&p, &l, &r, K0, K1, label_nopage_tlbs);
e30ec452 1071 uasm_i_nop(&p); /* load delay */
1da177e4 1072 build_make_write(&p, &r, K0, K1);
fded2e50 1073 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
1da177e4 1074
e30ec452
TS
1075 uasm_l_nopage_tlbs(&l, p);
1076 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1077 uasm_i_nop(&p);
1da177e4
LT
1078
1079 if ((p - handle_tlbs) > FASTPATH_SIZE)
1080 panic("TLB store handler fastpath space exceeded");
1081
e30ec452
TS
1082 uasm_resolve_relocs(relocs, labels);
1083 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
1084 (unsigned int)(p - handle_tlbs));
1da177e4 1085
92b1e6a6 1086 dump_handler(handle_tlbs, ARRAY_SIZE(handle_tlbs));
1da177e4
LT
1087}
1088
234fcd14 1089static void __cpuinit build_r3000_tlb_modify_handler(void)
1da177e4
LT
1090{
1091 u32 *p = handle_tlbm;
e30ec452
TS
1092 struct uasm_label *l = labels;
1093 struct uasm_reloc *r = relocs;
1da177e4
LT
1094
1095 memset(handle_tlbm, 0, sizeof(handle_tlbm));
1096 memset(labels, 0, sizeof(labels));
1097 memset(relocs, 0, sizeof(relocs));
1098
1099 build_r3000_tlbchange_handler_head(&p, K0, K1);
1100 build_pte_modifiable(&p, &l, &r, K0, K1, label_nopage_tlbm);
e30ec452 1101 uasm_i_nop(&p); /* load delay */
1da177e4 1102 build_make_write(&p, &r, K0, K1);
fded2e50 1103 build_r3000_pte_reload_tlbwi(&p, K0, K1);
1da177e4 1104
e30ec452
TS
1105 uasm_l_nopage_tlbm(&l, p);
1106 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1107 uasm_i_nop(&p);
1da177e4
LT
1108
1109 if ((p - handle_tlbm) > FASTPATH_SIZE)
1110 panic("TLB modify handler fastpath space exceeded");
1111
e30ec452
TS
1112 uasm_resolve_relocs(relocs, labels);
1113 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
1114 (unsigned int)(p - handle_tlbm));
1da177e4 1115
92b1e6a6 1116 dump_handler(handle_tlbm, ARRAY_SIZE(handle_tlbm));
1da177e4
LT
1117}
1118
1119/*
1120 * R4000 style TLB load/store/modify handlers.
1121 */
234fcd14 1122static void __cpuinit
e30ec452
TS
1123build_r4000_tlbchange_handler_head(u32 **p, struct uasm_label **l,
1124 struct uasm_reloc **r, unsigned int pte,
1da177e4
LT
1125 unsigned int ptr)
1126{
875d43e7 1127#ifdef CONFIG_64BIT
1da177e4
LT
1128 build_get_pmde64(p, l, r, pte, ptr); /* get pmd in ptr */
1129#else
1130 build_get_pgde32(p, pte, ptr); /* get pgd in ptr */
1131#endif
1132
e30ec452
TS
1133 UASM_i_MFC0(p, pte, C0_BADVADDR);
1134 UASM_i_LW(p, ptr, 0, ptr);
1135 UASM_i_SRL(p, pte, pte, PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2);
1136 uasm_i_andi(p, pte, pte, (PTRS_PER_PTE - 1) << PTE_T_LOG2);
1137 UASM_i_ADDU(p, ptr, ptr, pte);
1da177e4
LT
1138
1139#ifdef CONFIG_SMP
e30ec452
TS
1140 uasm_l_smp_pgtable_change(l, *p);
1141#endif
63b2d2f4 1142 iPTE_LW(p, l, pte, ptr); /* get even pte */
8df5beac
MR
1143 if (!m4kc_tlbp_war())
1144 build_tlb_probe_entry(p);
1da177e4
LT
1145}
1146
234fcd14 1147static void __cpuinit
e30ec452
TS
1148build_r4000_tlbchange_handler_tail(u32 **p, struct uasm_label **l,
1149 struct uasm_reloc **r, unsigned int tmp,
1da177e4
LT
1150 unsigned int ptr)
1151{
e30ec452
TS
1152 uasm_i_ori(p, ptr, ptr, sizeof(pte_t));
1153 uasm_i_xori(p, ptr, ptr, sizeof(pte_t));
1da177e4
LT
1154 build_update_entries(p, tmp, ptr);
1155 build_tlb_write_entry(p, l, r, tlb_indexed);
e30ec452
TS
1156 uasm_l_leave(l, *p);
1157 uasm_i_eret(p); /* return from trap */
1da177e4 1158
875d43e7 1159#ifdef CONFIG_64BIT
1da177e4
LT
1160 build_get_pgd_vmalloc64(p, l, r, tmp, ptr);
1161#endif
1162}
1163
234fcd14 1164static void __cpuinit build_r4000_tlb_load_handler(void)
1da177e4
LT
1165{
1166 u32 *p = handle_tlbl;
e30ec452
TS
1167 struct uasm_label *l = labels;
1168 struct uasm_reloc *r = relocs;
1da177e4
LT
1169
1170 memset(handle_tlbl, 0, sizeof(handle_tlbl));
1171 memset(labels, 0, sizeof(labels));
1172 memset(relocs, 0, sizeof(relocs));
1173
1174 if (bcm1250_m3_war()) {
e30ec452
TS
1175 UASM_i_MFC0(&p, K0, C0_BADVADDR);
1176 UASM_i_MFC0(&p, K1, C0_ENTRYHI);
1177 uasm_i_xor(&p, K0, K0, K1);
1178 UASM_i_SRL(&p, K0, K0, PAGE_SHIFT + 1);
1179 uasm_il_bnez(&p, &r, K0, label_leave);
1180 /* No need for uasm_i_nop */
1da177e4
LT
1181 }
1182
1183 build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1);
1184 build_pte_present(&p, &l, &r, K0, K1, label_nopage_tlbl);
8df5beac
MR
1185 if (m4kc_tlbp_war())
1186 build_tlb_probe_entry(&p);
1da177e4
LT
1187 build_make_valid(&p, &r, K0, K1);
1188 build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1);
1189
e30ec452
TS
1190 uasm_l_nopage_tlbl(&l, p);
1191 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
1192 uasm_i_nop(&p);
1da177e4
LT
1193
1194 if ((p - handle_tlbl) > FASTPATH_SIZE)
1195 panic("TLB load handler fastpath space exceeded");
1196
e30ec452
TS
1197 uasm_resolve_relocs(relocs, labels);
1198 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
1199 (unsigned int)(p - handle_tlbl));
1da177e4 1200
92b1e6a6 1201 dump_handler(handle_tlbl, ARRAY_SIZE(handle_tlbl));
1da177e4
LT
1202}
1203
234fcd14 1204static void __cpuinit build_r4000_tlb_store_handler(void)
1da177e4
LT
1205{
1206 u32 *p = handle_tlbs;
e30ec452
TS
1207 struct uasm_label *l = labels;
1208 struct uasm_reloc *r = relocs;
1da177e4
LT
1209
1210 memset(handle_tlbs, 0, sizeof(handle_tlbs));
1211 memset(labels, 0, sizeof(labels));
1212 memset(relocs, 0, sizeof(relocs));
1213
1214 build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1);
1215 build_pte_writable(&p, &l, &r, K0, K1, label_nopage_tlbs);
8df5beac
MR
1216 if (m4kc_tlbp_war())
1217 build_tlb_probe_entry(&p);
1da177e4
LT
1218 build_make_write(&p, &r, K0, K1);
1219 build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1);
1220
e30ec452
TS
1221 uasm_l_nopage_tlbs(&l, p);
1222 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1223 uasm_i_nop(&p);
1da177e4
LT
1224
1225 if ((p - handle_tlbs) > FASTPATH_SIZE)
1226 panic("TLB store handler fastpath space exceeded");
1227
e30ec452
TS
1228 uasm_resolve_relocs(relocs, labels);
1229 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
1230 (unsigned int)(p - handle_tlbs));
1da177e4 1231
92b1e6a6 1232 dump_handler(handle_tlbs, ARRAY_SIZE(handle_tlbs));
1da177e4
LT
1233}
1234
234fcd14 1235static void __cpuinit build_r4000_tlb_modify_handler(void)
1da177e4
LT
1236{
1237 u32 *p = handle_tlbm;
e30ec452
TS
1238 struct uasm_label *l = labels;
1239 struct uasm_reloc *r = relocs;
1da177e4
LT
1240
1241 memset(handle_tlbm, 0, sizeof(handle_tlbm));
1242 memset(labels, 0, sizeof(labels));
1243 memset(relocs, 0, sizeof(relocs));
1244
1245 build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1);
1246 build_pte_modifiable(&p, &l, &r, K0, K1, label_nopage_tlbm);
8df5beac
MR
1247 if (m4kc_tlbp_war())
1248 build_tlb_probe_entry(&p);
1da177e4
LT
1249 /* Present and writable bits set, set accessed and dirty bits. */
1250 build_make_write(&p, &r, K0, K1);
1251 build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1);
1252
e30ec452
TS
1253 uasm_l_nopage_tlbm(&l, p);
1254 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1255 uasm_i_nop(&p);
1da177e4
LT
1256
1257 if ((p - handle_tlbm) > FASTPATH_SIZE)
1258 panic("TLB modify handler fastpath space exceeded");
1259
e30ec452
TS
1260 uasm_resolve_relocs(relocs, labels);
1261 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
1262 (unsigned int)(p - handle_tlbm));
115f2a44 1263
92b1e6a6 1264 dump_handler(handle_tlbm, ARRAY_SIZE(handle_tlbm));
1da177e4
LT
1265}
1266
234fcd14 1267void __cpuinit build_tlb_refill_handler(void)
1da177e4
LT
1268{
1269 /*
1270 * The refill handler is generated per-CPU, multi-node systems
1271 * may have local storage for it. The other handlers are only
1272 * needed once.
1273 */
1274 static int run_once = 0;
1275
10cc3529 1276 switch (current_cpu_type()) {
1da177e4
LT
1277 case CPU_R2000:
1278 case CPU_R3000:
1279 case CPU_R3000A:
1280 case CPU_R3081E:
1281 case CPU_TX3912:
1282 case CPU_TX3922:
1283 case CPU_TX3927:
1284 build_r3000_tlb_refill_handler();
1285 if (!run_once) {
1286 build_r3000_tlb_load_handler();
1287 build_r3000_tlb_store_handler();
1288 build_r3000_tlb_modify_handler();
1289 run_once++;
1290 }
1291 break;
1292
1293 case CPU_R6000:
1294 case CPU_R6000A:
1295 panic("No R6000 TLB refill handler yet");
1296 break;
1297
1298 case CPU_R8000:
1299 panic("No R8000 TLB refill handler yet");
1300 break;
1301
1302 default:
1303 build_r4000_tlb_refill_handler();
1304 if (!run_once) {
1305 build_r4000_tlb_load_handler();
1306 build_r4000_tlb_store_handler();
1307 build_r4000_tlb_modify_handler();
1308 run_once++;
1309 }
1310 }
1311}
1d40cfcd 1312
234fcd14 1313void __cpuinit flush_tlb_handlers(void)
1d40cfcd 1314{
e0cee3ee 1315 local_flush_icache_range((unsigned long)handle_tlbl,
1d40cfcd 1316 (unsigned long)handle_tlbl + sizeof(handle_tlbl));
e0cee3ee 1317 local_flush_icache_range((unsigned long)handle_tlbs,
1d40cfcd 1318 (unsigned long)handle_tlbs + sizeof(handle_tlbs));
e0cee3ee 1319 local_flush_icache_range((unsigned long)handle_tlbm,
1d40cfcd
RB
1320 (unsigned long)handle_tlbm + sizeof(handle_tlbm));
1321}