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 | * |
Thiemo Seufer | 115f2a4 | 2006-07-09 01:47:06 +0100 | [diff] [blame] | 8 | * Copyright (C) 2004,2005,2006 by Thiemo Seufer |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 9 | * Copyright (C) 2005, 2007 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) |
| 11 | * |
| 12 | * ... and the days got worse and worse and now you see |
| 13 | * I've gone completly out of my mind. |
| 14 | * |
| 15 | * They're coming to take me a away haha |
| 16 | * they're coming to take me a away hoho hihi haha |
| 17 | * to the funny farm where code is beautiful all the time ... |
| 18 | * |
| 19 | * (Condolences to Napoleon XIV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/kernel.h> |
| 23 | #include <linux/types.h> |
| 24 | #include <linux/string.h> |
| 25 | #include <linux/init.h> |
| 26 | |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 27 | #include <asm/bugs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <asm/mmu_context.h> |
| 29 | #include <asm/inst.h> |
| 30 | #include <asm/elf.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <asm/war.h> |
| 32 | |
Ralf Baechle | aeffdbb | 2007-10-11 23:46:14 +0100 | [diff] [blame] | 33 | static inline int r45k_bvahwbug(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | { |
| 35 | /* XXX: We should probe for the presence of this bug, but we don't. */ |
| 36 | return 0; |
| 37 | } |
| 38 | |
Ralf Baechle | aeffdbb | 2007-10-11 23:46:14 +0100 | [diff] [blame] | 39 | static inline int r4k_250MHZhwbug(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | { |
| 41 | /* XXX: We should probe for the presence of this bug, but we don't. */ |
| 42 | return 0; |
| 43 | } |
| 44 | |
Ralf Baechle | aeffdbb | 2007-10-11 23:46:14 +0100 | [diff] [blame] | 45 | static inline int __maybe_unused bcm1250_m3_war(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
| 47 | return BCM1250_M3_WAR; |
| 48 | } |
| 49 | |
Ralf Baechle | aeffdbb | 2007-10-11 23:46:14 +0100 | [diff] [blame] | 50 | static inline int __maybe_unused r10000_llsc_war(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
| 52 | return R10000_LLSC_WAR; |
| 53 | } |
| 54 | |
| 55 | /* |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 56 | * Found by experiment: At least some revisions of the 4kc throw under |
| 57 | * some circumstances a machine check exception, triggered by invalid |
| 58 | * values in the index register. Delaying the tlbp instruction until |
| 59 | * after the next branch, plus adding an additional nop in front of |
| 60 | * tlbwi/tlbwr avoids the invalid index register values. Nobody knows |
| 61 | * why; it's not an issue caused by the core RTL. |
| 62 | * |
| 63 | */ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 64 | static int __init m4kc_tlbp_war(void) |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 65 | { |
| 66 | return (current_cpu_data.processor_id & 0xffff00) == |
| 67 | (PRID_COMP_MIPS | PRID_IMP_4KC); |
| 68 | } |
| 69 | |
| 70 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | * A little micro-assembler, intended for TLB refill handler |
| 72 | * synthesizing. It is intentionally kept simple, does only support |
| 73 | * a subset of instructions, and does not try to hide pipeline effects |
| 74 | * like branch delay slots. |
| 75 | */ |
| 76 | |
| 77 | enum fields |
| 78 | { |
| 79 | RS = 0x001, |
| 80 | RT = 0x002, |
| 81 | RD = 0x004, |
| 82 | RE = 0x008, |
| 83 | SIMM = 0x010, |
| 84 | UIMM = 0x020, |
| 85 | BIMM = 0x040, |
| 86 | JIMM = 0x080, |
| 87 | FUNC = 0x100, |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 88 | SET = 0x200 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | }; |
| 90 | |
Thiemo Seufer | 603c338 | 2007-09-05 12:11:22 +0100 | [diff] [blame] | 91 | #define OP_MASK 0x3f |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | #define OP_SH 26 |
| 93 | #define RS_MASK 0x1f |
| 94 | #define RS_SH 21 |
| 95 | #define RT_MASK 0x1f |
| 96 | #define RT_SH 16 |
| 97 | #define RD_MASK 0x1f |
| 98 | #define RD_SH 11 |
| 99 | #define RE_MASK 0x1f |
| 100 | #define RE_SH 6 |
| 101 | #define IMM_MASK 0xffff |
| 102 | #define IMM_SH 0 |
| 103 | #define JIMM_MASK 0x3ffffff |
| 104 | #define JIMM_SH 0 |
Thiemo Seufer | 603c338 | 2007-09-05 12:11:22 +0100 | [diff] [blame] | 105 | #define FUNC_MASK 0x3f |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | #define FUNC_SH 0 |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 107 | #define SET_MASK 0x7 |
| 108 | #define SET_SH 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
| 110 | enum opcode { |
| 111 | insn_invalid, |
| 112 | insn_addu, insn_addiu, insn_and, insn_andi, insn_beq, |
| 113 | insn_beql, insn_bgez, insn_bgezl, insn_bltz, insn_bltzl, |
| 114 | insn_bne, insn_daddu, insn_daddiu, insn_dmfc0, insn_dmtc0, |
Ralf Baechle | 242954b | 2006-10-24 02:29:01 +0100 | [diff] [blame] | 115 | insn_dsll, insn_dsll32, insn_dsra, insn_dsrl, insn_dsrl32, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | insn_dsubu, insn_eret, insn_j, insn_jal, insn_jr, insn_ld, |
| 117 | insn_ll, insn_lld, insn_lui, insn_lw, insn_mfc0, insn_mtc0, |
| 118 | insn_ori, insn_rfe, insn_sc, insn_scd, insn_sd, insn_sll, |
| 119 | insn_sra, insn_srl, insn_subu, insn_sw, insn_tlbp, insn_tlbwi, |
| 120 | insn_tlbwr, insn_xor, insn_xori |
| 121 | }; |
| 122 | |
| 123 | struct insn { |
| 124 | enum opcode opcode; |
| 125 | u32 match; |
| 126 | enum fields fields; |
| 127 | }; |
| 128 | |
| 129 | /* This macro sets the non-variable bits of an instruction. */ |
| 130 | #define M(a, b, c, d, e, f) \ |
| 131 | ((a) << OP_SH \ |
| 132 | | (b) << RS_SH \ |
| 133 | | (c) << RT_SH \ |
| 134 | | (d) << RD_SH \ |
| 135 | | (e) << RE_SH \ |
| 136 | | (f) << FUNC_SH) |
| 137 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 138 | static struct insn insn_table[] __initdata = { |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 139 | { insn_addiu, M(addiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, |
| 140 | { insn_addu, M(spec_op, 0, 0, 0, 0, addu_op), RS | RT | RD }, |
| 141 | { insn_and, M(spec_op, 0, 0, 0, 0, and_op), RS | RT | RD }, |
| 142 | { insn_andi, M(andi_op, 0, 0, 0, 0, 0), RS | RT | UIMM }, |
| 143 | { insn_beq, M(beq_op, 0, 0, 0, 0, 0), RS | RT | BIMM }, |
| 144 | { insn_beql, M(beql_op, 0, 0, 0, 0, 0), RS | RT | BIMM }, |
| 145 | { insn_bgez, M(bcond_op, 0, bgez_op, 0, 0, 0), RS | BIMM }, |
| 146 | { insn_bgezl, M(bcond_op, 0, bgezl_op, 0, 0, 0), RS | BIMM }, |
| 147 | { insn_bltz, M(bcond_op, 0, bltz_op, 0, 0, 0), RS | BIMM }, |
| 148 | { insn_bltzl, M(bcond_op, 0, bltzl_op, 0, 0, 0), RS | BIMM }, |
| 149 | { insn_bne, M(bne_op, 0, 0, 0, 0, 0), RS | RT | BIMM }, |
| 150 | { insn_daddiu, M(daddiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, |
| 151 | { insn_daddu, M(spec_op, 0, 0, 0, 0, daddu_op), RS | RT | RD }, |
| 152 | { insn_dmfc0, M(cop0_op, dmfc_op, 0, 0, 0, 0), RT | RD | SET}, |
| 153 | { insn_dmtc0, M(cop0_op, dmtc_op, 0, 0, 0, 0), RT | RD | SET}, |
| 154 | { insn_dsll, M(spec_op, 0, 0, 0, 0, dsll_op), RT | RD | RE }, |
| 155 | { insn_dsll32, M(spec_op, 0, 0, 0, 0, dsll32_op), RT | RD | RE }, |
| 156 | { insn_dsra, M(spec_op, 0, 0, 0, 0, dsra_op), RT | RD | RE }, |
| 157 | { insn_dsrl, M(spec_op, 0, 0, 0, 0, dsrl_op), RT | RD | RE }, |
| 158 | { insn_dsrl32, M(spec_op, 0, 0, 0, 0, dsrl32_op), RT | RD | RE }, |
| 159 | { insn_dsubu, M(spec_op, 0, 0, 0, 0, dsubu_op), RS | RT | RD }, |
| 160 | { insn_eret, M(cop0_op, cop_op, 0, 0, 0, eret_op), 0 }, |
| 161 | { insn_j, M(j_op, 0, 0, 0, 0, 0), JIMM }, |
| 162 | { insn_jal, M(jal_op, 0, 0, 0, 0, 0), JIMM }, |
| 163 | { insn_jr, M(spec_op, 0, 0, 0, 0, jr_op), RS }, |
| 164 | { insn_ld, M(ld_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, |
| 165 | { insn_ll, M(ll_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, |
| 166 | { insn_lld, M(lld_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, |
| 167 | { insn_lui, M(lui_op, 0, 0, 0, 0, 0), RT | SIMM }, |
| 168 | { insn_lw, M(lw_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, |
| 169 | { insn_mfc0, M(cop0_op, mfc_op, 0, 0, 0, 0), RT | RD | SET}, |
| 170 | { insn_mtc0, M(cop0_op, mtc_op, 0, 0, 0, 0), RT | RD | SET}, |
| 171 | { insn_ori, M(ori_op, 0, 0, 0, 0, 0), RS | RT | UIMM }, |
| 172 | { insn_rfe, M(cop0_op, cop_op, 0, 0, 0, rfe_op), 0 }, |
| 173 | { insn_sc, M(sc_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, |
| 174 | { insn_scd, M(scd_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, |
| 175 | { insn_sd, M(sd_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, |
| 176 | { insn_sll, M(spec_op, 0, 0, 0, 0, sll_op), RT | RD | RE }, |
| 177 | { insn_sra, M(spec_op, 0, 0, 0, 0, sra_op), RT | RD | RE }, |
| 178 | { insn_srl, M(spec_op, 0, 0, 0, 0, srl_op), RT | RD | RE }, |
| 179 | { insn_subu, M(spec_op, 0, 0, 0, 0, subu_op), RS | RT | RD }, |
| 180 | { insn_sw, M(sw_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, |
| 181 | { insn_tlbp, M(cop0_op, cop_op, 0, 0, 0, tlbp_op), 0 }, |
| 182 | { insn_tlbwi, M(cop0_op, cop_op, 0, 0, 0, tlbwi_op), 0 }, |
| 183 | { insn_tlbwr, M(cop0_op, cop_op, 0, 0, 0, tlbwr_op), 0 }, |
| 184 | { insn_xor, M(spec_op, 0, 0, 0, 0, xor_op), RS | RT | RD }, |
| 185 | { insn_xori, M(xori_op, 0, 0, 0, 0, 0), RS | RT | UIMM }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | { insn_invalid, 0, 0 } |
| 187 | }; |
| 188 | |
| 189 | #undef M |
| 190 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 191 | static u32 __init build_rs(u32 arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
| 193 | if (arg & ~RS_MASK) |
| 194 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); |
| 195 | |
| 196 | return (arg & RS_MASK) << RS_SH; |
| 197 | } |
| 198 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 199 | static u32 __init build_rt(u32 arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
| 201 | if (arg & ~RT_MASK) |
| 202 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); |
| 203 | |
| 204 | return (arg & RT_MASK) << RT_SH; |
| 205 | } |
| 206 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 207 | static u32 __init build_rd(u32 arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | { |
| 209 | if (arg & ~RD_MASK) |
| 210 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); |
| 211 | |
| 212 | return (arg & RD_MASK) << RD_SH; |
| 213 | } |
| 214 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 215 | static u32 __init build_re(u32 arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | { |
| 217 | if (arg & ~RE_MASK) |
| 218 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); |
| 219 | |
| 220 | return (arg & RE_MASK) << RE_SH; |
| 221 | } |
| 222 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 223 | static u32 __init build_simm(s32 arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | { |
| 225 | if (arg > 0x7fff || arg < -0x8000) |
| 226 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); |
| 227 | |
| 228 | return arg & 0xffff; |
| 229 | } |
| 230 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 231 | static u32 __init build_uimm(u32 arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
| 233 | if (arg & ~IMM_MASK) |
| 234 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); |
| 235 | |
| 236 | return arg & IMM_MASK; |
| 237 | } |
| 238 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 239 | static u32 __init build_bimm(s32 arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | { |
| 241 | if (arg > 0x1ffff || arg < -0x20000) |
| 242 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); |
| 243 | |
| 244 | if (arg & 0x3) |
| 245 | printk(KERN_WARNING "Invalid TLB synthesizer branch target\n"); |
| 246 | |
| 247 | return ((arg < 0) ? (1 << 15) : 0) | ((arg >> 2) & 0x7fff); |
| 248 | } |
| 249 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 250 | static u32 __init build_jimm(u32 arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | { |
| 252 | if (arg & ~((JIMM_MASK) << 2)) |
| 253 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); |
| 254 | |
| 255 | return (arg >> 2) & JIMM_MASK; |
| 256 | } |
| 257 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 258 | static u32 __init build_func(u32 arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | { |
| 260 | if (arg & ~FUNC_MASK) |
| 261 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); |
| 262 | |
| 263 | return arg & FUNC_MASK; |
| 264 | } |
| 265 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 266 | static u32 __init build_set(u32 arg) |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 267 | { |
| 268 | if (arg & ~SET_MASK) |
| 269 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); |
| 270 | |
| 271 | return arg & SET_MASK; |
| 272 | } |
| 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | /* |
| 275 | * The order of opcode arguments is implicitly left to right, |
| 276 | * starting with RS and ending with FUNC or IMM. |
| 277 | */ |
| 278 | static void __init build_insn(u32 **buf, enum opcode opc, ...) |
| 279 | { |
| 280 | struct insn *ip = NULL; |
| 281 | unsigned int i; |
| 282 | va_list ap; |
| 283 | u32 op; |
| 284 | |
| 285 | for (i = 0; insn_table[i].opcode != insn_invalid; i++) |
| 286 | if (insn_table[i].opcode == opc) { |
| 287 | ip = &insn_table[i]; |
| 288 | break; |
| 289 | } |
| 290 | |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 291 | if (!ip || (opc == insn_daddiu && r4k_daddiu_bug())) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | panic("Unsupported TLB synthesizer instruction %d", opc); |
| 293 | |
| 294 | op = ip->match; |
| 295 | va_start(ap, opc); |
| 296 | if (ip->fields & RS) op |= build_rs(va_arg(ap, u32)); |
| 297 | if (ip->fields & RT) op |= build_rt(va_arg(ap, u32)); |
| 298 | if (ip->fields & RD) op |= build_rd(va_arg(ap, u32)); |
| 299 | if (ip->fields & RE) op |= build_re(va_arg(ap, u32)); |
| 300 | if (ip->fields & SIMM) op |= build_simm(va_arg(ap, s32)); |
| 301 | if (ip->fields & UIMM) op |= build_uimm(va_arg(ap, u32)); |
| 302 | if (ip->fields & BIMM) op |= build_bimm(va_arg(ap, s32)); |
| 303 | if (ip->fields & JIMM) op |= build_jimm(va_arg(ap, u32)); |
| 304 | if (ip->fields & FUNC) op |= build_func(va_arg(ap, u32)); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 305 | if (ip->fields & SET) op |= build_set(va_arg(ap, u32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | va_end(ap); |
| 307 | |
| 308 | **buf = op; |
| 309 | (*buf)++; |
| 310 | } |
| 311 | |
| 312 | #define I_u1u2u3(op) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 313 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | unsigned int b, unsigned int c) \ |
| 315 | { \ |
| 316 | build_insn(buf, insn##op, a, b, c); \ |
| 317 | } |
| 318 | |
| 319 | #define I_u2u1u3(op) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 320 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | unsigned int b, unsigned int c) \ |
| 322 | { \ |
| 323 | build_insn(buf, insn##op, b, a, c); \ |
| 324 | } |
| 325 | |
| 326 | #define I_u3u1u2(op) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 327 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | unsigned int b, unsigned int c) \ |
| 329 | { \ |
| 330 | build_insn(buf, insn##op, b, c, a); \ |
| 331 | } |
| 332 | |
| 333 | #define I_u1u2s3(op) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 334 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | unsigned int b, signed int c) \ |
| 336 | { \ |
| 337 | build_insn(buf, insn##op, a, b, c); \ |
| 338 | } |
| 339 | |
| 340 | #define I_u2s3u1(op) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 341 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | signed int b, unsigned int c) \ |
| 343 | { \ |
| 344 | build_insn(buf, insn##op, c, a, b); \ |
| 345 | } |
| 346 | |
| 347 | #define I_u2u1s3(op) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 348 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | unsigned int b, signed int c) \ |
| 350 | { \ |
| 351 | build_insn(buf, insn##op, b, a, c); \ |
| 352 | } |
| 353 | |
| 354 | #define I_u1u2(op) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 355 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | unsigned int b) \ |
| 357 | { \ |
| 358 | build_insn(buf, insn##op, a, b); \ |
| 359 | } |
| 360 | |
| 361 | #define I_u1s2(op) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 362 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | signed int b) \ |
| 364 | { \ |
| 365 | build_insn(buf, insn##op, a, b); \ |
| 366 | } |
| 367 | |
| 368 | #define I_u1(op) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 369 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | { \ |
| 371 | build_insn(buf, insn##op, a); \ |
| 372 | } |
| 373 | |
| 374 | #define I_0(op) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 375 | static void __init __maybe_unused i##op(u32 **buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | { \ |
| 377 | build_insn(buf, insn##op); \ |
| 378 | } |
| 379 | |
| 380 | I_u2u1s3(_addiu); |
| 381 | I_u3u1u2(_addu); |
| 382 | I_u2u1u3(_andi); |
| 383 | I_u3u1u2(_and); |
| 384 | I_u1u2s3(_beq); |
| 385 | I_u1u2s3(_beql); |
| 386 | I_u1s2(_bgez); |
| 387 | I_u1s2(_bgezl); |
| 388 | I_u1s2(_bltz); |
| 389 | I_u1s2(_bltzl); |
| 390 | I_u1u2s3(_bne); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 391 | I_u1u2u3(_dmfc0); |
| 392 | I_u1u2u3(_dmtc0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | I_u2u1s3(_daddiu); |
| 394 | I_u3u1u2(_daddu); |
| 395 | I_u2u1u3(_dsll); |
| 396 | I_u2u1u3(_dsll32); |
| 397 | I_u2u1u3(_dsra); |
| 398 | I_u2u1u3(_dsrl); |
Ralf Baechle | 242954b | 2006-10-24 02:29:01 +0100 | [diff] [blame] | 399 | I_u2u1u3(_dsrl32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | I_u3u1u2(_dsubu); |
| 401 | I_0(_eret); |
| 402 | I_u1(_j); |
| 403 | I_u1(_jal); |
| 404 | I_u1(_jr); |
| 405 | I_u2s3u1(_ld); |
| 406 | I_u2s3u1(_ll); |
| 407 | I_u2s3u1(_lld); |
| 408 | I_u1s2(_lui); |
| 409 | I_u2s3u1(_lw); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 410 | I_u1u2u3(_mfc0); |
| 411 | I_u1u2u3(_mtc0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | I_u2u1u3(_ori); |
| 413 | I_0(_rfe); |
| 414 | I_u2s3u1(_sc); |
| 415 | I_u2s3u1(_scd); |
| 416 | I_u2s3u1(_sd); |
| 417 | I_u2u1u3(_sll); |
| 418 | I_u2u1u3(_sra); |
| 419 | I_u2u1u3(_srl); |
| 420 | I_u3u1u2(_subu); |
| 421 | I_u2s3u1(_sw); |
| 422 | I_0(_tlbp); |
| 423 | I_0(_tlbwi); |
| 424 | I_0(_tlbwr); |
| 425 | I_u3u1u2(_xor) |
| 426 | I_u2u1u3(_xori); |
| 427 | |
| 428 | /* |
| 429 | * handling labels |
| 430 | */ |
| 431 | |
| 432 | enum label_id { |
| 433 | label_invalid, |
| 434 | label_second_part, |
| 435 | label_leave, |
Atsushi Nemoto | 656be92 | 2006-10-26 00:08:31 +0900 | [diff] [blame] | 436 | #ifdef MODULE_START |
| 437 | label_module_alloc, |
| 438 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | label_vmalloc, |
| 440 | label_vmalloc_done, |
| 441 | label_tlbw_hazard, |
| 442 | label_split, |
| 443 | label_nopage_tlbl, |
| 444 | label_nopage_tlbs, |
| 445 | label_nopage_tlbm, |
| 446 | label_smp_pgtable_change, |
| 447 | label_r3000_write_probe_fail, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | }; |
| 449 | |
| 450 | struct label { |
| 451 | u32 *addr; |
| 452 | enum label_id lab; |
| 453 | }; |
| 454 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 455 | static void __init build_label(struct label **lab, u32 *addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | enum label_id l) |
| 457 | { |
| 458 | (*lab)->addr = addr; |
| 459 | (*lab)->lab = l; |
| 460 | (*lab)++; |
| 461 | } |
| 462 | |
| 463 | #define L_LA(lb) \ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 464 | static inline void __init l##lb(struct label **lab, u32 *addr) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { \ |
| 466 | build_label(lab, addr, label##lb); \ |
| 467 | } |
| 468 | |
| 469 | L_LA(_second_part) |
| 470 | L_LA(_leave) |
Atsushi Nemoto | 656be92 | 2006-10-26 00:08:31 +0900 | [diff] [blame] | 471 | #ifdef MODULE_START |
| 472 | L_LA(_module_alloc) |
| 473 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | L_LA(_vmalloc) |
| 475 | L_LA(_vmalloc_done) |
| 476 | L_LA(_tlbw_hazard) |
| 477 | L_LA(_split) |
| 478 | L_LA(_nopage_tlbl) |
| 479 | L_LA(_nopage_tlbs) |
| 480 | L_LA(_nopage_tlbm) |
| 481 | L_LA(_smp_pgtable_change) |
| 482 | L_LA(_r3000_write_probe_fail) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
| 484 | /* convenience macros for instructions */ |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 485 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | # define i_LW(buf, rs, rt, off) i_ld(buf, rs, rt, off) |
| 487 | # define i_SW(buf, rs, rt, off) i_sd(buf, rs, rt, off) |
| 488 | # define i_SLL(buf, rs, rt, sh) i_dsll(buf, rs, rt, sh) |
| 489 | # define i_SRA(buf, rs, rt, sh) i_dsra(buf, rs, rt, sh) |
| 490 | # define i_SRL(buf, rs, rt, sh) i_dsrl(buf, rs, rt, sh) |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 491 | # define i_MFC0(buf, rt, rd...) i_dmfc0(buf, rt, rd) |
| 492 | # define i_MTC0(buf, rt, rd...) i_dmtc0(buf, rt, rd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | # define i_ADDIU(buf, rs, rt, val) i_daddiu(buf, rs, rt, val) |
| 494 | # define i_ADDU(buf, rs, rt, rd) i_daddu(buf, rs, rt, rd) |
| 495 | # define i_SUBU(buf, rs, rt, rd) i_dsubu(buf, rs, rt, rd) |
| 496 | # define i_LL(buf, rs, rt, off) i_lld(buf, rs, rt, off) |
| 497 | # define i_SC(buf, rs, rt, off) i_scd(buf, rs, rt, off) |
| 498 | #else |
| 499 | # define i_LW(buf, rs, rt, off) i_lw(buf, rs, rt, off) |
| 500 | # define i_SW(buf, rs, rt, off) i_sw(buf, rs, rt, off) |
| 501 | # define i_SLL(buf, rs, rt, sh) i_sll(buf, rs, rt, sh) |
| 502 | # define i_SRA(buf, rs, rt, sh) i_sra(buf, rs, rt, sh) |
| 503 | # define i_SRL(buf, rs, rt, sh) i_srl(buf, rs, rt, sh) |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 504 | # define i_MFC0(buf, rt, rd...) i_mfc0(buf, rt, rd) |
| 505 | # define i_MTC0(buf, rt, rd...) i_mtc0(buf, rt, rd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | # define i_ADDIU(buf, rs, rt, val) i_addiu(buf, rs, rt, val) |
| 507 | # define i_ADDU(buf, rs, rt, rd) i_addu(buf, rs, rt, rd) |
| 508 | # define i_SUBU(buf, rs, rt, rd) i_subu(buf, rs, rt, rd) |
| 509 | # define i_LL(buf, rs, rt, off) i_ll(buf, rs, rt, off) |
| 510 | # define i_SC(buf, rs, rt, off) i_sc(buf, rs, rt, off) |
| 511 | #endif |
| 512 | |
| 513 | #define i_b(buf, off) i_beq(buf, 0, 0, off) |
| 514 | #define i_beqz(buf, rs, off) i_beq(buf, rs, 0, off) |
| 515 | #define i_beqzl(buf, rs, off) i_beql(buf, rs, 0, off) |
| 516 | #define i_bnez(buf, rs, off) i_bne(buf, rs, 0, off) |
| 517 | #define i_bnezl(buf, rs, off) i_bnel(buf, rs, 0, off) |
| 518 | #define i_move(buf, a, b) i_ADDU(buf, a, 0, b) |
| 519 | #define i_nop(buf) i_sll(buf, 0, 0, 0) |
| 520 | #define i_ssnop(buf) i_sll(buf, 0, 0, 1) |
| 521 | #define i_ehb(buf) i_sll(buf, 0, 0, 3) |
| 522 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 523 | static int __init __maybe_unused in_compat_space_p(long addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | { |
| 525 | /* Is this address in 32bit compat space? */ |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 526 | #ifdef CONFIG_64BIT |
Ralf Baechle | 3ef33e6 | 2005-07-08 20:10:17 +0000 | [diff] [blame] | 527 | return (((addr) & 0xffffffff00000000L) == 0xffffffff00000000L); |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 528 | #else |
| 529 | return 1; |
| 530 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | } |
| 532 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 533 | static int __init __maybe_unused rel_highest(long val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | { |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 535 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | return ((((val + 0x800080008000L) >> 48) & 0xffff) ^ 0x8000) - 0x8000; |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 537 | #else |
| 538 | return 0; |
| 539 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | } |
| 541 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 542 | static int __init __maybe_unused rel_higher(long val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | { |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 544 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | return ((((val + 0x80008000L) >> 32) & 0xffff) ^ 0x8000) - 0x8000; |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 546 | #else |
| 547 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | #endif |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 549 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 551 | static int __init rel_hi(long val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | { |
| 553 | return ((((val + 0x8000L) >> 16) & 0xffff) ^ 0x8000) - 0x8000; |
| 554 | } |
| 555 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 556 | static int __init rel_lo(long val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | { |
| 558 | return ((val & 0xffff) ^ 0x8000) - 0x8000; |
| 559 | } |
| 560 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 561 | static void __init i_LA_mostly(u32 **buf, unsigned int rs, long addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | if (!in_compat_space_p(addr)) { |
| 564 | i_lui(buf, rs, rel_highest(addr)); |
| 565 | if (rel_higher(addr)) |
| 566 | i_daddiu(buf, rs, rs, rel_higher(addr)); |
| 567 | if (rel_hi(addr)) { |
| 568 | i_dsll(buf, rs, rs, 16); |
| 569 | i_daddiu(buf, rs, rs, rel_hi(addr)); |
| 570 | i_dsll(buf, rs, rs, 16); |
| 571 | } else |
| 572 | i_dsll32(buf, rs, rs, 0); |
| 573 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | i_lui(buf, rs, rel_hi(addr)); |
| 575 | } |
| 576 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 577 | static void __init __maybe_unused i_LA(u32 **buf, unsigned int rs, long addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | { |
| 579 | i_LA_mostly(buf, rs, addr); |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 580 | if (rel_lo(addr)) { |
| 581 | if (!in_compat_space_p(addr)) |
| 582 | i_daddiu(buf, rs, rs, rel_lo(addr)); |
| 583 | else |
| 584 | i_addiu(buf, rs, rs, rel_lo(addr)); |
| 585 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | /* |
| 589 | * handle relocations |
| 590 | */ |
| 591 | |
| 592 | struct reloc { |
| 593 | u32 *addr; |
| 594 | unsigned int type; |
| 595 | enum label_id lab; |
| 596 | }; |
| 597 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 598 | static void __init r_mips_pc16(struct reloc **rel, u32 *addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | enum label_id l) |
| 600 | { |
| 601 | (*rel)->addr = addr; |
| 602 | (*rel)->type = R_MIPS_PC16; |
| 603 | (*rel)->lab = l; |
| 604 | (*rel)++; |
| 605 | } |
| 606 | |
| 607 | static inline void __resolve_relocs(struct reloc *rel, struct label *lab) |
| 608 | { |
| 609 | long laddr = (long)lab->addr; |
| 610 | long raddr = (long)rel->addr; |
| 611 | |
| 612 | switch (rel->type) { |
| 613 | case R_MIPS_PC16: |
| 614 | *rel->addr |= build_bimm(laddr - (raddr + 4)); |
| 615 | break; |
| 616 | |
| 617 | default: |
| 618 | panic("Unsupported TLB synthesizer relocation %d", |
| 619 | rel->type); |
| 620 | } |
| 621 | } |
| 622 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 623 | static void __init resolve_relocs(struct reloc *rel, struct label *lab) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | { |
| 625 | struct label *l; |
| 626 | |
| 627 | for (; rel->lab != label_invalid; rel++) |
| 628 | for (l = lab; l->lab != label_invalid; l++) |
| 629 | if (rel->lab == l->lab) |
| 630 | __resolve_relocs(rel, l); |
| 631 | } |
| 632 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 633 | static void __init move_relocs(struct reloc *rel, u32 *first, u32 *end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | long off) |
| 635 | { |
| 636 | for (; rel->lab != label_invalid; rel++) |
| 637 | if (rel->addr >= first && rel->addr < end) |
| 638 | rel->addr += off; |
| 639 | } |
| 640 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 641 | static void __init move_labels(struct label *lab, u32 *first, u32 *end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | long off) |
| 643 | { |
| 644 | for (; lab->lab != label_invalid; lab++) |
| 645 | if (lab->addr >= first && lab->addr < end) |
| 646 | lab->addr += off; |
| 647 | } |
| 648 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 649 | static void __init copy_handler(struct reloc *rel, struct label *lab, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | u32 *first, u32 *end, u32 *target) |
| 651 | { |
| 652 | long off = (long)(target - first); |
| 653 | |
| 654 | memcpy(target, first, (end - first) * sizeof(u32)); |
| 655 | |
| 656 | move_relocs(rel, first, end, off); |
| 657 | move_labels(lab, first, end, off); |
| 658 | } |
| 659 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 660 | static int __init __maybe_unused insn_has_bdelay(struct reloc *rel, |
David Rientjes | e8b6d40 | 2007-05-10 22:51:05 -0700 | [diff] [blame] | 661 | u32 *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | { |
| 663 | for (; rel->lab != label_invalid; rel++) { |
| 664 | if (rel->addr == addr |
| 665 | && (rel->type == R_MIPS_PC16 |
| 666 | || rel->type == R_MIPS_26)) |
| 667 | return 1; |
| 668 | } |
| 669 | |
| 670 | return 0; |
| 671 | } |
| 672 | |
| 673 | /* convenience functions for labeled branches */ |
David Rientjes | e8b6d40 | 2007-05-10 22:51:05 -0700 | [diff] [blame] | 674 | static void __init __maybe_unused |
Ralf Baechle | 1443e48 | 2006-03-08 15:37:26 +0000 | [diff] [blame] | 675 | il_bltz(u32 **p, struct reloc **r, unsigned int reg, enum label_id l) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | { |
| 677 | r_mips_pc16(r, *p, l); |
| 678 | i_bltz(p, reg, 0); |
| 679 | } |
| 680 | |
David Rientjes | e8b6d40 | 2007-05-10 22:51:05 -0700 | [diff] [blame] | 681 | static void __init __maybe_unused il_b(u32 **p, struct reloc **r, |
| 682 | enum label_id l) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | { |
| 684 | r_mips_pc16(r, *p, l); |
| 685 | i_b(p, 0); |
| 686 | } |
| 687 | |
Ralf Baechle | 1443e48 | 2006-03-08 15:37:26 +0000 | [diff] [blame] | 688 | static void __init il_beqz(u32 **p, struct reloc **r, unsigned int reg, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | enum label_id l) |
| 690 | { |
| 691 | r_mips_pc16(r, *p, l); |
| 692 | i_beqz(p, reg, 0); |
| 693 | } |
| 694 | |
David Rientjes | e8b6d40 | 2007-05-10 22:51:05 -0700 | [diff] [blame] | 695 | static void __init __maybe_unused |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | il_beqzl(u32 **p, struct reloc **r, unsigned int reg, enum label_id l) |
| 697 | { |
| 698 | r_mips_pc16(r, *p, l); |
| 699 | i_beqzl(p, reg, 0); |
| 700 | } |
| 701 | |
Ralf Baechle | 1443e48 | 2006-03-08 15:37:26 +0000 | [diff] [blame] | 702 | static void __init il_bnez(u32 **p, struct reloc **r, unsigned int reg, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | enum label_id l) |
| 704 | { |
| 705 | r_mips_pc16(r, *p, l); |
| 706 | i_bnez(p, reg, 0); |
| 707 | } |
| 708 | |
Ralf Baechle | 1443e48 | 2006-03-08 15:37:26 +0000 | [diff] [blame] | 709 | static void __init il_bgezl(u32 **p, struct reloc **r, unsigned int reg, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | enum label_id l) |
| 711 | { |
| 712 | r_mips_pc16(r, *p, l); |
| 713 | i_bgezl(p, reg, 0); |
| 714 | } |
| 715 | |
David Rientjes | e8b6d40 | 2007-05-10 22:51:05 -0700 | [diff] [blame] | 716 | static void __init __maybe_unused |
Atsushi Nemoto | 656be92 | 2006-10-26 00:08:31 +0900 | [diff] [blame] | 717 | il_bgez(u32 **p, struct reloc **r, unsigned int reg, enum label_id l) |
| 718 | { |
| 719 | r_mips_pc16(r, *p, l); |
| 720 | i_bgez(p, reg, 0); |
| 721 | } |
| 722 | |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame^] | 723 | /* |
| 724 | * For debug purposes. |
| 725 | */ |
| 726 | static inline void dump_handler(const u32 *handler, int count) |
| 727 | { |
| 728 | int i; |
| 729 | |
| 730 | pr_debug("\t.set push\n"); |
| 731 | pr_debug("\t.set noreorder\n"); |
| 732 | |
| 733 | for (i = 0; i < count; i++) |
| 734 | pr_debug("\t%p\t.word 0x%08x\n", &handler[i], handler[i]); |
| 735 | |
| 736 | pr_debug("\t.set pop\n"); |
| 737 | } |
| 738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | /* The only general purpose registers allowed in TLB handlers. */ |
| 740 | #define K0 26 |
| 741 | #define K1 27 |
| 742 | |
| 743 | /* Some CP0 registers */ |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 744 | #define C0_INDEX 0, 0 |
| 745 | #define C0_ENTRYLO0 2, 0 |
| 746 | #define C0_TCBIND 2, 2 |
| 747 | #define C0_ENTRYLO1 3, 0 |
| 748 | #define C0_CONTEXT 4, 0 |
| 749 | #define C0_BADVADDR 8, 0 |
| 750 | #define C0_ENTRYHI 10, 0 |
| 751 | #define C0_EPC 14, 0 |
| 752 | #define C0_XCONTEXT 20, 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 754 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | # define GET_CONTEXT(buf, reg) i_MFC0(buf, reg, C0_XCONTEXT) |
| 756 | #else |
| 757 | # define GET_CONTEXT(buf, reg) i_MFC0(buf, reg, C0_CONTEXT) |
| 758 | #endif |
| 759 | |
| 760 | /* The worst case length of the handler is around 18 instructions for |
| 761 | * R3000-style TLBs and up to 63 instructions for R4000-style TLBs. |
| 762 | * Maximum space available is 32 instructions for R3000 and 64 |
| 763 | * instructions for R4000. |
| 764 | * |
| 765 | * We deliberately chose a buffer size of 128, so we won't scribble |
| 766 | * over anything important on overflow before we panic. |
| 767 | */ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 768 | static u32 tlb_handler[128] __initdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
| 770 | /* simply assume worst case size for labels and relocs */ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 771 | static struct label labels[128] __initdata; |
| 772 | static struct reloc relocs[128] __initdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
| 774 | /* |
| 775 | * The R3000 TLB handler is simple. |
| 776 | */ |
| 777 | static void __init build_r3000_tlb_refill_handler(void) |
| 778 | { |
| 779 | long pgdc = (long)pgd_current; |
| 780 | u32 *p; |
| 781 | |
| 782 | memset(tlb_handler, 0, sizeof(tlb_handler)); |
| 783 | p = tlb_handler; |
| 784 | |
| 785 | i_mfc0(&p, K0, C0_BADVADDR); |
| 786 | i_lui(&p, K1, rel_hi(pgdc)); /* cp0 delay */ |
| 787 | i_lw(&p, K1, rel_lo(pgdc), K1); |
| 788 | i_srl(&p, K0, K0, 22); /* load delay */ |
| 789 | i_sll(&p, K0, K0, 2); |
| 790 | i_addu(&p, K1, K1, K0); |
| 791 | i_mfc0(&p, K0, C0_CONTEXT); |
| 792 | i_lw(&p, K1, 0, K1); /* cp0 delay */ |
| 793 | i_andi(&p, K0, K0, 0xffc); /* load delay */ |
| 794 | i_addu(&p, K1, K1, K0); |
| 795 | i_lw(&p, K0, 0, K1); |
| 796 | i_nop(&p); /* load delay */ |
| 797 | i_mtc0(&p, K0, C0_ENTRYLO0); |
| 798 | i_mfc0(&p, K1, C0_EPC); /* cp0 delay */ |
| 799 | i_tlbwr(&p); /* cp0 delay */ |
| 800 | i_jr(&p, K1); |
| 801 | i_rfe(&p); /* branch delay */ |
| 802 | |
| 803 | if (p > tlb_handler + 32) |
| 804 | panic("TLB refill handler space exceeded"); |
| 805 | |
Thiemo Seufer | 115f2a4 | 2006-07-09 01:47:06 +0100 | [diff] [blame] | 806 | pr_info("Synthesized TLB refill handler (%u instructions).\n", |
| 807 | (unsigned int)(p - tlb_handler)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | |
Ralf Baechle | 91b05e6 | 2006-03-29 18:53:00 +0100 | [diff] [blame] | 809 | memcpy((void *)ebase, tlb_handler, 0x80); |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame^] | 810 | |
| 811 | dump_handler((u32 *)ebase, 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | /* |
| 815 | * The R4000 TLB handler is much more complicated. We have two |
| 816 | * consecutive handler areas with 32 instructions space each. |
| 817 | * Since they aren't used at the same time, we can overflow in the |
| 818 | * other one.To keep things simple, we first assume linear space, |
| 819 | * then we relocate it to the final handler layout as needed. |
| 820 | */ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 821 | static u32 final_handler[64] __initdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | |
| 823 | /* |
| 824 | * Hazards |
| 825 | * |
| 826 | * From the IDT errata for the QED RM5230 (Nevada), processor revision 1.0: |
| 827 | * 2. A timing hazard exists for the TLBP instruction. |
| 828 | * |
| 829 | * stalling_instruction |
| 830 | * TLBP |
| 831 | * |
| 832 | * The JTLB is being read for the TLBP throughout the stall generated by the |
| 833 | * previous instruction. This is not really correct as the stalling instruction |
| 834 | * can modify the address used to access the JTLB. The failure symptom is that |
| 835 | * the TLBP instruction will use an address created for the stalling instruction |
| 836 | * and not the address held in C0_ENHI and thus report the wrong results. |
| 837 | * |
| 838 | * The software work-around is to not allow the instruction preceding the TLBP |
| 839 | * to stall - make it an NOP or some other instruction guaranteed not to stall. |
| 840 | * |
| 841 | * Errata 2 will not be fixed. This errata is also on the R5000. |
| 842 | * |
| 843 | * As if we MIPS hackers wouldn't know how to nop pipelines happy ... |
| 844 | */ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 845 | static void __init __maybe_unused build_tlb_probe_entry(u32 **p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | { |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 847 | switch (current_cpu_type()) { |
Thiemo Seufer | f5b4d95 | 2005-09-09 17:11:50 +0000 | [diff] [blame] | 848 | /* Found by experiment: R4600 v2.0 needs this, too. */ |
| 849 | case CPU_R4600: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | case CPU_R5000: |
| 851 | case CPU_R5000A: |
| 852 | case CPU_NEVADA: |
| 853 | i_nop(p); |
| 854 | i_tlbp(p); |
| 855 | break; |
| 856 | |
| 857 | default: |
| 858 | i_tlbp(p); |
| 859 | break; |
| 860 | } |
| 861 | } |
| 862 | |
| 863 | /* |
| 864 | * Write random or indexed TLB entry, and care about the hazards from |
| 865 | * the preceeding mtc0 and for the following eret. |
| 866 | */ |
| 867 | enum tlb_write_entry { tlb_random, tlb_indexed }; |
| 868 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 869 | static void __init build_tlb_write_entry(u32 **p, struct label **l, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | struct reloc **r, |
| 871 | enum tlb_write_entry wmode) |
| 872 | { |
| 873 | void(*tlbw)(u32 **) = NULL; |
| 874 | |
| 875 | switch (wmode) { |
| 876 | case tlb_random: tlbw = i_tlbwr; break; |
| 877 | case tlb_indexed: tlbw = i_tlbwi; break; |
| 878 | } |
| 879 | |
Ralf Baechle | 161548b | 2008-01-29 10:14:54 +0000 | [diff] [blame] | 880 | if (cpu_has_mips_r2) { |
| 881 | i_ehb(p); |
| 882 | tlbw(p); |
| 883 | return; |
| 884 | } |
| 885 | |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 886 | switch (current_cpu_type()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | case CPU_R4000PC: |
| 888 | case CPU_R4000SC: |
| 889 | case CPU_R4000MC: |
| 890 | case CPU_R4400PC: |
| 891 | case CPU_R4400SC: |
| 892 | case CPU_R4400MC: |
| 893 | /* |
| 894 | * This branch uses up a mtc0 hazard nop slot and saves |
| 895 | * two nops after the tlbw instruction. |
| 896 | */ |
| 897 | il_bgezl(p, r, 0, label_tlbw_hazard); |
| 898 | tlbw(p); |
| 899 | l_tlbw_hazard(l, *p); |
| 900 | i_nop(p); |
| 901 | break; |
| 902 | |
| 903 | case CPU_R4600: |
| 904 | case CPU_R4700: |
| 905 | case CPU_R5000: |
| 906 | case CPU_R5000A: |
Maciej W. Rozycki | 2c93e12 | 2005-06-30 10:51:01 +0000 | [diff] [blame] | 907 | i_nop(p); |
| 908 | tlbw(p); |
| 909 | i_nop(p); |
| 910 | break; |
| 911 | |
| 912 | case CPU_R4300: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | case CPU_5KC: |
| 914 | case CPU_TX49XX: |
| 915 | case CPU_AU1000: |
| 916 | case CPU_AU1100: |
| 917 | case CPU_AU1500: |
| 918 | case CPU_AU1550: |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 919 | case CPU_AU1200: |
Pete Popov | bdf21b1 | 2005-07-14 17:47:57 +0000 | [diff] [blame] | 920 | case CPU_PR4450: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | i_nop(p); |
| 922 | tlbw(p); |
| 923 | break; |
| 924 | |
| 925 | case CPU_R10000: |
| 926 | case CPU_R12000: |
Kumba | 44d921b | 2006-05-16 22:23:59 -0400 | [diff] [blame] | 927 | case CPU_R14000: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | case CPU_4KC: |
| 929 | case CPU_SB1: |
Andrew Isaacson | 93ce2f52 | 2005-10-19 23:56:20 -0700 | [diff] [blame] | 930 | case CPU_SB1A: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | case CPU_4KSC: |
| 932 | case CPU_20KC: |
| 933 | case CPU_25KF: |
Aurelien Jarno | 1c0c13e | 2007-09-25 15:40:12 +0200 | [diff] [blame] | 934 | case CPU_BCM3302: |
| 935 | case CPU_BCM4710: |
Fuxin Zhang | 2a21c73 | 2007-06-06 14:52:43 +0800 | [diff] [blame] | 936 | case CPU_LOONGSON2: |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 937 | if (m4kc_tlbp_war()) |
| 938 | i_nop(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | tlbw(p); |
| 940 | break; |
| 941 | |
| 942 | case CPU_NEVADA: |
| 943 | i_nop(p); /* QED specifies 2 nops hazard */ |
| 944 | /* |
| 945 | * This branch uses up a mtc0 hazard nop slot and saves |
| 946 | * a nop after the tlbw instruction. |
| 947 | */ |
| 948 | il_bgezl(p, r, 0, label_tlbw_hazard); |
| 949 | tlbw(p); |
| 950 | l_tlbw_hazard(l, *p); |
| 951 | break; |
| 952 | |
| 953 | case CPU_RM7000: |
| 954 | i_nop(p); |
| 955 | i_nop(p); |
| 956 | i_nop(p); |
| 957 | i_nop(p); |
| 958 | tlbw(p); |
| 959 | break; |
| 960 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | case CPU_RM9000: |
| 962 | /* |
| 963 | * When the JTLB is updated by tlbwi or tlbwr, a subsequent |
| 964 | * use of the JTLB for instructions should not occur for 4 |
| 965 | * cpu cycles and use for data translations should not occur |
| 966 | * for 3 cpu cycles. |
| 967 | */ |
| 968 | i_ssnop(p); |
| 969 | i_ssnop(p); |
| 970 | i_ssnop(p); |
| 971 | i_ssnop(p); |
| 972 | tlbw(p); |
| 973 | i_ssnop(p); |
| 974 | i_ssnop(p); |
| 975 | i_ssnop(p); |
| 976 | i_ssnop(p); |
| 977 | break; |
| 978 | |
| 979 | case CPU_VR4111: |
| 980 | case CPU_VR4121: |
| 981 | case CPU_VR4122: |
| 982 | case CPU_VR4181: |
| 983 | case CPU_VR4181A: |
| 984 | i_nop(p); |
| 985 | i_nop(p); |
| 986 | tlbw(p); |
| 987 | i_nop(p); |
| 988 | i_nop(p); |
| 989 | break; |
| 990 | |
| 991 | case CPU_VR4131: |
| 992 | case CPU_VR4133: |
Ralf Baechle | 7623deb | 2005-08-29 16:49:55 +0000 | [diff] [blame] | 993 | case CPU_R5432: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | i_nop(p); |
| 995 | i_nop(p); |
| 996 | tlbw(p); |
| 997 | break; |
| 998 | |
| 999 | default: |
| 1000 | panic("No TLB refill handler yet (CPU type: %d)", |
| 1001 | current_cpu_data.cputype); |
| 1002 | break; |
| 1003 | } |
| 1004 | } |
| 1005 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1006 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | /* |
| 1008 | * TMP and PTR are scratch. |
| 1009 | * TMP will be clobbered, PTR will hold the pmd entry. |
| 1010 | */ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 1011 | static void __init |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | build_get_pmde64(u32 **p, struct label **l, struct reloc **r, |
| 1013 | unsigned int tmp, unsigned int ptr) |
| 1014 | { |
| 1015 | long pgdc = (long)pgd_current; |
| 1016 | |
| 1017 | /* |
| 1018 | * The vmalloc handling is not in the hotpath. |
| 1019 | */ |
| 1020 | i_dmfc0(p, tmp, C0_BADVADDR); |
Atsushi Nemoto | 656be92 | 2006-10-26 00:08:31 +0900 | [diff] [blame] | 1021 | #ifdef MODULE_START |
| 1022 | il_bltz(p, r, tmp, label_module_alloc); |
| 1023 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | il_bltz(p, r, tmp, label_vmalloc); |
Atsushi Nemoto | 656be92 | 2006-10-26 00:08:31 +0900 | [diff] [blame] | 1025 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | /* No i_nop needed here, since the next insn doesn't touch TMP. */ |
| 1027 | |
| 1028 | #ifdef CONFIG_SMP |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1029 | # ifdef CONFIG_MIPS_MT_SMTC |
| 1030 | /* |
| 1031 | * SMTC uses TCBind value as "CPU" index |
| 1032 | */ |
| 1033 | i_mfc0(p, ptr, C0_TCBIND); |
| 1034 | i_dsrl(p, ptr, ptr, 19); |
| 1035 | # else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | /* |
Thiemo Seufer | 1b3a6e9 | 2005-04-01 14:07:13 +0000 | [diff] [blame] | 1037 | * 64 bit SMP running in XKPHYS has smp_processor_id() << 3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | * stored in CONTEXT. |
| 1039 | */ |
Thiemo Seufer | 1b3a6e9 | 2005-04-01 14:07:13 +0000 | [diff] [blame] | 1040 | i_dmfc0(p, ptr, C0_CONTEXT); |
| 1041 | i_dsrl(p, ptr, ptr, 23); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1042 | #endif |
Thiemo Seufer | 1b3a6e9 | 2005-04-01 14:07:13 +0000 | [diff] [blame] | 1043 | i_LA_mostly(p, tmp, pgdc); |
| 1044 | i_daddu(p, ptr, ptr, tmp); |
| 1045 | i_dmfc0(p, tmp, C0_BADVADDR); |
| 1046 | i_ld(p, ptr, rel_lo(pgdc), ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | #else |
| 1048 | i_LA_mostly(p, ptr, pgdc); |
| 1049 | i_ld(p, ptr, rel_lo(pgdc), ptr); |
| 1050 | #endif |
| 1051 | |
| 1052 | l_vmalloc_done(l, *p); |
Ralf Baechle | 242954b | 2006-10-24 02:29:01 +0100 | [diff] [blame] | 1053 | |
| 1054 | if (PGDIR_SHIFT - 3 < 32) /* get pgd offset in bytes */ |
| 1055 | i_dsrl(p, tmp, tmp, PGDIR_SHIFT-3); |
| 1056 | else |
| 1057 | i_dsrl32(p, tmp, tmp, PGDIR_SHIFT - 3 - 32); |
| 1058 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | i_andi(p, tmp, tmp, (PTRS_PER_PGD - 1)<<3); |
| 1060 | i_daddu(p, ptr, ptr, tmp); /* add in pgd offset */ |
| 1061 | i_dmfc0(p, tmp, C0_BADVADDR); /* get faulting address */ |
| 1062 | i_ld(p, ptr, 0, ptr); /* get pmd pointer */ |
| 1063 | i_dsrl(p, tmp, tmp, PMD_SHIFT-3); /* get pmd offset in bytes */ |
| 1064 | i_andi(p, tmp, tmp, (PTRS_PER_PMD - 1)<<3); |
| 1065 | i_daddu(p, ptr, ptr, tmp); /* add in pmd offset */ |
| 1066 | } |
| 1067 | |
| 1068 | /* |
| 1069 | * BVADDR is the faulting address, PTR is scratch. |
| 1070 | * PTR will hold the pgd for vmalloc. |
| 1071 | */ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 1072 | static void __init |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | build_get_pgd_vmalloc64(u32 **p, struct label **l, struct reloc **r, |
| 1074 | unsigned int bvaddr, unsigned int ptr) |
| 1075 | { |
| 1076 | long swpd = (long)swapper_pg_dir; |
| 1077 | |
Atsushi Nemoto | 656be92 | 2006-10-26 00:08:31 +0900 | [diff] [blame] | 1078 | #ifdef MODULE_START |
| 1079 | long modd = (long)module_pg_dir; |
| 1080 | |
| 1081 | l_module_alloc(l, *p); |
| 1082 | /* |
| 1083 | * Assumption: |
| 1084 | * VMALLOC_START >= 0xc000000000000000UL |
| 1085 | * MODULE_START >= 0xe000000000000000UL |
| 1086 | */ |
| 1087 | i_SLL(p, ptr, bvaddr, 2); |
| 1088 | il_bgez(p, r, ptr, label_vmalloc); |
| 1089 | |
| 1090 | if (in_compat_space_p(MODULE_START) && !rel_lo(MODULE_START)) { |
| 1091 | i_lui(p, ptr, rel_hi(MODULE_START)); /* delay slot */ |
| 1092 | } else { |
| 1093 | /* unlikely configuration */ |
| 1094 | i_nop(p); /* delay slot */ |
| 1095 | i_LA(p, ptr, MODULE_START); |
| 1096 | } |
| 1097 | i_dsubu(p, bvaddr, bvaddr, ptr); |
| 1098 | |
| 1099 | if (in_compat_space_p(modd) && !rel_lo(modd)) { |
| 1100 | il_b(p, r, label_vmalloc_done); |
| 1101 | i_lui(p, ptr, rel_hi(modd)); |
| 1102 | } else { |
| 1103 | i_LA_mostly(p, ptr, modd); |
| 1104 | il_b(p, r, label_vmalloc_done); |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 1105 | if (in_compat_space_p(modd)) |
| 1106 | i_addiu(p, ptr, ptr, rel_lo(modd)); |
| 1107 | else |
| 1108 | i_daddiu(p, ptr, ptr, rel_lo(modd)); |
Atsushi Nemoto | 656be92 | 2006-10-26 00:08:31 +0900 | [diff] [blame] | 1109 | } |
| 1110 | |
| 1111 | l_vmalloc(l, *p); |
| 1112 | if (in_compat_space_p(MODULE_START) && !rel_lo(MODULE_START) && |
| 1113 | MODULE_START << 32 == VMALLOC_START) |
| 1114 | i_dsll32(p, ptr, ptr, 0); /* typical case */ |
| 1115 | else |
| 1116 | i_LA(p, ptr, VMALLOC_START); |
| 1117 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | l_vmalloc(l, *p); |
| 1119 | i_LA(p, ptr, VMALLOC_START); |
Atsushi Nemoto | 656be92 | 2006-10-26 00:08:31 +0900 | [diff] [blame] | 1120 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | i_dsubu(p, bvaddr, bvaddr, ptr); |
| 1122 | |
| 1123 | if (in_compat_space_p(swpd) && !rel_lo(swpd)) { |
| 1124 | il_b(p, r, label_vmalloc_done); |
| 1125 | i_lui(p, ptr, rel_hi(swpd)); |
| 1126 | } else { |
| 1127 | i_LA_mostly(p, ptr, swpd); |
| 1128 | il_b(p, r, label_vmalloc_done); |
Maciej W. Rozycki | 619b6e1 | 2007-10-23 12:43:25 +0100 | [diff] [blame] | 1129 | if (in_compat_space_p(swpd)) |
| 1130 | i_addiu(p, ptr, ptr, rel_lo(swpd)); |
| 1131 | else |
| 1132 | i_daddiu(p, ptr, ptr, rel_lo(swpd)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | } |
| 1134 | } |
| 1135 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1136 | #else /* !CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | |
| 1138 | /* |
| 1139 | * TMP and PTR are scratch. |
| 1140 | * TMP will be clobbered, PTR will hold the pgd entry. |
| 1141 | */ |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 1142 | static void __init __maybe_unused |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr) |
| 1144 | { |
| 1145 | long pgdc = (long)pgd_current; |
| 1146 | |
| 1147 | /* 32 bit SMP has smp_processor_id() stored in CONTEXT. */ |
| 1148 | #ifdef CONFIG_SMP |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1149 | #ifdef CONFIG_MIPS_MT_SMTC |
| 1150 | /* |
| 1151 | * SMTC uses TCBind value as "CPU" index |
| 1152 | */ |
| 1153 | i_mfc0(p, ptr, C0_TCBIND); |
| 1154 | i_LA_mostly(p, tmp, pgdc); |
| 1155 | i_srl(p, ptr, ptr, 19); |
| 1156 | #else |
| 1157 | /* |
| 1158 | * smp_processor_id() << 3 is stored in CONTEXT. |
| 1159 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | i_mfc0(p, ptr, C0_CONTEXT); |
| 1161 | i_LA_mostly(p, tmp, pgdc); |
| 1162 | i_srl(p, ptr, ptr, 23); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1163 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | i_addu(p, ptr, tmp, ptr); |
| 1165 | #else |
| 1166 | i_LA_mostly(p, ptr, pgdc); |
| 1167 | #endif |
| 1168 | i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */ |
| 1169 | i_lw(p, ptr, rel_lo(pgdc), ptr); |
| 1170 | i_srl(p, tmp, tmp, PGDIR_SHIFT); /* get pgd only bits */ |
| 1171 | i_sll(p, tmp, tmp, PGD_T_LOG2); |
| 1172 | i_addu(p, ptr, ptr, tmp); /* add in pgd offset */ |
| 1173 | } |
| 1174 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1175 | #endif /* !CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 1177 | static void __init build_adjust_context(u32 **p, unsigned int ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | { |
Ralf Baechle | 242954b | 2006-10-24 02:29:01 +0100 | [diff] [blame] | 1179 | unsigned int shift = 4 - (PTE_T_LOG2 + 1) + PAGE_SHIFT - 12; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | unsigned int mask = (PTRS_PER_PTE / 2 - 1) << (PTE_T_LOG2 + 1); |
| 1181 | |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 1182 | switch (current_cpu_type()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | case CPU_VR41XX: |
| 1184 | case CPU_VR4111: |
| 1185 | case CPU_VR4121: |
| 1186 | case CPU_VR4122: |
| 1187 | case CPU_VR4131: |
| 1188 | case CPU_VR4181: |
| 1189 | case CPU_VR4181A: |
| 1190 | case CPU_VR4133: |
| 1191 | shift += 2; |
| 1192 | break; |
| 1193 | |
| 1194 | default: |
| 1195 | break; |
| 1196 | } |
| 1197 | |
| 1198 | if (shift) |
| 1199 | i_SRL(p, ctx, ctx, shift); |
| 1200 | i_andi(p, ctx, ctx, mask); |
| 1201 | } |
| 1202 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 1203 | static void __init build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | { |
| 1205 | /* |
| 1206 | * Bug workaround for the Nevada. It seems as if under certain |
| 1207 | * circumstances the move from cp0_context might produce a |
| 1208 | * bogus result when the mfc0 instruction and its consumer are |
| 1209 | * in a different cacheline or a load instruction, probably any |
| 1210 | * memory reference, is between them. |
| 1211 | */ |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 1212 | switch (current_cpu_type()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | case CPU_NEVADA: |
| 1214 | i_LW(p, ptr, 0, ptr); |
| 1215 | GET_CONTEXT(p, tmp); /* get context reg */ |
| 1216 | break; |
| 1217 | |
| 1218 | default: |
| 1219 | GET_CONTEXT(p, tmp); /* get context reg */ |
| 1220 | i_LW(p, ptr, 0, ptr); |
| 1221 | break; |
| 1222 | } |
| 1223 | |
| 1224 | build_adjust_context(p, tmp); |
| 1225 | i_ADDU(p, ptr, ptr, tmp); /* add in offset */ |
| 1226 | } |
| 1227 | |
Franck Bui-Huu | a9af604 | 2007-10-18 09:11:14 +0200 | [diff] [blame] | 1228 | static void __init build_update_entries(u32 **p, unsigned int tmp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | unsigned int ptep) |
| 1230 | { |
| 1231 | /* |
| 1232 | * 64bit address support (36bit on a 32bit CPU) in a 32bit |
| 1233 | * Kernel is a special case. Only a few CPUs use it. |
| 1234 | */ |
| 1235 | #ifdef CONFIG_64BIT_PHYS_ADDR |
| 1236 | if (cpu_has_64bits) { |
| 1237 | i_ld(p, tmp, 0, ptep); /* get even pte */ |
| 1238 | i_ld(p, ptep, sizeof(pte_t), ptep); /* get odd pte */ |
| 1239 | i_dsrl(p, tmp, tmp, 6); /* convert to entrylo0 */ |
| 1240 | i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */ |
| 1241 | i_dsrl(p, ptep, ptep, 6); /* convert to entrylo1 */ |
| 1242 | i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */ |
| 1243 | } else { |
| 1244 | int pte_off_even = sizeof(pte_t) / 2; |
| 1245 | int pte_off_odd = pte_off_even + sizeof(pte_t); |
| 1246 | |
| 1247 | /* The pte entries are pre-shifted */ |
| 1248 | i_lw(p, tmp, pte_off_even, ptep); /* get even pte */ |
| 1249 | i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */ |
| 1250 | i_lw(p, ptep, pte_off_odd, ptep); /* get odd pte */ |
| 1251 | i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */ |
| 1252 | } |
| 1253 | #else |
| 1254 | i_LW(p, tmp, 0, ptep); /* get even pte */ |
| 1255 | i_LW(p, ptep, sizeof(pte_t), ptep); /* get odd pte */ |
| 1256 | if (r45k_bvahwbug()) |
| 1257 | build_tlb_probe_entry(p); |
| 1258 | i_SRL(p, tmp, tmp, 6); /* convert to entrylo0 */ |
| 1259 | if (r4k_250MHZhwbug()) |
| 1260 | i_mtc0(p, 0, C0_ENTRYLO0); |
| 1261 | i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */ |
| 1262 | i_SRL(p, ptep, ptep, 6); /* convert to entrylo1 */ |
| 1263 | if (r45k_bvahwbug()) |
| 1264 | i_mfc0(p, tmp, C0_INDEX); |
| 1265 | if (r4k_250MHZhwbug()) |
| 1266 | i_mtc0(p, 0, C0_ENTRYLO1); |
| 1267 | i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */ |
| 1268 | #endif |
| 1269 | } |
| 1270 | |
| 1271 | static void __init build_r4000_tlb_refill_handler(void) |
| 1272 | { |
| 1273 | u32 *p = tlb_handler; |
| 1274 | struct label *l = labels; |
| 1275 | struct reloc *r = relocs; |
| 1276 | u32 *f; |
| 1277 | unsigned int final_len; |
| 1278 | |
| 1279 | memset(tlb_handler, 0, sizeof(tlb_handler)); |
| 1280 | memset(labels, 0, sizeof(labels)); |
| 1281 | memset(relocs, 0, sizeof(relocs)); |
| 1282 | memset(final_handler, 0, sizeof(final_handler)); |
| 1283 | |
| 1284 | /* |
| 1285 | * create the plain linear handler |
| 1286 | */ |
| 1287 | if (bcm1250_m3_war()) { |
| 1288 | i_MFC0(&p, K0, C0_BADVADDR); |
| 1289 | i_MFC0(&p, K1, C0_ENTRYHI); |
| 1290 | i_xor(&p, K0, K0, K1); |
| 1291 | i_SRL(&p, K0, K0, PAGE_SHIFT + 1); |
| 1292 | il_bnez(&p, &r, K0, label_leave); |
| 1293 | /* No need for i_nop */ |
| 1294 | } |
| 1295 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1296 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */ |
| 1298 | #else |
| 1299 | build_get_pgde32(&p, K0, K1); /* get pgd in K1 */ |
| 1300 | #endif |
| 1301 | |
| 1302 | build_get_ptep(&p, K0, K1); |
| 1303 | build_update_entries(&p, K0, K1); |
| 1304 | build_tlb_write_entry(&p, &l, &r, tlb_random); |
| 1305 | l_leave(&l, p); |
| 1306 | i_eret(&p); /* return from trap */ |
| 1307 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1308 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | build_get_pgd_vmalloc64(&p, &l, &r, K0, K1); |
| 1310 | #endif |
| 1311 | |
| 1312 | /* |
| 1313 | * Overflow check: For the 64bit handler, we need at least one |
| 1314 | * free instruction slot for the wrap-around branch. In worst |
| 1315 | * case, if the intended insertion point is a delay slot, we |
Matt LaPlante | 4b3f686 | 2006-10-03 22:21:02 +0200 | [diff] [blame] | 1316 | * need three, with the second nop'ed and the third being |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | * unused. |
| 1318 | */ |
Fuxin Zhang | 2a21c73 | 2007-06-06 14:52:43 +0800 | [diff] [blame] | 1319 | /* Loongson2 ebase is different than r4k, we have more space */ |
| 1320 | #if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | if ((p - tlb_handler) > 64) |
| 1322 | panic("TLB refill handler space exceeded"); |
| 1323 | #else |
| 1324 | if (((p - tlb_handler) > 63) |
| 1325 | || (((p - tlb_handler) > 61) |
| 1326 | && insn_has_bdelay(relocs, tlb_handler + 29))) |
| 1327 | panic("TLB refill handler space exceeded"); |
| 1328 | #endif |
| 1329 | |
| 1330 | /* |
| 1331 | * Now fold the handler in the TLB refill handler space. |
| 1332 | */ |
Fuxin Zhang | 2a21c73 | 2007-06-06 14:52:43 +0800 | [diff] [blame] | 1333 | #if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | f = final_handler; |
| 1335 | /* Simplest case, just copy the handler. */ |
| 1336 | copy_handler(relocs, labels, tlb_handler, p, f); |
| 1337 | final_len = p - tlb_handler; |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1338 | #else /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | f = final_handler + 32; |
| 1340 | if ((p - tlb_handler) <= 32) { |
| 1341 | /* Just copy the handler. */ |
| 1342 | copy_handler(relocs, labels, tlb_handler, p, f); |
| 1343 | final_len = p - tlb_handler; |
| 1344 | } else { |
| 1345 | u32 *split = tlb_handler + 30; |
| 1346 | |
| 1347 | /* |
| 1348 | * Find the split point. |
| 1349 | */ |
| 1350 | if (insn_has_bdelay(relocs, split - 1)) |
| 1351 | split--; |
| 1352 | |
| 1353 | /* Copy first part of the handler. */ |
| 1354 | copy_handler(relocs, labels, tlb_handler, split, f); |
| 1355 | f += split - tlb_handler; |
| 1356 | |
| 1357 | /* Insert branch. */ |
| 1358 | l_split(&l, final_handler); |
| 1359 | il_b(&f, &r, label_split); |
| 1360 | if (insn_has_bdelay(relocs, split)) |
| 1361 | i_nop(&f); |
| 1362 | else { |
| 1363 | copy_handler(relocs, labels, split, split + 1, f); |
| 1364 | move_labels(labels, f, f + 1, -1); |
| 1365 | f++; |
| 1366 | split++; |
| 1367 | } |
| 1368 | |
| 1369 | /* Copy the rest of the handler. */ |
| 1370 | copy_handler(relocs, labels, split, p, final_handler); |
| 1371 | final_len = (f - (final_handler + 32)) + (p - split); |
| 1372 | } |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1373 | #endif /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | |
| 1375 | resolve_relocs(relocs, labels); |
Thiemo Seufer | 115f2a4 | 2006-07-09 01:47:06 +0100 | [diff] [blame] | 1376 | pr_info("Synthesized TLB refill handler (%u instructions).\n", |
| 1377 | final_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | |
Ralf Baechle | 91b05e6 | 2006-03-29 18:53:00 +0100 | [diff] [blame] | 1379 | memcpy((void *)ebase, final_handler, 0x100); |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame^] | 1380 | |
| 1381 | dump_handler((u32 *)ebase, 64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | } |
| 1383 | |
| 1384 | /* |
| 1385 | * TLB load/store/modify handlers. |
| 1386 | * |
| 1387 | * Only the fastpath gets synthesized at runtime, the slowpath for |
| 1388 | * do_page_fault remains normal asm. |
| 1389 | */ |
| 1390 | extern void tlb_do_page_fault_0(void); |
| 1391 | extern void tlb_do_page_fault_1(void); |
| 1392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | /* |
| 1394 | * 128 instructions for the fastpath handler is generous and should |
| 1395 | * never be exceeded. |
| 1396 | */ |
| 1397 | #define FASTPATH_SIZE 128 |
| 1398 | |
Franck Bui-Huu | cbdbe07 | 2007-10-18 09:11:16 +0200 | [diff] [blame] | 1399 | u32 handle_tlbl[FASTPATH_SIZE] __cacheline_aligned; |
| 1400 | u32 handle_tlbs[FASTPATH_SIZE] __cacheline_aligned; |
| 1401 | u32 handle_tlbm[FASTPATH_SIZE] __cacheline_aligned; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | |
| 1403 | static void __init |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1404 | iPTE_LW(u32 **p, struct label **l, unsigned int pte, unsigned int ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | { |
| 1406 | #ifdef CONFIG_SMP |
| 1407 | # ifdef CONFIG_64BIT_PHYS_ADDR |
| 1408 | if (cpu_has_64bits) |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1409 | i_lld(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | else |
| 1411 | # endif |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1412 | i_LL(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | #else |
| 1414 | # ifdef CONFIG_64BIT_PHYS_ADDR |
| 1415 | if (cpu_has_64bits) |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1416 | i_ld(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | else |
| 1418 | # endif |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1419 | i_LW(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | #endif |
| 1421 | } |
| 1422 | |
| 1423 | static void __init |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1424 | iPTE_SW(u32 **p, struct reloc **r, unsigned int pte, unsigned int ptr, |
| 1425 | unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | { |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1427 | #ifdef CONFIG_64BIT_PHYS_ADDR |
| 1428 | unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY); |
| 1429 | #endif |
| 1430 | |
| 1431 | i_ori(p, pte, pte, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | #ifdef CONFIG_SMP |
| 1433 | # ifdef CONFIG_64BIT_PHYS_ADDR |
| 1434 | if (cpu_has_64bits) |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1435 | i_scd(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | else |
| 1437 | # endif |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1438 | i_SC(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | |
| 1440 | if (r10000_llsc_war()) |
| 1441 | il_beqzl(p, r, pte, label_smp_pgtable_change); |
| 1442 | else |
| 1443 | il_beqz(p, r, pte, label_smp_pgtable_change); |
| 1444 | |
| 1445 | # ifdef CONFIG_64BIT_PHYS_ADDR |
| 1446 | if (!cpu_has_64bits) { |
| 1447 | /* no i_nop needed */ |
| 1448 | i_ll(p, pte, sizeof(pte_t) / 2, ptr); |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1449 | i_ori(p, pte, pte, hwmode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | i_sc(p, pte, sizeof(pte_t) / 2, ptr); |
| 1451 | il_beqz(p, r, pte, label_smp_pgtable_change); |
| 1452 | /* no i_nop needed */ |
| 1453 | i_lw(p, pte, 0, ptr); |
| 1454 | } else |
| 1455 | i_nop(p); |
| 1456 | # else |
| 1457 | i_nop(p); |
| 1458 | # endif |
| 1459 | #else |
| 1460 | # ifdef CONFIG_64BIT_PHYS_ADDR |
| 1461 | if (cpu_has_64bits) |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1462 | i_sd(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | else |
| 1464 | # endif |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1465 | i_SW(p, pte, 0, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | |
| 1467 | # ifdef CONFIG_64BIT_PHYS_ADDR |
| 1468 | if (!cpu_has_64bits) { |
| 1469 | i_lw(p, pte, sizeof(pte_t) / 2, ptr); |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1470 | i_ori(p, pte, pte, hwmode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | i_sw(p, pte, sizeof(pte_t) / 2, ptr); |
| 1472 | i_lw(p, pte, 0, ptr); |
| 1473 | } |
| 1474 | # endif |
| 1475 | #endif |
| 1476 | } |
| 1477 | |
| 1478 | /* |
| 1479 | * Check if PTE is present, if not then jump to LABEL. PTR points to |
| 1480 | * the page table where this PTE is located, PTE will be re-loaded |
| 1481 | * with it's original value. |
| 1482 | */ |
| 1483 | static void __init |
| 1484 | build_pte_present(u32 **p, struct label **l, struct reloc **r, |
| 1485 | unsigned int pte, unsigned int ptr, enum label_id lid) |
| 1486 | { |
| 1487 | i_andi(p, pte, pte, _PAGE_PRESENT | _PAGE_READ); |
| 1488 | i_xori(p, pte, pte, _PAGE_PRESENT | _PAGE_READ); |
| 1489 | il_bnez(p, r, pte, lid); |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1490 | iPTE_LW(p, l, pte, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | } |
| 1492 | |
| 1493 | /* Make PTE valid, store result in PTR. */ |
| 1494 | static void __init |
| 1495 | build_make_valid(u32 **p, struct reloc **r, unsigned int pte, |
| 1496 | unsigned int ptr) |
| 1497 | { |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1498 | unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED; |
| 1499 | |
| 1500 | iPTE_SW(p, r, pte, ptr, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | } |
| 1502 | |
| 1503 | /* |
| 1504 | * Check if PTE can be written to, if not branch to LABEL. Regardless |
| 1505 | * restore PTE with value from PTR when done. |
| 1506 | */ |
| 1507 | static void __init |
| 1508 | build_pte_writable(u32 **p, struct label **l, struct reloc **r, |
| 1509 | unsigned int pte, unsigned int ptr, enum label_id lid) |
| 1510 | { |
| 1511 | i_andi(p, pte, pte, _PAGE_PRESENT | _PAGE_WRITE); |
| 1512 | i_xori(p, pte, pte, _PAGE_PRESENT | _PAGE_WRITE); |
| 1513 | il_bnez(p, r, pte, lid); |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1514 | iPTE_LW(p, l, pte, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | } |
| 1516 | |
| 1517 | /* Make PTE writable, update software status bits as well, then store |
| 1518 | * at PTR. |
| 1519 | */ |
| 1520 | static void __init |
| 1521 | build_make_write(u32 **p, struct reloc **r, unsigned int pte, |
| 1522 | unsigned int ptr) |
| 1523 | { |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1524 | unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID |
| 1525 | | _PAGE_DIRTY); |
| 1526 | |
| 1527 | iPTE_SW(p, r, pte, ptr, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | } |
| 1529 | |
| 1530 | /* |
| 1531 | * Check if PTE can be modified, if not branch to LABEL. Regardless |
| 1532 | * restore PTE with value from PTR when done. |
| 1533 | */ |
| 1534 | static void __init |
| 1535 | build_pte_modifiable(u32 **p, struct label **l, struct reloc **r, |
| 1536 | unsigned int pte, unsigned int ptr, enum label_id lid) |
| 1537 | { |
| 1538 | i_andi(p, pte, pte, _PAGE_WRITE); |
| 1539 | il_beqz(p, r, pte, lid); |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1540 | iPTE_LW(p, l, pte, ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | } |
| 1542 | |
| 1543 | /* |
| 1544 | * R3000 style TLB load/store/modify handlers. |
| 1545 | */ |
| 1546 | |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1547 | /* |
| 1548 | * This places the pte into ENTRYLO0 and writes it with tlbwi. |
| 1549 | * Then it returns. |
| 1550 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | static void __init |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1552 | 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] | 1553 | { |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1554 | i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */ |
| 1555 | i_mfc0(p, tmp, C0_EPC); /* cp0 delay */ |
| 1556 | i_tlbwi(p); |
| 1557 | i_jr(p, tmp); |
| 1558 | i_rfe(p); /* branch delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | } |
| 1560 | |
| 1561 | /* |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1562 | * This places the pte into ENTRYLO0 and writes it with tlbwi |
| 1563 | * or tlbwr as appropriate. This is because the index register |
| 1564 | * may have the probe fail bit set as a result of a trap on a |
| 1565 | * kseg2 access, i.e. without refill. Then it returns. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | */ |
| 1567 | static void __init |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1568 | build_r3000_tlb_reload_write(u32 **p, struct label **l, struct reloc **r, |
| 1569 | unsigned int pte, unsigned int tmp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | { |
| 1571 | i_mfc0(p, tmp, C0_INDEX); |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1572 | i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */ |
| 1573 | il_bltz(p, r, tmp, label_r3000_write_probe_fail); /* cp0 delay */ |
| 1574 | i_mfc0(p, tmp, C0_EPC); /* branch delay */ |
| 1575 | i_tlbwi(p); /* cp0 delay */ |
| 1576 | i_jr(p, tmp); |
| 1577 | i_rfe(p); /* branch delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | l_r3000_write_probe_fail(l, *p); |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1579 | i_tlbwr(p); /* cp0 delay */ |
| 1580 | i_jr(p, tmp); |
| 1581 | i_rfe(p); /* branch delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | } |
| 1583 | |
| 1584 | static void __init |
| 1585 | build_r3000_tlbchange_handler_head(u32 **p, unsigned int pte, |
| 1586 | unsigned int ptr) |
| 1587 | { |
| 1588 | long pgdc = (long)pgd_current; |
| 1589 | |
| 1590 | i_mfc0(p, pte, C0_BADVADDR); |
| 1591 | i_lui(p, ptr, rel_hi(pgdc)); /* cp0 delay */ |
| 1592 | i_lw(p, ptr, rel_lo(pgdc), ptr); |
| 1593 | i_srl(p, pte, pte, 22); /* load delay */ |
| 1594 | i_sll(p, pte, pte, 2); |
| 1595 | i_addu(p, ptr, ptr, pte); |
| 1596 | i_mfc0(p, pte, C0_CONTEXT); |
| 1597 | i_lw(p, ptr, 0, ptr); /* cp0 delay */ |
| 1598 | i_andi(p, pte, pte, 0xffc); /* load delay */ |
| 1599 | i_addu(p, ptr, ptr, pte); |
| 1600 | i_lw(p, pte, 0, ptr); |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1601 | i_tlbp(p); /* load delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | } |
| 1603 | |
| 1604 | static void __init build_r3000_tlb_load_handler(void) |
| 1605 | { |
| 1606 | u32 *p = handle_tlbl; |
| 1607 | struct label *l = labels; |
| 1608 | struct reloc *r = relocs; |
| 1609 | |
| 1610 | memset(handle_tlbl, 0, sizeof(handle_tlbl)); |
| 1611 | memset(labels, 0, sizeof(labels)); |
| 1612 | memset(relocs, 0, sizeof(relocs)); |
| 1613 | |
| 1614 | build_r3000_tlbchange_handler_head(&p, K0, K1); |
| 1615 | build_pte_present(&p, &l, &r, K0, K1, label_nopage_tlbl); |
Maciej W. Rozycki | d925c26 | 2005-06-13 20:12:01 +0000 | [diff] [blame] | 1616 | i_nop(&p); /* load delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | build_make_valid(&p, &r, K0, K1); |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1618 | build_r3000_tlb_reload_write(&p, &l, &r, K0, K1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | |
| 1620 | l_nopage_tlbl(&l, p); |
| 1621 | i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff); |
| 1622 | i_nop(&p); |
| 1623 | |
| 1624 | if ((p - handle_tlbl) > FASTPATH_SIZE) |
| 1625 | panic("TLB load handler fastpath space exceeded"); |
| 1626 | |
| 1627 | resolve_relocs(relocs, labels); |
Thiemo Seufer | 115f2a4 | 2006-07-09 01:47:06 +0100 | [diff] [blame] | 1628 | pr_info("Synthesized TLB load handler fastpath (%u instructions).\n", |
| 1629 | (unsigned int)(p - handle_tlbl)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame^] | 1631 | dump_handler(handle_tlbl, ARRAY_SIZE(handle_tlbl)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | } |
| 1633 | |
| 1634 | static void __init build_r3000_tlb_store_handler(void) |
| 1635 | { |
| 1636 | u32 *p = handle_tlbs; |
| 1637 | struct label *l = labels; |
| 1638 | struct reloc *r = relocs; |
| 1639 | |
| 1640 | memset(handle_tlbs, 0, sizeof(handle_tlbs)); |
| 1641 | memset(labels, 0, sizeof(labels)); |
| 1642 | memset(relocs, 0, sizeof(relocs)); |
| 1643 | |
| 1644 | build_r3000_tlbchange_handler_head(&p, K0, K1); |
| 1645 | build_pte_writable(&p, &l, &r, K0, K1, label_nopage_tlbs); |
Maciej W. Rozycki | d925c26 | 2005-06-13 20:12:01 +0000 | [diff] [blame] | 1646 | i_nop(&p); /* load delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | build_make_write(&p, &r, K0, K1); |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1648 | build_r3000_tlb_reload_write(&p, &l, &r, K0, K1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | |
| 1650 | l_nopage_tlbs(&l, p); |
| 1651 | i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
| 1652 | i_nop(&p); |
| 1653 | |
| 1654 | if ((p - handle_tlbs) > FASTPATH_SIZE) |
| 1655 | panic("TLB store handler fastpath space exceeded"); |
| 1656 | |
| 1657 | resolve_relocs(relocs, labels); |
Thiemo Seufer | 115f2a4 | 2006-07-09 01:47:06 +0100 | [diff] [blame] | 1658 | pr_info("Synthesized TLB store handler fastpath (%u instructions).\n", |
| 1659 | (unsigned int)(p - handle_tlbs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame^] | 1661 | dump_handler(handle_tlbs, ARRAY_SIZE(handle_tlbs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | } |
| 1663 | |
| 1664 | static void __init build_r3000_tlb_modify_handler(void) |
| 1665 | { |
| 1666 | u32 *p = handle_tlbm; |
| 1667 | struct label *l = labels; |
| 1668 | struct reloc *r = relocs; |
| 1669 | |
| 1670 | memset(handle_tlbm, 0, sizeof(handle_tlbm)); |
| 1671 | memset(labels, 0, sizeof(labels)); |
| 1672 | memset(relocs, 0, sizeof(relocs)); |
| 1673 | |
| 1674 | build_r3000_tlbchange_handler_head(&p, K0, K1); |
| 1675 | build_pte_modifiable(&p, &l, &r, K0, K1, label_nopage_tlbm); |
Maciej W. Rozycki | d925c26 | 2005-06-13 20:12:01 +0000 | [diff] [blame] | 1676 | i_nop(&p); /* load delay */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | build_make_write(&p, &r, K0, K1); |
Maciej W. Rozycki | fded2e5 | 2005-06-13 20:24:00 +0000 | [diff] [blame] | 1678 | build_r3000_pte_reload_tlbwi(&p, K0, K1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | |
| 1680 | l_nopage_tlbm(&l, p); |
| 1681 | i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
| 1682 | i_nop(&p); |
| 1683 | |
| 1684 | if ((p - handle_tlbm) > FASTPATH_SIZE) |
| 1685 | panic("TLB modify handler fastpath space exceeded"); |
| 1686 | |
| 1687 | resolve_relocs(relocs, labels); |
Thiemo Seufer | 115f2a4 | 2006-07-09 01:47:06 +0100 | [diff] [blame] | 1688 | pr_info("Synthesized TLB modify handler fastpath (%u instructions).\n", |
| 1689 | (unsigned int)(p - handle_tlbm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame^] | 1691 | dump_handler(handle_tlbm, ARRAY_SIZE(handle_tlbm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | } |
| 1693 | |
| 1694 | /* |
| 1695 | * R4000 style TLB load/store/modify handlers. |
| 1696 | */ |
| 1697 | static void __init |
| 1698 | build_r4000_tlbchange_handler_head(u32 **p, struct label **l, |
| 1699 | struct reloc **r, unsigned int pte, |
| 1700 | unsigned int ptr) |
| 1701 | { |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1702 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | build_get_pmde64(p, l, r, pte, ptr); /* get pmd in ptr */ |
| 1704 | #else |
| 1705 | build_get_pgde32(p, pte, ptr); /* get pgd in ptr */ |
| 1706 | #endif |
| 1707 | |
| 1708 | i_MFC0(p, pte, C0_BADVADDR); |
| 1709 | i_LW(p, ptr, 0, ptr); |
| 1710 | i_SRL(p, pte, pte, PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2); |
| 1711 | i_andi(p, pte, pte, (PTRS_PER_PTE - 1) << PTE_T_LOG2); |
| 1712 | i_ADDU(p, ptr, ptr, pte); |
| 1713 | |
| 1714 | #ifdef CONFIG_SMP |
| 1715 | l_smp_pgtable_change(l, *p); |
| 1716 | # endif |
Thiemo Seufer | 63b2d2f | 2005-04-28 08:52:57 +0000 | [diff] [blame] | 1717 | iPTE_LW(p, l, pte, ptr); /* get even pte */ |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 1718 | if (!m4kc_tlbp_war()) |
| 1719 | build_tlb_probe_entry(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | } |
| 1721 | |
| 1722 | static void __init |
| 1723 | build_r4000_tlbchange_handler_tail(u32 **p, struct label **l, |
| 1724 | struct reloc **r, unsigned int tmp, |
| 1725 | unsigned int ptr) |
| 1726 | { |
| 1727 | i_ori(p, ptr, ptr, sizeof(pte_t)); |
| 1728 | i_xori(p, ptr, ptr, sizeof(pte_t)); |
| 1729 | build_update_entries(p, tmp, ptr); |
| 1730 | build_tlb_write_entry(p, l, r, tlb_indexed); |
| 1731 | l_leave(l, *p); |
| 1732 | i_eret(p); /* return from trap */ |
| 1733 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1734 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | build_get_pgd_vmalloc64(p, l, r, tmp, ptr); |
| 1736 | #endif |
| 1737 | } |
| 1738 | |
| 1739 | static void __init build_r4000_tlb_load_handler(void) |
| 1740 | { |
| 1741 | u32 *p = handle_tlbl; |
| 1742 | struct label *l = labels; |
| 1743 | struct reloc *r = relocs; |
| 1744 | |
| 1745 | memset(handle_tlbl, 0, sizeof(handle_tlbl)); |
| 1746 | memset(labels, 0, sizeof(labels)); |
| 1747 | memset(relocs, 0, sizeof(relocs)); |
| 1748 | |
| 1749 | if (bcm1250_m3_war()) { |
| 1750 | i_MFC0(&p, K0, C0_BADVADDR); |
| 1751 | i_MFC0(&p, K1, C0_ENTRYHI); |
| 1752 | i_xor(&p, K0, K0, K1); |
| 1753 | i_SRL(&p, K0, K0, PAGE_SHIFT + 1); |
| 1754 | il_bnez(&p, &r, K0, label_leave); |
| 1755 | /* No need for i_nop */ |
| 1756 | } |
| 1757 | |
| 1758 | build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1); |
| 1759 | build_pte_present(&p, &l, &r, K0, K1, label_nopage_tlbl); |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 1760 | if (m4kc_tlbp_war()) |
| 1761 | build_tlb_probe_entry(&p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | build_make_valid(&p, &r, K0, K1); |
| 1763 | build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1); |
| 1764 | |
| 1765 | l_nopage_tlbl(&l, p); |
| 1766 | i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff); |
| 1767 | i_nop(&p); |
| 1768 | |
| 1769 | if ((p - handle_tlbl) > FASTPATH_SIZE) |
| 1770 | panic("TLB load handler fastpath space exceeded"); |
| 1771 | |
| 1772 | resolve_relocs(relocs, labels); |
Thiemo Seufer | 115f2a4 | 2006-07-09 01:47:06 +0100 | [diff] [blame] | 1773 | pr_info("Synthesized TLB load handler fastpath (%u instructions).\n", |
| 1774 | (unsigned int)(p - handle_tlbl)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 | |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame^] | 1776 | dump_handler(handle_tlbl, ARRAY_SIZE(handle_tlbl)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | } |
| 1778 | |
| 1779 | static void __init build_r4000_tlb_store_handler(void) |
| 1780 | { |
| 1781 | u32 *p = handle_tlbs; |
| 1782 | struct label *l = labels; |
| 1783 | struct reloc *r = relocs; |
| 1784 | |
| 1785 | memset(handle_tlbs, 0, sizeof(handle_tlbs)); |
| 1786 | memset(labels, 0, sizeof(labels)); |
| 1787 | memset(relocs, 0, sizeof(relocs)); |
| 1788 | |
| 1789 | build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1); |
| 1790 | build_pte_writable(&p, &l, &r, K0, K1, label_nopage_tlbs); |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 1791 | if (m4kc_tlbp_war()) |
| 1792 | build_tlb_probe_entry(&p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | build_make_write(&p, &r, K0, K1); |
| 1794 | build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1); |
| 1795 | |
| 1796 | l_nopage_tlbs(&l, p); |
| 1797 | i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
| 1798 | i_nop(&p); |
| 1799 | |
| 1800 | if ((p - handle_tlbs) > FASTPATH_SIZE) |
| 1801 | panic("TLB store handler fastpath space exceeded"); |
| 1802 | |
| 1803 | resolve_relocs(relocs, labels); |
Thiemo Seufer | 115f2a4 | 2006-07-09 01:47:06 +0100 | [diff] [blame] | 1804 | pr_info("Synthesized TLB store handler fastpath (%u instructions).\n", |
| 1805 | (unsigned int)(p - handle_tlbs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame^] | 1807 | dump_handler(handle_tlbs, ARRAY_SIZE(handle_tlbs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | } |
| 1809 | |
| 1810 | static void __init build_r4000_tlb_modify_handler(void) |
| 1811 | { |
| 1812 | u32 *p = handle_tlbm; |
| 1813 | struct label *l = labels; |
| 1814 | struct reloc *r = relocs; |
| 1815 | |
| 1816 | memset(handle_tlbm, 0, sizeof(handle_tlbm)); |
| 1817 | memset(labels, 0, sizeof(labels)); |
| 1818 | memset(relocs, 0, sizeof(relocs)); |
| 1819 | |
| 1820 | build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1); |
| 1821 | build_pte_modifiable(&p, &l, &r, K0, K1, label_nopage_tlbm); |
Maciej W. Rozycki | 8df5bea | 2006-08-23 14:26:50 +0100 | [diff] [blame] | 1822 | if (m4kc_tlbp_war()) |
| 1823 | build_tlb_probe_entry(&p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | /* Present and writable bits set, set accessed and dirty bits. */ |
| 1825 | build_make_write(&p, &r, K0, K1); |
| 1826 | build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1); |
| 1827 | |
| 1828 | l_nopage_tlbm(&l, p); |
| 1829 | i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
| 1830 | i_nop(&p); |
| 1831 | |
| 1832 | if ((p - handle_tlbm) > FASTPATH_SIZE) |
| 1833 | panic("TLB modify handler fastpath space exceeded"); |
| 1834 | |
| 1835 | resolve_relocs(relocs, labels); |
Thiemo Seufer | 115f2a4 | 2006-07-09 01:47:06 +0100 | [diff] [blame] | 1836 | pr_info("Synthesized TLB modify handler fastpath (%u instructions).\n", |
| 1837 | (unsigned int)(p - handle_tlbm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | |
Franck Bui-Huu | 92b1e6a | 2007-10-18 09:11:17 +0200 | [diff] [blame^] | 1839 | dump_handler(handle_tlbm, ARRAY_SIZE(handle_tlbm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | } |
| 1841 | |
| 1842 | void __init build_tlb_refill_handler(void) |
| 1843 | { |
| 1844 | /* |
| 1845 | * The refill handler is generated per-CPU, multi-node systems |
| 1846 | * may have local storage for it. The other handlers are only |
| 1847 | * needed once. |
| 1848 | */ |
| 1849 | static int run_once = 0; |
| 1850 | |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 1851 | switch (current_cpu_type()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | case CPU_R2000: |
| 1853 | case CPU_R3000: |
| 1854 | case CPU_R3000A: |
| 1855 | case CPU_R3081E: |
| 1856 | case CPU_TX3912: |
| 1857 | case CPU_TX3922: |
| 1858 | case CPU_TX3927: |
| 1859 | build_r3000_tlb_refill_handler(); |
| 1860 | if (!run_once) { |
| 1861 | build_r3000_tlb_load_handler(); |
| 1862 | build_r3000_tlb_store_handler(); |
| 1863 | build_r3000_tlb_modify_handler(); |
| 1864 | run_once++; |
| 1865 | } |
| 1866 | break; |
| 1867 | |
| 1868 | case CPU_R6000: |
| 1869 | case CPU_R6000A: |
| 1870 | panic("No R6000 TLB refill handler yet"); |
| 1871 | break; |
| 1872 | |
| 1873 | case CPU_R8000: |
| 1874 | panic("No R8000 TLB refill handler yet"); |
| 1875 | break; |
| 1876 | |
| 1877 | default: |
| 1878 | build_r4000_tlb_refill_handler(); |
| 1879 | if (!run_once) { |
| 1880 | build_r4000_tlb_load_handler(); |
| 1881 | build_r4000_tlb_store_handler(); |
| 1882 | build_r4000_tlb_modify_handler(); |
| 1883 | run_once++; |
| 1884 | } |
| 1885 | } |
| 1886 | } |
Ralf Baechle | 1d40cfc | 2005-07-15 15:23:23 +0000 | [diff] [blame] | 1887 | |
| 1888 | void __init flush_tlb_handlers(void) |
| 1889 | { |
| 1890 | flush_icache_range((unsigned long)handle_tlbl, |
| 1891 | (unsigned long)handle_tlbl + sizeof(handle_tlbl)); |
| 1892 | flush_icache_range((unsigned long)handle_tlbs, |
| 1893 | (unsigned long)handle_tlbs + sizeof(handle_tlbs)); |
| 1894 | flush_icache_range((unsigned long)handle_tlbm, |
| 1895 | (unsigned long)handle_tlbm + sizeof(handle_tlbm)); |
| 1896 | } |