blob: 2833dcb67b5adeaf838536580728176bbc715a77 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Synthesize TLB refill handlers at runtime.
7 *
Thiemo Seufere30ec452008-01-28 20:05:38 +00008 * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer
David Daney95affdd2009-05-20 11:40:59 -07009 * Copyright (C) 2005, 2007, 2008, 2009 Maciej W. Rozycki
Ralf Baechle41c594a2006-04-05 09:45:45 +010010 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org)
David Daneyfd062c82009-05-27 17:47:44 -070011 * Copyright (C) 2008, 2009 Cavium Networks, Inc.
Steven J. Hill113c62d2012-07-06 23:56:00 +020012 * Copyright (C) 2011 MIPS Technologies, Inc.
Ralf Baechle41c594a2006-04-05 09:45:45 +010013 *
14 * ... and the days got worse and worse and now you see
15 * I've gone completly out of my mind.
16 *
17 * They're coming to take me a away haha
18 * they're coming to take me a away hoho hihi haha
19 * to the funny farm where code is beautiful all the time ...
20 *
21 * (Condolences to Napoleon XIV)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
David Daney95affdd2009-05-20 11:40:59 -070024#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/kernel.h>
26#include <linux/types.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010027#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/string.h>
29#include <linux/init.h>
David Daney3d8bfdd2010-12-21 14:19:11 -080030#include <linux/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
David Daney3d8bfdd2010-12-21 14:19:11 -080032#include <asm/cacheflush.h>
33#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/war.h>
Florian Fainelli3482d712010-01-28 15:21:24 +010035#include <asm/uasm.h>
David Howellsb81947c2012-03-28 18:30:02 +010036#include <asm/setup.h>
Thiemo Seufere30ec452008-01-28 20:05:38 +000037
David Daney1ec56322010-04-28 12:16:18 -070038/*
39 * TLB load/store/modify handlers.
40 *
41 * Only the fastpath gets synthesized at runtime, the slowpath for
42 * do_page_fault remains normal asm.
43 */
44extern void tlb_do_page_fault_0(void);
45extern void tlb_do_page_fault_1(void);
46
David Daneybf286072011-07-05 16:34:46 -070047struct work_registers {
48 int r1;
49 int r2;
50 int r3;
51};
52
53struct tlb_reg_save {
54 unsigned long a;
55 unsigned long b;
56} ____cacheline_aligned_in_smp;
57
58static struct tlb_reg_save handler_reg_save[NR_CPUS];
David Daney1ec56322010-04-28 12:16:18 -070059
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010060static inline int r45k_bvahwbug(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 /* XXX: We should probe for the presence of this bug, but we don't. */
63 return 0;
64}
65
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010066static inline int r4k_250MHZhwbug(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 /* XXX: We should probe for the presence of this bug, but we don't. */
69 return 0;
70}
71
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010072static inline int __maybe_unused bcm1250_m3_war(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 return BCM1250_M3_WAR;
75}
76
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010077static inline int __maybe_unused r10000_llsc_war(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 return R10000_LLSC_WAR;
80}
81
David Daneycc33ae42010-12-20 15:54:50 -080082static int use_bbit_insns(void)
83{
84 switch (current_cpu_type()) {
85 case CPU_CAVIUM_OCTEON:
86 case CPU_CAVIUM_OCTEON_PLUS:
87 case CPU_CAVIUM_OCTEON2:
88 return 1;
89 default:
90 return 0;
91 }
92}
93
David Daney2c8c53e2010-12-27 18:07:57 -080094static int use_lwx_insns(void)
95{
96 switch (current_cpu_type()) {
97 case CPU_CAVIUM_OCTEON2:
98 return 1;
99 default:
100 return 0;
101 }
102}
103#if defined(CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE) && \
104 CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE > 0
105static bool scratchpad_available(void)
106{
107 return true;
108}
109static int scratchpad_offset(int i)
110{
111 /*
112 * CVMSEG starts at address -32768 and extends for
113 * CAVIUM_OCTEON_CVMSEG_SIZE 128 byte cache lines.
114 */
115 i += 1; /* Kernel use starts at the top and works down. */
116 return CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE * 128 - (8 * i) - 32768;
117}
118#else
119static bool scratchpad_available(void)
120{
121 return false;
122}
123static int scratchpad_offset(int i)
124{
125 BUG();
David Daneye1c87d22011-01-19 15:24:42 -0800126 /* Really unreachable, but evidently some GCC want this. */
127 return 0;
David Daney2c8c53e2010-12-27 18:07:57 -0800128}
129#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +0100131 * Found by experiment: At least some revisions of the 4kc throw under
132 * some circumstances a machine check exception, triggered by invalid
133 * values in the index register. Delaying the tlbp instruction until
134 * after the next branch, plus adding an additional nop in front of
135 * tlbwi/tlbwr avoids the invalid index register values. Nobody knows
136 * why; it's not an issue caused by the core RTL.
137 *
138 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000139static int __cpuinit m4kc_tlbp_war(void)
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +0100140{
141 return (current_cpu_data.processor_id & 0xffff00) ==
142 (PRID_COMP_MIPS | PRID_IMP_4KC);
143}
144
Thiemo Seufere30ec452008-01-28 20:05:38 +0000145/* Handle labels (which must be positive integers). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146enum label_id {
Thiemo Seufere30ec452008-01-28 20:05:38 +0000147 label_second_part = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 label_leave,
149 label_vmalloc,
150 label_vmalloc_done,
Ralf Baechle02a54172012-10-13 22:46:26 +0200151 label_tlbw_hazard_0,
152 label_split = label_tlbw_hazard_0 + 8,
David Daney6dd93442010-02-10 15:12:47 -0800153 label_tlbl_goaround1,
154 label_tlbl_goaround2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 label_nopage_tlbl,
156 label_nopage_tlbs,
157 label_nopage_tlbm,
158 label_smp_pgtable_change,
159 label_r3000_write_probe_fail,
David Daney1ec56322010-04-28 12:16:18 -0700160 label_large_segbits_fault,
David Daneyfd062c82009-05-27 17:47:44 -0700161#ifdef CONFIG_HUGETLB_PAGE
162 label_tlb_huge_update,
163#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164};
165
Thiemo Seufere30ec452008-01-28 20:05:38 +0000166UASM_L_LA(_second_part)
167UASM_L_LA(_leave)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000168UASM_L_LA(_vmalloc)
169UASM_L_LA(_vmalloc_done)
Ralf Baechle02a54172012-10-13 22:46:26 +0200170/* _tlbw_hazard_x is handled differently. */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000171UASM_L_LA(_split)
David Daney6dd93442010-02-10 15:12:47 -0800172UASM_L_LA(_tlbl_goaround1)
173UASM_L_LA(_tlbl_goaround2)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000174UASM_L_LA(_nopage_tlbl)
175UASM_L_LA(_nopage_tlbs)
176UASM_L_LA(_nopage_tlbm)
177UASM_L_LA(_smp_pgtable_change)
178UASM_L_LA(_r3000_write_probe_fail)
David Daney1ec56322010-04-28 12:16:18 -0700179UASM_L_LA(_large_segbits_fault)
David Daneyfd062c82009-05-27 17:47:44 -0700180#ifdef CONFIG_HUGETLB_PAGE
181UASM_L_LA(_tlb_huge_update)
182#endif
Atsushi Nemoto656be922006-10-26 00:08:31 +0900183
Ralf Baechle02a54172012-10-13 22:46:26 +0200184static int __cpuinitdata hazard_instance;
185
186static void uasm_bgezl_hazard(u32 **p, struct uasm_reloc **r, int instance)
187{
188 switch (instance) {
189 case 0 ... 7:
190 uasm_il_bgezl(p, r, 0, label_tlbw_hazard_0 + instance);
191 return;
192 default:
193 BUG();
194 }
195}
196
197static void uasm_bgezl_label(struct uasm_label **l, u32 **p, int instance)
198{
199 switch (instance) {
200 case 0 ... 7:
201 uasm_build_label(l, *p, label_tlbw_hazard_0 + instance);
202 break;
203 default:
204 BUG();
205 }
206}
207
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200208/*
209 * For debug purposes.
210 */
211static inline void dump_handler(const u32 *handler, int count)
212{
213 int i;
214
215 pr_debug("\t.set push\n");
216 pr_debug("\t.set noreorder\n");
217
218 for (i = 0; i < count; i++)
219 pr_debug("\t%p\t.word 0x%08x\n", &handler[i], handler[i]);
220
221 pr_debug("\t.set pop\n");
222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/* The only general purpose registers allowed in TLB handlers. */
225#define K0 26
226#define K1 27
227
228/* Some CP0 registers */
Ralf Baechle41c594a2006-04-05 09:45:45 +0100229#define C0_INDEX 0, 0
230#define C0_ENTRYLO0 2, 0
231#define C0_TCBIND 2, 2
232#define C0_ENTRYLO1 3, 0
233#define C0_CONTEXT 4, 0
David Daneyfd062c82009-05-27 17:47:44 -0700234#define C0_PAGEMASK 5, 0
Ralf Baechle41c594a2006-04-05 09:45:45 +0100235#define C0_BADVADDR 8, 0
236#define C0_ENTRYHI 10, 0
237#define C0_EPC 14, 0
238#define C0_XCONTEXT 20, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Ralf Baechle875d43e2005-09-03 15:56:16 -0700240#ifdef CONFIG_64BIT
Thiemo Seufere30ec452008-01-28 20:05:38 +0000241# define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_XCONTEXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242#else
Thiemo Seufere30ec452008-01-28 20:05:38 +0000243# define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_CONTEXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244#endif
245
246/* The worst case length of the handler is around 18 instructions for
247 * R3000-style TLBs and up to 63 instructions for R4000-style TLBs.
248 * Maximum space available is 32 instructions for R3000 and 64
249 * instructions for R4000.
250 *
251 * We deliberately chose a buffer size of 128, so we won't scribble
252 * over anything important on overflow before we panic.
253 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000254static u32 tlb_handler[128] __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256/* simply assume worst case size for labels and relocs */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000257static struct uasm_label labels[128] __cpuinitdata;
258static struct uasm_reloc relocs[128] __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
David Daney1ec56322010-04-28 12:16:18 -0700260#ifdef CONFIG_64BIT
261static int check_for_high_segbits __cpuinitdata;
262#endif
263
David Daney2c8c53e2010-12-27 18:07:57 -0800264static int check_for_high_segbits __cpuinitdata;
David Daney3d8bfdd2010-12-21 14:19:11 -0800265
266static unsigned int kscratch_used_mask __cpuinitdata;
267
268static int __cpuinit allocate_kscratch(void)
269{
270 int r;
271 unsigned int a = cpu_data[0].kscratch_mask & ~kscratch_used_mask;
272
273 r = ffs(a);
274
275 if (r == 0)
276 return -1;
277
278 r--; /* make it zero based */
279
280 kscratch_used_mask |= (1 << r);
281
282 return r;
283}
284
David Daney2c8c53e2010-12-27 18:07:57 -0800285static int scratch_reg __cpuinitdata;
David Daney3d8bfdd2010-12-21 14:19:11 -0800286static int pgd_reg __cpuinitdata;
David Daney2c8c53e2010-12-27 18:07:57 -0800287enum vmalloc64_mode {not_refill, refill_scratch, refill_noscratch};
David Daney3d8bfdd2010-12-21 14:19:11 -0800288
David Daneybf286072011-07-05 16:34:46 -0700289static struct work_registers __cpuinit build_get_work_registers(u32 **p)
290{
291 struct work_registers r;
292
293 int smp_processor_id_reg;
294 int smp_processor_id_sel;
295 int smp_processor_id_shift;
296
297 if (scratch_reg > 0) {
298 /* Save in CPU local C0_KScratch? */
299 UASM_i_MTC0(p, 1, 31, scratch_reg);
300 r.r1 = K0;
301 r.r2 = K1;
302 r.r3 = 1;
303 return r;
304 }
305
306 if (num_possible_cpus() > 1) {
307#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
308 smp_processor_id_shift = 51;
309 smp_processor_id_reg = 20; /* XContext */
310 smp_processor_id_sel = 0;
311#else
312# ifdef CONFIG_32BIT
313 smp_processor_id_shift = 25;
314 smp_processor_id_reg = 4; /* Context */
315 smp_processor_id_sel = 0;
316# endif
317# ifdef CONFIG_64BIT
318 smp_processor_id_shift = 26;
319 smp_processor_id_reg = 4; /* Context */
320 smp_processor_id_sel = 0;
321# endif
322#endif
323 /* Get smp_processor_id */
324 UASM_i_MFC0(p, K0, smp_processor_id_reg, smp_processor_id_sel);
325 UASM_i_SRL_SAFE(p, K0, K0, smp_processor_id_shift);
326
327 /* handler_reg_save index in K0 */
328 UASM_i_SLL(p, K0, K0, ilog2(sizeof(struct tlb_reg_save)));
329
330 UASM_i_LA(p, K1, (long)&handler_reg_save);
331 UASM_i_ADDU(p, K0, K0, K1);
332 } else {
333 UASM_i_LA(p, K0, (long)&handler_reg_save);
334 }
335 /* K0 now points to save area, save $1 and $2 */
336 UASM_i_SW(p, 1, offsetof(struct tlb_reg_save, a), K0);
337 UASM_i_SW(p, 2, offsetof(struct tlb_reg_save, b), K0);
338
339 r.r1 = K1;
340 r.r2 = 1;
341 r.r3 = 2;
342 return r;
343}
344
345static void __cpuinit build_restore_work_registers(u32 **p)
346{
347 if (scratch_reg > 0) {
348 UASM_i_MFC0(p, 1, 31, scratch_reg);
349 return;
350 }
351 /* K0 already points to save area, restore $1 and $2 */
352 UASM_i_LW(p, 1, offsetof(struct tlb_reg_save, a), K0);
353 UASM_i_LW(p, 2, offsetof(struct tlb_reg_save, b), K0);
354}
355
David Daney2c8c53e2010-12-27 18:07:57 -0800356#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
357
David Daney826222842009-10-14 12:16:56 -0700358/*
359 * CONFIG_MIPS_PGD_C0_CONTEXT implies 64 bit and lack of pgd_current,
360 * we cannot do r3000 under these circumstances.
David Daney3d8bfdd2010-12-21 14:19:11 -0800361 *
362 * Declare pgd_current here instead of including mmu_context.h to avoid type
363 * conflicts for tlbmiss_handler_setup_pgd
David Daney826222842009-10-14 12:16:56 -0700364 */
David Daney3d8bfdd2010-12-21 14:19:11 -0800365extern unsigned long pgd_current[];
David Daney826222842009-10-14 12:16:56 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367/*
368 * The R3000 TLB handler is simple.
369 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000370static void __cpuinit build_r3000_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 long pgdc = (long)pgd_current;
373 u32 *p;
374
375 memset(tlb_handler, 0, sizeof(tlb_handler));
376 p = tlb_handler;
377
Thiemo Seufere30ec452008-01-28 20:05:38 +0000378 uasm_i_mfc0(&p, K0, C0_BADVADDR);
379 uasm_i_lui(&p, K1, uasm_rel_hi(pgdc)); /* cp0 delay */
380 uasm_i_lw(&p, K1, uasm_rel_lo(pgdc), K1);
381 uasm_i_srl(&p, K0, K0, 22); /* load delay */
382 uasm_i_sll(&p, K0, K0, 2);
383 uasm_i_addu(&p, K1, K1, K0);
384 uasm_i_mfc0(&p, K0, C0_CONTEXT);
385 uasm_i_lw(&p, K1, 0, K1); /* cp0 delay */
386 uasm_i_andi(&p, K0, K0, 0xffc); /* load delay */
387 uasm_i_addu(&p, K1, K1, K0);
388 uasm_i_lw(&p, K0, 0, K1);
389 uasm_i_nop(&p); /* load delay */
390 uasm_i_mtc0(&p, K0, C0_ENTRYLO0);
391 uasm_i_mfc0(&p, K1, C0_EPC); /* cp0 delay */
392 uasm_i_tlbwr(&p); /* cp0 delay */
393 uasm_i_jr(&p, K1);
394 uasm_i_rfe(&p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 if (p > tlb_handler + 32)
397 panic("TLB refill handler space exceeded");
398
Thiemo Seufere30ec452008-01-28 20:05:38 +0000399 pr_debug("Wrote TLB refill handler (%u instructions).\n",
400 (unsigned int)(p - tlb_handler));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Ralf Baechle91b05e62006-03-29 18:53:00 +0100402 memcpy((void *)ebase, tlb_handler, 0x80);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200403
404 dump_handler((u32 *)ebase, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
David Daney826222842009-10-14 12:16:56 -0700406#endif /* CONFIG_MIPS_PGD_C0_CONTEXT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408/*
409 * The R4000 TLB handler is much more complicated. We have two
410 * consecutive handler areas with 32 instructions space each.
411 * Since they aren't used at the same time, we can overflow in the
412 * other one.To keep things simple, we first assume linear space,
413 * then we relocate it to the final handler layout as needed.
414 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000415static u32 final_handler[64] __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417/*
418 * Hazards
419 *
420 * From the IDT errata for the QED RM5230 (Nevada), processor revision 1.0:
421 * 2. A timing hazard exists for the TLBP instruction.
422 *
423 * stalling_instruction
424 * TLBP
425 *
426 * The JTLB is being read for the TLBP throughout the stall generated by the
427 * previous instruction. This is not really correct as the stalling instruction
428 * can modify the address used to access the JTLB. The failure symptom is that
429 * the TLBP instruction will use an address created for the stalling instruction
430 * and not the address held in C0_ENHI and thus report the wrong results.
431 *
432 * The software work-around is to not allow the instruction preceding the TLBP
433 * to stall - make it an NOP or some other instruction guaranteed not to stall.
434 *
435 * Errata 2 will not be fixed. This errata is also on the R5000.
436 *
437 * As if we MIPS hackers wouldn't know how to nop pipelines happy ...
438 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000439static void __cpuinit __maybe_unused build_tlb_probe_entry(u32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Ralf Baechle10cc3522007-10-11 23:46:15 +0100441 switch (current_cpu_type()) {
Thomas Bogendoerfer326e2e12008-05-12 13:55:42 +0200442 /* Found by experiment: R4600 v2.0/R4700 needs this, too. */
Thiemo Seuferf5b4d952005-09-09 17:11:50 +0000443 case CPU_R4600:
Thomas Bogendoerfer326e2e12008-05-12 13:55:42 +0200444 case CPU_R4700:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 case CPU_R5000:
446 case CPU_R5000A:
447 case CPU_NEVADA:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000448 uasm_i_nop(p);
449 uasm_i_tlbp(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 break;
451
452 default:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000453 uasm_i_tlbp(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 break;
455 }
456}
457
458/*
459 * Write random or indexed TLB entry, and care about the hazards from
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300460 * the preceding mtc0 and for the following eret.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
462enum tlb_write_entry { tlb_random, tlb_indexed };
463
Ralf Baechle234fcd12008-03-08 09:56:28 +0000464static void __cpuinit build_tlb_write_entry(u32 **p, struct uasm_label **l,
Thiemo Seufere30ec452008-01-28 20:05:38 +0000465 struct uasm_reloc **r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 enum tlb_write_entry wmode)
467{
468 void(*tlbw)(u32 **) = NULL;
469
470 switch (wmode) {
Thiemo Seufere30ec452008-01-28 20:05:38 +0000471 case tlb_random: tlbw = uasm_i_tlbwr; break;
472 case tlb_indexed: tlbw = uasm_i_tlbwi; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474
Ralf Baechle161548b2008-01-29 10:14:54 +0000475 if (cpu_has_mips_r2) {
Steven J. Hill625c0a22012-08-28 23:20:08 -0500476 /*
477 * The architecture spec says an ehb is required here,
478 * but a number of cores do not have the hazard and
479 * using an ehb causes an expensive pipeline stall.
480 */
481 switch (current_cpu_type()) {
482 case CPU_M14KC:
483 case CPU_74K:
484 break;
485
486 default:
David Daney41f0e4d2009-05-12 12:41:53 -0700487 uasm_i_ehb(p);
Steven J. Hill625c0a22012-08-28 23:20:08 -0500488 break;
489 }
Ralf Baechle161548b2008-01-29 10:14:54 +0000490 tlbw(p);
491 return;
492 }
493
Ralf Baechle10cc3522007-10-11 23:46:15 +0100494 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 case CPU_R4000PC:
496 case CPU_R4000SC:
497 case CPU_R4000MC:
498 case CPU_R4400PC:
499 case CPU_R4400SC:
500 case CPU_R4400MC:
501 /*
502 * This branch uses up a mtc0 hazard nop slot and saves
503 * two nops after the tlbw instruction.
504 */
Ralf Baechle02a54172012-10-13 22:46:26 +0200505 uasm_bgezl_hazard(p, r, hazard_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 tlbw(p);
Ralf Baechle02a54172012-10-13 22:46:26 +0200507 uasm_bgezl_label(l, p, hazard_instance);
508 hazard_instance++;
Thiemo Seufere30ec452008-01-28 20:05:38 +0000509 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 break;
511
512 case CPU_R4600:
513 case CPU_R4700:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000514 uasm_i_nop(p);
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000515 tlbw(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000516 uasm_i_nop(p);
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000517 break;
518
Ralf Baechle359187d2012-10-16 22:13:06 +0200519 case CPU_R5000:
520 case CPU_R5000A:
521 case CPU_NEVADA:
522 uasm_i_nop(p); /* QED specifies 2 nops hazard */
523 uasm_i_nop(p); /* QED specifies 2 nops hazard */
524 tlbw(p);
525 break;
526
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000527 case CPU_R4300:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 case CPU_5KC:
529 case CPU_TX49XX:
Pete Popovbdf21b12005-07-14 17:47:57 +0000530 case CPU_PR4450:
Jayachandran Cefa0f812011-05-07 01:36:21 +0530531 case CPU_XLR:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000532 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 tlbw(p);
534 break;
535
536 case CPU_R10000:
537 case CPU_R12000:
Kumba44d921b2006-05-16 22:23:59 -0400538 case CPU_R14000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 case CPU_4KC:
Thomas Bogendoerferb1ec4c82008-03-26 16:42:54 +0100540 case CPU_4KEC:
Steven J. Hill113c62d2012-07-06 23:56:00 +0200541 case CPU_M14KC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 case CPU_SB1:
Andrew Isaacson93ce2f522005-10-19 23:56:20 -0700543 case CPU_SB1A:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 case CPU_4KSC:
545 case CPU_20KC:
546 case CPU_25KF:
Kevin Cernekee602977b2010-10-16 14:22:30 -0700547 case CPU_BMIPS32:
548 case CPU_BMIPS3300:
549 case CPU_BMIPS4350:
550 case CPU_BMIPS4380:
551 case CPU_BMIPS5000:
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800552 case CPU_LOONGSON2:
Shinya Kuribayashia644b272009-03-03 18:05:51 +0900553 case CPU_R5500:
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +0100554 if (m4kc_tlbp_war())
Thiemo Seufere30ec452008-01-28 20:05:38 +0000555 uasm_i_nop(p);
Manuel Lauss2f794d02009-03-25 17:49:30 +0100556 case CPU_ALCHEMY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 tlbw(p);
558 break;
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 case CPU_RM7000:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000561 uasm_i_nop(p);
562 uasm_i_nop(p);
563 uasm_i_nop(p);
564 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 tlbw(p);
566 break;
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 case CPU_RM9000:
569 /*
570 * When the JTLB is updated by tlbwi or tlbwr, a subsequent
571 * use of the JTLB for instructions should not occur for 4
572 * cpu cycles and use for data translations should not occur
573 * for 3 cpu cycles.
574 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000575 uasm_i_ssnop(p);
576 uasm_i_ssnop(p);
577 uasm_i_ssnop(p);
578 uasm_i_ssnop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 tlbw(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000580 uasm_i_ssnop(p);
581 uasm_i_ssnop(p);
582 uasm_i_ssnop(p);
583 uasm_i_ssnop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 break;
585
586 case CPU_VR4111:
587 case CPU_VR4121:
588 case CPU_VR4122:
589 case CPU_VR4181:
590 case CPU_VR4181A:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000591 uasm_i_nop(p);
592 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 tlbw(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000594 uasm_i_nop(p);
595 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 break;
597
598 case CPU_VR4131:
599 case CPU_VR4133:
Ralf Baechle7623deb2005-08-29 16:49:55 +0000600 case CPU_R5432:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000601 uasm_i_nop(p);
602 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 tlbw(p);
604 break;
605
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +0000606 case CPU_JZRISC:
607 tlbw(p);
608 uasm_i_nop(p);
609 break;
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 default:
612 panic("No TLB refill handler yet (CPU type: %d)",
613 current_cpu_data.cputype);
614 break;
615 }
616}
617
David Daney6dd93442010-02-10 15:12:47 -0800618static __cpuinit __maybe_unused void build_convert_pte_to_entrylo(u32 **p,
619 unsigned int reg)
620{
Steven J. Hill05857c62012-09-13 16:51:46 -0500621 if (cpu_has_rixi) {
David Daney748e7872012-08-23 10:02:03 -0700622 UASM_i_ROTR(p, reg, reg, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -0800623 } else {
624#ifdef CONFIG_64BIT_PHYS_ADDR
David Daney3be60222010-04-28 12:16:17 -0700625 uasm_i_dsrl_safe(p, reg, reg, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -0800626#else
627 UASM_i_SRL(p, reg, reg, ilog2(_PAGE_GLOBAL));
628#endif
629 }
630}
631
David Daneyfd062c82009-05-27 17:47:44 -0700632#ifdef CONFIG_HUGETLB_PAGE
David Daney6dd93442010-02-10 15:12:47 -0800633
634static __cpuinit void build_restore_pagemask(u32 **p,
635 struct uasm_reloc **r,
636 unsigned int tmp,
David Daney2c8c53e2010-12-27 18:07:57 -0800637 enum label_id lid,
638 int restore_scratch)
David Daney6dd93442010-02-10 15:12:47 -0800639{
David Daney2c8c53e2010-12-27 18:07:57 -0800640 if (restore_scratch) {
641 /* Reset default page size */
642 if (PM_DEFAULT_MASK >> 16) {
643 uasm_i_lui(p, tmp, PM_DEFAULT_MASK >> 16);
644 uasm_i_ori(p, tmp, tmp, PM_DEFAULT_MASK & 0xffff);
645 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
646 uasm_il_b(p, r, lid);
647 } else if (PM_DEFAULT_MASK) {
648 uasm_i_ori(p, tmp, 0, PM_DEFAULT_MASK);
649 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
650 uasm_il_b(p, r, lid);
651 } else {
652 uasm_i_mtc0(p, 0, C0_PAGEMASK);
653 uasm_il_b(p, r, lid);
654 }
655 if (scratch_reg > 0)
656 UASM_i_MFC0(p, 1, 31, scratch_reg);
657 else
658 UASM_i_LW(p, 1, scratchpad_offset(0), 0);
David Daney6dd93442010-02-10 15:12:47 -0800659 } else {
David Daney2c8c53e2010-12-27 18:07:57 -0800660 /* Reset default page size */
661 if (PM_DEFAULT_MASK >> 16) {
662 uasm_i_lui(p, tmp, PM_DEFAULT_MASK >> 16);
663 uasm_i_ori(p, tmp, tmp, PM_DEFAULT_MASK & 0xffff);
664 uasm_il_b(p, r, lid);
665 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
666 } else if (PM_DEFAULT_MASK) {
667 uasm_i_ori(p, tmp, 0, PM_DEFAULT_MASK);
668 uasm_il_b(p, r, lid);
669 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
670 } else {
671 uasm_il_b(p, r, lid);
672 uasm_i_mtc0(p, 0, C0_PAGEMASK);
673 }
David Daney6dd93442010-02-10 15:12:47 -0800674 }
675}
676
David Daneyfd062c82009-05-27 17:47:44 -0700677static __cpuinit void build_huge_tlb_write_entry(u32 **p,
678 struct uasm_label **l,
679 struct uasm_reloc **r,
680 unsigned int tmp,
David Daney2c8c53e2010-12-27 18:07:57 -0800681 enum tlb_write_entry wmode,
682 int restore_scratch)
David Daneyfd062c82009-05-27 17:47:44 -0700683{
684 /* Set huge page tlb entry size */
685 uasm_i_lui(p, tmp, PM_HUGE_MASK >> 16);
686 uasm_i_ori(p, tmp, tmp, PM_HUGE_MASK & 0xffff);
687 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
688
689 build_tlb_write_entry(p, l, r, wmode);
690
David Daney2c8c53e2010-12-27 18:07:57 -0800691 build_restore_pagemask(p, r, tmp, label_leave, restore_scratch);
David Daneyfd062c82009-05-27 17:47:44 -0700692}
693
694/*
695 * Check if Huge PTE is present, if so then jump to LABEL.
696 */
697static void __cpuinit
698build_is_huge_pte(u32 **p, struct uasm_reloc **r, unsigned int tmp,
699 unsigned int pmd, int lid)
700{
701 UASM_i_LW(p, tmp, 0, pmd);
David Daneycc33ae42010-12-20 15:54:50 -0800702 if (use_bbit_insns()) {
703 uasm_il_bbit1(p, r, tmp, ilog2(_PAGE_HUGE), lid);
704 } else {
705 uasm_i_andi(p, tmp, tmp, _PAGE_HUGE);
706 uasm_il_bnez(p, r, tmp, lid);
707 }
David Daneyfd062c82009-05-27 17:47:44 -0700708}
709
710static __cpuinit void build_huge_update_entries(u32 **p,
711 unsigned int pte,
712 unsigned int tmp)
713{
714 int small_sequence;
715
716 /*
717 * A huge PTE describes an area the size of the
718 * configured huge page size. This is twice the
719 * of the large TLB entry size we intend to use.
720 * A TLB entry half the size of the configured
721 * huge page size is configured into entrylo0
722 * and entrylo1 to cover the contiguous huge PTE
723 * address space.
724 */
725 small_sequence = (HPAGE_SIZE >> 7) < 0x10000;
726
727 /* We can clobber tmp. It isn't used after this.*/
728 if (!small_sequence)
729 uasm_i_lui(p, tmp, HPAGE_SIZE >> (7 + 16));
730
David Daney6dd93442010-02-10 15:12:47 -0800731 build_convert_pte_to_entrylo(p, pte);
David Daney9b8c3892010-02-10 15:12:44 -0800732 UASM_i_MTC0(p, pte, C0_ENTRYLO0); /* load it */
David Daneyfd062c82009-05-27 17:47:44 -0700733 /* convert to entrylo1 */
734 if (small_sequence)
735 UASM_i_ADDIU(p, pte, pte, HPAGE_SIZE >> 7);
736 else
737 UASM_i_ADDU(p, pte, pte, tmp);
738
David Daney9b8c3892010-02-10 15:12:44 -0800739 UASM_i_MTC0(p, pte, C0_ENTRYLO1); /* load it */
David Daneyfd062c82009-05-27 17:47:44 -0700740}
741
742static __cpuinit void build_huge_handler_tail(u32 **p,
743 struct uasm_reloc **r,
744 struct uasm_label **l,
745 unsigned int pte,
746 unsigned int ptr)
747{
748#ifdef CONFIG_SMP
749 UASM_i_SC(p, pte, 0, ptr);
750 uasm_il_beqz(p, r, pte, label_tlb_huge_update);
751 UASM_i_LW(p, pte, 0, ptr); /* Needed because SC killed our PTE */
752#else
753 UASM_i_SW(p, pte, 0, ptr);
754#endif
755 build_huge_update_entries(p, pte, ptr);
David Daney2c8c53e2010-12-27 18:07:57 -0800756 build_huge_tlb_write_entry(p, l, r, pte, tlb_indexed, 0);
David Daneyfd062c82009-05-27 17:47:44 -0700757}
758#endif /* CONFIG_HUGETLB_PAGE */
759
Ralf Baechle875d43e2005-09-03 15:56:16 -0700760#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761/*
762 * TMP and PTR are scratch.
763 * TMP will be clobbered, PTR will hold the pmd entry.
764 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000765static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +0000766build_get_pmde64(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 unsigned int tmp, unsigned int ptr)
768{
David Daney826222842009-10-14 12:16:56 -0700769#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 long pgdc = (long)pgd_current;
David Daney826222842009-10-14 12:16:56 -0700771#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /*
773 * The vmalloc handling is not in the hotpath.
774 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000775 uasm_i_dmfc0(p, tmp, C0_BADVADDR);
David Daney1ec56322010-04-28 12:16:18 -0700776
777 if (check_for_high_segbits) {
778 /*
779 * The kernel currently implicitely assumes that the
780 * MIPS SEGBITS parameter for the processor is
781 * (PGDIR_SHIFT+PGDIR_BITS) or less, and will never
782 * allocate virtual addresses outside the maximum
783 * range for SEGBITS = (PGDIR_SHIFT+PGDIR_BITS). But
784 * that doesn't prevent user code from accessing the
785 * higher xuseg addresses. Here, we make sure that
786 * everything but the lower xuseg addresses goes down
787 * the module_alloc/vmalloc path.
788 */
789 uasm_i_dsrl_safe(p, ptr, tmp, PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
790 uasm_il_bnez(p, r, ptr, label_vmalloc);
791 } else {
792 uasm_il_bltz(p, r, tmp, label_vmalloc);
793 }
Thiemo Seufere30ec452008-01-28 20:05:38 +0000794 /* No uasm_i_nop needed here, since the next insn doesn't touch TMP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
David Daney826222842009-10-14 12:16:56 -0700796#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
David Daney3d8bfdd2010-12-21 14:19:11 -0800797 if (pgd_reg != -1) {
798 /* pgd is in pgd_reg */
799 UASM_i_MFC0(p, ptr, 31, pgd_reg);
800 } else {
801 /*
802 * &pgd << 11 stored in CONTEXT [23..63].
803 */
804 UASM_i_MFC0(p, ptr, C0_CONTEXT);
805
806 /* Clear lower 23 bits of context. */
807 uasm_i_dins(p, ptr, 0, 0, 23);
808
809 /* 1 0 1 0 1 << 6 xkphys cached */
810 uasm_i_ori(p, ptr, ptr, 0x540);
811 uasm_i_drotr(p, ptr, ptr, 11);
812 }
David Daney826222842009-10-14 12:16:56 -0700813#elif defined(CONFIG_SMP)
Ralf Baechle41c594a2006-04-05 09:45:45 +0100814# ifdef CONFIG_MIPS_MT_SMTC
815 /*
816 * SMTC uses TCBind value as "CPU" index
817 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000818 uasm_i_mfc0(p, ptr, C0_TCBIND);
David Daney3be60222010-04-28 12:16:17 -0700819 uasm_i_dsrl_safe(p, ptr, ptr, 19);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100820# else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /*
Thiemo Seufer1b3a6e92005-04-01 14:07:13 +0000822 * 64 bit SMP running in XKPHYS has smp_processor_id() << 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 * stored in CONTEXT.
824 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000825 uasm_i_dmfc0(p, ptr, C0_CONTEXT);
David Daney3be60222010-04-28 12:16:17 -0700826 uasm_i_dsrl_safe(p, ptr, ptr, 23);
David Daney826222842009-10-14 12:16:56 -0700827# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +0000828 UASM_i_LA_mostly(p, tmp, pgdc);
829 uasm_i_daddu(p, ptr, ptr, tmp);
830 uasm_i_dmfc0(p, tmp, C0_BADVADDR);
831 uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832#else
Thiemo Seufere30ec452008-01-28 20:05:38 +0000833 UASM_i_LA_mostly(p, ptr, pgdc);
834 uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835#endif
836
Thiemo Seufere30ec452008-01-28 20:05:38 +0000837 uasm_l_vmalloc_done(l, *p);
Ralf Baechle242954b2006-10-24 02:29:01 +0100838
David Daney3be60222010-04-28 12:16:17 -0700839 /* get pgd offset in bytes */
840 uasm_i_dsrl_safe(p, tmp, tmp, PGDIR_SHIFT - 3);
Ralf Baechle242954b2006-10-24 02:29:01 +0100841
Thiemo Seufere30ec452008-01-28 20:05:38 +0000842 uasm_i_andi(p, tmp, tmp, (PTRS_PER_PGD - 1)<<3);
843 uasm_i_daddu(p, ptr, ptr, tmp); /* add in pgd offset */
David Daney325f8a02009-12-04 13:52:36 -0800844#ifndef __PAGETABLE_PMD_FOLDED
Thiemo Seufere30ec452008-01-28 20:05:38 +0000845 uasm_i_dmfc0(p, tmp, C0_BADVADDR); /* get faulting address */
846 uasm_i_ld(p, ptr, 0, ptr); /* get pmd pointer */
David Daney3be60222010-04-28 12:16:17 -0700847 uasm_i_dsrl_safe(p, tmp, tmp, PMD_SHIFT-3); /* get pmd offset in bytes */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000848 uasm_i_andi(p, tmp, tmp, (PTRS_PER_PMD - 1)<<3);
849 uasm_i_daddu(p, ptr, ptr, tmp); /* add in pmd offset */
David Daney325f8a02009-12-04 13:52:36 -0800850#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
853/*
854 * BVADDR is the faulting address, PTR is scratch.
855 * PTR will hold the pgd for vmalloc.
856 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000857static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +0000858build_get_pgd_vmalloc64(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
David Daney1ec56322010-04-28 12:16:18 -0700859 unsigned int bvaddr, unsigned int ptr,
860 enum vmalloc64_mode mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 long swpd = (long)swapper_pg_dir;
David Daney1ec56322010-04-28 12:16:18 -0700863 int single_insn_swpd;
864 int did_vmalloc_branch = 0;
865
866 single_insn_swpd = uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Thiemo Seufere30ec452008-01-28 20:05:38 +0000868 uasm_l_vmalloc(l, *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
David Daney2c8c53e2010-12-27 18:07:57 -0800870 if (mode != not_refill && check_for_high_segbits) {
David Daney1ec56322010-04-28 12:16:18 -0700871 if (single_insn_swpd) {
872 uasm_il_bltz(p, r, bvaddr, label_vmalloc_done);
873 uasm_i_lui(p, ptr, uasm_rel_hi(swpd));
874 did_vmalloc_branch = 1;
875 /* fall through */
876 } else {
877 uasm_il_bgez(p, r, bvaddr, label_large_segbits_fault);
878 }
879 }
880 if (!did_vmalloc_branch) {
881 if (uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd)) {
882 uasm_il_b(p, r, label_vmalloc_done);
883 uasm_i_lui(p, ptr, uasm_rel_hi(swpd));
884 } else {
885 UASM_i_LA_mostly(p, ptr, swpd);
886 uasm_il_b(p, r, label_vmalloc_done);
887 if (uasm_in_compat_space_p(swpd))
888 uasm_i_addiu(p, ptr, ptr, uasm_rel_lo(swpd));
889 else
890 uasm_i_daddiu(p, ptr, ptr, uasm_rel_lo(swpd));
891 }
892 }
David Daney2c8c53e2010-12-27 18:07:57 -0800893 if (mode != not_refill && check_for_high_segbits) {
David Daney1ec56322010-04-28 12:16:18 -0700894 uasm_l_large_segbits_fault(l, *p);
895 /*
896 * We get here if we are an xsseg address, or if we are
897 * an xuseg address above (PGDIR_SHIFT+PGDIR_BITS) boundary.
898 *
899 * Ignoring xsseg (assume disabled so would generate
900 * (address errors?), the only remaining possibility
901 * is the upper xuseg addresses. On processors with
902 * TLB_SEGBITS <= PGDIR_SHIFT+PGDIR_BITS, these
903 * addresses would have taken an address error. We try
904 * to mimic that here by taking a load/istream page
905 * fault.
906 */
907 UASM_i_LA(p, ptr, (unsigned long)tlb_do_page_fault_0);
908 uasm_i_jr(p, ptr);
David Daney2c8c53e2010-12-27 18:07:57 -0800909
910 if (mode == refill_scratch) {
911 if (scratch_reg > 0)
912 UASM_i_MFC0(p, 1, 31, scratch_reg);
913 else
914 UASM_i_LW(p, 1, scratchpad_offset(0), 0);
915 } else {
916 uasm_i_nop(p);
917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
919}
920
Ralf Baechle875d43e2005-09-03 15:56:16 -0700921#else /* !CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923/*
924 * TMP and PTR are scratch.
925 * TMP will be clobbered, PTR will hold the pgd entry.
926 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000927static void __cpuinit __maybe_unused
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr)
929{
930 long pgdc = (long)pgd_current;
931
932 /* 32 bit SMP has smp_processor_id() stored in CONTEXT. */
933#ifdef CONFIG_SMP
Ralf Baechle41c594a2006-04-05 09:45:45 +0100934#ifdef CONFIG_MIPS_MT_SMTC
935 /*
936 * SMTC uses TCBind value as "CPU" index
937 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000938 uasm_i_mfc0(p, ptr, C0_TCBIND);
939 UASM_i_LA_mostly(p, tmp, pgdc);
940 uasm_i_srl(p, ptr, ptr, 19);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100941#else
942 /*
943 * smp_processor_id() << 3 is stored in CONTEXT.
944 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000945 uasm_i_mfc0(p, ptr, C0_CONTEXT);
946 UASM_i_LA_mostly(p, tmp, pgdc);
947 uasm_i_srl(p, ptr, ptr, 23);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100948#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +0000949 uasm_i_addu(p, ptr, tmp, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950#else
Thiemo Seufere30ec452008-01-28 20:05:38 +0000951 UASM_i_LA_mostly(p, ptr, pgdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +0000953 uasm_i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */
954 uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr);
Steven J. Hillff401e52012-08-28 23:20:39 -0500955
956 if (cpu_has_mips_r2) {
957 uasm_i_ext(p, tmp, tmp, PGDIR_SHIFT, (32 - PGDIR_SHIFT));
958 uasm_i_ins(p, ptr, tmp, PGD_T_LOG2, (32 - PGDIR_SHIFT));
959 return;
960 }
961
Thiemo Seufere30ec452008-01-28 20:05:38 +0000962 uasm_i_srl(p, tmp, tmp, PGDIR_SHIFT); /* get pgd only bits */
963 uasm_i_sll(p, tmp, tmp, PGD_T_LOG2);
964 uasm_i_addu(p, ptr, ptr, tmp); /* add in pgd offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
Ralf Baechle875d43e2005-09-03 15:56:16 -0700967#endif /* !CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Ralf Baechle234fcd12008-03-08 09:56:28 +0000969static void __cpuinit build_adjust_context(u32 **p, unsigned int ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Ralf Baechle242954b2006-10-24 02:29:01 +0100971 unsigned int shift = 4 - (PTE_T_LOG2 + 1) + PAGE_SHIFT - 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 unsigned int mask = (PTRS_PER_PTE / 2 - 1) << (PTE_T_LOG2 + 1);
973
Ralf Baechle10cc3522007-10-11 23:46:15 +0100974 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 case CPU_VR41XX:
976 case CPU_VR4111:
977 case CPU_VR4121:
978 case CPU_VR4122:
979 case CPU_VR4131:
980 case CPU_VR4181:
981 case CPU_VR4181A:
982 case CPU_VR4133:
983 shift += 2;
984 break;
985
986 default:
987 break;
988 }
989
990 if (shift)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000991 UASM_i_SRL(p, ctx, ctx, shift);
992 uasm_i_andi(p, ctx, ctx, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
Ralf Baechle234fcd12008-03-08 09:56:28 +0000995static void __cpuinit build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Steven J. Hillff401e52012-08-28 23:20:39 -0500997 if (cpu_has_mips_r2) {
998 /* PTE ptr offset is obtained from BadVAddr */
999 UASM_i_MFC0(p, tmp, C0_BADVADDR);
1000 UASM_i_LW(p, ptr, 0, ptr);
1001 uasm_i_ext(p, tmp, tmp, PAGE_SHIFT+1, PGDIR_SHIFT-PAGE_SHIFT-1);
1002 uasm_i_ins(p, ptr, tmp, PTE_T_LOG2+1, PGDIR_SHIFT-PAGE_SHIFT-1);
1003 return;
1004 }
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 /*
1007 * Bug workaround for the Nevada. It seems as if under certain
1008 * circumstances the move from cp0_context might produce a
1009 * bogus result when the mfc0 instruction and its consumer are
1010 * in a different cacheline or a load instruction, probably any
1011 * memory reference, is between them.
1012 */
Ralf Baechle10cc3522007-10-11 23:46:15 +01001013 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 case CPU_NEVADA:
Thiemo Seufere30ec452008-01-28 20:05:38 +00001015 UASM_i_LW(p, ptr, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 GET_CONTEXT(p, tmp); /* get context reg */
1017 break;
1018
1019 default:
1020 GET_CONTEXT(p, tmp); /* get context reg */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001021 UASM_i_LW(p, ptr, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 break;
1023 }
1024
1025 build_adjust_context(p, tmp);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001026 UASM_i_ADDU(p, ptr, ptr, tmp); /* add in offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Ralf Baechle234fcd12008-03-08 09:56:28 +00001029static void __cpuinit build_update_entries(u32 **p, unsigned int tmp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 unsigned int ptep)
1031{
1032 /*
1033 * 64bit address support (36bit on a 32bit CPU) in a 32bit
1034 * Kernel is a special case. Only a few CPUs use it.
1035 */
1036#ifdef CONFIG_64BIT_PHYS_ADDR
1037 if (cpu_has_64bits) {
Thiemo Seufere30ec452008-01-28 20:05:38 +00001038 uasm_i_ld(p, tmp, 0, ptep); /* get even pte */
1039 uasm_i_ld(p, ptep, sizeof(pte_t), ptep); /* get odd pte */
Steven J. Hill05857c62012-09-13 16:51:46 -05001040 if (cpu_has_rixi) {
David Daney748e7872012-08-23 10:02:03 -07001041 UASM_i_ROTR(p, tmp, tmp, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -08001042 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
David Daney748e7872012-08-23 10:02:03 -07001043 UASM_i_ROTR(p, ptep, ptep, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -08001044 } else {
David Daney3be60222010-04-28 12:16:17 -07001045 uasm_i_dsrl_safe(p, tmp, tmp, ilog2(_PAGE_GLOBAL)); /* convert to entrylo0 */
David Daney6dd93442010-02-10 15:12:47 -08001046 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
David Daney3be60222010-04-28 12:16:17 -07001047 uasm_i_dsrl_safe(p, ptep, ptep, ilog2(_PAGE_GLOBAL)); /* convert to entrylo1 */
David Daney6dd93442010-02-10 15:12:47 -08001048 }
David Daney9b8c3892010-02-10 15:12:44 -08001049 UASM_i_MTC0(p, ptep, C0_ENTRYLO1); /* load it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 } else {
1051 int pte_off_even = sizeof(pte_t) / 2;
1052 int pte_off_odd = pte_off_even + sizeof(pte_t);
1053
1054 /* The pte entries are pre-shifted */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001055 uasm_i_lw(p, tmp, pte_off_even, ptep); /* get even pte */
David Daney9b8c3892010-02-10 15:12:44 -08001056 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001057 uasm_i_lw(p, ptep, pte_off_odd, ptep); /* get odd pte */
David Daney9b8c3892010-02-10 15:12:44 -08001058 UASM_i_MTC0(p, ptep, C0_ENTRYLO1); /* load it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060#else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001061 UASM_i_LW(p, tmp, 0, ptep); /* get even pte */
1062 UASM_i_LW(p, ptep, sizeof(pte_t), ptep); /* get odd pte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (r45k_bvahwbug())
1064 build_tlb_probe_entry(p);
Steven J. Hill05857c62012-09-13 16:51:46 -05001065 if (cpu_has_rixi) {
David Daney748e7872012-08-23 10:02:03 -07001066 UASM_i_ROTR(p, tmp, tmp, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -08001067 if (r4k_250MHZhwbug())
1068 UASM_i_MTC0(p, 0, C0_ENTRYLO0);
1069 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
David Daney748e7872012-08-23 10:02:03 -07001070 UASM_i_ROTR(p, ptep, ptep, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -08001071 } else {
1072 UASM_i_SRL(p, tmp, tmp, ilog2(_PAGE_GLOBAL)); /* convert to entrylo0 */
1073 if (r4k_250MHZhwbug())
1074 UASM_i_MTC0(p, 0, C0_ENTRYLO0);
1075 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
1076 UASM_i_SRL(p, ptep, ptep, ilog2(_PAGE_GLOBAL)); /* convert to entrylo1 */
1077 if (r45k_bvahwbug())
1078 uasm_i_mfc0(p, tmp, C0_INDEX);
1079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (r4k_250MHZhwbug())
David Daney9b8c3892010-02-10 15:12:44 -08001081 UASM_i_MTC0(p, 0, C0_ENTRYLO1);
1082 UASM_i_MTC0(p, ptep, C0_ENTRYLO1); /* load it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083#endif
1084}
1085
David Daney2c8c53e2010-12-27 18:07:57 -08001086struct mips_huge_tlb_info {
1087 int huge_pte;
1088 int restore_scratch;
1089};
1090
1091static struct mips_huge_tlb_info __cpuinit
1092build_fast_tlb_refill_handler (u32 **p, struct uasm_label **l,
1093 struct uasm_reloc **r, unsigned int tmp,
1094 unsigned int ptr, int c0_scratch)
1095{
1096 struct mips_huge_tlb_info rv;
1097 unsigned int even, odd;
1098 int vmalloc_branch_delay_filled = 0;
1099 const int scratch = 1; /* Our extra working register */
1100
1101 rv.huge_pte = scratch;
1102 rv.restore_scratch = 0;
1103
1104 if (check_for_high_segbits) {
1105 UASM_i_MFC0(p, tmp, C0_BADVADDR);
1106
1107 if (pgd_reg != -1)
1108 UASM_i_MFC0(p, ptr, 31, pgd_reg);
1109 else
1110 UASM_i_MFC0(p, ptr, C0_CONTEXT);
1111
1112 if (c0_scratch >= 0)
1113 UASM_i_MTC0(p, scratch, 31, c0_scratch);
1114 else
1115 UASM_i_SW(p, scratch, scratchpad_offset(0), 0);
1116
1117 uasm_i_dsrl_safe(p, scratch, tmp,
1118 PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
1119 uasm_il_bnez(p, r, scratch, label_vmalloc);
1120
1121 if (pgd_reg == -1) {
1122 vmalloc_branch_delay_filled = 1;
1123 /* Clear lower 23 bits of context. */
1124 uasm_i_dins(p, ptr, 0, 0, 23);
1125 }
1126 } else {
1127 if (pgd_reg != -1)
1128 UASM_i_MFC0(p, ptr, 31, pgd_reg);
1129 else
1130 UASM_i_MFC0(p, ptr, C0_CONTEXT);
1131
1132 UASM_i_MFC0(p, tmp, C0_BADVADDR);
1133
1134 if (c0_scratch >= 0)
1135 UASM_i_MTC0(p, scratch, 31, c0_scratch);
1136 else
1137 UASM_i_SW(p, scratch, scratchpad_offset(0), 0);
1138
1139 if (pgd_reg == -1)
1140 /* Clear lower 23 bits of context. */
1141 uasm_i_dins(p, ptr, 0, 0, 23);
1142
1143 uasm_il_bltz(p, r, tmp, label_vmalloc);
1144 }
1145
1146 if (pgd_reg == -1) {
1147 vmalloc_branch_delay_filled = 1;
1148 /* 1 0 1 0 1 << 6 xkphys cached */
1149 uasm_i_ori(p, ptr, ptr, 0x540);
1150 uasm_i_drotr(p, ptr, ptr, 11);
1151 }
1152
1153#ifdef __PAGETABLE_PMD_FOLDED
1154#define LOC_PTEP scratch
1155#else
1156#define LOC_PTEP ptr
1157#endif
1158
1159 if (!vmalloc_branch_delay_filled)
1160 /* get pgd offset in bytes */
1161 uasm_i_dsrl_safe(p, scratch, tmp, PGDIR_SHIFT - 3);
1162
1163 uasm_l_vmalloc_done(l, *p);
1164
1165 /*
1166 * tmp ptr
1167 * fall-through case = badvaddr *pgd_current
1168 * vmalloc case = badvaddr swapper_pg_dir
1169 */
1170
1171 if (vmalloc_branch_delay_filled)
1172 /* get pgd offset in bytes */
1173 uasm_i_dsrl_safe(p, scratch, tmp, PGDIR_SHIFT - 3);
1174
1175#ifdef __PAGETABLE_PMD_FOLDED
1176 GET_CONTEXT(p, tmp); /* get context reg */
1177#endif
1178 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PGD - 1) << 3);
1179
1180 if (use_lwx_insns()) {
1181 UASM_i_LWX(p, LOC_PTEP, scratch, ptr);
1182 } else {
1183 uasm_i_daddu(p, ptr, ptr, scratch); /* add in pgd offset */
1184 uasm_i_ld(p, LOC_PTEP, 0, ptr); /* get pmd pointer */
1185 }
1186
1187#ifndef __PAGETABLE_PMD_FOLDED
1188 /* get pmd offset in bytes */
1189 uasm_i_dsrl_safe(p, scratch, tmp, PMD_SHIFT - 3);
1190 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PMD - 1) << 3);
1191 GET_CONTEXT(p, tmp); /* get context reg */
1192
1193 if (use_lwx_insns()) {
1194 UASM_i_LWX(p, scratch, scratch, ptr);
1195 } else {
1196 uasm_i_daddu(p, ptr, ptr, scratch); /* add in pmd offset */
1197 UASM_i_LW(p, scratch, 0, ptr);
1198 }
1199#endif
1200 /* Adjust the context during the load latency. */
1201 build_adjust_context(p, tmp);
1202
1203#ifdef CONFIG_HUGETLB_PAGE
1204 uasm_il_bbit1(p, r, scratch, ilog2(_PAGE_HUGE), label_tlb_huge_update);
1205 /*
1206 * The in the LWX case we don't want to do the load in the
1207 * delay slot. It cannot issue in the same cycle and may be
1208 * speculative and unneeded.
1209 */
1210 if (use_lwx_insns())
1211 uasm_i_nop(p);
1212#endif /* CONFIG_HUGETLB_PAGE */
1213
1214
1215 /* build_update_entries */
1216 if (use_lwx_insns()) {
1217 even = ptr;
1218 odd = tmp;
1219 UASM_i_LWX(p, even, scratch, tmp);
1220 UASM_i_ADDIU(p, tmp, tmp, sizeof(pte_t));
1221 UASM_i_LWX(p, odd, scratch, tmp);
1222 } else {
1223 UASM_i_ADDU(p, ptr, scratch, tmp); /* add in offset */
1224 even = tmp;
1225 odd = ptr;
1226 UASM_i_LW(p, even, 0, ptr); /* get even pte */
1227 UASM_i_LW(p, odd, sizeof(pte_t), ptr); /* get odd pte */
1228 }
Steven J. Hill05857c62012-09-13 16:51:46 -05001229 if (cpu_has_rixi) {
David Daney748e7872012-08-23 10:02:03 -07001230 uasm_i_drotr(p, even, even, ilog2(_PAGE_GLOBAL));
David Daney2c8c53e2010-12-27 18:07:57 -08001231 UASM_i_MTC0(p, even, C0_ENTRYLO0); /* load it */
David Daney748e7872012-08-23 10:02:03 -07001232 uasm_i_drotr(p, odd, odd, ilog2(_PAGE_GLOBAL));
David Daney2c8c53e2010-12-27 18:07:57 -08001233 } else {
1234 uasm_i_dsrl_safe(p, even, even, ilog2(_PAGE_GLOBAL));
1235 UASM_i_MTC0(p, even, C0_ENTRYLO0); /* load it */
1236 uasm_i_dsrl_safe(p, odd, odd, ilog2(_PAGE_GLOBAL));
1237 }
1238 UASM_i_MTC0(p, odd, C0_ENTRYLO1); /* load it */
1239
1240 if (c0_scratch >= 0) {
1241 UASM_i_MFC0(p, scratch, 31, c0_scratch);
1242 build_tlb_write_entry(p, l, r, tlb_random);
1243 uasm_l_leave(l, *p);
1244 rv.restore_scratch = 1;
1245 } else if (PAGE_SHIFT == 14 || PAGE_SHIFT == 13) {
1246 build_tlb_write_entry(p, l, r, tlb_random);
1247 uasm_l_leave(l, *p);
1248 UASM_i_LW(p, scratch, scratchpad_offset(0), 0);
1249 } else {
1250 UASM_i_LW(p, scratch, scratchpad_offset(0), 0);
1251 build_tlb_write_entry(p, l, r, tlb_random);
1252 uasm_l_leave(l, *p);
1253 rv.restore_scratch = 1;
1254 }
1255
1256 uasm_i_eret(p); /* return from trap */
1257
1258 return rv;
1259}
1260
David Daneye6f72d32009-05-20 11:40:58 -07001261/*
1262 * For a 64-bit kernel, we are using the 64-bit XTLB refill exception
1263 * because EXL == 0. If we wrap, we can also use the 32 instruction
1264 * slots before the XTLB refill exception handler which belong to the
1265 * unused TLB refill exception.
1266 */
1267#define MIPS64_REFILL_INSNS 32
1268
Ralf Baechle234fcd12008-03-08 09:56:28 +00001269static void __cpuinit build_r4000_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 u32 *p = tlb_handler;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001272 struct uasm_label *l = labels;
1273 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 u32 *f;
1275 unsigned int final_len;
Ralf Baechle4a9040f2011-03-29 10:54:54 +02001276 struct mips_huge_tlb_info htlb_info __maybe_unused;
1277 enum vmalloc64_mode vmalloc_mode __maybe_unused;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 memset(tlb_handler, 0, sizeof(tlb_handler));
1280 memset(labels, 0, sizeof(labels));
1281 memset(relocs, 0, sizeof(relocs));
1282 memset(final_handler, 0, sizeof(final_handler));
1283
David Daney2c8c53e2010-12-27 18:07:57 -08001284 if ((scratch_reg > 0 || scratchpad_available()) && use_bbit_insns()) {
1285 htlb_info = build_fast_tlb_refill_handler(&p, &l, &r, K0, K1,
1286 scratch_reg);
1287 vmalloc_mode = refill_scratch;
1288 } else {
1289 htlb_info.huge_pte = K0;
1290 htlb_info.restore_scratch = 0;
1291 vmalloc_mode = refill_noscratch;
1292 /*
1293 * create the plain linear handler
1294 */
1295 if (bcm1250_m3_war()) {
1296 unsigned int segbits = 44;
1297
1298 uasm_i_dmfc0(&p, K0, C0_BADVADDR);
1299 uasm_i_dmfc0(&p, K1, C0_ENTRYHI);
1300 uasm_i_xor(&p, K0, K0, K1);
1301 uasm_i_dsrl_safe(&p, K1, K0, 62);
1302 uasm_i_dsrl_safe(&p, K0, K0, 12 + 1);
1303 uasm_i_dsll_safe(&p, K0, K0, 64 + 12 + 1 - segbits);
1304 uasm_i_or(&p, K0, K0, K1);
1305 uasm_il_bnez(&p, &r, K0, label_leave);
1306 /* No need for uasm_i_nop */
1307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Ralf Baechle875d43e2005-09-03 15:56:16 -07001309#ifdef CONFIG_64BIT
David Daney2c8c53e2010-12-27 18:07:57 -08001310 build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311#else
David Daney2c8c53e2010-12-27 18:07:57 -08001312 build_get_pgde32(&p, K0, K1); /* get pgd in K1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313#endif
1314
David Daneyfd062c82009-05-27 17:47:44 -07001315#ifdef CONFIG_HUGETLB_PAGE
David Daney2c8c53e2010-12-27 18:07:57 -08001316 build_is_huge_pte(&p, &r, K0, K1, label_tlb_huge_update);
David Daneyfd062c82009-05-27 17:47:44 -07001317#endif
1318
David Daney2c8c53e2010-12-27 18:07:57 -08001319 build_get_ptep(&p, K0, K1);
1320 build_update_entries(&p, K0, K1);
1321 build_tlb_write_entry(&p, &l, &r, tlb_random);
1322 uasm_l_leave(&l, p);
1323 uasm_i_eret(&p); /* return from trap */
1324 }
David Daneyfd062c82009-05-27 17:47:44 -07001325#ifdef CONFIG_HUGETLB_PAGE
1326 uasm_l_tlb_huge_update(&l, p);
David Daney2c8c53e2010-12-27 18:07:57 -08001327 build_huge_update_entries(&p, htlb_info.huge_pte, K1);
1328 build_huge_tlb_write_entry(&p, &l, &r, K0, tlb_random,
1329 htlb_info.restore_scratch);
David Daneyfd062c82009-05-27 17:47:44 -07001330#endif
1331
Ralf Baechle875d43e2005-09-03 15:56:16 -07001332#ifdef CONFIG_64BIT
David Daney2c8c53e2010-12-27 18:07:57 -08001333 build_get_pgd_vmalloc64(&p, &l, &r, K0, K1, vmalloc_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334#endif
1335
1336 /*
1337 * Overflow check: For the 64bit handler, we need at least one
1338 * free instruction slot for the wrap-around branch. In worst
1339 * case, if the intended insertion point is a delay slot, we
Matt LaPlante4b3f6862006-10-03 22:21:02 +02001340 * need three, with the second nop'ed and the third being
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 * unused.
1342 */
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001343 /* Loongson2 ebase is different than r4k, we have more space */
1344#if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if ((p - tlb_handler) > 64)
1346 panic("TLB refill handler space exceeded");
1347#else
David Daneye6f72d32009-05-20 11:40:58 -07001348 if (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 1)
1349 || (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 3)
1350 && uasm_insn_has_bdelay(relocs,
1351 tlb_handler + MIPS64_REFILL_INSNS - 3)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 panic("TLB refill handler space exceeded");
1353#endif
1354
1355 /*
1356 * Now fold the handler in the TLB refill handler space.
1357 */
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001358#if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 f = final_handler;
1360 /* Simplest case, just copy the handler. */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001361 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 final_len = p - tlb_handler;
Ralf Baechle875d43e2005-09-03 15:56:16 -07001363#else /* CONFIG_64BIT */
David Daneye6f72d32009-05-20 11:40:58 -07001364 f = final_handler + MIPS64_REFILL_INSNS;
1365 if ((p - tlb_handler) <= MIPS64_REFILL_INSNS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 /* Just copy the handler. */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001367 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 final_len = p - tlb_handler;
1369 } else {
David Daneyfd062c82009-05-27 17:47:44 -07001370#if defined(CONFIG_HUGETLB_PAGE)
1371 const enum label_id ls = label_tlb_huge_update;
David Daney95affdd2009-05-20 11:40:59 -07001372#else
1373 const enum label_id ls = label_vmalloc;
1374#endif
1375 u32 *split;
1376 int ov = 0;
1377 int i;
1378
1379 for (i = 0; i < ARRAY_SIZE(labels) && labels[i].lab != ls; i++)
1380 ;
1381 BUG_ON(i == ARRAY_SIZE(labels));
1382 split = labels[i].addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 /*
David Daney95affdd2009-05-20 11:40:59 -07001385 * See if we have overflown one way or the other.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 */
David Daney95affdd2009-05-20 11:40:59 -07001387 if (split > tlb_handler + MIPS64_REFILL_INSNS ||
1388 split < p - MIPS64_REFILL_INSNS)
1389 ov = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
David Daney95affdd2009-05-20 11:40:59 -07001391 if (ov) {
1392 /*
1393 * Split two instructions before the end. One
1394 * for the branch and one for the instruction
1395 * in the delay slot.
1396 */
1397 split = tlb_handler + MIPS64_REFILL_INSNS - 2;
1398
1399 /*
1400 * If the branch would fall in a delay slot,
1401 * we must back up an additional instruction
1402 * so that it is no longer in a delay slot.
1403 */
1404 if (uasm_insn_has_bdelay(relocs, split - 1))
1405 split--;
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /* Copy first part of the handler. */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001408 uasm_copy_handler(relocs, labels, tlb_handler, split, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 f += split - tlb_handler;
1410
David Daney95affdd2009-05-20 11:40:59 -07001411 if (ov) {
1412 /* Insert branch. */
1413 uasm_l_split(&l, final_handler);
1414 uasm_il_b(&f, &r, label_split);
1415 if (uasm_insn_has_bdelay(relocs, split))
1416 uasm_i_nop(&f);
1417 else {
1418 uasm_copy_handler(relocs, labels,
1419 split, split + 1, f);
1420 uasm_move_labels(labels, f, f + 1, -1);
1421 f++;
1422 split++;
1423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
1425
1426 /* Copy the rest of the handler. */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001427 uasm_copy_handler(relocs, labels, split, p, final_handler);
David Daneye6f72d32009-05-20 11:40:58 -07001428 final_len = (f - (final_handler + MIPS64_REFILL_INSNS)) +
1429 (p - split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
Ralf Baechle875d43e2005-09-03 15:56:16 -07001431#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Thiemo Seufere30ec452008-01-28 20:05:38 +00001433 uasm_resolve_relocs(relocs, labels);
1434 pr_debug("Wrote TLB refill handler (%u instructions).\n",
1435 final_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Ralf Baechle91b05e62006-03-29 18:53:00 +01001437 memcpy((void *)ebase, final_handler, 0x100);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +02001438
1439 dump_handler((u32 *)ebase, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440}
1441
1442/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 * 128 instructions for the fastpath handler is generous and should
1444 * never be exceeded.
1445 */
1446#define FASTPATH_SIZE 128
1447
Franck Bui-Huucbdbe072007-10-18 09:11:16 +02001448u32 handle_tlbl[FASTPATH_SIZE] __cacheline_aligned;
1449u32 handle_tlbs[FASTPATH_SIZE] __cacheline_aligned;
1450u32 handle_tlbm[FASTPATH_SIZE] __cacheline_aligned;
David Daney3d8bfdd2010-12-21 14:19:11 -08001451#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
1452u32 tlbmiss_handler_setup_pgd[16] __cacheline_aligned;
1453
1454static void __cpuinit build_r4000_setup_pgd(void)
1455{
1456 const int a0 = 4;
1457 const int a1 = 5;
1458 u32 *p = tlbmiss_handler_setup_pgd;
1459 struct uasm_label *l = labels;
1460 struct uasm_reloc *r = relocs;
1461
1462 memset(tlbmiss_handler_setup_pgd, 0, sizeof(tlbmiss_handler_setup_pgd));
1463 memset(labels, 0, sizeof(labels));
1464 memset(relocs, 0, sizeof(relocs));
1465
1466 pgd_reg = allocate_kscratch();
1467
1468 if (pgd_reg == -1) {
1469 /* PGD << 11 in c0_Context */
1470 /*
1471 * If it is a ckseg0 address, convert to a physical
1472 * address. Shifting right by 29 and adding 4 will
1473 * result in zero for these addresses.
1474 *
1475 */
1476 UASM_i_SRA(&p, a1, a0, 29);
1477 UASM_i_ADDIU(&p, a1, a1, 4);
1478 uasm_il_bnez(&p, &r, a1, label_tlbl_goaround1);
1479 uasm_i_nop(&p);
1480 uasm_i_dinsm(&p, a0, 0, 29, 64 - 29);
1481 uasm_l_tlbl_goaround1(&l, p);
1482 UASM_i_SLL(&p, a0, a0, 11);
1483 uasm_i_jr(&p, 31);
1484 UASM_i_MTC0(&p, a0, C0_CONTEXT);
1485 } else {
1486 /* PGD in c0_KScratch */
1487 uasm_i_jr(&p, 31);
1488 UASM_i_MTC0(&p, a0, 31, pgd_reg);
1489 }
1490 if (p - tlbmiss_handler_setup_pgd > ARRAY_SIZE(tlbmiss_handler_setup_pgd))
1491 panic("tlbmiss_handler_setup_pgd space exceeded");
1492 uasm_resolve_relocs(relocs, labels);
1493 pr_debug("Wrote tlbmiss_handler_setup_pgd (%u instructions).\n",
1494 (unsigned int)(p - tlbmiss_handler_setup_pgd));
1495
1496 dump_handler(tlbmiss_handler_setup_pgd,
1497 ARRAY_SIZE(tlbmiss_handler_setup_pgd));
1498}
1499#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Ralf Baechle234fcd12008-03-08 09:56:28 +00001501static void __cpuinit
David Daneybd1437e2009-05-08 15:10:50 -07001502iPTE_LW(u32 **p, unsigned int pte, unsigned int ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
1504#ifdef CONFIG_SMP
1505# ifdef CONFIG_64BIT_PHYS_ADDR
1506 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001507 uasm_i_lld(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 else
1509# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001510 UASM_i_LL(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511#else
1512# ifdef CONFIG_64BIT_PHYS_ADDR
1513 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001514 uasm_i_ld(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 else
1516# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001517 UASM_i_LW(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518#endif
1519}
1520
Ralf Baechle234fcd12008-03-08 09:56:28 +00001521static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001522iPTE_SW(u32 **p, struct uasm_reloc **r, unsigned int pte, unsigned int ptr,
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001523 unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001525#ifdef CONFIG_64BIT_PHYS_ADDR
1526 unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY);
1527#endif
1528
Thiemo Seufere30ec452008-01-28 20:05:38 +00001529 uasm_i_ori(p, pte, pte, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530#ifdef CONFIG_SMP
1531# ifdef CONFIG_64BIT_PHYS_ADDR
1532 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001533 uasm_i_scd(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 else
1535# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001536 UASM_i_SC(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 if (r10000_llsc_war())
Thiemo Seufere30ec452008-01-28 20:05:38 +00001539 uasm_il_beqzl(p, r, pte, label_smp_pgtable_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001541 uasm_il_beqz(p, r, pte, label_smp_pgtable_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543# ifdef CONFIG_64BIT_PHYS_ADDR
1544 if (!cpu_has_64bits) {
Thiemo Seufere30ec452008-01-28 20:05:38 +00001545 /* no uasm_i_nop needed */
1546 uasm_i_ll(p, pte, sizeof(pte_t) / 2, ptr);
1547 uasm_i_ori(p, pte, pte, hwmode);
1548 uasm_i_sc(p, pte, sizeof(pte_t) / 2, ptr);
1549 uasm_il_beqz(p, r, pte, label_smp_pgtable_change);
1550 /* no uasm_i_nop needed */
1551 uasm_i_lw(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 } else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001553 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554# else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001555 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556# endif
1557#else
1558# ifdef CONFIG_64BIT_PHYS_ADDR
1559 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001560 uasm_i_sd(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 else
1562# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001563 UASM_i_SW(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565# ifdef CONFIG_64BIT_PHYS_ADDR
1566 if (!cpu_has_64bits) {
Thiemo Seufere30ec452008-01-28 20:05:38 +00001567 uasm_i_lw(p, pte, sizeof(pte_t) / 2, ptr);
1568 uasm_i_ori(p, pte, pte, hwmode);
1569 uasm_i_sw(p, pte, sizeof(pte_t) / 2, ptr);
1570 uasm_i_lw(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
1572# endif
1573#endif
1574}
1575
1576/*
1577 * Check if PTE is present, if not then jump to LABEL. PTR points to
1578 * the page table where this PTE is located, PTE will be re-loaded
1579 * with it's original value.
1580 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001581static void __cpuinit
David Daneybd1437e2009-05-08 15:10:50 -07001582build_pte_present(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001583 int pte, int ptr, int scratch, enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
David Daneybf286072011-07-05 16:34:46 -07001585 int t = scratch >= 0 ? scratch : pte;
1586
Steven J. Hill05857c62012-09-13 16:51:46 -05001587 if (cpu_has_rixi) {
David Daneycc33ae42010-12-20 15:54:50 -08001588 if (use_bbit_insns()) {
1589 uasm_il_bbit0(p, r, pte, ilog2(_PAGE_PRESENT), lid);
1590 uasm_i_nop(p);
1591 } else {
David Daneybf286072011-07-05 16:34:46 -07001592 uasm_i_andi(p, t, pte, _PAGE_PRESENT);
1593 uasm_il_beqz(p, r, t, lid);
1594 if (pte == t)
1595 /* You lose the SMP race :-(*/
1596 iPTE_LW(p, pte, ptr);
David Daneycc33ae42010-12-20 15:54:50 -08001597 }
David Daney6dd93442010-02-10 15:12:47 -08001598 } else {
David Daneybf286072011-07-05 16:34:46 -07001599 uasm_i_andi(p, t, pte, _PAGE_PRESENT | _PAGE_READ);
1600 uasm_i_xori(p, t, t, _PAGE_PRESENT | _PAGE_READ);
1601 uasm_il_bnez(p, r, t, lid);
1602 if (pte == t)
1603 /* You lose the SMP race :-(*/
1604 iPTE_LW(p, pte, ptr);
David Daney6dd93442010-02-10 15:12:47 -08001605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
1608/* Make PTE valid, store result in PTR. */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001609static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001610build_make_valid(u32 **p, struct uasm_reloc **r, unsigned int pte,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 unsigned int ptr)
1612{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001613 unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED;
1614
1615 iPTE_SW(p, r, pte, ptr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616}
1617
1618/*
1619 * Check if PTE can be written to, if not branch to LABEL. Regardless
1620 * restore PTE with value from PTR when done.
1621 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001622static void __cpuinit
David Daneybd1437e2009-05-08 15:10:50 -07001623build_pte_writable(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001624 unsigned int pte, unsigned int ptr, int scratch,
1625 enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
David Daneybf286072011-07-05 16:34:46 -07001627 int t = scratch >= 0 ? scratch : pte;
1628
1629 uasm_i_andi(p, t, pte, _PAGE_PRESENT | _PAGE_WRITE);
1630 uasm_i_xori(p, t, t, _PAGE_PRESENT | _PAGE_WRITE);
1631 uasm_il_bnez(p, r, t, lid);
1632 if (pte == t)
1633 /* You lose the SMP race :-(*/
David Daneycc33ae42010-12-20 15:54:50 -08001634 iPTE_LW(p, pte, ptr);
David Daneybf286072011-07-05 16:34:46 -07001635 else
1636 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637}
1638
1639/* Make PTE writable, update software status bits as well, then store
1640 * at PTR.
1641 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001642static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001643build_make_write(u32 **p, struct uasm_reloc **r, unsigned int pte,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 unsigned int ptr)
1645{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001646 unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID
1647 | _PAGE_DIRTY);
1648
1649 iPTE_SW(p, r, pte, ptr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
1652/*
1653 * Check if PTE can be modified, if not branch to LABEL. Regardless
1654 * restore PTE with value from PTR when done.
1655 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001656static void __cpuinit
David Daneybd1437e2009-05-08 15:10:50 -07001657build_pte_modifiable(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001658 unsigned int pte, unsigned int ptr, int scratch,
1659 enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
David Daneycc33ae42010-12-20 15:54:50 -08001661 if (use_bbit_insns()) {
1662 uasm_il_bbit0(p, r, pte, ilog2(_PAGE_WRITE), lid);
1663 uasm_i_nop(p);
1664 } else {
David Daneybf286072011-07-05 16:34:46 -07001665 int t = scratch >= 0 ? scratch : pte;
1666 uasm_i_andi(p, t, pte, _PAGE_WRITE);
1667 uasm_il_beqz(p, r, t, lid);
1668 if (pte == t)
1669 /* You lose the SMP race :-(*/
1670 iPTE_LW(p, pte, ptr);
David Daneycc33ae42010-12-20 15:54:50 -08001671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672}
1673
David Daney826222842009-10-14 12:16:56 -07001674#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
David Daney3d8bfdd2010-12-21 14:19:11 -08001675
1676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677/*
1678 * R3000 style TLB load/store/modify handlers.
1679 */
1680
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001681/*
1682 * This places the pte into ENTRYLO0 and writes it with tlbwi.
1683 * Then it returns.
1684 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001685static void __cpuinit
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001686build_r3000_pte_reload_tlbwi(u32 **p, unsigned int pte, unsigned int tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Thiemo Seufere30ec452008-01-28 20:05:38 +00001688 uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
1689 uasm_i_mfc0(p, tmp, C0_EPC); /* cp0 delay */
1690 uasm_i_tlbwi(p);
1691 uasm_i_jr(p, tmp);
1692 uasm_i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
1695/*
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001696 * This places the pte into ENTRYLO0 and writes it with tlbwi
1697 * or tlbwr as appropriate. This is because the index register
1698 * may have the probe fail bit set as a result of a trap on a
1699 * kseg2 access, i.e. without refill. Then it returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001701static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001702build_r3000_tlb_reload_write(u32 **p, struct uasm_label **l,
1703 struct uasm_reloc **r, unsigned int pte,
1704 unsigned int tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Thiemo Seufere30ec452008-01-28 20:05:38 +00001706 uasm_i_mfc0(p, tmp, C0_INDEX);
1707 uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
1708 uasm_il_bltz(p, r, tmp, label_r3000_write_probe_fail); /* cp0 delay */
1709 uasm_i_mfc0(p, tmp, C0_EPC); /* branch delay */
1710 uasm_i_tlbwi(p); /* cp0 delay */
1711 uasm_i_jr(p, tmp);
1712 uasm_i_rfe(p); /* branch delay */
1713 uasm_l_r3000_write_probe_fail(l, *p);
1714 uasm_i_tlbwr(p); /* cp0 delay */
1715 uasm_i_jr(p, tmp);
1716 uasm_i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Ralf Baechle234fcd12008-03-08 09:56:28 +00001719static void __cpuinit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720build_r3000_tlbchange_handler_head(u32 **p, unsigned int pte,
1721 unsigned int ptr)
1722{
1723 long pgdc = (long)pgd_current;
1724
Thiemo Seufere30ec452008-01-28 20:05:38 +00001725 uasm_i_mfc0(p, pte, C0_BADVADDR);
1726 uasm_i_lui(p, ptr, uasm_rel_hi(pgdc)); /* cp0 delay */
1727 uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr);
1728 uasm_i_srl(p, pte, pte, 22); /* load delay */
1729 uasm_i_sll(p, pte, pte, 2);
1730 uasm_i_addu(p, ptr, ptr, pte);
1731 uasm_i_mfc0(p, pte, C0_CONTEXT);
1732 uasm_i_lw(p, ptr, 0, ptr); /* cp0 delay */
1733 uasm_i_andi(p, pte, pte, 0xffc); /* load delay */
1734 uasm_i_addu(p, ptr, ptr, pte);
1735 uasm_i_lw(p, pte, 0, ptr);
1736 uasm_i_tlbp(p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737}
1738
Ralf Baechle234fcd12008-03-08 09:56:28 +00001739static void __cpuinit build_r3000_tlb_load_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
1741 u32 *p = handle_tlbl;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001742 struct uasm_label *l = labels;
1743 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 memset(handle_tlbl, 0, sizeof(handle_tlbl));
1746 memset(labels, 0, sizeof(labels));
1747 memset(relocs, 0, sizeof(relocs));
1748
1749 build_r3000_tlbchange_handler_head(&p, K0, K1);
David Daneybf286072011-07-05 16:34:46 -07001750 build_pte_present(&p, &r, K0, K1, -1, label_nopage_tlbl);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001751 uasm_i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 build_make_valid(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001753 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Thiemo Seufere30ec452008-01-28 20:05:38 +00001755 uasm_l_nopage_tlbl(&l, p);
1756 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
1757 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759 if ((p - handle_tlbl) > FASTPATH_SIZE)
1760 panic("TLB load handler fastpath space exceeded");
1761
Thiemo Seufere30ec452008-01-28 20:05:38 +00001762 uasm_resolve_relocs(relocs, labels);
1763 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
1764 (unsigned int)(p - handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +02001766 dump_handler(handle_tlbl, ARRAY_SIZE(handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767}
1768
Ralf Baechle234fcd12008-03-08 09:56:28 +00001769static void __cpuinit build_r3000_tlb_store_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
1771 u32 *p = handle_tlbs;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001772 struct uasm_label *l = labels;
1773 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 memset(handle_tlbs, 0, sizeof(handle_tlbs));
1776 memset(labels, 0, sizeof(labels));
1777 memset(relocs, 0, sizeof(relocs));
1778
1779 build_r3000_tlbchange_handler_head(&p, K0, K1);
David Daneybf286072011-07-05 16:34:46 -07001780 build_pte_writable(&p, &r, K0, K1, -1, label_nopage_tlbs);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001781 uasm_i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 build_make_write(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001783 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Thiemo Seufere30ec452008-01-28 20:05:38 +00001785 uasm_l_nopage_tlbs(&l, p);
1786 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1787 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 if ((p - handle_tlbs) > FASTPATH_SIZE)
1790 panic("TLB store handler fastpath space exceeded");
1791
Thiemo Seufere30ec452008-01-28 20:05:38 +00001792 uasm_resolve_relocs(relocs, labels);
1793 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
1794 (unsigned int)(p - handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +02001796 dump_handler(handle_tlbs, ARRAY_SIZE(handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
1798
Ralf Baechle234fcd12008-03-08 09:56:28 +00001799static void __cpuinit build_r3000_tlb_modify_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
1801 u32 *p = handle_tlbm;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001802 struct uasm_label *l = labels;
1803 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 memset(handle_tlbm, 0, sizeof(handle_tlbm));
1806 memset(labels, 0, sizeof(labels));
1807 memset(relocs, 0, sizeof(relocs));
1808
1809 build_r3000_tlbchange_handler_head(&p, K0, K1);
Ralf Baechled954ffe2011-08-02 22:52:48 +01001810 build_pte_modifiable(&p, &r, K0, K1, -1, label_nopage_tlbm);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001811 uasm_i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 build_make_write(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001813 build_r3000_pte_reload_tlbwi(&p, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Thiemo Seufere30ec452008-01-28 20:05:38 +00001815 uasm_l_nopage_tlbm(&l, p);
1816 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1817 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
1819 if ((p - handle_tlbm) > FASTPATH_SIZE)
1820 panic("TLB modify handler fastpath space exceeded");
1821
Thiemo Seufere30ec452008-01-28 20:05:38 +00001822 uasm_resolve_relocs(relocs, labels);
1823 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
1824 (unsigned int)(p - handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +02001826 dump_handler(handle_tlbm, ARRAY_SIZE(handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
David Daney826222842009-10-14 12:16:56 -07001828#endif /* CONFIG_MIPS_PGD_C0_CONTEXT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830/*
1831 * R4000 style TLB load/store/modify handlers.
1832 */
David Daneybf286072011-07-05 16:34:46 -07001833static struct work_registers __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001834build_r4000_tlbchange_handler_head(u32 **p, struct uasm_label **l,
David Daneybf286072011-07-05 16:34:46 -07001835 struct uasm_reloc **r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
David Daneybf286072011-07-05 16:34:46 -07001837 struct work_registers wr = build_get_work_registers(p);
1838
Ralf Baechle875d43e2005-09-03 15:56:16 -07001839#ifdef CONFIG_64BIT
David Daneybf286072011-07-05 16:34:46 -07001840 build_get_pmde64(p, l, r, wr.r1, wr.r2); /* get pmd in ptr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841#else
David Daneybf286072011-07-05 16:34:46 -07001842 build_get_pgde32(p, wr.r1, wr.r2); /* get pgd in ptr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843#endif
1844
David Daneyfd062c82009-05-27 17:47:44 -07001845#ifdef CONFIG_HUGETLB_PAGE
1846 /*
1847 * For huge tlb entries, pmd doesn't contain an address but
1848 * instead contains the tlb pte. Check the PAGE_HUGE bit and
1849 * see if we need to jump to huge tlb processing.
1850 */
David Daneybf286072011-07-05 16:34:46 -07001851 build_is_huge_pte(p, r, wr.r1, wr.r2, label_tlb_huge_update);
David Daneyfd062c82009-05-27 17:47:44 -07001852#endif
1853
David Daneybf286072011-07-05 16:34:46 -07001854 UASM_i_MFC0(p, wr.r1, C0_BADVADDR);
1855 UASM_i_LW(p, wr.r2, 0, wr.r2);
1856 UASM_i_SRL(p, wr.r1, wr.r1, PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2);
1857 uasm_i_andi(p, wr.r1, wr.r1, (PTRS_PER_PTE - 1) << PTE_T_LOG2);
1858 UASM_i_ADDU(p, wr.r2, wr.r2, wr.r1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860#ifdef CONFIG_SMP
Thiemo Seufere30ec452008-01-28 20:05:38 +00001861 uasm_l_smp_pgtable_change(l, *p);
1862#endif
David Daneybf286072011-07-05 16:34:46 -07001863 iPTE_LW(p, wr.r1, wr.r2); /* get even pte */
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01001864 if (!m4kc_tlbp_war())
1865 build_tlb_probe_entry(p);
David Daneybf286072011-07-05 16:34:46 -07001866 return wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867}
1868
Ralf Baechle234fcd12008-03-08 09:56:28 +00001869static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001870build_r4000_tlbchange_handler_tail(u32 **p, struct uasm_label **l,
1871 struct uasm_reloc **r, unsigned int tmp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 unsigned int ptr)
1873{
Thiemo Seufere30ec452008-01-28 20:05:38 +00001874 uasm_i_ori(p, ptr, ptr, sizeof(pte_t));
1875 uasm_i_xori(p, ptr, ptr, sizeof(pte_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 build_update_entries(p, tmp, ptr);
1877 build_tlb_write_entry(p, l, r, tlb_indexed);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001878 uasm_l_leave(l, *p);
David Daneybf286072011-07-05 16:34:46 -07001879 build_restore_work_registers(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001880 uasm_i_eret(p); /* return from trap */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Ralf Baechle875d43e2005-09-03 15:56:16 -07001882#ifdef CONFIG_64BIT
David Daney1ec56322010-04-28 12:16:18 -07001883 build_get_pgd_vmalloc64(p, l, r, tmp, ptr, not_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884#endif
1885}
1886
Ralf Baechle234fcd12008-03-08 09:56:28 +00001887static void __cpuinit build_r4000_tlb_load_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
1889 u32 *p = handle_tlbl;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001890 struct uasm_label *l = labels;
1891 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07001892 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
1894 memset(handle_tlbl, 0, sizeof(handle_tlbl));
1895 memset(labels, 0, sizeof(labels));
1896 memset(relocs, 0, sizeof(relocs));
1897
1898 if (bcm1250_m3_war()) {
Ralf Baechle3d452852010-03-23 17:56:38 +01001899 unsigned int segbits = 44;
1900
1901 uasm_i_dmfc0(&p, K0, C0_BADVADDR);
1902 uasm_i_dmfc0(&p, K1, C0_ENTRYHI);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001903 uasm_i_xor(&p, K0, K0, K1);
David Daney3be60222010-04-28 12:16:17 -07001904 uasm_i_dsrl_safe(&p, K1, K0, 62);
1905 uasm_i_dsrl_safe(&p, K0, K0, 12 + 1);
1906 uasm_i_dsll_safe(&p, K0, K0, 64 + 12 + 1 - segbits);
Ralf Baechle3d452852010-03-23 17:56:38 +01001907 uasm_i_or(&p, K0, K0, K1);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001908 uasm_il_bnez(&p, &r, K0, label_leave);
1909 /* No need for uasm_i_nop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 }
1911
David Daneybf286072011-07-05 16:34:46 -07001912 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
1913 build_pte_present(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbl);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01001914 if (m4kc_tlbp_war())
1915 build_tlb_probe_entry(&p);
David Daney6dd93442010-02-10 15:12:47 -08001916
Steven J. Hill05857c62012-09-13 16:51:46 -05001917 if (cpu_has_rixi) {
David Daney6dd93442010-02-10 15:12:47 -08001918 /*
1919 * If the page is not _PAGE_VALID, RI or XI could not
1920 * have triggered it. Skip the expensive test..
1921 */
David Daneycc33ae42010-12-20 15:54:50 -08001922 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07001923 uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID),
David Daneycc33ae42010-12-20 15:54:50 -08001924 label_tlbl_goaround1);
1925 } else {
David Daneybf286072011-07-05 16:34:46 -07001926 uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID);
1927 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround1);
David Daneycc33ae42010-12-20 15:54:50 -08001928 }
David Daney6dd93442010-02-10 15:12:47 -08001929 uasm_i_nop(&p);
1930
1931 uasm_i_tlbr(&p);
1932 /* Examine entrylo 0 or 1 based on ptr. */
David Daneycc33ae42010-12-20 15:54:50 -08001933 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07001934 uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8);
David Daneycc33ae42010-12-20 15:54:50 -08001935 } else {
David Daneybf286072011-07-05 16:34:46 -07001936 uasm_i_andi(&p, wr.r3, wr.r2, sizeof(pte_t));
1937 uasm_i_beqz(&p, wr.r3, 8);
David Daneycc33ae42010-12-20 15:54:50 -08001938 }
David Daneybf286072011-07-05 16:34:46 -07001939 /* load it in the delay slot*/
1940 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO0);
1941 /* load it if ptr is odd */
1942 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO1);
David Daney6dd93442010-02-10 15:12:47 -08001943 /*
David Daneybf286072011-07-05 16:34:46 -07001944 * If the entryLo (now in wr.r3) is valid (bit 1), RI or
David Daney6dd93442010-02-10 15:12:47 -08001945 * XI must have triggered it.
1946 */
David Daneycc33ae42010-12-20 15:54:50 -08001947 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07001948 uasm_il_bbit1(&p, &r, wr.r3, 1, label_nopage_tlbl);
1949 uasm_i_nop(&p);
David Daneycc33ae42010-12-20 15:54:50 -08001950 uasm_l_tlbl_goaround1(&l, p);
1951 } else {
David Daneybf286072011-07-05 16:34:46 -07001952 uasm_i_andi(&p, wr.r3, wr.r3, 2);
1953 uasm_il_bnez(&p, &r, wr.r3, label_nopage_tlbl);
1954 uasm_i_nop(&p);
David Daneycc33ae42010-12-20 15:54:50 -08001955 }
David Daneybf286072011-07-05 16:34:46 -07001956 uasm_l_tlbl_goaround1(&l, p);
David Daney6dd93442010-02-10 15:12:47 -08001957 }
David Daneybf286072011-07-05 16:34:46 -07001958 build_make_valid(&p, &r, wr.r1, wr.r2);
1959 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
David Daneyfd062c82009-05-27 17:47:44 -07001961#ifdef CONFIG_HUGETLB_PAGE
1962 /*
1963 * This is the entry point when build_r4000_tlbchange_handler_head
1964 * spots a huge page.
1965 */
1966 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07001967 iPTE_LW(&p, wr.r1, wr.r2);
1968 build_pte_present(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbl);
David Daneyfd062c82009-05-27 17:47:44 -07001969 build_tlb_probe_entry(&p);
David Daney6dd93442010-02-10 15:12:47 -08001970
Steven J. Hill05857c62012-09-13 16:51:46 -05001971 if (cpu_has_rixi) {
David Daney6dd93442010-02-10 15:12:47 -08001972 /*
1973 * If the page is not _PAGE_VALID, RI or XI could not
1974 * have triggered it. Skip the expensive test..
1975 */
David Daneycc33ae42010-12-20 15:54:50 -08001976 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07001977 uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID),
David Daneycc33ae42010-12-20 15:54:50 -08001978 label_tlbl_goaround2);
1979 } else {
David Daneybf286072011-07-05 16:34:46 -07001980 uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID);
1981 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08001982 }
David Daney6dd93442010-02-10 15:12:47 -08001983 uasm_i_nop(&p);
1984
1985 uasm_i_tlbr(&p);
1986 /* Examine entrylo 0 or 1 based on ptr. */
David Daneycc33ae42010-12-20 15:54:50 -08001987 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07001988 uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8);
David Daneycc33ae42010-12-20 15:54:50 -08001989 } else {
David Daneybf286072011-07-05 16:34:46 -07001990 uasm_i_andi(&p, wr.r3, wr.r2, sizeof(pte_t));
1991 uasm_i_beqz(&p, wr.r3, 8);
David Daneycc33ae42010-12-20 15:54:50 -08001992 }
David Daneybf286072011-07-05 16:34:46 -07001993 /* load it in the delay slot*/
1994 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO0);
1995 /* load it if ptr is odd */
1996 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO1);
David Daney6dd93442010-02-10 15:12:47 -08001997 /*
David Daneybf286072011-07-05 16:34:46 -07001998 * If the entryLo (now in wr.r3) is valid (bit 1), RI or
David Daney6dd93442010-02-10 15:12:47 -08001999 * XI must have triggered it.
2000 */
David Daneycc33ae42010-12-20 15:54:50 -08002001 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002002 uasm_il_bbit0(&p, &r, wr.r3, 1, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002003 } else {
David Daneybf286072011-07-05 16:34:46 -07002004 uasm_i_andi(&p, wr.r3, wr.r3, 2);
2005 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002006 }
David Daney0f4ccbc2011-09-16 18:06:02 -07002007 if (PM_DEFAULT_MASK == 0)
2008 uasm_i_nop(&p);
David Daney6dd93442010-02-10 15:12:47 -08002009 /*
2010 * We clobbered C0_PAGEMASK, restore it. On the other branch
2011 * it is restored in build_huge_tlb_write_entry.
2012 */
David Daneybf286072011-07-05 16:34:46 -07002013 build_restore_pagemask(&p, &r, wr.r3, label_nopage_tlbl, 0);
David Daney6dd93442010-02-10 15:12:47 -08002014
2015 uasm_l_tlbl_goaround2(&l, p);
2016 }
David Daneybf286072011-07-05 16:34:46 -07002017 uasm_i_ori(&p, wr.r1, wr.r1, (_PAGE_ACCESSED | _PAGE_VALID));
2018 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2);
David Daneyfd062c82009-05-27 17:47:44 -07002019#endif
2020
Thiemo Seufere30ec452008-01-28 20:05:38 +00002021 uasm_l_nopage_tlbl(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002022 build_restore_work_registers(&p);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002023 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
2024 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026 if ((p - handle_tlbl) > FASTPATH_SIZE)
2027 panic("TLB load handler fastpath space exceeded");
2028
Thiemo Seufere30ec452008-01-28 20:05:38 +00002029 uasm_resolve_relocs(relocs, labels);
2030 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
2031 (unsigned int)(p - handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +02002033 dump_handler(handle_tlbl, ARRAY_SIZE(handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
Ralf Baechle234fcd12008-03-08 09:56:28 +00002036static void __cpuinit build_r4000_tlb_store_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
2038 u32 *p = handle_tlbs;
Thiemo Seufere30ec452008-01-28 20:05:38 +00002039 struct uasm_label *l = labels;
2040 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07002041 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043 memset(handle_tlbs, 0, sizeof(handle_tlbs));
2044 memset(labels, 0, sizeof(labels));
2045 memset(relocs, 0, sizeof(relocs));
2046
David Daneybf286072011-07-05 16:34:46 -07002047 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
2048 build_pte_writable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbs);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002049 if (m4kc_tlbp_war())
2050 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002051 build_make_write(&p, &r, wr.r1, wr.r2);
2052 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
David Daneyfd062c82009-05-27 17:47:44 -07002054#ifdef CONFIG_HUGETLB_PAGE
2055 /*
2056 * This is the entry point when
2057 * build_r4000_tlbchange_handler_head spots a huge page.
2058 */
2059 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002060 iPTE_LW(&p, wr.r1, wr.r2);
2061 build_pte_writable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbs);
David Daneyfd062c82009-05-27 17:47:44 -07002062 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002063 uasm_i_ori(&p, wr.r1, wr.r1,
David Daneyfd062c82009-05-27 17:47:44 -07002064 _PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY);
David Daneybf286072011-07-05 16:34:46 -07002065 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2);
David Daneyfd062c82009-05-27 17:47:44 -07002066#endif
2067
Thiemo Seufere30ec452008-01-28 20:05:38 +00002068 uasm_l_nopage_tlbs(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002069 build_restore_work_registers(&p);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002070 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
2071 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 if ((p - handle_tlbs) > FASTPATH_SIZE)
2074 panic("TLB store handler fastpath space exceeded");
2075
Thiemo Seufere30ec452008-01-28 20:05:38 +00002076 uasm_resolve_relocs(relocs, labels);
2077 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
2078 (unsigned int)(p - handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +02002080 dump_handler(handle_tlbs, ARRAY_SIZE(handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082
Ralf Baechle234fcd12008-03-08 09:56:28 +00002083static void __cpuinit build_r4000_tlb_modify_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
2085 u32 *p = handle_tlbm;
Thiemo Seufere30ec452008-01-28 20:05:38 +00002086 struct uasm_label *l = labels;
2087 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07002088 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 memset(handle_tlbm, 0, sizeof(handle_tlbm));
2091 memset(labels, 0, sizeof(labels));
2092 memset(relocs, 0, sizeof(relocs));
2093
David Daneybf286072011-07-05 16:34:46 -07002094 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
2095 build_pte_modifiable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbm);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002096 if (m4kc_tlbp_war())
2097 build_tlb_probe_entry(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 /* Present and writable bits set, set accessed and dirty bits. */
David Daneybf286072011-07-05 16:34:46 -07002099 build_make_write(&p, &r, wr.r1, wr.r2);
2100 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
David Daneyfd062c82009-05-27 17:47:44 -07002102#ifdef CONFIG_HUGETLB_PAGE
2103 /*
2104 * This is the entry point when
2105 * build_r4000_tlbchange_handler_head spots a huge page.
2106 */
2107 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002108 iPTE_LW(&p, wr.r1, wr.r2);
2109 build_pte_modifiable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbm);
David Daneyfd062c82009-05-27 17:47:44 -07002110 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002111 uasm_i_ori(&p, wr.r1, wr.r1,
David Daneyfd062c82009-05-27 17:47:44 -07002112 _PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY);
David Daneybf286072011-07-05 16:34:46 -07002113 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2);
David Daneyfd062c82009-05-27 17:47:44 -07002114#endif
2115
Thiemo Seufere30ec452008-01-28 20:05:38 +00002116 uasm_l_nopage_tlbm(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002117 build_restore_work_registers(&p);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002118 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
2119 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 if ((p - handle_tlbm) > FASTPATH_SIZE)
2122 panic("TLB modify handler fastpath space exceeded");
2123
Thiemo Seufere30ec452008-01-28 20:05:38 +00002124 uasm_resolve_relocs(relocs, labels);
2125 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
2126 (unsigned int)(p - handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +02002128 dump_handler(handle_tlbm, ARRAY_SIZE(handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129}
2130
Ralf Baechle234fcd12008-03-08 09:56:28 +00002131void __cpuinit build_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
2133 /*
2134 * The refill handler is generated per-CPU, multi-node systems
2135 * may have local storage for it. The other handlers are only
2136 * needed once.
2137 */
2138 static int run_once = 0;
2139
David Daney1ec56322010-04-28 12:16:18 -07002140#ifdef CONFIG_64BIT
2141 check_for_high_segbits = current_cpu_data.vmbits > (PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
2142#endif
2143
Ralf Baechle10cc3522007-10-11 23:46:15 +01002144 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 case CPU_R2000:
2146 case CPU_R3000:
2147 case CPU_R3000A:
2148 case CPU_R3081E:
2149 case CPU_TX3912:
2150 case CPU_TX3922:
2151 case CPU_TX3927:
David Daney826222842009-10-14 12:16:56 -07002152#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 build_r3000_tlb_refill_handler();
2154 if (!run_once) {
2155 build_r3000_tlb_load_handler();
2156 build_r3000_tlb_store_handler();
2157 build_r3000_tlb_modify_handler();
2158 run_once++;
2159 }
David Daney826222842009-10-14 12:16:56 -07002160#else
2161 panic("No R3000 TLB refill handler");
2162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 break;
2164
2165 case CPU_R6000:
2166 case CPU_R6000A:
2167 panic("No R6000 TLB refill handler yet");
2168 break;
2169
2170 case CPU_R8000:
2171 panic("No R8000 TLB refill handler yet");
2172 break;
2173
2174 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 if (!run_once) {
David Daneybf286072011-07-05 16:34:46 -07002176 scratch_reg = allocate_kscratch();
David Daney3d8bfdd2010-12-21 14:19:11 -08002177#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
2178 build_r4000_setup_pgd();
2179#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 build_r4000_tlb_load_handler();
2181 build_r4000_tlb_store_handler();
2182 build_r4000_tlb_modify_handler();
2183 run_once++;
2184 }
David Daney3d8bfdd2010-12-21 14:19:11 -08002185 build_r4000_tlb_refill_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
2187}
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002188
Ralf Baechle234fcd12008-03-08 09:56:28 +00002189void __cpuinit flush_tlb_handlers(void)
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002190{
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02002191 local_flush_icache_range((unsigned long)handle_tlbl,
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002192 (unsigned long)handle_tlbl + sizeof(handle_tlbl));
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02002193 local_flush_icache_range((unsigned long)handle_tlbs,
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002194 (unsigned long)handle_tlbs + sizeof(handle_tlbs));
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02002195 local_flush_icache_range((unsigned long)handle_tlbm,
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002196 (unsigned long)handle_tlbm + sizeof(handle_tlbm));
David Daney3d8bfdd2010-12-21 14:19:11 -08002197#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
2198 local_flush_icache_range((unsigned long)tlbmiss_handler_setup_pgd,
2199 (unsigned long)tlbmiss_handler_setup_pgd + sizeof(handle_tlbm));
2200#endif
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002201}