blob: 6af62a2fec21ada1d2d8456dbb46167102128440 [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 Daneyaa1762f2012-10-17 00:48:10 +0200161#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -0700162 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 Daneyaa1762f2012-10-17 00:48:10 +0200180#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -0700181UASM_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/*
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200209 * pgtable bits are assigned dynamically depending on processor feature
210 * and statically based on kernel configuration. This spits out the actual
211 * values the kernel is using. Required to make sense from disassembled
212 * TLB exception handlers.
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200213 */
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200214static void output_pgtable_bits_defines(void)
215{
216#define pr_define(fmt, ...) \
217 pr_debug("#define " fmt, ##__VA_ARGS__)
218
219 pr_debug("#include <asm/asm.h>\n");
220 pr_debug("#include <asm/regdef.h>\n");
221 pr_debug("\n");
222
223 pr_define("_PAGE_PRESENT_SHIFT %d\n", _PAGE_PRESENT_SHIFT);
224 pr_define("_PAGE_READ_SHIFT %d\n", _PAGE_READ_SHIFT);
225 pr_define("_PAGE_WRITE_SHIFT %d\n", _PAGE_WRITE_SHIFT);
226 pr_define("_PAGE_ACCESSED_SHIFT %d\n", _PAGE_ACCESSED_SHIFT);
227 pr_define("_PAGE_MODIFIED_SHIFT %d\n", _PAGE_MODIFIED_SHIFT);
Ralf Baechle970d0322012-10-18 13:54:15 +0200228#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200229 pr_define("_PAGE_HUGE_SHIFT %d\n", _PAGE_HUGE_SHIFT);
Ralf Baechle970d0322012-10-18 13:54:15 +0200230 pr_define("_PAGE_SPLITTING_SHIFT %d\n", _PAGE_SPLITTING_SHIFT);
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200231#endif
232 if (cpu_has_rixi) {
233#ifdef _PAGE_NO_EXEC_SHIFT
234 pr_define("_PAGE_NO_EXEC_SHIFT %d\n", _PAGE_NO_EXEC_SHIFT);
235#endif
236#ifdef _PAGE_NO_READ_SHIFT
237 pr_define("_PAGE_NO_READ_SHIFT %d\n", _PAGE_NO_READ_SHIFT);
238#endif
239 }
240 pr_define("_PAGE_GLOBAL_SHIFT %d\n", _PAGE_GLOBAL_SHIFT);
241 pr_define("_PAGE_VALID_SHIFT %d\n", _PAGE_VALID_SHIFT);
242 pr_define("_PAGE_DIRTY_SHIFT %d\n", _PAGE_DIRTY_SHIFT);
243 pr_define("_PFN_SHIFT %d\n", _PFN_SHIFT);
244 pr_debug("\n");
245}
246
247static inline void dump_handler(const char *symbol, const u32 *handler, int count)
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200248{
249 int i;
250
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200251 pr_debug("LEAF(%s)\n", symbol);
252
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200253 pr_debug("\t.set push\n");
254 pr_debug("\t.set noreorder\n");
255
256 for (i = 0; i < count; i++)
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200257 pr_debug("\t.word\t0x%08x\t\t# %p\n", handler[i], &handler[i]);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200258
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200259 pr_debug("\t.set\tpop\n");
260
261 pr_debug("\tEND(%s)\n", symbol);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/* The only general purpose registers allowed in TLB handlers. */
265#define K0 26
266#define K1 27
267
268/* Some CP0 registers */
Ralf Baechle41c594a2006-04-05 09:45:45 +0100269#define C0_INDEX 0, 0
270#define C0_ENTRYLO0 2, 0
271#define C0_TCBIND 2, 2
272#define C0_ENTRYLO1 3, 0
273#define C0_CONTEXT 4, 0
David Daneyfd062c82009-05-27 17:47:44 -0700274#define C0_PAGEMASK 5, 0
Ralf Baechle41c594a2006-04-05 09:45:45 +0100275#define C0_BADVADDR 8, 0
276#define C0_ENTRYHI 10, 0
277#define C0_EPC 14, 0
278#define C0_XCONTEXT 20, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Ralf Baechle875d43e2005-09-03 15:56:16 -0700280#ifdef CONFIG_64BIT
Thiemo Seufere30ec452008-01-28 20:05:38 +0000281# define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_XCONTEXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#else
Thiemo Seufere30ec452008-01-28 20:05:38 +0000283# define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_CONTEXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284#endif
285
286/* The worst case length of the handler is around 18 instructions for
287 * R3000-style TLBs and up to 63 instructions for R4000-style TLBs.
288 * Maximum space available is 32 instructions for R3000 and 64
289 * instructions for R4000.
290 *
291 * We deliberately chose a buffer size of 128, so we won't scribble
292 * over anything important on overflow before we panic.
293 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000294static u32 tlb_handler[128] __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296/* simply assume worst case size for labels and relocs */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000297static struct uasm_label labels[128] __cpuinitdata;
298static struct uasm_reloc relocs[128] __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
David Daney1ec56322010-04-28 12:16:18 -0700300#ifdef CONFIG_64BIT
301static int check_for_high_segbits __cpuinitdata;
302#endif
303
David Daney2c8c53e2010-12-27 18:07:57 -0800304static int check_for_high_segbits __cpuinitdata;
David Daney3d8bfdd2010-12-21 14:19:11 -0800305
306static unsigned int kscratch_used_mask __cpuinitdata;
307
308static int __cpuinit allocate_kscratch(void)
309{
310 int r;
311 unsigned int a = cpu_data[0].kscratch_mask & ~kscratch_used_mask;
312
313 r = ffs(a);
314
315 if (r == 0)
316 return -1;
317
318 r--; /* make it zero based */
319
320 kscratch_used_mask |= (1 << r);
321
322 return r;
323}
324
David Daney2c8c53e2010-12-27 18:07:57 -0800325static int scratch_reg __cpuinitdata;
David Daney3d8bfdd2010-12-21 14:19:11 -0800326static int pgd_reg __cpuinitdata;
David Daney2c8c53e2010-12-27 18:07:57 -0800327enum vmalloc64_mode {not_refill, refill_scratch, refill_noscratch};
David Daney3d8bfdd2010-12-21 14:19:11 -0800328
David Daneybf286072011-07-05 16:34:46 -0700329static struct work_registers __cpuinit build_get_work_registers(u32 **p)
330{
331 struct work_registers r;
332
333 int smp_processor_id_reg;
334 int smp_processor_id_sel;
335 int smp_processor_id_shift;
336
337 if (scratch_reg > 0) {
338 /* Save in CPU local C0_KScratch? */
339 UASM_i_MTC0(p, 1, 31, scratch_reg);
340 r.r1 = K0;
341 r.r2 = K1;
342 r.r3 = 1;
343 return r;
344 }
345
346 if (num_possible_cpus() > 1) {
347#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
348 smp_processor_id_shift = 51;
349 smp_processor_id_reg = 20; /* XContext */
350 smp_processor_id_sel = 0;
351#else
352# ifdef CONFIG_32BIT
353 smp_processor_id_shift = 25;
354 smp_processor_id_reg = 4; /* Context */
355 smp_processor_id_sel = 0;
356# endif
357# ifdef CONFIG_64BIT
358 smp_processor_id_shift = 26;
359 smp_processor_id_reg = 4; /* Context */
360 smp_processor_id_sel = 0;
361# endif
362#endif
363 /* Get smp_processor_id */
364 UASM_i_MFC0(p, K0, smp_processor_id_reg, smp_processor_id_sel);
365 UASM_i_SRL_SAFE(p, K0, K0, smp_processor_id_shift);
366
367 /* handler_reg_save index in K0 */
368 UASM_i_SLL(p, K0, K0, ilog2(sizeof(struct tlb_reg_save)));
369
370 UASM_i_LA(p, K1, (long)&handler_reg_save);
371 UASM_i_ADDU(p, K0, K0, K1);
372 } else {
373 UASM_i_LA(p, K0, (long)&handler_reg_save);
374 }
375 /* K0 now points to save area, save $1 and $2 */
376 UASM_i_SW(p, 1, offsetof(struct tlb_reg_save, a), K0);
377 UASM_i_SW(p, 2, offsetof(struct tlb_reg_save, b), K0);
378
379 r.r1 = K1;
380 r.r2 = 1;
381 r.r3 = 2;
382 return r;
383}
384
385static void __cpuinit build_restore_work_registers(u32 **p)
386{
387 if (scratch_reg > 0) {
388 UASM_i_MFC0(p, 1, 31, scratch_reg);
389 return;
390 }
391 /* K0 already points to save area, restore $1 and $2 */
392 UASM_i_LW(p, 1, offsetof(struct tlb_reg_save, a), K0);
393 UASM_i_LW(p, 2, offsetof(struct tlb_reg_save, b), K0);
394}
395
David Daney2c8c53e2010-12-27 18:07:57 -0800396#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
397
David Daney82622282009-10-14 12:16:56 -0700398/*
399 * CONFIG_MIPS_PGD_C0_CONTEXT implies 64 bit and lack of pgd_current,
400 * we cannot do r3000 under these circumstances.
David Daney3d8bfdd2010-12-21 14:19:11 -0800401 *
402 * Declare pgd_current here instead of including mmu_context.h to avoid type
403 * conflicts for tlbmiss_handler_setup_pgd
David Daney82622282009-10-14 12:16:56 -0700404 */
David Daney3d8bfdd2010-12-21 14:19:11 -0800405extern unsigned long pgd_current[];
David Daney82622282009-10-14 12:16:56 -0700406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407/*
408 * The R3000 TLB handler is simple.
409 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000410static void __cpuinit build_r3000_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 long pgdc = (long)pgd_current;
413 u32 *p;
414
415 memset(tlb_handler, 0, sizeof(tlb_handler));
416 p = tlb_handler;
417
Thiemo Seufere30ec452008-01-28 20:05:38 +0000418 uasm_i_mfc0(&p, K0, C0_BADVADDR);
419 uasm_i_lui(&p, K1, uasm_rel_hi(pgdc)); /* cp0 delay */
420 uasm_i_lw(&p, K1, uasm_rel_lo(pgdc), K1);
421 uasm_i_srl(&p, K0, K0, 22); /* load delay */
422 uasm_i_sll(&p, K0, K0, 2);
423 uasm_i_addu(&p, K1, K1, K0);
424 uasm_i_mfc0(&p, K0, C0_CONTEXT);
425 uasm_i_lw(&p, K1, 0, K1); /* cp0 delay */
426 uasm_i_andi(&p, K0, K0, 0xffc); /* load delay */
427 uasm_i_addu(&p, K1, K1, K0);
428 uasm_i_lw(&p, K0, 0, K1);
429 uasm_i_nop(&p); /* load delay */
430 uasm_i_mtc0(&p, K0, C0_ENTRYLO0);
431 uasm_i_mfc0(&p, K1, C0_EPC); /* cp0 delay */
432 uasm_i_tlbwr(&p); /* cp0 delay */
433 uasm_i_jr(&p, K1);
434 uasm_i_rfe(&p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 if (p > tlb_handler + 32)
437 panic("TLB refill handler space exceeded");
438
Thiemo Seufere30ec452008-01-28 20:05:38 +0000439 pr_debug("Wrote TLB refill handler (%u instructions).\n",
440 (unsigned int)(p - tlb_handler));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Ralf Baechle91b05e62006-03-29 18:53:00 +0100442 memcpy((void *)ebase, tlb_handler, 0x80);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200443
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200444 dump_handler("r3000_tlb_refill", (u32 *)ebase, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
David Daney82622282009-10-14 12:16:56 -0700446#endif /* CONFIG_MIPS_PGD_C0_CONTEXT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448/*
449 * The R4000 TLB handler is much more complicated. We have two
450 * consecutive handler areas with 32 instructions space each.
451 * Since they aren't used at the same time, we can overflow in the
452 * other one.To keep things simple, we first assume linear space,
453 * then we relocate it to the final handler layout as needed.
454 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000455static u32 final_handler[64] __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457/*
458 * Hazards
459 *
460 * From the IDT errata for the QED RM5230 (Nevada), processor revision 1.0:
461 * 2. A timing hazard exists for the TLBP instruction.
462 *
463 * stalling_instruction
464 * TLBP
465 *
466 * The JTLB is being read for the TLBP throughout the stall generated by the
467 * previous instruction. This is not really correct as the stalling instruction
468 * can modify the address used to access the JTLB. The failure symptom is that
469 * the TLBP instruction will use an address created for the stalling instruction
470 * and not the address held in C0_ENHI and thus report the wrong results.
471 *
472 * The software work-around is to not allow the instruction preceding the TLBP
473 * to stall - make it an NOP or some other instruction guaranteed not to stall.
474 *
475 * Errata 2 will not be fixed. This errata is also on the R5000.
476 *
477 * As if we MIPS hackers wouldn't know how to nop pipelines happy ...
478 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000479static void __cpuinit __maybe_unused build_tlb_probe_entry(u32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Ralf Baechle10cc3522007-10-11 23:46:15 +0100481 switch (current_cpu_type()) {
Thomas Bogendoerfer326e2e12008-05-12 13:55:42 +0200482 /* Found by experiment: R4600 v2.0/R4700 needs this, too. */
Thiemo Seuferf5b4d952005-09-09 17:11:50 +0000483 case CPU_R4600:
Thomas Bogendoerfer326e2e12008-05-12 13:55:42 +0200484 case CPU_R4700:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 case CPU_R5000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 case CPU_NEVADA:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000487 uasm_i_nop(p);
488 uasm_i_tlbp(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 break;
490
491 default:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000492 uasm_i_tlbp(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
494 }
495}
496
497/*
498 * Write random or indexed TLB entry, and care about the hazards from
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300499 * the preceding mtc0 and for the following eret.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 */
501enum tlb_write_entry { tlb_random, tlb_indexed };
502
Ralf Baechle234fcd12008-03-08 09:56:28 +0000503static void __cpuinit build_tlb_write_entry(u32 **p, struct uasm_label **l,
Thiemo Seufere30ec452008-01-28 20:05:38 +0000504 struct uasm_reloc **r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 enum tlb_write_entry wmode)
506{
507 void(*tlbw)(u32 **) = NULL;
508
509 switch (wmode) {
Thiemo Seufere30ec452008-01-28 20:05:38 +0000510 case tlb_random: tlbw = uasm_i_tlbwr; break;
511 case tlb_indexed: tlbw = uasm_i_tlbwi; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513
Ralf Baechle161548b2008-01-29 10:14:54 +0000514 if (cpu_has_mips_r2) {
Steven J. Hill625c0a22012-08-28 23:20:08 -0500515 /*
516 * The architecture spec says an ehb is required here,
517 * but a number of cores do not have the hazard and
518 * using an ehb causes an expensive pipeline stall.
519 */
520 switch (current_cpu_type()) {
521 case CPU_M14KC:
522 case CPU_74K:
523 break;
524
525 default:
David Daney41f0e4d2009-05-12 12:41:53 -0700526 uasm_i_ehb(p);
Steven J. Hill625c0a22012-08-28 23:20:08 -0500527 break;
528 }
Ralf Baechle161548b2008-01-29 10:14:54 +0000529 tlbw(p);
530 return;
531 }
532
Ralf Baechle10cc3522007-10-11 23:46:15 +0100533 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 case CPU_R4000PC:
535 case CPU_R4000SC:
536 case CPU_R4000MC:
537 case CPU_R4400PC:
538 case CPU_R4400SC:
539 case CPU_R4400MC:
540 /*
541 * This branch uses up a mtc0 hazard nop slot and saves
542 * two nops after the tlbw instruction.
543 */
Ralf Baechle02a54172012-10-13 22:46:26 +0200544 uasm_bgezl_hazard(p, r, hazard_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 tlbw(p);
Ralf Baechle02a54172012-10-13 22:46:26 +0200546 uasm_bgezl_label(l, p, hazard_instance);
547 hazard_instance++;
Thiemo Seufere30ec452008-01-28 20:05:38 +0000548 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 break;
550
551 case CPU_R4600:
552 case CPU_R4700:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000553 uasm_i_nop(p);
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000554 tlbw(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000555 uasm_i_nop(p);
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000556 break;
557
Ralf Baechle359187d2012-10-16 22:13:06 +0200558 case CPU_R5000:
Ralf Baechle359187d2012-10-16 22:13:06 +0200559 case CPU_NEVADA:
560 uasm_i_nop(p); /* QED specifies 2 nops hazard */
561 uasm_i_nop(p); /* QED specifies 2 nops hazard */
562 tlbw(p);
563 break;
564
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000565 case CPU_R4300:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 case CPU_5KC:
567 case CPU_TX49XX:
Pete Popovbdf21b12005-07-14 17:47:57 +0000568 case CPU_PR4450:
Jayachandran Cefa0f812011-05-07 01:36:21 +0530569 case CPU_XLR:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000570 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 tlbw(p);
572 break;
573
574 case CPU_R10000:
575 case CPU_R12000:
Kumba44d921b2006-05-16 22:23:59 -0400576 case CPU_R14000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 case CPU_4KC:
Thomas Bogendoerferb1ec4c82008-03-26 16:42:54 +0100578 case CPU_4KEC:
Steven J. Hill113c62d2012-07-06 23:56:00 +0200579 case CPU_M14KC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 case CPU_SB1:
Andrew Isaacson93ce2f522005-10-19 23:56:20 -0700581 case CPU_SB1A:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 case CPU_4KSC:
583 case CPU_20KC:
584 case CPU_25KF:
Kevin Cernekee602977b2010-10-16 14:22:30 -0700585 case CPU_BMIPS32:
586 case CPU_BMIPS3300:
587 case CPU_BMIPS4350:
588 case CPU_BMIPS4380:
589 case CPU_BMIPS5000:
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800590 case CPU_LOONGSON2:
Shinya Kuribayashia644b272009-03-03 18:05:51 +0900591 case CPU_R5500:
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +0100592 if (m4kc_tlbp_war())
Thiemo Seufere30ec452008-01-28 20:05:38 +0000593 uasm_i_nop(p);
Manuel Lauss2f794d02009-03-25 17:49:30 +0100594 case CPU_ALCHEMY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 tlbw(p);
596 break;
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 case CPU_RM7000:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000599 uasm_i_nop(p);
600 uasm_i_nop(p);
601 uasm_i_nop(p);
602 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 tlbw(p);
604 break;
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 case CPU_RM9000:
607 /*
608 * When the JTLB is updated by tlbwi or tlbwr, a subsequent
609 * use of the JTLB for instructions should not occur for 4
610 * cpu cycles and use for data translations should not occur
611 * for 3 cpu cycles.
612 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000613 uasm_i_ssnop(p);
614 uasm_i_ssnop(p);
615 uasm_i_ssnop(p);
616 uasm_i_ssnop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 tlbw(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000618 uasm_i_ssnop(p);
619 uasm_i_ssnop(p);
620 uasm_i_ssnop(p);
621 uasm_i_ssnop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 break;
623
624 case CPU_VR4111:
625 case CPU_VR4121:
626 case CPU_VR4122:
627 case CPU_VR4181:
628 case CPU_VR4181A:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000629 uasm_i_nop(p);
630 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 tlbw(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000632 uasm_i_nop(p);
633 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 break;
635
636 case CPU_VR4131:
637 case CPU_VR4133:
Ralf Baechle7623deb2005-08-29 16:49:55 +0000638 case CPU_R5432:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000639 uasm_i_nop(p);
640 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 tlbw(p);
642 break;
643
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +0000644 case CPU_JZRISC:
645 tlbw(p);
646 uasm_i_nop(p);
647 break;
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 default:
650 panic("No TLB refill handler yet (CPU type: %d)",
651 current_cpu_data.cputype);
652 break;
653 }
654}
655
David Daney6dd93442010-02-10 15:12:47 -0800656static __cpuinit __maybe_unused void build_convert_pte_to_entrylo(u32 **p,
657 unsigned int reg)
658{
Steven J. Hill05857c62012-09-13 16:51:46 -0500659 if (cpu_has_rixi) {
David Daney748e7872012-08-23 10:02:03 -0700660 UASM_i_ROTR(p, reg, reg, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -0800661 } else {
662#ifdef CONFIG_64BIT_PHYS_ADDR
David Daney3be60222010-04-28 12:16:17 -0700663 uasm_i_dsrl_safe(p, reg, reg, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -0800664#else
665 UASM_i_SRL(p, reg, reg, ilog2(_PAGE_GLOBAL));
666#endif
667 }
668}
669
David Daneyaa1762f2012-10-17 00:48:10 +0200670#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daney6dd93442010-02-10 15:12:47 -0800671
672static __cpuinit void build_restore_pagemask(u32 **p,
673 struct uasm_reloc **r,
674 unsigned int tmp,
David Daney2c8c53e2010-12-27 18:07:57 -0800675 enum label_id lid,
676 int restore_scratch)
David Daney6dd93442010-02-10 15:12:47 -0800677{
David Daney2c8c53e2010-12-27 18:07:57 -0800678 if (restore_scratch) {
679 /* Reset default page size */
680 if (PM_DEFAULT_MASK >> 16) {
681 uasm_i_lui(p, tmp, PM_DEFAULT_MASK >> 16);
682 uasm_i_ori(p, tmp, tmp, PM_DEFAULT_MASK & 0xffff);
683 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
684 uasm_il_b(p, r, lid);
685 } else if (PM_DEFAULT_MASK) {
686 uasm_i_ori(p, tmp, 0, PM_DEFAULT_MASK);
687 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
688 uasm_il_b(p, r, lid);
689 } else {
690 uasm_i_mtc0(p, 0, C0_PAGEMASK);
691 uasm_il_b(p, r, lid);
692 }
693 if (scratch_reg > 0)
694 UASM_i_MFC0(p, 1, 31, scratch_reg);
695 else
696 UASM_i_LW(p, 1, scratchpad_offset(0), 0);
David Daney6dd93442010-02-10 15:12:47 -0800697 } else {
David Daney2c8c53e2010-12-27 18:07:57 -0800698 /* Reset default page size */
699 if (PM_DEFAULT_MASK >> 16) {
700 uasm_i_lui(p, tmp, PM_DEFAULT_MASK >> 16);
701 uasm_i_ori(p, tmp, tmp, PM_DEFAULT_MASK & 0xffff);
702 uasm_il_b(p, r, lid);
703 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
704 } else if (PM_DEFAULT_MASK) {
705 uasm_i_ori(p, tmp, 0, PM_DEFAULT_MASK);
706 uasm_il_b(p, r, lid);
707 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
708 } else {
709 uasm_il_b(p, r, lid);
710 uasm_i_mtc0(p, 0, C0_PAGEMASK);
711 }
David Daney6dd93442010-02-10 15:12:47 -0800712 }
713}
714
David Daneyfd062c82009-05-27 17:47:44 -0700715static __cpuinit void build_huge_tlb_write_entry(u32 **p,
716 struct uasm_label **l,
717 struct uasm_reloc **r,
718 unsigned int tmp,
David Daney2c8c53e2010-12-27 18:07:57 -0800719 enum tlb_write_entry wmode,
720 int restore_scratch)
David Daneyfd062c82009-05-27 17:47:44 -0700721{
722 /* Set huge page tlb entry size */
723 uasm_i_lui(p, tmp, PM_HUGE_MASK >> 16);
724 uasm_i_ori(p, tmp, tmp, PM_HUGE_MASK & 0xffff);
725 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
726
727 build_tlb_write_entry(p, l, r, wmode);
728
David Daney2c8c53e2010-12-27 18:07:57 -0800729 build_restore_pagemask(p, r, tmp, label_leave, restore_scratch);
David Daneyfd062c82009-05-27 17:47:44 -0700730}
731
732/*
733 * Check if Huge PTE is present, if so then jump to LABEL.
734 */
735static void __cpuinit
736build_is_huge_pte(u32 **p, struct uasm_reloc **r, unsigned int tmp,
737 unsigned int pmd, int lid)
738{
739 UASM_i_LW(p, tmp, 0, pmd);
David Daneycc33ae42010-12-20 15:54:50 -0800740 if (use_bbit_insns()) {
741 uasm_il_bbit1(p, r, tmp, ilog2(_PAGE_HUGE), lid);
742 } else {
743 uasm_i_andi(p, tmp, tmp, _PAGE_HUGE);
744 uasm_il_bnez(p, r, tmp, lid);
745 }
David Daneyfd062c82009-05-27 17:47:44 -0700746}
747
748static __cpuinit void build_huge_update_entries(u32 **p,
749 unsigned int pte,
750 unsigned int tmp)
751{
752 int small_sequence;
753
754 /*
755 * A huge PTE describes an area the size of the
756 * configured huge page size. This is twice the
757 * of the large TLB entry size we intend to use.
758 * A TLB entry half the size of the configured
759 * huge page size is configured into entrylo0
760 * and entrylo1 to cover the contiguous huge PTE
761 * address space.
762 */
763 small_sequence = (HPAGE_SIZE >> 7) < 0x10000;
764
765 /* We can clobber tmp. It isn't used after this.*/
766 if (!small_sequence)
767 uasm_i_lui(p, tmp, HPAGE_SIZE >> (7 + 16));
768
David Daney6dd93442010-02-10 15:12:47 -0800769 build_convert_pte_to_entrylo(p, pte);
David Daney9b8c3892010-02-10 15:12:44 -0800770 UASM_i_MTC0(p, pte, C0_ENTRYLO0); /* load it */
David Daneyfd062c82009-05-27 17:47:44 -0700771 /* convert to entrylo1 */
772 if (small_sequence)
773 UASM_i_ADDIU(p, pte, pte, HPAGE_SIZE >> 7);
774 else
775 UASM_i_ADDU(p, pte, pte, tmp);
776
David Daney9b8c3892010-02-10 15:12:44 -0800777 UASM_i_MTC0(p, pte, C0_ENTRYLO1); /* load it */
David Daneyfd062c82009-05-27 17:47:44 -0700778}
779
780static __cpuinit void build_huge_handler_tail(u32 **p,
781 struct uasm_reloc **r,
782 struct uasm_label **l,
783 unsigned int pte,
784 unsigned int ptr)
785{
786#ifdef CONFIG_SMP
787 UASM_i_SC(p, pte, 0, ptr);
788 uasm_il_beqz(p, r, pte, label_tlb_huge_update);
789 UASM_i_LW(p, pte, 0, ptr); /* Needed because SC killed our PTE */
790#else
791 UASM_i_SW(p, pte, 0, ptr);
792#endif
793 build_huge_update_entries(p, pte, ptr);
David Daney2c8c53e2010-12-27 18:07:57 -0800794 build_huge_tlb_write_entry(p, l, r, pte, tlb_indexed, 0);
David Daneyfd062c82009-05-27 17:47:44 -0700795}
David Daneyaa1762f2012-10-17 00:48:10 +0200796#endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */
David Daneyfd062c82009-05-27 17:47:44 -0700797
Ralf Baechle875d43e2005-09-03 15:56:16 -0700798#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799/*
800 * TMP and PTR are scratch.
801 * TMP will be clobbered, PTR will hold the pmd entry.
802 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000803static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +0000804build_get_pmde64(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 unsigned int tmp, unsigned int ptr)
806{
David Daney82622282009-10-14 12:16:56 -0700807#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 long pgdc = (long)pgd_current;
David Daney82622282009-10-14 12:16:56 -0700809#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 /*
811 * The vmalloc handling is not in the hotpath.
812 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000813 uasm_i_dmfc0(p, tmp, C0_BADVADDR);
David Daney1ec56322010-04-28 12:16:18 -0700814
815 if (check_for_high_segbits) {
816 /*
817 * The kernel currently implicitely assumes that the
818 * MIPS SEGBITS parameter for the processor is
819 * (PGDIR_SHIFT+PGDIR_BITS) or less, and will never
820 * allocate virtual addresses outside the maximum
821 * range for SEGBITS = (PGDIR_SHIFT+PGDIR_BITS). But
822 * that doesn't prevent user code from accessing the
823 * higher xuseg addresses. Here, we make sure that
824 * everything but the lower xuseg addresses goes down
825 * the module_alloc/vmalloc path.
826 */
827 uasm_i_dsrl_safe(p, ptr, tmp, PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
828 uasm_il_bnez(p, r, ptr, label_vmalloc);
829 } else {
830 uasm_il_bltz(p, r, tmp, label_vmalloc);
831 }
Thiemo Seufere30ec452008-01-28 20:05:38 +0000832 /* No uasm_i_nop needed here, since the next insn doesn't touch TMP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
David Daney82622282009-10-14 12:16:56 -0700834#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
David Daney3d8bfdd2010-12-21 14:19:11 -0800835 if (pgd_reg != -1) {
836 /* pgd is in pgd_reg */
837 UASM_i_MFC0(p, ptr, 31, pgd_reg);
838 } else {
839 /*
840 * &pgd << 11 stored in CONTEXT [23..63].
841 */
842 UASM_i_MFC0(p, ptr, C0_CONTEXT);
843
844 /* Clear lower 23 bits of context. */
845 uasm_i_dins(p, ptr, 0, 0, 23);
846
847 /* 1 0 1 0 1 << 6 xkphys cached */
848 uasm_i_ori(p, ptr, ptr, 0x540);
849 uasm_i_drotr(p, ptr, ptr, 11);
850 }
David Daney82622282009-10-14 12:16:56 -0700851#elif defined(CONFIG_SMP)
Ralf Baechle41c594a2006-04-05 09:45:45 +0100852# ifdef CONFIG_MIPS_MT_SMTC
853 /*
854 * SMTC uses TCBind value as "CPU" index
855 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000856 uasm_i_mfc0(p, ptr, C0_TCBIND);
David Daney3be60222010-04-28 12:16:17 -0700857 uasm_i_dsrl_safe(p, ptr, ptr, 19);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100858# else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 /*
Thiemo Seufer1b3a6e92005-04-01 14:07:13 +0000860 * 64 bit SMP running in XKPHYS has smp_processor_id() << 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 * stored in CONTEXT.
862 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000863 uasm_i_dmfc0(p, ptr, C0_CONTEXT);
David Daney3be60222010-04-28 12:16:17 -0700864 uasm_i_dsrl_safe(p, ptr, ptr, 23);
David Daney82622282009-10-14 12:16:56 -0700865# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +0000866 UASM_i_LA_mostly(p, tmp, pgdc);
867 uasm_i_daddu(p, ptr, ptr, tmp);
868 uasm_i_dmfc0(p, tmp, C0_BADVADDR);
869 uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870#else
Thiemo Seufere30ec452008-01-28 20:05:38 +0000871 UASM_i_LA_mostly(p, ptr, pgdc);
872 uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873#endif
874
Thiemo Seufere30ec452008-01-28 20:05:38 +0000875 uasm_l_vmalloc_done(l, *p);
Ralf Baechle242954b2006-10-24 02:29:01 +0100876
David Daney3be60222010-04-28 12:16:17 -0700877 /* get pgd offset in bytes */
878 uasm_i_dsrl_safe(p, tmp, tmp, PGDIR_SHIFT - 3);
Ralf Baechle242954b2006-10-24 02:29:01 +0100879
Thiemo Seufere30ec452008-01-28 20:05:38 +0000880 uasm_i_andi(p, tmp, tmp, (PTRS_PER_PGD - 1)<<3);
881 uasm_i_daddu(p, ptr, ptr, tmp); /* add in pgd offset */
David Daney325f8a02009-12-04 13:52:36 -0800882#ifndef __PAGETABLE_PMD_FOLDED
Thiemo Seufere30ec452008-01-28 20:05:38 +0000883 uasm_i_dmfc0(p, tmp, C0_BADVADDR); /* get faulting address */
884 uasm_i_ld(p, ptr, 0, ptr); /* get pmd pointer */
David Daney3be60222010-04-28 12:16:17 -0700885 uasm_i_dsrl_safe(p, tmp, tmp, PMD_SHIFT-3); /* get pmd offset in bytes */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000886 uasm_i_andi(p, tmp, tmp, (PTRS_PER_PMD - 1)<<3);
887 uasm_i_daddu(p, ptr, ptr, tmp); /* add in pmd offset */
David Daney325f8a02009-12-04 13:52:36 -0800888#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
891/*
892 * BVADDR is the faulting address, PTR is scratch.
893 * PTR will hold the pgd for vmalloc.
894 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000895static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +0000896build_get_pgd_vmalloc64(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
David Daney1ec56322010-04-28 12:16:18 -0700897 unsigned int bvaddr, unsigned int ptr,
898 enum vmalloc64_mode mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 long swpd = (long)swapper_pg_dir;
David Daney1ec56322010-04-28 12:16:18 -0700901 int single_insn_swpd;
902 int did_vmalloc_branch = 0;
903
904 single_insn_swpd = uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Thiemo Seufere30ec452008-01-28 20:05:38 +0000906 uasm_l_vmalloc(l, *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
David Daney2c8c53e2010-12-27 18:07:57 -0800908 if (mode != not_refill && check_for_high_segbits) {
David Daney1ec56322010-04-28 12:16:18 -0700909 if (single_insn_swpd) {
910 uasm_il_bltz(p, r, bvaddr, label_vmalloc_done);
911 uasm_i_lui(p, ptr, uasm_rel_hi(swpd));
912 did_vmalloc_branch = 1;
913 /* fall through */
914 } else {
915 uasm_il_bgez(p, r, bvaddr, label_large_segbits_fault);
916 }
917 }
918 if (!did_vmalloc_branch) {
919 if (uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd)) {
920 uasm_il_b(p, r, label_vmalloc_done);
921 uasm_i_lui(p, ptr, uasm_rel_hi(swpd));
922 } else {
923 UASM_i_LA_mostly(p, ptr, swpd);
924 uasm_il_b(p, r, label_vmalloc_done);
925 if (uasm_in_compat_space_p(swpd))
926 uasm_i_addiu(p, ptr, ptr, uasm_rel_lo(swpd));
927 else
928 uasm_i_daddiu(p, ptr, ptr, uasm_rel_lo(swpd));
929 }
930 }
David Daney2c8c53e2010-12-27 18:07:57 -0800931 if (mode != not_refill && check_for_high_segbits) {
David Daney1ec56322010-04-28 12:16:18 -0700932 uasm_l_large_segbits_fault(l, *p);
933 /*
934 * We get here if we are an xsseg address, or if we are
935 * an xuseg address above (PGDIR_SHIFT+PGDIR_BITS) boundary.
936 *
937 * Ignoring xsseg (assume disabled so would generate
938 * (address errors?), the only remaining possibility
939 * is the upper xuseg addresses. On processors with
940 * TLB_SEGBITS <= PGDIR_SHIFT+PGDIR_BITS, these
941 * addresses would have taken an address error. We try
942 * to mimic that here by taking a load/istream page
943 * fault.
944 */
945 UASM_i_LA(p, ptr, (unsigned long)tlb_do_page_fault_0);
946 uasm_i_jr(p, ptr);
David Daney2c8c53e2010-12-27 18:07:57 -0800947
948 if (mode == refill_scratch) {
949 if (scratch_reg > 0)
950 UASM_i_MFC0(p, 1, 31, scratch_reg);
951 else
952 UASM_i_LW(p, 1, scratchpad_offset(0), 0);
953 } else {
954 uasm_i_nop(p);
955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957}
958
Ralf Baechle875d43e2005-09-03 15:56:16 -0700959#else /* !CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961/*
962 * TMP and PTR are scratch.
963 * TMP will be clobbered, PTR will hold the pgd entry.
964 */
Ralf Baechle234fcd12008-03-08 09:56:28 +0000965static void __cpuinit __maybe_unused
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr)
967{
968 long pgdc = (long)pgd_current;
969
970 /* 32 bit SMP has smp_processor_id() stored in CONTEXT. */
971#ifdef CONFIG_SMP
Ralf Baechle41c594a2006-04-05 09:45:45 +0100972#ifdef CONFIG_MIPS_MT_SMTC
973 /*
974 * SMTC uses TCBind value as "CPU" index
975 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000976 uasm_i_mfc0(p, ptr, C0_TCBIND);
977 UASM_i_LA_mostly(p, tmp, pgdc);
978 uasm_i_srl(p, ptr, ptr, 19);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100979#else
980 /*
981 * smp_processor_id() << 3 is stored in CONTEXT.
982 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000983 uasm_i_mfc0(p, ptr, C0_CONTEXT);
984 UASM_i_LA_mostly(p, tmp, pgdc);
985 uasm_i_srl(p, ptr, ptr, 23);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100986#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +0000987 uasm_i_addu(p, ptr, tmp, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988#else
Thiemo Seufere30ec452008-01-28 20:05:38 +0000989 UASM_i_LA_mostly(p, ptr, pgdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +0000991 uasm_i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */
992 uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr);
Steven J. Hillff401e522012-08-28 23:20:39 -0500993
994 if (cpu_has_mips_r2) {
995 uasm_i_ext(p, tmp, tmp, PGDIR_SHIFT, (32 - PGDIR_SHIFT));
996 uasm_i_ins(p, ptr, tmp, PGD_T_LOG2, (32 - PGDIR_SHIFT));
997 return;
998 }
999
Thiemo Seufere30ec452008-01-28 20:05:38 +00001000 uasm_i_srl(p, tmp, tmp, PGDIR_SHIFT); /* get pgd only bits */
1001 uasm_i_sll(p, tmp, tmp, PGD_T_LOG2);
1002 uasm_i_addu(p, ptr, ptr, tmp); /* add in pgd offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Ralf Baechle875d43e2005-09-03 15:56:16 -07001005#endif /* !CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Ralf Baechle234fcd12008-03-08 09:56:28 +00001007static void __cpuinit build_adjust_context(u32 **p, unsigned int ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Ralf Baechle242954b2006-10-24 02:29:01 +01001009 unsigned int shift = 4 - (PTE_T_LOG2 + 1) + PAGE_SHIFT - 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 unsigned int mask = (PTRS_PER_PTE / 2 - 1) << (PTE_T_LOG2 + 1);
1011
Ralf Baechle10cc3522007-10-11 23:46:15 +01001012 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 case CPU_VR41XX:
1014 case CPU_VR4111:
1015 case CPU_VR4121:
1016 case CPU_VR4122:
1017 case CPU_VR4131:
1018 case CPU_VR4181:
1019 case CPU_VR4181A:
1020 case CPU_VR4133:
1021 shift += 2;
1022 break;
1023
1024 default:
1025 break;
1026 }
1027
1028 if (shift)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001029 UASM_i_SRL(p, ctx, ctx, shift);
1030 uasm_i_andi(p, ctx, ctx, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
Ralf Baechle234fcd12008-03-08 09:56:28 +00001033static void __cpuinit build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Steven J. Hillff401e522012-08-28 23:20:39 -05001035 if (cpu_has_mips_r2) {
1036 /* PTE ptr offset is obtained from BadVAddr */
1037 UASM_i_MFC0(p, tmp, C0_BADVADDR);
1038 UASM_i_LW(p, ptr, 0, ptr);
1039 uasm_i_ext(p, tmp, tmp, PAGE_SHIFT+1, PGDIR_SHIFT-PAGE_SHIFT-1);
1040 uasm_i_ins(p, ptr, tmp, PTE_T_LOG2+1, PGDIR_SHIFT-PAGE_SHIFT-1);
1041 return;
1042 }
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 /*
1045 * Bug workaround for the Nevada. It seems as if under certain
1046 * circumstances the move from cp0_context might produce a
1047 * bogus result when the mfc0 instruction and its consumer are
1048 * in a different cacheline or a load instruction, probably any
1049 * memory reference, is between them.
1050 */
Ralf Baechle10cc3522007-10-11 23:46:15 +01001051 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 case CPU_NEVADA:
Thiemo Seufere30ec452008-01-28 20:05:38 +00001053 UASM_i_LW(p, ptr, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 GET_CONTEXT(p, tmp); /* get context reg */
1055 break;
1056
1057 default:
1058 GET_CONTEXT(p, tmp); /* get context reg */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001059 UASM_i_LW(p, ptr, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 break;
1061 }
1062
1063 build_adjust_context(p, tmp);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001064 UASM_i_ADDU(p, ptr, ptr, tmp); /* add in offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
Ralf Baechle234fcd12008-03-08 09:56:28 +00001067static void __cpuinit build_update_entries(u32 **p, unsigned int tmp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 unsigned int ptep)
1069{
1070 /*
1071 * 64bit address support (36bit on a 32bit CPU) in a 32bit
1072 * Kernel is a special case. Only a few CPUs use it.
1073 */
1074#ifdef CONFIG_64BIT_PHYS_ADDR
1075 if (cpu_has_64bits) {
Thiemo Seufere30ec452008-01-28 20:05:38 +00001076 uasm_i_ld(p, tmp, 0, ptep); /* get even pte */
1077 uasm_i_ld(p, ptep, sizeof(pte_t), ptep); /* get odd pte */
Steven J. Hill05857c62012-09-13 16:51:46 -05001078 if (cpu_has_rixi) {
David Daney748e7872012-08-23 10:02:03 -07001079 UASM_i_ROTR(p, tmp, tmp, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -08001080 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
David Daney748e7872012-08-23 10:02:03 -07001081 UASM_i_ROTR(p, ptep, ptep, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -08001082 } else {
David Daney3be60222010-04-28 12:16:17 -07001083 uasm_i_dsrl_safe(p, tmp, tmp, ilog2(_PAGE_GLOBAL)); /* convert to entrylo0 */
David Daney6dd93442010-02-10 15:12:47 -08001084 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
David Daney3be60222010-04-28 12:16:17 -07001085 uasm_i_dsrl_safe(p, ptep, ptep, ilog2(_PAGE_GLOBAL)); /* convert to entrylo1 */
David Daney6dd93442010-02-10 15:12:47 -08001086 }
David Daney9b8c3892010-02-10 15:12:44 -08001087 UASM_i_MTC0(p, ptep, C0_ENTRYLO1); /* load it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 } else {
1089 int pte_off_even = sizeof(pte_t) / 2;
1090 int pte_off_odd = pte_off_even + sizeof(pte_t);
1091
1092 /* The pte entries are pre-shifted */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001093 uasm_i_lw(p, tmp, pte_off_even, ptep); /* get even pte */
David Daney9b8c3892010-02-10 15:12:44 -08001094 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001095 uasm_i_lw(p, ptep, pte_off_odd, ptep); /* get odd pte */
David Daney9b8c3892010-02-10 15:12:44 -08001096 UASM_i_MTC0(p, ptep, C0_ENTRYLO1); /* load it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098#else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001099 UASM_i_LW(p, tmp, 0, ptep); /* get even pte */
1100 UASM_i_LW(p, ptep, sizeof(pte_t), ptep); /* get odd pte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if (r45k_bvahwbug())
1102 build_tlb_probe_entry(p);
Steven J. Hill05857c62012-09-13 16:51:46 -05001103 if (cpu_has_rixi) {
David Daney748e7872012-08-23 10:02:03 -07001104 UASM_i_ROTR(p, tmp, tmp, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -08001105 if (r4k_250MHZhwbug())
1106 UASM_i_MTC0(p, 0, C0_ENTRYLO0);
1107 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
David Daney748e7872012-08-23 10:02:03 -07001108 UASM_i_ROTR(p, ptep, ptep, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -08001109 } else {
1110 UASM_i_SRL(p, tmp, tmp, ilog2(_PAGE_GLOBAL)); /* convert to entrylo0 */
1111 if (r4k_250MHZhwbug())
1112 UASM_i_MTC0(p, 0, C0_ENTRYLO0);
1113 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
1114 UASM_i_SRL(p, ptep, ptep, ilog2(_PAGE_GLOBAL)); /* convert to entrylo1 */
1115 if (r45k_bvahwbug())
1116 uasm_i_mfc0(p, tmp, C0_INDEX);
1117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (r4k_250MHZhwbug())
David Daney9b8c3892010-02-10 15:12:44 -08001119 UASM_i_MTC0(p, 0, C0_ENTRYLO1);
1120 UASM_i_MTC0(p, ptep, C0_ENTRYLO1); /* load it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121#endif
1122}
1123
David Daney2c8c53e2010-12-27 18:07:57 -08001124struct mips_huge_tlb_info {
1125 int huge_pte;
1126 int restore_scratch;
1127};
1128
1129static struct mips_huge_tlb_info __cpuinit
1130build_fast_tlb_refill_handler (u32 **p, struct uasm_label **l,
1131 struct uasm_reloc **r, unsigned int tmp,
1132 unsigned int ptr, int c0_scratch)
1133{
1134 struct mips_huge_tlb_info rv;
1135 unsigned int even, odd;
1136 int vmalloc_branch_delay_filled = 0;
1137 const int scratch = 1; /* Our extra working register */
1138
1139 rv.huge_pte = scratch;
1140 rv.restore_scratch = 0;
1141
1142 if (check_for_high_segbits) {
1143 UASM_i_MFC0(p, tmp, C0_BADVADDR);
1144
1145 if (pgd_reg != -1)
1146 UASM_i_MFC0(p, ptr, 31, pgd_reg);
1147 else
1148 UASM_i_MFC0(p, ptr, C0_CONTEXT);
1149
1150 if (c0_scratch >= 0)
1151 UASM_i_MTC0(p, scratch, 31, c0_scratch);
1152 else
1153 UASM_i_SW(p, scratch, scratchpad_offset(0), 0);
1154
1155 uasm_i_dsrl_safe(p, scratch, tmp,
1156 PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
1157 uasm_il_bnez(p, r, scratch, label_vmalloc);
1158
1159 if (pgd_reg == -1) {
1160 vmalloc_branch_delay_filled = 1;
1161 /* Clear lower 23 bits of context. */
1162 uasm_i_dins(p, ptr, 0, 0, 23);
1163 }
1164 } else {
1165 if (pgd_reg != -1)
1166 UASM_i_MFC0(p, ptr, 31, pgd_reg);
1167 else
1168 UASM_i_MFC0(p, ptr, C0_CONTEXT);
1169
1170 UASM_i_MFC0(p, tmp, C0_BADVADDR);
1171
1172 if (c0_scratch >= 0)
1173 UASM_i_MTC0(p, scratch, 31, c0_scratch);
1174 else
1175 UASM_i_SW(p, scratch, scratchpad_offset(0), 0);
1176
1177 if (pgd_reg == -1)
1178 /* Clear lower 23 bits of context. */
1179 uasm_i_dins(p, ptr, 0, 0, 23);
1180
1181 uasm_il_bltz(p, r, tmp, label_vmalloc);
1182 }
1183
1184 if (pgd_reg == -1) {
1185 vmalloc_branch_delay_filled = 1;
1186 /* 1 0 1 0 1 << 6 xkphys cached */
1187 uasm_i_ori(p, ptr, ptr, 0x540);
1188 uasm_i_drotr(p, ptr, ptr, 11);
1189 }
1190
1191#ifdef __PAGETABLE_PMD_FOLDED
1192#define LOC_PTEP scratch
1193#else
1194#define LOC_PTEP ptr
1195#endif
1196
1197 if (!vmalloc_branch_delay_filled)
1198 /* get pgd offset in bytes */
1199 uasm_i_dsrl_safe(p, scratch, tmp, PGDIR_SHIFT - 3);
1200
1201 uasm_l_vmalloc_done(l, *p);
1202
1203 /*
1204 * tmp ptr
1205 * fall-through case = badvaddr *pgd_current
1206 * vmalloc case = badvaddr swapper_pg_dir
1207 */
1208
1209 if (vmalloc_branch_delay_filled)
1210 /* get pgd offset in bytes */
1211 uasm_i_dsrl_safe(p, scratch, tmp, PGDIR_SHIFT - 3);
1212
1213#ifdef __PAGETABLE_PMD_FOLDED
1214 GET_CONTEXT(p, tmp); /* get context reg */
1215#endif
1216 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PGD - 1) << 3);
1217
1218 if (use_lwx_insns()) {
1219 UASM_i_LWX(p, LOC_PTEP, scratch, ptr);
1220 } else {
1221 uasm_i_daddu(p, ptr, ptr, scratch); /* add in pgd offset */
1222 uasm_i_ld(p, LOC_PTEP, 0, ptr); /* get pmd pointer */
1223 }
1224
1225#ifndef __PAGETABLE_PMD_FOLDED
1226 /* get pmd offset in bytes */
1227 uasm_i_dsrl_safe(p, scratch, tmp, PMD_SHIFT - 3);
1228 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PMD - 1) << 3);
1229 GET_CONTEXT(p, tmp); /* get context reg */
1230
1231 if (use_lwx_insns()) {
1232 UASM_i_LWX(p, scratch, scratch, ptr);
1233 } else {
1234 uasm_i_daddu(p, ptr, ptr, scratch); /* add in pmd offset */
1235 UASM_i_LW(p, scratch, 0, ptr);
1236 }
1237#endif
1238 /* Adjust the context during the load latency. */
1239 build_adjust_context(p, tmp);
1240
David Daneyaa1762f2012-10-17 00:48:10 +02001241#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daney2c8c53e2010-12-27 18:07:57 -08001242 uasm_il_bbit1(p, r, scratch, ilog2(_PAGE_HUGE), label_tlb_huge_update);
1243 /*
1244 * The in the LWX case we don't want to do the load in the
1245 * delay slot. It cannot issue in the same cycle and may be
1246 * speculative and unneeded.
1247 */
1248 if (use_lwx_insns())
1249 uasm_i_nop(p);
David Daneyaa1762f2012-10-17 00:48:10 +02001250#endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */
David Daney2c8c53e2010-12-27 18:07:57 -08001251
1252
1253 /* build_update_entries */
1254 if (use_lwx_insns()) {
1255 even = ptr;
1256 odd = tmp;
1257 UASM_i_LWX(p, even, scratch, tmp);
1258 UASM_i_ADDIU(p, tmp, tmp, sizeof(pte_t));
1259 UASM_i_LWX(p, odd, scratch, tmp);
1260 } else {
1261 UASM_i_ADDU(p, ptr, scratch, tmp); /* add in offset */
1262 even = tmp;
1263 odd = ptr;
1264 UASM_i_LW(p, even, 0, ptr); /* get even pte */
1265 UASM_i_LW(p, odd, sizeof(pte_t), ptr); /* get odd pte */
1266 }
Steven J. Hill05857c62012-09-13 16:51:46 -05001267 if (cpu_has_rixi) {
David Daney748e7872012-08-23 10:02:03 -07001268 uasm_i_drotr(p, even, even, ilog2(_PAGE_GLOBAL));
David Daney2c8c53e2010-12-27 18:07:57 -08001269 UASM_i_MTC0(p, even, C0_ENTRYLO0); /* load it */
David Daney748e7872012-08-23 10:02:03 -07001270 uasm_i_drotr(p, odd, odd, ilog2(_PAGE_GLOBAL));
David Daney2c8c53e2010-12-27 18:07:57 -08001271 } else {
1272 uasm_i_dsrl_safe(p, even, even, ilog2(_PAGE_GLOBAL));
1273 UASM_i_MTC0(p, even, C0_ENTRYLO0); /* load it */
1274 uasm_i_dsrl_safe(p, odd, odd, ilog2(_PAGE_GLOBAL));
1275 }
1276 UASM_i_MTC0(p, odd, C0_ENTRYLO1); /* load it */
1277
1278 if (c0_scratch >= 0) {
1279 UASM_i_MFC0(p, scratch, 31, c0_scratch);
1280 build_tlb_write_entry(p, l, r, tlb_random);
1281 uasm_l_leave(l, *p);
1282 rv.restore_scratch = 1;
1283 } else if (PAGE_SHIFT == 14 || PAGE_SHIFT == 13) {
1284 build_tlb_write_entry(p, l, r, tlb_random);
1285 uasm_l_leave(l, *p);
1286 UASM_i_LW(p, scratch, scratchpad_offset(0), 0);
1287 } else {
1288 UASM_i_LW(p, scratch, scratchpad_offset(0), 0);
1289 build_tlb_write_entry(p, l, r, tlb_random);
1290 uasm_l_leave(l, *p);
1291 rv.restore_scratch = 1;
1292 }
1293
1294 uasm_i_eret(p); /* return from trap */
1295
1296 return rv;
1297}
1298
David Daneye6f72d32009-05-20 11:40:58 -07001299/*
1300 * For a 64-bit kernel, we are using the 64-bit XTLB refill exception
1301 * because EXL == 0. If we wrap, we can also use the 32 instruction
1302 * slots before the XTLB refill exception handler which belong to the
1303 * unused TLB refill exception.
1304 */
1305#define MIPS64_REFILL_INSNS 32
1306
Ralf Baechle234fcd12008-03-08 09:56:28 +00001307static void __cpuinit build_r4000_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
1309 u32 *p = tlb_handler;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001310 struct uasm_label *l = labels;
1311 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 u32 *f;
1313 unsigned int final_len;
Ralf Baechle4a9040f2011-03-29 10:54:54 +02001314 struct mips_huge_tlb_info htlb_info __maybe_unused;
1315 enum vmalloc64_mode vmalloc_mode __maybe_unused;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 memset(tlb_handler, 0, sizeof(tlb_handler));
1318 memset(labels, 0, sizeof(labels));
1319 memset(relocs, 0, sizeof(relocs));
1320 memset(final_handler, 0, sizeof(final_handler));
1321
David Daney2c8c53e2010-12-27 18:07:57 -08001322 if ((scratch_reg > 0 || scratchpad_available()) && use_bbit_insns()) {
1323 htlb_info = build_fast_tlb_refill_handler(&p, &l, &r, K0, K1,
1324 scratch_reg);
1325 vmalloc_mode = refill_scratch;
1326 } else {
1327 htlb_info.huge_pte = K0;
1328 htlb_info.restore_scratch = 0;
1329 vmalloc_mode = refill_noscratch;
1330 /*
1331 * create the plain linear handler
1332 */
1333 if (bcm1250_m3_war()) {
1334 unsigned int segbits = 44;
1335
1336 uasm_i_dmfc0(&p, K0, C0_BADVADDR);
1337 uasm_i_dmfc0(&p, K1, C0_ENTRYHI);
1338 uasm_i_xor(&p, K0, K0, K1);
1339 uasm_i_dsrl_safe(&p, K1, K0, 62);
1340 uasm_i_dsrl_safe(&p, K0, K0, 12 + 1);
1341 uasm_i_dsll_safe(&p, K0, K0, 64 + 12 + 1 - segbits);
1342 uasm_i_or(&p, K0, K0, K1);
1343 uasm_il_bnez(&p, &r, K0, label_leave);
1344 /* No need for uasm_i_nop */
1345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Ralf Baechle875d43e2005-09-03 15:56:16 -07001347#ifdef CONFIG_64BIT
David Daney2c8c53e2010-12-27 18:07:57 -08001348 build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349#else
David Daney2c8c53e2010-12-27 18:07:57 -08001350 build_get_pgde32(&p, K0, K1); /* get pgd in K1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351#endif
1352
David Daneyaa1762f2012-10-17 00:48:10 +02001353#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daney2c8c53e2010-12-27 18:07:57 -08001354 build_is_huge_pte(&p, &r, K0, K1, label_tlb_huge_update);
David Daneyfd062c82009-05-27 17:47:44 -07001355#endif
1356
David Daney2c8c53e2010-12-27 18:07:57 -08001357 build_get_ptep(&p, K0, K1);
1358 build_update_entries(&p, K0, K1);
1359 build_tlb_write_entry(&p, &l, &r, tlb_random);
1360 uasm_l_leave(&l, p);
1361 uasm_i_eret(&p); /* return from trap */
1362 }
David Daneyaa1762f2012-10-17 00:48:10 +02001363#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07001364 uasm_l_tlb_huge_update(&l, p);
David Daney2c8c53e2010-12-27 18:07:57 -08001365 build_huge_update_entries(&p, htlb_info.huge_pte, K1);
1366 build_huge_tlb_write_entry(&p, &l, &r, K0, tlb_random,
1367 htlb_info.restore_scratch);
David Daneyfd062c82009-05-27 17:47:44 -07001368#endif
1369
Ralf Baechle875d43e2005-09-03 15:56:16 -07001370#ifdef CONFIG_64BIT
David Daney2c8c53e2010-12-27 18:07:57 -08001371 build_get_pgd_vmalloc64(&p, &l, &r, K0, K1, vmalloc_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372#endif
1373
1374 /*
1375 * Overflow check: For the 64bit handler, we need at least one
1376 * free instruction slot for the wrap-around branch. In worst
1377 * case, if the intended insertion point is a delay slot, we
Matt LaPlante4b3f6862006-10-03 22:21:02 +02001378 * need three, with the second nop'ed and the third being
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 * unused.
1380 */
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001381 /* Loongson2 ebase is different than r4k, we have more space */
1382#if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 if ((p - tlb_handler) > 64)
1384 panic("TLB refill handler space exceeded");
1385#else
David Daneye6f72d32009-05-20 11:40:58 -07001386 if (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 1)
1387 || (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 3)
1388 && uasm_insn_has_bdelay(relocs,
1389 tlb_handler + MIPS64_REFILL_INSNS - 3)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 panic("TLB refill handler space exceeded");
1391#endif
1392
1393 /*
1394 * Now fold the handler in the TLB refill handler space.
1395 */
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001396#if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 f = final_handler;
1398 /* Simplest case, just copy the handler. */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001399 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 final_len = p - tlb_handler;
Ralf Baechle875d43e2005-09-03 15:56:16 -07001401#else /* CONFIG_64BIT */
David Daneye6f72d32009-05-20 11:40:58 -07001402 f = final_handler + MIPS64_REFILL_INSNS;
1403 if ((p - tlb_handler) <= MIPS64_REFILL_INSNS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /* Just copy the handler. */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001405 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 final_len = p - tlb_handler;
1407 } else {
David Daneyaa1762f2012-10-17 00:48:10 +02001408#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07001409 const enum label_id ls = label_tlb_huge_update;
David Daney95affdd2009-05-20 11:40:59 -07001410#else
1411 const enum label_id ls = label_vmalloc;
1412#endif
1413 u32 *split;
1414 int ov = 0;
1415 int i;
1416
1417 for (i = 0; i < ARRAY_SIZE(labels) && labels[i].lab != ls; i++)
1418 ;
1419 BUG_ON(i == ARRAY_SIZE(labels));
1420 split = labels[i].addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 /*
David Daney95affdd2009-05-20 11:40:59 -07001423 * See if we have overflown one way or the other.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 */
David Daney95affdd2009-05-20 11:40:59 -07001425 if (split > tlb_handler + MIPS64_REFILL_INSNS ||
1426 split < p - MIPS64_REFILL_INSNS)
1427 ov = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
David Daney95affdd2009-05-20 11:40:59 -07001429 if (ov) {
1430 /*
1431 * Split two instructions before the end. One
1432 * for the branch and one for the instruction
1433 * in the delay slot.
1434 */
1435 split = tlb_handler + MIPS64_REFILL_INSNS - 2;
1436
1437 /*
1438 * If the branch would fall in a delay slot,
1439 * we must back up an additional instruction
1440 * so that it is no longer in a delay slot.
1441 */
1442 if (uasm_insn_has_bdelay(relocs, split - 1))
1443 split--;
1444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 /* Copy first part of the handler. */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001446 uasm_copy_handler(relocs, labels, tlb_handler, split, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 f += split - tlb_handler;
1448
David Daney95affdd2009-05-20 11:40:59 -07001449 if (ov) {
1450 /* Insert branch. */
1451 uasm_l_split(&l, final_handler);
1452 uasm_il_b(&f, &r, label_split);
1453 if (uasm_insn_has_bdelay(relocs, split))
1454 uasm_i_nop(&f);
1455 else {
1456 uasm_copy_handler(relocs, labels,
1457 split, split + 1, f);
1458 uasm_move_labels(labels, f, f + 1, -1);
1459 f++;
1460 split++;
1461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
1463
1464 /* Copy the rest of the handler. */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001465 uasm_copy_handler(relocs, labels, split, p, final_handler);
David Daneye6f72d32009-05-20 11:40:58 -07001466 final_len = (f - (final_handler + MIPS64_REFILL_INSNS)) +
1467 (p - split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
Ralf Baechle875d43e2005-09-03 15:56:16 -07001469#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Thiemo Seufere30ec452008-01-28 20:05:38 +00001471 uasm_resolve_relocs(relocs, labels);
1472 pr_debug("Wrote TLB refill handler (%u instructions).\n",
1473 final_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Ralf Baechle91b05e62006-03-29 18:53:00 +01001475 memcpy((void *)ebase, final_handler, 0x100);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +02001476
Ralf Baechlea2c763e2012-10-16 22:20:26 +02001477 dump_handler("r4000_tlb_refill", (u32 *)ebase, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
1480/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 * 128 instructions for the fastpath handler is generous and should
1482 * never be exceeded.
1483 */
1484#define FASTPATH_SIZE 128
1485
Franck Bui-Huucbdbe072007-10-18 09:11:16 +02001486u32 handle_tlbl[FASTPATH_SIZE] __cacheline_aligned;
1487u32 handle_tlbs[FASTPATH_SIZE] __cacheline_aligned;
1488u32 handle_tlbm[FASTPATH_SIZE] __cacheline_aligned;
David Daney3d8bfdd2010-12-21 14:19:11 -08001489#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
1490u32 tlbmiss_handler_setup_pgd[16] __cacheline_aligned;
1491
1492static void __cpuinit build_r4000_setup_pgd(void)
1493{
1494 const int a0 = 4;
1495 const int a1 = 5;
1496 u32 *p = tlbmiss_handler_setup_pgd;
1497 struct uasm_label *l = labels;
1498 struct uasm_reloc *r = relocs;
1499
1500 memset(tlbmiss_handler_setup_pgd, 0, sizeof(tlbmiss_handler_setup_pgd));
1501 memset(labels, 0, sizeof(labels));
1502 memset(relocs, 0, sizeof(relocs));
1503
1504 pgd_reg = allocate_kscratch();
1505
1506 if (pgd_reg == -1) {
1507 /* PGD << 11 in c0_Context */
1508 /*
1509 * If it is a ckseg0 address, convert to a physical
1510 * address. Shifting right by 29 and adding 4 will
1511 * result in zero for these addresses.
1512 *
1513 */
1514 UASM_i_SRA(&p, a1, a0, 29);
1515 UASM_i_ADDIU(&p, a1, a1, 4);
1516 uasm_il_bnez(&p, &r, a1, label_tlbl_goaround1);
1517 uasm_i_nop(&p);
1518 uasm_i_dinsm(&p, a0, 0, 29, 64 - 29);
1519 uasm_l_tlbl_goaround1(&l, p);
1520 UASM_i_SLL(&p, a0, a0, 11);
1521 uasm_i_jr(&p, 31);
1522 UASM_i_MTC0(&p, a0, C0_CONTEXT);
1523 } else {
1524 /* PGD in c0_KScratch */
1525 uasm_i_jr(&p, 31);
1526 UASM_i_MTC0(&p, a0, 31, pgd_reg);
1527 }
1528 if (p - tlbmiss_handler_setup_pgd > ARRAY_SIZE(tlbmiss_handler_setup_pgd))
1529 panic("tlbmiss_handler_setup_pgd space exceeded");
1530 uasm_resolve_relocs(relocs, labels);
1531 pr_debug("Wrote tlbmiss_handler_setup_pgd (%u instructions).\n",
1532 (unsigned int)(p - tlbmiss_handler_setup_pgd));
1533
Ralf Baechlea2c763e2012-10-16 22:20:26 +02001534 dump_handler("tlbmiss_handler",
1535 tlbmiss_handler_setup_pgd,
David Daney3d8bfdd2010-12-21 14:19:11 -08001536 ARRAY_SIZE(tlbmiss_handler_setup_pgd));
1537}
1538#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Ralf Baechle234fcd12008-03-08 09:56:28 +00001540static void __cpuinit
David Daneybd1437e2009-05-08 15:10:50 -07001541iPTE_LW(u32 **p, unsigned int pte, unsigned int ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
1543#ifdef CONFIG_SMP
1544# ifdef CONFIG_64BIT_PHYS_ADDR
1545 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001546 uasm_i_lld(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 else
1548# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001549 UASM_i_LL(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550#else
1551# ifdef CONFIG_64BIT_PHYS_ADDR
1552 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001553 uasm_i_ld(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 else
1555# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001556 UASM_i_LW(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557#endif
1558}
1559
Ralf Baechle234fcd12008-03-08 09:56:28 +00001560static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001561iPTE_SW(u32 **p, struct uasm_reloc **r, unsigned int pte, unsigned int ptr,
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001562 unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001564#ifdef CONFIG_64BIT_PHYS_ADDR
1565 unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY);
1566#endif
1567
Thiemo Seufere30ec452008-01-28 20:05:38 +00001568 uasm_i_ori(p, pte, pte, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569#ifdef CONFIG_SMP
1570# ifdef CONFIG_64BIT_PHYS_ADDR
1571 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001572 uasm_i_scd(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 else
1574# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001575 UASM_i_SC(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 if (r10000_llsc_war())
Thiemo Seufere30ec452008-01-28 20:05:38 +00001578 uasm_il_beqzl(p, r, pte, label_smp_pgtable_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001580 uasm_il_beqz(p, r, pte, label_smp_pgtable_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582# ifdef CONFIG_64BIT_PHYS_ADDR
1583 if (!cpu_has_64bits) {
Thiemo Seufere30ec452008-01-28 20:05:38 +00001584 /* no uasm_i_nop needed */
1585 uasm_i_ll(p, pte, sizeof(pte_t) / 2, ptr);
1586 uasm_i_ori(p, pte, pte, hwmode);
1587 uasm_i_sc(p, pte, sizeof(pte_t) / 2, ptr);
1588 uasm_il_beqz(p, r, pte, label_smp_pgtable_change);
1589 /* no uasm_i_nop needed */
1590 uasm_i_lw(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 } else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001592 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593# else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001594 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595# endif
1596#else
1597# ifdef CONFIG_64BIT_PHYS_ADDR
1598 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001599 uasm_i_sd(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 else
1601# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001602 UASM_i_SW(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604# ifdef CONFIG_64BIT_PHYS_ADDR
1605 if (!cpu_has_64bits) {
Thiemo Seufere30ec452008-01-28 20:05:38 +00001606 uasm_i_lw(p, pte, sizeof(pte_t) / 2, ptr);
1607 uasm_i_ori(p, pte, pte, hwmode);
1608 uasm_i_sw(p, pte, sizeof(pte_t) / 2, ptr);
1609 uasm_i_lw(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 }
1611# endif
1612#endif
1613}
1614
1615/*
1616 * Check if PTE is present, if not then jump to LABEL. PTR points to
1617 * the page table where this PTE is located, PTE will be re-loaded
1618 * with it's original value.
1619 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001620static void __cpuinit
David Daneybd1437e2009-05-08 15:10:50 -07001621build_pte_present(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001622 int pte, int ptr, int scratch, enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
David Daneybf286072011-07-05 16:34:46 -07001624 int t = scratch >= 0 ? scratch : pte;
1625
Steven J. Hill05857c62012-09-13 16:51:46 -05001626 if (cpu_has_rixi) {
David Daneycc33ae42010-12-20 15:54:50 -08001627 if (use_bbit_insns()) {
1628 uasm_il_bbit0(p, r, pte, ilog2(_PAGE_PRESENT), lid);
1629 uasm_i_nop(p);
1630 } else {
David Daneybf286072011-07-05 16:34:46 -07001631 uasm_i_andi(p, t, pte, _PAGE_PRESENT);
1632 uasm_il_beqz(p, r, t, lid);
1633 if (pte == t)
1634 /* You lose the SMP race :-(*/
1635 iPTE_LW(p, pte, ptr);
David Daneycc33ae42010-12-20 15:54:50 -08001636 }
David Daney6dd93442010-02-10 15:12:47 -08001637 } else {
David Daneybf286072011-07-05 16:34:46 -07001638 uasm_i_andi(p, t, pte, _PAGE_PRESENT | _PAGE_READ);
1639 uasm_i_xori(p, t, t, _PAGE_PRESENT | _PAGE_READ);
1640 uasm_il_bnez(p, r, t, lid);
1641 if (pte == t)
1642 /* You lose the SMP race :-(*/
1643 iPTE_LW(p, pte, ptr);
David Daney6dd93442010-02-10 15:12:47 -08001644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
1646
1647/* Make PTE valid, store result in PTR. */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001648static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001649build_make_valid(u32 **p, struct uasm_reloc **r, unsigned int pte,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 unsigned int ptr)
1651{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001652 unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED;
1653
1654 iPTE_SW(p, r, pte, ptr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
1656
1657/*
1658 * Check if PTE can be written to, if not branch to LABEL. Regardless
1659 * restore PTE with value from PTR when done.
1660 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001661static void __cpuinit
David Daneybd1437e2009-05-08 15:10:50 -07001662build_pte_writable(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001663 unsigned int pte, unsigned int ptr, int scratch,
1664 enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
David Daneybf286072011-07-05 16:34:46 -07001666 int t = scratch >= 0 ? scratch : pte;
1667
1668 uasm_i_andi(p, t, pte, _PAGE_PRESENT | _PAGE_WRITE);
1669 uasm_i_xori(p, t, t, _PAGE_PRESENT | _PAGE_WRITE);
1670 uasm_il_bnez(p, r, t, lid);
1671 if (pte == t)
1672 /* You lose the SMP race :-(*/
David Daneycc33ae42010-12-20 15:54:50 -08001673 iPTE_LW(p, pte, ptr);
David Daneybf286072011-07-05 16:34:46 -07001674 else
1675 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676}
1677
1678/* Make PTE writable, update software status bits as well, then store
1679 * at PTR.
1680 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001681static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001682build_make_write(u32 **p, struct uasm_reloc **r, unsigned int pte,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 unsigned int ptr)
1684{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001685 unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID
1686 | _PAGE_DIRTY);
1687
1688 iPTE_SW(p, r, pte, ptr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}
1690
1691/*
1692 * Check if PTE can be modified, if not branch to LABEL. Regardless
1693 * restore PTE with value from PTR when done.
1694 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001695static void __cpuinit
David Daneybd1437e2009-05-08 15:10:50 -07001696build_pte_modifiable(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001697 unsigned int pte, unsigned int ptr, int scratch,
1698 enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
David Daneycc33ae42010-12-20 15:54:50 -08001700 if (use_bbit_insns()) {
1701 uasm_il_bbit0(p, r, pte, ilog2(_PAGE_WRITE), lid);
1702 uasm_i_nop(p);
1703 } else {
David Daneybf286072011-07-05 16:34:46 -07001704 int t = scratch >= 0 ? scratch : pte;
1705 uasm_i_andi(p, t, pte, _PAGE_WRITE);
1706 uasm_il_beqz(p, r, t, lid);
1707 if (pte == t)
1708 /* You lose the SMP race :-(*/
1709 iPTE_LW(p, pte, ptr);
David Daneycc33ae42010-12-20 15:54:50 -08001710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712
David Daney82622282009-10-14 12:16:56 -07001713#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
David Daney3d8bfdd2010-12-21 14:19:11 -08001714
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716/*
1717 * R3000 style TLB load/store/modify handlers.
1718 */
1719
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001720/*
1721 * This places the pte into ENTRYLO0 and writes it with tlbwi.
1722 * Then it returns.
1723 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001724static void __cpuinit
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001725build_r3000_pte_reload_tlbwi(u32 **p, unsigned int pte, unsigned int tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
Thiemo Seufere30ec452008-01-28 20:05:38 +00001727 uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
1728 uasm_i_mfc0(p, tmp, C0_EPC); /* cp0 delay */
1729 uasm_i_tlbwi(p);
1730 uasm_i_jr(p, tmp);
1731 uasm_i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
1733
1734/*
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001735 * This places the pte into ENTRYLO0 and writes it with tlbwi
1736 * or tlbwr as appropriate. This is because the index register
1737 * may have the probe fail bit set as a result of a trap on a
1738 * kseg2 access, i.e. without refill. Then it returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001740static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001741build_r3000_tlb_reload_write(u32 **p, struct uasm_label **l,
1742 struct uasm_reloc **r, unsigned int pte,
1743 unsigned int tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Thiemo Seufere30ec452008-01-28 20:05:38 +00001745 uasm_i_mfc0(p, tmp, C0_INDEX);
1746 uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
1747 uasm_il_bltz(p, r, tmp, label_r3000_write_probe_fail); /* cp0 delay */
1748 uasm_i_mfc0(p, tmp, C0_EPC); /* branch delay */
1749 uasm_i_tlbwi(p); /* cp0 delay */
1750 uasm_i_jr(p, tmp);
1751 uasm_i_rfe(p); /* branch delay */
1752 uasm_l_r3000_write_probe_fail(l, *p);
1753 uasm_i_tlbwr(p); /* cp0 delay */
1754 uasm_i_jr(p, tmp);
1755 uasm_i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756}
1757
Ralf Baechle234fcd12008-03-08 09:56:28 +00001758static void __cpuinit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759build_r3000_tlbchange_handler_head(u32 **p, unsigned int pte,
1760 unsigned int ptr)
1761{
1762 long pgdc = (long)pgd_current;
1763
Thiemo Seufere30ec452008-01-28 20:05:38 +00001764 uasm_i_mfc0(p, pte, C0_BADVADDR);
1765 uasm_i_lui(p, ptr, uasm_rel_hi(pgdc)); /* cp0 delay */
1766 uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr);
1767 uasm_i_srl(p, pte, pte, 22); /* load delay */
1768 uasm_i_sll(p, pte, pte, 2);
1769 uasm_i_addu(p, ptr, ptr, pte);
1770 uasm_i_mfc0(p, pte, C0_CONTEXT);
1771 uasm_i_lw(p, ptr, 0, ptr); /* cp0 delay */
1772 uasm_i_andi(p, pte, pte, 0xffc); /* load delay */
1773 uasm_i_addu(p, ptr, ptr, pte);
1774 uasm_i_lw(p, pte, 0, ptr);
1775 uasm_i_tlbp(p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776}
1777
Ralf Baechle234fcd12008-03-08 09:56:28 +00001778static void __cpuinit build_r3000_tlb_load_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
1780 u32 *p = handle_tlbl;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001781 struct uasm_label *l = labels;
1782 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 memset(handle_tlbl, 0, sizeof(handle_tlbl));
1785 memset(labels, 0, sizeof(labels));
1786 memset(relocs, 0, sizeof(relocs));
1787
1788 build_r3000_tlbchange_handler_head(&p, K0, K1);
David Daneybf286072011-07-05 16:34:46 -07001789 build_pte_present(&p, &r, K0, K1, -1, label_nopage_tlbl);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001790 uasm_i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 build_make_valid(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001792 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Thiemo Seufere30ec452008-01-28 20:05:38 +00001794 uasm_l_nopage_tlbl(&l, p);
1795 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
1796 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 if ((p - handle_tlbl) > FASTPATH_SIZE)
1799 panic("TLB load handler fastpath space exceeded");
1800
Thiemo Seufere30ec452008-01-28 20:05:38 +00001801 uasm_resolve_relocs(relocs, labels);
1802 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
1803 (unsigned int)(p - handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Ralf Baechlea2c763e2012-10-16 22:20:26 +02001805 dump_handler("r3000_tlb_load", handle_tlbl, ARRAY_SIZE(handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
1807
Ralf Baechle234fcd12008-03-08 09:56:28 +00001808static void __cpuinit build_r3000_tlb_store_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
1810 u32 *p = handle_tlbs;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001811 struct uasm_label *l = labels;
1812 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 memset(handle_tlbs, 0, sizeof(handle_tlbs));
1815 memset(labels, 0, sizeof(labels));
1816 memset(relocs, 0, sizeof(relocs));
1817
1818 build_r3000_tlbchange_handler_head(&p, K0, K1);
David Daneybf286072011-07-05 16:34:46 -07001819 build_pte_writable(&p, &r, K0, K1, -1, label_nopage_tlbs);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001820 uasm_i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 build_make_write(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001822 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Thiemo Seufere30ec452008-01-28 20:05:38 +00001824 uasm_l_nopage_tlbs(&l, p);
1825 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1826 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 if ((p - handle_tlbs) > FASTPATH_SIZE)
1829 panic("TLB store handler fastpath space exceeded");
1830
Thiemo Seufere30ec452008-01-28 20:05:38 +00001831 uasm_resolve_relocs(relocs, labels);
1832 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
1833 (unsigned int)(p - handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Ralf Baechlea2c763e2012-10-16 22:20:26 +02001835 dump_handler("r3000_tlb_store", handle_tlbs, ARRAY_SIZE(handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
1837
Ralf Baechle234fcd12008-03-08 09:56:28 +00001838static void __cpuinit build_r3000_tlb_modify_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
1840 u32 *p = handle_tlbm;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001841 struct uasm_label *l = labels;
1842 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 memset(handle_tlbm, 0, sizeof(handle_tlbm));
1845 memset(labels, 0, sizeof(labels));
1846 memset(relocs, 0, sizeof(relocs));
1847
1848 build_r3000_tlbchange_handler_head(&p, K0, K1);
Ralf Baechled954ffe2011-08-02 22:52:48 +01001849 build_pte_modifiable(&p, &r, K0, K1, -1, label_nopage_tlbm);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001850 uasm_i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 build_make_write(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001852 build_r3000_pte_reload_tlbwi(&p, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Thiemo Seufere30ec452008-01-28 20:05:38 +00001854 uasm_l_nopage_tlbm(&l, p);
1855 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1856 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 if ((p - handle_tlbm) > FASTPATH_SIZE)
1859 panic("TLB modify handler fastpath space exceeded");
1860
Thiemo Seufere30ec452008-01-28 20:05:38 +00001861 uasm_resolve_relocs(relocs, labels);
1862 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
1863 (unsigned int)(p - handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Ralf Baechlea2c763e2012-10-16 22:20:26 +02001865 dump_handler("r3000_tlb_modify", handle_tlbm, ARRAY_SIZE(handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866}
David Daney82622282009-10-14 12:16:56 -07001867#endif /* CONFIG_MIPS_PGD_C0_CONTEXT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869/*
1870 * R4000 style TLB load/store/modify handlers.
1871 */
David Daneybf286072011-07-05 16:34:46 -07001872static struct work_registers __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001873build_r4000_tlbchange_handler_head(u32 **p, struct uasm_label **l,
David Daneybf286072011-07-05 16:34:46 -07001874 struct uasm_reloc **r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
David Daneybf286072011-07-05 16:34:46 -07001876 struct work_registers wr = build_get_work_registers(p);
1877
Ralf Baechle875d43e2005-09-03 15:56:16 -07001878#ifdef CONFIG_64BIT
David Daneybf286072011-07-05 16:34:46 -07001879 build_get_pmde64(p, l, r, wr.r1, wr.r2); /* get pmd in ptr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880#else
David Daneybf286072011-07-05 16:34:46 -07001881 build_get_pgde32(p, wr.r1, wr.r2); /* get pgd in ptr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882#endif
1883
David Daneyaa1762f2012-10-17 00:48:10 +02001884#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07001885 /*
1886 * For huge tlb entries, pmd doesn't contain an address but
1887 * instead contains the tlb pte. Check the PAGE_HUGE bit and
1888 * see if we need to jump to huge tlb processing.
1889 */
David Daneybf286072011-07-05 16:34:46 -07001890 build_is_huge_pte(p, r, wr.r1, wr.r2, label_tlb_huge_update);
David Daneyfd062c82009-05-27 17:47:44 -07001891#endif
1892
David Daneybf286072011-07-05 16:34:46 -07001893 UASM_i_MFC0(p, wr.r1, C0_BADVADDR);
1894 UASM_i_LW(p, wr.r2, 0, wr.r2);
1895 UASM_i_SRL(p, wr.r1, wr.r1, PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2);
1896 uasm_i_andi(p, wr.r1, wr.r1, (PTRS_PER_PTE - 1) << PTE_T_LOG2);
1897 UASM_i_ADDU(p, wr.r2, wr.r2, wr.r1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899#ifdef CONFIG_SMP
Thiemo Seufere30ec452008-01-28 20:05:38 +00001900 uasm_l_smp_pgtable_change(l, *p);
1901#endif
David Daneybf286072011-07-05 16:34:46 -07001902 iPTE_LW(p, wr.r1, wr.r2); /* get even pte */
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01001903 if (!m4kc_tlbp_war())
1904 build_tlb_probe_entry(p);
David Daneybf286072011-07-05 16:34:46 -07001905 return wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906}
1907
Ralf Baechle234fcd12008-03-08 09:56:28 +00001908static void __cpuinit
Thiemo Seufere30ec452008-01-28 20:05:38 +00001909build_r4000_tlbchange_handler_tail(u32 **p, struct uasm_label **l,
1910 struct uasm_reloc **r, unsigned int tmp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 unsigned int ptr)
1912{
Thiemo Seufere30ec452008-01-28 20:05:38 +00001913 uasm_i_ori(p, ptr, ptr, sizeof(pte_t));
1914 uasm_i_xori(p, ptr, ptr, sizeof(pte_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 build_update_entries(p, tmp, ptr);
1916 build_tlb_write_entry(p, l, r, tlb_indexed);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001917 uasm_l_leave(l, *p);
David Daneybf286072011-07-05 16:34:46 -07001918 build_restore_work_registers(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001919 uasm_i_eret(p); /* return from trap */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Ralf Baechle875d43e2005-09-03 15:56:16 -07001921#ifdef CONFIG_64BIT
David Daney1ec56322010-04-28 12:16:18 -07001922 build_get_pgd_vmalloc64(p, l, r, tmp, ptr, not_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923#endif
1924}
1925
Ralf Baechle234fcd12008-03-08 09:56:28 +00001926static void __cpuinit build_r4000_tlb_load_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
1928 u32 *p = handle_tlbl;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001929 struct uasm_label *l = labels;
1930 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07001931 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 memset(handle_tlbl, 0, sizeof(handle_tlbl));
1934 memset(labels, 0, sizeof(labels));
1935 memset(relocs, 0, sizeof(relocs));
1936
1937 if (bcm1250_m3_war()) {
Ralf Baechle3d452852010-03-23 17:56:38 +01001938 unsigned int segbits = 44;
1939
1940 uasm_i_dmfc0(&p, K0, C0_BADVADDR);
1941 uasm_i_dmfc0(&p, K1, C0_ENTRYHI);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001942 uasm_i_xor(&p, K0, K0, K1);
David Daney3be60222010-04-28 12:16:17 -07001943 uasm_i_dsrl_safe(&p, K1, K0, 62);
1944 uasm_i_dsrl_safe(&p, K0, K0, 12 + 1);
1945 uasm_i_dsll_safe(&p, K0, K0, 64 + 12 + 1 - segbits);
Ralf Baechle3d452852010-03-23 17:56:38 +01001946 uasm_i_or(&p, K0, K0, K1);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001947 uasm_il_bnez(&p, &r, K0, label_leave);
1948 /* No need for uasm_i_nop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
1950
David Daneybf286072011-07-05 16:34:46 -07001951 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
1952 build_pte_present(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbl);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01001953 if (m4kc_tlbp_war())
1954 build_tlb_probe_entry(&p);
David Daney6dd93442010-02-10 15:12:47 -08001955
Steven J. Hill05857c62012-09-13 16:51:46 -05001956 if (cpu_has_rixi) {
David Daney6dd93442010-02-10 15:12:47 -08001957 /*
1958 * If the page is not _PAGE_VALID, RI or XI could not
1959 * have triggered it. Skip the expensive test..
1960 */
David Daneycc33ae42010-12-20 15:54:50 -08001961 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07001962 uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID),
David Daneycc33ae42010-12-20 15:54:50 -08001963 label_tlbl_goaround1);
1964 } else {
David Daneybf286072011-07-05 16:34:46 -07001965 uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID);
1966 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround1);
David Daneycc33ae42010-12-20 15:54:50 -08001967 }
David Daney6dd93442010-02-10 15:12:47 -08001968 uasm_i_nop(&p);
1969
1970 uasm_i_tlbr(&p);
1971 /* Examine entrylo 0 or 1 based on ptr. */
David Daneycc33ae42010-12-20 15:54:50 -08001972 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07001973 uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8);
David Daneycc33ae42010-12-20 15:54:50 -08001974 } else {
David Daneybf286072011-07-05 16:34:46 -07001975 uasm_i_andi(&p, wr.r3, wr.r2, sizeof(pte_t));
1976 uasm_i_beqz(&p, wr.r3, 8);
David Daneycc33ae42010-12-20 15:54:50 -08001977 }
David Daneybf286072011-07-05 16:34:46 -07001978 /* load it in the delay slot*/
1979 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO0);
1980 /* load it if ptr is odd */
1981 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO1);
David Daney6dd93442010-02-10 15:12:47 -08001982 /*
David Daneybf286072011-07-05 16:34:46 -07001983 * If the entryLo (now in wr.r3) is valid (bit 1), RI or
David Daney6dd93442010-02-10 15:12:47 -08001984 * XI must have triggered it.
1985 */
David Daneycc33ae42010-12-20 15:54:50 -08001986 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07001987 uasm_il_bbit1(&p, &r, wr.r3, 1, label_nopage_tlbl);
1988 uasm_i_nop(&p);
David Daneycc33ae42010-12-20 15:54:50 -08001989 uasm_l_tlbl_goaround1(&l, p);
1990 } else {
David Daneybf286072011-07-05 16:34:46 -07001991 uasm_i_andi(&p, wr.r3, wr.r3, 2);
1992 uasm_il_bnez(&p, &r, wr.r3, label_nopage_tlbl);
1993 uasm_i_nop(&p);
David Daneycc33ae42010-12-20 15:54:50 -08001994 }
David Daneybf286072011-07-05 16:34:46 -07001995 uasm_l_tlbl_goaround1(&l, p);
David Daney6dd93442010-02-10 15:12:47 -08001996 }
David Daneybf286072011-07-05 16:34:46 -07001997 build_make_valid(&p, &r, wr.r1, wr.r2);
1998 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
David Daneyaa1762f2012-10-17 00:48:10 +02002000#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07002001 /*
2002 * This is the entry point when build_r4000_tlbchange_handler_head
2003 * spots a huge page.
2004 */
2005 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002006 iPTE_LW(&p, wr.r1, wr.r2);
2007 build_pte_present(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbl);
David Daneyfd062c82009-05-27 17:47:44 -07002008 build_tlb_probe_entry(&p);
David Daney6dd93442010-02-10 15:12:47 -08002009
Steven J. Hill05857c62012-09-13 16:51:46 -05002010 if (cpu_has_rixi) {
David Daney6dd93442010-02-10 15:12:47 -08002011 /*
2012 * If the page is not _PAGE_VALID, RI or XI could not
2013 * have triggered it. Skip the expensive test..
2014 */
David Daneycc33ae42010-12-20 15:54:50 -08002015 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002016 uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID),
David Daneycc33ae42010-12-20 15:54:50 -08002017 label_tlbl_goaround2);
2018 } else {
David Daneybf286072011-07-05 16:34:46 -07002019 uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID);
2020 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002021 }
David Daney6dd93442010-02-10 15:12:47 -08002022 uasm_i_nop(&p);
2023
2024 uasm_i_tlbr(&p);
2025 /* Examine entrylo 0 or 1 based on ptr. */
David Daneycc33ae42010-12-20 15:54:50 -08002026 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002027 uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8);
David Daneycc33ae42010-12-20 15:54:50 -08002028 } else {
David Daneybf286072011-07-05 16:34:46 -07002029 uasm_i_andi(&p, wr.r3, wr.r2, sizeof(pte_t));
2030 uasm_i_beqz(&p, wr.r3, 8);
David Daneycc33ae42010-12-20 15:54:50 -08002031 }
David Daneybf286072011-07-05 16:34:46 -07002032 /* load it in the delay slot*/
2033 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO0);
2034 /* load it if ptr is odd */
2035 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO1);
David Daney6dd93442010-02-10 15:12:47 -08002036 /*
David Daneybf286072011-07-05 16:34:46 -07002037 * If the entryLo (now in wr.r3) is valid (bit 1), RI or
David Daney6dd93442010-02-10 15:12:47 -08002038 * XI must have triggered it.
2039 */
David Daneycc33ae42010-12-20 15:54:50 -08002040 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002041 uasm_il_bbit0(&p, &r, wr.r3, 1, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002042 } else {
David Daneybf286072011-07-05 16:34:46 -07002043 uasm_i_andi(&p, wr.r3, wr.r3, 2);
2044 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002045 }
David Daney0f4ccbc2011-09-16 18:06:02 -07002046 if (PM_DEFAULT_MASK == 0)
2047 uasm_i_nop(&p);
David Daney6dd93442010-02-10 15:12:47 -08002048 /*
2049 * We clobbered C0_PAGEMASK, restore it. On the other branch
2050 * it is restored in build_huge_tlb_write_entry.
2051 */
David Daneybf286072011-07-05 16:34:46 -07002052 build_restore_pagemask(&p, &r, wr.r3, label_nopage_tlbl, 0);
David Daney6dd93442010-02-10 15:12:47 -08002053
2054 uasm_l_tlbl_goaround2(&l, p);
2055 }
David Daneybf286072011-07-05 16:34:46 -07002056 uasm_i_ori(&p, wr.r1, wr.r1, (_PAGE_ACCESSED | _PAGE_VALID));
2057 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2);
David Daneyfd062c82009-05-27 17:47:44 -07002058#endif
2059
Thiemo Seufere30ec452008-01-28 20:05:38 +00002060 uasm_l_nopage_tlbl(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002061 build_restore_work_registers(&p);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002062 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
2063 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 if ((p - handle_tlbl) > FASTPATH_SIZE)
2066 panic("TLB load handler fastpath space exceeded");
2067
Thiemo Seufere30ec452008-01-28 20:05:38 +00002068 uasm_resolve_relocs(relocs, labels);
2069 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
2070 (unsigned int)(p - handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Ralf Baechlea2c763e2012-10-16 22:20:26 +02002072 dump_handler("r4000_tlb_load", handle_tlbl, ARRAY_SIZE(handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
Ralf Baechle234fcd12008-03-08 09:56:28 +00002075static void __cpuinit build_r4000_tlb_store_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
2077 u32 *p = handle_tlbs;
Thiemo Seufere30ec452008-01-28 20:05:38 +00002078 struct uasm_label *l = labels;
2079 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07002080 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 memset(handle_tlbs, 0, sizeof(handle_tlbs));
2083 memset(labels, 0, sizeof(labels));
2084 memset(relocs, 0, sizeof(relocs));
2085
David Daneybf286072011-07-05 16:34:46 -07002086 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
2087 build_pte_writable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbs);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002088 if (m4kc_tlbp_war())
2089 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002090 build_make_write(&p, &r, wr.r1, wr.r2);
2091 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
David Daneyaa1762f2012-10-17 00:48:10 +02002093#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07002094 /*
2095 * This is the entry point when
2096 * build_r4000_tlbchange_handler_head spots a huge page.
2097 */
2098 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002099 iPTE_LW(&p, wr.r1, wr.r2);
2100 build_pte_writable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbs);
David Daneyfd062c82009-05-27 17:47:44 -07002101 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002102 uasm_i_ori(&p, wr.r1, wr.r1,
David Daneyfd062c82009-05-27 17:47:44 -07002103 _PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY);
David Daneybf286072011-07-05 16:34:46 -07002104 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2);
David Daneyfd062c82009-05-27 17:47:44 -07002105#endif
2106
Thiemo Seufere30ec452008-01-28 20:05:38 +00002107 uasm_l_nopage_tlbs(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002108 build_restore_work_registers(&p);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002109 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
2110 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112 if ((p - handle_tlbs) > FASTPATH_SIZE)
2113 panic("TLB store handler fastpath space exceeded");
2114
Thiemo Seufere30ec452008-01-28 20:05:38 +00002115 uasm_resolve_relocs(relocs, labels);
2116 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
2117 (unsigned int)(p - handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Ralf Baechlea2c763e2012-10-16 22:20:26 +02002119 dump_handler("r4000_tlb_store", handle_tlbs, ARRAY_SIZE(handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
Ralf Baechle234fcd12008-03-08 09:56:28 +00002122static void __cpuinit build_r4000_tlb_modify_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
2124 u32 *p = handle_tlbm;
Thiemo Seufere30ec452008-01-28 20:05:38 +00002125 struct uasm_label *l = labels;
2126 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07002127 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 memset(handle_tlbm, 0, sizeof(handle_tlbm));
2130 memset(labels, 0, sizeof(labels));
2131 memset(relocs, 0, sizeof(relocs));
2132
David Daneybf286072011-07-05 16:34:46 -07002133 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
2134 build_pte_modifiable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbm);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002135 if (m4kc_tlbp_war())
2136 build_tlb_probe_entry(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 /* Present and writable bits set, set accessed and dirty bits. */
David Daneybf286072011-07-05 16:34:46 -07002138 build_make_write(&p, &r, wr.r1, wr.r2);
2139 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
David Daneyaa1762f2012-10-17 00:48:10 +02002141#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07002142 /*
2143 * This is the entry point when
2144 * build_r4000_tlbchange_handler_head spots a huge page.
2145 */
2146 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002147 iPTE_LW(&p, wr.r1, wr.r2);
2148 build_pte_modifiable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbm);
David Daneyfd062c82009-05-27 17:47:44 -07002149 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002150 uasm_i_ori(&p, wr.r1, wr.r1,
David Daneyfd062c82009-05-27 17:47:44 -07002151 _PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY);
David Daneybf286072011-07-05 16:34:46 -07002152 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2);
David Daneyfd062c82009-05-27 17:47:44 -07002153#endif
2154
Thiemo Seufere30ec452008-01-28 20:05:38 +00002155 uasm_l_nopage_tlbm(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002156 build_restore_work_registers(&p);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002157 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
2158 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 if ((p - handle_tlbm) > FASTPATH_SIZE)
2161 panic("TLB modify handler fastpath space exceeded");
2162
Thiemo Seufere30ec452008-01-28 20:05:38 +00002163 uasm_resolve_relocs(relocs, labels);
2164 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
2165 (unsigned int)(p - handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Ralf Baechlea2c763e2012-10-16 22:20:26 +02002167 dump_handler("r4000_tlb_modify", handle_tlbm, ARRAY_SIZE(handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
Ralf Baechle234fcd12008-03-08 09:56:28 +00002170void __cpuinit build_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
2172 /*
2173 * The refill handler is generated per-CPU, multi-node systems
2174 * may have local storage for it. The other handlers are only
2175 * needed once.
2176 */
2177 static int run_once = 0;
2178
Ralf Baechlea2c763e2012-10-16 22:20:26 +02002179 output_pgtable_bits_defines();
2180
David Daney1ec56322010-04-28 12:16:18 -07002181#ifdef CONFIG_64BIT
2182 check_for_high_segbits = current_cpu_data.vmbits > (PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
2183#endif
2184
Ralf Baechle10cc3522007-10-11 23:46:15 +01002185 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 case CPU_R2000:
2187 case CPU_R3000:
2188 case CPU_R3000A:
2189 case CPU_R3081E:
2190 case CPU_TX3912:
2191 case CPU_TX3922:
2192 case CPU_TX3927:
David Daney82622282009-10-14 12:16:56 -07002193#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 build_r3000_tlb_refill_handler();
2195 if (!run_once) {
2196 build_r3000_tlb_load_handler();
2197 build_r3000_tlb_store_handler();
2198 build_r3000_tlb_modify_handler();
2199 run_once++;
2200 }
David Daney82622282009-10-14 12:16:56 -07002201#else
2202 panic("No R3000 TLB refill handler");
2203#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 break;
2205
2206 case CPU_R6000:
2207 case CPU_R6000A:
2208 panic("No R6000 TLB refill handler yet");
2209 break;
2210
2211 case CPU_R8000:
2212 panic("No R8000 TLB refill handler yet");
2213 break;
2214
2215 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 if (!run_once) {
David Daneybf286072011-07-05 16:34:46 -07002217 scratch_reg = allocate_kscratch();
David Daney3d8bfdd2010-12-21 14:19:11 -08002218#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
2219 build_r4000_setup_pgd();
2220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 build_r4000_tlb_load_handler();
2222 build_r4000_tlb_store_handler();
2223 build_r4000_tlb_modify_handler();
2224 run_once++;
2225 }
David Daney3d8bfdd2010-12-21 14:19:11 -08002226 build_r4000_tlb_refill_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 }
2228}
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002229
Ralf Baechle234fcd12008-03-08 09:56:28 +00002230void __cpuinit flush_tlb_handlers(void)
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002231{
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02002232 local_flush_icache_range((unsigned long)handle_tlbl,
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002233 (unsigned long)handle_tlbl + sizeof(handle_tlbl));
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02002234 local_flush_icache_range((unsigned long)handle_tlbs,
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002235 (unsigned long)handle_tlbs + sizeof(handle_tlbs));
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02002236 local_flush_icache_range((unsigned long)handle_tlbm,
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002237 (unsigned long)handle_tlbm + sizeof(handle_tlbm));
David Daney3d8bfdd2010-12-21 14:19:11 -08002238#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
2239 local_flush_icache_range((unsigned long)tlbmiss_handler_setup_pgd,
2240 (unsigned long)tlbmiss_handler_setup_pgd + sizeof(handle_tlbm));
2241#endif
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00002242}