blob: 368fdb779175a396c71127c9e36e8008d5a7e41b [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>
44
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010045extern asmlinkage void handle_int(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046extern asmlinkage void handle_tlbm(void);
47extern asmlinkage void handle_tlbl(void);
48extern asmlinkage void handle_tlbs(void);
49extern asmlinkage void handle_adel(void);
50extern asmlinkage void handle_ades(void);
51extern asmlinkage void handle_ibe(void);
52extern asmlinkage void handle_dbe(void);
53extern asmlinkage void handle_sys(void);
54extern asmlinkage void handle_bp(void);
55extern asmlinkage void handle_ri(void);
56extern asmlinkage void handle_cpu(void);
57extern asmlinkage void handle_ov(void);
58extern asmlinkage void handle_tr(void);
59extern asmlinkage void handle_fpe(void);
60extern asmlinkage void handle_mdmx(void);
61extern asmlinkage void handle_watch(void);
Ralf Baechle340ee4b2005-08-17 17:44:08 +000062extern asmlinkage void handle_mt(void);
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +000063extern asmlinkage void handle_dsp(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064extern asmlinkage void handle_mcheck(void);
65extern asmlinkage void handle_reserved(void);
66
Ralf Baechle12616ed2005-10-18 10:26:46 +010067extern int fpu_emulator_cop1Handler(struct pt_regs *xcp,
Atsushi Nemotoeae89072006-05-16 01:26:03 +090068 struct mips_fpu_struct *ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70void (*board_be_init)(void);
71int (*board_be_handler)(struct pt_regs *regs, int is_fixup);
Ralf Baechlee01402b2005-07-14 15:57:16 +000072void (*board_nmi_handler_setup)(void);
73void (*board_ejtag_handler_setup)(void);
74void (*board_bind_eic_interrupt)(int irq, int regset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/*
77 * These constant is for searching for possible module text segments.
78 * MODULE_RANGE is a guess of how much space is likely to be vmalloced.
79 */
80#define MODULE_RANGE (8*1024*1024)
81
82/*
83 * This routine abuses get_user()/put_user() to reference pointers
84 * with at least a bit of error checking ...
85 */
86void show_stack(struct task_struct *task, unsigned long *sp)
87{
88 const int field = 2 * sizeof(unsigned long);
89 long stackdata;
90 int i;
91
92 if (!sp) {
93 if (task && task != current)
94 sp = (unsigned long *) task->thread.reg29;
95 else
96 sp = (unsigned long *) &sp;
97 }
98
99 printk("Stack :");
100 i = 0;
101 while ((unsigned long) sp & (PAGE_SIZE - 1)) {
102 if (i && ((i % (64 / field)) == 0))
103 printk("\n ");
104 if (i > 39) {
105 printk(" ...");
106 break;
107 }
108
109 if (__get_user(stackdata, sp++)) {
110 printk(" (Bad stack address)");
111 break;
112 }
113
114 printk(" %0*lx", field, stackdata);
115 i++;
116 }
117 printk("\n");
118}
119
120void show_trace(struct task_struct *task, unsigned long *stack)
121{
122 const int field = 2 * sizeof(unsigned long);
123 unsigned long addr;
124
125 if (!stack) {
126 if (task && task != current)
127 stack = (unsigned long *) task->thread.reg29;
128 else
129 stack = (unsigned long *) &stack;
130 }
131
132 printk("Call Trace:");
133#ifdef CONFIG_KALLSYMS
134 printk("\n");
135#endif
136 while (!kstack_end(stack)) {
137 addr = *stack++;
138 if (__kernel_text_address(addr)) {
139 printk(" [<%0*lx>] ", field, addr);
140 print_symbol("%s\n", addr);
141 }
142 }
143 printk("\n");
144}
145
146/*
147 * The architecture-independent dump_stack generator
148 */
149void dump_stack(void)
150{
151 unsigned long stack;
152
153 show_trace(current, &stack);
154}
155
156EXPORT_SYMBOL(dump_stack);
157
158void show_code(unsigned int *pc)
159{
160 long i;
161
162 printk("\nCode:");
163
164 for(i = -3 ; i < 6 ; i++) {
165 unsigned int insn;
166 if (__get_user(insn, pc + i)) {
167 printk(" (Bad address in epc)\n");
168 break;
169 }
170 printk("%c%08x%c", (i?' ':'<'), insn, (i?' ':'>'));
171 }
172}
173
174void show_regs(struct pt_regs *regs)
175{
176 const int field = 2 * sizeof(unsigned long);
177 unsigned int cause = regs->cp0_cause;
178 int i;
179
180 printk("Cpu %d\n", smp_processor_id());
181
182 /*
183 * Saved main processor registers
184 */
185 for (i = 0; i < 32; ) {
186 if ((i % 4) == 0)
187 printk("$%2d :", i);
188 if (i == 0)
189 printk(" %0*lx", field, 0UL);
190 else if (i == 26 || i == 27)
191 printk(" %*s", field, "");
192 else
193 printk(" %0*lx", field, regs->regs[i]);
194
195 i++;
196 if ((i % 4) == 0)
197 printk("\n");
198 }
199
200 printk("Hi : %0*lx\n", field, regs->hi);
201 printk("Lo : %0*lx\n", field, regs->lo);
202
203 /*
204 * Saved cp0 registers
205 */
206 printk("epc : %0*lx ", field, regs->cp0_epc);
207 print_symbol("%s ", regs->cp0_epc);
208 printk(" %s\n", print_tainted());
209 printk("ra : %0*lx ", field, regs->regs[31]);
210 print_symbol("%s\n", regs->regs[31]);
211
212 printk("Status: %08x ", (uint32_t) regs->cp0_status);
213
Maciej W. Rozycki3b2396d2005-06-22 20:43:29 +0000214 if (current_cpu_data.isa_level == MIPS_CPU_ISA_I) {
215 if (regs->cp0_status & ST0_KUO)
216 printk("KUo ");
217 if (regs->cp0_status & ST0_IEO)
218 printk("IEo ");
219 if (regs->cp0_status & ST0_KUP)
220 printk("KUp ");
221 if (regs->cp0_status & ST0_IEP)
222 printk("IEp ");
223 if (regs->cp0_status & ST0_KUC)
224 printk("KUc ");
225 if (regs->cp0_status & ST0_IEC)
226 printk("IEc ");
227 } else {
228 if (regs->cp0_status & ST0_KX)
229 printk("KX ");
230 if (regs->cp0_status & ST0_SX)
231 printk("SX ");
232 if (regs->cp0_status & ST0_UX)
233 printk("UX ");
234 switch (regs->cp0_status & ST0_KSU) {
235 case KSU_USER:
236 printk("USER ");
237 break;
238 case KSU_SUPERVISOR:
239 printk("SUPERVISOR ");
240 break;
241 case KSU_KERNEL:
242 printk("KERNEL ");
243 break;
244 default:
245 printk("BAD_MODE ");
246 break;
247 }
248 if (regs->cp0_status & ST0_ERL)
249 printk("ERL ");
250 if (regs->cp0_status & ST0_EXL)
251 printk("EXL ");
252 if (regs->cp0_status & ST0_IE)
253 printk("IE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 printk("\n");
256
257 printk("Cause : %08x\n", cause);
258
259 cause = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE;
260 if (1 <= cause && cause <= 5)
261 printk("BadVA : %0*lx\n", field, regs->cp0_badvaddr);
262
263 printk("PrId : %08x\n", read_c0_prid());
264}
265
266void show_registers(struct pt_regs *regs)
267{
268 show_regs(regs);
269 print_modules();
270 printk("Process %s (pid: %d, threadinfo=%p, task=%p)\n",
271 current->comm, current->pid, current_thread_info(), current);
272 show_stack(current, (long *) regs->regs[29]);
273 show_trace(current, (long *) regs->regs[29]);
274 show_code((unsigned int *) regs->cp0_epc);
275 printk("\n");
276}
277
278static DEFINE_SPINLOCK(die_lock);
279
Ralf Baechle178086c2005-10-13 17:07:54 +0100280NORET_TYPE void ATTRIB_NORET die(const char * str, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 static int die_counter;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100283#ifdef CONFIG_MIPS_MT_SMTC
284 unsigned long dvpret = dvpe();
285#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 console_verbose();
288 spin_lock_irq(&die_lock);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100289 bust_spinlocks(1);
290#ifdef CONFIG_MIPS_MT_SMTC
291 mips_mt_regdump(dvpret);
292#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechle178086c2005-10-13 17:07:54 +0100293 printk("%s[#%d]:\n", str, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 show_registers(regs);
295 spin_unlock_irq(&die_lock);
Maxime Bizond4fd1982006-07-20 18:52:02 +0200296
297 if (in_interrupt())
298 panic("Fatal exception in interrupt");
299
300 if (panic_on_oops) {
301 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
302 ssleep(5);
303 panic("Fatal exception");
304 }
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 do_exit(SIGSEGV);
307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309extern const struct exception_table_entry __start___dbe_table[];
310extern const struct exception_table_entry __stop___dbe_table[];
311
312void __declare_dbe_table(void)
313{
314 __asm__ __volatile__(
315 ".section\t__dbe_table,\"a\"\n\t"
316 ".previous"
317 );
318}
319
320/* Given an address, look for it in the exception tables. */
321static const struct exception_table_entry *search_dbe_tables(unsigned long addr)
322{
323 const struct exception_table_entry *e;
324
325 e = search_extable(__start___dbe_table, __stop___dbe_table - 1, addr);
326 if (!e)
327 e = search_module_dbetables(addr);
328 return e;
329}
330
331asmlinkage void do_be(struct pt_regs *regs)
332{
333 const int field = 2 * sizeof(unsigned long);
334 const struct exception_table_entry *fixup = NULL;
335 int data = regs->cp0_cause & 4;
336 int action = MIPS_BE_FATAL;
337
338 /* XXX For now. Fixme, this searches the wrong table ... */
339 if (data && !user_mode(regs))
340 fixup = search_dbe_tables(exception_epc(regs));
341
342 if (fixup)
343 action = MIPS_BE_FIXUP;
344
345 if (board_be_handler)
346 action = board_be_handler(regs, fixup != 0);
347
348 switch (action) {
349 case MIPS_BE_DISCARD:
350 return;
351 case MIPS_BE_FIXUP:
352 if (fixup) {
353 regs->cp0_epc = fixup->nextinsn;
354 return;
355 }
356 break;
357 default:
358 break;
359 }
360
361 /*
362 * Assume it would be too dangerous to continue ...
363 */
364 printk(KERN_ALERT "%s bus error, epc == %0*lx, ra == %0*lx\n",
365 data ? "Data" : "Instruction",
366 field, regs->cp0_epc, field, regs->regs[31]);
367 die_if_kernel("Oops", regs);
368 force_sig(SIGBUS, current);
369}
370
371static inline int get_insn_opcode(struct pt_regs *regs, unsigned int *opcode)
372{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000373 unsigned int __user *epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Ralf Baechlefe00f942005-03-01 19:22:29 +0000375 epc = (unsigned int __user *) regs->cp0_epc +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 ((regs->cp0_cause & CAUSEF_BD) != 0);
377 if (!get_user(*opcode, epc))
378 return 0;
379
380 force_sig(SIGSEGV, current);
381 return 1;
382}
383
384/*
385 * ll/sc emulation
386 */
387
388#define OPCODE 0xfc000000
389#define BASE 0x03e00000
390#define RT 0x001f0000
391#define OFFSET 0x0000ffff
392#define LL 0xc0000000
393#define SC 0xe0000000
Ralf Baechle3c370262005-04-13 17:43:59 +0000394#define SPEC3 0x7c000000
395#define RD 0x0000f800
396#define FUNC 0x0000003f
397#define RDHWR 0x0000003b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399/*
400 * The ll_bit is cleared by r*_switch.S
401 */
402
403unsigned long ll_bit;
404
405static struct task_struct *ll_task = NULL;
406
407static inline void simulate_ll(struct pt_regs *regs, unsigned int opcode)
408{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000409 unsigned long value, __user *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 long offset;
411 int signal = 0;
412
413 /*
414 * analyse the ll instruction that just caused a ri exception
415 * and put the referenced address to addr.
416 */
417
418 /* sign extend offset */
419 offset = opcode & OFFSET;
420 offset <<= 16;
421 offset >>= 16;
422
Ralf Baechlefe00f942005-03-01 19:22:29 +0000423 vaddr = (unsigned long __user *)
424 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 if ((unsigned long)vaddr & 3) {
427 signal = SIGBUS;
428 goto sig;
429 }
430 if (get_user(value, vaddr)) {
431 signal = SIGSEGV;
432 goto sig;
433 }
434
435 preempt_disable();
436
437 if (ll_task == NULL || ll_task == current) {
438 ll_bit = 1;
439 } else {
440 ll_bit = 0;
441 }
442 ll_task = current;
443
444 preempt_enable();
445
Ralf Baechle6dd04682005-04-12 11:04:15 +0000446 compute_return_epc(regs);
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 regs->regs[(opcode & RT) >> 16] = value;
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return;
451
452sig:
453 force_sig(signal, current);
454}
455
456static inline void simulate_sc(struct pt_regs *regs, unsigned int opcode)
457{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000458 unsigned long __user *vaddr;
459 unsigned long reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 long offset;
461 int signal = 0;
462
463 /*
464 * analyse the sc instruction that just caused a ri exception
465 * and put the referenced address to addr.
466 */
467
468 /* sign extend offset */
469 offset = opcode & OFFSET;
470 offset <<= 16;
471 offset >>= 16;
472
Ralf Baechlefe00f942005-03-01 19:22:29 +0000473 vaddr = (unsigned long __user *)
474 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 reg = (opcode & RT) >> 16;
476
477 if ((unsigned long)vaddr & 3) {
478 signal = SIGBUS;
479 goto sig;
480 }
481
482 preempt_disable();
483
484 if (ll_bit == 0 || ll_task != current) {
Ralf Baechle05b80422005-04-12 20:26:05 +0000485 compute_return_epc(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 regs->regs[reg] = 0;
487 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return;
489 }
490
491 preempt_enable();
492
493 if (put_user(regs->regs[reg], vaddr)) {
494 signal = SIGSEGV;
495 goto sig;
496 }
497
Ralf Baechle6dd04682005-04-12 11:04:15 +0000498 compute_return_epc(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 regs->regs[reg] = 1;
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return;
502
503sig:
504 force_sig(signal, current);
505}
506
507/*
508 * ll uses the opcode of lwc0 and sc uses the opcode of swc0. That is both
509 * opcodes are supposed to result in coprocessor unusable exceptions if
510 * executed on ll/sc-less processors. That's the theory. In practice a
511 * few processors such as NEC's VR4100 throw reserved instruction exceptions
512 * instead, so we're doing the emulation thing in both exception handlers.
513 */
514static inline int simulate_llsc(struct pt_regs *regs)
515{
516 unsigned int opcode;
517
518 if (unlikely(get_insn_opcode(regs, &opcode)))
519 return -EFAULT;
520
521 if ((opcode & OPCODE) == LL) {
522 simulate_ll(regs, opcode);
523 return 0;
524 }
525 if ((opcode & OPCODE) == SC) {
526 simulate_sc(regs, opcode);
527 return 0;
528 }
529
530 return -EFAULT; /* Strange things going on ... */
531}
532
Ralf Baechle3c370262005-04-13 17:43:59 +0000533/*
534 * Simulate trapping 'rdhwr' instructions to provide user accessible
535 * registers not implemented in hardware. The only current use of this
536 * is the thread area pointer.
537 */
538static inline int simulate_rdhwr(struct pt_regs *regs)
539{
Al Virodc8f6022006-01-12 01:06:07 -0800540 struct thread_info *ti = task_thread_info(current);
Ralf Baechle3c370262005-04-13 17:43:59 +0000541 unsigned int opcode;
542
543 if (unlikely(get_insn_opcode(regs, &opcode)))
544 return -EFAULT;
545
546 if (unlikely(compute_return_epc(regs)))
547 return -EFAULT;
548
549 if ((opcode & OPCODE) == SPEC3 && (opcode & FUNC) == RDHWR) {
550 int rd = (opcode & RD) >> 11;
551 int rt = (opcode & RT) >> 16;
552 switch (rd) {
553 case 29:
554 regs->regs[rt] = ti->tp_value;
Daniel Jacobowitz56ebd512005-11-26 22:34:41 -0500555 return 0;
Ralf Baechle3c370262005-04-13 17:43:59 +0000556 default:
557 return -EFAULT;
558 }
559 }
560
Daniel Jacobowitz56ebd512005-11-26 22:34:41 -0500561 /* Not ours. */
562 return -EFAULT;
Ralf Baechle3c370262005-04-13 17:43:59 +0000563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565asmlinkage void do_ov(struct pt_regs *regs)
566{
567 siginfo_t info;
568
Ralf Baechle36ccf1c2006-02-14 21:04:54 +0000569 die_if_kernel("Integer overflow", regs);
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 info.si_code = FPE_INTOVF;
572 info.si_signo = SIGFPE;
573 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000574 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 force_sig_info(SIGFPE, &info, current);
576}
577
578/*
579 * XXX Delayed fp exceptions when doing a lazy ctx switch XXX
580 */
581asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31)
582{
Chris Dearman57725f92006-06-30 23:35:28 +0100583 die_if_kernel("FP exception in kernel code", regs);
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (fcr31 & FPU_CSR_UNI_X) {
586 int sig;
587
588 preempt_disable();
589
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000590#ifdef CONFIG_PREEMPT
591 if (!is_fpu_owner()) {
592 /* We might lose fpu before disabling preempt... */
593 own_fpu();
594 BUG_ON(!used_math());
595 restore_fp(current);
596 }
597#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /*
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000599 * Unimplemented operation exception. If we've got the full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 * software emulator on-board, let's use it...
601 *
602 * Force FPU to dump state into task/thread context. We're
603 * moving a lot of data here for what is probably a single
604 * instruction, but the alternative is to pre-decode the FP
605 * register operands before invoking the emulator, which seems
606 * a bit extreme for what should be an infrequent event.
607 */
608 save_fp(current);
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000609 /* Ensure 'resume' not overwrite saved fp context again. */
610 lose_fpu();
611
612 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 /* Run the emulator */
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900615 sig = fpu_emulator_cop1Handler (regs, &current->thread.fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000617 preempt_disable();
618
619 own_fpu(); /* Using the FPU again. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /*
621 * We can't allow the emulated instruction to leave any of
622 * the cause bit set in $fcr31.
623 */
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900624 current->thread.fpu.fcr31 &= ~FPU_CSR_ALL_X;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 /* Restore the hardware register state */
627 restore_fp(current);
628
629 preempt_enable();
630
631 /* If something went wrong, signal */
632 if (sig)
633 force_sig(sig, current);
634
635 return;
636 }
637
638 force_sig(SIGFPE, current);
639}
640
641asmlinkage void do_bp(struct pt_regs *regs)
642{
643 unsigned int opcode, bcode;
644 siginfo_t info;
645
646 die_if_kernel("Break instruction in kernel code", regs);
647
648 if (get_insn_opcode(regs, &opcode))
649 return;
650
651 /*
652 * There is the ancient bug in the MIPS assemblers that the break
653 * code starts left to bit 16 instead to bit 6 in the opcode.
654 * Gas is bug-compatible, but not always, grrr...
655 * We handle both cases with a simple heuristics. --macro
656 */
657 bcode = ((opcode >> 6) & ((1 << 20) - 1));
658 if (bcode < (1 << 10))
659 bcode <<= 10;
660
661 /*
662 * (A short test says that IRIX 5.3 sends SIGTRAP for all break
663 * insns, even for break codes that indicate arithmetic failures.
664 * Weird ...)
665 * But should we continue the brokenness??? --macro
666 */
667 switch (bcode) {
668 case BRK_OVERFLOW << 10:
669 case BRK_DIVZERO << 10:
670 if (bcode == (BRK_DIVZERO << 10))
671 info.si_code = FPE_INTDIV;
672 else
673 info.si_code = FPE_INTOVF;
674 info.si_signo = SIGFPE;
675 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000676 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 force_sig_info(SIGFPE, &info, current);
678 break;
679 default:
680 force_sig(SIGTRAP, current);
681 }
682}
683
684asmlinkage void do_tr(struct pt_regs *regs)
685{
686 unsigned int opcode, tcode = 0;
687 siginfo_t info;
688
689 die_if_kernel("Trap instruction in kernel code", regs);
690
691 if (get_insn_opcode(regs, &opcode))
692 return;
693
694 /* Immediate versions don't provide a code. */
695 if (!(opcode & OPCODE))
696 tcode = ((opcode >> 6) & ((1 << 10) - 1));
697
698 /*
699 * (A short test says that IRIX 5.3 sends SIGTRAP for all trap
700 * insns, even for trap codes that indicate arithmetic failures.
701 * Weird ...)
702 * But should we continue the brokenness??? --macro
703 */
704 switch (tcode) {
705 case BRK_OVERFLOW:
706 case BRK_DIVZERO:
707 if (tcode == BRK_DIVZERO)
708 info.si_code = FPE_INTDIV;
709 else
710 info.si_code = FPE_INTOVF;
711 info.si_signo = SIGFPE;
712 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000713 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 force_sig_info(SIGFPE, &info, current);
715 break;
716 default:
717 force_sig(SIGTRAP, current);
718 }
719}
720
721asmlinkage void do_ri(struct pt_regs *regs)
722{
723 die_if_kernel("Reserved instruction in kernel code", regs);
724
725 if (!cpu_has_llsc)
726 if (!simulate_llsc(regs))
727 return;
728
Ralf Baechle3c370262005-04-13 17:43:59 +0000729 if (!simulate_rdhwr(regs))
730 return;
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 force_sig(SIGILL, current);
733}
734
735asmlinkage void do_cpu(struct pt_regs *regs)
736{
737 unsigned int cpid;
738
739 die_if_kernel("do_cpu invoked from kernel context!", regs);
740
741 cpid = (regs->cp0_cause >> CAUSEB_CE) & 3;
742
743 switch (cpid) {
744 case 0:
Ralf Baechle3c370262005-04-13 17:43:59 +0000745 if (!cpu_has_llsc)
746 if (!simulate_llsc(regs))
747 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Ralf Baechle3c370262005-04-13 17:43:59 +0000749 if (!simulate_rdhwr(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return;
Ralf Baechle3c370262005-04-13 17:43:59 +0000751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 break;
753
754 case 1:
755 preempt_disable();
756
757 own_fpu();
758 if (used_math()) { /* Using the FPU again. */
759 restore_fp(current);
760 } else { /* First time FPU user. */
761 init_fpu();
762 set_used_math();
763 }
764
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000765 preempt_enable();
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (!cpu_has_fpu) {
Ralf Baechle12616ed2005-10-18 10:26:46 +0100768 int sig = fpu_emulator_cop1Handler(regs,
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900769 &current->thread.fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (sig)
771 force_sig(sig, current);
Ralf Baechlef088fc82006-04-05 09:45:47 +0100772#ifdef CONFIG_MIPS_MT_FPAFF
773 else {
774 /*
775 * MIPS MT processors may have fewer FPU contexts
776 * than CPU threads. If we've emulated more than
777 * some threshold number of instructions, force
778 * migration to a "CPU" that has FP support.
779 */
780 if(mt_fpemul_threshold > 0
781 && ((current->thread.emulated_fp++
782 > mt_fpemul_threshold))) {
783 /*
784 * If there's no FPU present, or if the
785 * application has already restricted
786 * the allowed set to exclude any CPUs
787 * with FPUs, we'll skip the procedure.
788 */
789 if (cpus_intersects(current->cpus_allowed,
790 mt_fpu_cpumask)) {
791 cpumask_t tmask;
792
793 cpus_and(tmask,
794 current->thread.user_cpus_allowed,
795 mt_fpu_cpumask);
796 set_cpus_allowed(current, tmask);
797 current->thread.mflags |= MF_FPUBOUND;
798 }
799 }
800 }
801#endif /* CONFIG_MIPS_MT_FPAFF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return;
805
806 case 2:
807 case 3:
Ralf Baechle41c594a2006-04-05 09:45:45 +0100808 die_if_kernel("do_cpu invoked from kernel context!", regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 break;
810 }
811
812 force_sig(SIGILL, current);
813}
814
815asmlinkage void do_mdmx(struct pt_regs *regs)
816{
817 force_sig(SIGILL, current);
818}
819
820asmlinkage void do_watch(struct pt_regs *regs)
821{
822 /*
823 * We use the watch exception where available to detect stack
824 * overflows.
825 */
826 dump_tlb_all();
827 show_regs(regs);
828 panic("Caught WATCH exception - probably caused by stack overflow.");
829}
830
831asmlinkage void do_mcheck(struct pt_regs *regs)
832{
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100833 const int field = 2 * sizeof(unsigned long);
834 int multi_match = regs->cp0_status & ST0_TS;
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 show_regs(regs);
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100837
838 if (multi_match) {
839 printk("Index : %0x\n", read_c0_index());
840 printk("Pagemask: %0x\n", read_c0_pagemask());
841 printk("EntryHi : %0*lx\n", field, read_c0_entryhi());
842 printk("EntryLo0: %0*lx\n", field, read_c0_entrylo0());
843 printk("EntryLo1: %0*lx\n", field, read_c0_entrylo1());
844 printk("\n");
845 dump_tlb_all();
846 }
847
848 show_code((unsigned int *) regs->cp0_epc);
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 /*
851 * Some chips may have other causes of machine check (e.g. SB1
852 * graduation timer)
853 */
854 panic("Caught Machine Check exception - %scaused by multiple "
855 "matching entries in the TLB.",
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100856 (multi_match) ? "" : "not ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000859asmlinkage void do_mt(struct pt_regs *regs)
860{
Ralf Baechle41c594a2006-04-05 09:45:45 +0100861 int subcode;
862
Ralf Baechle41c594a2006-04-05 09:45:45 +0100863 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT)
864 >> VPECONTROL_EXCPT_SHIFT;
865 switch (subcode) {
866 case 0:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100867 printk(KERN_DEBUG "Thread Underflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100868 break;
869 case 1:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100870 printk(KERN_DEBUG "Thread Overflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100871 break;
872 case 2:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100873 printk(KERN_DEBUG "Invalid YIELD Qualifier\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100874 break;
875 case 3:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100876 printk(KERN_DEBUG "Gating Storage Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100877 break;
878 case 4:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100879 printk(KERN_DEBUG "YIELD Scheduler Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100880 break;
881 case 5:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100882 printk(KERN_DEBUG "Gating Storage Schedulier Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100883 break;
884 default:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100885 printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n",
Ralf Baechle41c594a2006-04-05 09:45:45 +0100886 subcode);
887 break;
888 }
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000889 die_if_kernel("MIPS MT Thread exception in kernel", regs);
890
891 force_sig(SIGILL, current);
892}
893
894
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +0000895asmlinkage void do_dsp(struct pt_regs *regs)
896{
897 if (cpu_has_dsp)
898 panic("Unexpected DSP exception\n");
899
900 force_sig(SIGILL, current);
901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903asmlinkage void do_reserved(struct pt_regs *regs)
904{
905 /*
906 * Game over - no way to handle this if it ever occurs. Most probably
907 * caused by a new unknown cpu type or after another deadly
908 * hard/software error.
909 */
910 show_regs(regs);
911 panic("Caught reserved exception %ld - should not happen.",
912 (regs->cp0_cause & 0x7f) >> 2);
913}
914
Ralf Baechlee01402b2005-07-14 15:57:16 +0000915asmlinkage void do_default_vi(struct pt_regs *regs)
916{
917 show_regs(regs);
918 panic("Caught unexpected vectored interrupt.");
919}
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921/*
922 * Some MIPS CPUs can enable/disable for cache parity detection, but do
923 * it different ways.
924 */
925static inline void parity_protection_init(void)
926{
927 switch (current_cpu_data.cputype) {
928 case CPU_24K:
Nigel Stephens98a41de2006-04-27 15:50:32 +0100929 case CPU_34K:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 case CPU_5KC:
Ralf Baechle14f18b72005-03-01 18:15:08 +0000931 write_c0_ecc(0x80000000);
932 back_to_back_c0_hazard();
933 /* Set the PE bit (bit 31) in the c0_errctl register. */
934 printk(KERN_INFO "Cache parity protection %sabled\n",
935 (read_c0_ecc() & 0x80000000) ? "en" : "dis");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 break;
937 case CPU_20KC:
938 case CPU_25KF:
939 /* Clear the DE bit (bit 16) in the c0_status register. */
940 printk(KERN_INFO "Enable cache parity protection for "
941 "MIPS 20KC/25KF CPUs.\n");
942 clear_c0_status(ST0_DE);
943 break;
944 default:
945 break;
946 }
947}
948
949asmlinkage void cache_parity_error(void)
950{
951 const int field = 2 * sizeof(unsigned long);
952 unsigned int reg_val;
953
954 /* For the moment, report the problem and hang. */
955 printk("Cache error exception:\n");
956 printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
957 reg_val = read_c0_cacheerr();
958 printk("c0_cacheerr == %08x\n", reg_val);
959
960 printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
961 reg_val & (1<<30) ? "secondary" : "primary",
962 reg_val & (1<<31) ? "data" : "insn");
963 printk("Error bits: %s%s%s%s%s%s%s\n",
964 reg_val & (1<<29) ? "ED " : "",
965 reg_val & (1<<28) ? "ET " : "",
966 reg_val & (1<<26) ? "EE " : "",
967 reg_val & (1<<25) ? "EB " : "",
968 reg_val & (1<<24) ? "EI " : "",
969 reg_val & (1<<23) ? "E1 " : "",
970 reg_val & (1<<22) ? "E0 " : "");
971 printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1));
972
Ralf Baechleec917c2c2005-10-07 16:58:15 +0100973#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 if (reg_val & (1<<22))
975 printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0());
976
977 if (reg_val & (1<<23))
978 printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1());
979#endif
980
981 panic("Can't handle the cache error!");
982}
983
984/*
985 * SDBBP EJTAG debug exception handler.
986 * We skip the instruction and return to the next instruction.
987 */
988void ejtag_exception_handler(struct pt_regs *regs)
989{
990 const int field = 2 * sizeof(unsigned long);
991 unsigned long depc, old_epc;
992 unsigned int debug;
993
Chris Dearman70ae6122006-06-30 12:32:37 +0100994 printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 depc = read_c0_depc();
996 debug = read_c0_debug();
Chris Dearman70ae6122006-06-30 12:32:37 +0100997 printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (debug & 0x80000000) {
999 /*
1000 * In branch delay slot.
1001 * We cheat a little bit here and use EPC to calculate the
1002 * debug return address (DEPC). EPC is restored after the
1003 * calculation.
1004 */
1005 old_epc = regs->cp0_epc;
1006 regs->cp0_epc = depc;
1007 __compute_return_epc(regs);
1008 depc = regs->cp0_epc;
1009 regs->cp0_epc = old_epc;
1010 } else
1011 depc += 4;
1012 write_c0_depc(depc);
1013
1014#if 0
Chris Dearman70ae6122006-06-30 12:32:37 +01001015 printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 write_c0_debug(debug | 0x100);
1017#endif
1018}
1019
1020/*
1021 * NMI exception handler.
1022 */
1023void nmi_exception_handler(struct pt_regs *regs)
1024{
Ralf Baechle41c594a2006-04-05 09:45:45 +01001025#ifdef CONFIG_MIPS_MT_SMTC
1026 unsigned long dvpret = dvpe();
1027 bust_spinlocks(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 printk("NMI taken!!!!\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001029 mips_mt_regdump(dvpret);
1030#else
1031 bust_spinlocks(1);
1032 printk("NMI taken!!!!\n");
1033#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 die("NMI", regs);
1035 while(1) ;
1036}
1037
Ralf Baechlee01402b2005-07-14 15:57:16 +00001038#define VECTORSPACING 0x100 /* for EI/VI mode */
1039
1040unsigned long ebase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041unsigned long exception_handlers[32];
Ralf Baechlee01402b2005-07-14 15:57:16 +00001042unsigned long vi_handlers[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044/*
1045 * As a side effect of the way this is implemented we're limited
1046 * to interrupt handlers in the address range from
1047 * KSEG0 <= x < KSEG0 + 256mb on the Nevada. Oh well ...
1048 */
1049void *set_except_vector(int n, void *addr)
1050{
1051 unsigned long handler = (unsigned long) addr;
1052 unsigned long old_handler = exception_handlers[n];
1053
1054 exception_handlers[n] = handler;
1055 if (n == 0 && cpu_has_divec) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001056 *(volatile u32 *)(ebase + 0x200) = 0x08000000 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 (0x03ffffff & (handler >> 2));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001058 flush_icache_range(ebase + 0x200, ebase + 0x204);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060 return (void *)old_handler;
1061}
1062
Ralf Baechlef41ae0b2006-06-05 17:24:46 +01001063#ifdef CONFIG_CPU_MIPSR2_SRS
Ralf Baechlee01402b2005-07-14 15:57:16 +00001064/*
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001065 * MIPSR2 shadow register set allocation
Ralf Baechlee01402b2005-07-14 15:57:16 +00001066 * FIXME: SMP...
1067 */
1068
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001069static struct shadow_registers {
1070 /*
1071 * Number of shadow register sets supported
1072 */
1073 unsigned long sr_supported;
1074 /*
1075 * Bitmap of allocated shadow registers
1076 */
1077 unsigned long sr_allocated;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001078} shadow_registers;
1079
Ralf Baechlebb12d612006-04-05 09:45:49 +01001080static void mips_srs_init(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001081{
Ralf Baechlee01402b2005-07-14 15:57:16 +00001082 shadow_registers.sr_supported = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
Ralf Baechle7acb7832006-03-29 14:11:22 +01001083 printk(KERN_INFO "%d MIPSR2 register sets available\n",
1084 shadow_registers.sr_supported);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001085 shadow_registers.sr_allocated = 1; /* Set 0 used by kernel */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001086}
1087
1088int mips_srs_max(void)
1089{
1090 return shadow_registers.sr_supported;
1091}
1092
Ralf Baechleff3eab22006-03-29 14:12:58 +01001093int mips_srs_alloc(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001094{
1095 struct shadow_registers *sr = &shadow_registers;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001096 int set;
1097
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001098again:
1099 set = find_first_zero_bit(&sr->sr_allocated, sr->sr_supported);
1100 if (set >= sr->sr_supported)
1101 return -1;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001102
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001103 if (test_and_set_bit(set, &sr->sr_allocated))
1104 goto again;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001105
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001106 return set;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001107}
1108
Ralf Baechle41c594a2006-04-05 09:45:45 +01001109void mips_srs_free(int set)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001110{
1111 struct shadow_registers *sr = &shadow_registers;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001112
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001113 clear_bit(set, &sr->sr_allocated);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001114}
1115
Ralf Baechleb4d05cb2006-03-29 14:09:14 +01001116static void *set_vi_srs_handler(int n, void *addr, int srs)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001117{
1118 unsigned long handler;
1119 unsigned long old_handler = vi_handlers[n];
1120 u32 *w;
1121 unsigned char *b;
1122
1123 if (!cpu_has_veic && !cpu_has_vint)
1124 BUG();
1125
1126 if (addr == NULL) {
1127 handler = (unsigned long) do_default_vi;
1128 srs = 0;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001129 } else
Ralf Baechlee01402b2005-07-14 15:57:16 +00001130 handler = (unsigned long) addr;
1131 vi_handlers[n] = (unsigned long) addr;
1132
1133 b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING);
1134
1135 if (srs >= mips_srs_max())
1136 panic("Shadow register set %d not supported", srs);
1137
1138 if (cpu_has_veic) {
1139 if (board_bind_eic_interrupt)
1140 board_bind_eic_interrupt (n, srs);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001141 } else if (cpu_has_vint) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001142 /* SRSMap is only defined if shadow sets are implemented */
1143 if (mips_srs_max() > 1)
1144 change_c0_srsmap (0xf << n*4, srs << n*4);
1145 }
1146
1147 if (srs == 0) {
1148 /*
1149 * If no shadow set is selected then use the default handler
1150 * that does normal register saving and a standard interrupt exit
1151 */
1152
1153 extern char except_vec_vi, except_vec_vi_lui;
1154 extern char except_vec_vi_ori, except_vec_vi_end;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001155#ifdef CONFIG_MIPS_MT_SMTC
1156 /*
1157 * We need to provide the SMTC vectored interrupt handler
1158 * not only with the address of the handler, but with the
1159 * Status.IM bit to be masked before going there.
1160 */
1161 extern char except_vec_vi_mori;
1162 const int mori_offset = &except_vec_vi_mori - &except_vec_vi;
1163#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001164 const int handler_len = &except_vec_vi_end - &except_vec_vi;
1165 const int lui_offset = &except_vec_vi_lui - &except_vec_vi;
1166 const int ori_offset = &except_vec_vi_ori - &except_vec_vi;
1167
1168 if (handler_len > VECTORSPACING) {
1169 /*
1170 * Sigh... panicing won't help as the console
1171 * is probably not configured :(
1172 */
1173 panic ("VECTORSPACING too small");
1174 }
1175
1176 memcpy (b, &except_vec_vi, handler_len);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001177#ifdef CONFIG_MIPS_MT_SMTC
1178 if (n > 7)
1179 printk("Vector index %d exceeds SMTC maximum\n", n);
1180 w = (u32 *)(b + mori_offset);
1181 *w = (*w & 0xffff0000) | (0x100 << n);
1182#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001183 w = (u32 *)(b + lui_offset);
1184 *w = (*w & 0xffff0000) | (((u32)handler >> 16) & 0xffff);
1185 w = (u32 *)(b + ori_offset);
1186 *w = (*w & 0xffff0000) | ((u32)handler & 0xffff);
1187 flush_icache_range((unsigned long)b, (unsigned long)(b+handler_len));
1188 }
1189 else {
1190 /*
1191 * In other cases jump directly to the interrupt handler
1192 *
1193 * It is the handlers responsibility to save registers if required
1194 * (eg hi/lo) and return from the exception using "eret"
1195 */
1196 w = (u32 *)b;
1197 *w++ = 0x08000000 | (((u32)handler >> 2) & 0x03fffff); /* j handler */
1198 *w = 0;
1199 flush_icache_range((unsigned long)b, (unsigned long)(b+8));
1200 }
1201
1202 return (void *)old_handler;
1203}
1204
Ralf Baechle41c594a2006-04-05 09:45:45 +01001205void *set_vi_handler(int n, void *addr)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001206{
Ralf Baechleff3eab22006-03-29 14:12:58 +01001207 return set_vi_srs_handler(n, addr, 0);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001208}
Ralf Baechlef41ae0b2006-06-05 17:24:46 +01001209
1210#else
1211
1212static inline void mips_srs_init(void)
1213{
1214}
1215
1216#endif /* CONFIG_CPU_MIPSR2_SRS */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218/*
1219 * This is used by native signal handling
1220 */
1221asmlinkage int (*save_fp_context)(struct sigcontext *sc);
1222asmlinkage int (*restore_fp_context)(struct sigcontext *sc);
1223
1224extern asmlinkage int _save_fp_context(struct sigcontext *sc);
1225extern asmlinkage int _restore_fp_context(struct sigcontext *sc);
1226
1227extern asmlinkage int fpu_emulator_save_context(struct sigcontext *sc);
1228extern asmlinkage int fpu_emulator_restore_context(struct sigcontext *sc);
1229
Ralf Baechle41c594a2006-04-05 09:45:45 +01001230#ifdef CONFIG_SMP
1231static int smp_save_fp_context(struct sigcontext *sc)
1232{
1233 return cpu_has_fpu
1234 ? _save_fp_context(sc)
1235 : fpu_emulator_save_context(sc);
1236}
1237
1238static int smp_restore_fp_context(struct sigcontext *sc)
1239{
1240 return cpu_has_fpu
1241 ? _restore_fp_context(sc)
1242 : fpu_emulator_restore_context(sc);
1243}
1244#endif
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246static inline void signal_init(void)
1247{
Ralf Baechle41c594a2006-04-05 09:45:45 +01001248#ifdef CONFIG_SMP
1249 /* For now just do the cpu_has_fpu check when the functions are invoked */
1250 save_fp_context = smp_save_fp_context;
1251 restore_fp_context = smp_restore_fp_context;
1252#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (cpu_has_fpu) {
1254 save_fp_context = _save_fp_context;
1255 restore_fp_context = _restore_fp_context;
1256 } else {
1257 save_fp_context = fpu_emulator_save_context;
1258 restore_fp_context = fpu_emulator_restore_context;
1259 }
Ralf Baechle41c594a2006-04-05 09:45:45 +01001260#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
1263#ifdef CONFIG_MIPS32_COMPAT
1264
1265/*
1266 * This is used by 32-bit signal stuff on the 64-bit kernel
1267 */
1268asmlinkage int (*save_fp_context32)(struct sigcontext32 *sc);
1269asmlinkage int (*restore_fp_context32)(struct sigcontext32 *sc);
1270
1271extern asmlinkage int _save_fp_context32(struct sigcontext32 *sc);
1272extern asmlinkage int _restore_fp_context32(struct sigcontext32 *sc);
1273
1274extern asmlinkage int fpu_emulator_save_context32(struct sigcontext32 *sc);
1275extern asmlinkage int fpu_emulator_restore_context32(struct sigcontext32 *sc);
1276
1277static inline void signal32_init(void)
1278{
1279 if (cpu_has_fpu) {
1280 save_fp_context32 = _save_fp_context32;
1281 restore_fp_context32 = _restore_fp_context32;
1282 } else {
1283 save_fp_context32 = fpu_emulator_save_context32;
1284 restore_fp_context32 = fpu_emulator_restore_context32;
1285 }
1286}
1287#endif
1288
1289extern void cpu_cache_init(void);
1290extern void tlb_init(void);
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00001291extern void flush_tlb_handlers(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293void __init per_cpu_trap_init(void)
1294{
1295 unsigned int cpu = smp_processor_id();
1296 unsigned int status_set = ST0_CU0;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001297#ifdef CONFIG_MIPS_MT_SMTC
1298 int secondaryTC = 0;
1299 int bootTC = (cpu == 0);
1300
1301 /*
1302 * Only do per_cpu_trap_init() for first TC of Each VPE.
1303 * Note that this hack assumes that the SMTC init code
1304 * assigns TCs consecutively and in ascending order.
1305 */
1306
1307 if (((read_c0_tcbind() & TCBIND_CURTC) != 0) &&
1308 ((read_c0_tcbind() & TCBIND_CURVPE) == cpu_data[cpu - 1].vpe_id))
1309 secondaryTC = 1;
1310#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 /*
1313 * Disable coprocessors and select 32-bit or 64-bit addressing
1314 * and the 16/32 or 32/32 FPR register model. Reset the BEV
1315 * flag that some firmware may have left set and the TS bit (for
1316 * IP27). Set XX for ISA IV code to work.
1317 */
Ralf Baechle875d43e2005-09-03 15:56:16 -07001318#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX;
1320#endif
1321 if (current_cpu_data.isa_level == MIPS_CPU_ISA_IV)
1322 status_set |= ST0_XX;
Ralf Baechleb38c7392006-02-07 01:20:43 +00001323 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 -07001324 status_set);
1325
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +00001326 if (cpu_has_dsp)
1327 set_c0_status(ST0_MX);
1328
Ralf Baechlee01402b2005-07-14 15:57:16 +00001329#ifdef CONFIG_CPU_MIPSR2
1330 write_c0_hwrena (0x0000000f); /* Allow rdhwr to all registers */
1331#endif
1332
Ralf Baechle41c594a2006-04-05 09:45:45 +01001333#ifdef CONFIG_MIPS_MT_SMTC
1334 if (!secondaryTC) {
1335#endif /* CONFIG_MIPS_MT_SMTC */
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 /*
Ralf Baechlee01402b2005-07-14 15:57:16 +00001338 * Interrupt handling.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001340 if (cpu_has_veic || cpu_has_vint) {
1341 write_c0_ebase (ebase);
1342 /* Setting vector spacing enables EI/VI mode */
1343 change_c0_intctl (0x3e0, VECTORSPACING);
1344 }
Ralf Baechled03d0a52005-08-17 13:44:26 +00001345 if (cpu_has_divec) {
1346 if (cpu_has_mipsmt) {
1347 unsigned int vpflags = dvpe();
1348 set_c0_cause(CAUSEF_IV);
1349 evpe(vpflags);
1350 } else
1351 set_c0_cause(CAUSEF_IV);
1352 }
Ralf Baechle41c594a2006-04-05 09:45:45 +01001353#ifdef CONFIG_MIPS_MT_SMTC
1354 }
1355#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 cpu_data[cpu].asid_cache = ASID_FIRST_VERSION;
1358 TLBMISS_HANDLER_SETUP();
1359
1360 atomic_inc(&init_mm.mm_count);
1361 current->active_mm = &init_mm;
1362 BUG_ON(current->mm);
1363 enter_lazy_tlb(&init_mm, current);
1364
Ralf Baechle41c594a2006-04-05 09:45:45 +01001365#ifdef CONFIG_MIPS_MT_SMTC
1366 if (bootTC) {
1367#endif /* CONFIG_MIPS_MT_SMTC */
1368 cpu_cache_init();
1369 tlb_init();
1370#ifdef CONFIG_MIPS_MT_SMTC
1371 }
1372#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373}
1374
Ralf Baechlee01402b2005-07-14 15:57:16 +00001375/* Install CPU exception handler */
1376void __init set_handler (unsigned long offset, void *addr, unsigned long size)
1377{
1378 memcpy((void *)(ebase + offset), addr, size);
1379 flush_icache_range(ebase + offset, ebase + offset + size);
1380}
1381
1382/* Install uncached CPU exception handler */
1383void __init set_uncached_handler (unsigned long offset, void *addr, unsigned long size)
1384{
1385#ifdef CONFIG_32BIT
1386 unsigned long uncached_ebase = KSEG1ADDR(ebase);
1387#endif
1388#ifdef CONFIG_64BIT
1389 unsigned long uncached_ebase = TO_UNCAC(ebase);
1390#endif
1391
1392 memcpy((void *)(uncached_ebase + offset), addr, size);
1393}
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395void __init trap_init(void)
1396{
1397 extern char except_vec3_generic, except_vec3_r4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 extern char except_vec4;
1399 unsigned long i;
1400
Ralf Baechlee01402b2005-07-14 15:57:16 +00001401 if (cpu_has_veic || cpu_has_vint)
1402 ebase = (unsigned long) alloc_bootmem_low_pages (0x200 + VECTORSPACING*64);
1403 else
1404 ebase = CAC_BASE;
1405
Ralf Baechlee01402b2005-07-14 15:57:16 +00001406 mips_srs_init();
Ralf Baechlee01402b2005-07-14 15:57:16 +00001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 per_cpu_trap_init();
1409
1410 /*
1411 * Copy the generic exception handlers to their final destination.
1412 * This will be overriden later as suitable for a particular
1413 * configuration.
1414 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001415 set_handler(0x180, &except_vec3_generic, 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 /*
1418 * Setup default vectors
1419 */
1420 for (i = 0; i <= 31; i++)
1421 set_except_vector(i, handle_reserved);
1422
1423 /*
1424 * Copy the EJTAG debug exception vector handler code to it's final
1425 * destination.
1426 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001427 if (cpu_has_ejtag && board_ejtag_handler_setup)
1428 board_ejtag_handler_setup ();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 /*
1431 * Only some CPUs have the watch exceptions.
1432 */
1433 if (cpu_has_watch)
1434 set_except_vector(23, handle_watch);
1435
1436 /*
Ralf Baechlee01402b2005-07-14 15:57:16 +00001437 * Initialise interrupt handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001439 if (cpu_has_veic || cpu_has_vint) {
1440 int nvec = cpu_has_veic ? 64 : 8;
1441 for (i = 0; i < nvec; i++)
Ralf Baechleff3eab22006-03-29 14:12:58 +01001442 set_vi_handler(i, NULL);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001443 }
1444 else if (cpu_has_divec)
1445 set_handler(0x200, &except_vec4, 0x8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 /*
1448 * Some CPUs can enable/disable for cache parity detection, but does
1449 * it different ways.
1450 */
1451 parity_protection_init();
1452
1453 /*
1454 * The Data Bus Errors / Instruction Bus Errors are signaled
1455 * by external hardware. Therefore these two exceptions
1456 * may have board specific handlers.
1457 */
1458 if (board_be_init)
1459 board_be_init();
1460
Ralf Baechlee4ac58a2006-04-03 17:56:36 +01001461 set_except_vector(0, handle_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 set_except_vector(1, handle_tlbm);
1463 set_except_vector(2, handle_tlbl);
1464 set_except_vector(3, handle_tlbs);
1465
1466 set_except_vector(4, handle_adel);
1467 set_except_vector(5, handle_ades);
1468
1469 set_except_vector(6, handle_ibe);
1470 set_except_vector(7, handle_dbe);
1471
1472 set_except_vector(8, handle_sys);
1473 set_except_vector(9, handle_bp);
1474 set_except_vector(10, handle_ri);
1475 set_except_vector(11, handle_cpu);
1476 set_except_vector(12, handle_ov);
1477 set_except_vector(13, handle_tr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 if (current_cpu_data.cputype == CPU_R6000 ||
1480 current_cpu_data.cputype == CPU_R6000A) {
1481 /*
1482 * The R6000 is the only R-series CPU that features a machine
1483 * check exception (similar to the R4000 cache error) and
1484 * unaligned ldc1/sdc1 exception. The handlers have not been
1485 * written yet. Well, anyway there is no R6000 machine on the
1486 * current list of targets for Linux/MIPS.
1487 * (Duh, crap, there is someone with a triple R6k machine)
1488 */
1489 //set_except_vector(14, handle_mc);
1490 //set_except_vector(15, handle_ndc);
1491 }
1492
Ralf Baechlee01402b2005-07-14 15:57:16 +00001493
1494 if (board_nmi_handler_setup)
1495 board_nmi_handler_setup();
1496
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +00001497 if (cpu_has_fpu && !cpu_has_nofpuex)
1498 set_except_vector(15, handle_fpe);
1499
1500 set_except_vector(22, handle_mdmx);
1501
1502 if (cpu_has_mcheck)
1503 set_except_vector(24, handle_mcheck);
1504
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001505 if (cpu_has_mipsmt)
1506 set_except_vector(25, handle_mt);
1507
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +00001508 if (cpu_has_dsp)
1509 set_except_vector(26, handle_dsp);
1510
1511 if (cpu_has_vce)
1512 /* Special exception: R4[04]00 uses also the divec space. */
1513 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_r4000, 0x100);
1514 else if (cpu_has_4kex)
1515 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_generic, 0x80);
1516 else
1517 memcpy((void *)(CAC_BASE + 0x080), &except_vec3_generic, 0x80);
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 signal_init();
1520#ifdef CONFIG_MIPS32_COMPAT
1521 signal32_init();
1522#endif
1523
Ralf Baechlee01402b2005-07-14 15:57:16 +00001524 flush_icache_range(ebase, ebase + 0x400);
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00001525 flush_tlb_handlers();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526}