]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/mips/kernel/traps.c
[MIPS] FP affinity: Coding style cleanups
[net-next-2.6.git] / arch / mips / kernel / traps.c
CommitLineData
1da177e4
LT
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
36ccf1c0 6 * Copyright (C) 1994 - 1999, 2000, 01, 06 Ralf Baechle
1da177e4
LT
7 * 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.
3b2396d9 12 * Copyright (C) 2002, 2003, 2004, 2005 Maciej W. Rozycki
1da177e4 13 */
8e8a52ed 14#include <linux/bug.h>
1da177e4
LT
15#include <linux/init.h>
16#include <linux/mm.h>
17#include <linux/module.h>
18#include <linux/sched.h>
19#include <linux/smp.h>
1da177e4
LT
20#include <linux/spinlock.h>
21#include <linux/kallsyms.h>
e01402b1 22#include <linux/bootmem.h>
d4fd1989 23#include <linux/interrupt.h>
1da177e4
LT
24
25#include <asm/bootinfo.h>
26#include <asm/branch.h>
27#include <asm/break.h>
28#include <asm/cpu.h>
e50c0a8f 29#include <asm/dsp.h>
1da177e4 30#include <asm/fpu.h>
340ee4b9
RB
31#include <asm/mipsregs.h>
32#include <asm/mipsmtregs.h>
1da177e4
LT
33#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>
1da177e4 42#include <asm/types.h>
1df0f0ff 43#include <asm/stacktrace.h>
1da177e4 44
e4ac58af 45extern asmlinkage void handle_int(void);
1da177e4
LT
46extern 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);
5b10496b
AN
56extern asmlinkage void handle_ri_rdhwr_vivt(void);
57extern asmlinkage void handle_ri_rdhwr(void);
1da177e4
LT
58extern asmlinkage void handle_cpu(void);
59extern asmlinkage void handle_ov(void);
60extern asmlinkage void handle_tr(void);
61extern asmlinkage void handle_fpe(void);
62extern asmlinkage void handle_mdmx(void);
63extern asmlinkage void handle_watch(void);
340ee4b9 64extern asmlinkage void handle_mt(void);
e50c0a8f 65extern asmlinkage void handle_dsp(void);
1da177e4
LT
66extern asmlinkage void handle_mcheck(void);
67extern asmlinkage void handle_reserved(void);
68
12616ed2 69extern int fpu_emulator_cop1Handler(struct pt_regs *xcp,
e04582b7 70 struct mips_fpu_struct *ctx, int has_fpu);
1da177e4
LT
71
72void (*board_be_init)(void);
73int (*board_be_handler)(struct pt_regs *regs, int is_fixup);
e01402b1
RB
74void (*board_nmi_handler_setup)(void);
75void (*board_ejtag_handler_setup)(void);
76void (*board_bind_eic_interrupt)(int irq, int regset);
1da177e4 77
1da177e4 78
4d157d5e 79static void show_raw_backtrace(unsigned long reg29)
e889d78f 80{
4d157d5e 81 unsigned long *sp = (unsigned long *)reg29;
e889d78f
AN
82 unsigned long addr;
83
84 printk("Call Trace:");
85#ifdef CONFIG_KALLSYMS
86 printk("\n");
87#endif
87151ae3
FBH
88 while (!kstack_end(sp)) {
89 addr = *sp++;
90 if (__kernel_text_address(addr))
91 print_ip_sym(addr);
e889d78f
AN
92 }
93 printk("\n");
94}
95
f66686f7 96#ifdef CONFIG_KALLSYMS
1df0f0ff 97int raw_show_trace;
f66686f7
AN
98static int __init set_raw_show_trace(char *str)
99{
100 raw_show_trace = 1;
101 return 1;
102}
103__setup("raw_show_trace", set_raw_show_trace);
1df0f0ff 104#endif
4d157d5e 105
87151ae3 106static void show_backtrace(struct task_struct *task, struct pt_regs *regs)
f66686f7 107{
4d157d5e
FBH
108 unsigned long sp = regs->regs[29];
109 unsigned long ra = regs->regs[31];
f66686f7 110 unsigned long pc = regs->cp0_epc;
f66686f7
AN
111
112 if (raw_show_trace || !__kernel_text_address(pc)) {
87151ae3 113 show_raw_backtrace(sp);
f66686f7
AN
114 return;
115 }
116 printk("Call Trace:\n");
4d157d5e 117 do {
87151ae3 118 print_ip_sym(pc);
1924600c 119 pc = unwind_stack(task, &sp, pc, &ra);
4d157d5e 120 } while (pc);
f66686f7
AN
121 printk("\n");
122}
f66686f7 123
1da177e4
LT
124/*
125 * This routine abuses get_user()/put_user() to reference pointers
126 * with at least a bit of error checking ...
127 */
f66686f7 128static void show_stacktrace(struct task_struct *task, struct pt_regs *regs)
1da177e4
LT
129{
130 const int field = 2 * sizeof(unsigned long);
131 long stackdata;
132 int i;
f66686f7 133 unsigned long *sp = (unsigned long *)regs->regs[29];
1da177e4
LT
134
135 printk("Stack :");
136 i = 0;
137 while ((unsigned long) sp & (PAGE_SIZE - 1)) {
138 if (i && ((i % (64 / field)) == 0))
139 printk("\n ");
140 if (i > 39) {
141 printk(" ...");
142 break;
143 }
144
145 if (__get_user(stackdata, sp++)) {
146 printk(" (Bad stack address)");
147 break;
148 }
149
150 printk(" %0*lx", field, stackdata);
151 i++;
152 }
153 printk("\n");
87151ae3 154 show_backtrace(task, regs);
f66686f7
AN
155}
156
f66686f7
AN
157void show_stack(struct task_struct *task, unsigned long *sp)
158{
159 struct pt_regs regs;
160 if (sp) {
161 regs.regs[29] = (unsigned long)sp;
162 regs.regs[31] = 0;
163 regs.cp0_epc = 0;
164 } else {
165 if (task && task != current) {
166 regs.regs[29] = task->thread.reg29;
167 regs.regs[31] = 0;
168 regs.cp0_epc = task->thread.reg31;
169 } else {
170 prepare_frametrace(&regs);
171 }
172 }
173 show_stacktrace(task, &regs);
1da177e4
LT
174}
175
176/*
177 * The architecture-independent dump_stack generator
178 */
179void dump_stack(void)
180{
1666a6fc 181 struct pt_regs regs;
1da177e4 182
1666a6fc
FBH
183 prepare_frametrace(&regs);
184 show_backtrace(current, &regs);
1da177e4
LT
185}
186
187EXPORT_SYMBOL(dump_stack);
188
189void show_code(unsigned int *pc)
190{
191 long i;
192
193 printk("\nCode:");
194
195 for(i = -3 ; i < 6 ; i++) {
196 unsigned int insn;
197 if (__get_user(insn, pc + i)) {
198 printk(" (Bad address in epc)\n");
199 break;
200 }
201 printk("%c%08x%c", (i?' ':'<'), insn, (i?' ':'>'));
202 }
203}
204
205void show_regs(struct pt_regs *regs)
206{
207 const int field = 2 * sizeof(unsigned long);
208 unsigned int cause = regs->cp0_cause;
209 int i;
210
211 printk("Cpu %d\n", smp_processor_id());
212
213 /*
214 * Saved main processor registers
215 */
216 for (i = 0; i < 32; ) {
217 if ((i % 4) == 0)
218 printk("$%2d :", i);
219 if (i == 0)
220 printk(" %0*lx", field, 0UL);
221 else if (i == 26 || i == 27)
222 printk(" %*s", field, "");
223 else
224 printk(" %0*lx", field, regs->regs[i]);
225
226 i++;
227 if ((i % 4) == 0)
228 printk("\n");
229 }
230
9693a853
FBH
231#ifdef CONFIG_CPU_HAS_SMARTMIPS
232 printk("Acx : %0*lx\n", field, regs->acx);
233#endif
1da177e4
LT
234 printk("Hi : %0*lx\n", field, regs->hi);
235 printk("Lo : %0*lx\n", field, regs->lo);
236
237 /*
238 * Saved cp0 registers
239 */
240 printk("epc : %0*lx ", field, regs->cp0_epc);
241 print_symbol("%s ", regs->cp0_epc);
242 printk(" %s\n", print_tainted());
243 printk("ra : %0*lx ", field, regs->regs[31]);
244 print_symbol("%s\n", regs->regs[31]);
245
246 printk("Status: %08x ", (uint32_t) regs->cp0_status);
247
3b2396d9
MR
248 if (current_cpu_data.isa_level == MIPS_CPU_ISA_I) {
249 if (regs->cp0_status & ST0_KUO)
250 printk("KUo ");
251 if (regs->cp0_status & ST0_IEO)
252 printk("IEo ");
253 if (regs->cp0_status & ST0_KUP)
254 printk("KUp ");
255 if (regs->cp0_status & ST0_IEP)
256 printk("IEp ");
257 if (regs->cp0_status & ST0_KUC)
258 printk("KUc ");
259 if (regs->cp0_status & ST0_IEC)
260 printk("IEc ");
261 } else {
262 if (regs->cp0_status & ST0_KX)
263 printk("KX ");
264 if (regs->cp0_status & ST0_SX)
265 printk("SX ");
266 if (regs->cp0_status & ST0_UX)
267 printk("UX ");
268 switch (regs->cp0_status & ST0_KSU) {
269 case KSU_USER:
270 printk("USER ");
271 break;
272 case KSU_SUPERVISOR:
273 printk("SUPERVISOR ");
274 break;
275 case KSU_KERNEL:
276 printk("KERNEL ");
277 break;
278 default:
279 printk("BAD_MODE ");
280 break;
281 }
282 if (regs->cp0_status & ST0_ERL)
283 printk("ERL ");
284 if (regs->cp0_status & ST0_EXL)
285 printk("EXL ");
286 if (regs->cp0_status & ST0_IE)
287 printk("IE ");
1da177e4 288 }
1da177e4
LT
289 printk("\n");
290
291 printk("Cause : %08x\n", cause);
292
293 cause = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE;
294 if (1 <= cause && cause <= 5)
295 printk("BadVA : %0*lx\n", field, regs->cp0_badvaddr);
296
297 printk("PrId : %08x\n", read_c0_prid());
298}
299
300void show_registers(struct pt_regs *regs)
301{
302 show_regs(regs);
303 print_modules();
304 printk("Process %s (pid: %d, threadinfo=%p, task=%p)\n",
305 current->comm, current->pid, current_thread_info(), current);
f66686f7 306 show_stacktrace(current, regs);
1da177e4
LT
307 show_code((unsigned int *) regs->cp0_epc);
308 printk("\n");
309}
310
311static DEFINE_SPINLOCK(die_lock);
312
b3f6df9f 313void __noreturn die(const char * str, struct pt_regs * regs)
1da177e4
LT
314{
315 static int die_counter;
41c594ab
RB
316#ifdef CONFIG_MIPS_MT_SMTC
317 unsigned long dvpret = dvpe();
318#endif /* CONFIG_MIPS_MT_SMTC */
1da177e4
LT
319
320 console_verbose();
321 spin_lock_irq(&die_lock);
41c594ab
RB
322 bust_spinlocks(1);
323#ifdef CONFIG_MIPS_MT_SMTC
324 mips_mt_regdump(dvpret);
325#endif /* CONFIG_MIPS_MT_SMTC */
178086c8 326 printk("%s[#%d]:\n", str, ++die_counter);
1da177e4
LT
327 show_registers(regs);
328 spin_unlock_irq(&die_lock);
d4fd1989
MB
329
330 if (in_interrupt())
331 panic("Fatal exception in interrupt");
332
333 if (panic_on_oops) {
334 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
335 ssleep(5);
336 panic("Fatal exception");
337 }
338
1da177e4
LT
339 do_exit(SIGSEGV);
340}
341
1da177e4
LT
342extern const struct exception_table_entry __start___dbe_table[];
343extern const struct exception_table_entry __stop___dbe_table[];
344
b6dcec9b
RB
345__asm__(
346" .section __dbe_table, \"a\"\n"
347" .previous \n");
1da177e4
LT
348
349/* Given an address, look for it in the exception tables. */
350static const struct exception_table_entry *search_dbe_tables(unsigned long addr)
351{
352 const struct exception_table_entry *e;
353
354 e = search_extable(__start___dbe_table, __stop___dbe_table - 1, addr);
355 if (!e)
356 e = search_module_dbetables(addr);
357 return e;
358}
359
360asmlinkage void do_be(struct pt_regs *regs)
361{
362 const int field = 2 * sizeof(unsigned long);
363 const struct exception_table_entry *fixup = NULL;
364 int data = regs->cp0_cause & 4;
365 int action = MIPS_BE_FATAL;
366
367 /* XXX For now. Fixme, this searches the wrong table ... */
368 if (data && !user_mode(regs))
369 fixup = search_dbe_tables(exception_epc(regs));
370
371 if (fixup)
372 action = MIPS_BE_FIXUP;
373
374 if (board_be_handler)
375 action = board_be_handler(regs, fixup != 0);
376
377 switch (action) {
378 case MIPS_BE_DISCARD:
379 return;
380 case MIPS_BE_FIXUP:
381 if (fixup) {
382 regs->cp0_epc = fixup->nextinsn;
383 return;
384 }
385 break;
386 default:
387 break;
388 }
389
390 /*
391 * Assume it would be too dangerous to continue ...
392 */
393 printk(KERN_ALERT "%s bus error, epc == %0*lx, ra == %0*lx\n",
394 data ? "Data" : "Instruction",
395 field, regs->cp0_epc, field, regs->regs[31]);
396 die_if_kernel("Oops", regs);
397 force_sig(SIGBUS, current);
398}
399
1da177e4
LT
400/*
401 * ll/sc emulation
402 */
403
404#define OPCODE 0xfc000000
405#define BASE 0x03e00000
406#define RT 0x001f0000
407#define OFFSET 0x0000ffff
408#define LL 0xc0000000
409#define SC 0xe0000000
3c37026d
RB
410#define SPEC3 0x7c000000
411#define RD 0x0000f800
412#define FUNC 0x0000003f
413#define RDHWR 0x0000003b
1da177e4
LT
414
415/*
416 * The ll_bit is cleared by r*_switch.S
417 */
418
419unsigned long ll_bit;
420
421static struct task_struct *ll_task = NULL;
422
423static inline void simulate_ll(struct pt_regs *regs, unsigned int opcode)
424{
fe00f943 425 unsigned long value, __user *vaddr;
1da177e4
LT
426 long offset;
427 int signal = 0;
428
429 /*
430 * analyse the ll instruction that just caused a ri exception
431 * and put the referenced address to addr.
432 */
433
434 /* sign extend offset */
435 offset = opcode & OFFSET;
436 offset <<= 16;
437 offset >>= 16;
438
fe00f943
RB
439 vaddr = (unsigned long __user *)
440 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
1da177e4
LT
441
442 if ((unsigned long)vaddr & 3) {
443 signal = SIGBUS;
444 goto sig;
445 }
446 if (get_user(value, vaddr)) {
447 signal = SIGSEGV;
448 goto sig;
449 }
450
451 preempt_disable();
452
453 if (ll_task == NULL || ll_task == current) {
454 ll_bit = 1;
455 } else {
456 ll_bit = 0;
457 }
458 ll_task = current;
459
460 preempt_enable();
461
6dd04688
RB
462 compute_return_epc(regs);
463
1da177e4
LT
464 regs->regs[(opcode & RT) >> 16] = value;
465
1da177e4
LT
466 return;
467
468sig:
469 force_sig(signal, current);
470}
471
472static inline void simulate_sc(struct pt_regs *regs, unsigned int opcode)
473{
fe00f943
RB
474 unsigned long __user *vaddr;
475 unsigned long reg;
1da177e4
LT
476 long offset;
477 int signal = 0;
478
479 /*
480 * analyse the sc instruction that just caused a ri exception
481 * and put the referenced address to addr.
482 */
483
484 /* sign extend offset */
485 offset = opcode & OFFSET;
486 offset <<= 16;
487 offset >>= 16;
488
fe00f943
RB
489 vaddr = (unsigned long __user *)
490 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
1da177e4
LT
491 reg = (opcode & RT) >> 16;
492
493 if ((unsigned long)vaddr & 3) {
494 signal = SIGBUS;
495 goto sig;
496 }
497
498 preempt_disable();
499
500 if (ll_bit == 0 || ll_task != current) {
05b8042a 501 compute_return_epc(regs);
1da177e4
LT
502 regs->regs[reg] = 0;
503 preempt_enable();
1da177e4
LT
504 return;
505 }
506
507 preempt_enable();
508
509 if (put_user(regs->regs[reg], vaddr)) {
510 signal = SIGSEGV;
511 goto sig;
512 }
513
6dd04688 514 compute_return_epc(regs);
1da177e4
LT
515 regs->regs[reg] = 1;
516
1da177e4
LT
517 return;
518
519sig:
520 force_sig(signal, current);
521}
522
523/*
524 * ll uses the opcode of lwc0 and sc uses the opcode of swc0. That is both
525 * opcodes are supposed to result in coprocessor unusable exceptions if
526 * executed on ll/sc-less processors. That's the theory. In practice a
527 * few processors such as NEC's VR4100 throw reserved instruction exceptions
528 * instead, so we're doing the emulation thing in both exception handlers.
529 */
530static inline int simulate_llsc(struct pt_regs *regs)
531{
532 unsigned int opcode;
533
e5679882
RB
534 if (get_user(opcode, (unsigned int __user *) exception_epc(regs)))
535 goto out_sigsegv;
1da177e4
LT
536
537 if ((opcode & OPCODE) == LL) {
538 simulate_ll(regs, opcode);
539 return 0;
540 }
541 if ((opcode & OPCODE) == SC) {
542 simulate_sc(regs, opcode);
543 return 0;
544 }
545
546 return -EFAULT; /* Strange things going on ... */
e5679882
RB
547
548out_sigsegv:
549 force_sig(SIGSEGV, current);
550 return -EFAULT;
1da177e4
LT
551}
552
3c37026d
RB
553/*
554 * Simulate trapping 'rdhwr' instructions to provide user accessible
555 * registers not implemented in hardware. The only current use of this
556 * is the thread area pointer.
557 */
558static inline int simulate_rdhwr(struct pt_regs *regs)
559{
dc8f6029 560 struct thread_info *ti = task_thread_info(current);
3c37026d
RB
561 unsigned int opcode;
562
e5679882
RB
563 if (get_user(opcode, (unsigned int __user *) exception_epc(regs)))
564 goto out_sigsegv;
3c37026d
RB
565
566 if (unlikely(compute_return_epc(regs)))
567 return -EFAULT;
568
569 if ((opcode & OPCODE) == SPEC3 && (opcode & FUNC) == RDHWR) {
570 int rd = (opcode & RD) >> 11;
571 int rt = (opcode & RT) >> 16;
572 switch (rd) {
573 case 29:
574 regs->regs[rt] = ti->tp_value;
56ebd51b 575 return 0;
3c37026d
RB
576 default:
577 return -EFAULT;
578 }
579 }
580
56ebd51b
DJ
581 /* Not ours. */
582 return -EFAULT;
e5679882
RB
583
584out_sigsegv:
585 force_sig(SIGSEGV, current);
586 return -EFAULT;
3c37026d
RB
587}
588
1da177e4
LT
589asmlinkage void do_ov(struct pt_regs *regs)
590{
591 siginfo_t info;
592
36ccf1c0
RB
593 die_if_kernel("Integer overflow", regs);
594
1da177e4
LT
595 info.si_code = FPE_INTOVF;
596 info.si_signo = SIGFPE;
597 info.si_errno = 0;
fe00f943 598 info.si_addr = (void __user *) regs->cp0_epc;
1da177e4
LT
599 force_sig_info(SIGFPE, &info, current);
600}
601
602/*
603 * XXX Delayed fp exceptions when doing a lazy ctx switch XXX
604 */
605asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31)
606{
57725f9e
CD
607 die_if_kernel("FP exception in kernel code", regs);
608
1da177e4
LT
609 if (fcr31 & FPU_CSR_UNI_X) {
610 int sig;
611
1da177e4 612 /*
a3dddd56 613 * Unimplemented operation exception. If we've got the full
1da177e4
LT
614 * software emulator on-board, let's use it...
615 *
616 * Force FPU to dump state into task/thread context. We're
617 * moving a lot of data here for what is probably a single
618 * instruction, but the alternative is to pre-decode the FP
619 * register operands before invoking the emulator, which seems
620 * a bit extreme for what should be an infrequent event.
621 */
cd21dfcf 622 /* Ensure 'resume' not overwrite saved fp context again. */
53dc8028 623 lose_fpu(1);
1da177e4
LT
624
625 /* Run the emulator */
e04582b7 626 sig = fpu_emulator_cop1Handler (regs, &current->thread.fpu, 1);
1da177e4
LT
627
628 /*
629 * We can't allow the emulated instruction to leave any of
630 * the cause bit set in $fcr31.
631 */
eae89076 632 current->thread.fpu.fcr31 &= ~FPU_CSR_ALL_X;
1da177e4
LT
633
634 /* Restore the hardware register state */
53dc8028 635 own_fpu(1); /* Using the FPU again. */
1da177e4
LT
636
637 /* If something went wrong, signal */
638 if (sig)
639 force_sig(sig, current);
640
641 return;
642 }
643
644 force_sig(SIGFPE, current);
645}
646
647asmlinkage void do_bp(struct pt_regs *regs)
648{
649 unsigned int opcode, bcode;
650 siginfo_t info;
651
ba755f8e 652 if (__get_user(opcode, (unsigned int __user *) exception_epc(regs)))
e5679882 653 goto out_sigsegv;
1da177e4
LT
654
655 /*
656 * There is the ancient bug in the MIPS assemblers that the break
657 * code starts left to bit 16 instead to bit 6 in the opcode.
658 * Gas is bug-compatible, but not always, grrr...
659 * We handle both cases with a simple heuristics. --macro
660 */
661 bcode = ((opcode >> 6) & ((1 << 20) - 1));
662 if (bcode < (1 << 10))
663 bcode <<= 10;
664
665 /*
666 * (A short test says that IRIX 5.3 sends SIGTRAP for all break
667 * insns, even for break codes that indicate arithmetic failures.
668 * Weird ...)
669 * But should we continue the brokenness??? --macro
670 */
671 switch (bcode) {
672 case BRK_OVERFLOW << 10:
673 case BRK_DIVZERO << 10:
63dc68a8 674 die_if_kernel("Break instruction in kernel code", regs);
1da177e4
LT
675 if (bcode == (BRK_DIVZERO << 10))
676 info.si_code = FPE_INTDIV;
677 else
678 info.si_code = FPE_INTOVF;
679 info.si_signo = SIGFPE;
680 info.si_errno = 0;
fe00f943 681 info.si_addr = (void __user *) regs->cp0_epc;
1da177e4
LT
682 force_sig_info(SIGFPE, &info, current);
683 break;
63dc68a8
RB
684 case BRK_BUG:
685 die("Kernel bug detected", regs);
686 break;
1da177e4 687 default:
63dc68a8 688 die_if_kernel("Break instruction in kernel code", regs);
1da177e4
LT
689 force_sig(SIGTRAP, current);
690 }
90fccb13 691 return;
e5679882
RB
692
693out_sigsegv:
694 force_sig(SIGSEGV, current);
1da177e4
LT
695}
696
697asmlinkage void do_tr(struct pt_regs *regs)
698{
699 unsigned int opcode, tcode = 0;
700 siginfo_t info;
701
ba755f8e 702 if (__get_user(opcode, (unsigned int __user *) exception_epc(regs)))
e5679882 703 goto out_sigsegv;
1da177e4
LT
704
705 /* Immediate versions don't provide a code. */
706 if (!(opcode & OPCODE))
707 tcode = ((opcode >> 6) & ((1 << 10) - 1));
708
709 /*
710 * (A short test says that IRIX 5.3 sends SIGTRAP for all trap
711 * insns, even for trap codes that indicate arithmetic failures.
712 * Weird ...)
713 * But should we continue the brokenness??? --macro
714 */
715 switch (tcode) {
716 case BRK_OVERFLOW:
717 case BRK_DIVZERO:
63dc68a8 718 die_if_kernel("Trap instruction in kernel code", regs);
1da177e4
LT
719 if (tcode == BRK_DIVZERO)
720 info.si_code = FPE_INTDIV;
721 else
722 info.si_code = FPE_INTOVF;
723 info.si_signo = SIGFPE;
724 info.si_errno = 0;
fe00f943 725 info.si_addr = (void __user *) regs->cp0_epc;
1da177e4
LT
726 force_sig_info(SIGFPE, &info, current);
727 break;
63dc68a8
RB
728 case BRK_BUG:
729 die("Kernel bug detected", regs);
730 break;
1da177e4 731 default:
63dc68a8 732 die_if_kernel("Trap instruction in kernel code", regs);
1da177e4
LT
733 force_sig(SIGTRAP, current);
734 }
90fccb13 735 return;
e5679882
RB
736
737out_sigsegv:
738 force_sig(SIGSEGV, current);
1da177e4
LT
739}
740
741asmlinkage void do_ri(struct pt_regs *regs)
742{
743 die_if_kernel("Reserved instruction in kernel code", regs);
744
745 if (!cpu_has_llsc)
746 if (!simulate_llsc(regs))
747 return;
748
3c37026d
RB
749 if (!simulate_rdhwr(regs))
750 return;
751
1da177e4
LT
752 force_sig(SIGILL, current);
753}
754
d223a861
RB
755/*
756 * MIPS MT processors may have fewer FPU contexts than CPU threads. If we've
757 * emulated more than some threshold number of instructions, force migration to
758 * a "CPU" that has FP support.
759 */
760static void mt_ase_fp_affinity(void)
761{
762#ifdef CONFIG_MIPS_MT_FPAFF
763 if (mt_fpemul_threshold > 0 &&
764 ((current->thread.emulated_fp++ > mt_fpemul_threshold))) {
765 /*
766 * If there's no FPU present, or if the application has already
767 * restricted the allowed set to exclude any CPUs with FPUs,
768 * we'll skip the procedure.
769 */
770 if (cpus_intersects(current->cpus_allowed, mt_fpu_cpumask)) {
771 cpumask_t tmask;
772
773 cpus_and(tmask, current->thread.user_cpus_allowed,
774 mt_fpu_cpumask);
775 set_cpus_allowed(current, tmask);
776 current->thread.mflags |= MF_FPUBOUND;
777 }
778 }
779#endif /* CONFIG_MIPS_MT_FPAFF */
780}
781
1da177e4
LT
782asmlinkage void do_cpu(struct pt_regs *regs)
783{
784 unsigned int cpid;
785
5323180d
AN
786 die_if_kernel("do_cpu invoked from kernel context!", regs);
787
1da177e4
LT
788 cpid = (regs->cp0_cause >> CAUSEB_CE) & 3;
789
790 switch (cpid) {
791 case 0:
3c37026d
RB
792 if (!cpu_has_llsc)
793 if (!simulate_llsc(regs))
794 return;
1da177e4 795
3c37026d 796 if (!simulate_rdhwr(regs))
1da177e4 797 return;
3c37026d 798
1da177e4
LT
799 break;
800
801 case 1:
53dc8028
AN
802 if (used_math()) /* Using the FPU again. */
803 own_fpu(1);
804 else { /* First time FPU user. */
1da177e4
LT
805 init_fpu();
806 set_used_math();
807 }
808
5323180d 809 if (!raw_cpu_has_fpu) {
e04582b7 810 int sig;
e04582b7
AN
811 sig = fpu_emulator_cop1Handler(regs,
812 &current->thread.fpu, 0);
1da177e4
LT
813 if (sig)
814 force_sig(sig, current);
d223a861
RB
815 else
816 mt_ase_fp_affinity();
1da177e4
LT
817 }
818
1da177e4
LT
819 return;
820
821 case 2:
822 case 3:
823 break;
824 }
825
826 force_sig(SIGILL, current);
827}
828
829asmlinkage void do_mdmx(struct pt_regs *regs)
830{
831 force_sig(SIGILL, current);
832}
833
834asmlinkage void do_watch(struct pt_regs *regs)
835{
836 /*
837 * We use the watch exception where available to detect stack
838 * overflows.
839 */
840 dump_tlb_all();
841 show_regs(regs);
842 panic("Caught WATCH exception - probably caused by stack overflow.");
843}
844
845asmlinkage void do_mcheck(struct pt_regs *regs)
846{
cac4bcbc
RB
847 const int field = 2 * sizeof(unsigned long);
848 int multi_match = regs->cp0_status & ST0_TS;
849
1da177e4 850 show_regs(regs);
cac4bcbc
RB
851
852 if (multi_match) {
853 printk("Index : %0x\n", read_c0_index());
854 printk("Pagemask: %0x\n", read_c0_pagemask());
855 printk("EntryHi : %0*lx\n", field, read_c0_entryhi());
856 printk("EntryLo0: %0*lx\n", field, read_c0_entrylo0());
857 printk("EntryLo1: %0*lx\n", field, read_c0_entrylo1());
858 printk("\n");
859 dump_tlb_all();
860 }
861
862 show_code((unsigned int *) regs->cp0_epc);
863
1da177e4
LT
864 /*
865 * Some chips may have other causes of machine check (e.g. SB1
866 * graduation timer)
867 */
868 panic("Caught Machine Check exception - %scaused by multiple "
869 "matching entries in the TLB.",
cac4bcbc 870 (multi_match) ? "" : "not ");
1da177e4
LT
871}
872
340ee4b9
RB
873asmlinkage void do_mt(struct pt_regs *regs)
874{
41c594ab
RB
875 int subcode;
876
41c594ab
RB
877 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT)
878 >> VPECONTROL_EXCPT_SHIFT;
879 switch (subcode) {
880 case 0:
e35a5e35 881 printk(KERN_DEBUG "Thread Underflow\n");
41c594ab
RB
882 break;
883 case 1:
e35a5e35 884 printk(KERN_DEBUG "Thread Overflow\n");
41c594ab
RB
885 break;
886 case 2:
e35a5e35 887 printk(KERN_DEBUG "Invalid YIELD Qualifier\n");
41c594ab
RB
888 break;
889 case 3:
e35a5e35 890 printk(KERN_DEBUG "Gating Storage Exception\n");
41c594ab
RB
891 break;
892 case 4:
e35a5e35 893 printk(KERN_DEBUG "YIELD Scheduler Exception\n");
41c594ab
RB
894 break;
895 case 5:
e35a5e35 896 printk(KERN_DEBUG "Gating Storage Schedulier Exception\n");
41c594ab
RB
897 break;
898 default:
e35a5e35 899 printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n",
41c594ab
RB
900 subcode);
901 break;
902 }
340ee4b9
RB
903 die_if_kernel("MIPS MT Thread exception in kernel", regs);
904
905 force_sig(SIGILL, current);
906}
907
908
e50c0a8f
RB
909asmlinkage void do_dsp(struct pt_regs *regs)
910{
911 if (cpu_has_dsp)
912 panic("Unexpected DSP exception\n");
913
914 force_sig(SIGILL, current);
915}
916
1da177e4
LT
917asmlinkage void do_reserved(struct pt_regs *regs)
918{
919 /*
920 * Game over - no way to handle this if it ever occurs. Most probably
921 * caused by a new unknown cpu type or after another deadly
922 * hard/software error.
923 */
924 show_regs(regs);
925 panic("Caught reserved exception %ld - should not happen.",
926 (regs->cp0_cause & 0x7f) >> 2);
927}
928
929/*
930 * Some MIPS CPUs can enable/disable for cache parity detection, but do
931 * it different ways.
932 */
933static inline void parity_protection_init(void)
934{
935 switch (current_cpu_data.cputype) {
936 case CPU_24K:
98a41de9 937 case CPU_34K:
1da177e4 938 case CPU_5KC:
14f18b7f
RB
939 write_c0_ecc(0x80000000);
940 back_to_back_c0_hazard();
941 /* Set the PE bit (bit 31) in the c0_errctl register. */
942 printk(KERN_INFO "Cache parity protection %sabled\n",
943 (read_c0_ecc() & 0x80000000) ? "en" : "dis");
1da177e4
LT
944 break;
945 case CPU_20KC:
946 case CPU_25KF:
947 /* Clear the DE bit (bit 16) in the c0_status register. */
948 printk(KERN_INFO "Enable cache parity protection for "
949 "MIPS 20KC/25KF CPUs.\n");
950 clear_c0_status(ST0_DE);
951 break;
952 default:
953 break;
954 }
955}
956
957asmlinkage void cache_parity_error(void)
958{
959 const int field = 2 * sizeof(unsigned long);
960 unsigned int reg_val;
961
962 /* For the moment, report the problem and hang. */
963 printk("Cache error exception:\n");
964 printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
965 reg_val = read_c0_cacheerr();
966 printk("c0_cacheerr == %08x\n", reg_val);
967
968 printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
969 reg_val & (1<<30) ? "secondary" : "primary",
970 reg_val & (1<<31) ? "data" : "insn");
971 printk("Error bits: %s%s%s%s%s%s%s\n",
972 reg_val & (1<<29) ? "ED " : "",
973 reg_val & (1<<28) ? "ET " : "",
974 reg_val & (1<<26) ? "EE " : "",
975 reg_val & (1<<25) ? "EB " : "",
976 reg_val & (1<<24) ? "EI " : "",
977 reg_val & (1<<23) ? "E1 " : "",
978 reg_val & (1<<22) ? "E0 " : "");
979 printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1));
980
ec917c2c 981#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
1da177e4
LT
982 if (reg_val & (1<<22))
983 printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0());
984
985 if (reg_val & (1<<23))
986 printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1());
987#endif
988
989 panic("Can't handle the cache error!");
990}
991
992/*
993 * SDBBP EJTAG debug exception handler.
994 * We skip the instruction and return to the next instruction.
995 */
996void ejtag_exception_handler(struct pt_regs *regs)
997{
998 const int field = 2 * sizeof(unsigned long);
999 unsigned long depc, old_epc;
1000 unsigned int debug;
1001
70ae6126 1002 printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
1da177e4
LT
1003 depc = read_c0_depc();
1004 debug = read_c0_debug();
70ae6126 1005 printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
1da177e4
LT
1006 if (debug & 0x80000000) {
1007 /*
1008 * In branch delay slot.
1009 * We cheat a little bit here and use EPC to calculate the
1010 * debug return address (DEPC). EPC is restored after the
1011 * calculation.
1012 */
1013 old_epc = regs->cp0_epc;
1014 regs->cp0_epc = depc;
1015 __compute_return_epc(regs);
1016 depc = regs->cp0_epc;
1017 regs->cp0_epc = old_epc;
1018 } else
1019 depc += 4;
1020 write_c0_depc(depc);
1021
1022#if 0
70ae6126 1023 printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n");
1da177e4
LT
1024 write_c0_debug(debug | 0x100);
1025#endif
1026}
1027
1028/*
1029 * NMI exception handler.
1030 */
1031void nmi_exception_handler(struct pt_regs *regs)
1032{
41c594ab
RB
1033#ifdef CONFIG_MIPS_MT_SMTC
1034 unsigned long dvpret = dvpe();
1035 bust_spinlocks(1);
1036 printk("NMI taken!!!!\n");
1037 mips_mt_regdump(dvpret);
1038#else
1039 bust_spinlocks(1);
1da177e4 1040 printk("NMI taken!!!!\n");
41c594ab 1041#endif /* CONFIG_MIPS_MT_SMTC */
1da177e4
LT
1042 die("NMI", regs);
1043 while(1) ;
1044}
1045
e01402b1
RB
1046#define VECTORSPACING 0x100 /* for EI/VI mode */
1047
1048unsigned long ebase;
1da177e4 1049unsigned long exception_handlers[32];
e01402b1 1050unsigned long vi_handlers[64];
1da177e4
LT
1051
1052/*
1053 * As a side effect of the way this is implemented we're limited
1054 * to interrupt handlers in the address range from
1055 * KSEG0 <= x < KSEG0 + 256mb on the Nevada. Oh well ...
1056 */
1057void *set_except_vector(int n, void *addr)
1058{
1059 unsigned long handler = (unsigned long) addr;
1060 unsigned long old_handler = exception_handlers[n];
1061
1062 exception_handlers[n] = handler;
1063 if (n == 0 && cpu_has_divec) {
e01402b1 1064 *(volatile u32 *)(ebase + 0x200) = 0x08000000 |
1da177e4 1065 (0x03ffffff & (handler >> 2));
e01402b1
RB
1066 flush_icache_range(ebase + 0x200, ebase + 0x204);
1067 }
1068 return (void *)old_handler;
1069}
1070
f41ae0b2 1071#ifdef CONFIG_CPU_MIPSR2_SRS
e01402b1 1072/*
193dd2ce 1073 * MIPSR2 shadow register set allocation
e01402b1
RB
1074 * FIXME: SMP...
1075 */
1076
193dd2ce
RB
1077static struct shadow_registers {
1078 /*
1079 * Number of shadow register sets supported
1080 */
1081 unsigned long sr_supported;
1082 /*
1083 * Bitmap of allocated shadow registers
1084 */
1085 unsigned long sr_allocated;
e01402b1
RB
1086} shadow_registers;
1087
bb12d612 1088static void mips_srs_init(void)
e01402b1 1089{
e01402b1 1090 shadow_registers.sr_supported = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
3ab0f40f 1091 printk(KERN_INFO "%ld MIPSR2 register sets available\n",
7acb783e 1092 shadow_registers.sr_supported);
e01402b1 1093 shadow_registers.sr_allocated = 1; /* Set 0 used by kernel */
e01402b1
RB
1094}
1095
1096int mips_srs_max(void)
1097{
1098 return shadow_registers.sr_supported;
1099}
1100
ff3eab2a 1101int mips_srs_alloc(void)
e01402b1
RB
1102{
1103 struct shadow_registers *sr = &shadow_registers;
e01402b1
RB
1104 int set;
1105
193dd2ce
RB
1106again:
1107 set = find_first_zero_bit(&sr->sr_allocated, sr->sr_supported);
1108 if (set >= sr->sr_supported)
1109 return -1;
e01402b1 1110
193dd2ce
RB
1111 if (test_and_set_bit(set, &sr->sr_allocated))
1112 goto again;
e01402b1 1113
193dd2ce 1114 return set;
e01402b1
RB
1115}
1116
41c594ab 1117void mips_srs_free(int set)
e01402b1
RB
1118{
1119 struct shadow_registers *sr = &shadow_registers;
e01402b1 1120
193dd2ce 1121 clear_bit(set, &sr->sr_allocated);
e01402b1
RB
1122}
1123
6ba07e59
AN
1124static asmlinkage void do_default_vi(void)
1125{
1126 show_regs(get_irq_regs());
1127 panic("Caught unexpected vectored interrupt.");
1128}
1129
ef300e42 1130static void *set_vi_srs_handler(int n, vi_handler_t addr, int srs)
e01402b1
RB
1131{
1132 unsigned long handler;
1133 unsigned long old_handler = vi_handlers[n];
1134 u32 *w;
1135 unsigned char *b;
1136
1137 if (!cpu_has_veic && !cpu_has_vint)
1138 BUG();
1139
1140 if (addr == NULL) {
1141 handler = (unsigned long) do_default_vi;
1142 srs = 0;
41c594ab 1143 } else
e01402b1
RB
1144 handler = (unsigned long) addr;
1145 vi_handlers[n] = (unsigned long) addr;
1146
1147 b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING);
1148
1149 if (srs >= mips_srs_max())
1150 panic("Shadow register set %d not supported", srs);
1151
1152 if (cpu_has_veic) {
1153 if (board_bind_eic_interrupt)
1154 board_bind_eic_interrupt (n, srs);
41c594ab 1155 } else if (cpu_has_vint) {
e01402b1
RB
1156 /* SRSMap is only defined if shadow sets are implemented */
1157 if (mips_srs_max() > 1)
1158 change_c0_srsmap (0xf << n*4, srs << n*4);
1159 }
1160
1161 if (srs == 0) {
1162 /*
1163 * If no shadow set is selected then use the default handler
1164 * that does normal register saving and a standard interrupt exit
1165 */
1166
1167 extern char except_vec_vi, except_vec_vi_lui;
1168 extern char except_vec_vi_ori, except_vec_vi_end;
41c594ab
RB
1169#ifdef CONFIG_MIPS_MT_SMTC
1170 /*
1171 * We need to provide the SMTC vectored interrupt handler
1172 * not only with the address of the handler, but with the
1173 * Status.IM bit to be masked before going there.
1174 */
1175 extern char except_vec_vi_mori;
1176 const int mori_offset = &except_vec_vi_mori - &except_vec_vi;
1177#endif /* CONFIG_MIPS_MT_SMTC */
e01402b1
RB
1178 const int handler_len = &except_vec_vi_end - &except_vec_vi;
1179 const int lui_offset = &except_vec_vi_lui - &except_vec_vi;
1180 const int ori_offset = &except_vec_vi_ori - &except_vec_vi;
1181
1182 if (handler_len > VECTORSPACING) {
1183 /*
1184 * Sigh... panicing won't help as the console
1185 * is probably not configured :(
1186 */
1187 panic ("VECTORSPACING too small");
1188 }
1189
1190 memcpy (b, &except_vec_vi, handler_len);
41c594ab 1191#ifdef CONFIG_MIPS_MT_SMTC
8e8a52ed
RB
1192 BUG_ON(n > 7); /* Vector index %d exceeds SMTC maximum. */
1193
41c594ab
RB
1194 w = (u32 *)(b + mori_offset);
1195 *w = (*w & 0xffff0000) | (0x100 << n);
1196#endif /* CONFIG_MIPS_MT_SMTC */
e01402b1
RB
1197 w = (u32 *)(b + lui_offset);
1198 *w = (*w & 0xffff0000) | (((u32)handler >> 16) & 0xffff);
1199 w = (u32 *)(b + ori_offset);
1200 *w = (*w & 0xffff0000) | ((u32)handler & 0xffff);
1201 flush_icache_range((unsigned long)b, (unsigned long)(b+handler_len));
1202 }
1203 else {
1204 /*
1205 * In other cases jump directly to the interrupt handler
1206 *
1207 * It is the handlers responsibility to save registers if required
1208 * (eg hi/lo) and return from the exception using "eret"
1209 */
1210 w = (u32 *)b;
1211 *w++ = 0x08000000 | (((u32)handler >> 2) & 0x03fffff); /* j handler */
1212 *w = 0;
1213 flush_icache_range((unsigned long)b, (unsigned long)(b+8));
1da177e4 1214 }
e01402b1 1215
1da177e4
LT
1216 return (void *)old_handler;
1217}
1218
ef300e42 1219void *set_vi_handler(int n, vi_handler_t addr)
e01402b1 1220{
ff3eab2a 1221 return set_vi_srs_handler(n, addr, 0);
e01402b1 1222}
f41ae0b2
RB
1223
1224#else
1225
1226static inline void mips_srs_init(void)
1227{
1228}
1229
1230#endif /* CONFIG_CPU_MIPSR2_SRS */
e01402b1 1231
1da177e4
LT
1232/*
1233 * This is used by native signal handling
1234 */
53dc8028
AN
1235asmlinkage int (*save_fp_context)(struct sigcontext __user *sc);
1236asmlinkage int (*restore_fp_context)(struct sigcontext __user *sc);
1da177e4 1237
53dc8028
AN
1238extern asmlinkage int _save_fp_context(struct sigcontext __user *sc);
1239extern asmlinkage int _restore_fp_context(struct sigcontext __user *sc);
1da177e4 1240
53dc8028
AN
1241extern asmlinkage int fpu_emulator_save_context(struct sigcontext __user *sc);
1242extern asmlinkage int fpu_emulator_restore_context(struct sigcontext __user *sc);
1da177e4 1243
41c594ab 1244#ifdef CONFIG_SMP
53dc8028 1245static int smp_save_fp_context(struct sigcontext __user *sc)
41c594ab 1246{
53dc8028 1247 return raw_cpu_has_fpu
41c594ab
RB
1248 ? _save_fp_context(sc)
1249 : fpu_emulator_save_context(sc);
1250}
1251
53dc8028 1252static int smp_restore_fp_context(struct sigcontext __user *sc)
41c594ab 1253{
53dc8028 1254 return raw_cpu_has_fpu
41c594ab
RB
1255 ? _restore_fp_context(sc)
1256 : fpu_emulator_restore_context(sc);
1257}
1258#endif
1259
1da177e4
LT
1260static inline void signal_init(void)
1261{
41c594ab
RB
1262#ifdef CONFIG_SMP
1263 /* For now just do the cpu_has_fpu check when the functions are invoked */
1264 save_fp_context = smp_save_fp_context;
1265 restore_fp_context = smp_restore_fp_context;
1266#else
1da177e4
LT
1267 if (cpu_has_fpu) {
1268 save_fp_context = _save_fp_context;
1269 restore_fp_context = _restore_fp_context;
1270 } else {
1271 save_fp_context = fpu_emulator_save_context;
1272 restore_fp_context = fpu_emulator_restore_context;
1273 }
41c594ab 1274#endif
1da177e4
LT
1275}
1276
1277#ifdef CONFIG_MIPS32_COMPAT
1278
1279/*
1280 * This is used by 32-bit signal stuff on the 64-bit kernel
1281 */
53dc8028
AN
1282asmlinkage int (*save_fp_context32)(struct sigcontext32 __user *sc);
1283asmlinkage int (*restore_fp_context32)(struct sigcontext32 __user *sc);
1da177e4 1284
53dc8028
AN
1285extern asmlinkage int _save_fp_context32(struct sigcontext32 __user *sc);
1286extern asmlinkage int _restore_fp_context32(struct sigcontext32 __user *sc);
1da177e4 1287
53dc8028
AN
1288extern asmlinkage int fpu_emulator_save_context32(struct sigcontext32 __user *sc);
1289extern asmlinkage int fpu_emulator_restore_context32(struct sigcontext32 __user *sc);
1da177e4
LT
1290
1291static inline void signal32_init(void)
1292{
1293 if (cpu_has_fpu) {
1294 save_fp_context32 = _save_fp_context32;
1295 restore_fp_context32 = _restore_fp_context32;
1296 } else {
1297 save_fp_context32 = fpu_emulator_save_context32;
1298 restore_fp_context32 = fpu_emulator_restore_context32;
1299 }
1300}
1301#endif
1302
1303extern void cpu_cache_init(void);
1304extern void tlb_init(void);
1d40cfcd 1305extern void flush_tlb_handlers(void);
1da177e4
LT
1306
1307void __init per_cpu_trap_init(void)
1308{
1309 unsigned int cpu = smp_processor_id();
1310 unsigned int status_set = ST0_CU0;
41c594ab
RB
1311#ifdef CONFIG_MIPS_MT_SMTC
1312 int secondaryTC = 0;
1313 int bootTC = (cpu == 0);
1314
1315 /*
1316 * Only do per_cpu_trap_init() for first TC of Each VPE.
1317 * Note that this hack assumes that the SMTC init code
1318 * assigns TCs consecutively and in ascending order.
1319 */
1320
1321 if (((read_c0_tcbind() & TCBIND_CURTC) != 0) &&
1322 ((read_c0_tcbind() & TCBIND_CURVPE) == cpu_data[cpu - 1].vpe_id))
1323 secondaryTC = 1;
1324#endif /* CONFIG_MIPS_MT_SMTC */
1da177e4
LT
1325
1326 /*
1327 * Disable coprocessors and select 32-bit or 64-bit addressing
1328 * and the 16/32 or 32/32 FPR register model. Reset the BEV
1329 * flag that some firmware may have left set and the TS bit (for
1330 * IP27). Set XX for ISA IV code to work.
1331 */
875d43e7 1332#ifdef CONFIG_64BIT
1da177e4
LT
1333 status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX;
1334#endif
1335 if (current_cpu_data.isa_level == MIPS_CPU_ISA_IV)
1336 status_set |= ST0_XX;
b38c7399 1337 change_c0_status(ST0_CU|ST0_MX|ST0_RE|ST0_FR|ST0_BEV|ST0_TS|ST0_KX|ST0_SX|ST0_UX,
1da177e4
LT
1338 status_set);
1339
e50c0a8f
RB
1340 if (cpu_has_dsp)
1341 set_c0_status(ST0_MX);
1342
e01402b1
RB
1343#ifdef CONFIG_CPU_MIPSR2
1344 write_c0_hwrena (0x0000000f); /* Allow rdhwr to all registers */
1345#endif
1346
41c594ab
RB
1347#ifdef CONFIG_MIPS_MT_SMTC
1348 if (!secondaryTC) {
1349#endif /* CONFIG_MIPS_MT_SMTC */
1350
e01402b1
RB
1351 if (cpu_has_veic || cpu_has_vint) {
1352 write_c0_ebase (ebase);
1353 /* Setting vector spacing enables EI/VI mode */
1354 change_c0_intctl (0x3e0, VECTORSPACING);
1355 }
d03d0a57
RB
1356 if (cpu_has_divec) {
1357 if (cpu_has_mipsmt) {
1358 unsigned int vpflags = dvpe();
1359 set_c0_cause(CAUSEF_IV);
1360 evpe(vpflags);
1361 } else
1362 set_c0_cause(CAUSEF_IV);
1363 }
3b1d4ed5
RB
1364
1365 /*
1366 * Before R2 both interrupt numbers were fixed to 7, so on R2 only:
1367 *
1368 * o read IntCtl.IPTI to determine the timer interrupt
1369 * o read IntCtl.IPPCI to determine the performance counter interrupt
1370 */
1371 if (cpu_has_mips_r2) {
1372 cp0_compare_irq = (read_c0_intctl () >> 29) & 7;
3b1d4ed5 1373 cp0_perfcount_irq = (read_c0_intctl () >> 26) & 7;
c3e838a2 1374 if (cp0_perfcount_irq == cp0_compare_irq)
3b1d4ed5 1375 cp0_perfcount_irq = -1;
c3e838a2
CD
1376 } else {
1377 cp0_compare_irq = CP0_LEGACY_COMPARE_IRQ;
1378 cp0_perfcount_irq = -1;
3b1d4ed5
RB
1379 }
1380
41c594ab
RB
1381#ifdef CONFIG_MIPS_MT_SMTC
1382 }
1383#endif /* CONFIG_MIPS_MT_SMTC */
1da177e4
LT
1384
1385 cpu_data[cpu].asid_cache = ASID_FIRST_VERSION;
1386 TLBMISS_HANDLER_SETUP();
1387
1388 atomic_inc(&init_mm.mm_count);
1389 current->active_mm = &init_mm;
1390 BUG_ON(current->mm);
1391 enter_lazy_tlb(&init_mm, current);
1392
41c594ab
RB
1393#ifdef CONFIG_MIPS_MT_SMTC
1394 if (bootTC) {
1395#endif /* CONFIG_MIPS_MT_SMTC */
1396 cpu_cache_init();
1397 tlb_init();
1398#ifdef CONFIG_MIPS_MT_SMTC
6a05888d
RB
1399 } else if (!secondaryTC) {
1400 /*
1401 * First TC in non-boot VPE must do subset of tlb_init()
1402 * for MMU countrol registers.
1403 */
1404 write_c0_pagemask(PM_DEFAULT_MASK);
1405 write_c0_wired(0);
41c594ab
RB
1406 }
1407#endif /* CONFIG_MIPS_MT_SMTC */
1da177e4
LT
1408}
1409
e01402b1
RB
1410/* Install CPU exception handler */
1411void __init set_handler (unsigned long offset, void *addr, unsigned long size)
1412{
1413 memcpy((void *)(ebase + offset), addr, size);
1414 flush_icache_range(ebase + offset, ebase + offset + size);
1415}
1416
1417/* Install uncached CPU exception handler */
1418void __init set_uncached_handler (unsigned long offset, void *addr, unsigned long size)
1419{
1420#ifdef CONFIG_32BIT
1421 unsigned long uncached_ebase = KSEG1ADDR(ebase);
1422#endif
1423#ifdef CONFIG_64BIT
1424 unsigned long uncached_ebase = TO_UNCAC(ebase);
1425#endif
1426
1427 memcpy((void *)(uncached_ebase + offset), addr, size);
1428}
1429
5b10496b
AN
1430static int __initdata rdhwr_noopt;
1431static int __init set_rdhwr_noopt(char *str)
1432{
1433 rdhwr_noopt = 1;
1434 return 1;
1435}
1436
1437__setup("rdhwr_noopt", set_rdhwr_noopt);
1438
1da177e4
LT
1439void __init trap_init(void)
1440{
1441 extern char except_vec3_generic, except_vec3_r4000;
1da177e4
LT
1442 extern char except_vec4;
1443 unsigned long i;
1444
e01402b1
RB
1445 if (cpu_has_veic || cpu_has_vint)
1446 ebase = (unsigned long) alloc_bootmem_low_pages (0x200 + VECTORSPACING*64);
1447 else
1448 ebase = CAC_BASE;
1449
e01402b1 1450 mips_srs_init();
e01402b1 1451
1da177e4
LT
1452 per_cpu_trap_init();
1453
1454 /*
1455 * Copy the generic exception handlers to their final destination.
1456 * This will be overriden later as suitable for a particular
1457 * configuration.
1458 */
e01402b1 1459 set_handler(0x180, &except_vec3_generic, 0x80);
1da177e4
LT
1460
1461 /*
1462 * Setup default vectors
1463 */
1464 for (i = 0; i <= 31; i++)
1465 set_except_vector(i, handle_reserved);
1466
1467 /*
1468 * Copy the EJTAG debug exception vector handler code to it's final
1469 * destination.
1470 */
e01402b1
RB
1471 if (cpu_has_ejtag && board_ejtag_handler_setup)
1472 board_ejtag_handler_setup ();
1da177e4
LT
1473
1474 /*
1475 * Only some CPUs have the watch exceptions.
1476 */
1477 if (cpu_has_watch)
1478 set_except_vector(23, handle_watch);
1479
1480 /*
e01402b1 1481 * Initialise interrupt handlers
1da177e4 1482 */
e01402b1
RB
1483 if (cpu_has_veic || cpu_has_vint) {
1484 int nvec = cpu_has_veic ? 64 : 8;
1485 for (i = 0; i < nvec; i++)
ff3eab2a 1486 set_vi_handler(i, NULL);
e01402b1
RB
1487 }
1488 else if (cpu_has_divec)
1489 set_handler(0x200, &except_vec4, 0x8);
1da177e4
LT
1490
1491 /*
1492 * Some CPUs can enable/disable for cache parity detection, but does
1493 * it different ways.
1494 */
1495 parity_protection_init();
1496
1497 /*
1498 * The Data Bus Errors / Instruction Bus Errors are signaled
1499 * by external hardware. Therefore these two exceptions
1500 * may have board specific handlers.
1501 */
1502 if (board_be_init)
1503 board_be_init();
1504
e4ac58af 1505 set_except_vector(0, handle_int);
1da177e4
LT
1506 set_except_vector(1, handle_tlbm);
1507 set_except_vector(2, handle_tlbl);
1508 set_except_vector(3, handle_tlbs);
1509
1510 set_except_vector(4, handle_adel);
1511 set_except_vector(5, handle_ades);
1512
1513 set_except_vector(6, handle_ibe);
1514 set_except_vector(7, handle_dbe);
1515
1516 set_except_vector(8, handle_sys);
1517 set_except_vector(9, handle_bp);
5b10496b
AN
1518 set_except_vector(10, rdhwr_noopt ? handle_ri :
1519 (cpu_has_vtag_icache ?
1520 handle_ri_rdhwr_vivt : handle_ri_rdhwr));
1da177e4
LT
1521 set_except_vector(11, handle_cpu);
1522 set_except_vector(12, handle_ov);
1523 set_except_vector(13, handle_tr);
1da177e4
LT
1524
1525 if (current_cpu_data.cputype == CPU_R6000 ||
1526 current_cpu_data.cputype == CPU_R6000A) {
1527 /*
1528 * The R6000 is the only R-series CPU that features a machine
1529 * check exception (similar to the R4000 cache error) and
1530 * unaligned ldc1/sdc1 exception. The handlers have not been
1531 * written yet. Well, anyway there is no R6000 machine on the
1532 * current list of targets for Linux/MIPS.
1533 * (Duh, crap, there is someone with a triple R6k machine)
1534 */
1535 //set_except_vector(14, handle_mc);
1536 //set_except_vector(15, handle_ndc);
1537 }
1538
e01402b1
RB
1539
1540 if (board_nmi_handler_setup)
1541 board_nmi_handler_setup();
1542
e50c0a8f
RB
1543 if (cpu_has_fpu && !cpu_has_nofpuex)
1544 set_except_vector(15, handle_fpe);
1545
1546 set_except_vector(22, handle_mdmx);
1547
1548 if (cpu_has_mcheck)
1549 set_except_vector(24, handle_mcheck);
1550
340ee4b9
RB
1551 if (cpu_has_mipsmt)
1552 set_except_vector(25, handle_mt);
1553
acaec427 1554 set_except_vector(26, handle_dsp);
e50c0a8f
RB
1555
1556 if (cpu_has_vce)
1557 /* Special exception: R4[04]00 uses also the divec space. */
1558 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_r4000, 0x100);
1559 else if (cpu_has_4kex)
1560 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_generic, 0x80);
1561 else
1562 memcpy((void *)(CAC_BASE + 0x080), &except_vec3_generic, 0x80);
1563
1da177e4
LT
1564 signal_init();
1565#ifdef CONFIG_MIPS32_COMPAT
1566 signal32_init();
1567#endif
1568
e01402b1 1569 flush_icache_range(ebase, ebase + 0x400);
1d40cfcd 1570 flush_tlb_handlers();
1da177e4 1571}