Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
| 6 | * Synthesize TLB refill handlers at runtime. |
| 7 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 8 | * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer |
| 9 | * Copyright (C) 2005, 2007, 2008, 2009 Maciej W. Rozycki |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 10 | * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 11 | * Copyright (C) 2008, 2009 Cavium Networks, Inc. |
Steven J. Hill | 113c62d | 2012-07-06 23:56:00 +0200 | [diff] [blame] | 12 | * Copyright (C) 2011 MIPS Technologies, Inc. |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 13 | * |
| 14 | * ... and the days got worse and worse and now you see |
Adam Buchbinder | 92a76f6 | 2016-02-25 00:44:58 -0800 | [diff] [blame] | 15 | * I've gone completely out of my mind. |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 16 | * |
| 17 | * They're coming to take me a away haha |
| 18 | * they're coming to take me a away hoho hihi haha |
| 19 | * to the funny farm where code is beautiful all the time ... |
| 20 | * |
| 21 | * (Condolences to Napoleon XIV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | */ |
| 23 | |
David Daney | 95affdd | 2009-05-20 11:40:59 -0700 | [diff] [blame] | 24 | #include <linux/bug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/kernel.h> |
| 26 | #include <linux/types.h> |
Ralf Baechle | 631330f | 2009-06-19 14:05:26 +0100 | [diff] [blame] | 27 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/string.h> |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 29 | #include <linux/cache.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 31 | #include <asm/cacheflush.h> |
Ralf Baechle | 69f24d1 | 2013-09-17 10:25:47 +0200 | [diff] [blame] | 32 | #include <asm/cpu-type.h> |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 33 | #include <asm/pgtable.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/war.h> |
Florian Fainelli | 3482d71 | 2010-01-28 15:21:24 +0100 | [diff] [blame] | 35 | #include <asm/uasm.h> |
David Howells | b81947c | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 36 | #include <asm/setup.h> |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 37 | |
Paul Gortmaker | a2d25e6 | 2015-04-27 18:47:59 -0400 | [diff] [blame] | 38 | static int mips_xpa_disabled; |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 39 | |
| 40 | static 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 Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 49 | /* |
| 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 | */ |
| 55 | extern void tlb_do_page_fault_0(void); |
| 56 | extern void tlb_do_page_fault_1(void); |
| 57 | |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 58 | struct work_registers { |
| 59 | int r1; |
| 60 | int r2; |
| 61 | int r3; |
| 62 | }; |
| 63 | |
| 64 | struct tlb_reg_save { |
| 65 | unsigned long a; |
| 66 | unsigned long b; |
| 67 | } ____cacheline_aligned_in_smp; |
| 68 | |
| 69 | static struct tlb_reg_save handler_reg_save[NR_CPUS]; |
David Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 70 | |
Ralf Baechle | aeffdbb | 2007-10-11 23:46:14 +0100 | [diff] [blame] | 71 | static inline int r45k_bvahwbug(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
| 73 | /* XXX: We should probe for the presence of this bug, but we don't. */ |
| 74 | return 0; |
| 75 | } |
| 76 | |
Ralf Baechle | aeffdbb | 2007-10-11 23:46:14 +0100 | [diff] [blame] | 77 | static inline int r4k_250MHZhwbug(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { |
| 79 | /* XXX: We should probe for the presence of this bug, but we don't. */ |
| 80 | return 0; |
| 81 | } |
| 82 | |
Ralf Baechle | aeffdbb | 2007-10-11 23:46:14 +0100 | [diff] [blame] | 83 | static inline int __maybe_unused bcm1250_m3_war(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { |
| 85 | return BCM1250_M3_WAR; |
| 86 | } |
| 87 | |
Ralf Baechle | aeffdbb | 2007-10-11 23:46:14 +0100 | [diff] [blame] | 88 | static inline int __maybe_unused r10000_llsc_war(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
| 90 | return R10000_LLSC_WAR; |
| 91 | } |
| 92 | |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 93 | static 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 Daney | 4723b20 | 2013-07-29 15:07:03 -0700 | [diff] [blame] | 99 | case CPU_CAVIUM_OCTEON3: |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 100 | return 1; |
| 101 | default: |
| 102 | return 0; |
| 103 | } |
| 104 | } |
| 105 | |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 106 | static int use_lwx_insns(void) |
| 107 | { |
| 108 | switch (current_cpu_type()) { |
| 109 | case CPU_CAVIUM_OCTEON2: |
David Daney | 4723b20 | 2013-07-29 15:07:03 -0700 | [diff] [blame] | 110 | case CPU_CAVIUM_OCTEON3: |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 111 | return 1; |
| 112 | default: |
| 113 | return 0; |
| 114 | } |
| 115 | } |
| 116 | #if defined(CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE) && \ |
| 117 | CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE > 0 |
| 118 | static bool scratchpad_available(void) |
| 119 | { |
| 120 | return true; |
| 121 | } |
| 122 | static 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 |
| 132 | static bool scratchpad_available(void) |
| 133 | { |
| 134 | return false; |
| 135 | } |
| 136 | static int scratchpad_offset(int i) |
| 137 | { |
| 138 | BUG(); |
David Daney | e1c87d2 | 2011-01-19 15:24:42 -0800 | [diff] [blame] | 139 | /* Really unreachable, but evidently some GCC want this. */ |
| 140 | return 0; |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 141 | } |
| 142 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | /* |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 144 | * 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 Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 152 | static int m4kc_tlbp_war(void) |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 153 | { |
| 154 | return (current_cpu_data.processor_id & 0xffff00) == |
| 155 | (PRID_COMP_MIPS | PRID_IMP_4KC); |
| 156 | } |
| 157 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 158 | /* Handle labels (which must be positive integers). */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | enum label_id { |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 160 | label_second_part = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | label_leave, |
| 162 | label_vmalloc, |
| 163 | label_vmalloc_done, |
Ralf Baechle | 02a5417 | 2012-10-13 22:46:26 +0200 | [diff] [blame] | 164 | label_tlbw_hazard_0, |
| 165 | label_split = label_tlbw_hazard_0 + 8, |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 166 | label_tlbl_goaround1, |
| 167 | label_tlbl_goaround2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | label_nopage_tlbl, |
| 169 | label_nopage_tlbs, |
| 170 | label_nopage_tlbm, |
| 171 | label_smp_pgtable_change, |
| 172 | label_r3000_write_probe_fail, |
David Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 173 | label_large_segbits_fault, |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 174 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 175 | label_tlb_huge_update, |
| 176 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | }; |
| 178 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 179 | UASM_L_LA(_second_part) |
| 180 | UASM_L_LA(_leave) |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 181 | UASM_L_LA(_vmalloc) |
| 182 | UASM_L_LA(_vmalloc_done) |
Ralf Baechle | 02a5417 | 2012-10-13 22:46:26 +0200 | [diff] [blame] | 183 | /* _tlbw_hazard_x is handled differently. */ |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 184 | UASM_L_LA(_split) |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 185 | UASM_L_LA(_tlbl_goaround1) |
| 186 | UASM_L_LA(_tlbl_goaround2) |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 187 | UASM_L_LA(_nopage_tlbl) |
| 188 | UASM_L_LA(_nopage_tlbs) |
| 189 | UASM_L_LA(_nopage_tlbm) |
| 190 | UASM_L_LA(_smp_pgtable_change) |
| 191 | UASM_L_LA(_r3000_write_probe_fail) |
David Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 192 | UASM_L_LA(_large_segbits_fault) |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 193 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 194 | UASM_L_LA(_tlb_huge_update) |
| 195 | #endif |
Atsushi Nemoto | 656be92 | 2006-10-26 00:08:31 +0900 | [diff] [blame] | 196 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 197 | static int hazard_instance; |
Ralf Baechle | 02a5417 | 2012-10-13 22:46:26 +0200 | [diff] [blame] | 198 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 199 | static void uasm_bgezl_hazard(u32 **p, struct uasm_reloc **r, int instance) |
Ralf Baechle | 02a5417 | 2012-10-13 22:46:26 +0200 | [diff] [blame] | 200 | { |
| 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 Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 210 | static void uasm_bgezl_label(struct uasm_label **l, u32 **p, int instance) |
Ralf Baechle | 02a5417 | 2012-10-13 22:46:26 +0200 | [diff] [blame] | 211 | { |
| 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-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame] | 221 | /* |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 222 | * pgtable bits are assigned dynamically depending on processor feature |
| 223 | * and statically based on kernel configuration. This spits out the actual |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 224 | * values the kernel is using. Required to make sense from disassembled |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 225 | * TLB exception handlers. |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame] | 226 | */ |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 227 | static void output_pgtable_bits_defines(void) |
| 228 | { |
| 229 | #define pr_define(fmt, ...) \ |
| 230 | pr_debug("#define " fmt, ##__VA_ARGS__) |
| 231 | |
| 232 | pr_debug("#include <asm/asm.h>\n"); |
| 233 | pr_debug("#include <asm/regdef.h>\n"); |
| 234 | pr_debug("\n"); |
| 235 | |
| 236 | pr_define("_PAGE_PRESENT_SHIFT %d\n", _PAGE_PRESENT_SHIFT); |
| 237 | pr_define("_PAGE_READ_SHIFT %d\n", _PAGE_READ_SHIFT); |
| 238 | pr_define("_PAGE_WRITE_SHIFT %d\n", _PAGE_WRITE_SHIFT); |
| 239 | pr_define("_PAGE_ACCESSED_SHIFT %d\n", _PAGE_ACCESSED_SHIFT); |
| 240 | pr_define("_PAGE_MODIFIED_SHIFT %d\n", _PAGE_MODIFIED_SHIFT); |
Ralf Baechle | 970d032 | 2012-10-18 13:54:15 +0200 | [diff] [blame] | 241 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 242 | pr_define("_PAGE_HUGE_SHIFT %d\n", _PAGE_HUGE_SHIFT); |
| 243 | #endif |
Huacai Chen | 4f33f6c | 2016-01-21 21:09:52 +0800 | [diff] [blame] | 244 | #if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6) |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 245 | if (cpu_has_rixi) { |
| 246 | #ifdef _PAGE_NO_EXEC_SHIFT |
| 247 | pr_define("_PAGE_NO_EXEC_SHIFT %d\n", _PAGE_NO_EXEC_SHIFT); |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 248 | pr_define("_PAGE_NO_READ_SHIFT %d\n", _PAGE_NO_READ_SHIFT); |
| 249 | #endif |
| 250 | } |
Steven J. Hill | be0c37c | 2015-02-26 18:16:37 -0600 | [diff] [blame] | 251 | #endif |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 252 | pr_define("_PAGE_GLOBAL_SHIFT %d\n", _PAGE_GLOBAL_SHIFT); |
| 253 | pr_define("_PAGE_VALID_SHIFT %d\n", _PAGE_VALID_SHIFT); |
| 254 | pr_define("_PAGE_DIRTY_SHIFT %d\n", _PAGE_DIRTY_SHIFT); |
| 255 | pr_define("_PFN_SHIFT %d\n", _PFN_SHIFT); |
| 256 | pr_debug("\n"); |
| 257 | } |
| 258 | |
| 259 | static inline void dump_handler(const char *symbol, const u32 *handler, int count) |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame] | 260 | { |
| 261 | int i; |
| 262 | |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 263 | pr_debug("LEAF(%s)\n", symbol); |
| 264 | |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame] | 265 | pr_debug("\t.set push\n"); |
| 266 | pr_debug("\t.set noreorder\n"); |
| 267 | |
| 268 | for (i = 0; i < count; i++) |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 269 | pr_debug("\t.word\t0x%08x\t\t# %p\n", handler[i], &handler[i]); |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame] | 270 | |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 271 | pr_debug("\t.set\tpop\n"); |
| 272 | |
| 273 | pr_debug("\tEND(%s)\n", symbol); |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame] | 274 | } |
| 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | /* The only general purpose registers allowed in TLB handlers. */ |
| 277 | #define K0 26 |
| 278 | #define K1 27 |
| 279 | |
| 280 | /* Some CP0 registers */ |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 281 | #define C0_INDEX 0, 0 |
| 282 | #define C0_ENTRYLO0 2, 0 |
| 283 | #define C0_TCBIND 2, 2 |
| 284 | #define C0_ENTRYLO1 3, 0 |
| 285 | #define C0_CONTEXT 4, 0 |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 286 | #define C0_PAGEMASK 5, 0 |
Huacai Chen | 380cd58 | 2016-03-03 09:45:12 +0800 | [diff] [blame] | 287 | #define C0_PWBASE 5, 5 |
| 288 | #define C0_PWFIELD 5, 6 |
| 289 | #define C0_PWSIZE 5, 7 |
| 290 | #define C0_PWCTL 6, 6 |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 291 | #define C0_BADVADDR 8, 0 |
Huacai Chen | 380cd58 | 2016-03-03 09:45:12 +0800 | [diff] [blame] | 292 | #define C0_PGD 9, 7 |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 293 | #define C0_ENTRYHI 10, 0 |
| 294 | #define C0_EPC 14, 0 |
| 295 | #define C0_XCONTEXT 20, 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 297 | #ifdef CONFIG_64BIT |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 298 | # define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_XCONTEXT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | #else |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 300 | # define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_CONTEXT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | #endif |
| 302 | |
| 303 | /* The worst case length of the handler is around 18 instructions for |
| 304 | * R3000-style TLBs and up to 63 instructions for R4000-style TLBs. |
| 305 | * Maximum space available is 32 instructions for R3000 and 64 |
| 306 | * instructions for R4000. |
| 307 | * |
| 308 | * We deliberately chose a buffer size of 128, so we won't scribble |
| 309 | * over anything important on overflow before we panic. |
| 310 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 311 | static u32 tlb_handler[128]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
| 313 | /* simply assume worst case size for labels and relocs */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 314 | static struct uasm_label labels[128]; |
| 315 | static struct uasm_reloc relocs[128]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 317 | static int check_for_high_segbits; |
Paul Burton | 00bf1c6 | 2015-09-22 11:42:52 -0700 | [diff] [blame] | 318 | static bool fill_includes_sw_bits; |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 319 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 320 | static unsigned int kscratch_used_mask; |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 321 | |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 322 | static inline int __maybe_unused c0_kscratch(void) |
| 323 | { |
| 324 | switch (current_cpu_type()) { |
| 325 | case CPU_XLP: |
| 326 | case CPU_XLR: |
| 327 | return 22; |
| 328 | default: |
| 329 | return 31; |
| 330 | } |
| 331 | } |
| 332 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 333 | static int allocate_kscratch(void) |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 334 | { |
| 335 | int r; |
| 336 | unsigned int a = cpu_data[0].kscratch_mask & ~kscratch_used_mask; |
| 337 | |
| 338 | r = ffs(a); |
| 339 | |
| 340 | if (r == 0) |
| 341 | return -1; |
| 342 | |
| 343 | r--; /* make it zero based */ |
| 344 | |
| 345 | kscratch_used_mask |= (1 << r); |
| 346 | |
| 347 | return r; |
| 348 | } |
| 349 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 350 | static int scratch_reg; |
| 351 | static int pgd_reg; |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 352 | enum vmalloc64_mode {not_refill, refill_scratch, refill_noscratch}; |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 353 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 354 | static struct work_registers build_get_work_registers(u32 **p) |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 355 | { |
| 356 | struct work_registers r; |
| 357 | |
Jayachandran C | 0e6ecc1 | 2013-06-11 14:41:36 +0000 | [diff] [blame] | 358 | if (scratch_reg >= 0) { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 359 | /* Save in CPU local C0_KScratch? */ |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 360 | UASM_i_MTC0(p, 1, c0_kscratch(), scratch_reg); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 361 | r.r1 = K0; |
| 362 | r.r2 = K1; |
| 363 | r.r3 = 1; |
| 364 | return r; |
| 365 | } |
| 366 | |
| 367 | if (num_possible_cpus() > 1) { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 368 | /* Get smp_processor_id */ |
Jayachandran C | c2377a4 | 2013-08-11 17:10:16 +0530 | [diff] [blame] | 369 | UASM_i_CPUID_MFC0(p, K0, SMP_CPUID_REG); |
| 370 | UASM_i_SRL_SAFE(p, K0, K0, SMP_CPUID_REGSHIFT); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 371 | |
| 372 | /* handler_reg_save index in K0 */ |
| 373 | UASM_i_SLL(p, K0, K0, ilog2(sizeof(struct tlb_reg_save))); |
| 374 | |
| 375 | UASM_i_LA(p, K1, (long)&handler_reg_save); |
| 376 | UASM_i_ADDU(p, K0, K0, K1); |
| 377 | } else { |
| 378 | UASM_i_LA(p, K0, (long)&handler_reg_save); |
| 379 | } |
| 380 | /* K0 now points to save area, save $1 and $2 */ |
| 381 | UASM_i_SW(p, 1, offsetof(struct tlb_reg_save, a), K0); |
| 382 | UASM_i_SW(p, 2, offsetof(struct tlb_reg_save, b), K0); |
| 383 | |
| 384 | r.r1 = K1; |
| 385 | r.r2 = 1; |
| 386 | r.r3 = 2; |
| 387 | return r; |
| 388 | } |
| 389 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 390 | static void build_restore_work_registers(u32 **p) |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 391 | { |
Jayachandran C | 0e6ecc1 | 2013-06-11 14:41:36 +0000 | [diff] [blame] | 392 | if (scratch_reg >= 0) { |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 393 | UASM_i_MFC0(p, 1, c0_kscratch(), scratch_reg); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 394 | return; |
| 395 | } |
| 396 | /* K0 already points to save area, restore $1 and $2 */ |
| 397 | UASM_i_LW(p, 1, offsetof(struct tlb_reg_save, a), K0); |
| 398 | UASM_i_LW(p, 2, offsetof(struct tlb_reg_save, b), K0); |
| 399 | } |
| 400 | |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 401 | #ifndef CONFIG_MIPS_PGD_C0_CONTEXT |
| 402 | |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 403 | /* |
| 404 | * CONFIG_MIPS_PGD_C0_CONTEXT implies 64 bit and lack of pgd_current, |
| 405 | * we cannot do r3000 under these circumstances. |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 406 | * |
| 407 | * Declare pgd_current here instead of including mmu_context.h to avoid type |
| 408 | * conflicts for tlbmiss_handler_setup_pgd |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 409 | */ |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 410 | extern unsigned long pgd_current[]; |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | /* |
| 413 | * The R3000 TLB handler is simple. |
| 414 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 415 | static void build_r3000_tlb_refill_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | { |
| 417 | long pgdc = (long)pgd_current; |
| 418 | u32 *p; |
| 419 | |
| 420 | memset(tlb_handler, 0, sizeof(tlb_handler)); |
| 421 | p = tlb_handler; |
| 422 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 423 | uasm_i_mfc0(&p, K0, C0_BADVADDR); |
| 424 | uasm_i_lui(&p, K1, uasm_rel_hi(pgdc)); /* cp0 delay */ |
| 425 | uasm_i_lw(&p, K1, uasm_rel_lo(pgdc), K1); |
| 426 | uasm_i_srl(&p, K0, K0, 22); /* load delay */ |
| 427 | uasm_i_sll(&p, K0, K0, 2); |
| 428 | uasm_i_addu(&p, K1, K1, K0); |
| 429 | uasm_i_mfc0(&p, K0, C0_CONTEXT); |
| 430 | uasm_i_lw(&p, K1, 0, K1); /* cp0 delay */ |
| 431 | uasm_i_andi(&p, K0, K0, 0xffc); /* load delay */ |
| 432 | uasm_i_addu(&p, K1, K1, K0); |
| 433 | uasm_i_lw(&p, K0, 0, K1); |
| 434 | uasm_i_nop(&p); /* load delay */ |
| 435 | uasm_i_mtc0(&p, K0, C0_ENTRYLO0); |
| 436 | uasm_i_mfc0(&p, K1, C0_EPC); /* cp0 delay */ |
| 437 | uasm_i_tlbwr(&p); /* cp0 delay */ |
| 438 | uasm_i_jr(&p, K1); |
| 439 | uasm_i_rfe(&p); /* branch delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | if (p > tlb_handler + 32) |
| 442 | panic("TLB refill handler space exceeded"); |
| 443 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 444 | pr_debug("Wrote TLB refill handler (%u instructions).\n", |
| 445 | (unsigned int)(p - tlb_handler)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | |
Ralf Baechle | 91b05e6 | 2006-03-29 18:53:00 +0100 | [diff] [blame] | 447 | memcpy((void *)ebase, tlb_handler, 0x80); |
Leonid Yegoshin | 1062080 | 2014-07-11 15:18:05 -0700 | [diff] [blame] | 448 | local_flush_icache_range(ebase, ebase + 0x80); |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame] | 449 | |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 450 | dump_handler("r3000_tlb_refill", (u32 *)ebase, 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | } |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 452 | #endif /* CONFIG_MIPS_PGD_C0_CONTEXT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
| 454 | /* |
| 455 | * The R4000 TLB handler is much more complicated. We have two |
| 456 | * consecutive handler areas with 32 instructions space each. |
| 457 | * Since they aren't used at the same time, we can overflow in the |
| 458 | * other one.To keep things simple, we first assume linear space, |
| 459 | * then we relocate it to the final handler layout as needed. |
| 460 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 461 | static u32 final_handler[64]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
| 463 | /* |
| 464 | * Hazards |
| 465 | * |
| 466 | * From the IDT errata for the QED RM5230 (Nevada), processor revision 1.0: |
| 467 | * 2. A timing hazard exists for the TLBP instruction. |
| 468 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 469 | * stalling_instruction |
| 470 | * TLBP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | * |
| 472 | * The JTLB is being read for the TLBP throughout the stall generated by the |
| 473 | * previous instruction. This is not really correct as the stalling instruction |
| 474 | * can modify the address used to access the JTLB. The failure symptom is that |
| 475 | * the TLBP instruction will use an address created for the stalling instruction |
| 476 | * and not the address held in C0_ENHI and thus report the wrong results. |
| 477 | * |
| 478 | * The software work-around is to not allow the instruction preceding the TLBP |
| 479 | * to stall - make it an NOP or some other instruction guaranteed not to stall. |
| 480 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 481 | * Errata 2 will not be fixed. This errata is also on the R5000. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | * |
| 483 | * As if we MIPS hackers wouldn't know how to nop pipelines happy ... |
| 484 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 485 | static void __maybe_unused build_tlb_probe_entry(u32 **p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | { |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 487 | switch (current_cpu_type()) { |
Thomas Bogendoerfer | 326e2e1 | 2008-05-12 13:55:42 +0200 | [diff] [blame] | 488 | /* Found by experiment: R4600 v2.0/R4700 needs this, too. */ |
Thiemo Seufer | f5b4d95 | 2005-09-09 17:11:50 +0000 | [diff] [blame] | 489 | case CPU_R4600: |
Thomas Bogendoerfer | 326e2e1 | 2008-05-12 13:55:42 +0200 | [diff] [blame] | 490 | case CPU_R4700: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | case CPU_R5000: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | case CPU_NEVADA: |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 493 | uasm_i_nop(p); |
| 494 | uasm_i_tlbp(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | break; |
| 496 | |
| 497 | default: |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 498 | uasm_i_tlbp(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | break; |
| 500 | } |
| 501 | } |
| 502 | |
| 503 | /* |
| 504 | * Write random or indexed TLB entry, and care about the hazards from |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 505 | * the preceding mtc0 and for the following eret. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | */ |
| 507 | enum tlb_write_entry { tlb_random, tlb_indexed }; |
| 508 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 509 | static void build_tlb_write_entry(u32 **p, struct uasm_label **l, |
| 510 | struct uasm_reloc **r, |
| 511 | enum tlb_write_entry wmode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | { |
| 513 | void(*tlbw)(u32 **) = NULL; |
| 514 | |
| 515 | switch (wmode) { |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 516 | case tlb_random: tlbw = uasm_i_tlbwr; break; |
| 517 | case tlb_indexed: tlbw = uasm_i_tlbwi; break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } |
| 519 | |
Ralf Baechle | 9eaffa8 | 2015-03-25 13:18:27 +0100 | [diff] [blame] | 520 | if (cpu_has_mips_r2_r6) { |
| 521 | if (cpu_has_mips_r2_exec_hazard) |
David Daney | 41f0e4d | 2009-05-12 12:41:53 -0700 | [diff] [blame] | 522 | uasm_i_ehb(p); |
Ralf Baechle | 161548b | 2008-01-29 10:14:54 +0000 | [diff] [blame] | 523 | tlbw(p); |
| 524 | return; |
| 525 | } |
| 526 | |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 527 | switch (current_cpu_type()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | case CPU_R4000PC: |
| 529 | case CPU_R4000SC: |
| 530 | case CPU_R4000MC: |
| 531 | case CPU_R4400PC: |
| 532 | case CPU_R4400SC: |
| 533 | case CPU_R4400MC: |
| 534 | /* |
| 535 | * This branch uses up a mtc0 hazard nop slot and saves |
| 536 | * two nops after the tlbw instruction. |
| 537 | */ |
Ralf Baechle | 02a5417 | 2012-10-13 22:46:26 +0200 | [diff] [blame] | 538 | uasm_bgezl_hazard(p, r, hazard_instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | tlbw(p); |
Ralf Baechle | 02a5417 | 2012-10-13 22:46:26 +0200 | [diff] [blame] | 540 | uasm_bgezl_label(l, p, hazard_instance); |
| 541 | hazard_instance++; |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 542 | uasm_i_nop(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | break; |
| 544 | |
| 545 | case CPU_R4600: |
| 546 | case CPU_R4700: |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 547 | uasm_i_nop(p); |
Maciej W. Rozycki | 2c93e12 | 2005-06-30 10:51:01 +0000 | [diff] [blame] | 548 | tlbw(p); |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 549 | uasm_i_nop(p); |
Maciej W. Rozycki | 2c93e12 | 2005-06-30 10:51:01 +0000 | [diff] [blame] | 550 | break; |
| 551 | |
Ralf Baechle | 359187d | 2012-10-16 22:13:06 +0200 | [diff] [blame] | 552 | case CPU_R5000: |
Ralf Baechle | 359187d | 2012-10-16 22:13:06 +0200 | [diff] [blame] | 553 | case CPU_NEVADA: |
| 554 | uasm_i_nop(p); /* QED specifies 2 nops hazard */ |
| 555 | uasm_i_nop(p); /* QED specifies 2 nops hazard */ |
| 556 | tlbw(p); |
| 557 | break; |
| 558 | |
Maciej W. Rozycki | 2c93e12 | 2005-06-30 10:51:01 +0000 | [diff] [blame] | 559 | case CPU_R4300: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | case CPU_5KC: |
| 561 | case CPU_TX49XX: |
Pete Popov | bdf21b1 | 2005-07-14 17:47:57 +0000 | [diff] [blame] | 562 | case CPU_PR4450: |
Jayachandran C | efa0f81 | 2011-05-07 01:36:21 +0530 | [diff] [blame] | 563 | case CPU_XLR: |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 564 | uasm_i_nop(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | tlbw(p); |
| 566 | break; |
| 567 | |
| 568 | case CPU_R10000: |
| 569 | case CPU_R12000: |
Kumba | 44d921b | 2006-05-16 22:23:59 -0400 | [diff] [blame] | 570 | case CPU_R14000: |
Joshua Kinard | 3057739 | 2015-01-21 07:59:45 -0500 | [diff] [blame] | 571 | case CPU_R16000: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | case CPU_4KC: |
Thomas Bogendoerfer | b1ec4c8 | 2008-03-26 16:42:54 +0100 | [diff] [blame] | 573 | case CPU_4KEC: |
Steven J. Hill | 113c62d | 2012-07-06 23:56:00 +0200 | [diff] [blame] | 574 | case CPU_M14KC: |
Steven J. Hill | f8fa481 | 2012-12-07 03:51:35 +0000 | [diff] [blame] | 575 | case CPU_M14KEC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | case CPU_SB1: |
Andrew Isaacson | 93ce2f52 | 2005-10-19 23:56:20 -0700 | [diff] [blame] | 577 | case CPU_SB1A: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | case CPU_4KSC: |
| 579 | case CPU_20KC: |
| 580 | case CPU_25KF: |
Kevin Cernekee | 602977b | 2010-10-16 14:22:30 -0700 | [diff] [blame] | 581 | case CPU_BMIPS32: |
| 582 | case CPU_BMIPS3300: |
| 583 | case CPU_BMIPS4350: |
| 584 | case CPU_BMIPS4380: |
| 585 | case CPU_BMIPS5000: |
Fuxin Zhang | 2a21c73 | 2007-06-06 14:52:43 +0800 | [diff] [blame] | 586 | case CPU_LOONGSON2: |
Huacai Chen | c579d31 | 2014-03-21 18:44:00 +0800 | [diff] [blame] | 587 | case CPU_LOONGSON3: |
Shinya Kuribayashi | a644b27 | 2009-03-03 18:05:51 +0900 | [diff] [blame] | 588 | case CPU_R5500: |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 589 | if (m4kc_tlbp_war()) |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 590 | uasm_i_nop(p); |
Manuel Lauss | 2f794d0 | 2009-03-25 17:49:30 +0100 | [diff] [blame] | 591 | case CPU_ALCHEMY: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | tlbw(p); |
| 593 | break; |
| 594 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | case CPU_RM7000: |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 596 | uasm_i_nop(p); |
| 597 | uasm_i_nop(p); |
| 598 | uasm_i_nop(p); |
| 599 | uasm_i_nop(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | tlbw(p); |
| 601 | break; |
| 602 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | case CPU_VR4111: |
| 604 | case CPU_VR4121: |
| 605 | case CPU_VR4122: |
| 606 | case CPU_VR4181: |
| 607 | case CPU_VR4181A: |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 608 | uasm_i_nop(p); |
| 609 | uasm_i_nop(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | tlbw(p); |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 611 | uasm_i_nop(p); |
| 612 | uasm_i_nop(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | break; |
| 614 | |
| 615 | case CPU_VR4131: |
| 616 | case CPU_VR4133: |
Ralf Baechle | 7623deb | 2005-08-29 16:49:55 +0000 | [diff] [blame] | 617 | case CPU_R5432: |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 618 | uasm_i_nop(p); |
| 619 | uasm_i_nop(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | tlbw(p); |
| 621 | break; |
| 622 | |
Lars-Peter Clausen | 83ccf69 | 2010-07-17 11:07:51 +0000 | [diff] [blame] | 623 | case CPU_JZRISC: |
| 624 | tlbw(p); |
| 625 | uasm_i_nop(p); |
| 626 | break; |
| 627 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | default: |
| 629 | panic("No TLB refill handler yet (CPU type: %d)", |
Wu Zhangjin | d7b1205 | 2010-12-26 04:42:37 +0800 | [diff] [blame] | 630 | current_cpu_type()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | break; |
| 632 | } |
| 633 | } |
| 634 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 635 | static __maybe_unused void build_convert_pte_to_entrylo(u32 **p, |
| 636 | unsigned int reg) |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 637 | { |
Paul Burton | 00bf1c6 | 2015-09-22 11:42:52 -0700 | [diff] [blame] | 638 | if (cpu_has_rixi && _PAGE_NO_EXEC) { |
| 639 | if (fill_includes_sw_bits) { |
| 640 | UASM_i_ROTR(p, reg, reg, ilog2(_PAGE_GLOBAL)); |
| 641 | } else { |
| 642 | UASM_i_SRL(p, reg, reg, ilog2(_PAGE_NO_EXEC)); |
| 643 | UASM_i_ROTR(p, reg, reg, |
| 644 | ilog2(_PAGE_GLOBAL) - ilog2(_PAGE_NO_EXEC)); |
| 645 | } |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 646 | } else { |
Ralf Baechle | 34adb28 | 2014-11-22 00:16:48 +0100 | [diff] [blame] | 647 | #ifdef CONFIG_PHYS_ADDR_T_64BIT |
David Daney | 3be6022 | 2010-04-28 12:16:17 -0700 | [diff] [blame] | 648 | uasm_i_dsrl_safe(p, reg, reg, ilog2(_PAGE_GLOBAL)); |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 649 | #else |
| 650 | UASM_i_SRL(p, reg, reg, ilog2(_PAGE_GLOBAL)); |
| 651 | #endif |
| 652 | } |
| 653 | } |
| 654 | |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 655 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 656 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 657 | static void build_restore_pagemask(u32 **p, struct uasm_reloc **r, |
| 658 | unsigned int tmp, enum label_id lid, |
| 659 | int restore_scratch) |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 660 | { |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 661 | if (restore_scratch) { |
| 662 | /* Reset default page size */ |
| 663 | if (PM_DEFAULT_MASK >> 16) { |
| 664 | uasm_i_lui(p, tmp, PM_DEFAULT_MASK >> 16); |
| 665 | uasm_i_ori(p, tmp, tmp, PM_DEFAULT_MASK & 0xffff); |
| 666 | uasm_i_mtc0(p, tmp, C0_PAGEMASK); |
| 667 | uasm_il_b(p, r, lid); |
| 668 | } else if (PM_DEFAULT_MASK) { |
| 669 | uasm_i_ori(p, tmp, 0, PM_DEFAULT_MASK); |
| 670 | uasm_i_mtc0(p, tmp, C0_PAGEMASK); |
| 671 | uasm_il_b(p, r, lid); |
| 672 | } else { |
| 673 | uasm_i_mtc0(p, 0, C0_PAGEMASK); |
| 674 | uasm_il_b(p, r, lid); |
| 675 | } |
Jayachandran C | 0e6ecc1 | 2013-06-11 14:41:36 +0000 | [diff] [blame] | 676 | if (scratch_reg >= 0) |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 677 | UASM_i_MFC0(p, 1, c0_kscratch(), scratch_reg); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 678 | else |
| 679 | UASM_i_LW(p, 1, scratchpad_offset(0), 0); |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 680 | } else { |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 681 | /* Reset default page size */ |
| 682 | if (PM_DEFAULT_MASK >> 16) { |
| 683 | uasm_i_lui(p, tmp, PM_DEFAULT_MASK >> 16); |
| 684 | uasm_i_ori(p, tmp, tmp, PM_DEFAULT_MASK & 0xffff); |
| 685 | uasm_il_b(p, r, lid); |
| 686 | uasm_i_mtc0(p, tmp, C0_PAGEMASK); |
| 687 | } else if (PM_DEFAULT_MASK) { |
| 688 | uasm_i_ori(p, tmp, 0, PM_DEFAULT_MASK); |
| 689 | uasm_il_b(p, r, lid); |
| 690 | uasm_i_mtc0(p, tmp, C0_PAGEMASK); |
| 691 | } else { |
| 692 | uasm_il_b(p, r, lid); |
| 693 | uasm_i_mtc0(p, 0, C0_PAGEMASK); |
| 694 | } |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 695 | } |
| 696 | } |
| 697 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 698 | static void build_huge_tlb_write_entry(u32 **p, struct uasm_label **l, |
| 699 | struct uasm_reloc **r, |
| 700 | unsigned int tmp, |
| 701 | enum tlb_write_entry wmode, |
| 702 | int restore_scratch) |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 703 | { |
| 704 | /* Set huge page tlb entry size */ |
| 705 | uasm_i_lui(p, tmp, PM_HUGE_MASK >> 16); |
| 706 | uasm_i_ori(p, tmp, tmp, PM_HUGE_MASK & 0xffff); |
| 707 | uasm_i_mtc0(p, tmp, C0_PAGEMASK); |
| 708 | |
| 709 | build_tlb_write_entry(p, l, r, wmode); |
| 710 | |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 711 | build_restore_pagemask(p, r, tmp, label_leave, restore_scratch); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | /* |
| 715 | * Check if Huge PTE is present, if so then jump to LABEL. |
| 716 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 717 | static void |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 718 | build_is_huge_pte(u32 **p, struct uasm_reloc **r, unsigned int tmp, |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 719 | unsigned int pmd, int lid) |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 720 | { |
| 721 | UASM_i_LW(p, tmp, 0, pmd); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 722 | if (use_bbit_insns()) { |
| 723 | uasm_il_bbit1(p, r, tmp, ilog2(_PAGE_HUGE), lid); |
| 724 | } else { |
| 725 | uasm_i_andi(p, tmp, tmp, _PAGE_HUGE); |
| 726 | uasm_il_bnez(p, r, tmp, lid); |
| 727 | } |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 728 | } |
| 729 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 730 | static void build_huge_update_entries(u32 **p, unsigned int pte, |
| 731 | unsigned int tmp) |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 732 | { |
| 733 | int small_sequence; |
| 734 | |
| 735 | /* |
| 736 | * A huge PTE describes an area the size of the |
| 737 | * configured huge page size. This is twice the |
| 738 | * of the large TLB entry size we intend to use. |
| 739 | * A TLB entry half the size of the configured |
| 740 | * huge page size is configured into entrylo0 |
| 741 | * and entrylo1 to cover the contiguous huge PTE |
| 742 | * address space. |
| 743 | */ |
| 744 | small_sequence = (HPAGE_SIZE >> 7) < 0x10000; |
| 745 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 746 | /* We can clobber tmp. It isn't used after this.*/ |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 747 | if (!small_sequence) |
| 748 | uasm_i_lui(p, tmp, HPAGE_SIZE >> (7 + 16)); |
| 749 | |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 750 | build_convert_pte_to_entrylo(p, pte); |
David Daney | 9b8c389 | 2010-02-10 15:12:44 -0800 | [diff] [blame] | 751 | UASM_i_MTC0(p, pte, C0_ENTRYLO0); /* load it */ |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 752 | /* convert to entrylo1 */ |
| 753 | if (small_sequence) |
| 754 | UASM_i_ADDIU(p, pte, pte, HPAGE_SIZE >> 7); |
| 755 | else |
| 756 | UASM_i_ADDU(p, pte, pte, tmp); |
| 757 | |
David Daney | 9b8c389 | 2010-02-10 15:12:44 -0800 | [diff] [blame] | 758 | UASM_i_MTC0(p, pte, C0_ENTRYLO1); /* load it */ |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 759 | } |
| 760 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 761 | static void build_huge_handler_tail(u32 **p, struct uasm_reloc **r, |
| 762 | struct uasm_label **l, |
| 763 | unsigned int pte, |
| 764 | unsigned int ptr) |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 765 | { |
| 766 | #ifdef CONFIG_SMP |
| 767 | UASM_i_SC(p, pte, 0, ptr); |
| 768 | uasm_il_beqz(p, r, pte, label_tlb_huge_update); |
| 769 | UASM_i_LW(p, pte, 0, ptr); /* Needed because SC killed our PTE */ |
| 770 | #else |
| 771 | UASM_i_SW(p, pte, 0, ptr); |
| 772 | #endif |
| 773 | build_huge_update_entries(p, pte, ptr); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 774 | build_huge_tlb_write_entry(p, l, r, pte, tlb_indexed, 0); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 775 | } |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 776 | #endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */ |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 777 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 778 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | /* |
| 780 | * TMP and PTR are scratch. |
| 781 | * TMP will be clobbered, PTR will hold the pmd entry. |
| 782 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 783 | static void |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 784 | build_get_pmde64(u32 **p, struct uasm_label **l, struct uasm_reloc **r, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | unsigned int tmp, unsigned int ptr) |
| 786 | { |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 787 | #ifndef CONFIG_MIPS_PGD_C0_CONTEXT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | long pgdc = (long)pgd_current; |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 789 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | /* |
| 791 | * The vmalloc handling is not in the hotpath. |
| 792 | */ |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 793 | uasm_i_dmfc0(p, tmp, C0_BADVADDR); |
David Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 794 | |
| 795 | if (check_for_high_segbits) { |
| 796 | /* |
| 797 | * The kernel currently implicitely assumes that the |
| 798 | * MIPS SEGBITS parameter for the processor is |
| 799 | * (PGDIR_SHIFT+PGDIR_BITS) or less, and will never |
| 800 | * allocate virtual addresses outside the maximum |
| 801 | * range for SEGBITS = (PGDIR_SHIFT+PGDIR_BITS). But |
| 802 | * that doesn't prevent user code from accessing the |
| 803 | * higher xuseg addresses. Here, we make sure that |
| 804 | * everything but the lower xuseg addresses goes down |
| 805 | * the module_alloc/vmalloc path. |
| 806 | */ |
| 807 | uasm_i_dsrl_safe(p, ptr, tmp, PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3); |
| 808 | uasm_il_bnez(p, r, ptr, label_vmalloc); |
| 809 | } else { |
| 810 | uasm_il_bltz(p, r, tmp, label_vmalloc); |
| 811 | } |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 812 | /* No uasm_i_nop needed here, since the next insn doesn't touch TMP. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 814 | if (pgd_reg != -1) { |
| 815 | /* pgd is in pgd_reg */ |
Huacai Chen | 380cd58 | 2016-03-03 09:45:12 +0800 | [diff] [blame] | 816 | if (cpu_has_ldpte) |
| 817 | UASM_i_MFC0(p, ptr, C0_PWBASE); |
| 818 | else |
| 819 | UASM_i_MFC0(p, ptr, c0_kscratch(), pgd_reg); |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 820 | } else { |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 821 | #if defined(CONFIG_MIPS_PGD_C0_CONTEXT) |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 822 | /* |
| 823 | * &pgd << 11 stored in CONTEXT [23..63]. |
| 824 | */ |
| 825 | UASM_i_MFC0(p, ptr, C0_CONTEXT); |
| 826 | |
| 827 | /* Clear lower 23 bits of context. */ |
| 828 | uasm_i_dins(p, ptr, 0, 0, 23); |
| 829 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 830 | /* 1 0 1 0 1 << 6 xkphys cached */ |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 831 | uasm_i_ori(p, ptr, ptr, 0x540); |
| 832 | uasm_i_drotr(p, ptr, ptr, 11); |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 833 | #elif defined(CONFIG_SMP) |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 834 | UASM_i_CPUID_MFC0(p, ptr, SMP_CPUID_REG); |
| 835 | uasm_i_dsrl_safe(p, ptr, ptr, SMP_CPUID_PTRSHIFT); |
| 836 | UASM_i_LA_mostly(p, tmp, pgdc); |
| 837 | uasm_i_daddu(p, ptr, ptr, tmp); |
| 838 | uasm_i_dmfc0(p, tmp, C0_BADVADDR); |
| 839 | uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | #else |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 841 | UASM_i_LA_mostly(p, ptr, pgdc); |
| 842 | uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | #endif |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 844 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 846 | uasm_l_vmalloc_done(l, *p); |
Ralf Baechle | 242954b | 2006-10-24 02:29:01 +0100 | [diff] [blame] | 847 | |
David Daney | 3be6022 | 2010-04-28 12:16:17 -0700 | [diff] [blame] | 848 | /* get pgd offset in bytes */ |
| 849 | uasm_i_dsrl_safe(p, tmp, tmp, PGDIR_SHIFT - 3); |
Ralf Baechle | 242954b | 2006-10-24 02:29:01 +0100 | [diff] [blame] | 850 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 851 | uasm_i_andi(p, tmp, tmp, (PTRS_PER_PGD - 1)<<3); |
| 852 | uasm_i_daddu(p, ptr, ptr, tmp); /* add in pgd offset */ |
David Daney | 325f8a0 | 2009-12-04 13:52:36 -0800 | [diff] [blame] | 853 | #ifndef __PAGETABLE_PMD_FOLDED |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 854 | uasm_i_dmfc0(p, tmp, C0_BADVADDR); /* get faulting address */ |
| 855 | uasm_i_ld(p, ptr, 0, ptr); /* get pmd pointer */ |
David Daney | 3be6022 | 2010-04-28 12:16:17 -0700 | [diff] [blame] | 856 | uasm_i_dsrl_safe(p, tmp, tmp, PMD_SHIFT-3); /* get pmd offset in bytes */ |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 857 | uasm_i_andi(p, tmp, tmp, (PTRS_PER_PMD - 1)<<3); |
| 858 | uasm_i_daddu(p, ptr, ptr, tmp); /* add in pmd offset */ |
David Daney | 325f8a0 | 2009-12-04 13:52:36 -0800 | [diff] [blame] | 859 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | } |
| 861 | |
| 862 | /* |
| 863 | * BVADDR is the faulting address, PTR is scratch. |
| 864 | * PTR will hold the pgd for vmalloc. |
| 865 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 866 | static void |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 867 | build_get_pgd_vmalloc64(u32 **p, struct uasm_label **l, struct uasm_reloc **r, |
David Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 868 | unsigned int bvaddr, unsigned int ptr, |
| 869 | enum vmalloc64_mode mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | { |
| 871 | long swpd = (long)swapper_pg_dir; |
David Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 872 | int single_insn_swpd; |
| 873 | int did_vmalloc_branch = 0; |
| 874 | |
| 875 | single_insn_swpd = uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 877 | uasm_l_vmalloc(l, *p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 879 | if (mode != not_refill && check_for_high_segbits) { |
David Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 880 | if (single_insn_swpd) { |
| 881 | uasm_il_bltz(p, r, bvaddr, label_vmalloc_done); |
| 882 | uasm_i_lui(p, ptr, uasm_rel_hi(swpd)); |
| 883 | did_vmalloc_branch = 1; |
| 884 | /* fall through */ |
| 885 | } else { |
| 886 | uasm_il_bgez(p, r, bvaddr, label_large_segbits_fault); |
| 887 | } |
| 888 | } |
| 889 | if (!did_vmalloc_branch) { |
| 890 | if (uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd)) { |
| 891 | uasm_il_b(p, r, label_vmalloc_done); |
| 892 | uasm_i_lui(p, ptr, uasm_rel_hi(swpd)); |
| 893 | } else { |
| 894 | UASM_i_LA_mostly(p, ptr, swpd); |
| 895 | uasm_il_b(p, r, label_vmalloc_done); |
| 896 | if (uasm_in_compat_space_p(swpd)) |
| 897 | uasm_i_addiu(p, ptr, ptr, uasm_rel_lo(swpd)); |
| 898 | else |
| 899 | uasm_i_daddiu(p, ptr, ptr, uasm_rel_lo(swpd)); |
| 900 | } |
| 901 | } |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 902 | if (mode != not_refill && check_for_high_segbits) { |
David Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 903 | uasm_l_large_segbits_fault(l, *p); |
| 904 | /* |
| 905 | * We get here if we are an xsseg address, or if we are |
| 906 | * an xuseg address above (PGDIR_SHIFT+PGDIR_BITS) boundary. |
| 907 | * |
| 908 | * Ignoring xsseg (assume disabled so would generate |
| 909 | * (address errors?), the only remaining possibility |
| 910 | * is the upper xuseg addresses. On processors with |
| 911 | * TLB_SEGBITS <= PGDIR_SHIFT+PGDIR_BITS, these |
| 912 | * addresses would have taken an address error. We try |
| 913 | * to mimic that here by taking a load/istream page |
| 914 | * fault. |
| 915 | */ |
| 916 | UASM_i_LA(p, ptr, (unsigned long)tlb_do_page_fault_0); |
| 917 | uasm_i_jr(p, ptr); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 918 | |
| 919 | if (mode == refill_scratch) { |
Jayachandran C | 0e6ecc1 | 2013-06-11 14:41:36 +0000 | [diff] [blame] | 920 | if (scratch_reg >= 0) |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 921 | UASM_i_MFC0(p, 1, c0_kscratch(), scratch_reg); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 922 | else |
| 923 | UASM_i_LW(p, 1, scratchpad_offset(0), 0); |
| 924 | } else { |
| 925 | uasm_i_nop(p); |
| 926 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | } |
| 928 | } |
| 929 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 930 | #else /* !CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
| 932 | /* |
| 933 | * TMP and PTR are scratch. |
| 934 | * TMP will be clobbered, PTR will hold the pgd entry. |
| 935 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 936 | static void __maybe_unused |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr) |
| 938 | { |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 939 | if (pgd_reg != -1) { |
| 940 | /* pgd is in pgd_reg */ |
| 941 | uasm_i_mfc0(p, ptr, c0_kscratch(), pgd_reg); |
| 942 | uasm_i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */ |
| 943 | } else { |
| 944 | long pgdc = (long)pgd_current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 946 | /* 32 bit SMP has smp_processor_id() stored in CONTEXT. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | #ifdef CONFIG_SMP |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 948 | uasm_i_mfc0(p, ptr, SMP_CPUID_REG); |
| 949 | UASM_i_LA_mostly(p, tmp, pgdc); |
| 950 | uasm_i_srl(p, ptr, ptr, SMP_CPUID_PTRSHIFT); |
| 951 | uasm_i_addu(p, ptr, tmp, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | #else |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 953 | UASM_i_LA_mostly(p, ptr, pgdc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | #endif |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 955 | uasm_i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */ |
| 956 | uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr); |
| 957 | } |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 958 | uasm_i_srl(p, tmp, tmp, PGDIR_SHIFT); /* get pgd only bits */ |
| 959 | uasm_i_sll(p, tmp, tmp, PGD_T_LOG2); |
| 960 | uasm_i_addu(p, ptr, ptr, tmp); /* add in pgd offset */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | } |
| 962 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 963 | #endif /* !CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 965 | static void build_adjust_context(u32 **p, unsigned int ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | { |
Ralf Baechle | 242954b | 2006-10-24 02:29:01 +0100 | [diff] [blame] | 967 | unsigned int shift = 4 - (PTE_T_LOG2 + 1) + PAGE_SHIFT - 12; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | unsigned int mask = (PTRS_PER_PTE / 2 - 1) << (PTE_T_LOG2 + 1); |
| 969 | |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 970 | switch (current_cpu_type()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | case CPU_VR41XX: |
| 972 | case CPU_VR4111: |
| 973 | case CPU_VR4121: |
| 974 | case CPU_VR4122: |
| 975 | case CPU_VR4131: |
| 976 | case CPU_VR4181: |
| 977 | case CPU_VR4181A: |
| 978 | case CPU_VR4133: |
| 979 | shift += 2; |
| 980 | break; |
| 981 | |
| 982 | default: |
| 983 | break; |
| 984 | } |
| 985 | |
| 986 | if (shift) |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 987 | UASM_i_SRL(p, ctx, ctx, shift); |
| 988 | uasm_i_andi(p, ctx, ctx, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | } |
| 990 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 991 | static void build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | { |
| 993 | /* |
| 994 | * Bug workaround for the Nevada. It seems as if under certain |
| 995 | * circumstances the move from cp0_context might produce a |
| 996 | * bogus result when the mfc0 instruction and its consumer are |
| 997 | * in a different cacheline or a load instruction, probably any |
| 998 | * memory reference, is between them. |
| 999 | */ |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 1000 | switch (current_cpu_type()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | case CPU_NEVADA: |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1002 | UASM_i_LW(p, ptr, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | GET_CONTEXT(p, tmp); /* get context reg */ |
| 1004 | break; |
| 1005 | |
| 1006 | default: |
| 1007 | GET_CONTEXT(p, tmp); /* get context reg */ |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1008 | UASM_i_LW(p, ptr, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | break; |
| 1010 | } |
| 1011 | |
| 1012 | build_adjust_context(p, tmp); |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1013 | UASM_i_ADDU(p, ptr, ptr, tmp); /* add in offset */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | } |
| 1015 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1016 | static void build_update_entries(u32 **p, unsigned int tmp, unsigned int ptep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | { |
| 1018 | /* |
| 1019 | * 64bit address support (36bit on a 32bit CPU) in a 32bit |
| 1020 | * Kernel is a special case. Only a few CPUs use it. |
| 1021 | */ |
Paul Burton | c676589 | 2015-09-22 11:42:50 -0700 | [diff] [blame] | 1022 | if (config_enabled(CONFIG_PHYS_ADDR_T_64BIT) && !cpu_has_64bits) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | int pte_off_even = sizeof(pte_t) / 2; |
| 1024 | int pte_off_odd = pte_off_even + sizeof(pte_t); |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 1025 | #ifdef CONFIG_XPA |
| 1026 | const int scratch = 1; /* Our extra working register */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 1028 | uasm_i_addu(p, scratch, 0, ptep); |
| 1029 | #endif |
| 1030 | uasm_i_lw(p, tmp, pte_off_even, ptep); /* even pte */ |
| 1031 | uasm_i_lw(p, ptep, pte_off_odd, ptep); /* odd pte */ |
| 1032 | UASM_i_ROTR(p, tmp, tmp, ilog2(_PAGE_GLOBAL)); |
| 1033 | UASM_i_ROTR(p, ptep, ptep, ilog2(_PAGE_GLOBAL)); |
| 1034 | UASM_i_MTC0(p, tmp, C0_ENTRYLO0); |
| 1035 | UASM_i_MTC0(p, ptep, C0_ENTRYLO1); |
| 1036 | #ifdef CONFIG_XPA |
| 1037 | uasm_i_lw(p, tmp, 0, scratch); |
| 1038 | uasm_i_lw(p, ptep, sizeof(pte_t), scratch); |
| 1039 | uasm_i_lui(p, scratch, 0xff); |
| 1040 | uasm_i_ori(p, scratch, scratch, 0xffff); |
| 1041 | uasm_i_and(p, tmp, scratch, tmp); |
| 1042 | uasm_i_and(p, ptep, scratch, ptep); |
| 1043 | uasm_i_mthc0(p, tmp, C0_ENTRYLO0); |
| 1044 | uasm_i_mthc0(p, ptep, C0_ENTRYLO1); |
| 1045 | #endif |
Paul Burton | c676589 | 2015-09-22 11:42:50 -0700 | [diff] [blame] | 1046 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | } |
Paul Burton | c676589 | 2015-09-22 11:42:50 -0700 | [diff] [blame] | 1048 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1049 | UASM_i_LW(p, tmp, 0, ptep); /* get even pte */ |
| 1050 | UASM_i_LW(p, ptep, sizeof(pte_t), ptep); /* get odd pte */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | if (r45k_bvahwbug()) |
| 1052 | build_tlb_probe_entry(p); |
Paul Burton | 974a0b6 | 2015-09-22 11:42:49 -0700 | [diff] [blame] | 1053 | build_convert_pte_to_entrylo(p, tmp); |
| 1054 | if (r4k_250MHZhwbug()) |
| 1055 | UASM_i_MTC0(p, 0, C0_ENTRYLO0); |
| 1056 | UASM_i_MTC0(p, tmp, C0_ENTRYLO0); /* load it */ |
| 1057 | build_convert_pte_to_entrylo(p, ptep); |
| 1058 | if (r45k_bvahwbug()) |
| 1059 | uasm_i_mfc0(p, tmp, C0_INDEX); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | if (r4k_250MHZhwbug()) |
David Daney | 9b8c389 | 2010-02-10 15:12:44 -0800 | [diff] [blame] | 1061 | UASM_i_MTC0(p, 0, C0_ENTRYLO1); |
| 1062 | UASM_i_MTC0(p, ptep, C0_ENTRYLO1); /* load it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | } |
| 1064 | |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1065 | struct mips_huge_tlb_info { |
| 1066 | int huge_pte; |
| 1067 | int restore_scratch; |
David Daney | 9e0f162 | 2014-10-20 15:34:23 -0700 | [diff] [blame] | 1068 | bool need_reload_pte; |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1069 | }; |
| 1070 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1071 | static struct mips_huge_tlb_info |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1072 | build_fast_tlb_refill_handler (u32 **p, struct uasm_label **l, |
| 1073 | struct uasm_reloc **r, unsigned int tmp, |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 1074 | unsigned int ptr, int c0_scratch_reg) |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1075 | { |
| 1076 | struct mips_huge_tlb_info rv; |
| 1077 | unsigned int even, odd; |
| 1078 | int vmalloc_branch_delay_filled = 0; |
| 1079 | const int scratch = 1; /* Our extra working register */ |
| 1080 | |
| 1081 | rv.huge_pte = scratch; |
| 1082 | rv.restore_scratch = 0; |
David Daney | 9e0f162 | 2014-10-20 15:34:23 -0700 | [diff] [blame] | 1083 | rv.need_reload_pte = false; |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1084 | |
| 1085 | if (check_for_high_segbits) { |
| 1086 | UASM_i_MFC0(p, tmp, C0_BADVADDR); |
| 1087 | |
| 1088 | if (pgd_reg != -1) |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 1089 | UASM_i_MFC0(p, ptr, c0_kscratch(), pgd_reg); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1090 | else |
| 1091 | UASM_i_MFC0(p, ptr, C0_CONTEXT); |
| 1092 | |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 1093 | if (c0_scratch_reg >= 0) |
| 1094 | UASM_i_MTC0(p, scratch, c0_kscratch(), c0_scratch_reg); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1095 | else |
| 1096 | UASM_i_SW(p, scratch, scratchpad_offset(0), 0); |
| 1097 | |
| 1098 | uasm_i_dsrl_safe(p, scratch, tmp, |
| 1099 | PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3); |
| 1100 | uasm_il_bnez(p, r, scratch, label_vmalloc); |
| 1101 | |
| 1102 | if (pgd_reg == -1) { |
| 1103 | vmalloc_branch_delay_filled = 1; |
| 1104 | /* Clear lower 23 bits of context. */ |
| 1105 | uasm_i_dins(p, ptr, 0, 0, 23); |
| 1106 | } |
| 1107 | } else { |
| 1108 | if (pgd_reg != -1) |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 1109 | UASM_i_MFC0(p, ptr, c0_kscratch(), pgd_reg); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1110 | else |
| 1111 | UASM_i_MFC0(p, ptr, C0_CONTEXT); |
| 1112 | |
| 1113 | UASM_i_MFC0(p, tmp, C0_BADVADDR); |
| 1114 | |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 1115 | if (c0_scratch_reg >= 0) |
| 1116 | UASM_i_MTC0(p, scratch, c0_kscratch(), c0_scratch_reg); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1117 | else |
| 1118 | UASM_i_SW(p, scratch, scratchpad_offset(0), 0); |
| 1119 | |
| 1120 | if (pgd_reg == -1) |
| 1121 | /* Clear lower 23 bits of context. */ |
| 1122 | uasm_i_dins(p, ptr, 0, 0, 23); |
| 1123 | |
| 1124 | uasm_il_bltz(p, r, tmp, label_vmalloc); |
| 1125 | } |
| 1126 | |
| 1127 | if (pgd_reg == -1) { |
| 1128 | vmalloc_branch_delay_filled = 1; |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 1129 | /* 1 0 1 0 1 << 6 xkphys cached */ |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1130 | uasm_i_ori(p, ptr, ptr, 0x540); |
| 1131 | uasm_i_drotr(p, ptr, ptr, 11); |
| 1132 | } |
| 1133 | |
| 1134 | #ifdef __PAGETABLE_PMD_FOLDED |
| 1135 | #define LOC_PTEP scratch |
| 1136 | #else |
| 1137 | #define LOC_PTEP ptr |
| 1138 | #endif |
| 1139 | |
| 1140 | if (!vmalloc_branch_delay_filled) |
| 1141 | /* get pgd offset in bytes */ |
| 1142 | uasm_i_dsrl_safe(p, scratch, tmp, PGDIR_SHIFT - 3); |
| 1143 | |
| 1144 | uasm_l_vmalloc_done(l, *p); |
| 1145 | |
| 1146 | /* |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 1147 | * tmp ptr |
| 1148 | * fall-through case = badvaddr *pgd_current |
| 1149 | * vmalloc case = badvaddr swapper_pg_dir |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1150 | */ |
| 1151 | |
| 1152 | if (vmalloc_branch_delay_filled) |
| 1153 | /* get pgd offset in bytes */ |
| 1154 | uasm_i_dsrl_safe(p, scratch, tmp, PGDIR_SHIFT - 3); |
| 1155 | |
| 1156 | #ifdef __PAGETABLE_PMD_FOLDED |
| 1157 | GET_CONTEXT(p, tmp); /* get context reg */ |
| 1158 | #endif |
| 1159 | uasm_i_andi(p, scratch, scratch, (PTRS_PER_PGD - 1) << 3); |
| 1160 | |
| 1161 | if (use_lwx_insns()) { |
| 1162 | UASM_i_LWX(p, LOC_PTEP, scratch, ptr); |
| 1163 | } else { |
| 1164 | uasm_i_daddu(p, ptr, ptr, scratch); /* add in pgd offset */ |
| 1165 | uasm_i_ld(p, LOC_PTEP, 0, ptr); /* get pmd pointer */ |
| 1166 | } |
| 1167 | |
| 1168 | #ifndef __PAGETABLE_PMD_FOLDED |
| 1169 | /* get pmd offset in bytes */ |
| 1170 | uasm_i_dsrl_safe(p, scratch, tmp, PMD_SHIFT - 3); |
| 1171 | uasm_i_andi(p, scratch, scratch, (PTRS_PER_PMD - 1) << 3); |
| 1172 | GET_CONTEXT(p, tmp); /* get context reg */ |
| 1173 | |
| 1174 | if (use_lwx_insns()) { |
| 1175 | UASM_i_LWX(p, scratch, scratch, ptr); |
| 1176 | } else { |
| 1177 | uasm_i_daddu(p, ptr, ptr, scratch); /* add in pmd offset */ |
| 1178 | UASM_i_LW(p, scratch, 0, ptr); |
| 1179 | } |
| 1180 | #endif |
| 1181 | /* Adjust the context during the load latency. */ |
| 1182 | build_adjust_context(p, tmp); |
| 1183 | |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 1184 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1185 | uasm_il_bbit1(p, r, scratch, ilog2(_PAGE_HUGE), label_tlb_huge_update); |
| 1186 | /* |
| 1187 | * The in the LWX case we don't want to do the load in the |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 1188 | * delay slot. It cannot issue in the same cycle and may be |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1189 | * speculative and unneeded. |
| 1190 | */ |
| 1191 | if (use_lwx_insns()) |
| 1192 | uasm_i_nop(p); |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 1193 | #endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */ |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1194 | |
| 1195 | |
| 1196 | /* build_update_entries */ |
| 1197 | if (use_lwx_insns()) { |
| 1198 | even = ptr; |
| 1199 | odd = tmp; |
| 1200 | UASM_i_LWX(p, even, scratch, tmp); |
| 1201 | UASM_i_ADDIU(p, tmp, tmp, sizeof(pte_t)); |
| 1202 | UASM_i_LWX(p, odd, scratch, tmp); |
| 1203 | } else { |
| 1204 | UASM_i_ADDU(p, ptr, scratch, tmp); /* add in offset */ |
| 1205 | even = tmp; |
| 1206 | odd = ptr; |
| 1207 | UASM_i_LW(p, even, 0, ptr); /* get even pte */ |
| 1208 | UASM_i_LW(p, odd, sizeof(pte_t), ptr); /* get odd pte */ |
| 1209 | } |
Steven J. Hill | 05857c6 | 2012-09-13 16:51:46 -0500 | [diff] [blame] | 1210 | if (cpu_has_rixi) { |
David Daney | 748e787 | 2012-08-23 10:02:03 -0700 | [diff] [blame] | 1211 | uasm_i_drotr(p, even, even, ilog2(_PAGE_GLOBAL)); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1212 | UASM_i_MTC0(p, even, C0_ENTRYLO0); /* load it */ |
David Daney | 748e787 | 2012-08-23 10:02:03 -0700 | [diff] [blame] | 1213 | uasm_i_drotr(p, odd, odd, ilog2(_PAGE_GLOBAL)); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1214 | } else { |
| 1215 | uasm_i_dsrl_safe(p, even, even, ilog2(_PAGE_GLOBAL)); |
| 1216 | UASM_i_MTC0(p, even, C0_ENTRYLO0); /* load it */ |
| 1217 | uasm_i_dsrl_safe(p, odd, odd, ilog2(_PAGE_GLOBAL)); |
| 1218 | } |
| 1219 | UASM_i_MTC0(p, odd, C0_ENTRYLO1); /* load it */ |
| 1220 | |
Jayachandran C | 7777b93 | 2013-06-11 14:41:35 +0000 | [diff] [blame] | 1221 | if (c0_scratch_reg >= 0) { |
| 1222 | UASM_i_MFC0(p, scratch, c0_kscratch(), c0_scratch_reg); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1223 | build_tlb_write_entry(p, l, r, tlb_random); |
| 1224 | uasm_l_leave(l, *p); |
| 1225 | rv.restore_scratch = 1; |
| 1226 | } else if (PAGE_SHIFT == 14 || PAGE_SHIFT == 13) { |
| 1227 | build_tlb_write_entry(p, l, r, tlb_random); |
| 1228 | uasm_l_leave(l, *p); |
| 1229 | UASM_i_LW(p, scratch, scratchpad_offset(0), 0); |
| 1230 | } else { |
| 1231 | UASM_i_LW(p, scratch, scratchpad_offset(0), 0); |
| 1232 | build_tlb_write_entry(p, l, r, tlb_random); |
| 1233 | uasm_l_leave(l, *p); |
| 1234 | rv.restore_scratch = 1; |
| 1235 | } |
| 1236 | |
| 1237 | uasm_i_eret(p); /* return from trap */ |
| 1238 | |
| 1239 | return rv; |
| 1240 | } |
| 1241 | |
David Daney | e6f72d3 | 2009-05-20 11:40:58 -0700 | [diff] [blame] | 1242 | /* |
| 1243 | * For a 64-bit kernel, we are using the 64-bit XTLB refill exception |
| 1244 | * because EXL == 0. If we wrap, we can also use the 32 instruction |
| 1245 | * slots before the XTLB refill exception handler which belong to the |
| 1246 | * unused TLB refill exception. |
| 1247 | */ |
| 1248 | #define MIPS64_REFILL_INSNS 32 |
| 1249 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1250 | static void build_r4000_tlb_refill_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | { |
| 1252 | u32 *p = tlb_handler; |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1253 | struct uasm_label *l = labels; |
| 1254 | struct uasm_reloc *r = relocs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | u32 *f; |
| 1256 | unsigned int final_len; |
Ralf Baechle | 4a9040f | 2011-03-29 10:54:54 +0200 | [diff] [blame] | 1257 | struct mips_huge_tlb_info htlb_info __maybe_unused; |
| 1258 | enum vmalloc64_mode vmalloc_mode __maybe_unused; |
David Daney | 18280eda | 2014-05-28 23:52:13 +0200 | [diff] [blame] | 1259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | memset(tlb_handler, 0, sizeof(tlb_handler)); |
| 1261 | memset(labels, 0, sizeof(labels)); |
| 1262 | memset(relocs, 0, sizeof(relocs)); |
| 1263 | memset(final_handler, 0, sizeof(final_handler)); |
| 1264 | |
David Daney | 18280eda | 2014-05-28 23:52:13 +0200 | [diff] [blame] | 1265 | if (IS_ENABLED(CONFIG_64BIT) && (scratch_reg >= 0 || scratchpad_available()) && use_bbit_insns()) { |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1266 | htlb_info = build_fast_tlb_refill_handler(&p, &l, &r, K0, K1, |
| 1267 | scratch_reg); |
| 1268 | vmalloc_mode = refill_scratch; |
| 1269 | } else { |
| 1270 | htlb_info.huge_pte = K0; |
| 1271 | htlb_info.restore_scratch = 0; |
David Daney | 9e0f162 | 2014-10-20 15:34:23 -0700 | [diff] [blame] | 1272 | htlb_info.need_reload_pte = true; |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1273 | vmalloc_mode = refill_noscratch; |
| 1274 | /* |
| 1275 | * create the plain linear handler |
| 1276 | */ |
| 1277 | if (bcm1250_m3_war()) { |
| 1278 | unsigned int segbits = 44; |
| 1279 | |
| 1280 | uasm_i_dmfc0(&p, K0, C0_BADVADDR); |
| 1281 | uasm_i_dmfc0(&p, K1, C0_ENTRYHI); |
| 1282 | uasm_i_xor(&p, K0, K0, K1); |
| 1283 | uasm_i_dsrl_safe(&p, K1, K0, 62); |
| 1284 | uasm_i_dsrl_safe(&p, K0, K0, 12 + 1); |
| 1285 | uasm_i_dsll_safe(&p, K0, K0, 64 + 12 + 1 - segbits); |
| 1286 | uasm_i_or(&p, K0, K0, K1); |
| 1287 | uasm_il_bnez(&p, &r, K0, label_leave); |
| 1288 | /* No need for uasm_i_nop */ |
| 1289 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1291 | #ifdef CONFIG_64BIT |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1292 | build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | #else |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1294 | build_get_pgde32(&p, K0, K1); /* get pgd in K1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | #endif |
| 1296 | |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 1297 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1298 | build_is_huge_pte(&p, &r, K0, K1, label_tlb_huge_update); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 1299 | #endif |
| 1300 | |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1301 | build_get_ptep(&p, K0, K1); |
| 1302 | build_update_entries(&p, K0, K1); |
| 1303 | build_tlb_write_entry(&p, &l, &r, tlb_random); |
| 1304 | uasm_l_leave(&l, p); |
| 1305 | uasm_i_eret(&p); /* return from trap */ |
| 1306 | } |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 1307 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 1308 | uasm_l_tlb_huge_update(&l, p); |
David Daney | 9e0f162 | 2014-10-20 15:34:23 -0700 | [diff] [blame] | 1309 | if (htlb_info.need_reload_pte) |
| 1310 | UASM_i_LW(&p, htlb_info.huge_pte, 0, K1); |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1311 | build_huge_update_entries(&p, htlb_info.huge_pte, K1); |
| 1312 | build_huge_tlb_write_entry(&p, &l, &r, K0, tlb_random, |
| 1313 | htlb_info.restore_scratch); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 1314 | #endif |
| 1315 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1316 | #ifdef CONFIG_64BIT |
David Daney | 2c8c53e | 2010-12-27 18:07:57 -0800 | [diff] [blame] | 1317 | build_get_pgd_vmalloc64(&p, &l, &r, K0, K1, vmalloc_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | #endif |
| 1319 | |
| 1320 | /* |
| 1321 | * Overflow check: For the 64bit handler, we need at least one |
| 1322 | * free instruction slot for the wrap-around branch. In worst |
| 1323 | * case, if the intended insertion point is a delay slot, we |
Matt LaPlante | 4b3f686 | 2006-10-03 22:21:02 +0200 | [diff] [blame] | 1324 | * need three, with the second nop'ed and the third being |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | * unused. |
| 1326 | */ |
Ralf Baechle | 14bd8c0 | 2013-09-25 18:21:26 +0200 | [diff] [blame] | 1327 | switch (boot_cpu_type()) { |
| 1328 | default: |
| 1329 | if (sizeof(long) == 4) { |
| 1330 | case CPU_LOONGSON2: |
| 1331 | /* Loongson2 ebase is different than r4k, we have more space */ |
| 1332 | if ((p - tlb_handler) > 64) |
| 1333 | panic("TLB refill handler space exceeded"); |
| 1334 | /* |
| 1335 | * Now fold the handler in the TLB refill handler space. |
| 1336 | */ |
| 1337 | f = final_handler; |
| 1338 | /* Simplest case, just copy the handler. */ |
| 1339 | uasm_copy_handler(relocs, labels, tlb_handler, p, f); |
| 1340 | final_len = p - tlb_handler; |
| 1341 | break; |
| 1342 | } else { |
| 1343 | if (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 1) |
| 1344 | || (((p - tlb_handler) > (MIPS64_REFILL_INSNS * 2) - 3) |
| 1345 | && uasm_insn_has_bdelay(relocs, |
| 1346 | tlb_handler + MIPS64_REFILL_INSNS - 3))) |
| 1347 | panic("TLB refill handler space exceeded"); |
| 1348 | /* |
| 1349 | * Now fold the handler in the TLB refill handler space. |
| 1350 | */ |
| 1351 | f = final_handler + MIPS64_REFILL_INSNS; |
| 1352 | if ((p - tlb_handler) <= MIPS64_REFILL_INSNS) { |
| 1353 | /* Just copy the handler. */ |
| 1354 | uasm_copy_handler(relocs, labels, tlb_handler, p, f); |
| 1355 | final_len = p - tlb_handler; |
| 1356 | } else { |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 1357 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
Ralf Baechle | 14bd8c0 | 2013-09-25 18:21:26 +0200 | [diff] [blame] | 1358 | const enum label_id ls = label_tlb_huge_update; |
David Daney | 95affdd | 2009-05-20 11:40:59 -0700 | [diff] [blame] | 1359 | #else |
Ralf Baechle | 14bd8c0 | 2013-09-25 18:21:26 +0200 | [diff] [blame] | 1360 | const enum label_id ls = label_vmalloc; |
David Daney | 95affdd | 2009-05-20 11:40:59 -0700 | [diff] [blame] | 1361 | #endif |
Ralf Baechle | 14bd8c0 | 2013-09-25 18:21:26 +0200 | [diff] [blame] | 1362 | u32 *split; |
| 1363 | int ov = 0; |
| 1364 | int i; |
David Daney | 95affdd | 2009-05-20 11:40:59 -0700 | [diff] [blame] | 1365 | |
Ralf Baechle | 14bd8c0 | 2013-09-25 18:21:26 +0200 | [diff] [blame] | 1366 | for (i = 0; i < ARRAY_SIZE(labels) && labels[i].lab != ls; i++) |
| 1367 | ; |
| 1368 | BUG_ON(i == ARRAY_SIZE(labels)); |
| 1369 | split = labels[i].addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | |
Ralf Baechle | 14bd8c0 | 2013-09-25 18:21:26 +0200 | [diff] [blame] | 1371 | /* |
| 1372 | * See if we have overflown one way or the other. |
| 1373 | */ |
| 1374 | if (split > tlb_handler + MIPS64_REFILL_INSNS || |
| 1375 | split < p - MIPS64_REFILL_INSNS) |
| 1376 | ov = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | |
Ralf Baechle | 14bd8c0 | 2013-09-25 18:21:26 +0200 | [diff] [blame] | 1378 | if (ov) { |
| 1379 | /* |
| 1380 | * Split two instructions before the end. One |
| 1381 | * for the branch and one for the instruction |
| 1382 | * in the delay slot. |
| 1383 | */ |
| 1384 | split = tlb_handler + MIPS64_REFILL_INSNS - 2; |
David Daney | 95affdd | 2009-05-20 11:40:59 -0700 | [diff] [blame] | 1385 | |
Ralf Baechle | 14bd8c0 | 2013-09-25 18:21:26 +0200 | [diff] [blame] | 1386 | /* |
| 1387 | * If the branch would fall in a delay slot, |
| 1388 | * we must back up an additional instruction |
| 1389 | * so that it is no longer in a delay slot. |
| 1390 | */ |
| 1391 | if (uasm_insn_has_bdelay(relocs, split - 1)) |
| 1392 | split--; |
| 1393 | } |
| 1394 | /* Copy first part of the handler. */ |
| 1395 | uasm_copy_handler(relocs, labels, tlb_handler, split, f); |
| 1396 | f += split - tlb_handler; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | |
Ralf Baechle | 14bd8c0 | 2013-09-25 18:21:26 +0200 | [diff] [blame] | 1398 | if (ov) { |
| 1399 | /* Insert branch. */ |
| 1400 | uasm_l_split(&l, final_handler); |
| 1401 | uasm_il_b(&f, &r, label_split); |
| 1402 | if (uasm_insn_has_bdelay(relocs, split)) |
| 1403 | uasm_i_nop(&f); |
| 1404 | else { |
| 1405 | uasm_copy_handler(relocs, labels, |
| 1406 | split, split + 1, f); |
| 1407 | uasm_move_labels(labels, f, f + 1, -1); |
| 1408 | f++; |
| 1409 | split++; |
| 1410 | } |
| 1411 | } |
| 1412 | |
| 1413 | /* Copy the rest of the handler. */ |
| 1414 | uasm_copy_handler(relocs, labels, split, p, final_handler); |
| 1415 | final_len = (f - (final_handler + MIPS64_REFILL_INSNS)) + |
| 1416 | (p - split); |
David Daney | 95affdd | 2009-05-20 11:40:59 -0700 | [diff] [blame] | 1417 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | } |
Ralf Baechle | 14bd8c0 | 2013-09-25 18:21:26 +0200 | [diff] [blame] | 1419 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1422 | uasm_resolve_relocs(relocs, labels); |
| 1423 | pr_debug("Wrote TLB refill handler (%u instructions).\n", |
| 1424 | final_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | |
Ralf Baechle | 91b05e6 | 2006-03-29 18:53:00 +0100 | [diff] [blame] | 1426 | memcpy((void *)ebase, final_handler, 0x100); |
Leonid Yegoshin | 1062080 | 2014-07-11 15:18:05 -0700 | [diff] [blame] | 1427 | local_flush_icache_range(ebase, ebase + 0x100); |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame] | 1428 | |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 1429 | dump_handler("r4000_tlb_refill", (u32 *)ebase, 64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | } |
| 1431 | |
Huacai Chen | 380cd58 | 2016-03-03 09:45:12 +0800 | [diff] [blame] | 1432 | static void setup_pw(void) |
| 1433 | { |
| 1434 | unsigned long pgd_i, pgd_w; |
| 1435 | #ifndef __PAGETABLE_PMD_FOLDED |
| 1436 | unsigned long pmd_i, pmd_w; |
| 1437 | #endif |
| 1438 | unsigned long pt_i, pt_w; |
| 1439 | unsigned long pte_i, pte_w; |
| 1440 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
| 1441 | unsigned long psn; |
| 1442 | |
| 1443 | psn = ilog2(_PAGE_HUGE); /* bit used to indicate huge page */ |
| 1444 | #endif |
| 1445 | pgd_i = PGDIR_SHIFT; /* 1st level PGD */ |
| 1446 | #ifndef __PAGETABLE_PMD_FOLDED |
| 1447 | pgd_w = PGDIR_SHIFT - PMD_SHIFT + PGD_ORDER; |
| 1448 | |
| 1449 | pmd_i = PMD_SHIFT; /* 2nd level PMD */ |
| 1450 | pmd_w = PMD_SHIFT - PAGE_SHIFT; |
| 1451 | #else |
| 1452 | pgd_w = PGDIR_SHIFT - PAGE_SHIFT + PGD_ORDER; |
| 1453 | #endif |
| 1454 | |
| 1455 | pt_i = PAGE_SHIFT; /* 3rd level PTE */ |
| 1456 | pt_w = PAGE_SHIFT - 3; |
| 1457 | |
| 1458 | pte_i = ilog2(_PAGE_GLOBAL); |
| 1459 | pte_w = 0; |
| 1460 | |
| 1461 | #ifndef __PAGETABLE_PMD_FOLDED |
| 1462 | write_c0_pwfield(pgd_i << 24 | pmd_i << 12 | pt_i << 6 | pte_i); |
| 1463 | write_c0_pwsize(1 << 30 | pgd_w << 24 | pmd_w << 12 | pt_w << 6 | pte_w); |
| 1464 | #else |
| 1465 | write_c0_pwfield(pgd_i << 24 | pt_i << 6 | pte_i); |
| 1466 | write_c0_pwsize(1 << 30 | pgd_w << 24 | pt_w << 6 | pte_w); |
| 1467 | #endif |
| 1468 | |
| 1469 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
| 1470 | write_c0_pwctl(1 << 6 | psn); |
| 1471 | #endif |
| 1472 | write_c0_kpgd(swapper_pg_dir); |
| 1473 | kscratch_used_mask |= (1 << 7); /* KScratch6 is used for KPGD */ |
| 1474 | } |
| 1475 | |
| 1476 | static void build_loongson3_tlb_refill_handler(void) |
| 1477 | { |
| 1478 | u32 *p = tlb_handler; |
| 1479 | struct uasm_label *l = labels; |
| 1480 | struct uasm_reloc *r = relocs; |
| 1481 | |
| 1482 | memset(labels, 0, sizeof(labels)); |
| 1483 | memset(relocs, 0, sizeof(relocs)); |
| 1484 | memset(tlb_handler, 0, sizeof(tlb_handler)); |
| 1485 | |
| 1486 | if (check_for_high_segbits) { |
| 1487 | uasm_i_dmfc0(&p, K0, C0_BADVADDR); |
| 1488 | uasm_i_dsrl_safe(&p, K1, K0, PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3); |
| 1489 | uasm_il_beqz(&p, &r, K1, label_vmalloc); |
| 1490 | uasm_i_nop(&p); |
| 1491 | |
| 1492 | uasm_il_bgez(&p, &r, K0, label_large_segbits_fault); |
| 1493 | uasm_i_nop(&p); |
| 1494 | uasm_l_vmalloc(&l, p); |
| 1495 | } |
| 1496 | |
| 1497 | uasm_i_dmfc0(&p, K1, C0_PGD); |
| 1498 | |
| 1499 | uasm_i_lddir(&p, K0, K1, 3); /* global page dir */ |
| 1500 | #ifndef __PAGETABLE_PMD_FOLDED |
| 1501 | uasm_i_lddir(&p, K1, K0, 1); /* middle page dir */ |
| 1502 | #endif |
| 1503 | uasm_i_ldpte(&p, K1, 0); /* even */ |
| 1504 | uasm_i_ldpte(&p, K1, 1); /* odd */ |
| 1505 | uasm_i_tlbwr(&p); |
| 1506 | |
| 1507 | /* restore page mask */ |
| 1508 | if (PM_DEFAULT_MASK >> 16) { |
| 1509 | uasm_i_lui(&p, K0, PM_DEFAULT_MASK >> 16); |
| 1510 | uasm_i_ori(&p, K0, K0, PM_DEFAULT_MASK & 0xffff); |
| 1511 | uasm_i_mtc0(&p, K0, C0_PAGEMASK); |
| 1512 | } else if (PM_DEFAULT_MASK) { |
| 1513 | uasm_i_ori(&p, K0, 0, PM_DEFAULT_MASK); |
| 1514 | uasm_i_mtc0(&p, K0, C0_PAGEMASK); |
| 1515 | } else { |
| 1516 | uasm_i_mtc0(&p, 0, C0_PAGEMASK); |
| 1517 | } |
| 1518 | |
| 1519 | uasm_i_eret(&p); |
| 1520 | |
| 1521 | if (check_for_high_segbits) { |
| 1522 | uasm_l_large_segbits_fault(&l, p); |
| 1523 | UASM_i_LA(&p, K1, (unsigned long)tlb_do_page_fault_0); |
| 1524 | uasm_i_jr(&p, K1); |
| 1525 | uasm_i_nop(&p); |
| 1526 | } |
| 1527 | |
| 1528 | uasm_resolve_relocs(relocs, labels); |
| 1529 | memcpy((void *)(ebase + 0x80), tlb_handler, 0x80); |
| 1530 | local_flush_icache_range(ebase + 0x80, ebase + 0x100); |
| 1531 | dump_handler("loongson3_tlb_refill", (u32 *)(ebase + 0x80), 32); |
| 1532 | } |
| 1533 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1534 | extern u32 handle_tlbl[], handle_tlbl_end[]; |
| 1535 | extern u32 handle_tlbs[], handle_tlbs_end[]; |
| 1536 | extern u32 handle_tlbm[], handle_tlbm_end[]; |
Steven J. Hill | 7bb3940 | 2014-04-10 14:06:17 -0500 | [diff] [blame] | 1537 | extern u32 tlbmiss_handler_setup_pgd_start[], tlbmiss_handler_setup_pgd[]; |
| 1538 | extern u32 tlbmiss_handler_setup_pgd_end[]; |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1539 | |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 1540 | static void build_setup_pgd(void) |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1541 | { |
| 1542 | const int a0 = 4; |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 1543 | const int __maybe_unused a1 = 5; |
| 1544 | const int __maybe_unused a2 = 6; |
Steven J. Hill | 7bb3940 | 2014-04-10 14:06:17 -0500 | [diff] [blame] | 1545 | u32 *p = tlbmiss_handler_setup_pgd_start; |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1546 | const int tlbmiss_handler_setup_pgd_size = |
Steven J. Hill | 7bb3940 | 2014-04-10 14:06:17 -0500 | [diff] [blame] | 1547 | tlbmiss_handler_setup_pgd_end - tlbmiss_handler_setup_pgd_start; |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 1548 | #ifndef CONFIG_MIPS_PGD_C0_CONTEXT |
| 1549 | long pgdc = (long)pgd_current; |
| 1550 | #endif |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1551 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1552 | memset(tlbmiss_handler_setup_pgd, 0, tlbmiss_handler_setup_pgd_size * |
| 1553 | sizeof(tlbmiss_handler_setup_pgd[0])); |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1554 | memset(labels, 0, sizeof(labels)); |
| 1555 | memset(relocs, 0, sizeof(relocs)); |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1556 | pgd_reg = allocate_kscratch(); |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 1557 | #ifdef CONFIG_MIPS_PGD_C0_CONTEXT |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1558 | if (pgd_reg == -1) { |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 1559 | struct uasm_label *l = labels; |
| 1560 | struct uasm_reloc *r = relocs; |
| 1561 | |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1562 | /* PGD << 11 in c0_Context */ |
| 1563 | /* |
| 1564 | * If it is a ckseg0 address, convert to a physical |
| 1565 | * address. Shifting right by 29 and adding 4 will |
| 1566 | * result in zero for these addresses. |
| 1567 | * |
| 1568 | */ |
| 1569 | UASM_i_SRA(&p, a1, a0, 29); |
| 1570 | UASM_i_ADDIU(&p, a1, a1, 4); |
| 1571 | uasm_il_bnez(&p, &r, a1, label_tlbl_goaround1); |
| 1572 | uasm_i_nop(&p); |
| 1573 | uasm_i_dinsm(&p, a0, 0, 29, 64 - 29); |
| 1574 | uasm_l_tlbl_goaround1(&l, p); |
| 1575 | UASM_i_SLL(&p, a0, a0, 11); |
| 1576 | uasm_i_jr(&p, 31); |
| 1577 | UASM_i_MTC0(&p, a0, C0_CONTEXT); |
| 1578 | } else { |
| 1579 | /* PGD in c0_KScratch */ |
| 1580 | uasm_i_jr(&p, 31); |
Huacai Chen | 380cd58 | 2016-03-03 09:45:12 +0800 | [diff] [blame] | 1581 | if (cpu_has_ldpte) |
| 1582 | UASM_i_MTC0(&p, a0, C0_PWBASE); |
| 1583 | else |
| 1584 | UASM_i_MTC0(&p, a0, c0_kscratch(), pgd_reg); |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1585 | } |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 1586 | #else |
| 1587 | #ifdef CONFIG_SMP |
| 1588 | /* Save PGD to pgd_current[smp_processor_id()] */ |
| 1589 | UASM_i_CPUID_MFC0(&p, a1, SMP_CPUID_REG); |
| 1590 | UASM_i_SRL_SAFE(&p, a1, a1, SMP_CPUID_PTRSHIFT); |
| 1591 | UASM_i_LA_mostly(&p, a2, pgdc); |
| 1592 | UASM_i_ADDU(&p, a2, a2, a1); |
| 1593 | UASM_i_SW(&p, a0, uasm_rel_lo(pgdc), a2); |
| 1594 | #else |
| 1595 | UASM_i_LA_mostly(&p, a2, pgdc); |
| 1596 | UASM_i_SW(&p, a0, uasm_rel_lo(pgdc), a2); |
| 1597 | #endif /* SMP */ |
| 1598 | uasm_i_jr(&p, 31); |
| 1599 | |
| 1600 | /* if pgd_reg is allocated, save PGD also to scratch register */ |
| 1601 | if (pgd_reg != -1) |
| 1602 | UASM_i_MTC0(&p, a0, c0_kscratch(), pgd_reg); |
| 1603 | else |
| 1604 | uasm_i_nop(&p); |
| 1605 | #endif |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1606 | if (p >= tlbmiss_handler_setup_pgd_end) |
| 1607 | panic("tlbmiss_handler_setup_pgd space exceeded"); |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1608 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1609 | uasm_resolve_relocs(relocs, labels); |
| 1610 | pr_debug("Wrote tlbmiss_handler_setup_pgd (%u instructions).\n", |
| 1611 | (unsigned int)(p - tlbmiss_handler_setup_pgd)); |
| 1612 | |
| 1613 | dump_handler("tlbmiss_handler", tlbmiss_handler_setup_pgd, |
| 1614 | tlbmiss_handler_setup_pgd_size); |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1615 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1617 | static void |
David Daney | bd1437e | 2009-05-08 15:10:50 -0700 | [diff] [blame] | 1618 | iPTE_LW(u32 **p, unsigned int pte, unsigned int ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | { |
| 1620 | #ifdef CONFIG_SMP |
Ralf Baechle | 34adb28 | 2014-11-22 00:16:48 +0100 | [diff] [blame] | 1621 | # ifdef CONFIG_PHYS_ADDR_T_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | if (cpu_has_64bits) |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1623 | uasm_i_lld(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | else |
| 1625 | # endif |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1626 | UASM_i_LL(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | #else |
Ralf Baechle | 34adb28 | 2014-11-22 00:16:48 +0100 | [diff] [blame] | 1628 | # ifdef CONFIG_PHYS_ADDR_T_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | if (cpu_has_64bits) |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1630 | uasm_i_ld(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | else |
| 1632 | # endif |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1633 | UASM_i_LW(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | #endif |
| 1635 | } |
| 1636 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1637 | static void |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1638 | iPTE_SW(u32 **p, struct uasm_reloc **r, unsigned int pte, unsigned int ptr, |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1639 | unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | { |
Ralf Baechle | 34adb28 | 2014-11-22 00:16:48 +0100 | [diff] [blame] | 1641 | #ifdef CONFIG_PHYS_ADDR_T_64BIT |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1642 | unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY); |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1643 | |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 1644 | if (!cpu_has_64bits) { |
| 1645 | const int scratch = 1; /* Our extra working register */ |
| 1646 | |
| 1647 | uasm_i_lui(p, scratch, (mode >> 16)); |
| 1648 | uasm_i_or(p, pte, pte, scratch); |
| 1649 | } else |
| 1650 | #endif |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1651 | uasm_i_ori(p, pte, pte, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | #ifdef CONFIG_SMP |
Ralf Baechle | 34adb28 | 2014-11-22 00:16:48 +0100 | [diff] [blame] | 1653 | # ifdef CONFIG_PHYS_ADDR_T_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | if (cpu_has_64bits) |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1655 | uasm_i_scd(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | else |
| 1657 | # endif |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1658 | UASM_i_SC(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | |
| 1660 | if (r10000_llsc_war()) |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1661 | uasm_il_beqzl(p, r, pte, label_smp_pgtable_change); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | else |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1663 | uasm_il_beqz(p, r, pte, label_smp_pgtable_change); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | |
Ralf Baechle | 34adb28 | 2014-11-22 00:16:48 +0100 | [diff] [blame] | 1665 | # ifdef CONFIG_PHYS_ADDR_T_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | if (!cpu_has_64bits) { |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1667 | /* no uasm_i_nop needed */ |
| 1668 | uasm_i_ll(p, pte, sizeof(pte_t) / 2, ptr); |
| 1669 | uasm_i_ori(p, pte, pte, hwmode); |
| 1670 | uasm_i_sc(p, pte, sizeof(pte_t) / 2, ptr); |
| 1671 | uasm_il_beqz(p, r, pte, label_smp_pgtable_change); |
| 1672 | /* no uasm_i_nop needed */ |
| 1673 | uasm_i_lw(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | } else |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1675 | uasm_i_nop(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | # else |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1677 | uasm_i_nop(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | # endif |
| 1679 | #else |
Ralf Baechle | 34adb28 | 2014-11-22 00:16:48 +0100 | [diff] [blame] | 1680 | # ifdef CONFIG_PHYS_ADDR_T_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | if (cpu_has_64bits) |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1682 | uasm_i_sd(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | else |
| 1684 | # endif |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1685 | UASM_i_SW(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | |
Ralf Baechle | 34adb28 | 2014-11-22 00:16:48 +0100 | [diff] [blame] | 1687 | # ifdef CONFIG_PHYS_ADDR_T_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1688 | if (!cpu_has_64bits) { |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1689 | uasm_i_lw(p, pte, sizeof(pte_t) / 2, ptr); |
| 1690 | uasm_i_ori(p, pte, pte, hwmode); |
| 1691 | uasm_i_sw(p, pte, sizeof(pte_t) / 2, ptr); |
| 1692 | uasm_i_lw(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | } |
| 1694 | # endif |
| 1695 | #endif |
| 1696 | } |
| 1697 | |
| 1698 | /* |
| 1699 | * Check if PTE is present, if not then jump to LABEL. PTR points to |
| 1700 | * the page table where this PTE is located, PTE will be re-loaded |
| 1701 | * with it's original value. |
| 1702 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1703 | static void |
David Daney | bd1437e | 2009-05-08 15:10:50 -0700 | [diff] [blame] | 1704 | build_pte_present(u32 **p, struct uasm_reloc **r, |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1705 | int pte, int ptr, int scratch, enum label_id lid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1707 | int t = scratch >= 0 ? scratch : pte; |
James Hogan | 8fe4908 | 2015-04-27 15:07:18 +0100 | [diff] [blame] | 1708 | int cur = pte; |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1709 | |
Steven J. Hill | 05857c6 | 2012-09-13 16:51:46 -0500 | [diff] [blame] | 1710 | if (cpu_has_rixi) { |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 1711 | if (use_bbit_insns()) { |
| 1712 | uasm_il_bbit0(p, r, pte, ilog2(_PAGE_PRESENT), lid); |
| 1713 | uasm_i_nop(p); |
| 1714 | } else { |
James Hogan | 8fe4908 | 2015-04-27 15:07:18 +0100 | [diff] [blame] | 1715 | if (_PAGE_PRESENT_SHIFT) { |
| 1716 | uasm_i_srl(p, t, cur, _PAGE_PRESENT_SHIFT); |
| 1717 | cur = t; |
| 1718 | } |
| 1719 | uasm_i_andi(p, t, cur, 1); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1720 | uasm_il_beqz(p, r, t, lid); |
| 1721 | if (pte == t) |
| 1722 | /* You lose the SMP race :-(*/ |
| 1723 | iPTE_LW(p, pte, ptr); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 1724 | } |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 1725 | } else { |
James Hogan | 8fe4908 | 2015-04-27 15:07:18 +0100 | [diff] [blame] | 1726 | if (_PAGE_PRESENT_SHIFT) { |
| 1727 | uasm_i_srl(p, t, cur, _PAGE_PRESENT_SHIFT); |
| 1728 | cur = t; |
| 1729 | } |
| 1730 | uasm_i_andi(p, t, cur, |
James Hogan | a3ae565 | 2015-04-27 15:07:17 +0100 | [diff] [blame] | 1731 | (_PAGE_PRESENT | _PAGE_READ) >> _PAGE_PRESENT_SHIFT); |
| 1732 | uasm_i_xori(p, t, t, |
| 1733 | (_PAGE_PRESENT | _PAGE_READ) >> _PAGE_PRESENT_SHIFT); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1734 | uasm_il_bnez(p, r, t, lid); |
| 1735 | if (pte == t) |
| 1736 | /* You lose the SMP race :-(*/ |
| 1737 | iPTE_LW(p, pte, ptr); |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 1738 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | } |
| 1740 | |
| 1741 | /* Make PTE valid, store result in PTR. */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1742 | static void |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1743 | build_make_valid(u32 **p, struct uasm_reloc **r, unsigned int pte, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | unsigned int ptr) |
| 1745 | { |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1746 | unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED; |
| 1747 | |
| 1748 | iPTE_SW(p, r, pte, ptr, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | } |
| 1750 | |
| 1751 | /* |
| 1752 | * Check if PTE can be written to, if not branch to LABEL. Regardless |
| 1753 | * restore PTE with value from PTR when done. |
| 1754 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1755 | static void |
David Daney | bd1437e | 2009-05-08 15:10:50 -0700 | [diff] [blame] | 1756 | build_pte_writable(u32 **p, struct uasm_reloc **r, |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1757 | unsigned int pte, unsigned int ptr, int scratch, |
| 1758 | enum label_id lid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1760 | int t = scratch >= 0 ? scratch : pte; |
James Hogan | 8fe4908 | 2015-04-27 15:07:18 +0100 | [diff] [blame] | 1761 | int cur = pte; |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1762 | |
James Hogan | 8fe4908 | 2015-04-27 15:07:18 +0100 | [diff] [blame] | 1763 | if (_PAGE_PRESENT_SHIFT) { |
| 1764 | uasm_i_srl(p, t, cur, _PAGE_PRESENT_SHIFT); |
| 1765 | cur = t; |
| 1766 | } |
| 1767 | uasm_i_andi(p, t, cur, |
James Hogan | a3ae565 | 2015-04-27 15:07:17 +0100 | [diff] [blame] | 1768 | (_PAGE_PRESENT | _PAGE_WRITE) >> _PAGE_PRESENT_SHIFT); |
| 1769 | uasm_i_xori(p, t, t, |
| 1770 | (_PAGE_PRESENT | _PAGE_WRITE) >> _PAGE_PRESENT_SHIFT); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1771 | uasm_il_bnez(p, r, t, lid); |
| 1772 | if (pte == t) |
| 1773 | /* You lose the SMP race :-(*/ |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 1774 | iPTE_LW(p, pte, ptr); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1775 | else |
| 1776 | uasm_i_nop(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | } |
| 1778 | |
| 1779 | /* Make PTE writable, update software status bits as well, then store |
| 1780 | * at PTR. |
| 1781 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1782 | static void |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1783 | build_make_write(u32 **p, struct uasm_reloc **r, unsigned int pte, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | unsigned int ptr) |
| 1785 | { |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1786 | unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID |
| 1787 | | _PAGE_DIRTY); |
| 1788 | |
| 1789 | iPTE_SW(p, r, pte, ptr, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | } |
| 1791 | |
| 1792 | /* |
| 1793 | * Check if PTE can be modified, if not branch to LABEL. Regardless |
| 1794 | * restore PTE with value from PTR when done. |
| 1795 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1796 | static void |
David Daney | bd1437e | 2009-05-08 15:10:50 -0700 | [diff] [blame] | 1797 | build_pte_modifiable(u32 **p, struct uasm_reloc **r, |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1798 | unsigned int pte, unsigned int ptr, int scratch, |
| 1799 | enum label_id lid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | { |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 1801 | if (use_bbit_insns()) { |
| 1802 | uasm_il_bbit0(p, r, pte, ilog2(_PAGE_WRITE), lid); |
| 1803 | uasm_i_nop(p); |
| 1804 | } else { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1805 | int t = scratch >= 0 ? scratch : pte; |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 1806 | uasm_i_srl(p, t, pte, _PAGE_WRITE_SHIFT); |
| 1807 | uasm_i_andi(p, t, t, 1); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1808 | uasm_il_beqz(p, r, t, lid); |
| 1809 | if (pte == t) |
| 1810 | /* You lose the SMP race :-(*/ |
| 1811 | iPTE_LW(p, pte, ptr); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 1812 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | } |
| 1814 | |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 1815 | #ifndef CONFIG_MIPS_PGD_C0_CONTEXT |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 1816 | |
| 1817 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | /* |
| 1819 | * R3000 style TLB load/store/modify handlers. |
| 1820 | */ |
| 1821 | |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1822 | /* |
| 1823 | * This places the pte into ENTRYLO0 and writes it with tlbwi. |
| 1824 | * Then it returns. |
| 1825 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1826 | static void |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1827 | build_r3000_pte_reload_tlbwi(u32 **p, unsigned int pte, unsigned int tmp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | { |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1829 | uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */ |
| 1830 | uasm_i_mfc0(p, tmp, C0_EPC); /* cp0 delay */ |
| 1831 | uasm_i_tlbwi(p); |
| 1832 | uasm_i_jr(p, tmp); |
| 1833 | uasm_i_rfe(p); /* branch delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | } |
| 1835 | |
| 1836 | /* |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1837 | * This places the pte into ENTRYLO0 and writes it with tlbwi |
| 1838 | * or tlbwr as appropriate. This is because the index register |
| 1839 | * may have the probe fail bit set as a result of a trap on a |
| 1840 | * kseg2 access, i.e. without refill. Then it returns. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1842 | static void |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1843 | build_r3000_tlb_reload_write(u32 **p, struct uasm_label **l, |
| 1844 | struct uasm_reloc **r, unsigned int pte, |
| 1845 | unsigned int tmp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | { |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1847 | uasm_i_mfc0(p, tmp, C0_INDEX); |
| 1848 | uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */ |
| 1849 | uasm_il_bltz(p, r, tmp, label_r3000_write_probe_fail); /* cp0 delay */ |
| 1850 | uasm_i_mfc0(p, tmp, C0_EPC); /* branch delay */ |
| 1851 | uasm_i_tlbwi(p); /* cp0 delay */ |
| 1852 | uasm_i_jr(p, tmp); |
| 1853 | uasm_i_rfe(p); /* branch delay */ |
| 1854 | uasm_l_r3000_write_probe_fail(l, *p); |
| 1855 | uasm_i_tlbwr(p); /* cp0 delay */ |
| 1856 | uasm_i_jr(p, tmp); |
| 1857 | uasm_i_rfe(p); /* branch delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | } |
| 1859 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1860 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | build_r3000_tlbchange_handler_head(u32 **p, unsigned int pte, |
| 1862 | unsigned int ptr) |
| 1863 | { |
| 1864 | long pgdc = (long)pgd_current; |
| 1865 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1866 | uasm_i_mfc0(p, pte, C0_BADVADDR); |
| 1867 | uasm_i_lui(p, ptr, uasm_rel_hi(pgdc)); /* cp0 delay */ |
| 1868 | uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr); |
| 1869 | uasm_i_srl(p, pte, pte, 22); /* load delay */ |
| 1870 | uasm_i_sll(p, pte, pte, 2); |
| 1871 | uasm_i_addu(p, ptr, ptr, pte); |
| 1872 | uasm_i_mfc0(p, pte, C0_CONTEXT); |
| 1873 | uasm_i_lw(p, ptr, 0, ptr); /* cp0 delay */ |
| 1874 | uasm_i_andi(p, pte, pte, 0xffc); /* load delay */ |
| 1875 | uasm_i_addu(p, ptr, ptr, pte); |
| 1876 | uasm_i_lw(p, pte, 0, ptr); |
| 1877 | uasm_i_tlbp(p); /* load delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | } |
| 1879 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1880 | static void build_r3000_tlb_load_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | { |
| 1882 | u32 *p = handle_tlbl; |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1883 | const int handle_tlbl_size = handle_tlbl_end - handle_tlbl; |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1884 | struct uasm_label *l = labels; |
| 1885 | struct uasm_reloc *r = relocs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1887 | memset(handle_tlbl, 0, handle_tlbl_size * sizeof(handle_tlbl[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | memset(labels, 0, sizeof(labels)); |
| 1889 | memset(relocs, 0, sizeof(relocs)); |
| 1890 | |
| 1891 | build_r3000_tlbchange_handler_head(&p, K0, K1); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1892 | build_pte_present(&p, &r, K0, K1, -1, label_nopage_tlbl); |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1893 | uasm_i_nop(&p); /* load delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | build_make_valid(&p, &r, K0, K1); |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1895 | build_r3000_tlb_reload_write(&p, &l, &r, K0, K1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1897 | uasm_l_nopage_tlbl(&l, p); |
| 1898 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff); |
| 1899 | uasm_i_nop(&p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1901 | if (p >= handle_tlbl_end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 | panic("TLB load handler fastpath space exceeded"); |
| 1903 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1904 | uasm_resolve_relocs(relocs, labels); |
| 1905 | pr_debug("Wrote TLB load handler fastpath (%u instructions).\n", |
| 1906 | (unsigned int)(p - handle_tlbl)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1908 | dump_handler("r3000_tlb_load", handle_tlbl, handle_tlbl_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | } |
| 1910 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1911 | static void build_r3000_tlb_store_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | { |
| 1913 | u32 *p = handle_tlbs; |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1914 | const int handle_tlbs_size = handle_tlbs_end - handle_tlbs; |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1915 | struct uasm_label *l = labels; |
| 1916 | struct uasm_reloc *r = relocs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1918 | memset(handle_tlbs, 0, handle_tlbs_size * sizeof(handle_tlbs[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | memset(labels, 0, sizeof(labels)); |
| 1920 | memset(relocs, 0, sizeof(relocs)); |
| 1921 | |
| 1922 | build_r3000_tlbchange_handler_head(&p, K0, K1); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1923 | build_pte_writable(&p, &r, K0, K1, -1, label_nopage_tlbs); |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1924 | uasm_i_nop(&p); /* load delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | build_make_write(&p, &r, K0, K1); |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1926 | build_r3000_tlb_reload_write(&p, &l, &r, K0, K1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1928 | uasm_l_nopage_tlbs(&l, p); |
| 1929 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
| 1930 | uasm_i_nop(&p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | |
Tony Wu | afc813a | 2013-07-18 09:45:47 +0000 | [diff] [blame] | 1932 | if (p >= handle_tlbs_end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | panic("TLB store handler fastpath space exceeded"); |
| 1934 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1935 | uasm_resolve_relocs(relocs, labels); |
| 1936 | pr_debug("Wrote TLB store handler fastpath (%u instructions).\n", |
| 1937 | (unsigned int)(p - handle_tlbs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1938 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1939 | dump_handler("r3000_tlb_store", handle_tlbs, handle_tlbs_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | } |
| 1941 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1942 | static void build_r3000_tlb_modify_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | { |
| 1944 | u32 *p = handle_tlbm; |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1945 | const int handle_tlbm_size = handle_tlbm_end - handle_tlbm; |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1946 | struct uasm_label *l = labels; |
| 1947 | struct uasm_reloc *r = relocs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1949 | memset(handle_tlbm, 0, handle_tlbm_size * sizeof(handle_tlbm[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | memset(labels, 0, sizeof(labels)); |
| 1951 | memset(relocs, 0, sizeof(relocs)); |
| 1952 | |
| 1953 | build_r3000_tlbchange_handler_head(&p, K0, K1); |
Ralf Baechle | d954ffe | 2011-08-02 22:52:48 +0100 | [diff] [blame] | 1954 | build_pte_modifiable(&p, &r, K0, K1, -1, label_nopage_tlbm); |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1955 | uasm_i_nop(&p); /* load delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | build_make_write(&p, &r, K0, K1); |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1957 | build_r3000_pte_reload_tlbwi(&p, K0, K1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1959 | uasm_l_nopage_tlbm(&l, p); |
| 1960 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
| 1961 | uasm_i_nop(&p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1963 | if (p >= handle_tlbm_end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | panic("TLB modify handler fastpath space exceeded"); |
| 1965 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1966 | uasm_resolve_relocs(relocs, labels); |
| 1967 | pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n", |
| 1968 | (unsigned int)(p - handle_tlbm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1969 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 1970 | dump_handler("r3000_tlb_modify", handle_tlbm, handle_tlbm_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | } |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 1972 | #endif /* CONFIG_MIPS_PGD_C0_CONTEXT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 | |
| 1974 | /* |
| 1975 | * R4000 style TLB load/store/modify handlers. |
| 1976 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1977 | static struct work_registers |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 1978 | build_r4000_tlbchange_handler_head(u32 **p, struct uasm_label **l, |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1979 | struct uasm_reloc **r) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1981 | struct work_registers wr = build_get_work_registers(p); |
| 1982 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1983 | #ifdef CONFIG_64BIT |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1984 | build_get_pmde64(p, l, r, wr.r1, wr.r2); /* get pmd in ptr */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | #else |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1986 | build_get_pgde32(p, wr.r1, wr.r2); /* get pgd in ptr */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | #endif |
| 1988 | |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 1989 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 1990 | /* |
| 1991 | * For huge tlb entries, pmd doesn't contain an address but |
| 1992 | * instead contains the tlb pte. Check the PAGE_HUGE bit and |
| 1993 | * see if we need to jump to huge tlb processing. |
| 1994 | */ |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1995 | build_is_huge_pte(p, r, wr.r1, wr.r2, label_tlb_huge_update); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 1996 | #endif |
| 1997 | |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 1998 | UASM_i_MFC0(p, wr.r1, C0_BADVADDR); |
| 1999 | UASM_i_LW(p, wr.r2, 0, wr.r2); |
| 2000 | UASM_i_SRL(p, wr.r1, wr.r1, PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2); |
| 2001 | uasm_i_andi(p, wr.r1, wr.r1, (PTRS_PER_PTE - 1) << PTE_T_LOG2); |
| 2002 | UASM_i_ADDU(p, wr.r2, wr.r2, wr.r1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | |
| 2004 | #ifdef CONFIG_SMP |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2005 | uasm_l_smp_pgtable_change(l, *p); |
| 2006 | #endif |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2007 | iPTE_LW(p, wr.r1, wr.r2); /* get even pte */ |
Leonid Yegoshin | 070e76c | 2014-11-27 11:13:08 +0000 | [diff] [blame] | 2008 | if (!m4kc_tlbp_war()) { |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 2009 | build_tlb_probe_entry(p); |
Leonid Yegoshin | 070e76c | 2014-11-27 11:13:08 +0000 | [diff] [blame] | 2010 | if (cpu_has_htw) { |
| 2011 | /* race condition happens, leaving */ |
| 2012 | uasm_i_ehb(p); |
| 2013 | uasm_i_mfc0(p, wr.r3, C0_INDEX); |
| 2014 | uasm_il_bltz(p, r, wr.r3, label_leave); |
| 2015 | uasm_i_nop(p); |
| 2016 | } |
| 2017 | } |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2018 | return wr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | } |
| 2020 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 2021 | static void |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2022 | build_r4000_tlbchange_handler_tail(u32 **p, struct uasm_label **l, |
| 2023 | struct uasm_reloc **r, unsigned int tmp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | unsigned int ptr) |
| 2025 | { |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2026 | uasm_i_ori(p, ptr, ptr, sizeof(pte_t)); |
| 2027 | uasm_i_xori(p, ptr, ptr, sizeof(pte_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | build_update_entries(p, tmp, ptr); |
| 2029 | build_tlb_write_entry(p, l, r, tlb_indexed); |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2030 | uasm_l_leave(l, *p); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2031 | build_restore_work_registers(p); |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2032 | uasm_i_eret(p); /* return from trap */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 2034 | #ifdef CONFIG_64BIT |
David Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 2035 | build_get_pgd_vmalloc64(p, l, r, tmp, ptr, not_refill); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | #endif |
| 2037 | } |
| 2038 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 2039 | static void build_r4000_tlb_load_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | { |
| 2041 | u32 *p = handle_tlbl; |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2042 | const int handle_tlbl_size = handle_tlbl_end - handle_tlbl; |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2043 | struct uasm_label *l = labels; |
| 2044 | struct uasm_reloc *r = relocs; |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2045 | struct work_registers wr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2047 | memset(handle_tlbl, 0, handle_tlbl_size * sizeof(handle_tlbl[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2048 | memset(labels, 0, sizeof(labels)); |
| 2049 | memset(relocs, 0, sizeof(relocs)); |
| 2050 | |
| 2051 | if (bcm1250_m3_war()) { |
Ralf Baechle | 3d45285 | 2010-03-23 17:56:38 +0100 | [diff] [blame] | 2052 | unsigned int segbits = 44; |
| 2053 | |
| 2054 | uasm_i_dmfc0(&p, K0, C0_BADVADDR); |
| 2055 | uasm_i_dmfc0(&p, K1, C0_ENTRYHI); |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2056 | uasm_i_xor(&p, K0, K0, K1); |
David Daney | 3be6022 | 2010-04-28 12:16:17 -0700 | [diff] [blame] | 2057 | uasm_i_dsrl_safe(&p, K1, K0, 62); |
| 2058 | uasm_i_dsrl_safe(&p, K0, K0, 12 + 1); |
| 2059 | uasm_i_dsll_safe(&p, K0, K0, 64 + 12 + 1 - segbits); |
Ralf Baechle | 3d45285 | 2010-03-23 17:56:38 +0100 | [diff] [blame] | 2060 | uasm_i_or(&p, K0, K0, K1); |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2061 | uasm_il_bnez(&p, &r, K0, label_leave); |
| 2062 | /* No need for uasm_i_nop */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | } |
| 2064 | |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2065 | wr = build_r4000_tlbchange_handler_head(&p, &l, &r); |
| 2066 | build_pte_present(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbl); |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 2067 | if (m4kc_tlbp_war()) |
| 2068 | build_tlb_probe_entry(&p); |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2069 | |
Leonid Yegoshin | 5890f70 | 2014-07-15 14:09:56 +0100 | [diff] [blame] | 2070 | if (cpu_has_rixi && !cpu_has_rixiex) { |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2071 | /* |
| 2072 | * If the page is not _PAGE_VALID, RI or XI could not |
| 2073 | * have triggered it. Skip the expensive test.. |
| 2074 | */ |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2075 | if (use_bbit_insns()) { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2076 | uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID), |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2077 | label_tlbl_goaround1); |
| 2078 | } else { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2079 | uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID); |
| 2080 | uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround1); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2081 | } |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2082 | uasm_i_nop(&p); |
| 2083 | |
| 2084 | uasm_i_tlbr(&p); |
Ralf Baechle | 73acc7d | 2013-06-20 14:56:17 +0200 | [diff] [blame] | 2085 | |
| 2086 | switch (current_cpu_type()) { |
| 2087 | default: |
Leonid Yegoshin | 77f3ee5 | 2014-11-24 15:42:46 +0000 | [diff] [blame] | 2088 | if (cpu_has_mips_r2_exec_hazard) { |
Ralf Baechle | 73acc7d | 2013-06-20 14:56:17 +0200 | [diff] [blame] | 2089 | uasm_i_ehb(&p); |
| 2090 | |
| 2091 | case CPU_CAVIUM_OCTEON: |
| 2092 | case CPU_CAVIUM_OCTEON_PLUS: |
| 2093 | case CPU_CAVIUM_OCTEON2: |
| 2094 | break; |
| 2095 | } |
| 2096 | } |
| 2097 | |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2098 | /* Examine entrylo 0 or 1 based on ptr. */ |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2099 | if (use_bbit_insns()) { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2100 | uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2101 | } else { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2102 | uasm_i_andi(&p, wr.r3, wr.r2, sizeof(pte_t)); |
| 2103 | uasm_i_beqz(&p, wr.r3, 8); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2104 | } |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2105 | /* load it in the delay slot*/ |
| 2106 | UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO0); |
| 2107 | /* load it if ptr is odd */ |
| 2108 | UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO1); |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2109 | /* |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2110 | * If the entryLo (now in wr.r3) is valid (bit 1), RI or |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2111 | * XI must have triggered it. |
| 2112 | */ |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2113 | if (use_bbit_insns()) { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2114 | uasm_il_bbit1(&p, &r, wr.r3, 1, label_nopage_tlbl); |
| 2115 | uasm_i_nop(&p); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2116 | uasm_l_tlbl_goaround1(&l, p); |
| 2117 | } else { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2118 | uasm_i_andi(&p, wr.r3, wr.r3, 2); |
| 2119 | uasm_il_bnez(&p, &r, wr.r3, label_nopage_tlbl); |
| 2120 | uasm_i_nop(&p); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2121 | } |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2122 | uasm_l_tlbl_goaround1(&l, p); |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2123 | } |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2124 | build_make_valid(&p, &r, wr.r1, wr.r2); |
| 2125 | build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2126 | |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 2127 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2128 | /* |
| 2129 | * This is the entry point when build_r4000_tlbchange_handler_head |
| 2130 | * spots a huge page. |
| 2131 | */ |
| 2132 | uasm_l_tlb_huge_update(&l, p); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2133 | iPTE_LW(&p, wr.r1, wr.r2); |
| 2134 | build_pte_present(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbl); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2135 | build_tlb_probe_entry(&p); |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2136 | |
Leonid Yegoshin | 5890f70 | 2014-07-15 14:09:56 +0100 | [diff] [blame] | 2137 | if (cpu_has_rixi && !cpu_has_rixiex) { |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2138 | /* |
| 2139 | * If the page is not _PAGE_VALID, RI or XI could not |
| 2140 | * have triggered it. Skip the expensive test.. |
| 2141 | */ |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2142 | if (use_bbit_insns()) { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2143 | uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID), |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2144 | label_tlbl_goaround2); |
| 2145 | } else { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2146 | uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID); |
| 2147 | uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround2); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2148 | } |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2149 | uasm_i_nop(&p); |
| 2150 | |
| 2151 | uasm_i_tlbr(&p); |
Ralf Baechle | 73acc7d | 2013-06-20 14:56:17 +0200 | [diff] [blame] | 2152 | |
| 2153 | switch (current_cpu_type()) { |
| 2154 | default: |
Leonid Yegoshin | 77f3ee5 | 2014-11-24 15:42:46 +0000 | [diff] [blame] | 2155 | if (cpu_has_mips_r2_exec_hazard) { |
Ralf Baechle | 73acc7d | 2013-06-20 14:56:17 +0200 | [diff] [blame] | 2156 | uasm_i_ehb(&p); |
| 2157 | |
| 2158 | case CPU_CAVIUM_OCTEON: |
| 2159 | case CPU_CAVIUM_OCTEON_PLUS: |
| 2160 | case CPU_CAVIUM_OCTEON2: |
| 2161 | break; |
| 2162 | } |
| 2163 | } |
| 2164 | |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2165 | /* Examine entrylo 0 or 1 based on ptr. */ |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2166 | if (use_bbit_insns()) { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2167 | uasm_i_bbit0(&p, wr.r2, ilog2(sizeof(pte_t)), 8); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2168 | } else { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2169 | uasm_i_andi(&p, wr.r3, wr.r2, sizeof(pte_t)); |
| 2170 | uasm_i_beqz(&p, wr.r3, 8); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2171 | } |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2172 | /* load it in the delay slot*/ |
| 2173 | UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO0); |
| 2174 | /* load it if ptr is odd */ |
| 2175 | UASM_i_MFC0(&p, wr.r3, C0_ENTRYLO1); |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2176 | /* |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2177 | * If the entryLo (now in wr.r3) is valid (bit 1), RI or |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2178 | * XI must have triggered it. |
| 2179 | */ |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2180 | if (use_bbit_insns()) { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2181 | uasm_il_bbit0(&p, &r, wr.r3, 1, label_tlbl_goaround2); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2182 | } else { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2183 | uasm_i_andi(&p, wr.r3, wr.r3, 2); |
| 2184 | uasm_il_beqz(&p, &r, wr.r3, label_tlbl_goaround2); |
David Daney | cc33ae4 | 2010-12-20 15:54:50 -0800 | [diff] [blame] | 2185 | } |
David Daney | 0f4ccbc | 2011-09-16 18:06:02 -0700 | [diff] [blame] | 2186 | if (PM_DEFAULT_MASK == 0) |
| 2187 | uasm_i_nop(&p); |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2188 | /* |
| 2189 | * We clobbered C0_PAGEMASK, restore it. On the other branch |
| 2190 | * it is restored in build_huge_tlb_write_entry. |
| 2191 | */ |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2192 | build_restore_pagemask(&p, &r, wr.r3, label_nopage_tlbl, 0); |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 2193 | |
| 2194 | uasm_l_tlbl_goaround2(&l, p); |
| 2195 | } |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2196 | uasm_i_ori(&p, wr.r1, wr.r1, (_PAGE_ACCESSED | _PAGE_VALID)); |
| 2197 | build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2198 | #endif |
| 2199 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2200 | uasm_l_nopage_tlbl(&l, p); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2201 | build_restore_work_registers(&p); |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 2202 | #ifdef CONFIG_CPU_MICROMIPS |
| 2203 | if ((unsigned long)tlb_do_page_fault_0 & 1) { |
| 2204 | uasm_i_lui(&p, K0, uasm_rel_hi((long)tlb_do_page_fault_0)); |
| 2205 | uasm_i_addiu(&p, K0, K0, uasm_rel_lo((long)tlb_do_page_fault_0)); |
| 2206 | uasm_i_jr(&p, K0); |
| 2207 | } else |
| 2208 | #endif |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2209 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff); |
| 2210 | uasm_i_nop(&p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2212 | if (p >= handle_tlbl_end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | panic("TLB load handler fastpath space exceeded"); |
| 2214 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2215 | uasm_resolve_relocs(relocs, labels); |
| 2216 | pr_debug("Wrote TLB load handler fastpath (%u instructions).\n", |
| 2217 | (unsigned int)(p - handle_tlbl)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2219 | dump_handler("r4000_tlb_load", handle_tlbl, handle_tlbl_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | } |
| 2221 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 2222 | static void build_r4000_tlb_store_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2223 | { |
| 2224 | u32 *p = handle_tlbs; |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2225 | const int handle_tlbs_size = handle_tlbs_end - handle_tlbs; |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2226 | struct uasm_label *l = labels; |
| 2227 | struct uasm_reloc *r = relocs; |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2228 | struct work_registers wr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2230 | memset(handle_tlbs, 0, handle_tlbs_size * sizeof(handle_tlbs[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | memset(labels, 0, sizeof(labels)); |
| 2232 | memset(relocs, 0, sizeof(relocs)); |
| 2233 | |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2234 | wr = build_r4000_tlbchange_handler_head(&p, &l, &r); |
| 2235 | build_pte_writable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbs); |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 2236 | if (m4kc_tlbp_war()) |
| 2237 | build_tlb_probe_entry(&p); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2238 | build_make_write(&p, &r, wr.r1, wr.r2); |
| 2239 | build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 2241 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2242 | /* |
| 2243 | * This is the entry point when |
| 2244 | * build_r4000_tlbchange_handler_head spots a huge page. |
| 2245 | */ |
| 2246 | uasm_l_tlb_huge_update(&l, p); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2247 | iPTE_LW(&p, wr.r1, wr.r2); |
| 2248 | build_pte_writable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbs); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2249 | build_tlb_probe_entry(&p); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2250 | uasm_i_ori(&p, wr.r1, wr.r1, |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2251 | _PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2252 | build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2253 | #endif |
| 2254 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2255 | uasm_l_nopage_tlbs(&l, p); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2256 | build_restore_work_registers(&p); |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 2257 | #ifdef CONFIG_CPU_MICROMIPS |
| 2258 | if ((unsigned long)tlb_do_page_fault_1 & 1) { |
| 2259 | uasm_i_lui(&p, K0, uasm_rel_hi((long)tlb_do_page_fault_1)); |
| 2260 | uasm_i_addiu(&p, K0, K0, uasm_rel_lo((long)tlb_do_page_fault_1)); |
| 2261 | uasm_i_jr(&p, K0); |
| 2262 | } else |
| 2263 | #endif |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2264 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
| 2265 | uasm_i_nop(&p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2267 | if (p >= handle_tlbs_end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | panic("TLB store handler fastpath space exceeded"); |
| 2269 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2270 | uasm_resolve_relocs(relocs, labels); |
| 2271 | pr_debug("Wrote TLB store handler fastpath (%u instructions).\n", |
| 2272 | (unsigned int)(p - handle_tlbs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2274 | dump_handler("r4000_tlb_store", handle_tlbs, handle_tlbs_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | } |
| 2276 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 2277 | static void build_r4000_tlb_modify_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | { |
| 2279 | u32 *p = handle_tlbm; |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2280 | const int handle_tlbm_size = handle_tlbm_end - handle_tlbm; |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2281 | struct uasm_label *l = labels; |
| 2282 | struct uasm_reloc *r = relocs; |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2283 | struct work_registers wr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2285 | memset(handle_tlbm, 0, handle_tlbm_size * sizeof(handle_tlbm[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | memset(labels, 0, sizeof(labels)); |
| 2287 | memset(relocs, 0, sizeof(relocs)); |
| 2288 | |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2289 | wr = build_r4000_tlbchange_handler_head(&p, &l, &r); |
| 2290 | build_pte_modifiable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbm); |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 2291 | if (m4kc_tlbp_war()) |
| 2292 | build_tlb_probe_entry(&p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | /* Present and writable bits set, set accessed and dirty bits. */ |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2294 | build_make_write(&p, &r, wr.r1, wr.r2); |
| 2295 | build_r4000_tlbchange_handler_tail(&p, &l, &r, wr.r1, wr.r2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 | |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 2297 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2298 | /* |
| 2299 | * This is the entry point when |
| 2300 | * build_r4000_tlbchange_handler_head spots a huge page. |
| 2301 | */ |
| 2302 | uasm_l_tlb_huge_update(&l, p); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2303 | iPTE_LW(&p, wr.r1, wr.r2); |
| 2304 | build_pte_modifiable(&p, &r, wr.r1, wr.r2, wr.r3, label_nopage_tlbm); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2305 | build_tlb_probe_entry(&p); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2306 | uasm_i_ori(&p, wr.r1, wr.r1, |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2307 | _PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2308 | build_huge_handler_tail(&p, &r, &l, wr.r1, wr.r2); |
David Daney | fd062c8 | 2009-05-27 17:47:44 -0700 | [diff] [blame] | 2309 | #endif |
| 2310 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2311 | uasm_l_nopage_tlbm(&l, p); |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2312 | build_restore_work_registers(&p); |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 2313 | #ifdef CONFIG_CPU_MICROMIPS |
| 2314 | if ((unsigned long)tlb_do_page_fault_1 & 1) { |
| 2315 | uasm_i_lui(&p, K0, uasm_rel_hi((long)tlb_do_page_fault_1)); |
| 2316 | uasm_i_addiu(&p, K0, K0, uasm_rel_lo((long)tlb_do_page_fault_1)); |
| 2317 | uasm_i_jr(&p, K0); |
| 2318 | } else |
| 2319 | #endif |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2320 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
| 2321 | uasm_i_nop(&p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2322 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2323 | if (p >= handle_tlbm_end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2324 | panic("TLB modify handler fastpath space exceeded"); |
| 2325 | |
Thiemo Seufer | e30ec45 | 2008-01-28 20:05:38 +0000 | [diff] [blame] | 2326 | uasm_resolve_relocs(relocs, labels); |
| 2327 | pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n", |
| 2328 | (unsigned int)(p - handle_tlbm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | |
Jayachandran C | 6ba045f | 2013-06-23 17:16:19 +0000 | [diff] [blame] | 2330 | dump_handler("r4000_tlb_modify", handle_tlbm, handle_tlbm_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | } |
| 2332 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 2333 | static void flush_tlb_handlers(void) |
Jonas Gorski | a3d9086 | 2013-06-21 17:48:48 +0000 | [diff] [blame] | 2334 | { |
| 2335 | local_flush_icache_range((unsigned long)handle_tlbl, |
Ralf Baechle | 6ac5310 | 2013-07-02 17:19:04 +0200 | [diff] [blame] | 2336 | (unsigned long)handle_tlbl_end); |
Jonas Gorski | a3d9086 | 2013-06-21 17:48:48 +0000 | [diff] [blame] | 2337 | local_flush_icache_range((unsigned long)handle_tlbs, |
Ralf Baechle | 6ac5310 | 2013-07-02 17:19:04 +0200 | [diff] [blame] | 2338 | (unsigned long)handle_tlbs_end); |
Jonas Gorski | a3d9086 | 2013-06-21 17:48:48 +0000 | [diff] [blame] | 2339 | local_flush_icache_range((unsigned long)handle_tlbm, |
Ralf Baechle | 6ac5310 | 2013-07-02 17:19:04 +0200 | [diff] [blame] | 2340 | (unsigned long)handle_tlbm_end); |
Ralf Baechle | 6ac5310 | 2013-07-02 17:19:04 +0200 | [diff] [blame] | 2341 | local_flush_icache_range((unsigned long)tlbmiss_handler_setup_pgd, |
| 2342 | (unsigned long)tlbmiss_handler_setup_pgd_end); |
Jonas Gorski | a3d9086 | 2013-06-21 17:48:48 +0000 | [diff] [blame] | 2343 | } |
| 2344 | |
Markos Chandras | f1014d1 | 2014-07-14 12:47:09 +0100 | [diff] [blame] | 2345 | static void print_htw_config(void) |
| 2346 | { |
| 2347 | unsigned long config; |
| 2348 | unsigned int pwctl; |
| 2349 | const int field = 2 * sizeof(unsigned long); |
| 2350 | |
| 2351 | config = read_c0_pwfield(); |
| 2352 | pr_debug("PWField (0x%0*lx): GDI: 0x%02lx UDI: 0x%02lx MDI: 0x%02lx PTI: 0x%02lx PTEI: 0x%02lx\n", |
| 2353 | field, config, |
| 2354 | (config & MIPS_PWFIELD_GDI_MASK) >> MIPS_PWFIELD_GDI_SHIFT, |
| 2355 | (config & MIPS_PWFIELD_UDI_MASK) >> MIPS_PWFIELD_UDI_SHIFT, |
| 2356 | (config & MIPS_PWFIELD_MDI_MASK) >> MIPS_PWFIELD_MDI_SHIFT, |
| 2357 | (config & MIPS_PWFIELD_PTI_MASK) >> MIPS_PWFIELD_PTI_SHIFT, |
| 2358 | (config & MIPS_PWFIELD_PTEI_MASK) >> MIPS_PWFIELD_PTEI_SHIFT); |
| 2359 | |
| 2360 | config = read_c0_pwsize(); |
| 2361 | pr_debug("PWSize (0x%0*lx): GDW: 0x%02lx UDW: 0x%02lx MDW: 0x%02lx PTW: 0x%02lx PTEW: 0x%02lx\n", |
| 2362 | field, config, |
| 2363 | (config & MIPS_PWSIZE_GDW_MASK) >> MIPS_PWSIZE_GDW_SHIFT, |
| 2364 | (config & MIPS_PWSIZE_UDW_MASK) >> MIPS_PWSIZE_UDW_SHIFT, |
| 2365 | (config & MIPS_PWSIZE_MDW_MASK) >> MIPS_PWSIZE_MDW_SHIFT, |
| 2366 | (config & MIPS_PWSIZE_PTW_MASK) >> MIPS_PWSIZE_PTW_SHIFT, |
| 2367 | (config & MIPS_PWSIZE_PTEW_MASK) >> MIPS_PWSIZE_PTEW_SHIFT); |
| 2368 | |
| 2369 | pwctl = read_c0_pwctl(); |
| 2370 | pr_debug("PWCtl (0x%x): PWEn: 0x%x DPH: 0x%x HugePg: 0x%x Psn: 0x%x\n", |
| 2371 | pwctl, |
| 2372 | (pwctl & MIPS_PWCTL_PWEN_MASK) >> MIPS_PWCTL_PWEN_SHIFT, |
| 2373 | (pwctl & MIPS_PWCTL_DPH_MASK) >> MIPS_PWCTL_DPH_SHIFT, |
| 2374 | (pwctl & MIPS_PWCTL_HUGEPG_MASK) >> MIPS_PWCTL_HUGEPG_SHIFT, |
| 2375 | (pwctl & MIPS_PWCTL_PSN_MASK) >> MIPS_PWCTL_PSN_SHIFT); |
| 2376 | } |
| 2377 | |
| 2378 | static void config_htw_params(void) |
| 2379 | { |
| 2380 | unsigned long pwfield, pwsize, ptei; |
| 2381 | unsigned int config; |
| 2382 | |
| 2383 | /* |
| 2384 | * We are using 2-level page tables, so we only need to |
| 2385 | * setup GDW and PTW appropriately. UDW and MDW will remain 0. |
| 2386 | * The default value of GDI/UDI/MDI/PTI is 0xc. It is illegal to |
| 2387 | * write values less than 0xc in these fields because the entire |
| 2388 | * write will be dropped. As a result of which, we must preserve |
| 2389 | * the original reset values and overwrite only what we really want. |
| 2390 | */ |
| 2391 | |
| 2392 | pwfield = read_c0_pwfield(); |
| 2393 | /* re-initialize the GDI field */ |
| 2394 | pwfield &= ~MIPS_PWFIELD_GDI_MASK; |
| 2395 | pwfield |= PGDIR_SHIFT << MIPS_PWFIELD_GDI_SHIFT; |
| 2396 | /* re-initialize the PTI field including the even/odd bit */ |
| 2397 | pwfield &= ~MIPS_PWFIELD_PTI_MASK; |
| 2398 | pwfield |= PAGE_SHIFT << MIPS_PWFIELD_PTI_SHIFT; |
Paul Burton | cab25bc | 2015-09-22 12:03:37 -0700 | [diff] [blame] | 2399 | if (CONFIG_PGTABLE_LEVELS >= 3) { |
| 2400 | pwfield &= ~MIPS_PWFIELD_MDI_MASK; |
| 2401 | pwfield |= PMD_SHIFT << MIPS_PWFIELD_MDI_SHIFT; |
| 2402 | } |
Markos Chandras | f1014d1 | 2014-07-14 12:47:09 +0100 | [diff] [blame] | 2403 | /* Set the PTEI right shift */ |
| 2404 | ptei = _PAGE_GLOBAL_SHIFT << MIPS_PWFIELD_PTEI_SHIFT; |
| 2405 | pwfield |= ptei; |
| 2406 | write_c0_pwfield(pwfield); |
| 2407 | /* Check whether the PTEI value is supported */ |
| 2408 | back_to_back_c0_hazard(); |
| 2409 | pwfield = read_c0_pwfield(); |
| 2410 | if (((pwfield & MIPS_PWFIELD_PTEI_MASK) << MIPS_PWFIELD_PTEI_SHIFT) |
| 2411 | != ptei) { |
| 2412 | pr_warn("Unsupported PTEI field value: 0x%lx. HTW will not be enabled", |
| 2413 | ptei); |
| 2414 | /* |
| 2415 | * Drop option to avoid HTW being enabled via another path |
| 2416 | * (eg htw_reset()) |
| 2417 | */ |
| 2418 | current_cpu_data.options &= ~MIPS_CPU_HTW; |
| 2419 | return; |
| 2420 | } |
| 2421 | |
| 2422 | pwsize = ilog2(PTRS_PER_PGD) << MIPS_PWSIZE_GDW_SHIFT; |
| 2423 | pwsize |= ilog2(PTRS_PER_PTE) << MIPS_PWSIZE_PTW_SHIFT; |
Paul Burton | cab25bc | 2015-09-22 12:03:37 -0700 | [diff] [blame] | 2424 | if (CONFIG_PGTABLE_LEVELS >= 3) |
| 2425 | pwsize |= ilog2(PTRS_PER_PMD) << MIPS_PWSIZE_MDW_SHIFT; |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 2426 | |
James Hogan | 14bc241 | 2016-04-19 09:25:00 +0100 | [diff] [blame^] | 2427 | pwsize |= ilog2(sizeof(pte_t)/4) << MIPS_PWSIZE_PTEW_SHIFT; |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 2428 | |
Markos Chandras | f1014d1 | 2014-07-14 12:47:09 +0100 | [diff] [blame] | 2429 | write_c0_pwsize(pwsize); |
| 2430 | |
| 2431 | /* Make sure everything is set before we enable the HTW */ |
| 2432 | back_to_back_c0_hazard(); |
| 2433 | |
| 2434 | /* Enable HTW and disable the rest of the pwctl fields */ |
| 2435 | config = 1 << MIPS_PWCTL_PWEN_SHIFT; |
| 2436 | write_c0_pwctl(config); |
| 2437 | pr_info("Hardware Page Table Walker enabled\n"); |
| 2438 | |
| 2439 | print_htw_config(); |
| 2440 | } |
| 2441 | |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 2442 | static void config_xpa_params(void) |
| 2443 | { |
| 2444 | #ifdef CONFIG_XPA |
| 2445 | unsigned int pagegrain; |
| 2446 | |
| 2447 | if (mips_xpa_disabled) { |
| 2448 | pr_info("Extended Physical Addressing (XPA) disabled\n"); |
| 2449 | return; |
| 2450 | } |
| 2451 | |
| 2452 | pagegrain = read_c0_pagegrain(); |
| 2453 | write_c0_pagegrain(pagegrain | PG_ELPA); |
| 2454 | back_to_back_c0_hazard(); |
| 2455 | pagegrain = read_c0_pagegrain(); |
| 2456 | |
| 2457 | if (pagegrain & PG_ELPA) |
| 2458 | pr_info("Extended Physical Addressing (XPA) enabled\n"); |
| 2459 | else |
| 2460 | panic("Extended Physical Addressing (XPA) disabled"); |
| 2461 | #endif |
| 2462 | } |
| 2463 | |
Paul Burton | 00bf1c6 | 2015-09-22 11:42:52 -0700 | [diff] [blame] | 2464 | static void check_pabits(void) |
| 2465 | { |
| 2466 | unsigned long entry; |
| 2467 | unsigned pabits, fillbits; |
| 2468 | |
| 2469 | if (!cpu_has_rixi || !_PAGE_NO_EXEC) { |
| 2470 | /* |
| 2471 | * We'll only be making use of the fact that we can rotate bits |
| 2472 | * into the fill if the CPU supports RIXI, so don't bother |
| 2473 | * probing this for CPUs which don't. |
| 2474 | */ |
| 2475 | return; |
| 2476 | } |
| 2477 | |
| 2478 | write_c0_entrylo0(~0ul); |
| 2479 | back_to_back_c0_hazard(); |
| 2480 | entry = read_c0_entrylo0(); |
| 2481 | |
| 2482 | /* clear all non-PFN bits */ |
| 2483 | entry &= ~((1 << MIPS_ENTRYLO_PFN_SHIFT) - 1); |
| 2484 | entry &= ~(MIPS_ENTRYLO_RI | MIPS_ENTRYLO_XI); |
| 2485 | |
| 2486 | /* find a lower bound on PABITS, and upper bound on fill bits */ |
| 2487 | pabits = fls_long(entry) + 6; |
| 2488 | fillbits = max_t(int, (int)BITS_PER_LONG - pabits, 0); |
| 2489 | |
| 2490 | /* minus the RI & XI bits */ |
| 2491 | fillbits -= min_t(unsigned, fillbits, 2); |
| 2492 | |
| 2493 | if (fillbits >= ilog2(_PAGE_NO_EXEC)) |
| 2494 | fill_includes_sw_bits = true; |
| 2495 | |
| 2496 | pr_debug("Entry* registers contain %u fill bits\n", fillbits); |
| 2497 | } |
| 2498 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 2499 | void build_tlb_refill_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | { |
| 2501 | /* |
| 2502 | * The refill handler is generated per-CPU, multi-node systems |
| 2503 | * may have local storage for it. The other handlers are only |
| 2504 | * needed once. |
| 2505 | */ |
| 2506 | static int run_once = 0; |
| 2507 | |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 2508 | output_pgtable_bits_defines(); |
Paul Burton | 00bf1c6 | 2015-09-22 11:42:52 -0700 | [diff] [blame] | 2509 | check_pabits(); |
Ralf Baechle | a2c763e | 2012-10-16 22:20:26 +0200 | [diff] [blame] | 2510 | |
David Daney | 1ec5632 | 2010-04-28 12:16:18 -0700 | [diff] [blame] | 2511 | #ifdef CONFIG_64BIT |
| 2512 | check_for_high_segbits = current_cpu_data.vmbits > (PGDIR_SHIFT + PGD_ORDER + PAGE_SHIFT - 3); |
| 2513 | #endif |
| 2514 | |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 2515 | switch (current_cpu_type()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2516 | case CPU_R2000: |
| 2517 | case CPU_R3000: |
| 2518 | case CPU_R3000A: |
| 2519 | case CPU_R3081E: |
| 2520 | case CPU_TX3912: |
| 2521 | case CPU_TX3922: |
| 2522 | case CPU_TX3927: |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 2523 | #ifndef CONFIG_MIPS_PGD_C0_CONTEXT |
Huacai Chen | 8759934 | 2013-03-17 11:49:38 +0000 | [diff] [blame] | 2524 | if (cpu_has_local_ebase) |
| 2525 | build_r3000_tlb_refill_handler(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2526 | if (!run_once) { |
Huacai Chen | 8759934 | 2013-03-17 11:49:38 +0000 | [diff] [blame] | 2527 | if (!cpu_has_local_ebase) |
| 2528 | build_r3000_tlb_refill_handler(); |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 2529 | build_setup_pgd(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2530 | build_r3000_tlb_load_handler(); |
| 2531 | build_r3000_tlb_store_handler(); |
| 2532 | build_r3000_tlb_modify_handler(); |
Jonas Gorski | a3d9086 | 2013-06-21 17:48:48 +0000 | [diff] [blame] | 2533 | flush_tlb_handlers(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2534 | run_once++; |
| 2535 | } |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 2536 | #else |
| 2537 | panic("No R3000 TLB refill handler"); |
| 2538 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2539 | break; |
| 2540 | |
| 2541 | case CPU_R6000: |
| 2542 | case CPU_R6000A: |
| 2543 | panic("No R6000 TLB refill handler yet"); |
| 2544 | break; |
| 2545 | |
| 2546 | case CPU_R8000: |
| 2547 | panic("No R8000 TLB refill handler yet"); |
| 2548 | break; |
| 2549 | |
| 2550 | default: |
Huacai Chen | 380cd58 | 2016-03-03 09:45:12 +0800 | [diff] [blame] | 2551 | if (cpu_has_ldpte) |
| 2552 | setup_pw(); |
| 2553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2554 | if (!run_once) { |
David Daney | bf28607 | 2011-07-05 16:34:46 -0700 | [diff] [blame] | 2555 | scratch_reg = allocate_kscratch(); |
Jayachandran C | f4ae17a | 2013-09-25 16:28:04 +0530 | [diff] [blame] | 2556 | build_setup_pgd(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2557 | build_r4000_tlb_load_handler(); |
| 2558 | build_r4000_tlb_store_handler(); |
| 2559 | build_r4000_tlb_modify_handler(); |
Huacai Chen | 380cd58 | 2016-03-03 09:45:12 +0800 | [diff] [blame] | 2560 | if (cpu_has_ldpte) |
| 2561 | build_loongson3_tlb_refill_handler(); |
| 2562 | else if (!cpu_has_local_ebase) |
Huacai Chen | 8759934 | 2013-03-17 11:49:38 +0000 | [diff] [blame] | 2563 | build_r4000_tlb_refill_handler(); |
Jonas Gorski | a3d9086 | 2013-06-21 17:48:48 +0000 | [diff] [blame] | 2564 | flush_tlb_handlers(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | run_once++; |
| 2566 | } |
Huacai Chen | 8759934 | 2013-03-17 11:49:38 +0000 | [diff] [blame] | 2567 | if (cpu_has_local_ebase) |
| 2568 | build_r4000_tlb_refill_handler(); |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 2569 | if (cpu_has_xpa) |
| 2570 | config_xpa_params(); |
Markos Chandras | f1014d1 | 2014-07-14 12:47:09 +0100 | [diff] [blame] | 2571 | if (cpu_has_htw) |
| 2572 | config_htw_params(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2573 | } |
| 2574 | } |