blob: 6eccfb49ae68fc2cbb060996c5a90c5dc29fc8a9 [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 *
Ralf Baechle36ccf1c2006-02-14 21:04:54 +00006 * Copyright (C) 1994 - 1999, 2000, 01, 06 Ralf Baechle
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 1995, 1996 Paul M. Antoine
8 * Copyright (C) 1998 Ulf Carlsson
9 * Copyright (C) 1999 Silicon Graphics, Inc.
10 * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
11 * Copyright (C) 2000, 01 MIPS Technologies, Inc.
Maciej W. Rozycki3b2396d2005-06-22 20:43:29 +000012 * Copyright (C) 2002, 2003, 2004, 2005 Maciej W. Rozycki
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
15#include <linux/mm.h>
16#include <linux/module.h>
17#include <linux/sched.h>
18#include <linux/smp.h>
19#include <linux/smp_lock.h>
20#include <linux/spinlock.h>
21#include <linux/kallsyms.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000022#include <linux/bootmem.h>
Maxime Bizond4fd1982006-07-20 18:52:02 +020023#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/bootinfo.h>
26#include <asm/branch.h>
27#include <asm/break.h>
28#include <asm/cpu.h>
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +000029#include <asm/dsp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/fpu.h>
Ralf Baechle340ee4b2005-08-17 17:44:08 +000031#include <asm/mipsregs.h>
32#include <asm/mipsmtregs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/module.h>
34#include <asm/pgtable.h>
35#include <asm/ptrace.h>
36#include <asm/sections.h>
37#include <asm/system.h>
38#include <asm/tlbdebug.h>
39#include <asm/traps.h>
40#include <asm/uaccess.h>
41#include <asm/mmu_context.h>
42#include <asm/watch.h>
43#include <asm/types.h>
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +090044#include <asm/stacktrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010046extern asmlinkage void handle_int(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047extern asmlinkage void handle_tlbm(void);
48extern asmlinkage void handle_tlbl(void);
49extern asmlinkage void handle_tlbs(void);
50extern asmlinkage void handle_adel(void);
51extern asmlinkage void handle_ades(void);
52extern asmlinkage void handle_ibe(void);
53extern asmlinkage void handle_dbe(void);
54extern asmlinkage void handle_sys(void);
55extern asmlinkage void handle_bp(void);
56extern asmlinkage void handle_ri(void);
Atsushi Nemoto5b104962006-09-11 17:50:29 +090057extern asmlinkage void handle_ri_rdhwr_vivt(void);
58extern asmlinkage void handle_ri_rdhwr(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059extern asmlinkage void handle_cpu(void);
60extern asmlinkage void handle_ov(void);
61extern asmlinkage void handle_tr(void);
62extern asmlinkage void handle_fpe(void);
63extern asmlinkage void handle_mdmx(void);
64extern asmlinkage void handle_watch(void);
Ralf Baechle340ee4b2005-08-17 17:44:08 +000065extern asmlinkage void handle_mt(void);
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +000066extern asmlinkage void handle_dsp(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067extern asmlinkage void handle_mcheck(void);
68extern asmlinkage void handle_reserved(void);
69
Ralf Baechle12616ed2005-10-18 10:26:46 +010070extern int fpu_emulator_cop1Handler(struct pt_regs *xcp,
Atsushi Nemotoe04582b2006-10-09 00:10:01 +090071 struct mips_fpu_struct *ctx, int has_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73void (*board_be_init)(void);
74int (*board_be_handler)(struct pt_regs *regs, int is_fixup);
Ralf Baechlee01402b2005-07-14 15:57:16 +000075void (*board_nmi_handler_setup)(void);
76void (*board_ejtag_handler_setup)(void);
77void (*board_bind_eic_interrupt)(int irq, int regset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Franck Bui-Huu4d157d52006-08-03 09:29:21 +020080static void show_raw_backtrace(unsigned long reg29)
Atsushi Nemotoe889d782006-07-25 23:51:36 +090081{
Franck Bui-Huu4d157d52006-08-03 09:29:21 +020082 unsigned long *sp = (unsigned long *)reg29;
Atsushi Nemotoe889d782006-07-25 23:51:36 +090083 unsigned long addr;
84
85 printk("Call Trace:");
86#ifdef CONFIG_KALLSYMS
87 printk("\n");
88#endif
Franck Bui-Huu87151ae2006-08-03 09:29:17 +020089 while (!kstack_end(sp)) {
90 addr = *sp++;
91 if (__kernel_text_address(addr))
92 print_ip_sym(addr);
Atsushi Nemotoe889d782006-07-25 23:51:36 +090093 }
94 printk("\n");
95}
96
Atsushi Nemotof66686f2006-07-29 23:27:20 +090097#ifdef CONFIG_KALLSYMS
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +090098int raw_show_trace;
Atsushi Nemotof66686f2006-07-29 23:27:20 +090099static int __init set_raw_show_trace(char *str)
100{
101 raw_show_trace = 1;
102 return 1;
103}
104__setup("raw_show_trace", set_raw_show_trace);
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +0900105#endif
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200106
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200107static void show_backtrace(struct task_struct *task, struct pt_regs *regs)
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900108{
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200109 unsigned long sp = regs->regs[29];
110 unsigned long ra = regs->regs[31];
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900111 unsigned long pc = regs->cp0_epc;
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900112
113 if (raw_show_trace || !__kernel_text_address(pc)) {
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200114 show_raw_backtrace(sp);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900115 return;
116 }
117 printk("Call Trace:\n");
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200118 do {
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200119 print_ip_sym(pc);
Atsushi Nemoto19246002006-09-29 18:02:51 +0900120 pc = unwind_stack(task, &sp, pc, &ra);
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200121 } while (pc);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900122 printk("\n");
123}
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/*
126 * This routine abuses get_user()/put_user() to reference pointers
127 * with at least a bit of error checking ...
128 */
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900129static void show_stacktrace(struct task_struct *task, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 const int field = 2 * sizeof(unsigned long);
132 long stackdata;
133 int i;
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900134 unsigned long *sp = (unsigned long *)regs->regs[29];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 printk("Stack :");
137 i = 0;
138 while ((unsigned long) sp & (PAGE_SIZE - 1)) {
139 if (i && ((i % (64 / field)) == 0))
140 printk("\n ");
141 if (i > 39) {
142 printk(" ...");
143 break;
144 }
145
146 if (__get_user(stackdata, sp++)) {
147 printk(" (Bad stack address)");
148 break;
149 }
150
151 printk(" %0*lx", field, stackdata);
152 i++;
153 }
154 printk("\n");
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200155 show_backtrace(task, regs);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900156}
157
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900158void show_stack(struct task_struct *task, unsigned long *sp)
159{
160 struct pt_regs regs;
161 if (sp) {
162 regs.regs[29] = (unsigned long)sp;
163 regs.regs[31] = 0;
164 regs.cp0_epc = 0;
165 } else {
166 if (task && task != current) {
167 regs.regs[29] = task->thread.reg29;
168 regs.regs[31] = 0;
169 regs.cp0_epc = task->thread.reg31;
170 } else {
171 prepare_frametrace(&regs);
172 }
173 }
174 show_stacktrace(task, &regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177/*
178 * The architecture-independent dump_stack generator
179 */
180void dump_stack(void)
181{
Franck Bui-Huu1666a6f2006-08-03 09:29:19 +0200182 struct pt_regs regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Franck Bui-Huu1666a6f2006-08-03 09:29:19 +0200184 prepare_frametrace(&regs);
185 show_backtrace(current, &regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188EXPORT_SYMBOL(dump_stack);
189
190void show_code(unsigned int *pc)
191{
192 long i;
193
194 printk("\nCode:");
195
196 for(i = -3 ; i < 6 ; i++) {
197 unsigned int insn;
198 if (__get_user(insn, pc + i)) {
199 printk(" (Bad address in epc)\n");
200 break;
201 }
202 printk("%c%08x%c", (i?' ':'<'), insn, (i?' ':'>'));
203 }
204}
205
206void show_regs(struct pt_regs *regs)
207{
208 const int field = 2 * sizeof(unsigned long);
209 unsigned int cause = regs->cp0_cause;
210 int i;
211
212 printk("Cpu %d\n", smp_processor_id());
213
214 /*
215 * Saved main processor registers
216 */
217 for (i = 0; i < 32; ) {
218 if ((i % 4) == 0)
219 printk("$%2d :", i);
220 if (i == 0)
221 printk(" %0*lx", field, 0UL);
222 else if (i == 26 || i == 27)
223 printk(" %*s", field, "");
224 else
225 printk(" %0*lx", field, regs->regs[i]);
226
227 i++;
228 if ((i % 4) == 0)
229 printk("\n");
230 }
231
232 printk("Hi : %0*lx\n", field, regs->hi);
233 printk("Lo : %0*lx\n", field, regs->lo);
234
235 /*
236 * Saved cp0 registers
237 */
238 printk("epc : %0*lx ", field, regs->cp0_epc);
239 print_symbol("%s ", regs->cp0_epc);
240 printk(" %s\n", print_tainted());
241 printk("ra : %0*lx ", field, regs->regs[31]);
242 print_symbol("%s\n", regs->regs[31]);
243
244 printk("Status: %08x ", (uint32_t) regs->cp0_status);
245
Maciej W. Rozycki3b2396d2005-06-22 20:43:29 +0000246 if (current_cpu_data.isa_level == MIPS_CPU_ISA_I) {
247 if (regs->cp0_status & ST0_KUO)
248 printk("KUo ");
249 if (regs->cp0_status & ST0_IEO)
250 printk("IEo ");
251 if (regs->cp0_status & ST0_KUP)
252 printk("KUp ");
253 if (regs->cp0_status & ST0_IEP)
254 printk("IEp ");
255 if (regs->cp0_status & ST0_KUC)
256 printk("KUc ");
257 if (regs->cp0_status & ST0_IEC)
258 printk("IEc ");
259 } else {
260 if (regs->cp0_status & ST0_KX)
261 printk("KX ");
262 if (regs->cp0_status & ST0_SX)
263 printk("SX ");
264 if (regs->cp0_status & ST0_UX)
265 printk("UX ");
266 switch (regs->cp0_status & ST0_KSU) {
267 case KSU_USER:
268 printk("USER ");
269 break;
270 case KSU_SUPERVISOR:
271 printk("SUPERVISOR ");
272 break;
273 case KSU_KERNEL:
274 printk("KERNEL ");
275 break;
276 default:
277 printk("BAD_MODE ");
278 break;
279 }
280 if (regs->cp0_status & ST0_ERL)
281 printk("ERL ");
282 if (regs->cp0_status & ST0_EXL)
283 printk("EXL ");
284 if (regs->cp0_status & ST0_IE)
285 printk("IE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 printk("\n");
288
289 printk("Cause : %08x\n", cause);
290
291 cause = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE;
292 if (1 <= cause && cause <= 5)
293 printk("BadVA : %0*lx\n", field, regs->cp0_badvaddr);
294
295 printk("PrId : %08x\n", read_c0_prid());
296}
297
298void show_registers(struct pt_regs *regs)
299{
300 show_regs(regs);
301 print_modules();
302 printk("Process %s (pid: %d, threadinfo=%p, task=%p)\n",
303 current->comm, current->pid, current_thread_info(), current);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900304 show_stacktrace(current, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 show_code((unsigned int *) regs->cp0_epc);
306 printk("\n");
307}
308
309static DEFINE_SPINLOCK(die_lock);
310
Ralf Baechle178086c2005-10-13 17:07:54 +0100311NORET_TYPE void ATTRIB_NORET die(const char * str, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 static int die_counter;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100314#ifdef CONFIG_MIPS_MT_SMTC
315 unsigned long dvpret = dvpe();
316#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 console_verbose();
319 spin_lock_irq(&die_lock);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100320 bust_spinlocks(1);
321#ifdef CONFIG_MIPS_MT_SMTC
322 mips_mt_regdump(dvpret);
323#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechle178086c2005-10-13 17:07:54 +0100324 printk("%s[#%d]:\n", str, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 show_registers(regs);
326 spin_unlock_irq(&die_lock);
Maxime Bizond4fd1982006-07-20 18:52:02 +0200327
328 if (in_interrupt())
329 panic("Fatal exception in interrupt");
330
331 if (panic_on_oops) {
332 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
333 ssleep(5);
334 panic("Fatal exception");
335 }
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 do_exit(SIGSEGV);
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340extern const struct exception_table_entry __start___dbe_table[];
341extern const struct exception_table_entry __stop___dbe_table[];
342
343void __declare_dbe_table(void)
344{
345 __asm__ __volatile__(
346 ".section\t__dbe_table,\"a\"\n\t"
347 ".previous"
348 );
349}
350
351/* Given an address, look for it in the exception tables. */
352static const struct exception_table_entry *search_dbe_tables(unsigned long addr)
353{
354 const struct exception_table_entry *e;
355
356 e = search_extable(__start___dbe_table, __stop___dbe_table - 1, addr);
357 if (!e)
358 e = search_module_dbetables(addr);
359 return e;
360}
361
362asmlinkage void do_be(struct pt_regs *regs)
363{
364 const int field = 2 * sizeof(unsigned long);
365 const struct exception_table_entry *fixup = NULL;
366 int data = regs->cp0_cause & 4;
367 int action = MIPS_BE_FATAL;
368
369 /* XXX For now. Fixme, this searches the wrong table ... */
370 if (data && !user_mode(regs))
371 fixup = search_dbe_tables(exception_epc(regs));
372
373 if (fixup)
374 action = MIPS_BE_FIXUP;
375
376 if (board_be_handler)
377 action = board_be_handler(regs, fixup != 0);
378
379 switch (action) {
380 case MIPS_BE_DISCARD:
381 return;
382 case MIPS_BE_FIXUP:
383 if (fixup) {
384 regs->cp0_epc = fixup->nextinsn;
385 return;
386 }
387 break;
388 default:
389 break;
390 }
391
392 /*
393 * Assume it would be too dangerous to continue ...
394 */
395 printk(KERN_ALERT "%s bus error, epc == %0*lx, ra == %0*lx\n",
396 data ? "Data" : "Instruction",
397 field, regs->cp0_epc, field, regs->regs[31]);
398 die_if_kernel("Oops", regs);
399 force_sig(SIGBUS, current);
400}
401
402static inline int get_insn_opcode(struct pt_regs *regs, unsigned int *opcode)
403{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000404 unsigned int __user *epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Ralf Baechlefe00f942005-03-01 19:22:29 +0000406 epc = (unsigned int __user *) regs->cp0_epc +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 ((regs->cp0_cause & CAUSEF_BD) != 0);
408 if (!get_user(*opcode, epc))
409 return 0;
410
411 force_sig(SIGSEGV, current);
412 return 1;
413}
414
415/*
416 * ll/sc emulation
417 */
418
419#define OPCODE 0xfc000000
420#define BASE 0x03e00000
421#define RT 0x001f0000
422#define OFFSET 0x0000ffff
423#define LL 0xc0000000
424#define SC 0xe0000000
Ralf Baechle3c370262005-04-13 17:43:59 +0000425#define SPEC3 0x7c000000
426#define RD 0x0000f800
427#define FUNC 0x0000003f
428#define RDHWR 0x0000003b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430/*
431 * The ll_bit is cleared by r*_switch.S
432 */
433
434unsigned long ll_bit;
435
436static struct task_struct *ll_task = NULL;
437
438static inline void simulate_ll(struct pt_regs *regs, unsigned int opcode)
439{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000440 unsigned long value, __user *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 long offset;
442 int signal = 0;
443
444 /*
445 * analyse the ll instruction that just caused a ri exception
446 * and put the referenced address to addr.
447 */
448
449 /* sign extend offset */
450 offset = opcode & OFFSET;
451 offset <<= 16;
452 offset >>= 16;
453
Ralf Baechlefe00f942005-03-01 19:22:29 +0000454 vaddr = (unsigned long __user *)
455 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 if ((unsigned long)vaddr & 3) {
458 signal = SIGBUS;
459 goto sig;
460 }
461 if (get_user(value, vaddr)) {
462 signal = SIGSEGV;
463 goto sig;
464 }
465
466 preempt_disable();
467
468 if (ll_task == NULL || ll_task == current) {
469 ll_bit = 1;
470 } else {
471 ll_bit = 0;
472 }
473 ll_task = current;
474
475 preempt_enable();
476
Ralf Baechle6dd04682005-04-12 11:04:15 +0000477 compute_return_epc(regs);
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 regs->regs[(opcode & RT) >> 16] = value;
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return;
482
483sig:
484 force_sig(signal, current);
485}
486
487static inline void simulate_sc(struct pt_regs *regs, unsigned int opcode)
488{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000489 unsigned long __user *vaddr;
490 unsigned long reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 long offset;
492 int signal = 0;
493
494 /*
495 * analyse the sc instruction that just caused a ri exception
496 * and put the referenced address to addr.
497 */
498
499 /* sign extend offset */
500 offset = opcode & OFFSET;
501 offset <<= 16;
502 offset >>= 16;
503
Ralf Baechlefe00f942005-03-01 19:22:29 +0000504 vaddr = (unsigned long __user *)
505 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 reg = (opcode & RT) >> 16;
507
508 if ((unsigned long)vaddr & 3) {
509 signal = SIGBUS;
510 goto sig;
511 }
512
513 preempt_disable();
514
515 if (ll_bit == 0 || ll_task != current) {
Ralf Baechle05b80422005-04-12 20:26:05 +0000516 compute_return_epc(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 regs->regs[reg] = 0;
518 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return;
520 }
521
522 preempt_enable();
523
524 if (put_user(regs->regs[reg], vaddr)) {
525 signal = SIGSEGV;
526 goto sig;
527 }
528
Ralf Baechle6dd04682005-04-12 11:04:15 +0000529 compute_return_epc(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 regs->regs[reg] = 1;
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return;
533
534sig:
535 force_sig(signal, current);
536}
537
538/*
539 * ll uses the opcode of lwc0 and sc uses the opcode of swc0. That is both
540 * opcodes are supposed to result in coprocessor unusable exceptions if
541 * executed on ll/sc-less processors. That's the theory. In practice a
542 * few processors such as NEC's VR4100 throw reserved instruction exceptions
543 * instead, so we're doing the emulation thing in both exception handlers.
544 */
545static inline int simulate_llsc(struct pt_regs *regs)
546{
547 unsigned int opcode;
548
549 if (unlikely(get_insn_opcode(regs, &opcode)))
550 return -EFAULT;
551
552 if ((opcode & OPCODE) == LL) {
553 simulate_ll(regs, opcode);
554 return 0;
555 }
556 if ((opcode & OPCODE) == SC) {
557 simulate_sc(regs, opcode);
558 return 0;
559 }
560
561 return -EFAULT; /* Strange things going on ... */
562}
563
Ralf Baechle3c370262005-04-13 17:43:59 +0000564/*
565 * Simulate trapping 'rdhwr' instructions to provide user accessible
566 * registers not implemented in hardware. The only current use of this
567 * is the thread area pointer.
568 */
569static inline int simulate_rdhwr(struct pt_regs *regs)
570{
Al Virodc8f6022006-01-12 01:06:07 -0800571 struct thread_info *ti = task_thread_info(current);
Ralf Baechle3c370262005-04-13 17:43:59 +0000572 unsigned int opcode;
573
574 if (unlikely(get_insn_opcode(regs, &opcode)))
575 return -EFAULT;
576
577 if (unlikely(compute_return_epc(regs)))
578 return -EFAULT;
579
580 if ((opcode & OPCODE) == SPEC3 && (opcode & FUNC) == RDHWR) {
581 int rd = (opcode & RD) >> 11;
582 int rt = (opcode & RT) >> 16;
583 switch (rd) {
584 case 29:
585 regs->regs[rt] = ti->tp_value;
Daniel Jacobowitz56ebd512005-11-26 22:34:41 -0500586 return 0;
Ralf Baechle3c370262005-04-13 17:43:59 +0000587 default:
588 return -EFAULT;
589 }
590 }
591
Daniel Jacobowitz56ebd512005-11-26 22:34:41 -0500592 /* Not ours. */
593 return -EFAULT;
Ralf Baechle3c370262005-04-13 17:43:59 +0000594}
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596asmlinkage void do_ov(struct pt_regs *regs)
597{
598 siginfo_t info;
599
Ralf Baechle36ccf1c2006-02-14 21:04:54 +0000600 die_if_kernel("Integer overflow", regs);
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 info.si_code = FPE_INTOVF;
603 info.si_signo = SIGFPE;
604 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000605 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 force_sig_info(SIGFPE, &info, current);
607}
608
609/*
610 * XXX Delayed fp exceptions when doing a lazy ctx switch XXX
611 */
612asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31)
613{
Chris Dearman57725f92006-06-30 23:35:28 +0100614 die_if_kernel("FP exception in kernel code", regs);
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (fcr31 & FPU_CSR_UNI_X) {
617 int sig;
618
619 preempt_disable();
620
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000621#ifdef CONFIG_PREEMPT
622 if (!is_fpu_owner()) {
623 /* We might lose fpu before disabling preempt... */
624 own_fpu();
625 BUG_ON(!used_math());
626 restore_fp(current);
627 }
628#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /*
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000630 * Unimplemented operation exception. If we've got the full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 * software emulator on-board, let's use it...
632 *
633 * Force FPU to dump state into task/thread context. We're
634 * moving a lot of data here for what is probably a single
635 * instruction, but the alternative is to pre-decode the FP
636 * register operands before invoking the emulator, which seems
637 * a bit extreme for what should be an infrequent event.
638 */
639 save_fp(current);
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000640 /* Ensure 'resume' not overwrite saved fp context again. */
641 lose_fpu();
642
643 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 /* Run the emulator */
Atsushi Nemotoe04582b2006-10-09 00:10:01 +0900646 sig = fpu_emulator_cop1Handler (regs, &current->thread.fpu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000648 preempt_disable();
649
650 own_fpu(); /* Using the FPU again. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /*
652 * We can't allow the emulated instruction to leave any of
653 * the cause bit set in $fcr31.
654 */
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900655 current->thread.fpu.fcr31 &= ~FPU_CSR_ALL_X;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 /* Restore the hardware register state */
658 restore_fp(current);
659
660 preempt_enable();
661
662 /* If something went wrong, signal */
663 if (sig)
664 force_sig(sig, current);
665
666 return;
667 }
668
669 force_sig(SIGFPE, current);
670}
671
672asmlinkage void do_bp(struct pt_regs *regs)
673{
674 unsigned int opcode, bcode;
675 siginfo_t info;
676
677 die_if_kernel("Break instruction in kernel code", regs);
678
679 if (get_insn_opcode(regs, &opcode))
680 return;
681
682 /*
683 * There is the ancient bug in the MIPS assemblers that the break
684 * code starts left to bit 16 instead to bit 6 in the opcode.
685 * Gas is bug-compatible, but not always, grrr...
686 * We handle both cases with a simple heuristics. --macro
687 */
688 bcode = ((opcode >> 6) & ((1 << 20) - 1));
689 if (bcode < (1 << 10))
690 bcode <<= 10;
691
692 /*
693 * (A short test says that IRIX 5.3 sends SIGTRAP for all break
694 * insns, even for break codes that indicate arithmetic failures.
695 * Weird ...)
696 * But should we continue the brokenness??? --macro
697 */
698 switch (bcode) {
699 case BRK_OVERFLOW << 10:
700 case BRK_DIVZERO << 10:
701 if (bcode == (BRK_DIVZERO << 10))
702 info.si_code = FPE_INTDIV;
703 else
704 info.si_code = FPE_INTOVF;
705 info.si_signo = SIGFPE;
706 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000707 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 force_sig_info(SIGFPE, &info, current);
709 break;
710 default:
711 force_sig(SIGTRAP, current);
712 }
713}
714
715asmlinkage void do_tr(struct pt_regs *regs)
716{
717 unsigned int opcode, tcode = 0;
718 siginfo_t info;
719
720 die_if_kernel("Trap instruction in kernel code", regs);
721
722 if (get_insn_opcode(regs, &opcode))
723 return;
724
725 /* Immediate versions don't provide a code. */
726 if (!(opcode & OPCODE))
727 tcode = ((opcode >> 6) & ((1 << 10) - 1));
728
729 /*
730 * (A short test says that IRIX 5.3 sends SIGTRAP for all trap
731 * insns, even for trap codes that indicate arithmetic failures.
732 * Weird ...)
733 * But should we continue the brokenness??? --macro
734 */
735 switch (tcode) {
736 case BRK_OVERFLOW:
737 case BRK_DIVZERO:
738 if (tcode == BRK_DIVZERO)
739 info.si_code = FPE_INTDIV;
740 else
741 info.si_code = FPE_INTOVF;
742 info.si_signo = SIGFPE;
743 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000744 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 force_sig_info(SIGFPE, &info, current);
746 break;
747 default:
748 force_sig(SIGTRAP, current);
749 }
750}
751
752asmlinkage void do_ri(struct pt_regs *regs)
753{
754 die_if_kernel("Reserved instruction in kernel code", regs);
755
756 if (!cpu_has_llsc)
757 if (!simulate_llsc(regs))
758 return;
759
Ralf Baechle3c370262005-04-13 17:43:59 +0000760 if (!simulate_rdhwr(regs))
761 return;
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 force_sig(SIGILL, current);
764}
765
766asmlinkage void do_cpu(struct pt_regs *regs)
767{
768 unsigned int cpid;
769
770 die_if_kernel("do_cpu invoked from kernel context!", regs);
771
772 cpid = (regs->cp0_cause >> CAUSEB_CE) & 3;
773
774 switch (cpid) {
775 case 0:
Ralf Baechle3c370262005-04-13 17:43:59 +0000776 if (!cpu_has_llsc)
777 if (!simulate_llsc(regs))
778 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Ralf Baechle3c370262005-04-13 17:43:59 +0000780 if (!simulate_rdhwr(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return;
Ralf Baechle3c370262005-04-13 17:43:59 +0000782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 break;
784
785 case 1:
786 preempt_disable();
787
788 own_fpu();
789 if (used_math()) { /* Using the FPU again. */
790 restore_fp(current);
791 } else { /* First time FPU user. */
792 init_fpu();
793 set_used_math();
794 }
795
Atsushi Nemotoe04582b2006-10-09 00:10:01 +0900796 if (cpu_has_fpu) {
797 preempt_enable();
798 } else {
799 int sig;
800 preempt_enable();
801 sig = fpu_emulator_cop1Handler(regs,
802 &current->thread.fpu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (sig)
804 force_sig(sig, current);
Ralf Baechlef088fc82006-04-05 09:45:47 +0100805#ifdef CONFIG_MIPS_MT_FPAFF
806 else {
807 /*
808 * MIPS MT processors may have fewer FPU contexts
809 * than CPU threads. If we've emulated more than
810 * some threshold number of instructions, force
811 * migration to a "CPU" that has FP support.
812 */
813 if(mt_fpemul_threshold > 0
814 && ((current->thread.emulated_fp++
815 > mt_fpemul_threshold))) {
816 /*
817 * If there's no FPU present, or if the
818 * application has already restricted
819 * the allowed set to exclude any CPUs
820 * with FPUs, we'll skip the procedure.
821 */
822 if (cpus_intersects(current->cpus_allowed,
823 mt_fpu_cpumask)) {
824 cpumask_t tmask;
825
826 cpus_and(tmask,
827 current->thread.user_cpus_allowed,
828 mt_fpu_cpumask);
829 set_cpus_allowed(current, tmask);
830 current->thread.mflags |= MF_FPUBOUND;
831 }
832 }
833 }
834#endif /* CONFIG_MIPS_MT_FPAFF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return;
838
839 case 2:
840 case 3:
Ralf Baechle41c594a2006-04-05 09:45:45 +0100841 die_if_kernel("do_cpu invoked from kernel context!", regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 break;
843 }
844
845 force_sig(SIGILL, current);
846}
847
848asmlinkage void do_mdmx(struct pt_regs *regs)
849{
850 force_sig(SIGILL, current);
851}
852
853asmlinkage void do_watch(struct pt_regs *regs)
854{
855 /*
856 * We use the watch exception where available to detect stack
857 * overflows.
858 */
859 dump_tlb_all();
860 show_regs(regs);
861 panic("Caught WATCH exception - probably caused by stack overflow.");
862}
863
864asmlinkage void do_mcheck(struct pt_regs *regs)
865{
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100866 const int field = 2 * sizeof(unsigned long);
867 int multi_match = regs->cp0_status & ST0_TS;
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 show_regs(regs);
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100870
871 if (multi_match) {
872 printk("Index : %0x\n", read_c0_index());
873 printk("Pagemask: %0x\n", read_c0_pagemask());
874 printk("EntryHi : %0*lx\n", field, read_c0_entryhi());
875 printk("EntryLo0: %0*lx\n", field, read_c0_entrylo0());
876 printk("EntryLo1: %0*lx\n", field, read_c0_entrylo1());
877 printk("\n");
878 dump_tlb_all();
879 }
880
881 show_code((unsigned int *) regs->cp0_epc);
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 /*
884 * Some chips may have other causes of machine check (e.g. SB1
885 * graduation timer)
886 */
887 panic("Caught Machine Check exception - %scaused by multiple "
888 "matching entries in the TLB.",
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100889 (multi_match) ? "" : "not ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000892asmlinkage void do_mt(struct pt_regs *regs)
893{
Ralf Baechle41c594a2006-04-05 09:45:45 +0100894 int subcode;
895
Ralf Baechle41c594a2006-04-05 09:45:45 +0100896 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT)
897 >> VPECONTROL_EXCPT_SHIFT;
898 switch (subcode) {
899 case 0:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100900 printk(KERN_DEBUG "Thread Underflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100901 break;
902 case 1:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100903 printk(KERN_DEBUG "Thread Overflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100904 break;
905 case 2:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100906 printk(KERN_DEBUG "Invalid YIELD Qualifier\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100907 break;
908 case 3:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100909 printk(KERN_DEBUG "Gating Storage Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100910 break;
911 case 4:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100912 printk(KERN_DEBUG "YIELD Scheduler Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100913 break;
914 case 5:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100915 printk(KERN_DEBUG "Gating Storage Schedulier Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100916 break;
917 default:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100918 printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n",
Ralf Baechle41c594a2006-04-05 09:45:45 +0100919 subcode);
920 break;
921 }
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000922 die_if_kernel("MIPS MT Thread exception in kernel", regs);
923
924 force_sig(SIGILL, current);
925}
926
927
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +0000928asmlinkage void do_dsp(struct pt_regs *regs)
929{
930 if (cpu_has_dsp)
931 panic("Unexpected DSP exception\n");
932
933 force_sig(SIGILL, current);
934}
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936asmlinkage void do_reserved(struct pt_regs *regs)
937{
938 /*
939 * Game over - no way to handle this if it ever occurs. Most probably
940 * caused by a new unknown cpu type or after another deadly
941 * hard/software error.
942 */
943 show_regs(regs);
944 panic("Caught reserved exception %ld - should not happen.",
945 (regs->cp0_cause & 0x7f) >> 2);
946}
947
Ralf Baechlee01402b2005-07-14 15:57:16 +0000948asmlinkage void do_default_vi(struct pt_regs *regs)
949{
950 show_regs(regs);
951 panic("Caught unexpected vectored interrupt.");
952}
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954/*
955 * Some MIPS CPUs can enable/disable for cache parity detection, but do
956 * it different ways.
957 */
958static inline void parity_protection_init(void)
959{
960 switch (current_cpu_data.cputype) {
961 case CPU_24K:
Nigel Stephens98a41de2006-04-27 15:50:32 +0100962 case CPU_34K:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 case CPU_5KC:
Ralf Baechle14f18b72005-03-01 18:15:08 +0000964 write_c0_ecc(0x80000000);
965 back_to_back_c0_hazard();
966 /* Set the PE bit (bit 31) in the c0_errctl register. */
967 printk(KERN_INFO "Cache parity protection %sabled\n",
968 (read_c0_ecc() & 0x80000000) ? "en" : "dis");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 break;
970 case CPU_20KC:
971 case CPU_25KF:
972 /* Clear the DE bit (bit 16) in the c0_status register. */
973 printk(KERN_INFO "Enable cache parity protection for "
974 "MIPS 20KC/25KF CPUs.\n");
975 clear_c0_status(ST0_DE);
976 break;
977 default:
978 break;
979 }
980}
981
982asmlinkage void cache_parity_error(void)
983{
984 const int field = 2 * sizeof(unsigned long);
985 unsigned int reg_val;
986
987 /* For the moment, report the problem and hang. */
988 printk("Cache error exception:\n");
989 printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
990 reg_val = read_c0_cacheerr();
991 printk("c0_cacheerr == %08x\n", reg_val);
992
993 printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
994 reg_val & (1<<30) ? "secondary" : "primary",
995 reg_val & (1<<31) ? "data" : "insn");
996 printk("Error bits: %s%s%s%s%s%s%s\n",
997 reg_val & (1<<29) ? "ED " : "",
998 reg_val & (1<<28) ? "ET " : "",
999 reg_val & (1<<26) ? "EE " : "",
1000 reg_val & (1<<25) ? "EB " : "",
1001 reg_val & (1<<24) ? "EI " : "",
1002 reg_val & (1<<23) ? "E1 " : "",
1003 reg_val & (1<<22) ? "E0 " : "");
1004 printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1));
1005
Ralf Baechleec917c2c2005-10-07 16:58:15 +01001006#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (reg_val & (1<<22))
1008 printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0());
1009
1010 if (reg_val & (1<<23))
1011 printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1());
1012#endif
1013
1014 panic("Can't handle the cache error!");
1015}
1016
1017/*
1018 * SDBBP EJTAG debug exception handler.
1019 * We skip the instruction and return to the next instruction.
1020 */
1021void ejtag_exception_handler(struct pt_regs *regs)
1022{
1023 const int field = 2 * sizeof(unsigned long);
1024 unsigned long depc, old_epc;
1025 unsigned int debug;
1026
Chris Dearman70ae6122006-06-30 12:32:37 +01001027 printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 depc = read_c0_depc();
1029 debug = read_c0_debug();
Chris Dearman70ae6122006-06-30 12:32:37 +01001030 printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (debug & 0x80000000) {
1032 /*
1033 * In branch delay slot.
1034 * We cheat a little bit here and use EPC to calculate the
1035 * debug return address (DEPC). EPC is restored after the
1036 * calculation.
1037 */
1038 old_epc = regs->cp0_epc;
1039 regs->cp0_epc = depc;
1040 __compute_return_epc(regs);
1041 depc = regs->cp0_epc;
1042 regs->cp0_epc = old_epc;
1043 } else
1044 depc += 4;
1045 write_c0_depc(depc);
1046
1047#if 0
Chris Dearman70ae6122006-06-30 12:32:37 +01001048 printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 write_c0_debug(debug | 0x100);
1050#endif
1051}
1052
1053/*
1054 * NMI exception handler.
1055 */
1056void nmi_exception_handler(struct pt_regs *regs)
1057{
Ralf Baechle41c594a2006-04-05 09:45:45 +01001058#ifdef CONFIG_MIPS_MT_SMTC
1059 unsigned long dvpret = dvpe();
1060 bust_spinlocks(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 printk("NMI taken!!!!\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001062 mips_mt_regdump(dvpret);
1063#else
1064 bust_spinlocks(1);
1065 printk("NMI taken!!!!\n");
1066#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 die("NMI", regs);
1068 while(1) ;
1069}
1070
Ralf Baechlee01402b2005-07-14 15:57:16 +00001071#define VECTORSPACING 0x100 /* for EI/VI mode */
1072
1073unsigned long ebase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074unsigned long exception_handlers[32];
Ralf Baechlee01402b2005-07-14 15:57:16 +00001075unsigned long vi_handlers[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077/*
1078 * As a side effect of the way this is implemented we're limited
1079 * to interrupt handlers in the address range from
1080 * KSEG0 <= x < KSEG0 + 256mb on the Nevada. Oh well ...
1081 */
1082void *set_except_vector(int n, void *addr)
1083{
1084 unsigned long handler = (unsigned long) addr;
1085 unsigned long old_handler = exception_handlers[n];
1086
1087 exception_handlers[n] = handler;
1088 if (n == 0 && cpu_has_divec) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001089 *(volatile u32 *)(ebase + 0x200) = 0x08000000 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 (0x03ffffff & (handler >> 2));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001091 flush_icache_range(ebase + 0x200, ebase + 0x204);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093 return (void *)old_handler;
1094}
1095
Ralf Baechlef41ae0b2006-06-05 17:24:46 +01001096#ifdef CONFIG_CPU_MIPSR2_SRS
Ralf Baechlee01402b2005-07-14 15:57:16 +00001097/*
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001098 * MIPSR2 shadow register set allocation
Ralf Baechlee01402b2005-07-14 15:57:16 +00001099 * FIXME: SMP...
1100 */
1101
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001102static struct shadow_registers {
1103 /*
1104 * Number of shadow register sets supported
1105 */
1106 unsigned long sr_supported;
1107 /*
1108 * Bitmap of allocated shadow registers
1109 */
1110 unsigned long sr_allocated;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001111} shadow_registers;
1112
Ralf Baechlebb12d612006-04-05 09:45:49 +01001113static void mips_srs_init(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001114{
Ralf Baechlee01402b2005-07-14 15:57:16 +00001115 shadow_registers.sr_supported = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
Yoichi Yuasa3ab0f402006-10-31 13:44:38 +09001116 printk(KERN_INFO "%ld MIPSR2 register sets available\n",
Ralf Baechle7acb7832006-03-29 14:11:22 +01001117 shadow_registers.sr_supported);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001118 shadow_registers.sr_allocated = 1; /* Set 0 used by kernel */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001119}
1120
1121int mips_srs_max(void)
1122{
1123 return shadow_registers.sr_supported;
1124}
1125
Ralf Baechleff3eab22006-03-29 14:12:58 +01001126int mips_srs_alloc(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001127{
1128 struct shadow_registers *sr = &shadow_registers;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001129 int set;
1130
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001131again:
1132 set = find_first_zero_bit(&sr->sr_allocated, sr->sr_supported);
1133 if (set >= sr->sr_supported)
1134 return -1;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001135
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001136 if (test_and_set_bit(set, &sr->sr_allocated))
1137 goto again;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001138
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001139 return set;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001140}
1141
Ralf Baechle41c594a2006-04-05 09:45:45 +01001142void mips_srs_free(int set)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001143{
1144 struct shadow_registers *sr = &shadow_registers;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001145
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001146 clear_bit(set, &sr->sr_allocated);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001147}
1148
Ralf Baechleb4d05cb2006-03-29 14:09:14 +01001149static void *set_vi_srs_handler(int n, void *addr, int srs)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001150{
1151 unsigned long handler;
1152 unsigned long old_handler = vi_handlers[n];
1153 u32 *w;
1154 unsigned char *b;
1155
1156 if (!cpu_has_veic && !cpu_has_vint)
1157 BUG();
1158
1159 if (addr == NULL) {
1160 handler = (unsigned long) do_default_vi;
1161 srs = 0;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001162 } else
Ralf Baechlee01402b2005-07-14 15:57:16 +00001163 handler = (unsigned long) addr;
1164 vi_handlers[n] = (unsigned long) addr;
1165
1166 b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING);
1167
1168 if (srs >= mips_srs_max())
1169 panic("Shadow register set %d not supported", srs);
1170
1171 if (cpu_has_veic) {
1172 if (board_bind_eic_interrupt)
1173 board_bind_eic_interrupt (n, srs);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001174 } else if (cpu_has_vint) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001175 /* SRSMap is only defined if shadow sets are implemented */
1176 if (mips_srs_max() > 1)
1177 change_c0_srsmap (0xf << n*4, srs << n*4);
1178 }
1179
1180 if (srs == 0) {
1181 /*
1182 * If no shadow set is selected then use the default handler
1183 * that does normal register saving and a standard interrupt exit
1184 */
1185
1186 extern char except_vec_vi, except_vec_vi_lui;
1187 extern char except_vec_vi_ori, except_vec_vi_end;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001188#ifdef CONFIG_MIPS_MT_SMTC
1189 /*
1190 * We need to provide the SMTC vectored interrupt handler
1191 * not only with the address of the handler, but with the
1192 * Status.IM bit to be masked before going there.
1193 */
1194 extern char except_vec_vi_mori;
1195 const int mori_offset = &except_vec_vi_mori - &except_vec_vi;
1196#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001197 const int handler_len = &except_vec_vi_end - &except_vec_vi;
1198 const int lui_offset = &except_vec_vi_lui - &except_vec_vi;
1199 const int ori_offset = &except_vec_vi_ori - &except_vec_vi;
1200
1201 if (handler_len > VECTORSPACING) {
1202 /*
1203 * Sigh... panicing won't help as the console
1204 * is probably not configured :(
1205 */
1206 panic ("VECTORSPACING too small");
1207 }
1208
1209 memcpy (b, &except_vec_vi, handler_len);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001210#ifdef CONFIG_MIPS_MT_SMTC
1211 if (n > 7)
1212 printk("Vector index %d exceeds SMTC maximum\n", n);
1213 w = (u32 *)(b + mori_offset);
1214 *w = (*w & 0xffff0000) | (0x100 << n);
1215#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001216 w = (u32 *)(b + lui_offset);
1217 *w = (*w & 0xffff0000) | (((u32)handler >> 16) & 0xffff);
1218 w = (u32 *)(b + ori_offset);
1219 *w = (*w & 0xffff0000) | ((u32)handler & 0xffff);
1220 flush_icache_range((unsigned long)b, (unsigned long)(b+handler_len));
1221 }
1222 else {
1223 /*
1224 * In other cases jump directly to the interrupt handler
1225 *
1226 * It is the handlers responsibility to save registers if required
1227 * (eg hi/lo) and return from the exception using "eret"
1228 */
1229 w = (u32 *)b;
1230 *w++ = 0x08000000 | (((u32)handler >> 2) & 0x03fffff); /* j handler */
1231 *w = 0;
1232 flush_icache_range((unsigned long)b, (unsigned long)(b+8));
1233 }
1234
1235 return (void *)old_handler;
1236}
1237
Ralf Baechle41c594a2006-04-05 09:45:45 +01001238void *set_vi_handler(int n, void *addr)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001239{
Ralf Baechleff3eab22006-03-29 14:12:58 +01001240 return set_vi_srs_handler(n, addr, 0);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001241}
Ralf Baechlef41ae0b2006-06-05 17:24:46 +01001242
1243#else
1244
1245static inline void mips_srs_init(void)
1246{
1247}
1248
1249#endif /* CONFIG_CPU_MIPSR2_SRS */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251/*
1252 * This is used by native signal handling
1253 */
1254asmlinkage int (*save_fp_context)(struct sigcontext *sc);
1255asmlinkage int (*restore_fp_context)(struct sigcontext *sc);
1256
1257extern asmlinkage int _save_fp_context(struct sigcontext *sc);
1258extern asmlinkage int _restore_fp_context(struct sigcontext *sc);
1259
1260extern asmlinkage int fpu_emulator_save_context(struct sigcontext *sc);
1261extern asmlinkage int fpu_emulator_restore_context(struct sigcontext *sc);
1262
Ralf Baechle41c594a2006-04-05 09:45:45 +01001263#ifdef CONFIG_SMP
1264static int smp_save_fp_context(struct sigcontext *sc)
1265{
1266 return cpu_has_fpu
1267 ? _save_fp_context(sc)
1268 : fpu_emulator_save_context(sc);
1269}
1270
1271static int smp_restore_fp_context(struct sigcontext *sc)
1272{
1273 return cpu_has_fpu
1274 ? _restore_fp_context(sc)
1275 : fpu_emulator_restore_context(sc);
1276}
1277#endif
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279static inline void signal_init(void)
1280{
Ralf Baechle41c594a2006-04-05 09:45:45 +01001281#ifdef CONFIG_SMP
1282 /* For now just do the cpu_has_fpu check when the functions are invoked */
1283 save_fp_context = smp_save_fp_context;
1284 restore_fp_context = smp_restore_fp_context;
1285#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (cpu_has_fpu) {
1287 save_fp_context = _save_fp_context;
1288 restore_fp_context = _restore_fp_context;
1289 } else {
1290 save_fp_context = fpu_emulator_save_context;
1291 restore_fp_context = fpu_emulator_restore_context;
1292 }
Ralf Baechle41c594a2006-04-05 09:45:45 +01001293#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
1296#ifdef CONFIG_MIPS32_COMPAT
1297
1298/*
1299 * This is used by 32-bit signal stuff on the 64-bit kernel
1300 */
1301asmlinkage int (*save_fp_context32)(struct sigcontext32 *sc);
1302asmlinkage int (*restore_fp_context32)(struct sigcontext32 *sc);
1303
1304extern asmlinkage int _save_fp_context32(struct sigcontext32 *sc);
1305extern asmlinkage int _restore_fp_context32(struct sigcontext32 *sc);
1306
1307extern asmlinkage int fpu_emulator_save_context32(struct sigcontext32 *sc);
1308extern asmlinkage int fpu_emulator_restore_context32(struct sigcontext32 *sc);
1309
1310static inline void signal32_init(void)
1311{
1312 if (cpu_has_fpu) {
1313 save_fp_context32 = _save_fp_context32;
1314 restore_fp_context32 = _restore_fp_context32;
1315 } else {
1316 save_fp_context32 = fpu_emulator_save_context32;
1317 restore_fp_context32 = fpu_emulator_restore_context32;
1318 }
1319}
1320#endif
1321
1322extern void cpu_cache_init(void);
1323extern void tlb_init(void);
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00001324extern void flush_tlb_handlers(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326void __init per_cpu_trap_init(void)
1327{
1328 unsigned int cpu = smp_processor_id();
1329 unsigned int status_set = ST0_CU0;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001330#ifdef CONFIG_MIPS_MT_SMTC
1331 int secondaryTC = 0;
1332 int bootTC = (cpu == 0);
1333
1334 /*
1335 * Only do per_cpu_trap_init() for first TC of Each VPE.
1336 * Note that this hack assumes that the SMTC init code
1337 * assigns TCs consecutively and in ascending order.
1338 */
1339
1340 if (((read_c0_tcbind() & TCBIND_CURTC) != 0) &&
1341 ((read_c0_tcbind() & TCBIND_CURVPE) == cpu_data[cpu - 1].vpe_id))
1342 secondaryTC = 1;
1343#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 /*
1346 * Disable coprocessors and select 32-bit or 64-bit addressing
1347 * and the 16/32 or 32/32 FPR register model. Reset the BEV
1348 * flag that some firmware may have left set and the TS bit (for
1349 * IP27). Set XX for ISA IV code to work.
1350 */
Ralf Baechle875d43e2005-09-03 15:56:16 -07001351#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX;
1353#endif
1354 if (current_cpu_data.isa_level == MIPS_CPU_ISA_IV)
1355 status_set |= ST0_XX;
Ralf Baechleb38c7392006-02-07 01:20:43 +00001356 change_c0_status(ST0_CU|ST0_MX|ST0_RE|ST0_FR|ST0_BEV|ST0_TS|ST0_KX|ST0_SX|ST0_UX,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 status_set);
1358
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +00001359 if (cpu_has_dsp)
1360 set_c0_status(ST0_MX);
1361
Ralf Baechlee01402b2005-07-14 15:57:16 +00001362#ifdef CONFIG_CPU_MIPSR2
1363 write_c0_hwrena (0x0000000f); /* Allow rdhwr to all registers */
1364#endif
1365
Ralf Baechle41c594a2006-04-05 09:45:45 +01001366#ifdef CONFIG_MIPS_MT_SMTC
1367 if (!secondaryTC) {
1368#endif /* CONFIG_MIPS_MT_SMTC */
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /*
Ralf Baechlee01402b2005-07-14 15:57:16 +00001371 * Interrupt handling.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001373 if (cpu_has_veic || cpu_has_vint) {
1374 write_c0_ebase (ebase);
1375 /* Setting vector spacing enables EI/VI mode */
1376 change_c0_intctl (0x3e0, VECTORSPACING);
1377 }
Ralf Baechled03d0a52005-08-17 13:44:26 +00001378 if (cpu_has_divec) {
1379 if (cpu_has_mipsmt) {
1380 unsigned int vpflags = dvpe();
1381 set_c0_cause(CAUSEF_IV);
1382 evpe(vpflags);
1383 } else
1384 set_c0_cause(CAUSEF_IV);
1385 }
Ralf Baechle41c594a2006-04-05 09:45:45 +01001386#ifdef CONFIG_MIPS_MT_SMTC
1387 }
1388#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 cpu_data[cpu].asid_cache = ASID_FIRST_VERSION;
1391 TLBMISS_HANDLER_SETUP();
1392
1393 atomic_inc(&init_mm.mm_count);
1394 current->active_mm = &init_mm;
1395 BUG_ON(current->mm);
1396 enter_lazy_tlb(&init_mm, current);
1397
Ralf Baechle41c594a2006-04-05 09:45:45 +01001398#ifdef CONFIG_MIPS_MT_SMTC
1399 if (bootTC) {
1400#endif /* CONFIG_MIPS_MT_SMTC */
1401 cpu_cache_init();
1402 tlb_init();
1403#ifdef CONFIG_MIPS_MT_SMTC
1404 }
1405#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
Ralf Baechlee01402b2005-07-14 15:57:16 +00001408/* Install CPU exception handler */
1409void __init set_handler (unsigned long offset, void *addr, unsigned long size)
1410{
1411 memcpy((void *)(ebase + offset), addr, size);
1412 flush_icache_range(ebase + offset, ebase + offset + size);
1413}
1414
1415/* Install uncached CPU exception handler */
1416void __init set_uncached_handler (unsigned long offset, void *addr, unsigned long size)
1417{
1418#ifdef CONFIG_32BIT
1419 unsigned long uncached_ebase = KSEG1ADDR(ebase);
1420#endif
1421#ifdef CONFIG_64BIT
1422 unsigned long uncached_ebase = TO_UNCAC(ebase);
1423#endif
1424
1425 memcpy((void *)(uncached_ebase + offset), addr, size);
1426}
1427
Atsushi Nemoto5b104962006-09-11 17:50:29 +09001428static int __initdata rdhwr_noopt;
1429static int __init set_rdhwr_noopt(char *str)
1430{
1431 rdhwr_noopt = 1;
1432 return 1;
1433}
1434
1435__setup("rdhwr_noopt", set_rdhwr_noopt);
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437void __init trap_init(void)
1438{
1439 extern char except_vec3_generic, except_vec3_r4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 extern char except_vec4;
1441 unsigned long i;
1442
Ralf Baechlee01402b2005-07-14 15:57:16 +00001443 if (cpu_has_veic || cpu_has_vint)
1444 ebase = (unsigned long) alloc_bootmem_low_pages (0x200 + VECTORSPACING*64);
1445 else
1446 ebase = CAC_BASE;
1447
Ralf Baechlee01402b2005-07-14 15:57:16 +00001448 mips_srs_init();
Ralf Baechlee01402b2005-07-14 15:57:16 +00001449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 per_cpu_trap_init();
1451
1452 /*
1453 * Copy the generic exception handlers to their final destination.
1454 * This will be overriden later as suitable for a particular
1455 * configuration.
1456 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001457 set_handler(0x180, &except_vec3_generic, 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 /*
1460 * Setup default vectors
1461 */
1462 for (i = 0; i <= 31; i++)
1463 set_except_vector(i, handle_reserved);
1464
1465 /*
1466 * Copy the EJTAG debug exception vector handler code to it's final
1467 * destination.
1468 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001469 if (cpu_has_ejtag && board_ejtag_handler_setup)
1470 board_ejtag_handler_setup ();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 /*
1473 * Only some CPUs have the watch exceptions.
1474 */
1475 if (cpu_has_watch)
1476 set_except_vector(23, handle_watch);
1477
1478 /*
Ralf Baechlee01402b2005-07-14 15:57:16 +00001479 * Initialise interrupt handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001481 if (cpu_has_veic || cpu_has_vint) {
1482 int nvec = cpu_has_veic ? 64 : 8;
1483 for (i = 0; i < nvec; i++)
Ralf Baechleff3eab22006-03-29 14:12:58 +01001484 set_vi_handler(i, NULL);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001485 }
1486 else if (cpu_has_divec)
1487 set_handler(0x200, &except_vec4, 0x8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 /*
1490 * Some CPUs can enable/disable for cache parity detection, but does
1491 * it different ways.
1492 */
1493 parity_protection_init();
1494
1495 /*
1496 * The Data Bus Errors / Instruction Bus Errors are signaled
1497 * by external hardware. Therefore these two exceptions
1498 * may have board specific handlers.
1499 */
1500 if (board_be_init)
1501 board_be_init();
1502
Ralf Baechlee4ac58a2006-04-03 17:56:36 +01001503 set_except_vector(0, handle_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 set_except_vector(1, handle_tlbm);
1505 set_except_vector(2, handle_tlbl);
1506 set_except_vector(3, handle_tlbs);
1507
1508 set_except_vector(4, handle_adel);
1509 set_except_vector(5, handle_ades);
1510
1511 set_except_vector(6, handle_ibe);
1512 set_except_vector(7, handle_dbe);
1513
1514 set_except_vector(8, handle_sys);
1515 set_except_vector(9, handle_bp);
Atsushi Nemoto5b104962006-09-11 17:50:29 +09001516 set_except_vector(10, rdhwr_noopt ? handle_ri :
1517 (cpu_has_vtag_icache ?
1518 handle_ri_rdhwr_vivt : handle_ri_rdhwr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 set_except_vector(11, handle_cpu);
1520 set_except_vector(12, handle_ov);
1521 set_except_vector(13, handle_tr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 if (current_cpu_data.cputype == CPU_R6000 ||
1524 current_cpu_data.cputype == CPU_R6000A) {
1525 /*
1526 * The R6000 is the only R-series CPU that features a machine
1527 * check exception (similar to the R4000 cache error) and
1528 * unaligned ldc1/sdc1 exception. The handlers have not been
1529 * written yet. Well, anyway there is no R6000 machine on the
1530 * current list of targets for Linux/MIPS.
1531 * (Duh, crap, there is someone with a triple R6k machine)
1532 */
1533 //set_except_vector(14, handle_mc);
1534 //set_except_vector(15, handle_ndc);
1535 }
1536
Ralf Baechlee01402b2005-07-14 15:57:16 +00001537
1538 if (board_nmi_handler_setup)
1539 board_nmi_handler_setup();
1540
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +00001541 if (cpu_has_fpu && !cpu_has_nofpuex)
1542 set_except_vector(15, handle_fpe);
1543
1544 set_except_vector(22, handle_mdmx);
1545
1546 if (cpu_has_mcheck)
1547 set_except_vector(24, handle_mcheck);
1548
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001549 if (cpu_has_mipsmt)
1550 set_except_vector(25, handle_mt);
1551
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +00001552 if (cpu_has_dsp)
1553 set_except_vector(26, handle_dsp);
1554
1555 if (cpu_has_vce)
1556 /* Special exception: R4[04]00 uses also the divec space. */
1557 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_r4000, 0x100);
1558 else if (cpu_has_4kex)
1559 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_generic, 0x80);
1560 else
1561 memcpy((void *)(CAC_BASE + 0x080), &except_vec3_generic, 0x80);
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 signal_init();
1564#ifdef CONFIG_MIPS32_COMPAT
1565 signal32_init();
1566#endif
1567
Ralf Baechlee01402b2005-07-14 15:57:16 +00001568 flush_icache_range(ebase, ebase + 0x400);
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00001569 flush_tlb_handlers();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}