blob: f625fd20b21e60de9460e194ebba368548158cc2 [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);
Paul Burton780602d2016-04-19 09:25:03 +0100237 pr_define("_PAGE_NO_READ_SHIFT %d\n", _PAGE_NO_READ_SHIFT);
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200238 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
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200244#ifdef _PAGE_NO_EXEC_SHIFT
Paul Burton780602d2016-04-19 09:25:03 +0100245 if (cpu_has_rixi)
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200246 pr_define("_PAGE_NO_EXEC_SHIFT %d\n", _PAGE_NO_EXEC_SHIFT);
Steven J. Hillbe0c37c2015-02-26 18:16:37 -0600247#endif
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200248 pr_define("_PAGE_GLOBAL_SHIFT %d\n", _PAGE_GLOBAL_SHIFT);
249 pr_define("_PAGE_VALID_SHIFT %d\n", _PAGE_VALID_SHIFT);
250 pr_define("_PAGE_DIRTY_SHIFT %d\n", _PAGE_DIRTY_SHIFT);
251 pr_define("_PFN_SHIFT %d\n", _PFN_SHIFT);
252 pr_debug("\n");
253}
254
255static inline void dump_handler(const char *symbol, const u32 *handler, int count)
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200256{
257 int i;
258
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200259 pr_debug("LEAF(%s)\n", symbol);
260
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200261 pr_debug("\t.set push\n");
262 pr_debug("\t.set noreorder\n");
263
264 for (i = 0; i < count; i++)
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200265 pr_debug("\t.word\t0x%08x\t\t# %p\n", handler[i], &handler[i]);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200266
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200267 pr_debug("\t.set\tpop\n");
268
269 pr_debug("\tEND(%s)\n", symbol);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272/* The only general purpose registers allowed in TLB handlers. */
273#define K0 26
274#define K1 27
275
276/* Some CP0 registers */
Ralf Baechle41c594a2006-04-05 09:45:45 +0100277#define C0_INDEX 0, 0
278#define C0_ENTRYLO0 2, 0
279#define C0_TCBIND 2, 2
280#define C0_ENTRYLO1 3, 0
281#define C0_CONTEXT 4, 0
David Daneyfd062c82009-05-27 17:47:44 -0700282#define C0_PAGEMASK 5, 0
Huacai Chen380cd582016-03-03 09:45:12 +0800283#define C0_PWBASE 5, 5
284#define C0_PWFIELD 5, 6
285#define C0_PWSIZE 5, 7
286#define C0_PWCTL 6, 6
Ralf Baechle41c594a2006-04-05 09:45:45 +0100287#define C0_BADVADDR 8, 0
Huacai Chen380cd582016-03-03 09:45:12 +0800288#define C0_PGD 9, 7
Ralf Baechle41c594a2006-04-05 09:45:45 +0100289#define C0_ENTRYHI 10, 0
290#define C0_EPC 14, 0
291#define C0_XCONTEXT 20, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Ralf Baechle875d43e2005-09-03 15:56:16 -0700293#ifdef CONFIG_64BIT
Thiemo Seufere30ec452008-01-28 20:05:38 +0000294# define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_XCONTEXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#else
Thiemo Seufere30ec452008-01-28 20:05:38 +0000296# define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_CONTEXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297#endif
298
299/* The worst case length of the handler is around 18 instructions for
300 * R3000-style TLBs and up to 63 instructions for R4000-style TLBs.
301 * Maximum space available is 32 instructions for R3000 and 64
302 * instructions for R4000.
303 *
304 * We deliberately chose a buffer size of 128, so we won't scribble
305 * over anything important on overflow before we panic.
306 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000307static u32 tlb_handler[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309/* simply assume worst case size for labels and relocs */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000310static struct uasm_label labels[128];
311static struct uasm_reloc relocs[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000313static int check_for_high_segbits;
Paul Burton00bf1c62015-09-22 11:42:52 -0700314static bool fill_includes_sw_bits;
David Daney3d8bfdd2010-12-21 14:19:11 -0800315
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000316static unsigned int kscratch_used_mask;
David Daney3d8bfdd2010-12-21 14:19:11 -0800317
Jayachandran C7777b932013-06-11 14:41:35 +0000318static inline int __maybe_unused c0_kscratch(void)
319{
320 switch (current_cpu_type()) {
321 case CPU_XLP:
322 case CPU_XLR:
323 return 22;
324 default:
325 return 31;
326 }
327}
328
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000329static int allocate_kscratch(void)
David Daney3d8bfdd2010-12-21 14:19:11 -0800330{
331 int r;
332 unsigned int a = cpu_data[0].kscratch_mask & ~kscratch_used_mask;
333
334 r = ffs(a);
335
336 if (r == 0)
337 return -1;
338
339 r--; /* make it zero based */
340
341 kscratch_used_mask |= (1 << r);
342
343 return r;
344}
345
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000346static int scratch_reg;
347static int pgd_reg;
David Daney2c8c53e2010-12-27 18:07:57 -0800348enum vmalloc64_mode {not_refill, refill_scratch, refill_noscratch};
David Daney3d8bfdd2010-12-21 14:19:11 -0800349
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000350static struct work_registers build_get_work_registers(u32 **p)
David Daneybf286072011-07-05 16:34:46 -0700351{
352 struct work_registers r;
353
Jayachandran C0e6ecc12013-06-11 14:41:36 +0000354 if (scratch_reg >= 0) {
David Daneybf286072011-07-05 16:34:46 -0700355 /* Save in CPU local C0_KScratch? */
Jayachandran C7777b932013-06-11 14:41:35 +0000356 UASM_i_MTC0(p, 1, c0_kscratch(), scratch_reg);
David Daneybf286072011-07-05 16:34:46 -0700357 r.r1 = K0;
358 r.r2 = K1;
359 r.r3 = 1;
360 return r;
361 }
362
363 if (num_possible_cpus() > 1) {
David Daneybf286072011-07-05 16:34:46 -0700364 /* Get smp_processor_id */
Jayachandran Cc2377a42013-08-11 17:10:16 +0530365 UASM_i_CPUID_MFC0(p, K0, SMP_CPUID_REG);
366 UASM_i_SRL_SAFE(p, K0, K0, SMP_CPUID_REGSHIFT);
David Daneybf286072011-07-05 16:34:46 -0700367
368 /* handler_reg_save index in K0 */
369 UASM_i_SLL(p, K0, K0, ilog2(sizeof(struct tlb_reg_save)));
370
371 UASM_i_LA(p, K1, (long)&handler_reg_save);
372 UASM_i_ADDU(p, K0, K0, K1);
373 } else {
374 UASM_i_LA(p, K0, (long)&handler_reg_save);
375 }
376 /* K0 now points to save area, save $1 and $2 */
377 UASM_i_SW(p, 1, offsetof(struct tlb_reg_save, a), K0);
378 UASM_i_SW(p, 2, offsetof(struct tlb_reg_save, b), K0);
379
380 r.r1 = K1;
381 r.r2 = 1;
382 r.r3 = 2;
383 return r;
384}
385
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000386static void build_restore_work_registers(u32 **p)
David Daneybf286072011-07-05 16:34:46 -0700387{
Jayachandran C0e6ecc12013-06-11 14:41:36 +0000388 if (scratch_reg >= 0) {
Dmitry Korotindd8f65a2019-06-24 19:05:27 +0000389 uasm_i_ehb(p);
Jayachandran C7777b932013-06-11 14:41:35 +0000390 UASM_i_MFC0(p, 1, c0_kscratch(), scratch_reg);
David Daneybf286072011-07-05 16:34:46 -0700391 return;
392 }
393 /* K0 already points to save area, restore $1 and $2 */
394 UASM_i_LW(p, 1, offsetof(struct tlb_reg_save, a), K0);
395 UASM_i_LW(p, 2, offsetof(struct tlb_reg_save, b), K0);
396}
397
David Daney2c8c53e2010-12-27 18:07:57 -0800398#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
399
David Daney826222842009-10-14 12:16:56 -0700400/*
401 * CONFIG_MIPS_PGD_C0_CONTEXT implies 64 bit and lack of pgd_current,
402 * we cannot do r3000 under these circumstances.
David Daney3d8bfdd2010-12-21 14:19:11 -0800403 *
404 * Declare pgd_current here instead of including mmu_context.h to avoid type
405 * conflicts for tlbmiss_handler_setup_pgd
David Daney826222842009-10-14 12:16:56 -0700406 */
David Daney3d8bfdd2010-12-21 14:19:11 -0800407extern unsigned long pgd_current[];
David Daney826222842009-10-14 12:16:56 -0700408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409/*
410 * The R3000 TLB handler is simple.
411 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000412static void build_r3000_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 long pgdc = (long)pgd_current;
415 u32 *p;
416
417 memset(tlb_handler, 0, sizeof(tlb_handler));
418 p = tlb_handler;
419
Thiemo Seufere30ec452008-01-28 20:05:38 +0000420 uasm_i_mfc0(&p, K0, C0_BADVADDR);
421 uasm_i_lui(&p, K1, uasm_rel_hi(pgdc)); /* cp0 delay */
422 uasm_i_lw(&p, K1, uasm_rel_lo(pgdc), K1);
423 uasm_i_srl(&p, K0, K0, 22); /* load delay */
424 uasm_i_sll(&p, K0, K0, 2);
425 uasm_i_addu(&p, K1, K1, K0);
426 uasm_i_mfc0(&p, K0, C0_CONTEXT);
427 uasm_i_lw(&p, K1, 0, K1); /* cp0 delay */
428 uasm_i_andi(&p, K0, K0, 0xffc); /* load delay */
429 uasm_i_addu(&p, K1, K1, K0);
430 uasm_i_lw(&p, K0, 0, K1);
431 uasm_i_nop(&p); /* load delay */
432 uasm_i_mtc0(&p, K0, C0_ENTRYLO0);
433 uasm_i_mfc0(&p, K1, C0_EPC); /* cp0 delay */
434 uasm_i_tlbwr(&p); /* cp0 delay */
435 uasm_i_jr(&p, K1);
436 uasm_i_rfe(&p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 if (p > tlb_handler + 32)
439 panic("TLB refill handler space exceeded");
440
Thiemo Seufere30ec452008-01-28 20:05:38 +0000441 pr_debug("Wrote TLB refill handler (%u instructions).\n",
442 (unsigned int)(p - tlb_handler));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Ralf Baechle91b05e62006-03-29 18:53:00 +0100444 memcpy((void *)ebase, tlb_handler, 0x80);
Leonid Yegoshin10620802014-07-11 15:18:05 -0700445 local_flush_icache_range(ebase, ebase + 0x80);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +0200446
Ralf Baechlea2c763e2012-10-16 22:20:26 +0200447 dump_handler("r3000_tlb_refill", (u32 *)ebase, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
David Daney826222842009-10-14 12:16:56 -0700449#endif /* CONFIG_MIPS_PGD_C0_CONTEXT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451/*
452 * The R4000 TLB handler is much more complicated. We have two
453 * consecutive handler areas with 32 instructions space each.
454 * Since they aren't used at the same time, we can overflow in the
455 * other one.To keep things simple, we first assume linear space,
456 * then we relocate it to the final handler layout as needed.
457 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000458static u32 final_handler[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460/*
461 * Hazards
462 *
463 * From the IDT errata for the QED RM5230 (Nevada), processor revision 1.0:
464 * 2. A timing hazard exists for the TLBP instruction.
465 *
Ralf Baechle70342282013-01-22 12:59:30 +0100466 * stalling_instruction
467 * TLBP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 *
469 * The JTLB is being read for the TLBP throughout the stall generated by the
470 * previous instruction. This is not really correct as the stalling instruction
471 * can modify the address used to access the JTLB. The failure symptom is that
472 * the TLBP instruction will use an address created for the stalling instruction
473 * and not the address held in C0_ENHI and thus report the wrong results.
474 *
475 * The software work-around is to not allow the instruction preceding the TLBP
476 * to stall - make it an NOP or some other instruction guaranteed not to stall.
477 *
Ralf Baechle70342282013-01-22 12:59:30 +0100478 * Errata 2 will not be fixed. This errata is also on the R5000.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 *
480 * As if we MIPS hackers wouldn't know how to nop pipelines happy ...
481 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000482static void __maybe_unused build_tlb_probe_entry(u32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Ralf Baechle10cc3522007-10-11 23:46:15 +0100484 switch (current_cpu_type()) {
Thomas Bogendoerfer326e2e12008-05-12 13:55:42 +0200485 /* Found by experiment: R4600 v2.0/R4700 needs this, too. */
Thiemo Seuferf5b4d952005-09-09 17:11:50 +0000486 case CPU_R4600:
Thomas Bogendoerfer326e2e12008-05-12 13:55:42 +0200487 case CPU_R4700:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 case CPU_R5000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 case CPU_NEVADA:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000490 uasm_i_nop(p);
491 uasm_i_tlbp(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493
494 default:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000495 uasm_i_tlbp(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 break;
497 }
498}
499
500/*
501 * Write random or indexed TLB entry, and care about the hazards from
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300502 * the preceding mtc0 and for the following eret.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 */
504enum tlb_write_entry { tlb_random, tlb_indexed };
505
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000506static void build_tlb_write_entry(u32 **p, struct uasm_label **l,
507 struct uasm_reloc **r,
508 enum tlb_write_entry wmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 void(*tlbw)(u32 **) = NULL;
511
512 switch (wmode) {
Thiemo Seufere30ec452008-01-28 20:05:38 +0000513 case tlb_random: tlbw = uasm_i_tlbwr; break;
514 case tlb_indexed: tlbw = uasm_i_tlbwi; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516
Ralf Baechle9eaffa82015-03-25 13:18:27 +0100517 if (cpu_has_mips_r2_r6) {
518 if (cpu_has_mips_r2_exec_hazard)
David Daney41f0e4d2009-05-12 12:41:53 -0700519 uasm_i_ehb(p);
Ralf Baechle161548b2008-01-29 10:14:54 +0000520 tlbw(p);
521 return;
522 }
523
Ralf Baechle10cc3522007-10-11 23:46:15 +0100524 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 case CPU_R4000PC:
526 case CPU_R4000SC:
527 case CPU_R4000MC:
528 case CPU_R4400PC:
529 case CPU_R4400SC:
530 case CPU_R4400MC:
531 /*
532 * This branch uses up a mtc0 hazard nop slot and saves
533 * two nops after the tlbw instruction.
534 */
Ralf Baechle02a54172012-10-13 22:46:26 +0200535 uasm_bgezl_hazard(p, r, hazard_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 tlbw(p);
Ralf Baechle02a54172012-10-13 22:46:26 +0200537 uasm_bgezl_label(l, p, hazard_instance);
538 hazard_instance++;
Thiemo Seufere30ec452008-01-28 20:05:38 +0000539 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 break;
541
542 case CPU_R4600:
543 case CPU_R4700:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000544 uasm_i_nop(p);
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000545 tlbw(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000546 uasm_i_nop(p);
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000547 break;
548
Ralf Baechle359187d2012-10-16 22:13:06 +0200549 case CPU_R5000:
Ralf Baechle359187d2012-10-16 22:13:06 +0200550 case CPU_NEVADA:
551 uasm_i_nop(p); /* QED specifies 2 nops hazard */
552 uasm_i_nop(p); /* QED specifies 2 nops hazard */
553 tlbw(p);
554 break;
555
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000556 case CPU_R4300:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 case CPU_5KC:
558 case CPU_TX49XX:
Pete Popovbdf21b12005-07-14 17:47:57 +0000559 case CPU_PR4450:
Jayachandran Cefa0f812011-05-07 01:36:21 +0530560 case CPU_XLR:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000561 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 tlbw(p);
563 break;
564
565 case CPU_R10000:
566 case CPU_R12000:
Kumba44d921b2006-05-16 22:23:59 -0400567 case CPU_R14000:
Joshua Kinard30577392015-01-21 07:59:45 -0500568 case CPU_R16000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 case CPU_4KC:
Thomas Bogendoerferb1ec4c82008-03-26 16:42:54 +0100570 case CPU_4KEC:
Steven J. Hill113c62d2012-07-06 23:56:00 +0200571 case CPU_M14KC:
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000572 case CPU_M14KEC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 case CPU_SB1:
Andrew Isaacson93ce2f522005-10-19 23:56:20 -0700574 case CPU_SB1A:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 case CPU_4KSC:
576 case CPU_20KC:
577 case CPU_25KF:
Kevin Cernekee602977b2010-10-16 14:22:30 -0700578 case CPU_BMIPS32:
579 case CPU_BMIPS3300:
580 case CPU_BMIPS4350:
581 case CPU_BMIPS4380:
582 case CPU_BMIPS5000:
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800583 case CPU_LOONGSON2:
Huacai Chenc579d312014-03-21 18:44:00 +0800584 case CPU_LOONGSON3:
Shinya Kuribayashia644b272009-03-03 18:05:51 +0900585 case CPU_R5500:
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +0100586 if (m4kc_tlbp_war())
Thiemo Seufere30ec452008-01-28 20:05:38 +0000587 uasm_i_nop(p);
Manuel Lauss2f794d02009-03-25 17:49:30 +0100588 case CPU_ALCHEMY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 tlbw(p);
590 break;
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 case CPU_RM7000:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000593 uasm_i_nop(p);
594 uasm_i_nop(p);
595 uasm_i_nop(p);
596 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 tlbw(p);
598 break;
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 case CPU_VR4111:
601 case CPU_VR4121:
602 case CPU_VR4122:
603 case CPU_VR4181:
604 case CPU_VR4181A:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000605 uasm_i_nop(p);
606 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 tlbw(p);
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 break;
611
612 case CPU_VR4131:
613 case CPU_VR4133:
Ralf Baechle7623deb2005-08-29 16:49:55 +0000614 case CPU_R5432:
Thiemo Seufere30ec452008-01-28 20:05:38 +0000615 uasm_i_nop(p);
616 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 tlbw(p);
618 break;
619
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +0000620 case CPU_JZRISC:
621 tlbw(p);
622 uasm_i_nop(p);
623 break;
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 default:
626 panic("No TLB refill handler yet (CPU type: %d)",
Wu Zhangjind7b12052010-12-26 04:42:37 +0800627 current_cpu_type());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 break;
629 }
630}
631
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000632static __maybe_unused void build_convert_pte_to_entrylo(u32 **p,
633 unsigned int reg)
David Daney6dd93442010-02-10 15:12:47 -0800634{
Paul Burton2caa89b2016-04-19 09:25:09 +0100635 if (_PAGE_GLOBAL_SHIFT == 0) {
636 /* pte_t is already in EntryLo format */
637 return;
638 }
639
Nathan Chancellorcbc44672019-08-11 20:31:20 -0700640 if (cpu_has_rixi && !!_PAGE_NO_EXEC) {
Paul Burton00bf1c62015-09-22 11:42:52 -0700641 if (fill_includes_sw_bits) {
642 UASM_i_ROTR(p, reg, reg, ilog2(_PAGE_GLOBAL));
643 } else {
644 UASM_i_SRL(p, reg, reg, ilog2(_PAGE_NO_EXEC));
645 UASM_i_ROTR(p, reg, reg,
646 ilog2(_PAGE_GLOBAL) - ilog2(_PAGE_NO_EXEC));
647 }
David Daney6dd93442010-02-10 15:12:47 -0800648 } else {
Ralf Baechle34adb282014-11-22 00:16:48 +0100649#ifdef CONFIG_PHYS_ADDR_T_64BIT
David Daney3be60222010-04-28 12:16:17 -0700650 uasm_i_dsrl_safe(p, reg, reg, ilog2(_PAGE_GLOBAL));
David Daney6dd93442010-02-10 15:12:47 -0800651#else
652 UASM_i_SRL(p, reg, reg, ilog2(_PAGE_GLOBAL));
653#endif
654 }
655}
656
David Daneyaa1762f2012-10-17 00:48:10 +0200657#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daney6dd93442010-02-10 15:12:47 -0800658
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000659static void build_restore_pagemask(u32 **p, struct uasm_reloc **r,
660 unsigned int tmp, enum label_id lid,
661 int restore_scratch)
David Daney6dd93442010-02-10 15:12:47 -0800662{
David Daney2c8c53e2010-12-27 18:07:57 -0800663 if (restore_scratch) {
Paul Burtonbfdf9822019-10-18 15:38:48 -0700664 /*
665 * Ensure the MFC0 below observes the value written to the
666 * KScratch register by the prior MTC0.
667 */
668 if (scratch_reg >= 0)
669 uasm_i_ehb(p);
670
David Daney2c8c53e2010-12-27 18:07:57 -0800671 /* Reset default page size */
672 if (PM_DEFAULT_MASK >> 16) {
673 uasm_i_lui(p, tmp, PM_DEFAULT_MASK >> 16);
674 uasm_i_ori(p, tmp, tmp, PM_DEFAULT_MASK & 0xffff);
675 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
676 uasm_il_b(p, r, lid);
677 } else if (PM_DEFAULT_MASK) {
678 uasm_i_ori(p, tmp, 0, PM_DEFAULT_MASK);
679 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
680 uasm_il_b(p, r, lid);
681 } else {
682 uasm_i_mtc0(p, 0, C0_PAGEMASK);
683 uasm_il_b(p, r, lid);
684 }
Paul Burtonbfdf9822019-10-18 15:38:48 -0700685 if (scratch_reg >= 0)
Jayachandran C7777b932013-06-11 14:41:35 +0000686 UASM_i_MFC0(p, 1, c0_kscratch(), scratch_reg);
Paul Burtonbfdf9822019-10-18 15:38:48 -0700687 else
David Daney2c8c53e2010-12-27 18:07:57 -0800688 UASM_i_LW(p, 1, scratchpad_offset(0), 0);
David Daney6dd93442010-02-10 15:12:47 -0800689 } else {
David Daney2c8c53e2010-12-27 18:07:57 -0800690 /* Reset default page size */
691 if (PM_DEFAULT_MASK >> 16) {
692 uasm_i_lui(p, tmp, PM_DEFAULT_MASK >> 16);
693 uasm_i_ori(p, tmp, tmp, PM_DEFAULT_MASK & 0xffff);
694 uasm_il_b(p, r, lid);
695 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
696 } else if (PM_DEFAULT_MASK) {
697 uasm_i_ori(p, tmp, 0, PM_DEFAULT_MASK);
698 uasm_il_b(p, r, lid);
699 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
700 } else {
701 uasm_il_b(p, r, lid);
702 uasm_i_mtc0(p, 0, C0_PAGEMASK);
703 }
David Daney6dd93442010-02-10 15:12:47 -0800704 }
705}
706
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000707static void build_huge_tlb_write_entry(u32 **p, struct uasm_label **l,
708 struct uasm_reloc **r,
709 unsigned int tmp,
710 enum tlb_write_entry wmode,
711 int restore_scratch)
David Daneyfd062c82009-05-27 17:47:44 -0700712{
713 /* Set huge page tlb entry size */
714 uasm_i_lui(p, tmp, PM_HUGE_MASK >> 16);
715 uasm_i_ori(p, tmp, tmp, PM_HUGE_MASK & 0xffff);
716 uasm_i_mtc0(p, tmp, C0_PAGEMASK);
717
718 build_tlb_write_entry(p, l, r, wmode);
719
David Daney2c8c53e2010-12-27 18:07:57 -0800720 build_restore_pagemask(p, r, tmp, label_leave, restore_scratch);
David Daneyfd062c82009-05-27 17:47:44 -0700721}
722
723/*
724 * Check if Huge PTE is present, if so then jump to LABEL.
725 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000726static void
David Daneyfd062c82009-05-27 17:47:44 -0700727build_is_huge_pte(u32 **p, struct uasm_reloc **r, unsigned int tmp,
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000728 unsigned int pmd, int lid)
David Daneyfd062c82009-05-27 17:47:44 -0700729{
730 UASM_i_LW(p, tmp, 0, pmd);
David Daneycc33ae42010-12-20 15:54:50 -0800731 if (use_bbit_insns()) {
732 uasm_il_bbit1(p, r, tmp, ilog2(_PAGE_HUGE), lid);
733 } else {
734 uasm_i_andi(p, tmp, tmp, _PAGE_HUGE);
735 uasm_il_bnez(p, r, tmp, lid);
736 }
David Daneyfd062c82009-05-27 17:47:44 -0700737}
738
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000739static void build_huge_update_entries(u32 **p, unsigned int pte,
740 unsigned int tmp)
David Daneyfd062c82009-05-27 17:47:44 -0700741{
742 int small_sequence;
743
744 /*
745 * A huge PTE describes an area the size of the
746 * configured huge page size. This is twice the
747 * of the large TLB entry size we intend to use.
748 * A TLB entry half the size of the configured
749 * huge page size is configured into entrylo0
750 * and entrylo1 to cover the contiguous huge PTE
751 * address space.
752 */
753 small_sequence = (HPAGE_SIZE >> 7) < 0x10000;
754
Ralf Baechle70342282013-01-22 12:59:30 +0100755 /* We can clobber tmp. It isn't used after this.*/
David Daneyfd062c82009-05-27 17:47:44 -0700756 if (!small_sequence)
757 uasm_i_lui(p, tmp, HPAGE_SIZE >> (7 + 16));
758
David Daney6dd93442010-02-10 15:12:47 -0800759 build_convert_pte_to_entrylo(p, pte);
David Daney9b8c3892010-02-10 15:12:44 -0800760 UASM_i_MTC0(p, pte, C0_ENTRYLO0); /* load it */
David Daneyfd062c82009-05-27 17:47:44 -0700761 /* convert to entrylo1 */
762 if (small_sequence)
763 UASM_i_ADDIU(p, pte, pte, HPAGE_SIZE >> 7);
764 else
765 UASM_i_ADDU(p, pte, pte, tmp);
766
David Daney9b8c3892010-02-10 15:12:44 -0800767 UASM_i_MTC0(p, pte, C0_ENTRYLO1); /* load it */
David Daneyfd062c82009-05-27 17:47:44 -0700768}
769
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000770static void build_huge_handler_tail(u32 **p, struct uasm_reloc **r,
771 struct uasm_label **l,
772 unsigned int pte,
Huacai Chen59b87252017-03-16 21:00:27 +0800773 unsigned int ptr,
774 unsigned int flush)
David Daneyfd062c82009-05-27 17:47:44 -0700775{
776#ifdef CONFIG_SMP
777 UASM_i_SC(p, pte, 0, ptr);
778 uasm_il_beqz(p, r, pte, label_tlb_huge_update);
779 UASM_i_LW(p, pte, 0, ptr); /* Needed because SC killed our PTE */
780#else
781 UASM_i_SW(p, pte, 0, ptr);
782#endif
Huacai Chen59b87252017-03-16 21:00:27 +0800783 if (cpu_has_ftlb && flush) {
784 BUG_ON(!cpu_has_tlbinv);
785
786 UASM_i_MFC0(p, ptr, C0_ENTRYHI);
787 uasm_i_ori(p, ptr, ptr, MIPS_ENTRYHI_EHINV);
788 UASM_i_MTC0(p, ptr, C0_ENTRYHI);
789 build_tlb_write_entry(p, l, r, tlb_indexed);
790
791 uasm_i_xori(p, ptr, ptr, MIPS_ENTRYHI_EHINV);
792 UASM_i_MTC0(p, ptr, C0_ENTRYHI);
793 build_huge_update_entries(p, pte, ptr);
794 build_huge_tlb_write_entry(p, l, r, pte, tlb_random, 0);
795
796 return;
797 }
798
David Daneyfd062c82009-05-27 17:47:44 -0700799 build_huge_update_entries(p, pte, ptr);
David Daney2c8c53e2010-12-27 18:07:57 -0800800 build_huge_tlb_write_entry(p, l, r, pte, tlb_indexed, 0);
David Daneyfd062c82009-05-27 17:47:44 -0700801}
David Daneyaa1762f2012-10-17 00:48:10 +0200802#endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */
David Daneyfd062c82009-05-27 17:47:44 -0700803
Ralf Baechle875d43e2005-09-03 15:56:16 -0700804#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805/*
806 * TMP and PTR are scratch.
807 * TMP will be clobbered, PTR will hold the pmd entry.
808 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000809static void
Thiemo Seufere30ec452008-01-28 20:05:38 +0000810build_get_pmde64(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 unsigned int tmp, unsigned int ptr)
812{
David Daney826222842009-10-14 12:16:56 -0700813#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 long pgdc = (long)pgd_current;
David Daney826222842009-10-14 12:16:56 -0700815#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /*
817 * The vmalloc handling is not in the hotpath.
818 */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000819 uasm_i_dmfc0(p, tmp, C0_BADVADDR);
David Daney1ec56322010-04-28 12:16:18 -0700820
821 if (check_for_high_segbits) {
822 /*
823 * The kernel currently implicitely assumes that the
824 * MIPS SEGBITS parameter for the processor is
825 * (PGDIR_SHIFT+PGDIR_BITS) or less, and will never
826 * allocate virtual addresses outside the maximum
827 * range for SEGBITS = (PGDIR_SHIFT+PGDIR_BITS). But
828 * that doesn't prevent user code from accessing the
829 * higher xuseg addresses. Here, we make sure that
830 * everything but the lower xuseg addresses goes down
831 * the module_alloc/vmalloc path.
832 */
833 uasm_i_dsrl_safe(p, ptr, tmp, PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
834 uasm_il_bnez(p, r, ptr, label_vmalloc);
835 } else {
836 uasm_il_bltz(p, r, tmp, label_vmalloc);
837 }
Thiemo Seufere30ec452008-01-28 20:05:38 +0000838 /* No uasm_i_nop needed here, since the next insn doesn't touch TMP. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
David Daney3d8bfdd2010-12-21 14:19:11 -0800840 if (pgd_reg != -1) {
841 /* pgd is in pgd_reg */
Huacai Chen380cd582016-03-03 09:45:12 +0800842 if (cpu_has_ldpte)
843 UASM_i_MFC0(p, ptr, C0_PWBASE);
844 else
845 UASM_i_MFC0(p, ptr, c0_kscratch(), pgd_reg);
David Daney3d8bfdd2010-12-21 14:19:11 -0800846 } else {
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530847#if defined(CONFIG_MIPS_PGD_C0_CONTEXT)
David Daney3d8bfdd2010-12-21 14:19:11 -0800848 /*
849 * &pgd << 11 stored in CONTEXT [23..63].
850 */
851 UASM_i_MFC0(p, ptr, C0_CONTEXT);
852
853 /* Clear lower 23 bits of context. */
854 uasm_i_dins(p, ptr, 0, 0, 23);
855
Ralf Baechle70342282013-01-22 12:59:30 +0100856 /* 1 0 1 0 1 << 6 xkphys cached */
David Daney3d8bfdd2010-12-21 14:19:11 -0800857 uasm_i_ori(p, ptr, ptr, 0x540);
858 uasm_i_drotr(p, ptr, ptr, 11);
David Daney826222842009-10-14 12:16:56 -0700859#elif defined(CONFIG_SMP)
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530860 UASM_i_CPUID_MFC0(p, ptr, SMP_CPUID_REG);
861 uasm_i_dsrl_safe(p, ptr, ptr, SMP_CPUID_PTRSHIFT);
862 UASM_i_LA_mostly(p, tmp, pgdc);
863 uasm_i_daddu(p, ptr, ptr, tmp);
864 uasm_i_dmfc0(p, tmp, C0_BADVADDR);
865 uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866#else
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530867 UASM_i_LA_mostly(p, ptr, pgdc);
868 uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869#endif
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Thiemo Seufere30ec452008-01-28 20:05:38 +0000872 uasm_l_vmalloc_done(l, *p);
Ralf Baechle242954b2006-10-24 02:29:01 +0100873
David Daney3be60222010-04-28 12:16:17 -0700874 /* get pgd offset in bytes */
875 uasm_i_dsrl_safe(p, tmp, tmp, PGDIR_SHIFT - 3);
Ralf Baechle242954b2006-10-24 02:29:01 +0100876
Thiemo Seufere30ec452008-01-28 20:05:38 +0000877 uasm_i_andi(p, tmp, tmp, (PTRS_PER_PGD - 1)<<3);
878 uasm_i_daddu(p, ptr, ptr, tmp); /* add in pgd offset */
David Daney325f8a02009-12-04 13:52:36 -0800879#ifndef __PAGETABLE_PMD_FOLDED
Thiemo Seufere30ec452008-01-28 20:05:38 +0000880 uasm_i_dmfc0(p, tmp, C0_BADVADDR); /* get faulting address */
881 uasm_i_ld(p, ptr, 0, ptr); /* get pmd pointer */
David Daney3be60222010-04-28 12:16:17 -0700882 uasm_i_dsrl_safe(p, tmp, tmp, PMD_SHIFT-3); /* get pmd offset in bytes */
Thiemo Seufere30ec452008-01-28 20:05:38 +0000883 uasm_i_andi(p, tmp, tmp, (PTRS_PER_PMD - 1)<<3);
884 uasm_i_daddu(p, ptr, ptr, tmp); /* add in pmd offset */
David Daney325f8a02009-12-04 13:52:36 -0800885#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
888/*
889 * BVADDR is the faulting address, PTR is scratch.
890 * PTR will hold the pgd for vmalloc.
891 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000892static void
Thiemo Seufere30ec452008-01-28 20:05:38 +0000893build_get_pgd_vmalloc64(u32 **p, struct uasm_label **l, struct uasm_reloc **r,
David Daney1ec56322010-04-28 12:16:18 -0700894 unsigned int bvaddr, unsigned int ptr,
895 enum vmalloc64_mode mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
897 long swpd = (long)swapper_pg_dir;
David Daney1ec56322010-04-28 12:16:18 -0700898 int single_insn_swpd;
899 int did_vmalloc_branch = 0;
900
901 single_insn_swpd = uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Thiemo Seufere30ec452008-01-28 20:05:38 +0000903 uasm_l_vmalloc(l, *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
David Daney2c8c53e2010-12-27 18:07:57 -0800905 if (mode != not_refill && check_for_high_segbits) {
David Daney1ec56322010-04-28 12:16:18 -0700906 if (single_insn_swpd) {
907 uasm_il_bltz(p, r, bvaddr, label_vmalloc_done);
908 uasm_i_lui(p, ptr, uasm_rel_hi(swpd));
909 did_vmalloc_branch = 1;
910 /* fall through */
911 } else {
912 uasm_il_bgez(p, r, bvaddr, label_large_segbits_fault);
913 }
914 }
915 if (!did_vmalloc_branch) {
James Hogan2f8f8c02016-07-08 14:05:56 +0100916 if (single_insn_swpd) {
David Daney1ec56322010-04-28 12:16:18 -0700917 uasm_il_b(p, r, label_vmalloc_done);
918 uasm_i_lui(p, ptr, uasm_rel_hi(swpd));
919 } else {
920 UASM_i_LA_mostly(p, ptr, swpd);
921 uasm_il_b(p, r, label_vmalloc_done);
922 if (uasm_in_compat_space_p(swpd))
923 uasm_i_addiu(p, ptr, ptr, uasm_rel_lo(swpd));
924 else
925 uasm_i_daddiu(p, ptr, ptr, uasm_rel_lo(swpd));
926 }
927 }
David Daney2c8c53e2010-12-27 18:07:57 -0800928 if (mode != not_refill && check_for_high_segbits) {
David Daney1ec56322010-04-28 12:16:18 -0700929 uasm_l_large_segbits_fault(l, *p);
Paul Burtonbfdf9822019-10-18 15:38:48 -0700930
931 if (mode == refill_scratch && scratch_reg >= 0)
932 uasm_i_ehb(p);
933
David Daney1ec56322010-04-28 12:16:18 -0700934 /*
935 * We get here if we are an xsseg address, or if we are
936 * an xuseg address above (PGDIR_SHIFT+PGDIR_BITS) boundary.
937 *
938 * Ignoring xsseg (assume disabled so would generate
939 * (address errors?), the only remaining possibility
940 * is the upper xuseg addresses. On processors with
941 * TLB_SEGBITS <= PGDIR_SHIFT+PGDIR_BITS, these
942 * addresses would have taken an address error. We try
943 * to mimic that here by taking a load/istream page
944 * fault.
945 */
946 UASM_i_LA(p, ptr, (unsigned long)tlb_do_page_fault_0);
947 uasm_i_jr(p, ptr);
David Daney2c8c53e2010-12-27 18:07:57 -0800948
949 if (mode == refill_scratch) {
Paul Burtonbfdf9822019-10-18 15:38:48 -0700950 if (scratch_reg >= 0)
Jayachandran C7777b932013-06-11 14:41:35 +0000951 UASM_i_MFC0(p, 1, c0_kscratch(), scratch_reg);
Paul Burtonbfdf9822019-10-18 15:38:48 -0700952 else
David Daney2c8c53e2010-12-27 18:07:57 -0800953 UASM_i_LW(p, 1, scratchpad_offset(0), 0);
954 } else {
955 uasm_i_nop(p);
956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
958}
959
Ralf Baechle875d43e2005-09-03 15:56:16 -0700960#else /* !CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962/*
963 * TMP and PTR are scratch.
964 * TMP will be clobbered, PTR will hold the pgd entry.
965 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000966static void __maybe_unused
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr)
968{
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530969 if (pgd_reg != -1) {
970 /* pgd is in pgd_reg */
971 uasm_i_mfc0(p, ptr, c0_kscratch(), pgd_reg);
972 uasm_i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */
973 } else {
974 long pgdc = (long)pgd_current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530976 /* 32 bit SMP has smp_processor_id() stored in CONTEXT. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977#ifdef CONFIG_SMP
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530978 uasm_i_mfc0(p, ptr, SMP_CPUID_REG);
979 UASM_i_LA_mostly(p, tmp, pgdc);
980 uasm_i_srl(p, ptr, ptr, SMP_CPUID_PTRSHIFT);
981 uasm_i_addu(p, ptr, tmp, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982#else
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530983 UASM_i_LA_mostly(p, ptr, pgdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984#endif
Jayachandran Cf4ae17a2013-09-25 16:28:04 +0530985 uasm_i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */
986 uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr);
987 }
Thiemo Seufere30ec452008-01-28 20:05:38 +0000988 uasm_i_srl(p, tmp, tmp, PGDIR_SHIFT); /* get pgd only bits */
989 uasm_i_sll(p, tmp, tmp, PGD_T_LOG2);
990 uasm_i_addu(p, ptr, ptr, tmp); /* add in pgd offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
Ralf Baechle875d43e2005-09-03 15:56:16 -0700993#endif /* !CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000995static void build_adjust_context(u32 **p, unsigned int ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Ralf Baechle242954b2006-10-24 02:29:01 +0100997 unsigned int shift = 4 - (PTE_T_LOG2 + 1) + PAGE_SHIFT - 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 unsigned int mask = (PTRS_PER_PTE / 2 - 1) << (PTE_T_LOG2 + 1);
999
Ralf Baechle10cc3522007-10-11 23:46:15 +01001000 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 case CPU_VR41XX:
1002 case CPU_VR4111:
1003 case CPU_VR4121:
1004 case CPU_VR4122:
1005 case CPU_VR4131:
1006 case CPU_VR4181:
1007 case CPU_VR4181A:
1008 case CPU_VR4133:
1009 shift += 2;
1010 break;
1011
1012 default:
1013 break;
1014 }
1015
1016 if (shift)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001017 UASM_i_SRL(p, ctx, ctx, shift);
1018 uasm_i_andi(p, ctx, ctx, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001021static void build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
1023 /*
1024 * Bug workaround for the Nevada. It seems as if under certain
1025 * circumstances the move from cp0_context might produce a
1026 * bogus result when the mfc0 instruction and its consumer are
1027 * in a different cacheline or a load instruction, probably any
1028 * memory reference, is between them.
1029 */
Ralf Baechle10cc3522007-10-11 23:46:15 +01001030 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 case CPU_NEVADA:
Thiemo Seufere30ec452008-01-28 20:05:38 +00001032 UASM_i_LW(p, ptr, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 GET_CONTEXT(p, tmp); /* get context reg */
1034 break;
1035
1036 default:
1037 GET_CONTEXT(p, tmp); /* get context reg */
Thiemo Seufere30ec452008-01-28 20:05:38 +00001038 UASM_i_LW(p, ptr, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 break;
1040 }
1041
1042 build_adjust_context(p, tmp);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001043 UASM_i_ADDU(p, ptr, ptr, tmp); /* add in offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001046static void build_update_entries(u32 **p, unsigned int tmp, unsigned int ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Paul Burton2caa89b2016-04-19 09:25:09 +01001048 int pte_off_even = 0;
1049 int pte_off_odd = sizeof(pte_t);
Paul Burton7b2cb642016-04-19 09:25:05 +01001050
Paul Burton2caa89b2016-04-19 09:25:09 +01001051#if defined(CONFIG_CPU_MIPS32) && defined(CONFIG_PHYS_ADDR_T_64BIT)
1052 /* The low 32 bits of EntryLo is stored in pte_high */
1053 pte_off_even += offsetof(pte_t, pte_high);
1054 pte_off_odd += offsetof(pte_t, pte_high);
1055#endif
1056
Masahiro Yamada97f26452016-08-03 13:45:50 -07001057 if (IS_ENABLED(CONFIG_XPA)) {
Steven J. Hillc5b36782015-02-26 18:16:38 -06001058 uasm_i_lw(p, tmp, pte_off_even, ptep); /* even pte */
Steven J. Hillc5b36782015-02-26 18:16:38 -06001059 UASM_i_ROTR(p, tmp, tmp, ilog2(_PAGE_GLOBAL));
Steven J. Hillc5b36782015-02-26 18:16:38 -06001060 UASM_i_MTC0(p, tmp, C0_ENTRYLO0);
Paul Burton7b2cb642016-04-19 09:25:05 +01001061
James Hogan4b6f99d2016-04-19 09:25:10 +01001062 if (cpu_has_xpa && !mips_xpa_disabled) {
1063 uasm_i_lw(p, tmp, 0, ptep);
1064 uasm_i_ext(p, tmp, tmp, 0, 24);
1065 uasm_i_mthc0(p, tmp, C0_ENTRYLO0);
1066 }
James Hoganf3832192016-04-19 09:25:06 +01001067
1068 uasm_i_lw(p, tmp, pte_off_odd, ptep); /* odd pte */
1069 UASM_i_ROTR(p, tmp, tmp, ilog2(_PAGE_GLOBAL));
1070 UASM_i_MTC0(p, tmp, C0_ENTRYLO1);
1071
James Hogan4b6f99d2016-04-19 09:25:10 +01001072 if (cpu_has_xpa && !mips_xpa_disabled) {
1073 uasm_i_lw(p, tmp, sizeof(pte_t), ptep);
1074 uasm_i_ext(p, tmp, tmp, 0, 24);
1075 uasm_i_mthc0(p, tmp, C0_ENTRYLO1);
1076 }
Paul Burton7b2cb642016-04-19 09:25:05 +01001077 return;
1078 }
1079
Paul Burton2caa89b2016-04-19 09:25:09 +01001080 UASM_i_LW(p, tmp, pte_off_even, ptep); /* get even pte */
1081 UASM_i_LW(p, ptep, pte_off_odd, ptep); /* get odd pte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (r45k_bvahwbug())
1083 build_tlb_probe_entry(p);
Paul Burton974a0b62015-09-22 11:42:49 -07001084 build_convert_pte_to_entrylo(p, tmp);
1085 if (r4k_250MHZhwbug())
1086 UASM_i_MTC0(p, 0, C0_ENTRYLO0);
1087 UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */
1088 build_convert_pte_to_entrylo(p, ptep);
1089 if (r45k_bvahwbug())
1090 uasm_i_mfc0(p, tmp, C0_INDEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (r4k_250MHZhwbug())
David Daney9b8c3892010-02-10 15:12:44 -08001092 UASM_i_MTC0(p, 0, C0_ENTRYLO1);
1093 UASM_i_MTC0(p, ptep, C0_ENTRYLO1); /* load it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
1095
David Daney2c8c53e2010-12-27 18:07:57 -08001096struct mips_huge_tlb_info {
1097 int huge_pte;
1098 int restore_scratch;
David Daney9e0f1622014-10-20 15:34:23 -07001099 bool need_reload_pte;
David Daney2c8c53e2010-12-27 18:07:57 -08001100};
1101
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001102static struct mips_huge_tlb_info
David Daney2c8c53e2010-12-27 18:07:57 -08001103build_fast_tlb_refill_handler (u32 **p, struct uasm_label **l,
1104 struct uasm_reloc **r, unsigned int tmp,
Jayachandran C7777b932013-06-11 14:41:35 +00001105 unsigned int ptr, int c0_scratch_reg)
David Daney2c8c53e2010-12-27 18:07:57 -08001106{
1107 struct mips_huge_tlb_info rv;
1108 unsigned int even, odd;
1109 int vmalloc_branch_delay_filled = 0;
1110 const int scratch = 1; /* Our extra working register */
1111
1112 rv.huge_pte = scratch;
1113 rv.restore_scratch = 0;
David Daney9e0f1622014-10-20 15:34:23 -07001114 rv.need_reload_pte = false;
David Daney2c8c53e2010-12-27 18:07:57 -08001115
1116 if (check_for_high_segbits) {
1117 UASM_i_MFC0(p, tmp, C0_BADVADDR);
1118
1119 if (pgd_reg != -1)
Jayachandran C7777b932013-06-11 14:41:35 +00001120 UASM_i_MFC0(p, ptr, c0_kscratch(), pgd_reg);
David Daney2c8c53e2010-12-27 18:07:57 -08001121 else
1122 UASM_i_MFC0(p, ptr, C0_CONTEXT);
1123
Jayachandran C7777b932013-06-11 14:41:35 +00001124 if (c0_scratch_reg >= 0)
1125 UASM_i_MTC0(p, scratch, c0_kscratch(), c0_scratch_reg);
David Daney2c8c53e2010-12-27 18:07:57 -08001126 else
1127 UASM_i_SW(p, scratch, scratchpad_offset(0), 0);
1128
1129 uasm_i_dsrl_safe(p, scratch, tmp,
1130 PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
1131 uasm_il_bnez(p, r, scratch, label_vmalloc);
1132
1133 if (pgd_reg == -1) {
1134 vmalloc_branch_delay_filled = 1;
1135 /* Clear lower 23 bits of context. */
1136 uasm_i_dins(p, ptr, 0, 0, 23);
1137 }
1138 } else {
1139 if (pgd_reg != -1)
Jayachandran C7777b932013-06-11 14:41:35 +00001140 UASM_i_MFC0(p, ptr, c0_kscratch(), pgd_reg);
David Daney2c8c53e2010-12-27 18:07:57 -08001141 else
1142 UASM_i_MFC0(p, ptr, C0_CONTEXT);
1143
1144 UASM_i_MFC0(p, tmp, C0_BADVADDR);
1145
Jayachandran C7777b932013-06-11 14:41:35 +00001146 if (c0_scratch_reg >= 0)
1147 UASM_i_MTC0(p, scratch, c0_kscratch(), c0_scratch_reg);
David Daney2c8c53e2010-12-27 18:07:57 -08001148 else
1149 UASM_i_SW(p, scratch, scratchpad_offset(0), 0);
1150
1151 if (pgd_reg == -1)
1152 /* Clear lower 23 bits of context. */
1153 uasm_i_dins(p, ptr, 0, 0, 23);
1154
1155 uasm_il_bltz(p, r, tmp, label_vmalloc);
1156 }
1157
1158 if (pgd_reg == -1) {
1159 vmalloc_branch_delay_filled = 1;
Ralf Baechle70342282013-01-22 12:59:30 +01001160 /* 1 0 1 0 1 << 6 xkphys cached */
David Daney2c8c53e2010-12-27 18:07:57 -08001161 uasm_i_ori(p, ptr, ptr, 0x540);
1162 uasm_i_drotr(p, ptr, ptr, 11);
1163 }
1164
1165#ifdef __PAGETABLE_PMD_FOLDED
1166#define LOC_PTEP scratch
1167#else
1168#define LOC_PTEP ptr
1169#endif
1170
1171 if (!vmalloc_branch_delay_filled)
1172 /* get pgd offset in bytes */
1173 uasm_i_dsrl_safe(p, scratch, tmp, PGDIR_SHIFT - 3);
1174
1175 uasm_l_vmalloc_done(l, *p);
1176
1177 /*
Ralf Baechle70342282013-01-22 12:59:30 +01001178 * tmp ptr
1179 * fall-through case = badvaddr *pgd_current
1180 * vmalloc case = badvaddr swapper_pg_dir
David Daney2c8c53e2010-12-27 18:07:57 -08001181 */
1182
1183 if (vmalloc_branch_delay_filled)
1184 /* get pgd offset in bytes */
1185 uasm_i_dsrl_safe(p, scratch, tmp, PGDIR_SHIFT - 3);
1186
1187#ifdef __PAGETABLE_PMD_FOLDED
1188 GET_CONTEXT(p, tmp); /* get context reg */
1189#endif
1190 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PGD - 1) << 3);
1191
1192 if (use_lwx_insns()) {
1193 UASM_i_LWX(p, LOC_PTEP, scratch, ptr);
1194 } else {
1195 uasm_i_daddu(p, ptr, ptr, scratch); /* add in pgd offset */
1196 uasm_i_ld(p, LOC_PTEP, 0, ptr); /* get pmd pointer */
1197 }
1198
1199#ifndef __PAGETABLE_PMD_FOLDED
1200 /* get pmd offset in bytes */
1201 uasm_i_dsrl_safe(p, scratch, tmp, PMD_SHIFT - 3);
1202 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PMD - 1) << 3);
1203 GET_CONTEXT(p, tmp); /* get context reg */
1204
1205 if (use_lwx_insns()) {
1206 UASM_i_LWX(p, scratch, scratch, ptr);
1207 } else {
1208 uasm_i_daddu(p, ptr, ptr, scratch); /* add in pmd offset */
1209 UASM_i_LW(p, scratch, 0, ptr);
1210 }
1211#endif
1212 /* Adjust the context during the load latency. */
1213 build_adjust_context(p, tmp);
1214
David Daneyaa1762f2012-10-17 00:48:10 +02001215#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daney2c8c53e2010-12-27 18:07:57 -08001216 uasm_il_bbit1(p, r, scratch, ilog2(_PAGE_HUGE), label_tlb_huge_update);
1217 /*
1218 * The in the LWX case we don't want to do the load in the
Ralf Baechle70342282013-01-22 12:59:30 +01001219 * delay slot. It cannot issue in the same cycle and may be
David Daney2c8c53e2010-12-27 18:07:57 -08001220 * speculative and unneeded.
1221 */
1222 if (use_lwx_insns())
1223 uasm_i_nop(p);
David Daneyaa1762f2012-10-17 00:48:10 +02001224#endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */
David Daney2c8c53e2010-12-27 18:07:57 -08001225
1226
1227 /* build_update_entries */
1228 if (use_lwx_insns()) {
1229 even = ptr;
1230 odd = tmp;
1231 UASM_i_LWX(p, even, scratch, tmp);
1232 UASM_i_ADDIU(p, tmp, tmp, sizeof(pte_t));
1233 UASM_i_LWX(p, odd, scratch, tmp);
1234 } else {
1235 UASM_i_ADDU(p, ptr, scratch, tmp); /* add in offset */
1236 even = tmp;
1237 odd = ptr;
1238 UASM_i_LW(p, even, 0, ptr); /* get even pte */
1239 UASM_i_LW(p, odd, sizeof(pte_t), ptr); /* get odd pte */
1240 }
Steven J. Hill05857c62012-09-13 16:51:46 -05001241 if (cpu_has_rixi) {
David Daney748e7872012-08-23 10:02:03 -07001242 uasm_i_drotr(p, even, even, ilog2(_PAGE_GLOBAL));
David Daney2c8c53e2010-12-27 18:07:57 -08001243 UASM_i_MTC0(p, even, C0_ENTRYLO0); /* load it */
David Daney748e7872012-08-23 10:02:03 -07001244 uasm_i_drotr(p, odd, odd, ilog2(_PAGE_GLOBAL));
David Daney2c8c53e2010-12-27 18:07:57 -08001245 } else {
1246 uasm_i_dsrl_safe(p, even, even, ilog2(_PAGE_GLOBAL));
1247 UASM_i_MTC0(p, even, C0_ENTRYLO0); /* load it */
1248 uasm_i_dsrl_safe(p, odd, odd, ilog2(_PAGE_GLOBAL));
1249 }
1250 UASM_i_MTC0(p, odd, C0_ENTRYLO1); /* load it */
1251
Jayachandran C7777b932013-06-11 14:41:35 +00001252 if (c0_scratch_reg >= 0) {
Dmitry Korotindd8f65a2019-06-24 19:05:27 +00001253 uasm_i_ehb(p);
Jayachandran C7777b932013-06-11 14:41:35 +00001254 UASM_i_MFC0(p, scratch, c0_kscratch(), c0_scratch_reg);
David Daney2c8c53e2010-12-27 18:07:57 -08001255 build_tlb_write_entry(p, l, r, tlb_random);
1256 uasm_l_leave(l, *p);
1257 rv.restore_scratch = 1;
1258 } else if (PAGE_SHIFT == 14 || PAGE_SHIFT == 13) {
1259 build_tlb_write_entry(p, l, r, tlb_random);
1260 uasm_l_leave(l, *p);
1261 UASM_i_LW(p, scratch, scratchpad_offset(0), 0);
1262 } else {
1263 UASM_i_LW(p, scratch, scratchpad_offset(0), 0);
1264 build_tlb_write_entry(p, l, r, tlb_random);
1265 uasm_l_leave(l, *p);
1266 rv.restore_scratch = 1;
1267 }
1268
1269 uasm_i_eret(p); /* return from trap */
1270
1271 return rv;
1272}
1273
David Daneye6f72d32009-05-20 11:40:58 -07001274/*
1275 * For a 64-bit kernel, we are using the 64-bit XTLB refill exception
1276 * because EXL == 0. If we wrap, we can also use the 32 instruction
1277 * slots before the XTLB refill exception handler which belong to the
1278 * unused TLB refill exception.
1279 */
1280#define MIPS64_REFILL_INSNS 32
1281
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001282static void build_r4000_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
1284 u32 *p = tlb_handler;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001285 struct uasm_label *l = labels;
1286 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 u32 *f;
1288 unsigned int final_len;
Ralf Baechle4a9040f2011-03-29 10:54:54 +02001289 struct mips_huge_tlb_info htlb_info __maybe_unused;
1290 enum vmalloc64_mode vmalloc_mode __maybe_unused;
David Daney18280ed2014-05-28 23:52:13 +02001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 memset(tlb_handler, 0, sizeof(tlb_handler));
1293 memset(labels, 0, sizeof(labels));
1294 memset(relocs, 0, sizeof(relocs));
1295 memset(final_handler, 0, sizeof(final_handler));
1296
David Daney18280ed2014-05-28 23:52:13 +02001297 if (IS_ENABLED(CONFIG_64BIT) && (scratch_reg >= 0 || scratchpad_available()) && use_bbit_insns()) {
David Daney2c8c53e2010-12-27 18:07:57 -08001298 htlb_info = build_fast_tlb_refill_handler(&p, &l, &r, K0, K1,
1299 scratch_reg);
1300 vmalloc_mode = refill_scratch;
1301 } else {
1302 htlb_info.huge_pte = K0;
1303 htlb_info.restore_scratch = 0;
David Daney9e0f1622014-10-20 15:34:23 -07001304 htlb_info.need_reload_pte = true;
David Daney2c8c53e2010-12-27 18:07:57 -08001305 vmalloc_mode = refill_noscratch;
1306 /*
1307 * create the plain linear handler
1308 */
1309 if (bcm1250_m3_war()) {
1310 unsigned int segbits = 44;
1311
1312 uasm_i_dmfc0(&p, K0, C0_BADVADDR);
1313 uasm_i_dmfc0(&p, K1, C0_ENTRYHI);
1314 uasm_i_xor(&p, K0, K0, K1);
1315 uasm_i_dsrl_safe(&p, K1, K0, 62);
1316 uasm_i_dsrl_safe(&p, K0, K0, 12 + 1);
1317 uasm_i_dsll_safe(&p, K0, K0, 64 + 12 + 1 - segbits);
1318 uasm_i_or(&p, K0, K0, K1);
1319 uasm_il_bnez(&p, &r, K0, label_leave);
1320 /* No need for uasm_i_nop */
1321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Ralf Baechle875d43e2005-09-03 15:56:16 -07001323#ifdef CONFIG_64BIT
David Daney2c8c53e2010-12-27 18:07:57 -08001324 build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325#else
David Daney2c8c53e2010-12-27 18:07:57 -08001326 build_get_pgde32(&p, K0, K1); /* get pgd in K1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327#endif
1328
David Daneyaa1762f2012-10-17 00:48:10 +02001329#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daney2c8c53e2010-12-27 18:07:57 -08001330 build_is_huge_pte(&p, &r, K0, K1, label_tlb_huge_update);
David Daneyfd062c82009-05-27 17:47:44 -07001331#endif
1332
David Daney2c8c53e2010-12-27 18:07:57 -08001333 build_get_ptep(&p, K0, K1);
1334 build_update_entries(&p, K0, K1);
1335 build_tlb_write_entry(&p, &l, &r, tlb_random);
1336 uasm_l_leave(&l, p);
1337 uasm_i_eret(&p); /* return from trap */
1338 }
David Daneyaa1762f2012-10-17 00:48:10 +02001339#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07001340 uasm_l_tlb_huge_update(&l, p);
David Daney9e0f1622014-10-20 15:34:23 -07001341 if (htlb_info.need_reload_pte)
1342 UASM_i_LW(&p, htlb_info.huge_pte, 0, K1);
David Daney2c8c53e2010-12-27 18:07:57 -08001343 build_huge_update_entries(&p, htlb_info.huge_pte, K1);
1344 build_huge_tlb_write_entry(&p, &l, &r, K0, tlb_random,
1345 htlb_info.restore_scratch);
David Daneyfd062c82009-05-27 17:47:44 -07001346#endif
1347
Ralf Baechle875d43e2005-09-03 15:56:16 -07001348#ifdef CONFIG_64BIT
David Daney2c8c53e2010-12-27 18:07:57 -08001349 build_get_pgd_vmalloc64(&p, &l, &r, K0, K1, vmalloc_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350#endif
1351
1352 /*
1353 * Overflow check: For the 64bit handler, we need at least one
1354 * free instruction slot for the wrap-around branch. In worst
1355 * case, if the intended insertion point is a delay slot, we
Matt LaPlante4b3f6862006-10-03 22:21:02 +02001356 * need three, with the second nop'ed and the third being
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 * unused.
1358 */
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001359 switch (boot_cpu_type()) {
1360 default:
1361 if (sizeof(long) == 4) {
1362 case CPU_LOONGSON2:
1363 /* Loongson2 ebase is different than r4k, we have more space */
1364 if ((p - tlb_handler) > 64)
1365 panic("TLB refill handler space exceeded");
1366 /*
1367 * Now fold the handler in the TLB refill handler space.
1368 */
1369 f = final_handler;
1370 /* Simplest case, just copy the handler. */
1371 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
1372 final_len = p - tlb_handler;
1373 break;
1374 } else {
1375 if (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 1)
1376 || (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 3)
1377 && uasm_insn_has_bdelay(relocs,
1378 tlb_handler + MIPS64_REFILL_INSNS - 3)))
1379 panic("TLB refill handler space exceeded");
1380 /*
1381 * Now fold the handler in the TLB refill handler space.
1382 */
1383 f = final_handler + MIPS64_REFILL_INSNS;
1384 if ((p - tlb_handler) <= MIPS64_REFILL_INSNS) {
1385 /* Just copy the handler. */
1386 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
1387 final_len = p - tlb_handler;
1388 } else {
David Daneyaa1762f2012-10-17 00:48:10 +02001389#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001390 const enum label_id ls = label_tlb_huge_update;
David Daney95affdd2009-05-20 11:40:59 -07001391#else
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001392 const enum label_id ls = label_vmalloc;
David Daney95affdd2009-05-20 11:40:59 -07001393#endif
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001394 u32 *split;
1395 int ov = 0;
1396 int i;
David Daney95affdd2009-05-20 11:40:59 -07001397
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001398 for (i = 0; i < ARRAY_SIZE(labels) && labels[i].lab != ls; i++)
1399 ;
1400 BUG_ON(i == ARRAY_SIZE(labels));
1401 split = labels[i].addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001403 /*
1404 * See if we have overflown one way or the other.
1405 */
1406 if (split > tlb_handler + MIPS64_REFILL_INSNS ||
1407 split < p - MIPS64_REFILL_INSNS)
1408 ov = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001410 if (ov) {
1411 /*
1412 * Split two instructions before the end. One
1413 * for the branch and one for the instruction
1414 * in the delay slot.
1415 */
1416 split = tlb_handler + MIPS64_REFILL_INSNS - 2;
David Daney95affdd2009-05-20 11:40:59 -07001417
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001418 /*
1419 * If the branch would fall in a delay slot,
1420 * we must back up an additional instruction
1421 * so that it is no longer in a delay slot.
1422 */
1423 if (uasm_insn_has_bdelay(relocs, split - 1))
1424 split--;
1425 }
1426 /* Copy first part of the handler. */
1427 uasm_copy_handler(relocs, labels, tlb_handler, split, f);
1428 f += split - tlb_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001430 if (ov) {
1431 /* Insert branch. */
1432 uasm_l_split(&l, final_handler);
1433 uasm_il_b(&f, &r, label_split);
1434 if (uasm_insn_has_bdelay(relocs, split))
1435 uasm_i_nop(&f);
1436 else {
1437 uasm_copy_handler(relocs, labels,
1438 split, split + 1, f);
1439 uasm_move_labels(labels, f, f + 1, -1);
1440 f++;
1441 split++;
1442 }
1443 }
1444
1445 /* Copy the rest of the handler. */
1446 uasm_copy_handler(relocs, labels, split, p, final_handler);
1447 final_len = (f - (final_handler + MIPS64_REFILL_INSNS)) +
1448 (p - split);
David Daney95affdd2009-05-20 11:40:59 -07001449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
Ralf Baechle14bd8c02013-09-25 18:21:26 +02001451 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Thiemo Seufere30ec452008-01-28 20:05:38 +00001454 uasm_resolve_relocs(relocs, labels);
1455 pr_debug("Wrote TLB refill handler (%u instructions).\n",
1456 final_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Ralf Baechle91b05e62006-03-29 18:53:00 +01001458 memcpy((void *)ebase, final_handler, 0x100);
Leonid Yegoshin10620802014-07-11 15:18:05 -07001459 local_flush_icache_range(ebase, ebase + 0x100);
Franck Bui-Huu92b1e6a2007-10-18 09:11:17 +02001460
Ralf Baechlea2c763e2012-10-16 22:20:26 +02001461 dump_handler("r4000_tlb_refill", (u32 *)ebase, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
Huacai Chen380cd582016-03-03 09:45:12 +08001464static void setup_pw(void)
1465{
1466 unsigned long pgd_i, pgd_w;
1467#ifndef __PAGETABLE_PMD_FOLDED
1468 unsigned long pmd_i, pmd_w;
1469#endif
1470 unsigned long pt_i, pt_w;
1471 unsigned long pte_i, pte_w;
1472#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
1473 unsigned long psn;
1474
1475 psn = ilog2(_PAGE_HUGE); /* bit used to indicate huge page */
1476#endif
1477 pgd_i = PGDIR_SHIFT; /* 1st level PGD */
1478#ifndef __PAGETABLE_PMD_FOLDED
1479 pgd_w = PGDIR_SHIFT - PMD_SHIFT + PGD_ORDER;
1480
1481 pmd_i = PMD_SHIFT; /* 2nd level PMD */
1482 pmd_w = PMD_SHIFT - PAGE_SHIFT;
1483#else
1484 pgd_w = PGDIR_SHIFT - PAGE_SHIFT + PGD_ORDER;
1485#endif
1486
1487 pt_i = PAGE_SHIFT; /* 3rd level PTE */
1488 pt_w = PAGE_SHIFT - 3;
1489
1490 pte_i = ilog2(_PAGE_GLOBAL);
1491 pte_w = 0;
1492
1493#ifndef __PAGETABLE_PMD_FOLDED
1494 write_c0_pwfield(pgd_i << 24 | pmd_i << 12 | pt_i << 6 | pte_i);
1495 write_c0_pwsize(1 << 30 | pgd_w << 24 | pmd_w << 12 | pt_w << 6 | pte_w);
1496#else
1497 write_c0_pwfield(pgd_i << 24 | pt_i << 6 | pte_i);
1498 write_c0_pwsize(1 << 30 | pgd_w << 24 | pt_w << 6 | pte_w);
1499#endif
1500
1501#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
1502 write_c0_pwctl(1 << 6 | psn);
1503#endif
1504 write_c0_kpgd(swapper_pg_dir);
1505 kscratch_used_mask |= (1 << 7); /* KScratch6 is used for KPGD */
1506}
1507
1508static void build_loongson3_tlb_refill_handler(void)
1509{
1510 u32 *p = tlb_handler;
1511 struct uasm_label *l = labels;
1512 struct uasm_reloc *r = relocs;
1513
1514 memset(labels, 0, sizeof(labels));
1515 memset(relocs, 0, sizeof(relocs));
1516 memset(tlb_handler, 0, sizeof(tlb_handler));
1517
1518 if (check_for_high_segbits) {
1519 uasm_i_dmfc0(&p, K0, C0_BADVADDR);
1520 uasm_i_dsrl_safe(&p, K1, K0, PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
1521 uasm_il_beqz(&p, &r, K1, label_vmalloc);
1522 uasm_i_nop(&p);
1523
1524 uasm_il_bgez(&p, &r, K0, label_large_segbits_fault);
1525 uasm_i_nop(&p);
1526 uasm_l_vmalloc(&l, p);
1527 }
1528
1529 uasm_i_dmfc0(&p, K1, C0_PGD);
1530
1531 uasm_i_lddir(&p, K0, K1, 3); /* global page dir */
1532#ifndef __PAGETABLE_PMD_FOLDED
1533 uasm_i_lddir(&p, K1, K0, 1); /* middle page dir */
1534#endif
1535 uasm_i_ldpte(&p, K1, 0); /* even */
1536 uasm_i_ldpte(&p, K1, 1); /* odd */
1537 uasm_i_tlbwr(&p);
1538
1539 /* restore page mask */
1540 if (PM_DEFAULT_MASK >> 16) {
1541 uasm_i_lui(&p, K0, PM_DEFAULT_MASK >> 16);
1542 uasm_i_ori(&p, K0, K0, PM_DEFAULT_MASK & 0xffff);
1543 uasm_i_mtc0(&p, K0, C0_PAGEMASK);
1544 } else if (PM_DEFAULT_MASK) {
1545 uasm_i_ori(&p, K0, 0, PM_DEFAULT_MASK);
1546 uasm_i_mtc0(&p, K0, C0_PAGEMASK);
1547 } else {
1548 uasm_i_mtc0(&p, 0, C0_PAGEMASK);
1549 }
1550
1551 uasm_i_eret(&p);
1552
1553 if (check_for_high_segbits) {
1554 uasm_l_large_segbits_fault(&l, p);
1555 UASM_i_LA(&p, K1, (unsigned long)tlb_do_page_fault_0);
1556 uasm_i_jr(&p, K1);
1557 uasm_i_nop(&p);
1558 }
1559
1560 uasm_resolve_relocs(relocs, labels);
1561 memcpy((void *)(ebase + 0x80), tlb_handler, 0x80);
1562 local_flush_icache_range(ebase + 0x80, ebase + 0x100);
1563 dump_handler("loongson3_tlb_refill", (u32 *)(ebase + 0x80), 32);
1564}
1565
Jayachandran C6ba045f2013-06-23 17:16:19 +00001566extern u32 handle_tlbl[], handle_tlbl_end[];
1567extern u32 handle_tlbs[], handle_tlbs_end[];
1568extern u32 handle_tlbm[], handle_tlbm_end[];
Steven J. Hill7bb39402014-04-10 14:06:17 -05001569extern u32 tlbmiss_handler_setup_pgd_start[], tlbmiss_handler_setup_pgd[];
1570extern u32 tlbmiss_handler_setup_pgd_end[];
David Daney3d8bfdd2010-12-21 14:19:11 -08001571
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301572static void build_setup_pgd(void)
David Daney3d8bfdd2010-12-21 14:19:11 -08001573{
1574 const int a0 = 4;
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301575 const int __maybe_unused a1 = 5;
1576 const int __maybe_unused a2 = 6;
Steven J. Hill7bb39402014-04-10 14:06:17 -05001577 u32 *p = tlbmiss_handler_setup_pgd_start;
Jayachandran C6ba045f2013-06-23 17:16:19 +00001578 const int tlbmiss_handler_setup_pgd_size =
Steven J. Hill7bb39402014-04-10 14:06:17 -05001579 tlbmiss_handler_setup_pgd_end - tlbmiss_handler_setup_pgd_start;
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301580#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
1581 long pgdc = (long)pgd_current;
1582#endif
David Daney3d8bfdd2010-12-21 14:19:11 -08001583
Jayachandran C6ba045f2013-06-23 17:16:19 +00001584 memset(tlbmiss_handler_setup_pgd, 0, tlbmiss_handler_setup_pgd_size *
1585 sizeof(tlbmiss_handler_setup_pgd[0]));
David Daney3d8bfdd2010-12-21 14:19:11 -08001586 memset(labels, 0, sizeof(labels));
1587 memset(relocs, 0, sizeof(relocs));
David Daney3d8bfdd2010-12-21 14:19:11 -08001588 pgd_reg = allocate_kscratch();
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301589#ifdef CONFIG_MIPS_PGD_C0_CONTEXT
David Daney3d8bfdd2010-12-21 14:19:11 -08001590 if (pgd_reg == -1) {
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301591 struct uasm_label *l = labels;
1592 struct uasm_reloc *r = relocs;
1593
David Daney3d8bfdd2010-12-21 14:19:11 -08001594 /* PGD << 11 in c0_Context */
1595 /*
1596 * If it is a ckseg0 address, convert to a physical
1597 * address. Shifting right by 29 and adding 4 will
1598 * result in zero for these addresses.
1599 *
1600 */
1601 UASM_i_SRA(&p, a1, a0, 29);
1602 UASM_i_ADDIU(&p, a1, a1, 4);
1603 uasm_il_bnez(&p, &r, a1, label_tlbl_goaround1);
1604 uasm_i_nop(&p);
1605 uasm_i_dinsm(&p, a0, 0, 29, 64 - 29);
1606 uasm_l_tlbl_goaround1(&l, p);
1607 UASM_i_SLL(&p, a0, a0, 11);
David Daney3d8bfdd2010-12-21 14:19:11 -08001608 UASM_i_MTC0(&p, a0, C0_CONTEXT);
Dmitry Korotindd8f65a2019-06-24 19:05:27 +00001609 uasm_i_jr(&p, 31);
1610 uasm_i_ehb(&p);
David Daney3d8bfdd2010-12-21 14:19:11 -08001611 } else {
1612 /* PGD in c0_KScratch */
Huacai Chen380cd582016-03-03 09:45:12 +08001613 if (cpu_has_ldpte)
1614 UASM_i_MTC0(&p, a0, C0_PWBASE);
1615 else
1616 UASM_i_MTC0(&p, a0, c0_kscratch(), pgd_reg);
Dmitry Korotindd8f65a2019-06-24 19:05:27 +00001617 uasm_i_jr(&p, 31);
1618 uasm_i_ehb(&p);
David Daney3d8bfdd2010-12-21 14:19:11 -08001619 }
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301620#else
1621#ifdef CONFIG_SMP
1622 /* Save PGD to pgd_current[smp_processor_id()] */
1623 UASM_i_CPUID_MFC0(&p, a1, SMP_CPUID_REG);
1624 UASM_i_SRL_SAFE(&p, a1, a1, SMP_CPUID_PTRSHIFT);
1625 UASM_i_LA_mostly(&p, a2, pgdc);
1626 UASM_i_ADDU(&p, a2, a2, a1);
1627 UASM_i_SW(&p, a0, uasm_rel_lo(pgdc), a2);
1628#else
1629 UASM_i_LA_mostly(&p, a2, pgdc);
1630 UASM_i_SW(&p, a0, uasm_rel_lo(pgdc), a2);
1631#endif /* SMP */
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301632
1633 /* if pgd_reg is allocated, save PGD also to scratch register */
Dmitry Korotindd8f65a2019-06-24 19:05:27 +00001634 if (pgd_reg != -1) {
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301635 UASM_i_MTC0(&p, a0, c0_kscratch(), pgd_reg);
Dmitry Korotindd8f65a2019-06-24 19:05:27 +00001636 uasm_i_jr(&p, 31);
1637 uasm_i_ehb(&p);
1638 } else {
1639 uasm_i_jr(&p, 31);
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301640 uasm_i_nop(&p);
Dmitry Korotindd8f65a2019-06-24 19:05:27 +00001641 }
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05301642#endif
Jayachandran C6ba045f2013-06-23 17:16:19 +00001643 if (p >= tlbmiss_handler_setup_pgd_end)
1644 panic("tlbmiss_handler_setup_pgd space exceeded");
David Daney3d8bfdd2010-12-21 14:19:11 -08001645
Jayachandran C6ba045f2013-06-23 17:16:19 +00001646 uasm_resolve_relocs(relocs, labels);
1647 pr_debug("Wrote tlbmiss_handler_setup_pgd (%u instructions).\n",
1648 (unsigned int)(p - tlbmiss_handler_setup_pgd));
1649
1650 dump_handler("tlbmiss_handler", tlbmiss_handler_setup_pgd,
1651 tlbmiss_handler_setup_pgd_size);
David Daney3d8bfdd2010-12-21 14:19:11 -08001652}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001654static void
David Daneybd1437e2009-05-08 15:10:50 -07001655iPTE_LW(u32 **p, unsigned int pte, unsigned int ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656{
1657#ifdef CONFIG_SMP
Ralf Baechle34adb282014-11-22 00:16:48 +01001658# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001660 uasm_i_lld(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 else
1662# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001663 UASM_i_LL(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664#else
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 uasm_i_ld(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 else
1669# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001670 UASM_i_LW(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671#endif
1672}
1673
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001674static void
Thiemo Seufere30ec452008-01-28 20:05:38 +00001675iPTE_SW(u32 **p, struct uasm_reloc **r, unsigned int pte, unsigned int ptr,
Paul Burtonbbeeffe2016-04-19 09:25:07 +01001676 unsigned int mode, unsigned int scratch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001678 unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY);
Paul Burtonb4ebbb82016-04-19 09:25:08 +01001679 unsigned int swmode = mode & ~hwmode;
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001680
Masahiro Yamada97f26452016-08-03 13:45:50 -07001681 if (IS_ENABLED(CONFIG_XPA) && !cpu_has_64bits) {
Paul Burtonb4ebbb82016-04-19 09:25:08 +01001682 uasm_i_lui(p, scratch, swmode >> 16);
Steven J. Hillc5b36782015-02-26 18:16:38 -06001683 uasm_i_or(p, pte, pte, scratch);
Paul Burtonb4ebbb82016-04-19 09:25:08 +01001684 BUG_ON(swmode & 0xffff);
1685 } else {
1686 uasm_i_ori(p, pte, pte, mode);
1687 }
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689#ifdef CONFIG_SMP
Ralf Baechle34adb282014-11-22 00:16:48 +01001690# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001692 uasm_i_scd(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 else
1694# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001695 UASM_i_SC(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 if (r10000_llsc_war())
Thiemo Seufere30ec452008-01-28 20:05:38 +00001698 uasm_il_beqzl(p, r, pte, label_smp_pgtable_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001700 uasm_il_beqz(p, r, pte, label_smp_pgtable_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Ralf Baechle34adb282014-11-22 00:16:48 +01001702# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 if (!cpu_has_64bits) {
Thiemo Seufere30ec452008-01-28 20:05:38 +00001704 /* no uasm_i_nop needed */
1705 uasm_i_ll(p, pte, sizeof(pte_t) / 2, ptr);
1706 uasm_i_ori(p, pte, pte, hwmode);
Paul Burtonb4ebbb82016-04-19 09:25:08 +01001707 BUG_ON(hwmode & ~0xffff);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001708 uasm_i_sc(p, pte, sizeof(pte_t) / 2, ptr);
1709 uasm_il_beqz(p, r, pte, label_smp_pgtable_change);
1710 /* no uasm_i_nop needed */
1711 uasm_i_lw(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 } else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001713 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714# else
Thiemo Seufere30ec452008-01-28 20:05:38 +00001715 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716# endif
1717#else
Ralf Baechle34adb282014-11-22 00:16:48 +01001718# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (cpu_has_64bits)
Thiemo Seufere30ec452008-01-28 20:05:38 +00001720 uasm_i_sd(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 else
1722# endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00001723 UASM_i_SW(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Ralf Baechle34adb282014-11-22 00:16:48 +01001725# ifdef CONFIG_PHYS_ADDR_T_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (!cpu_has_64bits) {
Thiemo Seufere30ec452008-01-28 20:05:38 +00001727 uasm_i_lw(p, pte, sizeof(pte_t) / 2, ptr);
1728 uasm_i_ori(p, pte, pte, hwmode);
Paul Burtonb4ebbb82016-04-19 09:25:08 +01001729 BUG_ON(hwmode & ~0xffff);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001730 uasm_i_sw(p, pte, sizeof(pte_t) / 2, ptr);
1731 uasm_i_lw(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
1733# endif
1734#endif
1735}
1736
1737/*
1738 * Check if PTE is present, if not then jump to LABEL. PTR points to
1739 * the page table where this PTE is located, PTE will be re-loaded
1740 * with it's original value.
1741 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001742static void
David Daneybd1437e2009-05-08 15:10:50 -07001743build_pte_present(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001744 int pte, int ptr, int scratch, enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
David Daneybf286072011-07-05 16:34:46 -07001746 int t = scratch >= 0 ? scratch : pte;
James Hogan8fe49082015-04-27 15:07:18 +01001747 int cur = pte;
David Daneybf286072011-07-05 16:34:46 -07001748
Steven J. Hill05857c62012-09-13 16:51:46 -05001749 if (cpu_has_rixi) {
David Daneycc33ae42010-12-20 15:54:50 -08001750 if (use_bbit_insns()) {
1751 uasm_il_bbit0(p, r, pte, ilog2(_PAGE_PRESENT), lid);
1752 uasm_i_nop(p);
1753 } else {
James Hogan8fe49082015-04-27 15:07:18 +01001754 if (_PAGE_PRESENT_SHIFT) {
1755 uasm_i_srl(p, t, cur, _PAGE_PRESENT_SHIFT);
1756 cur = t;
1757 }
1758 uasm_i_andi(p, t, cur, 1);
David Daneybf286072011-07-05 16:34:46 -07001759 uasm_il_beqz(p, r, t, lid);
1760 if (pte == t)
1761 /* You lose the SMP race :-(*/
1762 iPTE_LW(p, pte, ptr);
David Daneycc33ae42010-12-20 15:54:50 -08001763 }
David Daney6dd93442010-02-10 15:12:47 -08001764 } else {
James Hogan8fe49082015-04-27 15:07:18 +01001765 if (_PAGE_PRESENT_SHIFT) {
1766 uasm_i_srl(p, t, cur, _PAGE_PRESENT_SHIFT);
1767 cur = t;
1768 }
1769 uasm_i_andi(p, t, cur,
Paul Burton780602d2016-04-19 09:25:03 +01001770 (_PAGE_PRESENT | _PAGE_NO_READ) >> _PAGE_PRESENT_SHIFT);
1771 uasm_i_xori(p, t, t, _PAGE_PRESENT >> _PAGE_PRESENT_SHIFT);
David Daneybf286072011-07-05 16:34:46 -07001772 uasm_il_bnez(p, r, t, lid);
1773 if (pte == t)
1774 /* You lose the SMP race :-(*/
1775 iPTE_LW(p, pte, ptr);
David Daney6dd93442010-02-10 15:12:47 -08001776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777}
1778
1779/* Make PTE valid, store result in PTR. */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001780static void
Thiemo Seufere30ec452008-01-28 20:05:38 +00001781build_make_valid(u32 **p, struct uasm_reloc **r, unsigned int pte,
Paul Burtonbbeeffe2016-04-19 09:25:07 +01001782 unsigned int ptr, unsigned int scratch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001784 unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED;
1785
Paul Burtonbbeeffe2016-04-19 09:25:07 +01001786 iPTE_SW(p, r, pte, ptr, mode, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
1789/*
1790 * Check if PTE can be written to, if not branch to LABEL. Regardless
1791 * restore PTE with value from PTR when done.
1792 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001793static void
David Daneybd1437e2009-05-08 15:10:50 -07001794build_pte_writable(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001795 unsigned int pte, unsigned int ptr, int scratch,
1796 enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
David Daneybf286072011-07-05 16:34:46 -07001798 int t = scratch >= 0 ? scratch : pte;
James Hogan8fe49082015-04-27 15:07:18 +01001799 int cur = pte;
David Daneybf286072011-07-05 16:34:46 -07001800
James Hogan8fe49082015-04-27 15:07:18 +01001801 if (_PAGE_PRESENT_SHIFT) {
1802 uasm_i_srl(p, t, cur, _PAGE_PRESENT_SHIFT);
1803 cur = t;
1804 }
1805 uasm_i_andi(p, t, cur,
James Hogana3ae5652015-04-27 15:07:17 +01001806 (_PAGE_PRESENT | _PAGE_WRITE) >> _PAGE_PRESENT_SHIFT);
1807 uasm_i_xori(p, t, t,
1808 (_PAGE_PRESENT | _PAGE_WRITE) >> _PAGE_PRESENT_SHIFT);
David Daneybf286072011-07-05 16:34:46 -07001809 uasm_il_bnez(p, r, t, lid);
1810 if (pte == t)
1811 /* You lose the SMP race :-(*/
David Daneycc33ae42010-12-20 15:54:50 -08001812 iPTE_LW(p, pte, ptr);
David Daneybf286072011-07-05 16:34:46 -07001813 else
1814 uasm_i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
1817/* Make PTE writable, update software status bits as well, then store
1818 * at PTR.
1819 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001820static void
Thiemo Seufere30ec452008-01-28 20:05:38 +00001821build_make_write(u32 **p, struct uasm_reloc **r, unsigned int pte,
Paul Burtonbbeeffe2016-04-19 09:25:07 +01001822 unsigned int ptr, unsigned int scratch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001824 unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID
1825 | _PAGE_DIRTY);
1826
Paul Burtonbbeeffe2016-04-19 09:25:07 +01001827 iPTE_SW(p, r, pte, ptr, mode, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828}
1829
1830/*
1831 * Check if PTE can be modified, if not branch to LABEL. Regardless
1832 * restore PTE with value from PTR when done.
1833 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001834static void
David Daneybd1437e2009-05-08 15:10:50 -07001835build_pte_modifiable(u32 **p, struct uasm_reloc **r,
David Daneybf286072011-07-05 16:34:46 -07001836 unsigned int pte, unsigned int ptr, int scratch,
1837 enum label_id lid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
David Daneycc33ae42010-12-20 15:54:50 -08001839 if (use_bbit_insns()) {
1840 uasm_il_bbit0(p, r, pte, ilog2(_PAGE_WRITE), lid);
1841 uasm_i_nop(p);
1842 } else {
David Daneybf286072011-07-05 16:34:46 -07001843 int t = scratch >= 0 ? scratch : pte;
Steven J. Hillc5b36782015-02-26 18:16:38 -06001844 uasm_i_srl(p, t, pte, _PAGE_WRITE_SHIFT);
1845 uasm_i_andi(p, t, t, 1);
David Daneybf286072011-07-05 16:34:46 -07001846 uasm_il_beqz(p, r, t, lid);
1847 if (pte == t)
1848 /* You lose the SMP race :-(*/
1849 iPTE_LW(p, pte, ptr);
David Daneycc33ae42010-12-20 15:54:50 -08001850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}
1852
David Daney826222842009-10-14 12:16:56 -07001853#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
David Daney3d8bfdd2010-12-21 14:19:11 -08001854
1855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856/*
1857 * R3000 style TLB load/store/modify handlers.
1858 */
1859
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001860/*
1861 * This places the pte into ENTRYLO0 and writes it with tlbwi.
1862 * Then it returns.
1863 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001864static void
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001865build_r3000_pte_reload_tlbwi(u32 **p, unsigned int pte, unsigned int tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866{
Thiemo Seufere30ec452008-01-28 20:05:38 +00001867 uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
1868 uasm_i_mfc0(p, tmp, C0_EPC); /* cp0 delay */
1869 uasm_i_tlbwi(p);
1870 uasm_i_jr(p, tmp);
1871 uasm_i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
1874/*
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001875 * This places the pte into ENTRYLO0 and writes it with tlbwi
1876 * or tlbwr as appropriate. This is because the index register
1877 * may have the probe fail bit set as a result of a trap on a
1878 * kseg2 access, i.e. without refill. Then it returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001880static void
Thiemo Seufere30ec452008-01-28 20:05:38 +00001881build_r3000_tlb_reload_write(u32 **p, struct uasm_label **l,
1882 struct uasm_reloc **r, unsigned int pte,
1883 unsigned int tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
Thiemo Seufere30ec452008-01-28 20:05:38 +00001885 uasm_i_mfc0(p, tmp, C0_INDEX);
1886 uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
1887 uasm_il_bltz(p, r, tmp, label_r3000_write_probe_fail); /* cp0 delay */
1888 uasm_i_mfc0(p, tmp, C0_EPC); /* branch delay */
1889 uasm_i_tlbwi(p); /* cp0 delay */
1890 uasm_i_jr(p, tmp);
1891 uasm_i_rfe(p); /* branch delay */
1892 uasm_l_r3000_write_probe_fail(l, *p);
1893 uasm_i_tlbwr(p); /* cp0 delay */
1894 uasm_i_jr(p, tmp);
1895 uasm_i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896}
1897
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001898static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899build_r3000_tlbchange_handler_head(u32 **p, unsigned int pte,
1900 unsigned int ptr)
1901{
1902 long pgdc = (long)pgd_current;
1903
Thiemo Seufere30ec452008-01-28 20:05:38 +00001904 uasm_i_mfc0(p, pte, C0_BADVADDR);
1905 uasm_i_lui(p, ptr, uasm_rel_hi(pgdc)); /* cp0 delay */
1906 uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr);
1907 uasm_i_srl(p, pte, pte, 22); /* load delay */
1908 uasm_i_sll(p, pte, pte, 2);
1909 uasm_i_addu(p, ptr, ptr, pte);
1910 uasm_i_mfc0(p, pte, C0_CONTEXT);
1911 uasm_i_lw(p, ptr, 0, ptr); /* cp0 delay */
1912 uasm_i_andi(p, pte, pte, 0xffc); /* load delay */
1913 uasm_i_addu(p, ptr, ptr, pte);
1914 uasm_i_lw(p, pte, 0, ptr);
1915 uasm_i_tlbp(p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916}
1917
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001918static void build_r3000_tlb_load_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
1920 u32 *p = handle_tlbl;
Jayachandran C6ba045f2013-06-23 17:16:19 +00001921 const int handle_tlbl_size = handle_tlbl_end - handle_tlbl;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001922 struct uasm_label *l = labels;
1923 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Jayachandran C6ba045f2013-06-23 17:16:19 +00001925 memset(handle_tlbl, 0, handle_tlbl_size * sizeof(handle_tlbl[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 memset(labels, 0, sizeof(labels));
1927 memset(relocs, 0, sizeof(relocs));
1928
1929 build_r3000_tlbchange_handler_head(&p, K0, K1);
David Daneybf286072011-07-05 16:34:46 -07001930 build_pte_present(&p, &r, K0, K1, -1, label_nopage_tlbl);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001931 uasm_i_nop(&p); /* load delay */
Paul Burtonbbeeffe2016-04-19 09:25:07 +01001932 build_make_valid(&p, &r, K0, K1, -1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001933 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Thiemo Seufere30ec452008-01-28 20:05:38 +00001935 uasm_l_nopage_tlbl(&l, p);
1936 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
1937 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Jayachandran C6ba045f2013-06-23 17:16:19 +00001939 if (p >= handle_tlbl_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 panic("TLB load handler fastpath space exceeded");
1941
Thiemo Seufere30ec452008-01-28 20:05:38 +00001942 uasm_resolve_relocs(relocs, labels);
1943 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
1944 (unsigned int)(p - handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Jayachandran C6ba045f2013-06-23 17:16:19 +00001946 dump_handler("r3000_tlb_load", handle_tlbl, handle_tlbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947}
1948
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001949static void build_r3000_tlb_store_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
1951 u32 *p = handle_tlbs;
Jayachandran C6ba045f2013-06-23 17:16:19 +00001952 const int handle_tlbs_size = handle_tlbs_end - handle_tlbs;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001953 struct uasm_label *l = labels;
1954 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Jayachandran C6ba045f2013-06-23 17:16:19 +00001956 memset(handle_tlbs, 0, handle_tlbs_size * sizeof(handle_tlbs[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 memset(labels, 0, sizeof(labels));
1958 memset(relocs, 0, sizeof(relocs));
1959
1960 build_r3000_tlbchange_handler_head(&p, K0, K1);
David Daneybf286072011-07-05 16:34:46 -07001961 build_pte_writable(&p, &r, K0, K1, -1, label_nopage_tlbs);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001962 uasm_i_nop(&p); /* load delay */
Paul Burtonbbeeffe2016-04-19 09:25:07 +01001963 build_make_write(&p, &r, K0, K1, -1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001964 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Thiemo Seufere30ec452008-01-28 20:05:38 +00001966 uasm_l_nopage_tlbs(&l, p);
1967 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1968 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Tony Wuafc813a2013-07-18 09:45:47 +00001970 if (p >= handle_tlbs_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 panic("TLB store handler fastpath space exceeded");
1972
Thiemo Seufere30ec452008-01-28 20:05:38 +00001973 uasm_resolve_relocs(relocs, labels);
1974 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
1975 (unsigned int)(p - handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Jayachandran C6ba045f2013-06-23 17:16:19 +00001977 dump_handler("r3000_tlb_store", handle_tlbs, handle_tlbs_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978}
1979
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001980static void build_r3000_tlb_modify_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981{
1982 u32 *p = handle_tlbm;
Jayachandran C6ba045f2013-06-23 17:16:19 +00001983 const int handle_tlbm_size = handle_tlbm_end - handle_tlbm;
Thiemo Seufere30ec452008-01-28 20:05:38 +00001984 struct uasm_label *l = labels;
1985 struct uasm_reloc *r = relocs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Jayachandran C6ba045f2013-06-23 17:16:19 +00001987 memset(handle_tlbm, 0, handle_tlbm_size * sizeof(handle_tlbm[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 memset(labels, 0, sizeof(labels));
1989 memset(relocs, 0, sizeof(relocs));
1990
1991 build_r3000_tlbchange_handler_head(&p, K0, K1);
Ralf Baechled954ffe2011-08-02 22:52:48 +01001992 build_pte_modifiable(&p, &r, K0, K1, -1, label_nopage_tlbm);
Thiemo Seufere30ec452008-01-28 20:05:38 +00001993 uasm_i_nop(&p); /* load delay */
Paul Burtonbbeeffe2016-04-19 09:25:07 +01001994 build_make_write(&p, &r, K0, K1, -1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001995 build_r3000_pte_reload_tlbwi(&p, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Thiemo Seufere30ec452008-01-28 20:05:38 +00001997 uasm_l_nopage_tlbm(&l, p);
1998 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1999 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Jayachandran C6ba045f2013-06-23 17:16:19 +00002001 if (p >= handle_tlbm_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 panic("TLB modify handler fastpath space exceeded");
2003
Thiemo Seufere30ec452008-01-28 20:05:38 +00002004 uasm_resolve_relocs(relocs, labels);
2005 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
2006 (unsigned int)(p - handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Jayachandran C6ba045f2013-06-23 17:16:19 +00002008 dump_handler("r3000_tlb_modify", handle_tlbm, handle_tlbm_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009}
David Daney826222842009-10-14 12:16:56 -07002010#endif /* CONFIG_MIPS_PGD_C0_CONTEXT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012/*
2013 * R4000 style TLB load/store/modify handlers.
2014 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002015static struct work_registers
Thiemo Seufere30ec452008-01-28 20:05:38 +00002016build_r4000_tlbchange_handler_head(u32 **p, struct uasm_label **l,
David Daneybf286072011-07-05 16:34:46 -07002017 struct uasm_reloc **r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
David Daneybf286072011-07-05 16:34:46 -07002019 struct work_registers wr = build_get_work_registers(p);
2020
Ralf Baechle875d43e2005-09-03 15:56:16 -07002021#ifdef CONFIG_64BIT
David Daneybf286072011-07-05 16:34:46 -07002022 build_get_pmde64(p, l, r, wr.r1, wr.r2); /* get pmd in ptr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023#else
David Daneybf286072011-07-05 16:34:46 -07002024 build_get_pgde32(p, wr.r1, wr.r2); /* get pgd in ptr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025#endif
2026
David Daneyaa1762f2012-10-17 00:48:10 +02002027#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07002028 /*
2029 * For huge tlb entries, pmd doesn't contain an address but
2030 * instead contains the tlb pte. Check the PAGE_HUGE bit and
2031 * see if we need to jump to huge tlb processing.
2032 */
David Daneybf286072011-07-05 16:34:46 -07002033 build_is_huge_pte(p, r, wr.r1, wr.r2, label_tlb_huge_update);
David Daneyfd062c82009-05-27 17:47:44 -07002034#endif
2035
David Daneybf286072011-07-05 16:34:46 -07002036 UASM_i_MFC0(p, wr.r1, C0_BADVADDR);
2037 UASM_i_LW(p, wr.r2, 0, wr.r2);
2038 UASM_i_SRL(p, wr.r1, wr.r1, PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2);
2039 uasm_i_andi(p, wr.r1, wr.r1, (PTRS_PER_PTE - 1) << PTE_T_LOG2);
2040 UASM_i_ADDU(p, wr.r2, wr.r2, wr.r1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042#ifdef CONFIG_SMP
Thiemo Seufere30ec452008-01-28 20:05:38 +00002043 uasm_l_smp_pgtable_change(l, *p);
2044#endif
David Daneybf286072011-07-05 16:34:46 -07002045 iPTE_LW(p, wr.r1, wr.r2); /* get even pte */
Leonid Yegoshin070e76c2014-11-27 11:13:08 +00002046 if (!m4kc_tlbp_war()) {
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002047 build_tlb_probe_entry(p);
Leonid Yegoshin070e76c2014-11-27 11:13:08 +00002048 if (cpu_has_htw) {
2049 /* race condition happens, leaving */
2050 uasm_i_ehb(p);
2051 uasm_i_mfc0(p, wr.r3, C0_INDEX);
2052 uasm_il_bltz(p, r, wr.r3, label_leave);
2053 uasm_i_nop(p);
2054 }
2055 }
David Daneybf286072011-07-05 16:34:46 -07002056 return wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057}
2058
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002059static void
Thiemo Seufere30ec452008-01-28 20:05:38 +00002060build_r4000_tlbchange_handler_tail(u32 **p, struct uasm_label **l,
2061 struct uasm_reloc **r, unsigned int tmp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 unsigned int ptr)
2063{
Thiemo Seufere30ec452008-01-28 20:05:38 +00002064 uasm_i_ori(p, ptr, ptr, sizeof(pte_t));
2065 uasm_i_xori(p, ptr, ptr, sizeof(pte_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 build_update_entries(p, tmp, ptr);
2067 build_tlb_write_entry(p, l, r, tlb_indexed);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002068 uasm_l_leave(l, *p);
David Daneybf286072011-07-05 16:34:46 -07002069 build_restore_work_registers(p);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002070 uasm_i_eret(p); /* return from trap */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Ralf Baechle875d43e2005-09-03 15:56:16 -07002072#ifdef CONFIG_64BIT
David Daney1ec56322010-04-28 12:16:18 -07002073 build_get_pgd_vmalloc64(p, l, r, tmp, ptr, not_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074#endif
2075}
2076
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002077static void build_r4000_tlb_load_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
2079 u32 *p = handle_tlbl;
Jayachandran C6ba045f2013-06-23 17:16:19 +00002080 const int handle_tlbl_size = handle_tlbl_end - handle_tlbl;
Thiemo Seufere30ec452008-01-28 20:05:38 +00002081 struct uasm_label *l = labels;
2082 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07002083 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Jayachandran C6ba045f2013-06-23 17:16:19 +00002085 memset(handle_tlbl, 0, handle_tlbl_size * sizeof(handle_tlbl[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 memset(labels, 0, sizeof(labels));
2087 memset(relocs, 0, sizeof(relocs));
2088
2089 if (bcm1250_m3_war()) {
Ralf Baechle3d452852010-03-23 17:56:38 +01002090 unsigned int segbits = 44;
2091
2092 uasm_i_dmfc0(&p, K0, C0_BADVADDR);
2093 uasm_i_dmfc0(&p, K1, C0_ENTRYHI);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002094 uasm_i_xor(&p, K0, K0, K1);
David Daney3be60222010-04-28 12:16:17 -07002095 uasm_i_dsrl_safe(&p, K1, K0, 62);
2096 uasm_i_dsrl_safe(&p, K0, K0, 12 + 1);
2097 uasm_i_dsll_safe(&p, K0, K0, 64 + 12 + 1 - segbits);
Ralf Baechle3d452852010-03-23 17:56:38 +01002098 uasm_i_or(&p, K0, K0, K1);
Thiemo Seufere30ec452008-01-28 20:05:38 +00002099 uasm_il_bnez(&p, &r, K0, label_leave);
2100 /* No need for uasm_i_nop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
2102
David Daneybf286072011-07-05 16:34:46 -07002103 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
2104 build_pte_present(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbl);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002105 if (m4kc_tlbp_war())
2106 build_tlb_probe_entry(&p);
David Daney6dd93442010-02-10 15:12:47 -08002107
Leonid Yegoshin5890f702014-07-15 14:09:56 +01002108 if (cpu_has_rixi && !cpu_has_rixiex) {
David Daney6dd93442010-02-10 15:12:47 -08002109 /*
2110 * If the page is not _PAGE_VALID, RI or XI could not
2111 * have triggered it. Skip the expensive test..
2112 */
David Daneycc33ae42010-12-20 15:54:50 -08002113 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002114 uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID),
David Daneycc33ae42010-12-20 15:54:50 -08002115 label_tlbl_goaround1);
2116 } else {
David Daneybf286072011-07-05 16:34:46 -07002117 uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID);
2118 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround1);
David Daneycc33ae42010-12-20 15:54:50 -08002119 }
David Daney6dd93442010-02-10 15:12:47 -08002120 uasm_i_nop(&p);
2121
2122 uasm_i_tlbr(&p);
Ralf Baechle73acc7d2013-06-20 14:56:17 +02002123
2124 switch (current_cpu_type()) {
2125 default:
Leonid Yegoshin77f3ee52014-11-24 15:42:46 +00002126 if (cpu_has_mips_r2_exec_hazard) {
Ralf Baechle73acc7d2013-06-20 14:56:17 +02002127 uasm_i_ehb(&p);
2128
2129 case CPU_CAVIUM_OCTEON:
2130 case CPU_CAVIUM_OCTEON_PLUS:
2131 case CPU_CAVIUM_OCTEON2:
2132 break;
2133 }
2134 }
2135
David Daney6dd93442010-02-10 15:12:47 -08002136 /* Examine entrylo 0 or 1 based on ptr. */
David Daneycc33ae42010-12-20 15:54:50 -08002137 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002138 uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8);
David Daneycc33ae42010-12-20 15:54:50 -08002139 } else {
David Daneybf286072011-07-05 16:34:46 -07002140 uasm_i_andi(&p, wr.r3, wr.r2, sizeof(pte_t));
2141 uasm_i_beqz(&p, wr.r3, 8);
David Daneycc33ae42010-12-20 15:54:50 -08002142 }
David Daneybf286072011-07-05 16:34:46 -07002143 /* load it in the delay slot*/
2144 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO0);
2145 /* load it if ptr is odd */
2146 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO1);
David Daney6dd93442010-02-10 15:12:47 -08002147 /*
David Daneybf286072011-07-05 16:34:46 -07002148 * If the entryLo (now in wr.r3) is valid (bit 1), RI or
David Daney6dd93442010-02-10 15:12:47 -08002149 * XI must have triggered it.
2150 */
David Daneycc33ae42010-12-20 15:54:50 -08002151 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002152 uasm_il_bbit1(&p, &r, wr.r3, 1, label_nopage_tlbl);
2153 uasm_i_nop(&p);
David Daneycc33ae42010-12-20 15:54:50 -08002154 uasm_l_tlbl_goaround1(&l, p);
2155 } else {
David Daneybf286072011-07-05 16:34:46 -07002156 uasm_i_andi(&p, wr.r3, wr.r3, 2);
2157 uasm_il_bnez(&p, &r, wr.r3, label_nopage_tlbl);
2158 uasm_i_nop(&p);
David Daneycc33ae42010-12-20 15:54:50 -08002159 }
David Daneybf286072011-07-05 16:34:46 -07002160 uasm_l_tlbl_goaround1(&l, p);
David Daney6dd93442010-02-10 15:12:47 -08002161 }
Paul Burtonbbeeffe2016-04-19 09:25:07 +01002162 build_make_valid(&p, &r, wr.r1, wr.r2, wr.r3);
David Daneybf286072011-07-05 16:34:46 -07002163 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
David Daneyaa1762f2012-10-17 00:48:10 +02002165#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07002166 /*
2167 * This is the entry point when build_r4000_tlbchange_handler_head
2168 * spots a huge page.
2169 */
2170 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002171 iPTE_LW(&p, wr.r1, wr.r2);
2172 build_pte_present(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbl);
David Daneyfd062c82009-05-27 17:47:44 -07002173 build_tlb_probe_entry(&p);
David Daney6dd93442010-02-10 15:12:47 -08002174
Leonid Yegoshin5890f702014-07-15 14:09:56 +01002175 if (cpu_has_rixi && !cpu_has_rixiex) {
David Daney6dd93442010-02-10 15:12:47 -08002176 /*
2177 * If the page is not _PAGE_VALID, RI or XI could not
2178 * have triggered it. Skip the expensive test..
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.r1, ilog2(_PAGE_VALID),
David Daneycc33ae42010-12-20 15:54:50 -08002182 label_tlbl_goaround2);
2183 } else {
David Daneybf286072011-07-05 16:34:46 -07002184 uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID);
2185 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002186 }
David Daney6dd93442010-02-10 15:12:47 -08002187 uasm_i_nop(&p);
2188
2189 uasm_i_tlbr(&p);
Ralf Baechle73acc7d2013-06-20 14:56:17 +02002190
2191 switch (current_cpu_type()) {
2192 default:
Leonid Yegoshin77f3ee52014-11-24 15:42:46 +00002193 if (cpu_has_mips_r2_exec_hazard) {
Ralf Baechle73acc7d2013-06-20 14:56:17 +02002194 uasm_i_ehb(&p);
2195
2196 case CPU_CAVIUM_OCTEON:
2197 case CPU_CAVIUM_OCTEON_PLUS:
2198 case CPU_CAVIUM_OCTEON2:
2199 break;
2200 }
2201 }
2202
David Daney6dd93442010-02-10 15:12:47 -08002203 /* Examine entrylo 0 or 1 based on ptr. */
David Daneycc33ae42010-12-20 15:54:50 -08002204 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002205 uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8);
David Daneycc33ae42010-12-20 15:54:50 -08002206 } else {
David Daneybf286072011-07-05 16:34:46 -07002207 uasm_i_andi(&p, wr.r3, wr.r2, sizeof(pte_t));
2208 uasm_i_beqz(&p, wr.r3, 8);
David Daneycc33ae42010-12-20 15:54:50 -08002209 }
David Daneybf286072011-07-05 16:34:46 -07002210 /* load it in the delay slot*/
2211 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO0);
2212 /* load it if ptr is odd */
2213 UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO1);
David Daney6dd93442010-02-10 15:12:47 -08002214 /*
David Daneybf286072011-07-05 16:34:46 -07002215 * If the entryLo (now in wr.r3) is valid (bit 1), RI or
David Daney6dd93442010-02-10 15:12:47 -08002216 * XI must have triggered it.
2217 */
David Daneycc33ae42010-12-20 15:54:50 -08002218 if (use_bbit_insns()) {
David Daneybf286072011-07-05 16:34:46 -07002219 uasm_il_bbit0(&p, &r, wr.r3, 1, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002220 } else {
David Daneybf286072011-07-05 16:34:46 -07002221 uasm_i_andi(&p, wr.r3, wr.r3, 2);
2222 uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround2);
David Daneycc33ae42010-12-20 15:54:50 -08002223 }
David Daney0f4ccbc2011-09-16 18:06:02 -07002224 if (PM_DEFAULT_MASK == 0)
2225 uasm_i_nop(&p);
David Daney6dd93442010-02-10 15:12:47 -08002226 /*
2227 * We clobbered C0_PAGEMASK, restore it. On the other branch
2228 * it is restored in build_huge_tlb_write_entry.
2229 */
David Daneybf286072011-07-05 16:34:46 -07002230 build_restore_pagemask(&p, &r, wr.r3, label_nopage_tlbl, 0);
David Daney6dd93442010-02-10 15:12:47 -08002231
2232 uasm_l_tlbl_goaround2(&l, p);
2233 }
David Daneybf286072011-07-05 16:34:46 -07002234 uasm_i_ori(&p, wr.r1, wr.r1, (_PAGE_ACCESSED | _PAGE_VALID));
Huacai Chen59b87252017-03-16 21:00:27 +08002235 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2, 1);
David Daneyfd062c82009-05-27 17:47:44 -07002236#endif
2237
Thiemo Seufere30ec452008-01-28 20:05:38 +00002238 uasm_l_nopage_tlbl(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002239 build_restore_work_registers(&p);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002240#ifdef CONFIG_CPU_MICROMIPS
2241 if ((unsigned long)tlb_do_page_fault_0 & 1) {
2242 uasm_i_lui(&p, K0, uasm_rel_hi((long)tlb_do_page_fault_0));
2243 uasm_i_addiu(&p, K0, K0, uasm_rel_lo((long)tlb_do_page_fault_0));
2244 uasm_i_jr(&p, K0);
2245 } else
2246#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00002247 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
2248 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Jayachandran C6ba045f2013-06-23 17:16:19 +00002250 if (p >= handle_tlbl_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 panic("TLB load handler fastpath space exceeded");
2252
Thiemo Seufere30ec452008-01-28 20:05:38 +00002253 uasm_resolve_relocs(relocs, labels);
2254 pr_debug("Wrote TLB load handler fastpath (%u instructions).\n",
2255 (unsigned int)(p - handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Jayachandran C6ba045f2013-06-23 17:16:19 +00002257 dump_handler("r4000_tlb_load", handle_tlbl, handle_tlbl_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258}
2259
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002260static void build_r4000_tlb_store_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261{
2262 u32 *p = handle_tlbs;
Jayachandran C6ba045f2013-06-23 17:16:19 +00002263 const int handle_tlbs_size = handle_tlbs_end - handle_tlbs;
Thiemo Seufere30ec452008-01-28 20:05:38 +00002264 struct uasm_label *l = labels;
2265 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07002266 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Jayachandran C6ba045f2013-06-23 17:16:19 +00002268 memset(handle_tlbs, 0, handle_tlbs_size * sizeof(handle_tlbs[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 memset(labels, 0, sizeof(labels));
2270 memset(relocs, 0, sizeof(relocs));
2271
David Daneybf286072011-07-05 16:34:46 -07002272 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
2273 build_pte_writable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbs);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002274 if (m4kc_tlbp_war())
2275 build_tlb_probe_entry(&p);
Paul Burtonbbeeffe2016-04-19 09:25:07 +01002276 build_make_write(&p, &r, wr.r1, wr.r2, wr.r3);
David Daneybf286072011-07-05 16:34:46 -07002277 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
David Daneyaa1762f2012-10-17 00:48:10 +02002279#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07002280 /*
2281 * This is the entry point when
2282 * build_r4000_tlbchange_handler_head spots a huge page.
2283 */
2284 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002285 iPTE_LW(&p, wr.r1, wr.r2);
2286 build_pte_writable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbs);
David Daneyfd062c82009-05-27 17:47:44 -07002287 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002288 uasm_i_ori(&p, wr.r1, wr.r1,
David Daneyfd062c82009-05-27 17:47:44 -07002289 _PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY);
Huacai Chen59b87252017-03-16 21:00:27 +08002290 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2, 1);
David Daneyfd062c82009-05-27 17:47:44 -07002291#endif
2292
Thiemo Seufere30ec452008-01-28 20:05:38 +00002293 uasm_l_nopage_tlbs(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002294 build_restore_work_registers(&p);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002295#ifdef CONFIG_CPU_MICROMIPS
2296 if ((unsigned long)tlb_do_page_fault_1 & 1) {
2297 uasm_i_lui(&p, K0, uasm_rel_hi((long)tlb_do_page_fault_1));
2298 uasm_i_addiu(&p, K0, K0, uasm_rel_lo((long)tlb_do_page_fault_1));
2299 uasm_i_jr(&p, K0);
2300 } else
2301#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00002302 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
2303 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Jayachandran C6ba045f2013-06-23 17:16:19 +00002305 if (p >= handle_tlbs_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 panic("TLB store handler fastpath space exceeded");
2307
Thiemo Seufere30ec452008-01-28 20:05:38 +00002308 uasm_resolve_relocs(relocs, labels);
2309 pr_debug("Wrote TLB store handler fastpath (%u instructions).\n",
2310 (unsigned int)(p - handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Jayachandran C6ba045f2013-06-23 17:16:19 +00002312 dump_handler("r4000_tlb_store", handle_tlbs, handle_tlbs_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313}
2314
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002315static void build_r4000_tlb_modify_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316{
2317 u32 *p = handle_tlbm;
Jayachandran C6ba045f2013-06-23 17:16:19 +00002318 const int handle_tlbm_size = handle_tlbm_end - handle_tlbm;
Thiemo Seufere30ec452008-01-28 20:05:38 +00002319 struct uasm_label *l = labels;
2320 struct uasm_reloc *r = relocs;
David Daneybf286072011-07-05 16:34:46 -07002321 struct work_registers wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Jayachandran C6ba045f2013-06-23 17:16:19 +00002323 memset(handle_tlbm, 0, handle_tlbm_size * sizeof(handle_tlbm[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 memset(labels, 0, sizeof(labels));
2325 memset(relocs, 0, sizeof(relocs));
2326
David Daneybf286072011-07-05 16:34:46 -07002327 wr = build_r4000_tlbchange_handler_head(&p, &l, &r);
2328 build_pte_modifiable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbm);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01002329 if (m4kc_tlbp_war())
2330 build_tlb_probe_entry(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 /* Present and writable bits set, set accessed and dirty bits. */
Paul Burtonbbeeffe2016-04-19 09:25:07 +01002332 build_make_write(&p, &r, wr.r1, wr.r2, wr.r3);
David Daneybf286072011-07-05 16:34:46 -07002333 build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
David Daneyaa1762f2012-10-17 00:48:10 +02002335#ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT
David Daneyfd062c82009-05-27 17:47:44 -07002336 /*
2337 * This is the entry point when
2338 * build_r4000_tlbchange_handler_head spots a huge page.
2339 */
2340 uasm_l_tlb_huge_update(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002341 iPTE_LW(&p, wr.r1, wr.r2);
2342 build_pte_modifiable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbm);
David Daneyfd062c82009-05-27 17:47:44 -07002343 build_tlb_probe_entry(&p);
David Daneybf286072011-07-05 16:34:46 -07002344 uasm_i_ori(&p, wr.r1, wr.r1,
David Daneyfd062c82009-05-27 17:47:44 -07002345 _PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY);
Huacai Chen59b87252017-03-16 21:00:27 +08002346 build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2, 0);
David Daneyfd062c82009-05-27 17:47:44 -07002347#endif
2348
Thiemo Seufere30ec452008-01-28 20:05:38 +00002349 uasm_l_nopage_tlbm(&l, p);
David Daneybf286072011-07-05 16:34:46 -07002350 build_restore_work_registers(&p);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002351#ifdef CONFIG_CPU_MICROMIPS
2352 if ((unsigned long)tlb_do_page_fault_1 & 1) {
2353 uasm_i_lui(&p, K0, uasm_rel_hi((long)tlb_do_page_fault_1));
2354 uasm_i_addiu(&p, K0, K0, uasm_rel_lo((long)tlb_do_page_fault_1));
2355 uasm_i_jr(&p, K0);
2356 } else
2357#endif
Thiemo Seufere30ec452008-01-28 20:05:38 +00002358 uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
2359 uasm_i_nop(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Jayachandran C6ba045f2013-06-23 17:16:19 +00002361 if (p >= handle_tlbm_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 panic("TLB modify handler fastpath space exceeded");
2363
Thiemo Seufere30ec452008-01-28 20:05:38 +00002364 uasm_resolve_relocs(relocs, labels);
2365 pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n",
2366 (unsigned int)(p - handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Jayachandran C6ba045f2013-06-23 17:16:19 +00002368 dump_handler("r4000_tlb_modify", handle_tlbm, handle_tlbm_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369}
2370
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002371static void flush_tlb_handlers(void)
Jonas Gorskia3d90862013-06-21 17:48:48 +00002372{
2373 local_flush_icache_range((unsigned long)handle_tlbl,
Ralf Baechle6ac53102013-07-02 17:19:04 +02002374 (unsigned long)handle_tlbl_end);
Jonas Gorskia3d90862013-06-21 17:48:48 +00002375 local_flush_icache_range((unsigned long)handle_tlbs,
Ralf Baechle6ac53102013-07-02 17:19:04 +02002376 (unsigned long)handle_tlbs_end);
Jonas Gorskia3d90862013-06-21 17:48:48 +00002377 local_flush_icache_range((unsigned long)handle_tlbm,
Ralf Baechle6ac53102013-07-02 17:19:04 +02002378 (unsigned long)handle_tlbm_end);
Ralf Baechle6ac53102013-07-02 17:19:04 +02002379 local_flush_icache_range((unsigned long)tlbmiss_handler_setup_pgd,
2380 (unsigned long)tlbmiss_handler_setup_pgd_end);
Jonas Gorskia3d90862013-06-21 17:48:48 +00002381}
2382
Markos Chandrasf1014d12014-07-14 12:47:09 +01002383static void print_htw_config(void)
2384{
2385 unsigned long config;
2386 unsigned int pwctl;
2387 const int field = 2 * sizeof(unsigned long);
2388
2389 config = read_c0_pwfield();
2390 pr_debug("PWField (0x%0*lx): GDI: 0x%02lx UDI: 0x%02lx MDI: 0x%02lx PTI: 0x%02lx PTEI: 0x%02lx\n",
2391 field, config,
2392 (config & MIPS_PWFIELD_GDI_MASK) >> MIPS_PWFIELD_GDI_SHIFT,
2393 (config & MIPS_PWFIELD_UDI_MASK) >> MIPS_PWFIELD_UDI_SHIFT,
2394 (config & MIPS_PWFIELD_MDI_MASK) >> MIPS_PWFIELD_MDI_SHIFT,
2395 (config & MIPS_PWFIELD_PTI_MASK) >> MIPS_PWFIELD_PTI_SHIFT,
2396 (config & MIPS_PWFIELD_PTEI_MASK) >> MIPS_PWFIELD_PTEI_SHIFT);
2397
2398 config = read_c0_pwsize();
James Hogan6446e6c2016-05-27 22:25:22 +01002399 pr_debug("PWSize (0x%0*lx): PS: 0x%lx GDW: 0x%02lx UDW: 0x%02lx MDW: 0x%02lx PTW: 0x%02lx PTEW: 0x%02lx\n",
Markos Chandrasf1014d12014-07-14 12:47:09 +01002400 field, config,
James Hogan6446e6c2016-05-27 22:25:22 +01002401 (config & MIPS_PWSIZE_PS_MASK) >> MIPS_PWSIZE_PS_SHIFT,
Markos Chandrasf1014d12014-07-14 12:47:09 +01002402 (config & MIPS_PWSIZE_GDW_MASK) >> MIPS_PWSIZE_GDW_SHIFT,
2403 (config & MIPS_PWSIZE_UDW_MASK) >> MIPS_PWSIZE_UDW_SHIFT,
2404 (config & MIPS_PWSIZE_MDW_MASK) >> MIPS_PWSIZE_MDW_SHIFT,
2405 (config & MIPS_PWSIZE_PTW_MASK) >> MIPS_PWSIZE_PTW_SHIFT,
2406 (config & MIPS_PWSIZE_PTEW_MASK) >> MIPS_PWSIZE_PTEW_SHIFT);
2407
2408 pwctl = read_c0_pwctl();
James Hogan6446e6c2016-05-27 22:25:22 +01002409 pr_debug("PWCtl (0x%x): PWEn: 0x%x XK: 0x%x XS: 0x%x XU: 0x%x DPH: 0x%x HugePg: 0x%x Psn: 0x%x\n",
Markos Chandrasf1014d12014-07-14 12:47:09 +01002410 pwctl,
2411 (pwctl & MIPS_PWCTL_PWEN_MASK) >> MIPS_PWCTL_PWEN_SHIFT,
James Hogan6446e6c2016-05-27 22:25:22 +01002412 (pwctl & MIPS_PWCTL_XK_MASK) >> MIPS_PWCTL_XK_SHIFT,
2413 (pwctl & MIPS_PWCTL_XS_MASK) >> MIPS_PWCTL_XS_SHIFT,
2414 (pwctl & MIPS_PWCTL_XU_MASK) >> MIPS_PWCTL_XU_SHIFT,
Markos Chandrasf1014d12014-07-14 12:47:09 +01002415 (pwctl & MIPS_PWCTL_DPH_MASK) >> MIPS_PWCTL_DPH_SHIFT,
2416 (pwctl & MIPS_PWCTL_HUGEPG_MASK) >> MIPS_PWCTL_HUGEPG_SHIFT,
2417 (pwctl & MIPS_PWCTL_PSN_MASK) >> MIPS_PWCTL_PSN_SHIFT);
2418}
2419
2420static void config_htw_params(void)
2421{
2422 unsigned long pwfield, pwsize, ptei;
2423 unsigned int config;
2424
2425 /*
2426 * We are using 2-level page tables, so we only need to
2427 * setup GDW and PTW appropriately. UDW and MDW will remain 0.
2428 * The default value of GDI/UDI/MDI/PTI is 0xc. It is illegal to
2429 * write values less than 0xc in these fields because the entire
2430 * write will be dropped. As a result of which, we must preserve
2431 * the original reset values and overwrite only what we really want.
2432 */
2433
2434 pwfield = read_c0_pwfield();
2435 /* re-initialize the GDI field */
2436 pwfield &= ~MIPS_PWFIELD_GDI_MASK;
2437 pwfield |= PGDIR_SHIFT << MIPS_PWFIELD_GDI_SHIFT;
2438 /* re-initialize the PTI field including the even/odd bit */
2439 pwfield &= ~MIPS_PWFIELD_PTI_MASK;
2440 pwfield |= PAGE_SHIFT << MIPS_PWFIELD_PTI_SHIFT;
Paul Burtoncab25bc2015-09-22 12:03:37 -07002441 if (CONFIG_PGTABLE_LEVELS >= 3) {
2442 pwfield &= ~MIPS_PWFIELD_MDI_MASK;
2443 pwfield |= PMD_SHIFT << MIPS_PWFIELD_MDI_SHIFT;
2444 }
Markos Chandrasf1014d12014-07-14 12:47:09 +01002445 /* Set the PTEI right shift */
2446 ptei = _PAGE_GLOBAL_SHIFT << MIPS_PWFIELD_PTEI_SHIFT;
2447 pwfield |= ptei;
2448 write_c0_pwfield(pwfield);
2449 /* Check whether the PTEI value is supported */
2450 back_to_back_c0_hazard();
2451 pwfield = read_c0_pwfield();
2452 if (((pwfield & MIPS_PWFIELD_PTEI_MASK) << MIPS_PWFIELD_PTEI_SHIFT)
2453 != ptei) {
2454 pr_warn("Unsupported PTEI field value: 0x%lx. HTW will not be enabled",
2455 ptei);
2456 /*
2457 * Drop option to avoid HTW being enabled via another path
2458 * (eg htw_reset())
2459 */
2460 current_cpu_data.options &= ~MIPS_CPU_HTW;
2461 return;
2462 }
2463
2464 pwsize = ilog2(PTRS_PER_PGD) << MIPS_PWSIZE_GDW_SHIFT;
2465 pwsize |= ilog2(PTRS_PER_PTE) << MIPS_PWSIZE_PTW_SHIFT;
Paul Burtoncab25bc2015-09-22 12:03:37 -07002466 if (CONFIG_PGTABLE_LEVELS >= 3)
2467 pwsize |= ilog2(PTRS_PER_PMD) << MIPS_PWSIZE_MDW_SHIFT;
Steven J. Hillc5b36782015-02-26 18:16:38 -06002468
James Hoganaa760422016-05-27 22:25:23 +01002469 /* Set pointer size to size of directory pointers */
Masahiro Yamada97f26452016-08-03 13:45:50 -07002470 if (IS_ENABLED(CONFIG_64BIT))
James Hoganaa760422016-05-27 22:25:23 +01002471 pwsize |= MIPS_PWSIZE_PS_MASK;
2472 /* PTEs may be multiple pointers long (e.g. with XPA) */
2473 pwsize |= ((PTE_T_LOG2 - PGD_T_LOG2) << MIPS_PWSIZE_PTEW_SHIFT)
2474 & MIPS_PWSIZE_PTEW_MASK;
Steven J. Hillc5b36782015-02-26 18:16:38 -06002475
Markos Chandrasf1014d12014-07-14 12:47:09 +01002476 write_c0_pwsize(pwsize);
2477
2478 /* Make sure everything is set before we enable the HTW */
2479 back_to_back_c0_hazard();
2480
James Hoganaa760422016-05-27 22:25:23 +01002481 /*
2482 * Enable HTW (and only for XUSeg on 64-bit), and disable the rest of
2483 * the pwctl fields.
2484 */
Markos Chandrasf1014d12014-07-14 12:47:09 +01002485 config = 1 << MIPS_PWCTL_PWEN_SHIFT;
Masahiro Yamada97f26452016-08-03 13:45:50 -07002486 if (IS_ENABLED(CONFIG_64BIT))
James Hoganaa760422016-05-27 22:25:23 +01002487 config |= MIPS_PWCTL_XU_MASK;
Markos Chandrasf1014d12014-07-14 12:47:09 +01002488 write_c0_pwctl(config);
2489 pr_info("Hardware Page Table Walker enabled\n");
2490
2491 print_htw_config();
2492}
2493
Steven J. Hillc5b36782015-02-26 18:16:38 -06002494static void config_xpa_params(void)
2495{
2496#ifdef CONFIG_XPA
2497 unsigned int pagegrain;
2498
2499 if (mips_xpa_disabled) {
2500 pr_info("Extended Physical Addressing (XPA) disabled\n");
2501 return;
2502 }
2503
2504 pagegrain = read_c0_pagegrain();
2505 write_c0_pagegrain(pagegrain | PG_ELPA);
2506 back_to_back_c0_hazard();
2507 pagegrain = read_c0_pagegrain();
2508
2509 if (pagegrain & PG_ELPA)
2510 pr_info("Extended Physical Addressing (XPA) enabled\n");
2511 else
2512 panic("Extended Physical Addressing (XPA) disabled");
2513#endif
2514}
2515
Paul Burton00bf1c62015-09-22 11:42:52 -07002516static void check_pabits(void)
2517{
2518 unsigned long entry;
2519 unsigned pabits, fillbits;
2520
2521 if (!cpu_has_rixi || !_PAGE_NO_EXEC) {
2522 /*
2523 * We'll only be making use of the fact that we can rotate bits
2524 * into the fill if the CPU supports RIXI, so don't bother
2525 * probing this for CPUs which don't.
2526 */
2527 return;
2528 }
2529
2530 write_c0_entrylo0(~0ul);
2531 back_to_back_c0_hazard();
2532 entry = read_c0_entrylo0();
2533
2534 /* clear all non-PFN bits */
2535 entry &= ~((1 << MIPS_ENTRYLO_PFN_SHIFT) - 1);
2536 entry &= ~(MIPS_ENTRYLO_RI | MIPS_ENTRYLO_XI);
2537
2538 /* find a lower bound on PABITS, and upper bound on fill bits */
2539 pabits = fls_long(entry) + 6;
2540 fillbits = max_t(int, (int)BITS_PER_LONG - pabits, 0);
2541
2542 /* minus the RI & XI bits */
2543 fillbits -= min_t(unsigned, fillbits, 2);
2544
2545 if (fillbits >= ilog2(_PAGE_NO_EXEC))
2546 fill_includes_sw_bits = true;
2547
2548 pr_debug("Entry* registers contain %u fill bits\n", fillbits);
2549}
2550
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002551void build_tlb_refill_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
2553 /*
2554 * The refill handler is generated per-CPU, multi-node systems
2555 * may have local storage for it. The other handlers are only
2556 * needed once.
2557 */
2558 static int run_once = 0;
2559
Masahiro Yamada97f26452016-08-03 13:45:50 -07002560 if (IS_ENABLED(CONFIG_XPA) && !cpu_has_rixi)
Paul Burtone56c7e12016-04-19 09:25:11 +01002561 panic("Kernels supporting XPA currently require CPUs with RIXI");
2562
Ralf Baechlea2c763e2012-10-16 22:20:26 +02002563 output_pgtable_bits_defines();
Paul Burton00bf1c62015-09-22 11:42:52 -07002564 check_pabits();
Ralf Baechlea2c763e2012-10-16 22:20:26 +02002565
David Daney1ec56322010-04-28 12:16:18 -07002566#ifdef CONFIG_64BIT
2567 check_for_high_segbits = current_cpu_data.vmbits > (PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3);
2568#endif
2569
Ralf Baechle10cc3522007-10-11 23:46:15 +01002570 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 case CPU_R2000:
2572 case CPU_R3000:
2573 case CPU_R3000A:
2574 case CPU_R3081E:
2575 case CPU_TX3912:
2576 case CPU_TX3922:
2577 case CPU_TX3927:
David Daney826222842009-10-14 12:16:56 -07002578#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
Huacai Chen87599342013-03-17 11:49:38 +00002579 if (cpu_has_local_ebase)
2580 build_r3000_tlb_refill_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 if (!run_once) {
Huacai Chen87599342013-03-17 11:49:38 +00002582 if (!cpu_has_local_ebase)
2583 build_r3000_tlb_refill_handler();
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05302584 build_setup_pgd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 build_r3000_tlb_load_handler();
2586 build_r3000_tlb_store_handler();
2587 build_r3000_tlb_modify_handler();
Jonas Gorskia3d90862013-06-21 17:48:48 +00002588 flush_tlb_handlers();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 run_once++;
2590 }
David Daney826222842009-10-14 12:16:56 -07002591#else
2592 panic("No R3000 TLB refill handler");
2593#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 break;
2595
2596 case CPU_R6000:
2597 case CPU_R6000A:
2598 panic("No R6000 TLB refill handler yet");
2599 break;
2600
2601 case CPU_R8000:
2602 panic("No R8000 TLB refill handler yet");
2603 break;
2604
2605 default:
Huacai Chen380cd582016-03-03 09:45:12 +08002606 if (cpu_has_ldpte)
2607 setup_pw();
2608
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 if (!run_once) {
David Daneybf286072011-07-05 16:34:46 -07002610 scratch_reg = allocate_kscratch();
Jayachandran Cf4ae17a2013-09-25 16:28:04 +05302611 build_setup_pgd();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 build_r4000_tlb_load_handler();
2613 build_r4000_tlb_store_handler();
2614 build_r4000_tlb_modify_handler();
Huacai Chen380cd582016-03-03 09:45:12 +08002615 if (cpu_has_ldpte)
2616 build_loongson3_tlb_refill_handler();
2617 else if (!cpu_has_local_ebase)
Huacai Chen87599342013-03-17 11:49:38 +00002618 build_r4000_tlb_refill_handler();
Jonas Gorskia3d90862013-06-21 17:48:48 +00002619 flush_tlb_handlers();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 run_once++;
2621 }
Huacai Chen87599342013-03-17 11:49:38 +00002622 if (cpu_has_local_ebase)
2623 build_r4000_tlb_refill_handler();
Steven J. Hillc5b36782015-02-26 18:16:38 -06002624 if (cpu_has_xpa)
2625 config_xpa_params();
Markos Chandrasf1014d12014-07-14 12:47:09 +01002626 if (cpu_has_htw)
2627 config_htw_params();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 }
2629}