blob: 21bcf084882f1e71e8fdca14635cb9c54007627c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Synthesize TLB refill handlers at runtime.
7 *
Thiemo Seufer115f2a42006-07-09 01:47:06 +01008 * Copyright (C) 2004,2005,2006 by Thiemo Seufer
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +01009 * Copyright (C) 2005, 2007 Maciej W. Rozycki
Ralf Baechle41c594a2006-04-05 09:45:45 +010010 * 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 Torvalds1da177e2005-04-16 15:20:36 -070020 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kernel.h>
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/init.h>
26
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +010027#include <asm/bugs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/mmu_context.h>
29#include <asm/inst.h>
30#include <asm/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/war.h>
32
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010033static inline int r45k_bvahwbug(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
35 /* XXX: We should probe for the presence of this bug, but we don't. */
36 return 0;
37}
38
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010039static inline int r4k_250MHZhwbug(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
41 /* XXX: We should probe for the presence of this bug, but we don't. */
42 return 0;
43}
44
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010045static inline int __maybe_unused bcm1250_m3_war(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 return BCM1250_M3_WAR;
48}
49
Ralf Baechleaeffdbb2007-10-11 23:46:14 +010050static inline int __maybe_unused r10000_llsc_war(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 return R10000_LLSC_WAR;
53}
54
55/*
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +010056 * 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-Huua9af6042007-10-18 09:11:14 +020064static int __init m4kc_tlbp_war(void)
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +010065{
66 return (current_cpu_data.processor_id & 0xffff00) ==
67 (PRID_COMP_MIPS | PRID_IMP_4KC);
68}
69
70/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * 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
77enum 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 Baechle41c594a2006-04-05 09:45:45 +010088 SET = 0x200
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
Thiemo Seufer603c3382007-09-05 12:11:22 +010091#define OP_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#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 Seufer603c3382007-09-05 12:11:22 +0100105#define FUNC_MASK 0x3f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define FUNC_SH 0
Ralf Baechle41c594a2006-04-05 09:45:45 +0100107#define SET_MASK 0x7
108#define SET_SH 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110enum 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 Baechle242954b2006-10-24 02:29:01 +0100115 insn_dsll, insn_dsll32, insn_dsra, insn_dsrl, insn_dsrl32,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 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
123struct 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-Huua9af6042007-10-18 09:11:14 +0200138static struct insn insn_table[] __initdata = {
Ralf Baechle21a151d2007-10-11 23:46:15 +0100139 { 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 Torvalds1da177e2005-04-16 15:20:36 -0700186 { insn_invalid, 0, 0 }
187};
188
189#undef M
190
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200191static u32 __init build_rs(u32 arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
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-Huua9af6042007-10-18 09:11:14 +0200199static u32 __init build_rt(u32 arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
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-Huua9af6042007-10-18 09:11:14 +0200207static u32 __init build_rd(u32 arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
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-Huua9af6042007-10-18 09:11:14 +0200215static u32 __init build_re(u32 arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
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-Huua9af6042007-10-18 09:11:14 +0200223static u32 __init build_simm(s32 arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 if (arg > 0x7fff || arg < -0x8000)
226 printk(KERN_WARNING "TLB synthesizer field overflow\n");
227
228 return arg & 0xffff;
229}
230
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200231static u32 __init build_uimm(u32 arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 if (arg & ~IMM_MASK)
234 printk(KERN_WARNING "TLB synthesizer field overflow\n");
235
236 return arg & IMM_MASK;
237}
238
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200239static u32 __init build_bimm(s32 arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
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-Huua9af6042007-10-18 09:11:14 +0200250static u32 __init build_jimm(u32 arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
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-Huua9af6042007-10-18 09:11:14 +0200258static u32 __init build_func(u32 arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 if (arg & ~FUNC_MASK)
261 printk(KERN_WARNING "TLB synthesizer field overflow\n");
262
263 return arg & FUNC_MASK;
264}
265
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200266static u32 __init build_set(u32 arg)
Ralf Baechle41c594a2006-04-05 09:45:45 +0100267{
268 if (arg & ~SET_MASK)
269 printk(KERN_WARNING "TLB synthesizer field overflow\n");
270
271 return arg & SET_MASK;
272}
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274/*
275 * The order of opcode arguments is implicitly left to right,
276 * starting with RS and ending with FUNC or IMM.
277 */
278static 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. Rozycki619b6e12007-10-23 12:43:25 +0100291 if (!ip || (opc == insn_daddiu && r4k_daddiu_bug()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 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 Baechle41c594a2006-04-05 09:45:45 +0100305 if (ip->fields & SET) op |= build_set(va_arg(ap, u32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 va_end(ap);
307
308 **buf = op;
309 (*buf)++;
310}
311
312#define I_u1u2u3(op) \
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200313 static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 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-Huua9af6042007-10-18 09:11:14 +0200320 static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 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-Huua9af6042007-10-18 09:11:14 +0200327 static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 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-Huua9af6042007-10-18 09:11:14 +0200334 static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 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-Huua9af6042007-10-18 09:11:14 +0200341 static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 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-Huua9af6042007-10-18 09:11:14 +0200348 static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 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-Huua9af6042007-10-18 09:11:14 +0200355 static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 unsigned int b) \
357 { \
358 build_insn(buf, insn##op, a, b); \
359 }
360
361#define I_u1s2(op) \
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200362 static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 signed int b) \
364 { \
365 build_insn(buf, insn##op, a, b); \
366 }
367
368#define I_u1(op) \
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200369 static void __init __maybe_unused i##op(u32 **buf, unsigned int a) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 { \
371 build_insn(buf, insn##op, a); \
372 }
373
374#define I_0(op) \
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200375 static void __init __maybe_unused i##op(u32 **buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 { \
377 build_insn(buf, insn##op); \
378 }
379
380I_u2u1s3(_addiu);
381I_u3u1u2(_addu);
382I_u2u1u3(_andi);
383I_u3u1u2(_and);
384I_u1u2s3(_beq);
385I_u1u2s3(_beql);
386I_u1s2(_bgez);
387I_u1s2(_bgezl);
388I_u1s2(_bltz);
389I_u1s2(_bltzl);
390I_u1u2s3(_bne);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100391I_u1u2u3(_dmfc0);
392I_u1u2u3(_dmtc0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393I_u2u1s3(_daddiu);
394I_u3u1u2(_daddu);
395I_u2u1u3(_dsll);
396I_u2u1u3(_dsll32);
397I_u2u1u3(_dsra);
398I_u2u1u3(_dsrl);
Ralf Baechle242954b2006-10-24 02:29:01 +0100399I_u2u1u3(_dsrl32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400I_u3u1u2(_dsubu);
401I_0(_eret);
402I_u1(_j);
403I_u1(_jal);
404I_u1(_jr);
405I_u2s3u1(_ld);
406I_u2s3u1(_ll);
407I_u2s3u1(_lld);
408I_u1s2(_lui);
409I_u2s3u1(_lw);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100410I_u1u2u3(_mfc0);
411I_u1u2u3(_mtc0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412I_u2u1u3(_ori);
413I_0(_rfe);
414I_u2s3u1(_sc);
415I_u2s3u1(_scd);
416I_u2s3u1(_sd);
417I_u2u1u3(_sll);
418I_u2u1u3(_sra);
419I_u2u1u3(_srl);
420I_u3u1u2(_subu);
421I_u2s3u1(_sw);
422I_0(_tlbp);
423I_0(_tlbwi);
424I_0(_tlbwr);
425I_u3u1u2(_xor)
426I_u2u1u3(_xori);
427
428/*
429 * handling labels
430 */
431
432enum label_id {
433 label_invalid,
434 label_second_part,
435 label_leave,
Atsushi Nemoto656be922006-10-26 00:08:31 +0900436#ifdef MODULE_START
437 label_module_alloc,
438#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 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 Torvalds1da177e2005-04-16 15:20:36 -0700448};
449
450struct label {
451 u32 *addr;
452 enum label_id lab;
453};
454
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200455static void __init build_label(struct label **lab, u32 *addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 enum label_id l)
457{
458 (*lab)->addr = addr;
459 (*lab)->lab = l;
460 (*lab)++;
461}
462
463#define L_LA(lb) \
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200464 static inline void __init l##lb(struct label **lab, u32 *addr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 { \
466 build_label(lab, addr, label##lb); \
467 }
468
469L_LA(_second_part)
470L_LA(_leave)
Atsushi Nemoto656be922006-10-26 00:08:31 +0900471#ifdef MODULE_START
472L_LA(_module_alloc)
473#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474L_LA(_vmalloc)
475L_LA(_vmalloc_done)
476L_LA(_tlbw_hazard)
477L_LA(_split)
478L_LA(_nopage_tlbl)
479L_LA(_nopage_tlbs)
480L_LA(_nopage_tlbm)
481L_LA(_smp_pgtable_change)
482L_LA(_r3000_write_probe_fail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484/* convenience macros for instructions */
Ralf Baechle875d43e2005-09-03 15:56:16 -0700485#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486# 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 Baechle41c594a2006-04-05 09:45:45 +0100491# define i_MFC0(buf, rt, rd...) i_dmfc0(buf, rt, rd)
492# define i_MTC0(buf, rt, rd...) i_dmtc0(buf, rt, rd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493# 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 Baechle41c594a2006-04-05 09:45:45 +0100504# define i_MFC0(buf, rt, rd...) i_mfc0(buf, rt, rd)
505# define i_MTC0(buf, rt, rd...) i_mtc0(buf, rt, rd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506# 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-Huua9af6042007-10-18 09:11:14 +0200523static int __init __maybe_unused in_compat_space_p(long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 /* Is this address in 32bit compat space? */
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100526#ifdef CONFIG_64BIT
Ralf Baechle3ef33e62005-07-08 20:10:17 +0000527 return (((addr) & 0xffffffff00000000L) == 0xffffffff00000000L);
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100528#else
529 return 1;
530#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200533static int __init __maybe_unused rel_highest(long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100535#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return ((((val + 0x800080008000L) >> 48) & 0xffff) ^ 0x8000) - 0x8000;
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100537#else
538 return 0;
539#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200542static int __init __maybe_unused rel_higher(long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100544#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return ((((val + 0x80008000L) >> 32) & 0xffff) ^ 0x8000) - 0x8000;
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100546#else
547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#endif
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100549}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200551static int __init rel_hi(long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
553 return ((((val + 0x8000L) >> 16) & 0xffff) ^ 0x8000) - 0x8000;
554}
555
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200556static int __init rel_lo(long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 return ((val & 0xffff) ^ 0x8000) - 0x8000;
559}
560
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200561static void __init i_LA_mostly(u32 **buf, unsigned int rs, long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 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 Torvalds1da177e2005-04-16 15:20:36 -0700574 i_lui(buf, rs, rel_hi(addr));
575}
576
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200577static void __init __maybe_unused i_LA(u32 **buf, unsigned int rs, long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
579 i_LA_mostly(buf, rs, addr);
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100580 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 Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
588/*
589 * handle relocations
590 */
591
592struct reloc {
593 u32 *addr;
594 unsigned int type;
595 enum label_id lab;
596};
597
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200598static void __init r_mips_pc16(struct reloc **rel, u32 *addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 enum label_id l)
600{
601 (*rel)->addr = addr;
602 (*rel)->type = R_MIPS_PC16;
603 (*rel)->lab = l;
604 (*rel)++;
605}
606
607static 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-Huua9af6042007-10-18 09:11:14 +0200623static void __init resolve_relocs(struct reloc *rel, struct label *lab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
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-Huua9af6042007-10-18 09:11:14 +0200633static void __init move_relocs(struct reloc *rel, u32 *first, u32 *end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 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-Huua9af6042007-10-18 09:11:14 +0200641static void __init move_labels(struct label *lab, u32 *first, u32 *end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 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-Huua9af6042007-10-18 09:11:14 +0200649static void __init copy_handler(struct reloc *rel, struct label *lab,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 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-Huua9af6042007-10-18 09:11:14 +0200660static int __init __maybe_unused insn_has_bdelay(struct reloc *rel,
David Rientjese8b6d402007-05-10 22:51:05 -0700661 u32 *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
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 Rientjese8b6d402007-05-10 22:51:05 -0700674static void __init __maybe_unused
Ralf Baechle1443e482006-03-08 15:37:26 +0000675 il_bltz(u32 **p, struct reloc **r, unsigned int reg, enum label_id l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 r_mips_pc16(r, *p, l);
678 i_bltz(p, reg, 0);
679}
680
David Rientjese8b6d402007-05-10 22:51:05 -0700681static void __init __maybe_unused il_b(u32 **p, struct reloc **r,
682 enum label_id l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 r_mips_pc16(r, *p, l);
685 i_b(p, 0);
686}
687
Ralf Baechle1443e482006-03-08 15:37:26 +0000688static void __init il_beqz(u32 **p, struct reloc **r, unsigned int reg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 enum label_id l)
690{
691 r_mips_pc16(r, *p, l);
692 i_beqz(p, reg, 0);
693}
694
David Rientjese8b6d402007-05-10 22:51:05 -0700695static void __init __maybe_unused
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696il_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 Baechle1443e482006-03-08 15:37:26 +0000702static void __init il_bnez(u32 **p, struct reloc **r, unsigned int reg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 enum label_id l)
704{
705 r_mips_pc16(r, *p, l);
706 i_bnez(p, reg, 0);
707}
708
Ralf Baechle1443e482006-03-08 15:37:26 +0000709static void __init il_bgezl(u32 **p, struct reloc **r, unsigned int reg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 enum label_id l)
711{
712 r_mips_pc16(r, *p, l);
713 i_bgezl(p, reg, 0);
714}
715
David Rientjese8b6d402007-05-10 22:51:05 -0700716static void __init __maybe_unused
Atsushi Nemoto656be922006-10-26 00:08:31 +0900717il_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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723/* The only general purpose registers allowed in TLB handlers. */
724#define K0 26
725#define K1 27
726
727/* Some CP0 registers */
Ralf Baechle41c594a2006-04-05 09:45:45 +0100728#define C0_INDEX 0, 0
729#define C0_ENTRYLO0 2, 0
730#define C0_TCBIND 2, 2
731#define C0_ENTRYLO1 3, 0
732#define C0_CONTEXT 4, 0
733#define C0_BADVADDR 8, 0
734#define C0_ENTRYHI 10, 0
735#define C0_EPC 14, 0
736#define C0_XCONTEXT 20, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Ralf Baechle875d43e2005-09-03 15:56:16 -0700738#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739# define GET_CONTEXT(buf, reg) i_MFC0(buf, reg, C0_XCONTEXT)
740#else
741# define GET_CONTEXT(buf, reg) i_MFC0(buf, reg, C0_CONTEXT)
742#endif
743
744/* The worst case length of the handler is around 18 instructions for
745 * R3000-style TLBs and up to 63 instructions for R4000-style TLBs.
746 * Maximum space available is 32 instructions for R3000 and 64
747 * instructions for R4000.
748 *
749 * We deliberately chose a buffer size of 128, so we won't scribble
750 * over anything important on overflow before we panic.
751 */
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200752static u32 tlb_handler[128] __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754/* simply assume worst case size for labels and relocs */
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200755static struct label labels[128] __initdata;
756static struct reloc relocs[128] __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758/*
759 * The R3000 TLB handler is simple.
760 */
761static void __init build_r3000_tlb_refill_handler(void)
762{
763 long pgdc = (long)pgd_current;
764 u32 *p;
Thiemo Seufer115f2a42006-07-09 01:47:06 +0100765 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 memset(tlb_handler, 0, sizeof(tlb_handler));
768 p = tlb_handler;
769
770 i_mfc0(&p, K0, C0_BADVADDR);
771 i_lui(&p, K1, rel_hi(pgdc)); /* cp0 delay */
772 i_lw(&p, K1, rel_lo(pgdc), K1);
773 i_srl(&p, K0, K0, 22); /* load delay */
774 i_sll(&p, K0, K0, 2);
775 i_addu(&p, K1, K1, K0);
776 i_mfc0(&p, K0, C0_CONTEXT);
777 i_lw(&p, K1, 0, K1); /* cp0 delay */
778 i_andi(&p, K0, K0, 0xffc); /* load delay */
779 i_addu(&p, K1, K1, K0);
780 i_lw(&p, K0, 0, K1);
781 i_nop(&p); /* load delay */
782 i_mtc0(&p, K0, C0_ENTRYLO0);
783 i_mfc0(&p, K1, C0_EPC); /* cp0 delay */
784 i_tlbwr(&p); /* cp0 delay */
785 i_jr(&p, K1);
786 i_rfe(&p); /* branch delay */
787
788 if (p > tlb_handler + 32)
789 panic("TLB refill handler space exceeded");
790
Thiemo Seufer115f2a42006-07-09 01:47:06 +0100791 pr_info("Synthesized TLB refill handler (%u instructions).\n",
792 (unsigned int)(p - tlb_handler));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Thiemo Seufer115f2a42006-07-09 01:47:06 +0100794 pr_debug("\t.set push\n");
795 pr_debug("\t.set noreorder\n");
796 for (i = 0; i < (p - tlb_handler); i++)
797 pr_debug("\t.word 0x%08x\n", tlb_handler[i]);
798 pr_debug("\t.set pop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Ralf Baechle91b05e62006-03-29 18:53:00 +0100800 memcpy((void *)ebase, tlb_handler, 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
803/*
804 * The R4000 TLB handler is much more complicated. We have two
805 * consecutive handler areas with 32 instructions space each.
806 * Since they aren't used at the same time, we can overflow in the
807 * other one.To keep things simple, we first assume linear space,
808 * then we relocate it to the final handler layout as needed.
809 */
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200810static u32 final_handler[64] __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812/*
813 * Hazards
814 *
815 * From the IDT errata for the QED RM5230 (Nevada), processor revision 1.0:
816 * 2. A timing hazard exists for the TLBP instruction.
817 *
818 * stalling_instruction
819 * TLBP
820 *
821 * The JTLB is being read for the TLBP throughout the stall generated by the
822 * previous instruction. This is not really correct as the stalling instruction
823 * can modify the address used to access the JTLB. The failure symptom is that
824 * the TLBP instruction will use an address created for the stalling instruction
825 * and not the address held in C0_ENHI and thus report the wrong results.
826 *
827 * The software work-around is to not allow the instruction preceding the TLBP
828 * to stall - make it an NOP or some other instruction guaranteed not to stall.
829 *
830 * Errata 2 will not be fixed. This errata is also on the R5000.
831 *
832 * As if we MIPS hackers wouldn't know how to nop pipelines happy ...
833 */
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200834static void __init __maybe_unused build_tlb_probe_entry(u32 **p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Ralf Baechle10cc3522007-10-11 23:46:15 +0100836 switch (current_cpu_type()) {
Thiemo Seuferf5b4d952005-09-09 17:11:50 +0000837 /* Found by experiment: R4600 v2.0 needs this, too. */
838 case CPU_R4600:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 case CPU_R5000:
840 case CPU_R5000A:
841 case CPU_NEVADA:
842 i_nop(p);
843 i_tlbp(p);
844 break;
845
846 default:
847 i_tlbp(p);
848 break;
849 }
850}
851
852/*
853 * Write random or indexed TLB entry, and care about the hazards from
854 * the preceeding mtc0 and for the following eret.
855 */
856enum tlb_write_entry { tlb_random, tlb_indexed };
857
Franck Bui-Huua9af6042007-10-18 09:11:14 +0200858static void __init build_tlb_write_entry(u32 **p, struct label **l,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 struct reloc **r,
860 enum tlb_write_entry wmode)
861{
862 void(*tlbw)(u32 **) = NULL;
863
864 switch (wmode) {
865 case tlb_random: tlbw = i_tlbwr; break;
866 case tlb_indexed: tlbw = i_tlbwi; break;
867 }
868
Ralf Baechle161548b2008-01-29 10:14:54 +0000869 if (cpu_has_mips_r2) {
870 i_ehb(p);
871 tlbw(p);
872 return;
873 }
874
Ralf Baechle10cc3522007-10-11 23:46:15 +0100875 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 case CPU_R4000PC:
877 case CPU_R4000SC:
878 case CPU_R4000MC:
879 case CPU_R4400PC:
880 case CPU_R4400SC:
881 case CPU_R4400MC:
882 /*
883 * This branch uses up a mtc0 hazard nop slot and saves
884 * two nops after the tlbw instruction.
885 */
886 il_bgezl(p, r, 0, label_tlbw_hazard);
887 tlbw(p);
888 l_tlbw_hazard(l, *p);
889 i_nop(p);
890 break;
891
892 case CPU_R4600:
893 case CPU_R4700:
894 case CPU_R5000:
895 case CPU_R5000A:
Maciej W. Rozycki2c93e122005-06-30 10:51:01 +0000896 i_nop(p);
897 tlbw(p);
898 i_nop(p);
899 break;
900
901 case CPU_R4300:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 case CPU_5KC:
903 case CPU_TX49XX:
904 case CPU_AU1000:
905 case CPU_AU1100:
906 case CPU_AU1500:
907 case CPU_AU1550:
Pete Popove3ad1c22005-03-01 06:33:16 +0000908 case CPU_AU1200:
Pete Popovbdf21b12005-07-14 17:47:57 +0000909 case CPU_PR4450:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 i_nop(p);
911 tlbw(p);
912 break;
913
914 case CPU_R10000:
915 case CPU_R12000:
Kumba44d921b2006-05-16 22:23:59 -0400916 case CPU_R14000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 case CPU_4KC:
918 case CPU_SB1:
Andrew Isaacson93ce2f522005-10-19 23:56:20 -0700919 case CPU_SB1A:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 case CPU_4KSC:
921 case CPU_20KC:
922 case CPU_25KF:
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200923 case CPU_BCM3302:
924 case CPU_BCM4710:
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800925 case CPU_LOONGSON2:
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +0100926 if (m4kc_tlbp_war())
927 i_nop(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 tlbw(p);
929 break;
930
931 case CPU_NEVADA:
932 i_nop(p); /* QED specifies 2 nops hazard */
933 /*
934 * This branch uses up a mtc0 hazard nop slot and saves
935 * a nop after the tlbw instruction.
936 */
937 il_bgezl(p, r, 0, label_tlbw_hazard);
938 tlbw(p);
939 l_tlbw_hazard(l, *p);
940 break;
941
942 case CPU_RM7000:
943 i_nop(p);
944 i_nop(p);
945 i_nop(p);
946 i_nop(p);
947 tlbw(p);
948 break;
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 case CPU_RM9000:
951 /*
952 * When the JTLB is updated by tlbwi or tlbwr, a subsequent
953 * use of the JTLB for instructions should not occur for 4
954 * cpu cycles and use for data translations should not occur
955 * for 3 cpu cycles.
956 */
957 i_ssnop(p);
958 i_ssnop(p);
959 i_ssnop(p);
960 i_ssnop(p);
961 tlbw(p);
962 i_ssnop(p);
963 i_ssnop(p);
964 i_ssnop(p);
965 i_ssnop(p);
966 break;
967
968 case CPU_VR4111:
969 case CPU_VR4121:
970 case CPU_VR4122:
971 case CPU_VR4181:
972 case CPU_VR4181A:
973 i_nop(p);
974 i_nop(p);
975 tlbw(p);
976 i_nop(p);
977 i_nop(p);
978 break;
979
980 case CPU_VR4131:
981 case CPU_VR4133:
Ralf Baechle7623deb2005-08-29 16:49:55 +0000982 case CPU_R5432:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 i_nop(p);
984 i_nop(p);
985 tlbw(p);
986 break;
987
988 default:
989 panic("No TLB refill handler yet (CPU type: %d)",
990 current_cpu_data.cputype);
991 break;
992 }
993}
994
Ralf Baechle875d43e2005-09-03 15:56:16 -0700995#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/*
997 * TMP and PTR are scratch.
998 * TMP will be clobbered, PTR will hold the pmd entry.
999 */
Franck Bui-Huua9af6042007-10-18 09:11:14 +02001000static void __init
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001build_get_pmde64(u32 **p, struct label **l, struct reloc **r,
1002 unsigned int tmp, unsigned int ptr)
1003{
1004 long pgdc = (long)pgd_current;
1005
1006 /*
1007 * The vmalloc handling is not in the hotpath.
1008 */
1009 i_dmfc0(p, tmp, C0_BADVADDR);
Atsushi Nemoto656be922006-10-26 00:08:31 +09001010#ifdef MODULE_START
1011 il_bltz(p, r, tmp, label_module_alloc);
1012#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 il_bltz(p, r, tmp, label_vmalloc);
Atsushi Nemoto656be922006-10-26 00:08:31 +09001014#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 /* No i_nop needed here, since the next insn doesn't touch TMP. */
1016
1017#ifdef CONFIG_SMP
Ralf Baechle41c594a2006-04-05 09:45:45 +01001018# ifdef CONFIG_MIPS_MT_SMTC
1019 /*
1020 * SMTC uses TCBind value as "CPU" index
1021 */
1022 i_mfc0(p, ptr, C0_TCBIND);
1023 i_dsrl(p, ptr, ptr, 19);
1024# else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 /*
Thiemo Seufer1b3a6e92005-04-01 14:07:13 +00001026 * 64 bit SMP running in XKPHYS has smp_processor_id() << 3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 * stored in CONTEXT.
1028 */
Thiemo Seufer1b3a6e92005-04-01 14:07:13 +00001029 i_dmfc0(p, ptr, C0_CONTEXT);
1030 i_dsrl(p, ptr, ptr, 23);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001031#endif
Thiemo Seufer1b3a6e92005-04-01 14:07:13 +00001032 i_LA_mostly(p, tmp, pgdc);
1033 i_daddu(p, ptr, ptr, tmp);
1034 i_dmfc0(p, tmp, C0_BADVADDR);
1035 i_ld(p, ptr, rel_lo(pgdc), ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036#else
1037 i_LA_mostly(p, ptr, pgdc);
1038 i_ld(p, ptr, rel_lo(pgdc), ptr);
1039#endif
1040
1041 l_vmalloc_done(l, *p);
Ralf Baechle242954b2006-10-24 02:29:01 +01001042
1043 if (PGDIR_SHIFT - 3 < 32) /* get pgd offset in bytes */
1044 i_dsrl(p, tmp, tmp, PGDIR_SHIFT-3);
1045 else
1046 i_dsrl32(p, tmp, tmp, PGDIR_SHIFT - 3 - 32);
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 i_andi(p, tmp, tmp, (PTRS_PER_PGD - 1)<<3);
1049 i_daddu(p, ptr, ptr, tmp); /* add in pgd offset */
1050 i_dmfc0(p, tmp, C0_BADVADDR); /* get faulting address */
1051 i_ld(p, ptr, 0, ptr); /* get pmd pointer */
1052 i_dsrl(p, tmp, tmp, PMD_SHIFT-3); /* get pmd offset in bytes */
1053 i_andi(p, tmp, tmp, (PTRS_PER_PMD - 1)<<3);
1054 i_daddu(p, ptr, ptr, tmp); /* add in pmd offset */
1055}
1056
1057/*
1058 * BVADDR is the faulting address, PTR is scratch.
1059 * PTR will hold the pgd for vmalloc.
1060 */
Franck Bui-Huua9af6042007-10-18 09:11:14 +02001061static void __init
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062build_get_pgd_vmalloc64(u32 **p, struct label **l, struct reloc **r,
1063 unsigned int bvaddr, unsigned int ptr)
1064{
1065 long swpd = (long)swapper_pg_dir;
1066
Atsushi Nemoto656be922006-10-26 00:08:31 +09001067#ifdef MODULE_START
1068 long modd = (long)module_pg_dir;
1069
1070 l_module_alloc(l, *p);
1071 /*
1072 * Assumption:
1073 * VMALLOC_START >= 0xc000000000000000UL
1074 * MODULE_START >= 0xe000000000000000UL
1075 */
1076 i_SLL(p, ptr, bvaddr, 2);
1077 il_bgez(p, r, ptr, label_vmalloc);
1078
1079 if (in_compat_space_p(MODULE_START) && !rel_lo(MODULE_START)) {
1080 i_lui(p, ptr, rel_hi(MODULE_START)); /* delay slot */
1081 } else {
1082 /* unlikely configuration */
1083 i_nop(p); /* delay slot */
1084 i_LA(p, ptr, MODULE_START);
1085 }
1086 i_dsubu(p, bvaddr, bvaddr, ptr);
1087
1088 if (in_compat_space_p(modd) && !rel_lo(modd)) {
1089 il_b(p, r, label_vmalloc_done);
1090 i_lui(p, ptr, rel_hi(modd));
1091 } else {
1092 i_LA_mostly(p, ptr, modd);
1093 il_b(p, r, label_vmalloc_done);
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +01001094 if (in_compat_space_p(modd))
1095 i_addiu(p, ptr, ptr, rel_lo(modd));
1096 else
1097 i_daddiu(p, ptr, ptr, rel_lo(modd));
Atsushi Nemoto656be922006-10-26 00:08:31 +09001098 }
1099
1100 l_vmalloc(l, *p);
1101 if (in_compat_space_p(MODULE_START) && !rel_lo(MODULE_START) &&
1102 MODULE_START << 32 == VMALLOC_START)
1103 i_dsll32(p, ptr, ptr, 0); /* typical case */
1104 else
1105 i_LA(p, ptr, VMALLOC_START);
1106#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 l_vmalloc(l, *p);
1108 i_LA(p, ptr, VMALLOC_START);
Atsushi Nemoto656be922006-10-26 00:08:31 +09001109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 i_dsubu(p, bvaddr, bvaddr, ptr);
1111
1112 if (in_compat_space_p(swpd) && !rel_lo(swpd)) {
1113 il_b(p, r, label_vmalloc_done);
1114 i_lui(p, ptr, rel_hi(swpd));
1115 } else {
1116 i_LA_mostly(p, ptr, swpd);
1117 il_b(p, r, label_vmalloc_done);
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +01001118 if (in_compat_space_p(swpd))
1119 i_addiu(p, ptr, ptr, rel_lo(swpd));
1120 else
1121 i_daddiu(p, ptr, ptr, rel_lo(swpd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
1123}
1124
Ralf Baechle875d43e2005-09-03 15:56:16 -07001125#else /* !CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127/*
1128 * TMP and PTR are scratch.
1129 * TMP will be clobbered, PTR will hold the pgd entry.
1130 */
Franck Bui-Huua9af6042007-10-18 09:11:14 +02001131static void __init __maybe_unused
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr)
1133{
1134 long pgdc = (long)pgd_current;
1135
1136 /* 32 bit SMP has smp_processor_id() stored in CONTEXT. */
1137#ifdef CONFIG_SMP
Ralf Baechle41c594a2006-04-05 09:45:45 +01001138#ifdef CONFIG_MIPS_MT_SMTC
1139 /*
1140 * SMTC uses TCBind value as "CPU" index
1141 */
1142 i_mfc0(p, ptr, C0_TCBIND);
1143 i_LA_mostly(p, tmp, pgdc);
1144 i_srl(p, ptr, ptr, 19);
1145#else
1146 /*
1147 * smp_processor_id() << 3 is stored in CONTEXT.
1148 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 i_mfc0(p, ptr, C0_CONTEXT);
1150 i_LA_mostly(p, tmp, pgdc);
1151 i_srl(p, ptr, ptr, 23);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001152#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 i_addu(p, ptr, tmp, ptr);
1154#else
1155 i_LA_mostly(p, ptr, pgdc);
1156#endif
1157 i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */
1158 i_lw(p, ptr, rel_lo(pgdc), ptr);
1159 i_srl(p, tmp, tmp, PGDIR_SHIFT); /* get pgd only bits */
1160 i_sll(p, tmp, tmp, PGD_T_LOG2);
1161 i_addu(p, ptr, ptr, tmp); /* add in pgd offset */
1162}
1163
Ralf Baechle875d43e2005-09-03 15:56:16 -07001164#endif /* !CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Franck Bui-Huua9af6042007-10-18 09:11:14 +02001166static void __init build_adjust_context(u32 **p, unsigned int ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Ralf Baechle242954b2006-10-24 02:29:01 +01001168 unsigned int shift = 4 - (PTE_T_LOG2 + 1) + PAGE_SHIFT - 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 unsigned int mask = (PTRS_PER_PTE / 2 - 1) << (PTE_T_LOG2 + 1);
1170
Ralf Baechle10cc3522007-10-11 23:46:15 +01001171 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 case CPU_VR41XX:
1173 case CPU_VR4111:
1174 case CPU_VR4121:
1175 case CPU_VR4122:
1176 case CPU_VR4131:
1177 case CPU_VR4181:
1178 case CPU_VR4181A:
1179 case CPU_VR4133:
1180 shift += 2;
1181 break;
1182
1183 default:
1184 break;
1185 }
1186
1187 if (shift)
1188 i_SRL(p, ctx, ctx, shift);
1189 i_andi(p, ctx, ctx, mask);
1190}
1191
Franck Bui-Huua9af6042007-10-18 09:11:14 +02001192static void __init build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 /*
1195 * Bug workaround for the Nevada. It seems as if under certain
1196 * circumstances the move from cp0_context might produce a
1197 * bogus result when the mfc0 instruction and its consumer are
1198 * in a different cacheline or a load instruction, probably any
1199 * memory reference, is between them.
1200 */
Ralf Baechle10cc3522007-10-11 23:46:15 +01001201 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 case CPU_NEVADA:
1203 i_LW(p, ptr, 0, ptr);
1204 GET_CONTEXT(p, tmp); /* get context reg */
1205 break;
1206
1207 default:
1208 GET_CONTEXT(p, tmp); /* get context reg */
1209 i_LW(p, ptr, 0, ptr);
1210 break;
1211 }
1212
1213 build_adjust_context(p, tmp);
1214 i_ADDU(p, ptr, ptr, tmp); /* add in offset */
1215}
1216
Franck Bui-Huua9af6042007-10-18 09:11:14 +02001217static void __init build_update_entries(u32 **p, unsigned int tmp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 unsigned int ptep)
1219{
1220 /*
1221 * 64bit address support (36bit on a 32bit CPU) in a 32bit
1222 * Kernel is a special case. Only a few CPUs use it.
1223 */
1224#ifdef CONFIG_64BIT_PHYS_ADDR
1225 if (cpu_has_64bits) {
1226 i_ld(p, tmp, 0, ptep); /* get even pte */
1227 i_ld(p, ptep, sizeof(pte_t), ptep); /* get odd pte */
1228 i_dsrl(p, tmp, tmp, 6); /* convert to entrylo0 */
1229 i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */
1230 i_dsrl(p, ptep, ptep, 6); /* convert to entrylo1 */
1231 i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */
1232 } else {
1233 int pte_off_even = sizeof(pte_t) / 2;
1234 int pte_off_odd = pte_off_even + sizeof(pte_t);
1235
1236 /* The pte entries are pre-shifted */
1237 i_lw(p, tmp, pte_off_even, ptep); /* get even pte */
1238 i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */
1239 i_lw(p, ptep, pte_off_odd, ptep); /* get odd pte */
1240 i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */
1241 }
1242#else
1243 i_LW(p, tmp, 0, ptep); /* get even pte */
1244 i_LW(p, ptep, sizeof(pte_t), ptep); /* get odd pte */
1245 if (r45k_bvahwbug())
1246 build_tlb_probe_entry(p);
1247 i_SRL(p, tmp, tmp, 6); /* convert to entrylo0 */
1248 if (r4k_250MHZhwbug())
1249 i_mtc0(p, 0, C0_ENTRYLO0);
1250 i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */
1251 i_SRL(p, ptep, ptep, 6); /* convert to entrylo1 */
1252 if (r45k_bvahwbug())
1253 i_mfc0(p, tmp, C0_INDEX);
1254 if (r4k_250MHZhwbug())
1255 i_mtc0(p, 0, C0_ENTRYLO1);
1256 i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */
1257#endif
1258}
1259
1260static void __init build_r4000_tlb_refill_handler(void)
1261{
1262 u32 *p = tlb_handler;
1263 struct label *l = labels;
1264 struct reloc *r = relocs;
1265 u32 *f;
1266 unsigned int final_len;
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001267 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 memset(tlb_handler, 0, sizeof(tlb_handler));
1270 memset(labels, 0, sizeof(labels));
1271 memset(relocs, 0, sizeof(relocs));
1272 memset(final_handler, 0, sizeof(final_handler));
1273
1274 /*
1275 * create the plain linear handler
1276 */
1277 if (bcm1250_m3_war()) {
1278 i_MFC0(&p, K0, C0_BADVADDR);
1279 i_MFC0(&p, K1, C0_ENTRYHI);
1280 i_xor(&p, K0, K0, K1);
1281 i_SRL(&p, K0, K0, PAGE_SHIFT + 1);
1282 il_bnez(&p, &r, K0, label_leave);
1283 /* No need for i_nop */
1284 }
1285
Ralf Baechle875d43e2005-09-03 15:56:16 -07001286#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */
1288#else
1289 build_get_pgde32(&p, K0, K1); /* get pgd in K1 */
1290#endif
1291
1292 build_get_ptep(&p, K0, K1);
1293 build_update_entries(&p, K0, K1);
1294 build_tlb_write_entry(&p, &l, &r, tlb_random);
1295 l_leave(&l, p);
1296 i_eret(&p); /* return from trap */
1297
Ralf Baechle875d43e2005-09-03 15:56:16 -07001298#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 build_get_pgd_vmalloc64(&p, &l, &r, K0, K1);
1300#endif
1301
1302 /*
1303 * Overflow check: For the 64bit handler, we need at least one
1304 * free instruction slot for the wrap-around branch. In worst
1305 * case, if the intended insertion point is a delay slot, we
Matt LaPlante4b3f6862006-10-03 22:21:02 +02001306 * need three, with the second nop'ed and the third being
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 * unused.
1308 */
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001309 /* Loongson2 ebase is different than r4k, we have more space */
1310#if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if ((p - tlb_handler) > 64)
1312 panic("TLB refill handler space exceeded");
1313#else
1314 if (((p - tlb_handler) > 63)
1315 || (((p - tlb_handler) > 61)
1316 && insn_has_bdelay(relocs, tlb_handler + 29)))
1317 panic("TLB refill handler space exceeded");
1318#endif
1319
1320 /*
1321 * Now fold the handler in the TLB refill handler space.
1322 */
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001323#if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 f = final_handler;
1325 /* Simplest case, just copy the handler. */
1326 copy_handler(relocs, labels, tlb_handler, p, f);
1327 final_len = p - tlb_handler;
Ralf Baechle875d43e2005-09-03 15:56:16 -07001328#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 f = final_handler + 32;
1330 if ((p - tlb_handler) <= 32) {
1331 /* Just copy the handler. */
1332 copy_handler(relocs, labels, tlb_handler, p, f);
1333 final_len = p - tlb_handler;
1334 } else {
1335 u32 *split = tlb_handler + 30;
1336
1337 /*
1338 * Find the split point.
1339 */
1340 if (insn_has_bdelay(relocs, split - 1))
1341 split--;
1342
1343 /* Copy first part of the handler. */
1344 copy_handler(relocs, labels, tlb_handler, split, f);
1345 f += split - tlb_handler;
1346
1347 /* Insert branch. */
1348 l_split(&l, final_handler);
1349 il_b(&f, &r, label_split);
1350 if (insn_has_bdelay(relocs, split))
1351 i_nop(&f);
1352 else {
1353 copy_handler(relocs, labels, split, split + 1, f);
1354 move_labels(labels, f, f + 1, -1);
1355 f++;
1356 split++;
1357 }
1358
1359 /* Copy the rest of the handler. */
1360 copy_handler(relocs, labels, split, p, final_handler);
1361 final_len = (f - (final_handler + 32)) + (p - split);
1362 }
Ralf Baechle875d43e2005-09-03 15:56:16 -07001363#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 resolve_relocs(relocs, labels);
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001366 pr_info("Synthesized TLB refill handler (%u instructions).\n",
1367 final_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001369 f = final_handler;
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001370#if defined(CONFIG_64BIT) && !defined(CONFIG_CPU_LOONGSON2)
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001371 if (final_len > 32)
1372 final_len = 64;
1373 else
1374 f = final_handler + 32;
Maciej W. Rozycki4c0a2d42005-06-29 10:43:51 +00001375#endif /* CONFIG_64BIT */
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001376 pr_debug("\t.set push\n");
1377 pr_debug("\t.set noreorder\n");
1378 for (i = 0; i < final_len; i++)
1379 pr_debug("\t.word 0x%08x\n", f[i]);
1380 pr_debug("\t.set pop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Ralf Baechle91b05e62006-03-29 18:53:00 +01001382 memcpy((void *)ebase, final_handler, 0x100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
1385/*
1386 * TLB load/store/modify handlers.
1387 *
1388 * Only the fastpath gets synthesized at runtime, the slowpath for
1389 * do_page_fault remains normal asm.
1390 */
1391extern void tlb_do_page_fault_0(void);
1392extern void tlb_do_page_fault_1(void);
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394/*
1395 * 128 instructions for the fastpath handler is generous and should
1396 * never be exceeded.
1397 */
1398#define FASTPATH_SIZE 128
1399
Franck Bui-Huucbdbe072007-10-18 09:11:16 +02001400u32 handle_tlbl[FASTPATH_SIZE] __cacheline_aligned;
1401u32 handle_tlbs[FASTPATH_SIZE] __cacheline_aligned;
1402u32 handle_tlbm[FASTPATH_SIZE] __cacheline_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404static void __init
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001405iPTE_LW(u32 **p, struct label **l, unsigned int pte, unsigned int ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
1407#ifdef CONFIG_SMP
1408# ifdef CONFIG_64BIT_PHYS_ADDR
1409 if (cpu_has_64bits)
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001410 i_lld(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 else
1412# endif
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001413 i_LL(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414#else
1415# ifdef CONFIG_64BIT_PHYS_ADDR
1416 if (cpu_has_64bits)
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001417 i_ld(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 else
1419# endif
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001420 i_LW(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421#endif
1422}
1423
1424static void __init
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001425iPTE_SW(u32 **p, struct reloc **r, unsigned int pte, unsigned int ptr,
1426 unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001428#ifdef CONFIG_64BIT_PHYS_ADDR
1429 unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY);
1430#endif
1431
1432 i_ori(p, pte, pte, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433#ifdef CONFIG_SMP
1434# ifdef CONFIG_64BIT_PHYS_ADDR
1435 if (cpu_has_64bits)
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001436 i_scd(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 else
1438# endif
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001439 i_SC(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 if (r10000_llsc_war())
1442 il_beqzl(p, r, pte, label_smp_pgtable_change);
1443 else
1444 il_beqz(p, r, pte, label_smp_pgtable_change);
1445
1446# ifdef CONFIG_64BIT_PHYS_ADDR
1447 if (!cpu_has_64bits) {
1448 /* no i_nop needed */
1449 i_ll(p, pte, sizeof(pte_t) / 2, ptr);
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001450 i_ori(p, pte, pte, hwmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 i_sc(p, pte, sizeof(pte_t) / 2, ptr);
1452 il_beqz(p, r, pte, label_smp_pgtable_change);
1453 /* no i_nop needed */
1454 i_lw(p, pte, 0, ptr);
1455 } else
1456 i_nop(p);
1457# else
1458 i_nop(p);
1459# endif
1460#else
1461# ifdef CONFIG_64BIT_PHYS_ADDR
1462 if (cpu_has_64bits)
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001463 i_sd(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 else
1465# endif
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001466 i_SW(p, pte, 0, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468# ifdef CONFIG_64BIT_PHYS_ADDR
1469 if (!cpu_has_64bits) {
1470 i_lw(p, pte, sizeof(pte_t) / 2, ptr);
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001471 i_ori(p, pte, pte, hwmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 i_sw(p, pte, sizeof(pte_t) / 2, ptr);
1473 i_lw(p, pte, 0, ptr);
1474 }
1475# endif
1476#endif
1477}
1478
1479/*
1480 * Check if PTE is present, if not then jump to LABEL. PTR points to
1481 * the page table where this PTE is located, PTE will be re-loaded
1482 * with it's original value.
1483 */
1484static void __init
1485build_pte_present(u32 **p, struct label **l, struct reloc **r,
1486 unsigned int pte, unsigned int ptr, enum label_id lid)
1487{
1488 i_andi(p, pte, pte, _PAGE_PRESENT | _PAGE_READ);
1489 i_xori(p, pte, pte, _PAGE_PRESENT | _PAGE_READ);
1490 il_bnez(p, r, pte, lid);
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001491 iPTE_LW(p, l, pte, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
1494/* Make PTE valid, store result in PTR. */
1495static void __init
1496build_make_valid(u32 **p, struct reloc **r, unsigned int pte,
1497 unsigned int ptr)
1498{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001499 unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED;
1500
1501 iPTE_SW(p, r, pte, ptr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
1504/*
1505 * Check if PTE can be written to, if not branch to LABEL. Regardless
1506 * restore PTE with value from PTR when done.
1507 */
1508static void __init
1509build_pte_writable(u32 **p, struct label **l, struct reloc **r,
1510 unsigned int pte, unsigned int ptr, enum label_id lid)
1511{
1512 i_andi(p, pte, pte, _PAGE_PRESENT | _PAGE_WRITE);
1513 i_xori(p, pte, pte, _PAGE_PRESENT | _PAGE_WRITE);
1514 il_bnez(p, r, pte, lid);
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001515 iPTE_LW(p, l, pte, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
1518/* Make PTE writable, update software status bits as well, then store
1519 * at PTR.
1520 */
1521static void __init
1522build_make_write(u32 **p, struct reloc **r, unsigned int pte,
1523 unsigned int ptr)
1524{
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001525 unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID
1526 | _PAGE_DIRTY);
1527
1528 iPTE_SW(p, r, pte, ptr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
1531/*
1532 * Check if PTE can be modified, if not branch to LABEL. Regardless
1533 * restore PTE with value from PTR when done.
1534 */
1535static void __init
1536build_pte_modifiable(u32 **p, struct label **l, struct reloc **r,
1537 unsigned int pte, unsigned int ptr, enum label_id lid)
1538{
1539 i_andi(p, pte, pte, _PAGE_WRITE);
1540 il_beqz(p, r, pte, lid);
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001541 iPTE_LW(p, l, pte, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543
1544/*
1545 * R3000 style TLB load/store/modify handlers.
1546 */
1547
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001548/*
1549 * This places the pte into ENTRYLO0 and writes it with tlbwi.
1550 * Then it returns.
1551 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552static void __init
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001553build_r3000_pte_reload_tlbwi(u32 **p, unsigned int pte, unsigned int tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554{
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001555 i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
1556 i_mfc0(p, tmp, C0_EPC); /* cp0 delay */
1557 i_tlbwi(p);
1558 i_jr(p, tmp);
1559 i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
1562/*
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001563 * This places the pte into ENTRYLO0 and writes it with tlbwi
1564 * or tlbwr as appropriate. This is because the index register
1565 * may have the probe fail bit set as a result of a trap on a
1566 * kseg2 access, i.e. without refill. Then it returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 */
1568static void __init
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001569build_r3000_tlb_reload_write(u32 **p, struct label **l, struct reloc **r,
1570 unsigned int pte, unsigned int tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
1572 i_mfc0(p, tmp, C0_INDEX);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001573 i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */
1574 il_bltz(p, r, tmp, label_r3000_write_probe_fail); /* cp0 delay */
1575 i_mfc0(p, tmp, C0_EPC); /* branch delay */
1576 i_tlbwi(p); /* cp0 delay */
1577 i_jr(p, tmp);
1578 i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 l_r3000_write_probe_fail(l, *p);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001580 i_tlbwr(p); /* cp0 delay */
1581 i_jr(p, tmp);
1582 i_rfe(p); /* branch delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583}
1584
1585static void __init
1586build_r3000_tlbchange_handler_head(u32 **p, unsigned int pte,
1587 unsigned int ptr)
1588{
1589 long pgdc = (long)pgd_current;
1590
1591 i_mfc0(p, pte, C0_BADVADDR);
1592 i_lui(p, ptr, rel_hi(pgdc)); /* cp0 delay */
1593 i_lw(p, ptr, rel_lo(pgdc), ptr);
1594 i_srl(p, pte, pte, 22); /* load delay */
1595 i_sll(p, pte, pte, 2);
1596 i_addu(p, ptr, ptr, pte);
1597 i_mfc0(p, pte, C0_CONTEXT);
1598 i_lw(p, ptr, 0, ptr); /* cp0 delay */
1599 i_andi(p, pte, pte, 0xffc); /* load delay */
1600 i_addu(p, ptr, ptr, pte);
1601 i_lw(p, pte, 0, ptr);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001602 i_tlbp(p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
1605static void __init build_r3000_tlb_load_handler(void)
1606{
1607 u32 *p = handle_tlbl;
1608 struct label *l = labels;
1609 struct reloc *r = relocs;
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001610 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 memset(handle_tlbl, 0, sizeof(handle_tlbl));
1613 memset(labels, 0, sizeof(labels));
1614 memset(relocs, 0, sizeof(relocs));
1615
1616 build_r3000_tlbchange_handler_head(&p, K0, K1);
1617 build_pte_present(&p, &l, &r, K0, K1, label_nopage_tlbl);
Maciej W. Rozyckid925c262005-06-13 20:12:01 +00001618 i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 build_make_valid(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001620 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
1622 l_nopage_tlbl(&l, p);
1623 i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
1624 i_nop(&p);
1625
1626 if ((p - handle_tlbl) > FASTPATH_SIZE)
1627 panic("TLB load handler fastpath space exceeded");
1628
1629 resolve_relocs(relocs, labels);
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001630 pr_info("Synthesized TLB load handler fastpath (%u instructions).\n",
1631 (unsigned int)(p - handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001633 pr_debug("\t.set push\n");
1634 pr_debug("\t.set noreorder\n");
1635 for (i = 0; i < (p - handle_tlbl); i++)
1636 pr_debug("\t.word 0x%08x\n", handle_tlbl[i]);
1637 pr_debug("\t.set pop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638}
1639
1640static void __init build_r3000_tlb_store_handler(void)
1641{
1642 u32 *p = handle_tlbs;
1643 struct label *l = labels;
1644 struct reloc *r = relocs;
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001645 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 memset(handle_tlbs, 0, sizeof(handle_tlbs));
1648 memset(labels, 0, sizeof(labels));
1649 memset(relocs, 0, sizeof(relocs));
1650
1651 build_r3000_tlbchange_handler_head(&p, K0, K1);
1652 build_pte_writable(&p, &l, &r, K0, K1, label_nopage_tlbs);
Maciej W. Rozyckid925c262005-06-13 20:12:01 +00001653 i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 build_make_write(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001655 build_r3000_tlb_reload_write(&p, &l, &r, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 l_nopage_tlbs(&l, p);
1658 i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1659 i_nop(&p);
1660
1661 if ((p - handle_tlbs) > FASTPATH_SIZE)
1662 panic("TLB store handler fastpath space exceeded");
1663
1664 resolve_relocs(relocs, labels);
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001665 pr_info("Synthesized TLB store handler fastpath (%u instructions).\n",
1666 (unsigned int)(p - handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001668 pr_debug("\t.set push\n");
1669 pr_debug("\t.set noreorder\n");
1670 for (i = 0; i < (p - handle_tlbs); i++)
1671 pr_debug("\t.word 0x%08x\n", handle_tlbs[i]);
1672 pr_debug("\t.set pop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
1674
1675static void __init build_r3000_tlb_modify_handler(void)
1676{
1677 u32 *p = handle_tlbm;
1678 struct label *l = labels;
1679 struct reloc *r = relocs;
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001680 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 memset(handle_tlbm, 0, sizeof(handle_tlbm));
1683 memset(labels, 0, sizeof(labels));
1684 memset(relocs, 0, sizeof(relocs));
1685
1686 build_r3000_tlbchange_handler_head(&p, K0, K1);
1687 build_pte_modifiable(&p, &l, &r, K0, K1, label_nopage_tlbm);
Maciej W. Rozyckid925c262005-06-13 20:12:01 +00001688 i_nop(&p); /* load delay */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 build_make_write(&p, &r, K0, K1);
Maciej W. Rozyckifded2e52005-06-13 20:24:00 +00001690 build_r3000_pte_reload_tlbwi(&p, K0, K1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
1692 l_nopage_tlbm(&l, p);
1693 i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1694 i_nop(&p);
1695
1696 if ((p - handle_tlbm) > FASTPATH_SIZE)
1697 panic("TLB modify handler fastpath space exceeded");
1698
1699 resolve_relocs(relocs, labels);
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001700 pr_info("Synthesized TLB modify handler fastpath (%u instructions).\n",
1701 (unsigned int)(p - handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001703 pr_debug("\t.set push\n");
1704 pr_debug("\t.set noreorder\n");
1705 for (i = 0; i < (p - handle_tlbm); i++)
1706 pr_debug("\t.word 0x%08x\n", handle_tlbm[i]);
1707 pr_debug("\t.set pop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708}
1709
1710/*
1711 * R4000 style TLB load/store/modify handlers.
1712 */
1713static void __init
1714build_r4000_tlbchange_handler_head(u32 **p, struct label **l,
1715 struct reloc **r, unsigned int pte,
1716 unsigned int ptr)
1717{
Ralf Baechle875d43e2005-09-03 15:56:16 -07001718#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 build_get_pmde64(p, l, r, pte, ptr); /* get pmd in ptr */
1720#else
1721 build_get_pgde32(p, pte, ptr); /* get pgd in ptr */
1722#endif
1723
1724 i_MFC0(p, pte, C0_BADVADDR);
1725 i_LW(p, ptr, 0, ptr);
1726 i_SRL(p, pte, pte, PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2);
1727 i_andi(p, pte, pte, (PTRS_PER_PTE - 1) << PTE_T_LOG2);
1728 i_ADDU(p, ptr, ptr, pte);
1729
1730#ifdef CONFIG_SMP
1731 l_smp_pgtable_change(l, *p);
1732# endif
Thiemo Seufer63b2d2f2005-04-28 08:52:57 +00001733 iPTE_LW(p, l, pte, ptr); /* get even pte */
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01001734 if (!m4kc_tlbp_war())
1735 build_tlb_probe_entry(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
1737
1738static void __init
1739build_r4000_tlbchange_handler_tail(u32 **p, struct label **l,
1740 struct reloc **r, unsigned int tmp,
1741 unsigned int ptr)
1742{
1743 i_ori(p, ptr, ptr, sizeof(pte_t));
1744 i_xori(p, ptr, ptr, sizeof(pte_t));
1745 build_update_entries(p, tmp, ptr);
1746 build_tlb_write_entry(p, l, r, tlb_indexed);
1747 l_leave(l, *p);
1748 i_eret(p); /* return from trap */
1749
Ralf Baechle875d43e2005-09-03 15:56:16 -07001750#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 build_get_pgd_vmalloc64(p, l, r, tmp, ptr);
1752#endif
1753}
1754
1755static void __init build_r4000_tlb_load_handler(void)
1756{
1757 u32 *p = handle_tlbl;
1758 struct label *l = labels;
1759 struct reloc *r = relocs;
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001760 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 memset(handle_tlbl, 0, sizeof(handle_tlbl));
1763 memset(labels, 0, sizeof(labels));
1764 memset(relocs, 0, sizeof(relocs));
1765
1766 if (bcm1250_m3_war()) {
1767 i_MFC0(&p, K0, C0_BADVADDR);
1768 i_MFC0(&p, K1, C0_ENTRYHI);
1769 i_xor(&p, K0, K0, K1);
1770 i_SRL(&p, K0, K0, PAGE_SHIFT + 1);
1771 il_bnez(&p, &r, K0, label_leave);
1772 /* No need for i_nop */
1773 }
1774
1775 build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1);
1776 build_pte_present(&p, &l, &r, K0, K1, label_nopage_tlbl);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01001777 if (m4kc_tlbp_war())
1778 build_tlb_probe_entry(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 build_make_valid(&p, &r, K0, K1);
1780 build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1);
1781
1782 l_nopage_tlbl(&l, p);
1783 i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff);
1784 i_nop(&p);
1785
1786 if ((p - handle_tlbl) > FASTPATH_SIZE)
1787 panic("TLB load handler fastpath space exceeded");
1788
1789 resolve_relocs(relocs, labels);
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001790 pr_info("Synthesized TLB load handler fastpath (%u instructions).\n",
1791 (unsigned int)(p - handle_tlbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001793 pr_debug("\t.set push\n");
1794 pr_debug("\t.set noreorder\n");
1795 for (i = 0; i < (p - handle_tlbl); i++)
1796 pr_debug("\t.word 0x%08x\n", handle_tlbl[i]);
1797 pr_debug("\t.set pop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
1800static void __init build_r4000_tlb_store_handler(void)
1801{
1802 u32 *p = handle_tlbs;
1803 struct label *l = labels;
1804 struct reloc *r = relocs;
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001805 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807 memset(handle_tlbs, 0, sizeof(handle_tlbs));
1808 memset(labels, 0, sizeof(labels));
1809 memset(relocs, 0, sizeof(relocs));
1810
1811 build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1);
1812 build_pte_writable(&p, &l, &r, K0, K1, label_nopage_tlbs);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01001813 if (m4kc_tlbp_war())
1814 build_tlb_probe_entry(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 build_make_write(&p, &r, K0, K1);
1816 build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1);
1817
1818 l_nopage_tlbs(&l, p);
1819 i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1820 i_nop(&p);
1821
1822 if ((p - handle_tlbs) > FASTPATH_SIZE)
1823 panic("TLB store handler fastpath space exceeded");
1824
1825 resolve_relocs(relocs, labels);
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001826 pr_info("Synthesized TLB store handler fastpath (%u instructions).\n",
1827 (unsigned int)(p - handle_tlbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001829 pr_debug("\t.set push\n");
1830 pr_debug("\t.set noreorder\n");
1831 for (i = 0; i < (p - handle_tlbs); i++)
1832 pr_debug("\t.word 0x%08x\n", handle_tlbs[i]);
1833 pr_debug("\t.set pop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
1836static void __init build_r4000_tlb_modify_handler(void)
1837{
1838 u32 *p = handle_tlbm;
1839 struct label *l = labels;
1840 struct reloc *r = relocs;
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001841 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 memset(handle_tlbm, 0, sizeof(handle_tlbm));
1844 memset(labels, 0, sizeof(labels));
1845 memset(relocs, 0, sizeof(relocs));
1846
1847 build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1);
1848 build_pte_modifiable(&p, &l, &r, K0, K1, label_nopage_tlbm);
Maciej W. Rozycki8df5bea2006-08-23 14:26:50 +01001849 if (m4kc_tlbp_war())
1850 build_tlb_probe_entry(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 /* Present and writable bits set, set accessed and dirty bits. */
1852 build_make_write(&p, &r, K0, K1);
1853 build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1);
1854
1855 l_nopage_tlbm(&l, p);
1856 i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff);
1857 i_nop(&p);
1858
1859 if ((p - handle_tlbm) > FASTPATH_SIZE)
1860 panic("TLB modify handler fastpath space exceeded");
1861
1862 resolve_relocs(relocs, labels);
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001863 pr_info("Synthesized TLB modify handler fastpath (%u instructions).\n",
1864 (unsigned int)(p - handle_tlbm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Thiemo Seufer115f2a42006-07-09 01:47:06 +01001866 pr_debug("\t.set push\n");
1867 pr_debug("\t.set noreorder\n");
1868 for (i = 0; i < (p - handle_tlbm); i++)
1869 pr_debug("\t.word 0x%08x\n", handle_tlbm[i]);
1870 pr_debug("\t.set pop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
1872
1873void __init build_tlb_refill_handler(void)
1874{
1875 /*
1876 * The refill handler is generated per-CPU, multi-node systems
1877 * may have local storage for it. The other handlers are only
1878 * needed once.
1879 */
1880 static int run_once = 0;
1881
Ralf Baechle10cc3522007-10-11 23:46:15 +01001882 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 case CPU_R2000:
1884 case CPU_R3000:
1885 case CPU_R3000A:
1886 case CPU_R3081E:
1887 case CPU_TX3912:
1888 case CPU_TX3922:
1889 case CPU_TX3927:
1890 build_r3000_tlb_refill_handler();
1891 if (!run_once) {
1892 build_r3000_tlb_load_handler();
1893 build_r3000_tlb_store_handler();
1894 build_r3000_tlb_modify_handler();
1895 run_once++;
1896 }
1897 break;
1898
1899 case CPU_R6000:
1900 case CPU_R6000A:
1901 panic("No R6000 TLB refill handler yet");
1902 break;
1903
1904 case CPU_R8000:
1905 panic("No R8000 TLB refill handler yet");
1906 break;
1907
1908 default:
1909 build_r4000_tlb_refill_handler();
1910 if (!run_once) {
1911 build_r4000_tlb_load_handler();
1912 build_r4000_tlb_store_handler();
1913 build_r4000_tlb_modify_handler();
1914 run_once++;
1915 }
1916 }
1917}
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00001918
1919void __init flush_tlb_handlers(void)
1920{
1921 flush_icache_range((unsigned long)handle_tlbl,
1922 (unsigned long)handle_tlbl + sizeof(handle_tlbl));
1923 flush_icache_range((unsigned long)handle_tlbs,
1924 (unsigned long)handle_tlbs + sizeof(handle_tlbs));
1925 flush_icache_range((unsigned long)handle_tlbm,
1926 (unsigned long)handle_tlbm + sizeof(handle_tlbm));
1927}