blob: baad605db878b61b4dbfb1c637deb2863416d9c4 [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 *
Ralf Baechle70342282013-01-22 12:59:30 +01008 * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer
9 * 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
Adam Buchbinder92a76f62016-02-25 00:44:58 -080015 * I've gone completely out of my mind.
Ralf Baechle41c594a2006-04-05 09:45:45 +010016 *
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>
David Daney3d8bfdd2010-12-21 14:19:11 -080029#include <linux/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
David Daney3d8bfdd2010-12-21 14:19:11 -080031#include <asm/cacheflush.h>
Ralf Baechle69f24d12013-09-17 10:25:47 +020032#include <asm/cpu-type.h>
David Daney3d8bfdd2010-12-21 14:19:11 -080033#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
Paul Gortmakera2d25e62015-04-27 18:47:59 -040038static int mips_xpa_disabled;
Steven J. Hillc5b36782015-02-26 18:16:38 -060039
40static int __init xpa_disable(char *s)
41{
42 mips_xpa_disabled = 1;
43
44 return 1;
45}
46
47__setup("noxpa", xpa_disable);
48
David Daney1ec56322010-04-28 12:16:18 -070049/*
50 * TLB load/store/modify handlers.
51 *
52 * Only the fastpath gets synthesized at runtime, the slowpath for
53 * do_page_fault remains normal asm.
54 */
55extern void tlb_do_page_fault_0(void);
56extern void tlb_do_page_fault_1(void);
57
David Daneybf286072011-07-05 16:34:46 -070058struct work_registers {
59 int r1;
60 int r2;
61 int r3;
62};
63
64struct tlb_reg_save {
65 unsigned long a;
66 unsigned long b;
67} ____cacheline_aligned_in_smp;
68
69static struct tlb_reg_save handler_reg_save[NR_CPUS];
David Daney1ec56322010-04-28 12:16:18 -070070
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010071static inline int r45k_bvahwbug(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
73 /* XXX: We should probe for the presence of this bug, but we don't. */
74 return 0;
75}
76
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010077static inline int r4k_250MHZhwbug(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 /* XXX: We should probe for the presence of this bug, but we don't. */
80 return 0;
81}
82
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010083static inline int __maybe_unused bcm1250_m3_war(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 return BCM1250_M3_WAR;
86}
87
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010088static inline int __maybe_unused r10000_llsc_war(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 return R10000_LLSC_WAR;
91}
92
David Daneycc33ae42010-12-20 15:54:50 -080093static int use_bbit_insns(void)
94{
95 switch (current_cpu_type()) {
96 case CPU_CAVIUM_OCTEON:
97 case CPU_CAVIUM_OCTEON_PLUS:
98 case CPU_CAVIUM_OCTEON2:
David Daney4723b202013-07-29 15:07:03 -070099 case CPU_CAVIUM_OCTEON3:
David Daneycc33ae42010-12-20 15:54:50 -0800100 return 1;
101 default:
102 return 0;
103 }
104}
105
David Daney2c8c53e2010-12-27 18:07:57 -0800106static int use_lwx_insns(void)
107{
108 switch (current_cpu_type()) {
109 case CPU_CAVIUM_OCTEON2:
David Daney4723b202013-07-29 15:07:03 -0700110 case CPU_CAVIUM_OCTEON3:
David Daney2c8c53e2010-12-27 18:07:57 -0800111 return 1;
112 default:
113 return 0;
114 }
115}
116#if defined(CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE) && \
117 CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE > 0
118static bool scratchpad_available(void)
119{
120 return true;
121}
122static int scratchpad_offset(int i)
123{
124 /*
125 * CVMSEG starts at address -32768 and extends for
126 * CAVIUM_OCTEON_CVMSEG_SIZE 128 byte cache lines.
127 */
128 i += 1; /* Kernel use starts at the top and works down. */
129 return CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE * 128 - (8 * i) - 32768;
130}
131#else
132static bool scratchpad_available(void)
133{
134 return false;
135}
136static int scratchpad_offset(int i)
137{
138 BUG();
David Daneye1c87d22011-01-19 15:24:42 -0800139 /* Really unreachable, but evidently some GCC want this. */
140 return 0;
David Daney2c8c53e2010-12-27 18:07:57 -0800141}
142#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/*
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +0100144 * Found by experiment: At least some revisions of the 4kc throw under
145 * some circumstances a machine check exception, triggered by invalid
146 * values in the index register. Delaying the tlbp instruction until
147 * after the next branch, plus adding an additional nop in front of
148 * tlbwi/tlbwr avoids the invalid index register values. Nobody knows
149 * why; it's not an issue caused by the core RTL.
150 *
151 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000152static int m4kc_tlbp_war(void)
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +0100153{
154 return (current_cpu_data.processor_id & 0xffff00) ==
155 (PRID_COMP_MIPS | PRID_IMP_4KC);
156}
157
Thiemo Seufere30ec452008-01-28 20:05:38 +0000158/* Handle labels (which must be positive integers). */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159enum label_id {
Thiemo Seufere30ec452008-01-28 20:05:38 +0000160 label_second_part = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 label_leave,
162 label_vmalloc,
163 label_vmalloc_done,
Ralf Baechle02a54172012-10-13 22:46:26 +0200164 label_tlbw_hazard_0,
165 label_split = label_tlbw_hazard_0 + 8,
David Daney6dd93442010-02-10 15:12:47 -0800166 label_tlbl_goaround1,
167 label_tlbl_goaround2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 label_nopage_tlbl,
169 label_nopage_tlbs,
170 label_nopage_tlbm,
171 label_smp_pgtable_change,
172 label_r3000_write_probe_fail,
David Daney1ec56322010-04-28 12:16:18 -0700173 label_large_segbits_fault,
David Daneyaa1762f2012-10-17 00:48:10 +0200174#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -0700175 label_tlb_huge_update,
176#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178
Thiemo Seufere30ec452008-01-28 20:05:38 +0000179UASM_L_LA(_second_part)
180UASM_L_LA(_leave)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000181UASM_L_LA(_vmalloc)
182UASM_L_LA(_vmalloc_done)
Ralf Baechle02a54172012-10-13 22:46:26 +0200183/* _tlbw_hazard_x is handled differently. */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000184UASM_L_LA(_split)
David Daney6dd93442010-02-10 15:12:47 -0800185UASM_L_LA(_tlbl_goaround1)
186UASM_L_LA(_tlbl_goaround2)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000187UASM_L_LA(_nopage_tlbl)
188UASM_L_LA(_nopage_tlbs)
189UASM_L_LA(_nopage_tlbm)
190UASM_L_LA(_smp_pgtable_change)
191UASM_L_LA(_r3000_write_probe_fail)
David Daney1ec56322010-04-28 12:16:18 -0700192UASM_L_LA(_large_segbits_fault)
David Daneyaa1762f2012-10-17 00:48:10 +0200193#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -0700194UASM_L_LA(_tlb_huge_update)
195#endif
Atsushi Nemoto656be922006-10-26 00:08:31 +0900196
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000197static int hazard_instance;
Ralf Baechle02a54172012-10-13 22:46:26 +0200198
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000199static void uasm_bgezl_hazard(u32 **p, struct uasm_reloc **r, int instance)
Ralf Baechle02a54172012-10-13 22:46:26 +0200200{
201 switch (instance) {
202 case 0 ... 7:
203 uasm_il_bgezl(p, r, 0, label_tlbw_hazard_0 + instance);
204 return;
205 default:
206 BUG();
207 }
208}
209
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000210static void uasm_bgezl_label(struct uasm_label **l, u32 **p, int instance)
Ralf Baechle02a54172012-10-13 22:46:26 +0200211{
212 switch (instance) {
213 case 0 ... 7:
214 uasm_build_label(l, *p, label_tlbw_hazard_0 + instance);
215 break;
216 default:
217 BUG();
218 }
219}
220
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200221/*
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200222 * pgtable bits are assigned dynamically depending on processor feature
223 * and statically based on kernel configuration. This spits out the actual
Ralf Baechle70342282013-01-22 12:59:30 +0100224 * values the kernel is using. Required to make sense from disassembled
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200225 * TLB exception handlers.
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200226 */
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200227static void output_pgtable_bits_defines(void)
228{
229#define pr_define(fmt, ...) \
230 pr_debug("#define " fmt, ##__VA_ARGS__)
231
232 pr_debug("#include <asm/asm.h>\n");
233 pr_debug("#include <asm/regdef.h>\n");
234 pr_debug("\n");
235
236 pr_define("_PAGE_PRESENT_SHIFT %d\n", _PAGE_PRESENT_SHIFT);
237 pr_define("_PAGE_READ_SHIFT %d\n", _PAGE_READ_SHIFT);
238 pr_define("_PAGE_WRITE_SHIFT %d\n", _PAGE_WRITE_SHIFT);
239 pr_define("_PAGE_ACCESSED_SHIFT %d\n", _PAGE_ACCESSED_SHIFT);
240 pr_define("_PAGE_MODIFIED_SHIFT %d\n", _PAGE_MODIFIED_SHIFT);
Ralf Baechle970d0322012-10-18 13:54:15 +0200241#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200242 pr_define("_PAGE_HUGE_SHIFT %d\n", _PAGE_HUGE_SHIFT);
243#endif
Huacai Chen4f33f6c2016-01-21 21:09:52 +0800244#if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200245 if (cpu_has_rixi) {
246#ifdef _PAGE_NO_EXEC_SHIFT
247 pr_define("_PAGE_NO_EXEC_SHIFT %d\n", _PAGE_NO_EXEC_SHIFT);
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200248 pr_define("_PAGE_NO_READ_SHIFT %d\n", _PAGE_NO_READ_SHIFT);
249#endif
250 }
Steven J. Hillbe0c37c2015-02-26 18:16:37 -0600251#endif
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200252 pr_define("_PAGE_GLOBAL_SHIFT %d\n", _PAGE_GLOBAL_SHIFT);
253 pr_define("_PAGE_VALID_SHIFT %d\n", _PAGE_VALID_SHIFT);
254 pr_define("_PAGE_DIRTY_SHIFT %d\n", _PAGE_DIRTY_SHIFT);
255 pr_define("_PFN_SHIFT %d\n", _PFN_SHIFT);
256 pr_debug("\n");
257}
258
259static inline void dump_handler(const char *symbol, const u32 *handler, int count)
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200260{
261 int i;
262
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200263 pr_debug("LEAF(%s)\n", symbol);
264
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200265 pr_debug("\t.set push\n");
266 pr_debug("\t.set noreorder\n");
267
268 for (i = 0; i < count; i++)
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200269 pr_debug("\t.word\t0x%08x\t\t# %p\n", handler[i], &handler[i]);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200270
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200271 pr_debug("\t.set\tpop\n");
272
273 pr_debug("\tEND(%s)\n", symbol);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/* The only general purpose registers allowed in TLB handlers. */
277#define K0 26
278#define K1 27
279
280/* Some CP0 registers */
Ralf Baechle41c594a2006-04-05 09:45:45 +0100281#define C0_INDEX 0, 0
282#define C0_ENTRYLO0 2, 0
283#define C0_TCBIND 2, 2
284#define C0_ENTRYLO1 3, 0
285#define C0_CONTEXT 4, 0
David Daneyfd062c82009-05-27 17:47:44 -0700286#define C0_PAGEMASK 5, 0
Huacai Chen380cd582016-03-03 09:45:12 +0800287#define C0_PWBASE 5, 5
288#define C0_PWFIELD 5, 6
289#define C0_PWSIZE 5, 7
290#define C0_PWCTL 6, 6
Ralf Baechle41c594a2006-04-05 09:45:45 +0100291#define C0_BADVADDR 8, 0
Huacai Chen380cd582016-03-03 09:45:12 +0800292#define C0_PGD 9, 7
Ralf Baechle41c594a2006-04-05 09:45:45 +0100293#define C0_ENTRYHI 10, 0
294#define C0_EPC 14, 0
295#define C0_XCONTEXT 20, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Ralf Baechle875d43e2005-09-03 15:56:16 -0700297#ifdef CONFIG_64BIT
Thiemo Seufere30ec452008-01-28 20:05:38 +0000298# define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_XCONTEXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299#else
Thiemo Seufere30ec452008-01-28 20:05:38 +0000300# define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_CONTEXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301#endif
302
303/* The worst case length of the handler is around 18 instructions for
304 * R3000-style TLBs and up to 63 instructions for R4000-style TLBs.
305 * Maximum space available is 32 instructions for R3000 and 64
306 * instructions for R4000.
307 *
308 * We deliberately chose a buffer size of 128, so we won't scribble
309 * over anything important on overflow before we panic.
310 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000311static u32 tlb_handler[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313/* simply assume worst case size for labels and relocs */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000314static struct uasm_label labels[128];
315static struct uasm_reloc relocs[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000317static int check_for_high_segbits;
Paul Burton00bf1c62015-09-22 11:42:52 -0700318static bool fill_includes_sw_bits;
David Daney3d8bfdd2010-12-21 14:19:11 -0800319
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000320static unsigned int kscratch_used_mask;
David Daney3d8bfdd2010-12-21 14:19:11 -0800321
Jayachandran C7777b932013-06-11 14:41:35 +0000322static inline int __maybe_unused c0_kscratch(void)
323{
324 switch (current_cpu_type()) {
325 case CPU_XLP:
326 case CPU_XLR:
327 return 22;
328 default:
329 return 31;
330 }
331}
332
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000333static int allocate_kscratch(void)
David Daney3d8bfdd2010-12-21 14:19:11 -0800334{
335 int r;
336 unsigned int a = cpu_data[0].kscratch_mask & ~kscratch_used_mask;
337
338 r = ffs(a);
339
340 if (r == 0)
341 return -1;
342
343 r--; /* make it zero based */
344
345 kscratch_used_mask |= (1 << r);
346
347 return r;
348}
349
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000350static int scratch_reg;
351static int pgd_reg;
David Daney2c8c53e2010-12-27 18:07:57 -0800352enum vmalloc64_mode {not_refill, refill_scratch, refill_noscratch};
David Daney3d8bfdd2010-12-21 14:19:11 -0800353
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000354static struct work_registers build_get_work_registers(u32 **p)
David Daneybf286072011-07-05 16:34:46 -0700355{
356 struct work_registers r;
357
Jayachandran C0e6ecc12013-06-11 14:41:36 +0000358 if (scratch_reg >= 0) {
David Daneybf286072011-07-05 16:34:46 -0700359 /* Save in CPU local C0_KScratch? */
Jayachandran C7777b932013-06-11 14:41:35 +0000360 UASM_i_MTC0(p, 1, c0_kscratch(), scratch_reg);
David Daneybf286072011-07-05 16:34:46 -0700361 r.r1 = K0;
362 r.r2 = K1;
363 r.r3 = 1;
364 return r;
365 }
366
367 if (num_possible_cpus() > 1) {
David Daneybf286072011-07-05 16:34:46 -0700368 /* Get smp_processor_id */
Jayachandran Cc2377a42013-08-11 17:10:16 +0530369 UASM_i_CPUID_MFC0(p, K0, SMP_CPUID_REG);
370 UASM_i_SRL_SAFE(p, K0, K0, SMP_CPUID_REGSHIFT);
David Daneybf286072011-07-05 16:34:46 -0700371
372 /* handler_reg_save index in K0 */
373 UASM_i_SLL(p, K0, K0, ilog2(sizeof(struct tlb_reg_save)));
374
375 UASM_i_LA(p, K1, (long)&handler_reg_save);
376 UASM_i_ADDU(p, K0, K0, K1);
377 } else {
378 UASM_i_LA(p, K0, (long)&handler_reg_save);
379 }
380 /* K0 now points to save area, save $1 and $2 */
381 UASM_i_SW(p, 1, offsetof(struct tlb_reg_save, a), K0);
382 UASM_i_SW(p, 2, offsetof(struct tlb_reg_save, b), K0);
383
384 r.r1 = K1;
385 r.r2 = 1;
386 r.r3 = 2;
387 return r;
388}
389
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000390static void build_restore_work_registers(u32 **p)
David Daneybf286072011-07-05 16:34:46 -0700391{
Jayachandran C0e6ecc12013-06-11 14:41:36 +0000392 if (scratch_reg >= 0) {
Jayachandran C7777b932013-06-11 14:41:35 +0000393 UASM_i_MFC0(p, 1, c0_kscratch(), scratch_reg);
David Daneybf286072011-07-05 16:34:46 -0700394 return;
395 }
396 /* K0 already points to save area, restore $1 and $2 */
397 UASM_i_LW(p, 1, offsetof(struct tlb_reg_save, a), K0);
398 UASM_i_LW(p, 2, offsetof(struct tlb_reg_save, b), K0);
399}
400
David Daney2c8c53e2010-12-27 18:07:57 -0800401#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
402
David Daney82622282009-10-14 12:16:56 -0700403/*
404 * CONFIG_MIPS_PGD_C0_CONTEXT implies 64 bit and lack of pgd_current,
405 * we cannot do r3000 under these circumstances.
David Daney3d8bfdd2010-12-21 14:19:11 -0800406 *
407 * Declare pgd_current here instead of including mmu_context.h to avoid type
408 * conflicts for tlbmiss_handler_setup_pgd
David Daney82622282009-10-14 12:16:56 -0700409 */
David Daney3d8bfdd2010-12-21 14:19:11 -0800410extern unsigned long pgd_current[];
David Daney82622282009-10-14 12:16:56 -0700411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412/*
413 * The R3000 TLB handler is simple.
414 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000415static void build_r3000_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 long pgdc = (long)pgd_current;
418 u32 *p;
419
420 memset(tlb_handler, 0, sizeof(tlb_handler));
421 p = tlb_handler;
422
Thiemo Seufere30ec452008-01-28 20:05:38 +0000423 uasm_i_mfc0(&p, K0, C0_BADVADDR);
424 uasm_i_lui(&p, K1, uasm_rel_hi(pgdc)); /* cp0 delay */
425 uasm_i_lw(&p, K1, uasm_rel_lo(pgdc), K1);
426 uasm_i_srl(&p, K0, K0, 22); /* load delay */
427 uasm_i_sll(&p, K0, K0, 2);
428 uasm_i_addu(&p, K1, K1, K0);
429 uasm_i_mfc0(&p, K0, C0_CONTEXT);
430 uasm_i_lw(&p, K1, 0, K1); /* cp0 delay */
431 uasm_i_andi(&p, K0, K0, 0xffc); /* load delay */
432 uasm_i_addu(&p, K1, K1, K0);
433 uasm_i_lw(&p, K0, 0, K1);
434 uasm_i_nop(&p); /* load delay */
435 uasm_i_mtc0(&p, K0, C0_ENTRYLO0);
436 uasm_i_mfc0(&p, K1, C0_EPC); /* cp0 delay */
437 uasm_i_tlbwr(&p); /* cp0 delay */
438 uasm_i_jr(&p, K1);
439 uasm_i_rfe(&p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 if (p > tlb_handler + 32)
442 panic("TLB refill handler space exceeded");
443
Thiemo Seufere30ec452008-01-28 20:05:38 +0000444 pr_debug("Wrote TLB refill handler (%u instructions).\n",
445 (unsigned int)(p - tlb_handler));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Ralf Baechle91b05e62006-03-29 18:53:00 +0100447 memcpy((void *)ebase, tlb_handler, 0x80);
Leonid Yegoshin10620802014-07-11 15:18:05 -0700448 local_flush_icache_range(ebase, ebase + 0x80);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200449
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200450 dump_handler("r3000_tlb_refill", (u32 *)ebase, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
David Daney82622282009-10-14 12:16:56 -0700452#endif /* CONFIG_MIPS_PGD_C0_CONTEXT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454/*
455 * The R4000 TLB handler is much more complicated. We have two
456 * consecutive handler areas with 32 instructions space each.
457 * Since they aren't used at the same time, we can overflow in the
458 * other one.To keep things simple, we first assume linear space,
459 * then we relocate it to the final handler layout as needed.
460 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000461static u32 final_handler[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463/*
464 * Hazards
465 *
466 * From the IDT errata for the QED RM5230 (Nevada), processor revision 1.0:
467 * 2. A timing hazard exists for the TLBP instruction.
468 *
Ralf Baechle70342282013-01-22 12:59:30 +0100469 * stalling_instruction
470 * TLBP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 *
472 * The JTLB is being read for the TLBP throughout the stall generated by the
473 * previous instruction. This is not really correct as the stalling instruction
474 * can modify the address used to access the JTLB. The failure symptom is that
475 * the TLBP instruction will use an address created for the stalling instruction
476 * and not the address held in C0_ENHI and thus report the wrong results.
477 *
478 * The software work-around is to not allow the instruction preceding the TLBP
479 * to stall - make it an NOP or some other instruction guaranteed not to stall.
480 *
Ralf Baechle70342282013-01-22 12:59:30 +0100481 * Errata 2 will not be fixed. This errata is also on the R5000.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 *
483 * As if we MIPS hackers wouldn't know how to nop pipelines happy ...
484 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000485static void __maybe_unused build_tlb_probe_entry(u32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Ralf Baechle10cc3522007-10-11 23:46:15 +0100487 switch (current_cpu_type()) {
Thomas Bogendoerfer326e2e12008-05-12 13:55:42 +0200488 /* Found by experiment: R4600 v2.0/R4700 needs this, too. */
Thiemo Seuferf5b4d952005-09-09 17:11:50 +0000489 case CPU_R4600:
Thomas Bogendoerfer326e2e12008-05-12 13:55:42 +0200490 case CPU_R4700:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 case CPU_R5000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 case CPU_NEVADA:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000493 uasm_i_nop(p);
494 uasm_i_tlbp(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 break;
496
497 default:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000498 uasm_i_tlbp(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 break;
500 }
501}
502
503/*
504 * Write random or indexed TLB entry, and care about the hazards from
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300505 * the preceding mtc0 and for the following eret.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 */
507enum tlb_write_entry { tlb_random, tlb_indexed };
508
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000509static void build_tlb_write_entry(u32 **p, struct uasm_label **l,
510 struct uasm_reloc **r,
511 enum tlb_write_entry wmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 void(*tlbw)(u32 **) = NULL;
514
515 switch (wmode) {
Thiemo Seufere30ec452008-01-28 20:05:38 +0000516 case tlb_random: tlbw = uasm_i_tlbwr; break;
517 case tlb_indexed: tlbw = uasm_i_tlbwi; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
Ralf Baechle9eaffa82015-03-25 13:18:27 +0100520 if (cpu_has_mips_r2_r6) {
521 if (cpu_has_mips_r2_exec_hazard)
David Daney41f0e4d2009-05-12 12:41:53 -0700522 uasm_i_ehb(p);
Ralf Baechle161548b2008-01-29 10:14:54 +0000523 tlbw(p);
524 return;
525 }
526
Ralf Baechle10cc3522007-10-11 23:46:15 +0100527 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 case CPU_R4000PC:
529 case CPU_R4000SC:
530 case CPU_R4000MC:
531 case CPU_R4400PC:
532 case CPU_R4400SC:
533 case CPU_R4400MC:
534 /*
535 * This branch uses up a mtc0 hazard nop slot and saves
536 * two nops after the tlbw instruction.
537 */
Ralf Baechle02a54172012-10-13 22:46:26 +0200538 uasm_bgezl_hazard(p, r, hazard_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 tlbw(p);
Ralf Baechle02a54172012-10-13 22:46:26 +0200540 uasm_bgezl_label(l, p, hazard_instance);
541 hazard_instance++;
Thiemo Seufere30ec452008-01-28 20:05:38 +0000542 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 break;
544
545 case CPU_R4600:
546 case CPU_R4700:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000547 uasm_i_nop(p);
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000548 tlbw(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000549 uasm_i_nop(p);
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000550 break;
551
Ralf Baechle359187d2012-10-16 22:13:06 +0200552 case CPU_R5000:
Ralf Baechle359187d2012-10-16 22:13:06 +0200553 case CPU_NEVADA:
554 uasm_i_nop(p); /* QED specifies 2 nops hazard */
555 uasm_i_nop(p); /* QED specifies 2 nops hazard */
556 tlbw(p);
557 break;
558
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000559 case CPU_R4300:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 case CPU_5KC:
561 case CPU_TX49XX:
Pete Popovbdf21b12005-07-14 17:47:57 +0000562 case CPU_PR4450:
Jayachandran Cefa0f812011-05-07 01:36:21 +0530563 case CPU_XLR:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000564 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 tlbw(p);
566 break;
567
568 case CPU_R10000:
569 case CPU_R12000:
Kumba44d921b2006-05-16 22:23:59 -0400570 case CPU_R14000:
Joshua Kinard30577392015-01-21 07:59:45 -0500571 case CPU_R16000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 case CPU_4KC:
Thomas Bogendoerferb1ec4c82008-03-26 16:42:54 +0100573 case CPU_4KEC:
Steven J. Hill113c62d2012-07-06 23:56:00 +0200574 case CPU_M14KC:
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000575 case CPU_M14KEC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 case CPU_SB1:
Andrew Isaacson93ce2f522005-10-19 23:56:20 -0700577 case CPU_SB1A:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 case CPU_4KSC:
579 case CPU_20KC:
580 case CPU_25KF:
Kevin Cernekee602977b2010-10-16 14:22:30 -0700581 case CPU_BMIPS32:
582 case CPU_BMIPS3300:
583 case CPU_BMIPS4350:
584 case CPU_BMIPS4380:
585 case CPU_BMIPS5000:
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800586 case CPU_LOONGSON2:
Huacai Chenc579d312014-03-21 18:44:00 +0800587 case CPU_LOONGSON3:
Shinya Kuribayashia644b272009-03-03 18:05:51 +0900588 case CPU_R5500:
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +0100589 if (m4kc_tlbp_war())
Thiemo Seufere30ec452008-01-28 20:05:38 +0000590 uasm_i_nop(p);
Manuel Lauss2f794d02009-03-25 17:49:30 +0100591 case CPU_ALCHEMY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 tlbw(p);
593 break;
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 case CPU_RM7000:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000596 uasm_i_nop(p);
597 uasm_i_nop(p);
598 uasm_i_nop(p);
599 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 tlbw(p);
601 break;
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 case CPU_VR4111:
604 case CPU_VR4121:
605 case CPU_VR4122:
606 case CPU_VR4181:
607 case CPU_VR4181A:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000608 uasm_i_nop(p);
609 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 tlbw(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000611 uasm_i_nop(p);
612 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 break;
614
615 case CPU_VR4131:
616 case CPU_VR4133:
Ralf Baechle7623deb2005-08-29 16:49:55 +0000617 case CPU_R5432:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000618 uasm_i_nop(p);
619 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 tlbw(p);
621 break;
622
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +0000623 case CPU_JZRISC:
624 tlbw(p);
625 uasm_i_nop(p);
626 break;
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 default:
629 panic("No TLB refill handler yet (CPU type: %d)",
Wu Zhangjind7b12052010-12-26 04:42:37 +0800630 current_cpu_type());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
632 }
633}
634
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000635static __maybe_unused void build_convert_pte_to_entrylo(u32 **p,
636 unsigned int reg)
David Daney6dd93442010-02-10 15:12:47 -0800637{
Paul Burton00bf1c62015-09-22 11:42:52 -0700638 if (cpu_has_rixi && _PAGE_NO_EXEC) {
639 if (fill_includes_sw_bits) {
640 UASM_i_ROTR(p, reg, reg, ilog2(_PAGE_GLOBAL));
641 } else {
642 UASM_i_SRL(p, reg, reg, ilog2(_PAGE_NO_EXEC));
643 UASM_i_ROTR(p, reg, reg,
644 ilog2(_PAGE_GLOBAL) - ilog2(_PAGE_NO_EXEC));
645 }
David Daney6dd93442010-02-10 15:12:47 -0800646 } else {
Ralf Baechle34adb282014-11-22 00:16:48 +0100647#ifdef CONFIG_PHYS_ADDR_T_64BIT
David Daney3be60222010-04-28 12:16:17 -0700648 uasm_i_dsrl_safe(p, reg, reg, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -0800649#else
650 UASM_i_SRL(p, reg, reg, ilog2(_PAGE_GLOBAL));
651#endif
652 }
653}
654
David Daneyaa1762f2012-10-17 00:48:10 +0200655#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daney6dd93442010-02-10 15:12:47 -0800656
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000657static void build_restore_pagemask(u32 **p, struct uasm_reloc **r,
658 unsigned int tmp, enum label_id lid,
659 int restore_scratch)
David Daney6dd93442010-02-10 15:12:47 -0800660{
David Daney2c8c53e2010-12-27 18:07:57 -0800661 if (restore_scratch) {
662 /* Reset default page size */
663 if (PM_DEFAULT_MASK >> 16) {
664 uasm_i_lui(p, tmp, PM_DEFAULT_MASK >> 16);
665 uasm_i_ori(p, tmp, tmp, PM_DEFAULT_MASK & 0xffff);
666 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
667 uasm_il_b(p, r, lid);
668 } else if (PM_DEFAULT_MASK) {
669 uasm_i_ori(p, tmp, 0, PM_DEFAULT_MASK);
670 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
671 uasm_il_b(p, r, lid);
672 } else {
673 uasm_i_mtc0(p, 0, C0_PAGEMASK);
674 uasm_il_b(p, r, lid);
675 }
Jayachandran C0e6ecc12013-06-11 14:41:36 +0000676 if (scratch_reg >= 0)
Jayachandran C7777b932013-06-11 14:41:35 +0000677 UASM_i_MFC0(p, 1, c0_kscratch(), scratch_reg);
David Daney2c8c53e2010-12-27 18:07:57 -0800678 else
679 UASM_i_LW(p, 1, scratchpad_offset(0), 0);
David Daney6dd93442010-02-10 15:12:47 -0800680 } else {
David Daney2c8c53e2010-12-27 18:07:57 -0800681 /* Reset default page size */
682 if (PM_DEFAULT_MASK >> 16) {
683 uasm_i_lui(p, tmp, PM_DEFAULT_MASK >> 16);
684 uasm_i_ori(p, tmp, tmp, PM_DEFAULT_MASK & 0xffff);
685 uasm_il_b(p, r, lid);
686 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
687 } else if (PM_DEFAULT_MASK) {
688 uasm_i_ori(p, tmp, 0, PM_DEFAULT_MASK);
689 uasm_il_b(p, r, lid);
690 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
691 } else {
692 uasm_il_b(p, r, lid);
693 uasm_i_mtc0(p, 0, C0_PAGEMASK);
694 }
David Daney6dd93442010-02-10 15:12:47 -0800695 }
696}
697
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000698static void build_huge_tlb_write_entry(u32 **p, struct uasm_label **l,
699 struct uasm_reloc **r,
700 unsigned int tmp,
701 enum tlb_write_entry wmode,
702 int restore_scratch)
David Daneyfd062c82009-05-27 17:47:44 -0700703{
704 /* Set huge page tlb entry size */
705 uasm_i_lui(p, tmp, PM_HUGE_MASK >> 16);
706 uasm_i_ori(p, tmp, tmp, PM_HUGE_MASK & 0xffff);
707 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
708
709 build_tlb_write_entry(p, l, r, wmode);
710
David Daney2c8c53e2010-12-27 18:07:57 -0800711 build_restore_pagemask(p, r, tmp, label_leave, restore_scratch);
David Daneyfd062c82009-05-27 17:47:44 -0700712}
713
714/*
715 * Check if Huge PTE is present, if so then jump to LABEL.
716 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000717static void
David Daneyfd062c82009-05-27 17:47:44 -0700718build_is_huge_pte(u32 **p, struct uasm_reloc **r, unsigned int tmp,
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000719 unsigned int pmd, int lid)
David Daneyfd062c82009-05-27 17:47:44 -0700720{
721 UASM_i_LW(p, tmp, 0, pmd);
David Daneycc33ae42010-12-20 15:54:50 -0800722 if (use_bbit_insns()) {
723 uasm_il_bbit1(p, r, tmp, ilog2(_PAGE_HUGE), lid);
724 } else {
725 uasm_i_andi(p, tmp, tmp, _PAGE_HUGE);
726 uasm_il_bnez(p, r, tmp, lid);
727 }
David Daneyfd062c82009-05-27 17:47:44 -0700728}
729
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000730static void build_huge_update_entries(u32 **p, unsigned int pte,
731 unsigned int tmp)
David Daneyfd062c82009-05-27 17:47:44 -0700732{
733 int small_sequence;
734
735 /*
736 * A huge PTE describes an area the size of the
737 * configured huge page size. This is twice the
738 * of the large TLB entry size we intend to use.
739 * A TLB entry half the size of the configured
740 * huge page size is configured into entrylo0
741 * and entrylo1 to cover the contiguous huge PTE
742 * address space.
743 */
744 small_sequence = (HPAGE_SIZE >> 7) < 0x10000;
745
Ralf Baechle70342282013-01-22 12:59:30 +0100746 /* We can clobber tmp. It isn't used after this.*/
David Daneyfd062c82009-05-27 17:47:44 -0700747 if (!small_sequence)
748 uasm_i_lui(p, tmp, HPAGE_SIZE >> (7 + 16));
749
David Daney6dd93442010-02-10 15:12:47 -0800750 build_convert_pte_to_entrylo(p, pte);
David Daney9b8c3892010-02-10 15:12:44 -0800751 UASM_i_MTC0(p, pte, C0_ENTRYLO0); /* load it */
David Daneyfd062c82009-05-27 17:47:44 -0700752 /* convert to entrylo1 */
753 if (small_sequence)
754 UASM_i_ADDIU(p, pte, pte, HPAGE_SIZE >> 7);
755 else
756 UASM_i_ADDU(p, pte, pte, tmp);
757
David Daney9b8c3892010-02-10 15:12:44 -0800758 UASM_i_MTC0(p, pte, C0_ENTRYLO1); /* load it */
David Daneyfd062c82009-05-27 17:47:44 -0700759}
760
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000761static void build_huge_handler_tail(u32 **p, struct uasm_reloc **r,
762 struct uasm_label **l,
763 unsigned int pte,
764 unsigned int ptr)
David Daneyfd062c82009-05-27 17:47:44 -0700765{
766#ifdef CONFIG_SMP
767 UASM_i_SC(p, pte, 0, ptr);
768 uasm_il_beqz(p, r, pte, label_tlb_huge_update);
769 UASM_i_LW(p, pte, 0, ptr); /* Needed because SC killed our PTE */
770#else
771 UASM_i_SW(p, pte, 0, ptr);
772#endif
773 build_huge_update_entries(p, pte, ptr);
David Daney2c8c53e2010-12-27 18:07:57 -0800774 build_huge_tlb_write_entry(p, l, r, pte, tlb_indexed, 0);
David Daneyfd062c82009-05-27 17:47:44 -0700775}
David Daneyaa1762f2012-10-17 00:48:10 +0200776#endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */
David Daneyfd062c82009-05-27 17:47:44 -0700777
Ralf Baechle875d43e2005-09-03 15:56:16 -0700778#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779/*
780 * TMP and PTR are scratch.
781 * TMP will be clobbered, PTR will hold the pmd entry.
782 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000783static void
Thiemo Seufere30ec452008-01-28 20:05:38 +0000784build_get_pmde64(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 unsigned int tmp, unsigned int ptr)
786{
David Daney82622282009-10-14 12:16:56 -0700787#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 long pgdc = (long)pgd_current;
David Daney82622282009-10-14 12:16:56 -0700789#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*
791 * The vmalloc handling is not in the hotpath.
792 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000793 uasm_i_dmfc0(p, tmp, C0_BADVADDR);
David Daney1ec56322010-04-28 12:16:18 -0700794
795 if (check_for_high_segbits) {
796 /*
797 * The kernel currently implicitely assumes that the
798 * MIPS SEGBITS parameter for the processor is
799 * (PGDIR_SHIFT+PGDIR_BITS) or less, and will never
800 * allocate virtual addresses outside the maximum
801 * range for SEGBITS = (PGDIR_SHIFT+PGDIR_BITS). But
802 * that doesn't prevent user code from accessing the
803 * higher xuseg addresses. Here, we make sure that
804 * everything but the lower xuseg addresses goes down
805 * the module_alloc/vmalloc path.
806 */
807 uasm_i_dsrl_safe(p, ptr, tmp, PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
808 uasm_il_bnez(p, r, ptr, label_vmalloc);
809 } else {
810 uasm_il_bltz(p, r, tmp, label_vmalloc);
811 }
Thiemo Seufere30ec452008-01-28 20:05:38 +0000812 /* No uasm_i_nop needed here, since the next insn doesn't touch TMP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
David Daney3d8bfdd2010-12-21 14:19:11 -0800814 if (pgd_reg != -1) {
815 /* pgd is in pgd_reg */
Huacai Chen380cd582016-03-03 09:45:12 +0800816 if (cpu_has_ldpte)
817 UASM_i_MFC0(p, ptr, C0_PWBASE);
818 else
819 UASM_i_MFC0(p, ptr, c0_kscratch(), pgd_reg);
David Daney3d8bfdd2010-12-21 14:19:11 -0800820 } else {
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530821#if defined(CONFIG_MIPS_PGD_C0_CONTEXT)
David Daney3d8bfdd2010-12-21 14:19:11 -0800822 /*
823 * &pgd << 11 stored in CONTEXT [23..63].
824 */
825 UASM_i_MFC0(p, ptr, C0_CONTEXT);
826
827 /* Clear lower 23 bits of context. */
828 uasm_i_dins(p, ptr, 0, 0, 23);
829
Ralf Baechle70342282013-01-22 12:59:30 +0100830 /* 1 0 1 0 1 << 6 xkphys cached */
David Daney3d8bfdd2010-12-21 14:19:11 -0800831 uasm_i_ori(p, ptr, ptr, 0x540);
832 uasm_i_drotr(p, ptr, ptr, 11);
David Daney82622282009-10-14 12:16:56 -0700833#elif defined(CONFIG_SMP)
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530834 UASM_i_CPUID_MFC0(p, ptr, SMP_CPUID_REG);
835 uasm_i_dsrl_safe(p, ptr, ptr, SMP_CPUID_PTRSHIFT);
836 UASM_i_LA_mostly(p, tmp, pgdc);
837 uasm_i_daddu(p, ptr, ptr, tmp);
838 uasm_i_dmfc0(p, tmp, C0_BADVADDR);
839 uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840#else
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530841 UASM_i_LA_mostly(p, ptr, pgdc);
842 uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843#endif
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Thiemo Seufere30ec452008-01-28 20:05:38 +0000846 uasm_l_vmalloc_done(l, *p);
Ralf Baechle242954b2006-10-24 02:29:01 +0100847
David Daney3be60222010-04-28 12:16:17 -0700848 /* get pgd offset in bytes */
849 uasm_i_dsrl_safe(p, tmp, tmp, PGDIR_SHIFT - 3);
Ralf Baechle242954b2006-10-24 02:29:01 +0100850
Thiemo Seufere30ec452008-01-28 20:05:38 +0000851 uasm_i_andi(p, tmp, tmp, (PTRS_PER_PGD - 1)<<3);
852 uasm_i_daddu(p, ptr, ptr, tmp); /* add in pgd offset */
David Daney325f8a02009-12-04 13:52:36 -0800853#ifndef __PAGETABLE_PMD_FOLDED
Thiemo Seufere30ec452008-01-28 20:05:38 +0000854 uasm_i_dmfc0(p, tmp, C0_BADVADDR); /* get faulting address */
855 uasm_i_ld(p, ptr, 0, ptr); /* get pmd pointer */
David Daney3be60222010-04-28 12:16:17 -0700856 uasm_i_dsrl_safe(p, tmp, tmp, PMD_SHIFT-3); /* get pmd offset in bytes */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000857 uasm_i_andi(p, tmp, tmp, (PTRS_PER_PMD - 1)<<3);
858 uasm_i_daddu(p, ptr, ptr, tmp); /* add in pmd offset */
David Daney325f8a02009-12-04 13:52:36 -0800859#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
861
862/*
863 * BVADDR is the faulting address, PTR is scratch.
864 * PTR will hold the pgd for vmalloc.
865 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000866static void
Thiemo Seufere30ec452008-01-28 20:05:38 +0000867build_get_pgd_vmalloc64(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
David Daney1ec56322010-04-28 12:16:18 -0700868 unsigned int bvaddr, unsigned int ptr,
869 enum vmalloc64_mode mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
871 long swpd = (long)swapper_pg_dir;
David Daney1ec56322010-04-28 12:16:18 -0700872 int single_insn_swpd;
873 int did_vmalloc_branch = 0;
874
875 single_insn_swpd = uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Thiemo Seufere30ec452008-01-28 20:05:38 +0000877 uasm_l_vmalloc(l, *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
David Daney2c8c53e2010-12-27 18:07:57 -0800879 if (mode != not_refill && check_for_high_segbits) {
David Daney1ec56322010-04-28 12:16:18 -0700880 if (single_insn_swpd) {
881 uasm_il_bltz(p, r, bvaddr, label_vmalloc_done);
882 uasm_i_lui(p, ptr, uasm_rel_hi(swpd));
883 did_vmalloc_branch = 1;
884 /* fall through */
885 } else {
886 uasm_il_bgez(p, r, bvaddr, label_large_segbits_fault);
887 }
888 }
889 if (!did_vmalloc_branch) {
890 if (uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd)) {
891 uasm_il_b(p, r, label_vmalloc_done);
892 uasm_i_lui(p, ptr, uasm_rel_hi(swpd));
893 } else {
894 UASM_i_LA_mostly(p, ptr, swpd);
895 uasm_il_b(p, r, label_vmalloc_done);
896 if (uasm_in_compat_space_p(swpd))
897 uasm_i_addiu(p, ptr, ptr, uasm_rel_lo(swpd));
898 else
899 uasm_i_daddiu(p, ptr, ptr, uasm_rel_lo(swpd));
900 }
901 }
David Daney2c8c53e2010-12-27 18:07:57 -0800902 if (mode != not_refill && check_for_high_segbits) {
David Daney1ec56322010-04-28 12:16:18 -0700903 uasm_l_large_segbits_fault(l, *p);
904 /*
905 * We get here if we are an xsseg address, or if we are
906 * an xuseg address above (PGDIR_SHIFT+PGDIR_BITS) boundary.
907 *
908 * Ignoring xsseg (assume disabled so would generate
909 * (address errors?), the only remaining possibility
910 * is the upper xuseg addresses. On processors with
911 * TLB_SEGBITS <= PGDIR_SHIFT+PGDIR_BITS, these
912 * addresses would have taken an address error. We try
913 * to mimic that here by taking a load/istream page
914 * fault.
915 */
916 UASM_i_LA(p, ptr, (unsigned long)tlb_do_page_fault_0);
917 uasm_i_jr(p, ptr);
David Daney2c8c53e2010-12-27 18:07:57 -0800918
919 if (mode == refill_scratch) {
Jayachandran C0e6ecc12013-06-11 14:41:36 +0000920 if (scratch_reg >= 0)
Jayachandran C7777b932013-06-11 14:41:35 +0000921 UASM_i_MFC0(p, 1, c0_kscratch(), scratch_reg);
David Daney2c8c53e2010-12-27 18:07:57 -0800922 else
923 UASM_i_LW(p, 1, scratchpad_offset(0), 0);
924 } else {
925 uasm_i_nop(p);
926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
928}
929
Ralf Baechle875d43e2005-09-03 15:56:16 -0700930#else /* !CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932/*
933 * TMP and PTR are scratch.
934 * TMP will be clobbered, PTR will hold the pgd entry.
935 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000936static void __maybe_unused
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr)
938{
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530939 if (pgd_reg != -1) {
940 /* pgd is in pgd_reg */
941 uasm_i_mfc0(p, ptr, c0_kscratch(), pgd_reg);
942 uasm_i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */
943 } else {
944 long pgdc = (long)pgd_current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530946 /* 32 bit SMP has smp_processor_id() stored in CONTEXT. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947#ifdef CONFIG_SMP
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530948 uasm_i_mfc0(p, ptr, SMP_CPUID_REG);
949 UASM_i_LA_mostly(p, tmp, pgdc);
950 uasm_i_srl(p, ptr, ptr, SMP_CPUID_PTRSHIFT);
951 uasm_i_addu(p, ptr, tmp, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952#else
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530953 UASM_i_LA_mostly(p, ptr, pgdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954#endif
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530955 uasm_i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */
956 uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr);
957 }
Thiemo Seufere30ec452008-01-28 20:05:38 +0000958 uasm_i_srl(p, tmp, tmp, PGDIR_SHIFT); /* get pgd only bits */
959 uasm_i_sll(p, tmp, tmp, PGD_T_LOG2);
960 uasm_i_addu(p, ptr, ptr, tmp); /* add in pgd offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Ralf Baechle875d43e2005-09-03 15:56:16 -0700963#endif /* !CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000965static void build_adjust_context(u32 **p, unsigned int ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Ralf Baechle242954b2006-10-24 02:29:01 +0100967 unsigned int shift = 4 - (PTE_T_LOG2 + 1) + PAGE_SHIFT - 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 unsigned int mask = (PTRS_PER_PTE / 2 - 1) << (PTE_T_LOG2 + 1);
969
Ralf Baechle10cc3522007-10-11 23:46:15 +0100970 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 case CPU_VR41XX:
972 case CPU_VR4111:
973 case CPU_VR4121:
974 case CPU_VR4122:
975 case CPU_VR4131:
976 case CPU_VR4181:
977 case CPU_VR4181A:
978 case CPU_VR4133:
979 shift += 2;
980 break;
981
982 default:
983 break;
984 }
985
986 if (shift)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000987 UASM_i_SRL(p, ctx, ctx, shift);
988 uasm_i_andi(p, ctx, ctx, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000991static void build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 /*
994 * Bug workaround for the Nevada. It seems as if under certain
995 * circumstances the move from cp0_context might produce a
996 * bogus result when the mfc0 instruction and its consumer are
997 * in a different cacheline or a load instruction, probably any
998 * memory reference, is between them.
999 */
Ralf Baechle10cc3522007-10-11 23:46:15 +01001000 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 case CPU_NEVADA:
Thiemo Seufere30ec452008-01-28 20:05:38 +00001002 UASM_i_LW(p, ptr, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 GET_CONTEXT(p, tmp); /* get context reg */
1004 break;
1005
1006 default:
1007 GET_CONTEXT(p, tmp); /* get context reg */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001008 UASM_i_LW(p, ptr, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 break;
1010 }
1011
1012 build_adjust_context(p, tmp);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001013 UASM_i_ADDU(p, ptr, ptr, tmp); /* add in offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
1015
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001016static void build_update_entries(u32 **p, unsigned int tmp, unsigned int ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
1018 /*
1019 * 64bit address support (36bit on a 32bit CPU) in a 32bit
1020 * Kernel is a special case. Only a few CPUs use it.
1021 */
Paul Burtonc6765892015-09-22 11:42:50 -07001022 if (config_enabled(CONFIG_PHYS_ADDR_T_64BIT) && !cpu_has_64bits) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 int pte_off_even = sizeof(pte_t) / 2;
1024 int pte_off_odd = pte_off_even + sizeof(pte_t);
Steven J. Hillc5b36782015-02-26 18:16:38 -06001025#ifdef CONFIG_XPA
1026 const int scratch = 1; /* Our extra working register */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Steven J. Hillc5b36782015-02-26 18:16:38 -06001028 uasm_i_addu(p, scratch, 0, ptep);
1029#endif
1030 uasm_i_lw(p, tmp, pte_off_even, ptep); /* even pte */
1031 uasm_i_lw(p, ptep, pte_off_odd, ptep); /* odd pte */
1032 UASM_i_ROTR(p, tmp, tmp, ilog2(_PAGE_GLOBAL));
1033 UASM_i_ROTR(p, ptep, ptep, ilog2(_PAGE_GLOBAL));
1034 UASM_i_MTC0(p, tmp, C0_ENTRYLO0);
1035 UASM_i_MTC0(p, ptep, C0_ENTRYLO1);
1036#ifdef CONFIG_XPA
1037 uasm_i_lw(p, tmp, 0, scratch);
1038 uasm_i_lw(p, ptep, sizeof(pte_t), scratch);
1039 uasm_i_lui(p, scratch, 0xff);
1040 uasm_i_ori(p, scratch, scratch, 0xffff);
1041 uasm_i_and(p, tmp, scratch, tmp);
1042 uasm_i_and(p, ptep, scratch, ptep);
1043 uasm_i_mthc0(p, tmp, C0_ENTRYLO0);
1044 uasm_i_mthc0(p, ptep, C0_ENTRYLO1);
1045#endif
Paul Burtonc6765892015-09-22 11:42:50 -07001046 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
Paul Burtonc6765892015-09-22 11:42:50 -07001048
Thiemo Seufere30ec452008-01-28 20:05:38 +00001049 UASM_i_LW(p, tmp, 0, ptep); /* get even pte */
1050 UASM_i_LW(p, ptep, sizeof(pte_t), ptep); /* get odd pte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (r45k_bvahwbug())
1052 build_tlb_probe_entry(p);
Paul Burton974a0b62015-09-22 11:42:49 -07001053 build_convert_pte_to_entrylo(p, tmp);
1054 if (r4k_250MHZhwbug())
1055 UASM_i_MTC0(p, 0, C0_ENTRYLO0);
1056 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
1057 build_convert_pte_to_entrylo(p, ptep);
1058 if (r45k_bvahwbug())
1059 uasm_i_mfc0(p, tmp, C0_INDEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (r4k_250MHZhwbug())
David Daney9b8c3892010-02-10 15:12:44 -08001061 UASM_i_MTC0(p, 0, C0_ENTRYLO1);
1062 UASM_i_MTC0(p, ptep, C0_ENTRYLO1); /* load it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
David Daney2c8c53e2010-12-27 18:07:57 -08001065struct mips_huge_tlb_info {
1066 int huge_pte;
1067 int restore_scratch;
David Daney9e0f1622014-10-20 15:34:23 -07001068 bool need_reload_pte;
David Daney2c8c53e2010-12-27 18:07:57 -08001069};
1070
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001071static struct mips_huge_tlb_info
David Daney2c8c53e2010-12-27 18:07:57 -08001072build_fast_tlb_refill_handler (u32 **p, struct uasm_label **l,
1073 struct uasm_reloc **r, unsigned int tmp,
Jayachandran C7777b932013-06-11 14:41:35 +00001074 unsigned int ptr, int c0_scratch_reg)
David Daney2c8c53e2010-12-27 18:07:57 -08001075{
1076 struct mips_huge_tlb_info rv;
1077 unsigned int even, odd;
1078 int vmalloc_branch_delay_filled = 0;
1079 const int scratch = 1; /* Our extra working register */
1080
1081 rv.huge_pte = scratch;
1082 rv.restore_scratch = 0;
David Daney9e0f1622014-10-20 15:34:23 -07001083 rv.need_reload_pte = false;
David Daney2c8c53e2010-12-27 18:07:57 -08001084
1085 if (check_for_high_segbits) {
1086 UASM_i_MFC0(p, tmp, C0_BADVADDR);
1087
1088 if (pgd_reg != -1)
Jayachandran C7777b932013-06-11 14:41:35 +00001089 UASM_i_MFC0(p, ptr, c0_kscratch(), pgd_reg);
David Daney2c8c53e2010-12-27 18:07:57 -08001090 else
1091 UASM_i_MFC0(p, ptr, C0_CONTEXT);
1092
Jayachandran C7777b932013-06-11 14:41:35 +00001093 if (c0_scratch_reg >= 0)
1094 UASM_i_MTC0(p, scratch, c0_kscratch(), c0_scratch_reg);
David Daney2c8c53e2010-12-27 18:07:57 -08001095 else
1096 UASM_i_SW(p, scratch, scratchpad_offset(0), 0);
1097
1098 uasm_i_dsrl_safe(p, scratch, tmp,
1099 PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
1100 uasm_il_bnez(p, r, scratch, label_vmalloc);
1101
1102 if (pgd_reg == -1) {
1103 vmalloc_branch_delay_filled = 1;
1104 /* Clear lower 23 bits of context. */
1105 uasm_i_dins(p, ptr, 0, 0, 23);
1106 }
1107 } else {
1108 if (pgd_reg != -1)
Jayachandran C7777b932013-06-11 14:41:35 +00001109 UASM_i_MFC0(p, ptr, c0_kscratch(), pgd_reg);
David Daney2c8c53e2010-12-27 18:07:57 -08001110 else
1111 UASM_i_MFC0(p, ptr, C0_CONTEXT);
1112
1113 UASM_i_MFC0(p, tmp, C0_BADVADDR);
1114
Jayachandran C7777b932013-06-11 14:41:35 +00001115 if (c0_scratch_reg >= 0)
1116 UASM_i_MTC0(p, scratch, c0_kscratch(), c0_scratch_reg);
David Daney2c8c53e2010-12-27 18:07:57 -08001117 else
1118 UASM_i_SW(p, scratch, scratchpad_offset(0), 0);
1119
1120 if (pgd_reg == -1)
1121 /* Clear lower 23 bits of context. */
1122 uasm_i_dins(p, ptr, 0, 0, 23);
1123
1124 uasm_il_bltz(p, r, tmp, label_vmalloc);
1125 }
1126
1127 if (pgd_reg == -1) {
1128 vmalloc_branch_delay_filled = 1;
Ralf Baechle70342282013-01-22 12:59:30 +01001129 /* 1 0 1 0 1 << 6 xkphys cached */
David Daney2c8c53e2010-12-27 18:07:57 -08001130 uasm_i_ori(p, ptr, ptr, 0x540);
1131 uasm_i_drotr(p, ptr, ptr, 11);
1132 }
1133
1134#ifdef __PAGETABLE_PMD_FOLDED
1135#define LOC_PTEP scratch
1136#else
1137#define LOC_PTEP ptr
1138#endif
1139
1140 if (!vmalloc_branch_delay_filled)
1141 /* get pgd offset in bytes */
1142 uasm_i_dsrl_safe(p, scratch, tmp, PGDIR_SHIFT - 3);
1143
1144 uasm_l_vmalloc_done(l, *p);
1145
1146 /*
Ralf Baechle70342282013-01-22 12:59:30 +01001147 * tmp ptr
1148 * fall-through case = badvaddr *pgd_current
1149 * vmalloc case = badvaddr swapper_pg_dir
David Daney2c8c53e2010-12-27 18:07:57 -08001150 */
1151
1152 if (vmalloc_branch_delay_filled)
1153 /* get pgd offset in bytes */
1154 uasm_i_dsrl_safe(p, scratch, tmp, PGDIR_SHIFT - 3);
1155
1156#ifdef __PAGETABLE_PMD_FOLDED
1157 GET_CONTEXT(p, tmp); /* get context reg */
1158#endif
1159 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PGD - 1) << 3);
1160
1161 if (use_lwx_insns()) {
1162 UASM_i_LWX(p, LOC_PTEP, scratch, ptr);
1163 } else {
1164 uasm_i_daddu(p, ptr, ptr, scratch); /* add in pgd offset */
1165 uasm_i_ld(p, LOC_PTEP, 0, ptr); /* get pmd pointer */
1166 }
1167
1168#ifndef __PAGETABLE_PMD_FOLDED
1169 /* get pmd offset in bytes */
1170 uasm_i_dsrl_safe(p, scratch, tmp, PMD_SHIFT - 3);
1171 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PMD - 1) << 3);
1172 GET_CONTEXT(p, tmp); /* get context reg */
1173
1174 if (use_lwx_insns()) {
1175 UASM_i_LWX(p, scratch, scratch, ptr);
1176 } else {
1177 uasm_i_daddu(p, ptr, ptr, scratch); /* add in pmd offset */
1178 UASM_i_LW(p, scratch, 0, ptr);
1179 }
1180#endif
1181 /* Adjust the context during the load latency. */
1182 build_adjust_context(p, tmp);
1183
David Daneyaa1762f2012-10-17 00:48:10 +02001184#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daney2c8c53e2010-12-27 18:07:57 -08001185 uasm_il_bbit1(p, r, scratch, ilog2(_PAGE_HUGE), label_tlb_huge_update);
1186 /*
1187 * The in the LWX case we don't want to do the load in the
Ralf Baechle70342282013-01-22 12:59:30 +01001188 * delay slot. It cannot issue in the same cycle and may be
David Daney2c8c53e2010-12-27 18:07:57 -08001189 * speculative and unneeded.
1190 */
1191 if (use_lwx_insns())
1192 uasm_i_nop(p);
David Daneyaa1762f2012-10-17 00:48:10 +02001193#endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */
David Daney2c8c53e2010-12-27 18:07:57 -08001194
1195
1196 /* build_update_entries */
1197 if (use_lwx_insns()) {
1198 even = ptr;
1199 odd = tmp;
1200 UASM_i_LWX(p, even, scratch, tmp);
1201 UASM_i_ADDIU(p, tmp, tmp, sizeof(pte_t));
1202 UASM_i_LWX(p, odd, scratch, tmp);
1203 } else {
1204 UASM_i_ADDU(p, ptr, scratch, tmp); /* add in offset */
1205 even = tmp;
1206 odd = ptr;
1207 UASM_i_LW(p, even, 0, ptr); /* get even pte */
1208 UASM_i_LW(p, odd, sizeof(pte_t), ptr); /* get odd pte */
1209 }
Steven J. Hill05857c62012-09-13 16:51:46 -05001210 if (cpu_has_rixi) {
David Daney748e7872012-08-23 10:02:03 -07001211 uasm_i_drotr(p, even, even, ilog2(_PAGE_GLOBAL));
David Daney2c8c53e2010-12-27 18:07:57 -08001212 UASM_i_MTC0(p, even, C0_ENTRYLO0); /* load it */
David Daney748e7872012-08-23 10:02:03 -07001213 uasm_i_drotr(p, odd, odd, ilog2(_PAGE_GLOBAL));
David Daney2c8c53e2010-12-27 18:07:57 -08001214 } else {
1215 uasm_i_dsrl_safe(p, even, even, ilog2(_PAGE_GLOBAL));
1216 UASM_i_MTC0(p, even, C0_ENTRYLO0); /* load it */
1217 uasm_i_dsrl_safe(p, odd, odd, ilog2(_PAGE_GLOBAL));
1218 }
1219 UASM_i_MTC0(p, odd, C0_ENTRYLO1); /* load it */
1220
Jayachandran C7777b932013-06-11 14:41:35 +00001221 if (c0_scratch_reg >= 0) {
1222 UASM_i_MFC0(p, scratch, c0_kscratch(), c0_scratch_reg);
David Daney2c8c53e2010-12-27 18:07:57 -08001223 build_tlb_write_entry(p, l, r, tlb_random);
1224 uasm_l_leave(l, *p);
1225 rv.restore_scratch = 1;
1226 } else if (PAGE_SHIFT == 14 || PAGE_SHIFT == 13) {
1227 build_tlb_write_entry(p, l, r, tlb_random);
1228 uasm_l_leave(l, *p);
1229 UASM_i_LW(p, scratch, scratchpad_offset(0), 0);
1230 } else {
1231 UASM_i_LW(p, scratch, scratchpad_offset(0), 0);
1232 build_tlb_write_entry(p, l, r, tlb_random);
1233 uasm_l_leave(l, *p);
1234 rv.restore_scratch = 1;
1235 }
1236
1237 uasm_i_eret(p); /* return from trap */
1238
1239 return rv;
1240}
1241
David Daneye6f72d32009-05-20 11:40:58 -07001242/*
1243 * For a 64-bit kernel, we are using the 64-bit XTLB refill exception
1244 * because EXL == 0. If we wrap, we can also use the 32 instruction
1245 * slots before the XTLB refill exception handler which belong to the
1246 * unused TLB refill exception.
1247 */
1248#define MIPS64_REFILL_INSNS 32
1249
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001250static void build_r4000_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
1252 u32 *p = tlb_handler;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001253 struct uasm_label *l = labels;
1254 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 u32 *f;
1256 unsigned int final_len;
Ralf Baechle4a9040f2011-03-29 10:54:54 +02001257 struct mips_huge_tlb_info htlb_info __maybe_unused;
1258 enum vmalloc64_mode vmalloc_mode __maybe_unused;
David Daney18280eda2014-05-28 23:52:13 +02001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 memset(tlb_handler, 0, sizeof(tlb_handler));
1261 memset(labels, 0, sizeof(labels));
1262 memset(relocs, 0, sizeof(relocs));
1263 memset(final_handler, 0, sizeof(final_handler));
1264
David Daney18280eda2014-05-28 23:52:13 +02001265 if (IS_ENABLED(CONFIG_64BIT) && (scratch_reg >= 0 || scratchpad_available()) && use_bbit_insns()) {
David Daney2c8c53e2010-12-27 18:07:57 -08001266 htlb_info = build_fast_tlb_refill_handler(&p, &l, &r, K0, K1,
1267 scratch_reg);
1268 vmalloc_mode = refill_scratch;
1269 } else {
1270 htlb_info.huge_pte = K0;
1271 htlb_info.restore_scratch = 0;
David Daney9e0f1622014-10-20 15:34:23 -07001272 htlb_info.need_reload_pte = true;
David Daney2c8c53e2010-12-27 18:07:57 -08001273 vmalloc_mode = refill_noscratch;
1274 /*
1275 * create the plain linear handler
1276 */
1277 if (bcm1250_m3_war()) {
1278 unsigned int segbits = 44;
1279
1280 uasm_i_dmfc0(&p, K0, C0_BADVADDR);
1281 uasm_i_dmfc0(&p, K1, C0_ENTRYHI);
1282 uasm_i_xor(&p, K0, K0, K1);
1283 uasm_i_dsrl_safe(&p, K1, K0, 62);
1284 uasm_i_dsrl_safe(&p, K0, K0, 12 + 1);
1285 uasm_i_dsll_safe(&p, K0, K0, 64 + 12 + 1 - segbits);
1286 uasm_i_or(&p, K0, K0, K1);
1287 uasm_il_bnez(&p, &r, K0, label_leave);
1288 /* No need for uasm_i_nop */
1289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Ralf Baechle875d43e2005-09-03 15:56:16 -07001291#ifdef CONFIG_64BIT
David Daney2c8c53e2010-12-27 18:07:57 -08001292 build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293#else
David Daney2c8c53e2010-12-27 18:07:57 -08001294 build_get_pgde32(&p, K0, K1); /* get pgd in K1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295#endif
1296
David Daneyaa1762f2012-10-17 00:48:10 +02001297#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daney2c8c53e2010-12-27 18:07:57 -08001298 build_is_huge_pte(&p, &r, K0, K1, label_tlb_huge_update);
David Daneyfd062c82009-05-27 17:47:44 -07001299#endif
1300
David Daney2c8c53e2010-12-27 18:07:57 -08001301 build_get_ptep(&p, K0, K1);
1302 build_update_entries(&p, K0, K1);
1303 build_tlb_write_entry(&p, &l, &r, tlb_random);
1304 uasm_l_leave(&l, p);
1305 uasm_i_eret(&p); /* return from trap */
1306 }
David Daneyaa1762f2012-10-17 00:48:10 +02001307#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07001308 uasm_l_tlb_huge_update(&l, p);
David Daney9e0f1622014-10-20 15:34:23 -07001309 if (htlb_info.need_reload_pte)
1310 UASM_i_LW(&p, htlb_info.huge_pte, 0, K1);
David Daney2c8c53e2010-12-27 18:07:57 -08001311 build_huge_update_entries(&p, htlb_info.huge_pte, K1);
1312 build_huge_tlb_write_entry(&p, &l, &r, K0, tlb_random,
1313 htlb_info.restore_scratch);
David Daneyfd062c82009-05-27 17:47:44 -07001314#endif
1315
Ralf Baechle875d43e2005-09-03 15:56:16 -07001316#ifdef CONFIG_64BIT
David Daney2c8c53e2010-12-27 18:07:57 -08001317 build_get_pgd_vmalloc64(&p, &l, &r, K0, K1, vmalloc_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318#endif
1319
1320 /*
1321 * Overflow check: For the 64bit handler, we need at least one
1322 * free instruction slot for the wrap-around branch. In worst
1323 * case, if the intended insertion point is a delay slot, we
Matt LaPlante4b3f6862006-10-03 22:21:02 +02001324 * need three, with the second nop'ed and the third being
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 * unused.
1326 */
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001327 switch (boot_cpu_type()) {
1328 default:
1329 if (sizeof(long) == 4) {
1330 case CPU_LOONGSON2:
1331 /* Loongson2 ebase is different than r4k, we have more space */
1332 if ((p - tlb_handler) > 64)
1333 panic("TLB refill handler space exceeded");
1334 /*
1335 * Now fold the handler in the TLB refill handler space.
1336 */
1337 f = final_handler;
1338 /* Simplest case, just copy the handler. */
1339 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
1340 final_len = p - tlb_handler;
1341 break;
1342 } else {
1343 if (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 1)
1344 || (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 3)
1345 && uasm_insn_has_bdelay(relocs,
1346 tlb_handler + MIPS64_REFILL_INSNS - 3)))
1347 panic("TLB refill handler space exceeded");
1348 /*
1349 * Now fold the handler in the TLB refill handler space.
1350 */
1351 f = final_handler + MIPS64_REFILL_INSNS;
1352 if ((p - tlb_handler) <= MIPS64_REFILL_INSNS) {
1353 /* Just copy the handler. */
1354 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
1355 final_len = p - tlb_handler;
1356 } else {
David Daneyaa1762f2012-10-17 00:48:10 +02001357#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001358 const enum label_id ls = label_tlb_huge_update;
David Daney95affdd2009-05-20 11:40:59 -07001359#else
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001360 const enum label_id ls = label_vmalloc;
David Daney95affdd2009-05-20 11:40:59 -07001361#endif
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001362 u32 *split;
1363 int ov = 0;
1364 int i;
David Daney95affdd2009-05-20 11:40:59 -07001365
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001366 for (i = 0; i < ARRAY_SIZE(labels) && labels[i].lab != ls; i++)
1367 ;
1368 BUG_ON(i == ARRAY_SIZE(labels));
1369 split = labels[i].addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001371 /*
1372 * See if we have overflown one way or the other.
1373 */
1374 if (split > tlb_handler + MIPS64_REFILL_INSNS ||
1375 split < p - MIPS64_REFILL_INSNS)
1376 ov = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001378 if (ov) {
1379 /*
1380 * Split two instructions before the end. One
1381 * for the branch and one for the instruction
1382 * in the delay slot.
1383 */
1384 split = tlb_handler + MIPS64_REFILL_INSNS - 2;
David Daney95affdd2009-05-20 11:40:59 -07001385
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001386 /*
1387 * If the branch would fall in a delay slot,
1388 * we must back up an additional instruction
1389 * so that it is no longer in a delay slot.
1390 */
1391 if (uasm_insn_has_bdelay(relocs, split - 1))
1392 split--;
1393 }
1394 /* Copy first part of the handler. */
1395 uasm_copy_handler(relocs, labels, tlb_handler, split, f);
1396 f += split - tlb_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001398 if (ov) {
1399 /* Insert branch. */
1400 uasm_l_split(&l, final_handler);
1401 uasm_il_b(&f, &r, label_split);
1402 if (uasm_insn_has_bdelay(relocs, split))
1403 uasm_i_nop(&f);
1404 else {
1405 uasm_copy_handler(relocs, labels,
1406 split, split + 1, f);
1407 uasm_move_labels(labels, f, f + 1, -1);
1408 f++;
1409 split++;
1410 }
1411 }
1412
1413 /* Copy the rest of the handler. */
1414 uasm_copy_handler(relocs, labels, split, p, final_handler);
1415 final_len = (f - (final_handler + MIPS64_REFILL_INSNS)) +
1416 (p - split);
David Daney95affdd2009-05-20 11:40:59 -07001417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001419 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Thiemo Seufere30ec452008-01-28 20:05:38 +00001422 uasm_resolve_relocs(relocs, labels);
1423 pr_debug("Wrote TLB refill handler (%u instructions).\n",
1424 final_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Ralf Baechle91b05e62006-03-29 18:53:00 +01001426 memcpy((void *)ebase, final_handler, 0x100);
Leonid Yegoshin10620802014-07-11 15:18:05 -07001427 local_flush_icache_range(ebase, ebase + 0x100);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +02001428
Ralf Baechlea2c763e2012-10-16 22:20:26 +02001429 dump_handler("r4000_tlb_refill", (u32 *)ebase, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
Huacai Chen380cd582016-03-03 09:45:12 +08001432static void setup_pw(void)
1433{
1434 unsigned long pgd_i, pgd_w;
1435#ifndef __PAGETABLE_PMD_FOLDED
1436 unsigned long pmd_i, pmd_w;
1437#endif
1438 unsigned long pt_i, pt_w;
1439 unsigned long pte_i, pte_w;
1440#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
1441 unsigned long psn;
1442
1443 psn = ilog2(_PAGE_HUGE); /* bit used to indicate huge page */
1444#endif
1445 pgd_i = PGDIR_SHIFT; /* 1st level PGD */
1446#ifndef __PAGETABLE_PMD_FOLDED
1447 pgd_w = PGDIR_SHIFT - PMD_SHIFT + PGD_ORDER;
1448
1449 pmd_i = PMD_SHIFT; /* 2nd level PMD */
1450 pmd_w = PMD_SHIFT - PAGE_SHIFT;
1451#else
1452 pgd_w = PGDIR_SHIFT - PAGE_SHIFT + PGD_ORDER;
1453#endif
1454
1455 pt_i = PAGE_SHIFT; /* 3rd level PTE */
1456 pt_w = PAGE_SHIFT - 3;
1457
1458 pte_i = ilog2(_PAGE_GLOBAL);
1459 pte_w = 0;
1460
1461#ifndef __PAGETABLE_PMD_FOLDED
1462 write_c0_pwfield(pgd_i << 24 | pmd_i << 12 | pt_i << 6 | pte_i);
1463 write_c0_pwsize(1 << 30 | pgd_w << 24 | pmd_w << 12 | pt_w << 6 | pte_w);
1464#else
1465 write_c0_pwfield(pgd_i << 24 | pt_i << 6 | pte_i);
1466 write_c0_pwsize(1 << 30 | pgd_w << 24 | pt_w << 6 | pte_w);
1467#endif
1468
1469#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
1470 write_c0_pwctl(1 << 6 | psn);
1471#endif
1472 write_c0_kpgd(swapper_pg_dir);
1473 kscratch_used_mask |= (1 << 7); /* KScratch6 is used for KPGD */
1474}
1475
1476static void build_loongson3_tlb_refill_handler(void)
1477{
1478 u32 *p = tlb_handler;
1479 struct uasm_label *l = labels;
1480 struct uasm_reloc *r = relocs;
1481
1482 memset(labels, 0, sizeof(labels));
1483 memset(relocs, 0, sizeof(relocs));
1484 memset(tlb_handler, 0, sizeof(tlb_handler));
1485
1486 if (check_for_high_segbits) {
1487 uasm_i_dmfc0(&p, K0, C0_BADVADDR);
1488 uasm_i_dsrl_safe(&p, K1, K0, PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
1489 uasm_il_beqz(&p, &r, K1, label_vmalloc);
1490 uasm_i_nop(&p);
1491
1492 uasm_il_bgez(&p, &r, K0, label_large_segbits_fault);
1493 uasm_i_nop(&p);
1494 uasm_l_vmalloc(&l, p);
1495 }
1496
1497 uasm_i_dmfc0(&p, K1, C0_PGD);
1498
1499 uasm_i_lddir(&p, K0, K1, 3); /* global page dir */
1500#ifndef __PAGETABLE_PMD_FOLDED
1501 uasm_i_lddir(&p, K1, K0, 1); /* middle page dir */
1502#endif
1503 uasm_i_ldpte(&p, K1, 0); /* even */
1504 uasm_i_ldpte(&p, K1, 1); /* odd */
1505 uasm_i_tlbwr(&p);
1506
1507 /* restore page mask */
1508 if (PM_DEFAULT_MASK >> 16) {
1509 uasm_i_lui(&p, K0, PM_DEFAULT_MASK >> 16);
1510 uasm_i_ori(&p, K0, K0, PM_DEFAULT_MASK & 0xffff);
1511 uasm_i_mtc0(&p, K0, C0_PAGEMASK);
1512 } else if (PM_DEFAULT_MASK) {
1513 uasm_i_ori(&p, K0, 0, PM_DEFAULT_MASK);
1514 uasm_i_mtc0(&p, K0, C0_PAGEMASK);
1515 } else {
1516 uasm_i_mtc0(&p, 0, C0_PAGEMASK);
1517 }
1518
1519 uasm_i_eret(&p);
1520
1521 if (check_for_high_segbits) {
1522 uasm_l_large_segbits_fault(&l, p);
1523 UASM_i_LA(&p, K1, (unsigned long)tlb_do_page_fault_0);
1524 uasm_i_jr(&p, K1);
1525 uasm_i_nop(&p);
1526 }
1527
1528 uasm_resolve_relocs(relocs, labels);
1529 memcpy((void *)(ebase + 0x80), tlb_handler, 0x80);
1530 local_flush_icache_range(ebase + 0x80, ebase + 0x100);
1531 dump_handler("loongson3_tlb_refill", (u32 *)(ebase + 0x80), 32);
1532}
1533
Jayachandran C6ba045f2013-06-23 17:16:19 +00001534extern u32 handle_tlbl[], handle_tlbl_end[];
1535extern u32 handle_tlbs[], handle_tlbs_end[];
1536extern u32 handle_tlbm[], handle_tlbm_end[];
Steven J. Hill7bb39402014-04-10 14:06:17 -05001537extern u32 tlbmiss_handler_setup_pgd_start[], tlbmiss_handler_setup_pgd[];
1538extern u32 tlbmiss_handler_setup_pgd_end[];
David Daney3d8bfdd2010-12-21 14:19:11 -08001539
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301540static void build_setup_pgd(void)
David Daney3d8bfdd2010-12-21 14:19:11 -08001541{
1542 const int a0 = 4;
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301543 const int __maybe_unused a1 = 5;
1544 const int __maybe_unused a2 = 6;
Steven J. Hill7bb39402014-04-10 14:06:17 -05001545 u32 *p = tlbmiss_handler_setup_pgd_start;
Jayachandran C6ba045f2013-06-23 17:16:19 +00001546 const int tlbmiss_handler_setup_pgd_size =
Steven J. Hill7bb39402014-04-10 14:06:17 -05001547 tlbmiss_handler_setup_pgd_end - tlbmiss_handler_setup_pgd_start;
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301548#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
1549 long pgdc = (long)pgd_current;
1550#endif
David Daney3d8bfdd2010-12-21 14:19:11 -08001551
Jayachandran C6ba045f2013-06-23 17:16:19 +00001552 memset(tlbmiss_handler_setup_pgd, 0, tlbmiss_handler_setup_pgd_size *
1553 sizeof(tlbmiss_handler_setup_pgd[0]));
David Daney3d8bfdd2010-12-21 14:19:11 -08001554 memset(labels, 0, sizeof(labels));
1555 memset(relocs, 0, sizeof(relocs));
David Daney3d8bfdd2010-12-21 14:19:11 -08001556 pgd_reg = allocate_kscratch();
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301557#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
David Daney3d8bfdd2010-12-21 14:19:11 -08001558 if (pgd_reg == -1) {
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301559 struct uasm_label *l = labels;
1560 struct uasm_reloc *r = relocs;
1561
David Daney3d8bfdd2010-12-21 14:19:11 -08001562 /* PGD << 11 in c0_Context */
1563 /*
1564 * If it is a ckseg0 address, convert to a physical
1565 * address. Shifting right by 29 and adding 4 will
1566 * result in zero for these addresses.
1567 *
1568 */
1569 UASM_i_SRA(&p, a1, a0, 29);
1570 UASM_i_ADDIU(&p, a1, a1, 4);
1571 uasm_il_bnez(&p, &r, a1, label_tlbl_goaround1);
1572 uasm_i_nop(&p);
1573 uasm_i_dinsm(&p, a0, 0, 29, 64 - 29);
1574 uasm_l_tlbl_goaround1(&l, p);
1575 UASM_i_SLL(&p, a0, a0, 11);
1576 uasm_i_jr(&p, 31);
1577 UASM_i_MTC0(&p, a0, C0_CONTEXT);
1578 } else {
1579 /* PGD in c0_KScratch */
1580 uasm_i_jr(&p, 31);
Huacai Chen380cd582016-03-03 09:45:12 +08001581 if (cpu_has_ldpte)
1582 UASM_i_MTC0(&p, a0, C0_PWBASE);
1583 else
1584 UASM_i_MTC0(&p, a0, c0_kscratch(), pgd_reg);
David Daney3d8bfdd2010-12-21 14:19:11 -08001585 }
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301586#else
1587#ifdef CONFIG_SMP
1588 /* Save PGD to pgd_current[smp_processor_id()] */
1589 UASM_i_CPUID_MFC0(&p, a1, SMP_CPUID_REG);
1590 UASM_i_SRL_SAFE(&p, a1, a1, SMP_CPUID_PTRSHIFT);
1591 UASM_i_LA_mostly(&p, a2, pgdc);
1592 UASM_i_ADDU(&p, a2, a2, a1);
1593 UASM_i_SW(&p, a0, uasm_rel_lo(pgdc), a2);
1594#else
1595 UASM_i_LA_mostly(&p, a2, pgdc);
1596 UASM_i_SW(&p, a0, uasm_rel_lo(pgdc), a2);
1597#endif /* SMP */
1598 uasm_i_jr(&p, 31);
1599
1600 /* if pgd_reg is allocated, save PGD also to scratch register */
1601 if (pgd_reg != -1)
1602 UASM_i_MTC0(&p, a0, c0_kscratch(), pgd_reg);
1603 else
1604 uasm_i_nop(&p);
1605#endif
Jayachandran C6ba045f2013-06-23 17:16:19 +00001606 if (p >= tlbmiss_handler_setup_pgd_end)
1607 panic("tlbmiss_handler_setup_pgd space exceeded");
David Daney3d8bfdd2010-12-21 14:19:11 -08001608
Jayachandran C6ba045f2013-06-23 17:16:19 +00001609 uasm_resolve_relocs(relocs, labels);
1610 pr_debug("Wrote tlbmiss_handler_setup_pgd (%u instructions).\n",
1611 (unsigned int)(p - tlbmiss_handler_setup_pgd));
1612
1613 dump_handler("tlbmiss_handler", tlbmiss_handler_setup_pgd,
1614 tlbmiss_handler_setup_pgd_size);
David Daney3d8bfdd2010-12-21 14:19:11 -08001615}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001617static void
David Daneybd1437e2009-05-08 15:10:50 -07001618iPTE_LW(u32 **p, unsigned int pte, unsigned int ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
1620#ifdef CONFIG_SMP
Ralf Baechle34adb282014-11-22 00:16:48 +01001621# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001623 uasm_i_lld(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 else
1625# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001626 UASM_i_LL(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627#else
Ralf Baechle34adb282014-11-22 00:16:48 +01001628# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001630 uasm_i_ld(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 else
1632# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001633 UASM_i_LW(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634#endif
1635}
1636
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001637static void
Thiemo Seufere30ec452008-01-28 20:05:38 +00001638iPTE_SW(u32 **p, struct uasm_reloc **r, unsigned int pte, unsigned int ptr,
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001639 unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
Ralf Baechle34adb282014-11-22 00:16:48 +01001641#ifdef CONFIG_PHYS_ADDR_T_64BIT
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001642 unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY);
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001643
Steven J. Hillc5b36782015-02-26 18:16:38 -06001644 if (!cpu_has_64bits) {
1645 const int scratch = 1; /* Our extra working register */
1646
1647 uasm_i_lui(p, scratch, (mode >> 16));
1648 uasm_i_or(p, pte, pte, scratch);
1649 } else
1650#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001651 uasm_i_ori(p, pte, pte, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652#ifdef CONFIG_SMP
Ralf Baechle34adb282014-11-22 00:16:48 +01001653# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001655 uasm_i_scd(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 else
1657# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001658 UASM_i_SC(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 if (r10000_llsc_war())
Thiemo Seufere30ec452008-01-28 20:05:38 +00001661 uasm_il_beqzl(p, r, pte, label_smp_pgtable_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001663 uasm_il_beqz(p, r, pte, label_smp_pgtable_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Ralf Baechle34adb282014-11-22 00:16:48 +01001665# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 if (!cpu_has_64bits) {
Thiemo Seufere30ec452008-01-28 20:05:38 +00001667 /* no uasm_i_nop needed */
1668 uasm_i_ll(p, pte, sizeof(pte_t) / 2, ptr);
1669 uasm_i_ori(p, pte, pte, hwmode);
1670 uasm_i_sc(p, pte, sizeof(pte_t) / 2, ptr);
1671 uasm_il_beqz(p, r, pte, label_smp_pgtable_change);
1672 /* no uasm_i_nop needed */
1673 uasm_i_lw(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 } else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001675 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676# else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001677 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678# endif
1679#else
Ralf Baechle34adb282014-11-22 00:16:48 +01001680# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001682 uasm_i_sd(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 else
1684# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001685 UASM_i_SW(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Ralf Baechle34adb282014-11-22 00:16:48 +01001687# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (!cpu_has_64bits) {
Thiemo Seufere30ec452008-01-28 20:05:38 +00001689 uasm_i_lw(p, pte, sizeof(pte_t) / 2, ptr);
1690 uasm_i_ori(p, pte, pte, hwmode);
1691 uasm_i_sw(p, pte, sizeof(pte_t) / 2, ptr);
1692 uasm_i_lw(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
1694# endif
1695#endif
1696}
1697
1698/*
1699 * Check if PTE is present, if not then jump to LABEL. PTR points to
1700 * the page table where this PTE is located, PTE will be re-loaded
1701 * with it's original value.
1702 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001703static void
David Daneybd1437e2009-05-08 15:10:50 -07001704build_pte_present(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001705 int pte, int ptr, int scratch, enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
David Daneybf286072011-07-05 16:34:46 -07001707 int t = scratch >= 0 ? scratch : pte;
James Hogan8fe49082015-04-27 15:07:18 +01001708 int cur = pte;
David Daneybf286072011-07-05 16:34:46 -07001709
Steven J. Hill05857c62012-09-13 16:51:46 -05001710 if (cpu_has_rixi) {
David Daneycc33ae42010-12-20 15:54:50 -08001711 if (use_bbit_insns()) {
1712 uasm_il_bbit0(p, r, pte, ilog2(_PAGE_PRESENT), lid);
1713 uasm_i_nop(p);
1714 } else {
James Hogan8fe49082015-04-27 15:07:18 +01001715 if (_PAGE_PRESENT_SHIFT) {
1716 uasm_i_srl(p, t, cur, _PAGE_PRESENT_SHIFT);
1717 cur = t;
1718 }
1719 uasm_i_andi(p, t, cur, 1);
David Daneybf286072011-07-05 16:34:46 -07001720 uasm_il_beqz(p, r, t, lid);
1721 if (pte == t)
1722 /* You lose the SMP race :-(*/
1723 iPTE_LW(p, pte, ptr);
David Daneycc33ae42010-12-20 15:54:50 -08001724 }
David Daney6dd93442010-02-10 15:12:47 -08001725 } else {
James Hogan8fe49082015-04-27 15:07:18 +01001726 if (_PAGE_PRESENT_SHIFT) {
1727 uasm_i_srl(p, t, cur, _PAGE_PRESENT_SHIFT);
1728 cur = t;
1729 }
1730 uasm_i_andi(p, t, cur,
James Hogana3ae5652015-04-27 15:07:17 +01001731 (_PAGE_PRESENT | _PAGE_READ) >> _PAGE_PRESENT_SHIFT);
1732 uasm_i_xori(p, t, t,
1733 (_PAGE_PRESENT | _PAGE_READ) >> _PAGE_PRESENT_SHIFT);
David Daneybf286072011-07-05 16:34:46 -07001734 uasm_il_bnez(p, r, t, lid);
1735 if (pte == t)
1736 /* You lose the SMP race :-(*/
1737 iPTE_LW(p, pte, ptr);
David Daney6dd93442010-02-10 15:12:47 -08001738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
1740
1741/* Make PTE valid, store result in PTR. */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001742static void
Thiemo Seufere30ec452008-01-28 20:05:38 +00001743build_make_valid(u32 **p, struct uasm_reloc **r, unsigned int pte,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 unsigned int ptr)
1745{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001746 unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED;
1747
1748 iPTE_SW(p, r, pte, ptr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749}
1750
1751/*
1752 * Check if PTE can be written to, if not branch to LABEL. Regardless
1753 * restore PTE with value from PTR when done.
1754 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001755static void
David Daneybd1437e2009-05-08 15:10:50 -07001756build_pte_writable(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001757 unsigned int pte, unsigned int ptr, int scratch,
1758 enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
David Daneybf286072011-07-05 16:34:46 -07001760 int t = scratch >= 0 ? scratch : pte;
James Hogan8fe49082015-04-27 15:07:18 +01001761 int cur = pte;
David Daneybf286072011-07-05 16:34:46 -07001762
James Hogan8fe49082015-04-27 15:07:18 +01001763 if (_PAGE_PRESENT_SHIFT) {
1764 uasm_i_srl(p, t, cur, _PAGE_PRESENT_SHIFT);
1765 cur = t;
1766 }
1767 uasm_i_andi(p, t, cur,
James Hogana3ae5652015-04-27 15:07:17 +01001768 (_PAGE_PRESENT | _PAGE_WRITE) >> _PAGE_PRESENT_SHIFT);
1769 uasm_i_xori(p, t, t,
1770 (_PAGE_PRESENT | _PAGE_WRITE) >> _PAGE_PRESENT_SHIFT);
David Daneybf286072011-07-05 16:34:46 -07001771 uasm_il_bnez(p, r, t, lid);
1772 if (pte == t)
1773 /* You lose the SMP race :-(*/
David Daneycc33ae42010-12-20 15:54:50 -08001774 iPTE_LW(p, pte, ptr);
David Daneybf286072011-07-05 16:34:46 -07001775 else
1776 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777}
1778
1779/* Make PTE writable, update software status bits as well, then store
1780 * at PTR.
1781 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001782static void
Thiemo Seufere30ec452008-01-28 20:05:38 +00001783build_make_write(u32 **p, struct uasm_reloc **r, unsigned int pte,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 unsigned int ptr)
1785{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001786 unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID
1787 | _PAGE_DIRTY);
1788
1789 iPTE_SW(p, r, pte, ptr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790}
1791
1792/*
1793 * Check if PTE can be modified, if not branch to LABEL. Regardless
1794 * restore PTE with value from PTR when done.
1795 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001796static void
David Daneybd1437e2009-05-08 15:10:50 -07001797build_pte_modifiable(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001798 unsigned int pte, unsigned int ptr, int scratch,
1799 enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
David Daneycc33ae42010-12-20 15:54:50 -08001801 if (use_bbit_insns()) {
1802 uasm_il_bbit0(p, r, pte, ilog2(_PAGE_WRITE), lid);
1803 uasm_i_nop(p);
1804 } else {
David Daneybf286072011-07-05 16:34:46 -07001805 int t = scratch >= 0 ? scratch : pte;
Steven J. Hillc5b36782015-02-26 18:16:38 -06001806 uasm_i_srl(p, t, pte, _PAGE_WRITE_SHIFT);
1807 uasm_i_andi(p, t, t, 1);
David Daneybf286072011-07-05 16:34:46 -07001808 uasm_il_beqz(p, r, t, lid);
1809 if (pte == t)
1810 /* You lose the SMP race :-(*/
1811 iPTE_LW(p, pte, ptr);
David Daneycc33ae42010-12-20 15:54:50 -08001812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813}
1814
David Daney82622282009-10-14 12:16:56 -07001815#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
David Daney3d8bfdd2010-12-21 14:19:11 -08001816
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818/*
1819 * R3000 style TLB load/store/modify handlers.
1820 */
1821
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001822/*
1823 * This places the pte into ENTRYLO0 and writes it with tlbwi.
1824 * Then it returns.
1825 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001826static void
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001827build_r3000_pte_reload_tlbwi(u32 **p, unsigned int pte, unsigned int tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
Thiemo Seufere30ec452008-01-28 20:05:38 +00001829 uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
1830 uasm_i_mfc0(p, tmp, C0_EPC); /* cp0 delay */
1831 uasm_i_tlbwi(p);
1832 uasm_i_jr(p, tmp);
1833 uasm_i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
1836/*
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001837 * This places the pte into ENTRYLO0 and writes it with tlbwi
1838 * or tlbwr as appropriate. This is because the index register
1839 * may have the probe fail bit set as a result of a trap on a
1840 * kseg2 access, i.e. without refill. Then it returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001842static void
Thiemo Seufere30ec452008-01-28 20:05:38 +00001843build_r3000_tlb_reload_write(u32 **p, struct uasm_label **l,
1844 struct uasm_reloc **r, unsigned int pte,
1845 unsigned int tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Thiemo Seufere30ec452008-01-28 20:05:38 +00001847 uasm_i_mfc0(p, tmp, C0_INDEX);
1848 uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
1849 uasm_il_bltz(p, r, tmp, label_r3000_write_probe_fail); /* cp0 delay */
1850 uasm_i_mfc0(p, tmp, C0_EPC); /* branch delay */
1851 uasm_i_tlbwi(p); /* cp0 delay */
1852 uasm_i_jr(p, tmp);
1853 uasm_i_rfe(p); /* branch delay */
1854 uasm_l_r3000_write_probe_fail(l, *p);
1855 uasm_i_tlbwr(p); /* cp0 delay */
1856 uasm_i_jr(p, tmp);
1857 uasm_i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001860static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861build_r3000_tlbchange_handler_head(u32 **p, unsigned int pte,
1862 unsigned int ptr)
1863{
1864 long pgdc = (long)pgd_current;
1865
Thiemo Seufere30ec452008-01-28 20:05:38 +00001866 uasm_i_mfc0(p, pte, C0_BADVADDR);
1867 uasm_i_lui(p, ptr, uasm_rel_hi(pgdc)); /* cp0 delay */
1868 uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr);
1869 uasm_i_srl(p, pte, pte, 22); /* load delay */
1870 uasm_i_sll(p, pte, pte, 2);
1871 uasm_i_addu(p, ptr, ptr, pte);
1872 uasm_i_mfc0(p, pte, C0_CONTEXT);
1873 uasm_i_lw(p, ptr, 0, ptr); /* cp0 delay */
1874 uasm_i_andi(p, pte, pte, 0xffc); /* load delay */
1875 uasm_i_addu(p, ptr, ptr, pte);
1876 uasm_i_lw(p, pte, 0, ptr);
1877 uasm_i_tlbp(p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878}
1879
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001880static void build_r3000_tlb_load_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
1882 u32 *p = handle_tlbl;
Jayachandran C6ba045f2013-06-23 17:16:19 +00001883 const int handle_tlbl_size = handle_tlbl_end - handle_tlbl;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001884 struct uasm_label *l = labels;
1885 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Jayachandran C6ba045f2013-06-23 17:16:19 +00001887 memset(handle_tlbl, 0, handle_tlbl_size * sizeof(handle_tlbl[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 memset(labels, 0, sizeof(labels));
1889 memset(relocs, 0, sizeof(relocs));
1890
1891 build_r3000_tlbchange_handler_head(&p, K0, K1);
David Daneybf286072011-07-05 16:34:46 -07001892 build_pte_present(&p, &r, K0, K1, -1, label_nopage_tlbl);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001893 uasm_i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 build_make_valid(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001895 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Thiemo Seufere30ec452008-01-28 20:05:38 +00001897 uasm_l_nopage_tlbl(&l, p);
1898 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
1899 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Jayachandran C6ba045f2013-06-23 17:16:19 +00001901 if (p >= handle_tlbl_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 panic("TLB load handler fastpath space exceeded");
1903
Thiemo Seufere30ec452008-01-28 20:05:38 +00001904 uasm_resolve_relocs(relocs, labels);
1905 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
1906 (unsigned int)(p - handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Jayachandran C6ba045f2013-06-23 17:16:19 +00001908 dump_handler("r3000_tlb_load", handle_tlbl, handle_tlbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001911static void build_r3000_tlb_store_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
1913 u32 *p = handle_tlbs;
Jayachandran C6ba045f2013-06-23 17:16:19 +00001914 const int handle_tlbs_size = handle_tlbs_end - handle_tlbs;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001915 struct uasm_label *l = labels;
1916 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Jayachandran C6ba045f2013-06-23 17:16:19 +00001918 memset(handle_tlbs, 0, handle_tlbs_size * sizeof(handle_tlbs[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 memset(labels, 0, sizeof(labels));
1920 memset(relocs, 0, sizeof(relocs));
1921
1922 build_r3000_tlbchange_handler_head(&p, K0, K1);
David Daneybf286072011-07-05 16:34:46 -07001923 build_pte_writable(&p, &r, K0, K1, -1, label_nopage_tlbs);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001924 uasm_i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 build_make_write(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001926 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Thiemo Seufere30ec452008-01-28 20:05:38 +00001928 uasm_l_nopage_tlbs(&l, p);
1929 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1930 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Tony Wuafc813a2013-07-18 09:45:47 +00001932 if (p >= handle_tlbs_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 panic("TLB store handler fastpath space exceeded");
1934
Thiemo Seufere30ec452008-01-28 20:05:38 +00001935 uasm_resolve_relocs(relocs, labels);
1936 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
1937 (unsigned int)(p - handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Jayachandran C6ba045f2013-06-23 17:16:19 +00001939 dump_handler("r3000_tlb_store", handle_tlbs, handle_tlbs_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
1941
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001942static void build_r3000_tlb_modify_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
1944 u32 *p = handle_tlbm;
Jayachandran C6ba045f2013-06-23 17:16:19 +00001945 const int handle_tlbm_size = handle_tlbm_end - handle_tlbm;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001946 struct uasm_label *l = labels;
1947 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Jayachandran C6ba045f2013-06-23 17:16:19 +00001949 memset(handle_tlbm, 0, handle_tlbm_size * sizeof(handle_tlbm[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 memset(labels, 0, sizeof(labels));
1951 memset(relocs, 0, sizeof(relocs));
1952
1953 build_r3000_tlbchange_handler_head(&p, K0, K1);
Ralf Baechled954ffe2011-08-02 22:52:48 +01001954 build_pte_modifiable(&p, &r, K0, K1, -1, label_nopage_tlbm);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001955 uasm_i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 build_make_write(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001957 build_r3000_pte_reload_tlbwi(&p, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Thiemo Seufere30ec452008-01-28 20:05:38 +00001959 uasm_l_nopage_tlbm(&l, p);
1960 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1961 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Jayachandran C6ba045f2013-06-23 17:16:19 +00001963 if (p >= handle_tlbm_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 panic("TLB modify handler fastpath space exceeded");
1965
Thiemo Seufere30ec452008-01-28 20:05:38 +00001966 uasm_resolve_relocs(relocs, labels);
1967 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
1968 (unsigned int)(p - handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Jayachandran C6ba045f2013-06-23 17:16:19 +00001970 dump_handler("r3000_tlb_modify", handle_tlbm, handle_tlbm_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
David Daney82622282009-10-14 12:16:56 -07001972#endif /* CONFIG_MIPS_PGD_C0_CONTEXT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974/*
1975 * R4000 style TLB load/store/modify handlers.
1976 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001977static struct work_registers
Thiemo Seufere30ec452008-01-28 20:05:38 +00001978build_r4000_tlbchange_handler_head(u32 **p, struct uasm_label **l,
David Daneybf286072011-07-05 16:34:46 -07001979 struct uasm_reloc **r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
David Daneybf286072011-07-05 16:34:46 -07001981 struct work_registers wr = build_get_work_registers(p);
1982
Ralf Baechle875d43e2005-09-03 15:56:16 -07001983#ifdef CONFIG_64BIT
David Daneybf286072011-07-05 16:34:46 -07001984 build_get_pmde64(p, l, r, wr.r1, wr.r2); /* get pmd in ptr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985#else
David Daneybf286072011-07-05 16:34:46 -07001986 build_get_pgde32(p, wr.r1, wr.r2); /* get pgd in ptr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987#endif
1988
David Daneyaa1762f2012-10-17 00:48:10 +02001989#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07001990 /*
1991 * For huge tlb entries, pmd doesn't contain an address but
1992 * instead contains the tlb pte. Check the PAGE_HUGE bit and
1993 * see if we need to jump to huge tlb processing.
1994 */
David Daneybf286072011-07-05 16:34:46 -07001995 build_is_huge_pte(p, r, wr.r1, wr.r2, label_tlb_huge_update);
David Daneyfd062c82009-05-27 17:47:44 -07001996#endif
1997
David Daneybf286072011-07-05 16:34:46 -07001998 UASM_i_MFC0(p, wr.r1, C0_BADVADDR);
1999 UASM_i_LW(p, wr.r2, 0, wr.r2);
2000 UASM_i_SRL(p, wr.r1, wr.r1, PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2);
2001 uasm_i_andi(p, wr.r1, wr.r1, (PTRS_PER_PTE - 1) << PTE_T_LOG2);
2002 UASM_i_ADDU(p, wr.r2, wr.r2, wr.r1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004#ifdef CONFIG_SMP
Thiemo Seufere30ec452008-01-28 20:05:38 +00002005 uasm_l_smp_pgtable_change(l, *p);
2006#endif
David Daneybf286072011-07-05 16:34:46 -07002007 iPTE_LW(p, wr.r1, wr.r2); /* get even pte */
Leonid Yegoshin070e76c2014-11-27 11:13:08 +00002008 if (!m4kc_tlbp_war()) {
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002009 build_tlb_probe_entry(p);
Leonid Yegoshin070e76c2014-11-27 11:13:08 +00002010 if (cpu_has_htw) {
2011 /* race condition happens, leaving */
2012 uasm_i_ehb(p);
2013 uasm_i_mfc0(p, wr.r3, C0_INDEX);
2014 uasm_il_bltz(p, r, wr.r3, label_leave);
2015 uasm_i_nop(p);
2016 }
2017 }
David Daneybf286072011-07-05 16:34:46 -07002018 return wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002021static void
Thiemo Seufere30ec452008-01-28 20:05:38 +00002022build_r4000_tlbchange_handler_tail(u32 **p, struct uasm_label **l,
2023 struct uasm_reloc **r, unsigned int tmp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 unsigned int ptr)
2025{
Thiemo Seufere30ec452008-01-28 20:05:38 +00002026 uasm_i_ori(p, ptr, ptr, sizeof(pte_t));
2027 uasm_i_xori(p, ptr, ptr, sizeof(pte_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 build_update_entries(p, tmp, ptr);
2029 build_tlb_write_entry(p, l, r, tlb_indexed);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002030 uasm_l_leave(l, *p);
David Daneybf286072011-07-05 16:34:46 -07002031 build_restore_work_registers(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002032 uasm_i_eret(p); /* return from trap */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Ralf Baechle875d43e2005-09-03 15:56:16 -07002034#ifdef CONFIG_64BIT
David Daney1ec56322010-04-28 12:16:18 -07002035 build_get_pgd_vmalloc64(p, l, r, tmp, ptr, not_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036#endif
2037}
2038
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002039static void build_r4000_tlb_load_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
2041 u32 *p = handle_tlbl;
Jayachandran C6ba045f2013-06-23 17:16:19 +00002042 const int handle_tlbl_size = handle_tlbl_end - handle_tlbl;
Thiemo Seufere30ec452008-01-28 20:05:38 +00002043 struct uasm_label *l = labels;
2044 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07002045 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Jayachandran C6ba045f2013-06-23 17:16:19 +00002047 memset(handle_tlbl, 0, handle_tlbl_size * sizeof(handle_tlbl[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 memset(labels, 0, sizeof(labels));
2049 memset(relocs, 0, sizeof(relocs));
2050
2051 if (bcm1250_m3_war()) {
Ralf Baechle3d452852010-03-23 17:56:38 +01002052 unsigned int segbits = 44;
2053
2054 uasm_i_dmfc0(&p, K0, C0_BADVADDR);
2055 uasm_i_dmfc0(&p, K1, C0_ENTRYHI);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002056 uasm_i_xor(&p, K0, K0, K1);
David Daney3be60222010-04-28 12:16:17 -07002057 uasm_i_dsrl_safe(&p, K1, K0, 62);
2058 uasm_i_dsrl_safe(&p, K0, K0, 12 + 1);
2059 uasm_i_dsll_safe(&p, K0, K0, 64 + 12 + 1 - segbits);
Ralf Baechle3d452852010-03-23 17:56:38 +01002060 uasm_i_or(&p, K0, K0, K1);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002061 uasm_il_bnez(&p, &r, K0, label_leave);
2062 /* No need for uasm_i_nop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
2064
David Daneybf286072011-07-05 16:34:46 -07002065 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
2066 build_pte_present(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbl);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002067 if (m4kc_tlbp_war())
2068 build_tlb_probe_entry(&p);
David Daney6dd93442010-02-10 15:12:47 -08002069
Leonid Yegoshin5890f702014-07-15 14:09:56 +01002070 if (cpu_has_rixi && !cpu_has_rixiex) {
David Daney6dd93442010-02-10 15:12:47 -08002071 /*
2072 * If the page is not _PAGE_VALID, RI or XI could not
2073 * have triggered it. Skip the expensive test..
2074 */
David Daneycc33ae42010-12-20 15:54:50 -08002075 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002076 uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID),
David Daneycc33ae42010-12-20 15:54:50 -08002077 label_tlbl_goaround1);
2078 } else {
David Daneybf286072011-07-05 16:34:46 -07002079 uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID);
2080 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround1);
David Daneycc33ae42010-12-20 15:54:50 -08002081 }
David Daney6dd93442010-02-10 15:12:47 -08002082 uasm_i_nop(&p);
2083
2084 uasm_i_tlbr(&p);
Ralf Baechle73acc7d2013-06-20 14:56:17 +02002085
2086 switch (current_cpu_type()) {
2087 default:
Leonid Yegoshin77f3ee52014-11-24 15:42:46 +00002088 if (cpu_has_mips_r2_exec_hazard) {
Ralf Baechle73acc7d2013-06-20 14:56:17 +02002089 uasm_i_ehb(&p);
2090
2091 case CPU_CAVIUM_OCTEON:
2092 case CPU_CAVIUM_OCTEON_PLUS:
2093 case CPU_CAVIUM_OCTEON2:
2094 break;
2095 }
2096 }
2097
David Daney6dd93442010-02-10 15:12:47 -08002098 /* Examine entrylo 0 or 1 based on ptr. */
David Daneycc33ae42010-12-20 15:54:50 -08002099 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002100 uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8);
David Daneycc33ae42010-12-20 15:54:50 -08002101 } else {
David Daneybf286072011-07-05 16:34:46 -07002102 uasm_i_andi(&p, wr.r3, wr.r2, sizeof(pte_t));
2103 uasm_i_beqz(&p, wr.r3, 8);
David Daneycc33ae42010-12-20 15:54:50 -08002104 }
David Daneybf286072011-07-05 16:34:46 -07002105 /* load it in the delay slot*/
2106 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO0);
2107 /* load it if ptr is odd */
2108 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO1);
David Daney6dd93442010-02-10 15:12:47 -08002109 /*
David Daneybf286072011-07-05 16:34:46 -07002110 * If the entryLo (now in wr.r3) is valid (bit 1), RI or
David Daney6dd93442010-02-10 15:12:47 -08002111 * XI must have triggered it.
2112 */
David Daneycc33ae42010-12-20 15:54:50 -08002113 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002114 uasm_il_bbit1(&p, &r, wr.r3, 1, label_nopage_tlbl);
2115 uasm_i_nop(&p);
David Daneycc33ae42010-12-20 15:54:50 -08002116 uasm_l_tlbl_goaround1(&l, p);
2117 } else {
David Daneybf286072011-07-05 16:34:46 -07002118 uasm_i_andi(&p, wr.r3, wr.r3, 2);
2119 uasm_il_bnez(&p, &r, wr.r3, label_nopage_tlbl);
2120 uasm_i_nop(&p);
David Daneycc33ae42010-12-20 15:54:50 -08002121 }
David Daneybf286072011-07-05 16:34:46 -07002122 uasm_l_tlbl_goaround1(&l, p);
David Daney6dd93442010-02-10 15:12:47 -08002123 }
David Daneybf286072011-07-05 16:34:46 -07002124 build_make_valid(&p, &r, wr.r1, wr.r2);
2125 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
David Daneyaa1762f2012-10-17 00:48:10 +02002127#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07002128 /*
2129 * This is the entry point when build_r4000_tlbchange_handler_head
2130 * spots a huge page.
2131 */
2132 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002133 iPTE_LW(&p, wr.r1, wr.r2);
2134 build_pte_present(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbl);
David Daneyfd062c82009-05-27 17:47:44 -07002135 build_tlb_probe_entry(&p);
David Daney6dd93442010-02-10 15:12:47 -08002136
Leonid Yegoshin5890f702014-07-15 14:09:56 +01002137 if (cpu_has_rixi && !cpu_has_rixiex) {
David Daney6dd93442010-02-10 15:12:47 -08002138 /*
2139 * If the page is not _PAGE_VALID, RI or XI could not
2140 * have triggered it. Skip the expensive test..
2141 */
David Daneycc33ae42010-12-20 15:54:50 -08002142 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002143 uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID),
David Daneycc33ae42010-12-20 15:54:50 -08002144 label_tlbl_goaround2);
2145 } else {
David Daneybf286072011-07-05 16:34:46 -07002146 uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID);
2147 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002148 }
David Daney6dd93442010-02-10 15:12:47 -08002149 uasm_i_nop(&p);
2150
2151 uasm_i_tlbr(&p);
Ralf Baechle73acc7d2013-06-20 14:56:17 +02002152
2153 switch (current_cpu_type()) {
2154 default:
Leonid Yegoshin77f3ee52014-11-24 15:42:46 +00002155 if (cpu_has_mips_r2_exec_hazard) {
Ralf Baechle73acc7d2013-06-20 14:56:17 +02002156 uasm_i_ehb(&p);
2157
2158 case CPU_CAVIUM_OCTEON:
2159 case CPU_CAVIUM_OCTEON_PLUS:
2160 case CPU_CAVIUM_OCTEON2:
2161 break;
2162 }
2163 }
2164
David Daney6dd93442010-02-10 15:12:47 -08002165 /* Examine entrylo 0 or 1 based on ptr. */
David Daneycc33ae42010-12-20 15:54:50 -08002166 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002167 uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8);
David Daneycc33ae42010-12-20 15:54:50 -08002168 } else {
David Daneybf286072011-07-05 16:34:46 -07002169 uasm_i_andi(&p, wr.r3, wr.r2, sizeof(pte_t));
2170 uasm_i_beqz(&p, wr.r3, 8);
David Daneycc33ae42010-12-20 15:54:50 -08002171 }
David Daneybf286072011-07-05 16:34:46 -07002172 /* load it in the delay slot*/
2173 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO0);
2174 /* load it if ptr is odd */
2175 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO1);
David Daney6dd93442010-02-10 15:12:47 -08002176 /*
David Daneybf286072011-07-05 16:34:46 -07002177 * If the entryLo (now in wr.r3) is valid (bit 1), RI or
David Daney6dd93442010-02-10 15:12:47 -08002178 * XI must have triggered it.
2179 */
David Daneycc33ae42010-12-20 15:54:50 -08002180 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002181 uasm_il_bbit0(&p, &r, wr.r3, 1, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002182 } else {
David Daneybf286072011-07-05 16:34:46 -07002183 uasm_i_andi(&p, wr.r3, wr.r3, 2);
2184 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002185 }
David Daney0f4ccbc2011-09-16 18:06:02 -07002186 if (PM_DEFAULT_MASK == 0)
2187 uasm_i_nop(&p);
David Daney6dd93442010-02-10 15:12:47 -08002188 /*
2189 * We clobbered C0_PAGEMASK, restore it. On the other branch
2190 * it is restored in build_huge_tlb_write_entry.
2191 */
David Daneybf286072011-07-05 16:34:46 -07002192 build_restore_pagemask(&p, &r, wr.r3, label_nopage_tlbl, 0);
David Daney6dd93442010-02-10 15:12:47 -08002193
2194 uasm_l_tlbl_goaround2(&l, p);
2195 }
David Daneybf286072011-07-05 16:34:46 -07002196 uasm_i_ori(&p, wr.r1, wr.r1, (_PAGE_ACCESSED | _PAGE_VALID));
2197 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2);
David Daneyfd062c82009-05-27 17:47:44 -07002198#endif
2199
Thiemo Seufere30ec452008-01-28 20:05:38 +00002200 uasm_l_nopage_tlbl(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002201 build_restore_work_registers(&p);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002202#ifdef CONFIG_CPU_MICROMIPS
2203 if ((unsigned long)tlb_do_page_fault_0 & 1) {
2204 uasm_i_lui(&p, K0, uasm_rel_hi((long)tlb_do_page_fault_0));
2205 uasm_i_addiu(&p, K0, K0, uasm_rel_lo((long)tlb_do_page_fault_0));
2206 uasm_i_jr(&p, K0);
2207 } else
2208#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00002209 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
2210 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Jayachandran C6ba045f2013-06-23 17:16:19 +00002212 if (p >= handle_tlbl_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 panic("TLB load handler fastpath space exceeded");
2214
Thiemo Seufere30ec452008-01-28 20:05:38 +00002215 uasm_resolve_relocs(relocs, labels);
2216 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
2217 (unsigned int)(p - handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Jayachandran C6ba045f2013-06-23 17:16:19 +00002219 dump_handler("r4000_tlb_load", handle_tlbl, handle_tlbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220}
2221
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002222static void build_r4000_tlb_store_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
2224 u32 *p = handle_tlbs;
Jayachandran C6ba045f2013-06-23 17:16:19 +00002225 const int handle_tlbs_size = handle_tlbs_end - handle_tlbs;
Thiemo Seufere30ec452008-01-28 20:05:38 +00002226 struct uasm_label *l = labels;
2227 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07002228 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Jayachandran C6ba045f2013-06-23 17:16:19 +00002230 memset(handle_tlbs, 0, handle_tlbs_size * sizeof(handle_tlbs[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 memset(labels, 0, sizeof(labels));
2232 memset(relocs, 0, sizeof(relocs));
2233
David Daneybf286072011-07-05 16:34:46 -07002234 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
2235 build_pte_writable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbs);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002236 if (m4kc_tlbp_war())
2237 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002238 build_make_write(&p, &r, wr.r1, wr.r2);
2239 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
David Daneyaa1762f2012-10-17 00:48:10 +02002241#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07002242 /*
2243 * This is the entry point when
2244 * build_r4000_tlbchange_handler_head spots a huge page.
2245 */
2246 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002247 iPTE_LW(&p, wr.r1, wr.r2);
2248 build_pte_writable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbs);
David Daneyfd062c82009-05-27 17:47:44 -07002249 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002250 uasm_i_ori(&p, wr.r1, wr.r1,
David Daneyfd062c82009-05-27 17:47:44 -07002251 _PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY);
David Daneybf286072011-07-05 16:34:46 -07002252 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2);
David Daneyfd062c82009-05-27 17:47:44 -07002253#endif
2254
Thiemo Seufere30ec452008-01-28 20:05:38 +00002255 uasm_l_nopage_tlbs(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002256 build_restore_work_registers(&p);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002257#ifdef CONFIG_CPU_MICROMIPS
2258 if ((unsigned long)tlb_do_page_fault_1 & 1) {
2259 uasm_i_lui(&p, K0, uasm_rel_hi((long)tlb_do_page_fault_1));
2260 uasm_i_addiu(&p, K0, K0, uasm_rel_lo((long)tlb_do_page_fault_1));
2261 uasm_i_jr(&p, K0);
2262 } else
2263#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00002264 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
2265 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Jayachandran C6ba045f2013-06-23 17:16:19 +00002267 if (p >= handle_tlbs_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 panic("TLB store handler fastpath space exceeded");
2269
Thiemo Seufere30ec452008-01-28 20:05:38 +00002270 uasm_resolve_relocs(relocs, labels);
2271 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
2272 (unsigned int)(p - handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Jayachandran C6ba045f2013-06-23 17:16:19 +00002274 dump_handler("r4000_tlb_store", handle_tlbs, handle_tlbs_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275}
2276
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002277static void build_r4000_tlb_modify_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
2279 u32 *p = handle_tlbm;
Jayachandran C6ba045f2013-06-23 17:16:19 +00002280 const int handle_tlbm_size = handle_tlbm_end - handle_tlbm;
Thiemo Seufere30ec452008-01-28 20:05:38 +00002281 struct uasm_label *l = labels;
2282 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07002283 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Jayachandran C6ba045f2013-06-23 17:16:19 +00002285 memset(handle_tlbm, 0, handle_tlbm_size * sizeof(handle_tlbm[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 memset(labels, 0, sizeof(labels));
2287 memset(relocs, 0, sizeof(relocs));
2288
David Daneybf286072011-07-05 16:34:46 -07002289 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
2290 build_pte_modifiable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbm);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002291 if (m4kc_tlbp_war())
2292 build_tlb_probe_entry(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 /* Present and writable bits set, set accessed and dirty bits. */
David Daneybf286072011-07-05 16:34:46 -07002294 build_make_write(&p, &r, wr.r1, wr.r2);
2295 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
David Daneyaa1762f2012-10-17 00:48:10 +02002297#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07002298 /*
2299 * This is the entry point when
2300 * build_r4000_tlbchange_handler_head spots a huge page.
2301 */
2302 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002303 iPTE_LW(&p, wr.r1, wr.r2);
2304 build_pte_modifiable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbm);
David Daneyfd062c82009-05-27 17:47:44 -07002305 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002306 uasm_i_ori(&p, wr.r1, wr.r1,
David Daneyfd062c82009-05-27 17:47:44 -07002307 _PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY);
David Daneybf286072011-07-05 16:34:46 -07002308 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2);
David Daneyfd062c82009-05-27 17:47:44 -07002309#endif
2310
Thiemo Seufere30ec452008-01-28 20:05:38 +00002311 uasm_l_nopage_tlbm(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002312 build_restore_work_registers(&p);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002313#ifdef CONFIG_CPU_MICROMIPS
2314 if ((unsigned long)tlb_do_page_fault_1 & 1) {
2315 uasm_i_lui(&p, K0, uasm_rel_hi((long)tlb_do_page_fault_1));
2316 uasm_i_addiu(&p, K0, K0, uasm_rel_lo((long)tlb_do_page_fault_1));
2317 uasm_i_jr(&p, K0);
2318 } else
2319#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00002320 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
2321 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Jayachandran C6ba045f2013-06-23 17:16:19 +00002323 if (p >= handle_tlbm_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 panic("TLB modify handler fastpath space exceeded");
2325
Thiemo Seufere30ec452008-01-28 20:05:38 +00002326 uasm_resolve_relocs(relocs, labels);
2327 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
2328 (unsigned int)(p - handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Jayachandran C6ba045f2013-06-23 17:16:19 +00002330 dump_handler("r4000_tlb_modify", handle_tlbm, handle_tlbm_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331}
2332
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002333static void flush_tlb_handlers(void)
Jonas Gorskia3d90862013-06-21 17:48:48 +00002334{
2335 local_flush_icache_range((unsigned long)handle_tlbl,
Ralf Baechle6ac53102013-07-02 17:19:04 +02002336 (unsigned long)handle_tlbl_end);
Jonas Gorskia3d90862013-06-21 17:48:48 +00002337 local_flush_icache_range((unsigned long)handle_tlbs,
Ralf Baechle6ac53102013-07-02 17:19:04 +02002338 (unsigned long)handle_tlbs_end);
Jonas Gorskia3d90862013-06-21 17:48:48 +00002339 local_flush_icache_range((unsigned long)handle_tlbm,
Ralf Baechle6ac53102013-07-02 17:19:04 +02002340 (unsigned long)handle_tlbm_end);
Ralf Baechle6ac53102013-07-02 17:19:04 +02002341 local_flush_icache_range((unsigned long)tlbmiss_handler_setup_pgd,
2342 (unsigned long)tlbmiss_handler_setup_pgd_end);
Jonas Gorskia3d90862013-06-21 17:48:48 +00002343}
2344
Markos Chandrasf1014d12014-07-14 12:47:09 +01002345static void print_htw_config(void)
2346{
2347 unsigned long config;
2348 unsigned int pwctl;
2349 const int field = 2 * sizeof(unsigned long);
2350
2351 config = read_c0_pwfield();
2352 pr_debug("PWField (0x%0*lx): GDI: 0x%02lx UDI: 0x%02lx MDI: 0x%02lx PTI: 0x%02lx PTEI: 0x%02lx\n",
2353 field, config,
2354 (config & MIPS_PWFIELD_GDI_MASK) >> MIPS_PWFIELD_GDI_SHIFT,
2355 (config & MIPS_PWFIELD_UDI_MASK) >> MIPS_PWFIELD_UDI_SHIFT,
2356 (config & MIPS_PWFIELD_MDI_MASK) >> MIPS_PWFIELD_MDI_SHIFT,
2357 (config & MIPS_PWFIELD_PTI_MASK) >> MIPS_PWFIELD_PTI_SHIFT,
2358 (config & MIPS_PWFIELD_PTEI_MASK) >> MIPS_PWFIELD_PTEI_SHIFT);
2359
2360 config = read_c0_pwsize();
2361 pr_debug("PWSize (0x%0*lx): GDW: 0x%02lx UDW: 0x%02lx MDW: 0x%02lx PTW: 0x%02lx PTEW: 0x%02lx\n",
2362 field, config,
2363 (config & MIPS_PWSIZE_GDW_MASK) >> MIPS_PWSIZE_GDW_SHIFT,
2364 (config & MIPS_PWSIZE_UDW_MASK) >> MIPS_PWSIZE_UDW_SHIFT,
2365 (config & MIPS_PWSIZE_MDW_MASK) >> MIPS_PWSIZE_MDW_SHIFT,
2366 (config & MIPS_PWSIZE_PTW_MASK) >> MIPS_PWSIZE_PTW_SHIFT,
2367 (config & MIPS_PWSIZE_PTEW_MASK) >> MIPS_PWSIZE_PTEW_SHIFT);
2368
2369 pwctl = read_c0_pwctl();
2370 pr_debug("PWCtl (0x%x): PWEn: 0x%x DPH: 0x%x HugePg: 0x%x Psn: 0x%x\n",
2371 pwctl,
2372 (pwctl & MIPS_PWCTL_PWEN_MASK) >> MIPS_PWCTL_PWEN_SHIFT,
2373 (pwctl & MIPS_PWCTL_DPH_MASK) >> MIPS_PWCTL_DPH_SHIFT,
2374 (pwctl & MIPS_PWCTL_HUGEPG_MASK) >> MIPS_PWCTL_HUGEPG_SHIFT,
2375 (pwctl & MIPS_PWCTL_PSN_MASK) >> MIPS_PWCTL_PSN_SHIFT);
2376}
2377
2378static void config_htw_params(void)
2379{
2380 unsigned long pwfield, pwsize, ptei;
2381 unsigned int config;
2382
2383 /*
2384 * We are using 2-level page tables, so we only need to
2385 * setup GDW and PTW appropriately. UDW and MDW will remain 0.
2386 * The default value of GDI/UDI/MDI/PTI is 0xc. It is illegal to
2387 * write values less than 0xc in these fields because the entire
2388 * write will be dropped. As a result of which, we must preserve
2389 * the original reset values and overwrite only what we really want.
2390 */
2391
2392 pwfield = read_c0_pwfield();
2393 /* re-initialize the GDI field */
2394 pwfield &= ~MIPS_PWFIELD_GDI_MASK;
2395 pwfield |= PGDIR_SHIFT << MIPS_PWFIELD_GDI_SHIFT;
2396 /* re-initialize the PTI field including the even/odd bit */
2397 pwfield &= ~MIPS_PWFIELD_PTI_MASK;
2398 pwfield |= PAGE_SHIFT << MIPS_PWFIELD_PTI_SHIFT;
Paul Burtoncab25bc2015-09-22 12:03:37 -07002399 if (CONFIG_PGTABLE_LEVELS >= 3) {
2400 pwfield &= ~MIPS_PWFIELD_MDI_MASK;
2401 pwfield |= PMD_SHIFT << MIPS_PWFIELD_MDI_SHIFT;
2402 }
Markos Chandrasf1014d12014-07-14 12:47:09 +01002403 /* Set the PTEI right shift */
2404 ptei = _PAGE_GLOBAL_SHIFT << MIPS_PWFIELD_PTEI_SHIFT;
2405 pwfield |= ptei;
2406 write_c0_pwfield(pwfield);
2407 /* Check whether the PTEI value is supported */
2408 back_to_back_c0_hazard();
2409 pwfield = read_c0_pwfield();
2410 if (((pwfield & MIPS_PWFIELD_PTEI_MASK) << MIPS_PWFIELD_PTEI_SHIFT)
2411 != ptei) {
2412 pr_warn("Unsupported PTEI field value: 0x%lx. HTW will not be enabled",
2413 ptei);
2414 /*
2415 * Drop option to avoid HTW being enabled via another path
2416 * (eg htw_reset())
2417 */
2418 current_cpu_data.options &= ~MIPS_CPU_HTW;
2419 return;
2420 }
2421
2422 pwsize = ilog2(PTRS_PER_PGD) << MIPS_PWSIZE_GDW_SHIFT;
2423 pwsize |= ilog2(PTRS_PER_PTE) << MIPS_PWSIZE_PTW_SHIFT;
Paul Burtoncab25bc2015-09-22 12:03:37 -07002424 if (CONFIG_PGTABLE_LEVELS >= 3)
2425 pwsize |= ilog2(PTRS_PER_PMD) << MIPS_PWSIZE_MDW_SHIFT;
Steven J. Hillc5b36782015-02-26 18:16:38 -06002426
James Hogan14bc2412016-04-19 09:25:00 +01002427 pwsize |= ilog2(sizeof(pte_t)/4) << MIPS_PWSIZE_PTEW_SHIFT;
Steven J. Hillc5b36782015-02-26 18:16:38 -06002428
Markos Chandrasf1014d12014-07-14 12:47:09 +01002429 write_c0_pwsize(pwsize);
2430
2431 /* Make sure everything is set before we enable the HTW */
2432 back_to_back_c0_hazard();
2433
2434 /* Enable HTW and disable the rest of the pwctl fields */
2435 config = 1 << MIPS_PWCTL_PWEN_SHIFT;
2436 write_c0_pwctl(config);
2437 pr_info("Hardware Page Table Walker enabled\n");
2438
2439 print_htw_config();
2440}
2441
Steven J. Hillc5b36782015-02-26 18:16:38 -06002442static void config_xpa_params(void)
2443{
2444#ifdef CONFIG_XPA
2445 unsigned int pagegrain;
2446
2447 if (mips_xpa_disabled) {
2448 pr_info("Extended Physical Addressing (XPA) disabled\n");
2449 return;
2450 }
2451
2452 pagegrain = read_c0_pagegrain();
2453 write_c0_pagegrain(pagegrain | PG_ELPA);
2454 back_to_back_c0_hazard();
2455 pagegrain = read_c0_pagegrain();
2456
2457 if (pagegrain & PG_ELPA)
2458 pr_info("Extended Physical Addressing (XPA) enabled\n");
2459 else
2460 panic("Extended Physical Addressing (XPA) disabled");
2461#endif
2462}
2463
Paul Burton00bf1c62015-09-22 11:42:52 -07002464static void check_pabits(void)
2465{
2466 unsigned long entry;
2467 unsigned pabits, fillbits;
2468
2469 if (!cpu_has_rixi || !_PAGE_NO_EXEC) {
2470 /*
2471 * We'll only be making use of the fact that we can rotate bits
2472 * into the fill if the CPU supports RIXI, so don't bother
2473 * probing this for CPUs which don't.
2474 */
2475 return;
2476 }
2477
2478 write_c0_entrylo0(~0ul);
2479 back_to_back_c0_hazard();
2480 entry = read_c0_entrylo0();
2481
2482 /* clear all non-PFN bits */
2483 entry &= ~((1 << MIPS_ENTRYLO_PFN_SHIFT) - 1);
2484 entry &= ~(MIPS_ENTRYLO_RI | MIPS_ENTRYLO_XI);
2485
2486 /* find a lower bound on PABITS, and upper bound on fill bits */
2487 pabits = fls_long(entry) + 6;
2488 fillbits = max_t(int, (int)BITS_PER_LONG - pabits, 0);
2489
2490 /* minus the RI & XI bits */
2491 fillbits -= min_t(unsigned, fillbits, 2);
2492
2493 if (fillbits >= ilog2(_PAGE_NO_EXEC))
2494 fill_includes_sw_bits = true;
2495
2496 pr_debug("Entry* registers contain %u fill bits\n", fillbits);
2497}
2498
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002499void build_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
2501 /*
2502 * The refill handler is generated per-CPU, multi-node systems
2503 * may have local storage for it. The other handlers are only
2504 * needed once.
2505 */
2506 static int run_once = 0;
2507
Ralf Baechlea2c763e2012-10-16 22:20:26 +02002508 output_pgtable_bits_defines();
Paul Burton00bf1c62015-09-22 11:42:52 -07002509 check_pabits();
Ralf Baechlea2c763e2012-10-16 22:20:26 +02002510
David Daney1ec56322010-04-28 12:16:18 -07002511#ifdef CONFIG_64BIT
2512 check_for_high_segbits = current_cpu_data.vmbits > (PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
2513#endif
2514
Ralf Baechle10cc3522007-10-11 23:46:15 +01002515 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 case CPU_R2000:
2517 case CPU_R3000:
2518 case CPU_R3000A:
2519 case CPU_R3081E:
2520 case CPU_TX3912:
2521 case CPU_TX3922:
2522 case CPU_TX3927:
David Daney82622282009-10-14 12:16:56 -07002523#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
Huacai Chen87599342013-03-17 11:49:38 +00002524 if (cpu_has_local_ebase)
2525 build_r3000_tlb_refill_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 if (!run_once) {
Huacai Chen87599342013-03-17 11:49:38 +00002527 if (!cpu_has_local_ebase)
2528 build_r3000_tlb_refill_handler();
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05302529 build_setup_pgd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 build_r3000_tlb_load_handler();
2531 build_r3000_tlb_store_handler();
2532 build_r3000_tlb_modify_handler();
Jonas Gorskia3d90862013-06-21 17:48:48 +00002533 flush_tlb_handlers();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 run_once++;
2535 }
David Daney82622282009-10-14 12:16:56 -07002536#else
2537 panic("No R3000 TLB refill handler");
2538#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 break;
2540
2541 case CPU_R6000:
2542 case CPU_R6000A:
2543 panic("No R6000 TLB refill handler yet");
2544 break;
2545
2546 case CPU_R8000:
2547 panic("No R8000 TLB refill handler yet");
2548 break;
2549
2550 default:
Huacai Chen380cd582016-03-03 09:45:12 +08002551 if (cpu_has_ldpte)
2552 setup_pw();
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 if (!run_once) {
David Daneybf286072011-07-05 16:34:46 -07002555 scratch_reg = allocate_kscratch();
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05302556 build_setup_pgd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 build_r4000_tlb_load_handler();
2558 build_r4000_tlb_store_handler();
2559 build_r4000_tlb_modify_handler();
Huacai Chen380cd582016-03-03 09:45:12 +08002560 if (cpu_has_ldpte)
2561 build_loongson3_tlb_refill_handler();
2562 else if (!cpu_has_local_ebase)
Huacai Chen87599342013-03-17 11:49:38 +00002563 build_r4000_tlb_refill_handler();
Jonas Gorskia3d90862013-06-21 17:48:48 +00002564 flush_tlb_handlers();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 run_once++;
2566 }
Huacai Chen87599342013-03-17 11:49:38 +00002567 if (cpu_has_local_ebase)
2568 build_r4000_tlb_refill_handler();
Steven J. Hillc5b36782015-02-26 18:16:38 -06002569 if (cpu_has_xpa)
2570 config_xpa_params();
Markos Chandrasf1014d12014-07-14 12:47:09 +01002571 if (cpu_has_htw)
2572 config_htw_params();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 }
2574}