blob: f9a6a5665559f748c91afbdc8dd513349ee1bed8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1994 - 1999, 2000, 01 Ralf Baechle
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.
12 * Copyright (C) 2002, 2003, 2004 Maciej W. Rozycki
13 */
14#include <linux/config.h>
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>
20#include <linux/smp_lock.h>
21#include <linux/spinlock.h>
22#include <linux/kallsyms.h>
23
24#include <asm/bootinfo.h>
25#include <asm/branch.h>
26#include <asm/break.h>
27#include <asm/cpu.h>
28#include <asm/fpu.h>
29#include <asm/module.h>
30#include <asm/pgtable.h>
31#include <asm/ptrace.h>
32#include <asm/sections.h>
33#include <asm/system.h>
34#include <asm/tlbdebug.h>
35#include <asm/traps.h>
36#include <asm/uaccess.h>
37#include <asm/mmu_context.h>
38#include <asm/watch.h>
39#include <asm/types.h>
40
41extern asmlinkage void handle_tlbm(void);
42extern asmlinkage void handle_tlbl(void);
43extern asmlinkage void handle_tlbs(void);
44extern asmlinkage void handle_adel(void);
45extern asmlinkage void handle_ades(void);
46extern asmlinkage void handle_ibe(void);
47extern asmlinkage void handle_dbe(void);
48extern asmlinkage void handle_sys(void);
49extern asmlinkage void handle_bp(void);
50extern asmlinkage void handle_ri(void);
51extern asmlinkage void handle_cpu(void);
52extern asmlinkage void handle_ov(void);
53extern asmlinkage void handle_tr(void);
54extern asmlinkage void handle_fpe(void);
55extern asmlinkage void handle_mdmx(void);
56extern asmlinkage void handle_watch(void);
57extern asmlinkage void handle_mcheck(void);
58extern asmlinkage void handle_reserved(void);
59
60extern int fpu_emulator_cop1Handler(int xcptno, struct pt_regs *xcp,
61 struct mips_fpu_soft_struct *ctx);
62
63void (*board_be_init)(void);
64int (*board_be_handler)(struct pt_regs *regs, int is_fixup);
65
66/*
67 * These constant is for searching for possible module text segments.
68 * MODULE_RANGE is a guess of how much space is likely to be vmalloced.
69 */
70#define MODULE_RANGE (8*1024*1024)
71
72/*
73 * This routine abuses get_user()/put_user() to reference pointers
74 * with at least a bit of error checking ...
75 */
76void show_stack(struct task_struct *task, unsigned long *sp)
77{
78 const int field = 2 * sizeof(unsigned long);
79 long stackdata;
80 int i;
81
82 if (!sp) {
83 if (task && task != current)
84 sp = (unsigned long *) task->thread.reg29;
85 else
86 sp = (unsigned long *) &sp;
87 }
88
89 printk("Stack :");
90 i = 0;
91 while ((unsigned long) sp & (PAGE_SIZE - 1)) {
92 if (i && ((i % (64 / field)) == 0))
93 printk("\n ");
94 if (i > 39) {
95 printk(" ...");
96 break;
97 }
98
99 if (__get_user(stackdata, sp++)) {
100 printk(" (Bad stack address)");
101 break;
102 }
103
104 printk(" %0*lx", field, stackdata);
105 i++;
106 }
107 printk("\n");
108}
109
110void show_trace(struct task_struct *task, unsigned long *stack)
111{
112 const int field = 2 * sizeof(unsigned long);
113 unsigned long addr;
114
115 if (!stack) {
116 if (task && task != current)
117 stack = (unsigned long *) task->thread.reg29;
118 else
119 stack = (unsigned long *) &stack;
120 }
121
122 printk("Call Trace:");
123#ifdef CONFIG_KALLSYMS
124 printk("\n");
125#endif
126 while (!kstack_end(stack)) {
127 addr = *stack++;
128 if (__kernel_text_address(addr)) {
129 printk(" [<%0*lx>] ", field, addr);
130 print_symbol("%s\n", addr);
131 }
132 }
133 printk("\n");
134}
135
136/*
137 * The architecture-independent dump_stack generator
138 */
139void dump_stack(void)
140{
141 unsigned long stack;
142
143 show_trace(current, &stack);
144}
145
146EXPORT_SYMBOL(dump_stack);
147
148void show_code(unsigned int *pc)
149{
150 long i;
151
152 printk("\nCode:");
153
154 for(i = -3 ; i < 6 ; i++) {
155 unsigned int insn;
156 if (__get_user(insn, pc + i)) {
157 printk(" (Bad address in epc)\n");
158 break;
159 }
160 printk("%c%08x%c", (i?' ':'<'), insn, (i?' ':'>'));
161 }
162}
163
164void show_regs(struct pt_regs *regs)
165{
166 const int field = 2 * sizeof(unsigned long);
167 unsigned int cause = regs->cp0_cause;
168 int i;
169
170 printk("Cpu %d\n", smp_processor_id());
171
172 /*
173 * Saved main processor registers
174 */
175 for (i = 0; i < 32; ) {
176 if ((i % 4) == 0)
177 printk("$%2d :", i);
178 if (i == 0)
179 printk(" %0*lx", field, 0UL);
180 else if (i == 26 || i == 27)
181 printk(" %*s", field, "");
182 else
183 printk(" %0*lx", field, regs->regs[i]);
184
185 i++;
186 if ((i % 4) == 0)
187 printk("\n");
188 }
189
190 printk("Hi : %0*lx\n", field, regs->hi);
191 printk("Lo : %0*lx\n", field, regs->lo);
192
193 /*
194 * Saved cp0 registers
195 */
196 printk("epc : %0*lx ", field, regs->cp0_epc);
197 print_symbol("%s ", regs->cp0_epc);
198 printk(" %s\n", print_tainted());
199 printk("ra : %0*lx ", field, regs->regs[31]);
200 print_symbol("%s\n", regs->regs[31]);
201
202 printk("Status: %08x ", (uint32_t) regs->cp0_status);
203
204 if (regs->cp0_status & ST0_KX)
205 printk("KX ");
206 if (regs->cp0_status & ST0_SX)
207 printk("SX ");
208 if (regs->cp0_status & ST0_UX)
209 printk("UX ");
210 switch (regs->cp0_status & ST0_KSU) {
211 case KSU_USER:
212 printk("USER ");
213 break;
214 case KSU_SUPERVISOR:
215 printk("SUPERVISOR ");
216 break;
217 case KSU_KERNEL:
218 printk("KERNEL ");
219 break;
220 default:
221 printk("BAD_MODE ");
222 break;
223 }
224 if (regs->cp0_status & ST0_ERL)
225 printk("ERL ");
226 if (regs->cp0_status & ST0_EXL)
227 printk("EXL ");
228 if (regs->cp0_status & ST0_IE)
229 printk("IE ");
230 printk("\n");
231
232 printk("Cause : %08x\n", cause);
233
234 cause = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE;
235 if (1 <= cause && cause <= 5)
236 printk("BadVA : %0*lx\n", field, regs->cp0_badvaddr);
237
238 printk("PrId : %08x\n", read_c0_prid());
239}
240
241void show_registers(struct pt_regs *regs)
242{
243 show_regs(regs);
244 print_modules();
245 printk("Process %s (pid: %d, threadinfo=%p, task=%p)\n",
246 current->comm, current->pid, current_thread_info(), current);
247 show_stack(current, (long *) regs->regs[29]);
248 show_trace(current, (long *) regs->regs[29]);
249 show_code((unsigned int *) regs->cp0_epc);
250 printk("\n");
251}
252
253static DEFINE_SPINLOCK(die_lock);
254
255NORET_TYPE void __die(const char * str, struct pt_regs * regs,
256 const char * file, const char * func, unsigned long line)
257{
258 static int die_counter;
259
260 console_verbose();
261 spin_lock_irq(&die_lock);
262 printk("%s", str);
263 if (file && func)
264 printk(" in %s:%s, line %ld", file, func, line);
265 printk("[#%d]:\n", ++die_counter);
266 show_registers(regs);
267 spin_unlock_irq(&die_lock);
268 do_exit(SIGSEGV);
269}
270
271void __die_if_kernel(const char * str, struct pt_regs * regs,
272 const char * file, const char * func, unsigned long line)
273{
274 if (!user_mode(regs))
275 __die(str, regs, file, func, line);
276}
277
278extern const struct exception_table_entry __start___dbe_table[];
279extern const struct exception_table_entry __stop___dbe_table[];
280
281void __declare_dbe_table(void)
282{
283 __asm__ __volatile__(
284 ".section\t__dbe_table,\"a\"\n\t"
285 ".previous"
286 );
287}
288
289/* Given an address, look for it in the exception tables. */
290static const struct exception_table_entry *search_dbe_tables(unsigned long addr)
291{
292 const struct exception_table_entry *e;
293
294 e = search_extable(__start___dbe_table, __stop___dbe_table - 1, addr);
295 if (!e)
296 e = search_module_dbetables(addr);
297 return e;
298}
299
300asmlinkage void do_be(struct pt_regs *regs)
301{
302 const int field = 2 * sizeof(unsigned long);
303 const struct exception_table_entry *fixup = NULL;
304 int data = regs->cp0_cause & 4;
305 int action = MIPS_BE_FATAL;
306
307 /* XXX For now. Fixme, this searches the wrong table ... */
308 if (data && !user_mode(regs))
309 fixup = search_dbe_tables(exception_epc(regs));
310
311 if (fixup)
312 action = MIPS_BE_FIXUP;
313
314 if (board_be_handler)
315 action = board_be_handler(regs, fixup != 0);
316
317 switch (action) {
318 case MIPS_BE_DISCARD:
319 return;
320 case MIPS_BE_FIXUP:
321 if (fixup) {
322 regs->cp0_epc = fixup->nextinsn;
323 return;
324 }
325 break;
326 default:
327 break;
328 }
329
330 /*
331 * Assume it would be too dangerous to continue ...
332 */
333 printk(KERN_ALERT "%s bus error, epc == %0*lx, ra == %0*lx\n",
334 data ? "Data" : "Instruction",
335 field, regs->cp0_epc, field, regs->regs[31]);
336 die_if_kernel("Oops", regs);
337 force_sig(SIGBUS, current);
338}
339
340static inline int get_insn_opcode(struct pt_regs *regs, unsigned int *opcode)
341{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000342 unsigned int __user *epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Ralf Baechlefe00f942005-03-01 19:22:29 +0000344 epc = (unsigned int __user *) regs->cp0_epc +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 ((regs->cp0_cause & CAUSEF_BD) != 0);
346 if (!get_user(*opcode, epc))
347 return 0;
348
349 force_sig(SIGSEGV, current);
350 return 1;
351}
352
353/*
354 * ll/sc emulation
355 */
356
357#define OPCODE 0xfc000000
358#define BASE 0x03e00000
359#define RT 0x001f0000
360#define OFFSET 0x0000ffff
361#define LL 0xc0000000
362#define SC 0xe0000000
363
364/*
365 * The ll_bit is cleared by r*_switch.S
366 */
367
368unsigned long ll_bit;
369
370static struct task_struct *ll_task = NULL;
371
372static inline void simulate_ll(struct pt_regs *regs, unsigned int opcode)
373{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000374 unsigned long value, __user *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 long offset;
376 int signal = 0;
377
378 /*
379 * analyse the ll instruction that just caused a ri exception
380 * and put the referenced address to addr.
381 */
382
383 /* sign extend offset */
384 offset = opcode & OFFSET;
385 offset <<= 16;
386 offset >>= 16;
387
Ralf Baechlefe00f942005-03-01 19:22:29 +0000388 vaddr = (unsigned long __user *)
389 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 if ((unsigned long)vaddr & 3) {
392 signal = SIGBUS;
393 goto sig;
394 }
395 if (get_user(value, vaddr)) {
396 signal = SIGSEGV;
397 goto sig;
398 }
399
400 preempt_disable();
401
402 if (ll_task == NULL || ll_task == current) {
403 ll_bit = 1;
404 } else {
405 ll_bit = 0;
406 }
407 ll_task = current;
408
409 preempt_enable();
410
411 regs->regs[(opcode & RT) >> 16] = value;
412
413 compute_return_epc(regs);
414 return;
415
416sig:
417 force_sig(signal, current);
418}
419
420static inline void simulate_sc(struct pt_regs *regs, unsigned int opcode)
421{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000422 unsigned long __user *vaddr;
423 unsigned long reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 long offset;
425 int signal = 0;
426
427 /*
428 * analyse the sc instruction that just caused a ri exception
429 * and put the referenced address to addr.
430 */
431
432 /* sign extend offset */
433 offset = opcode & OFFSET;
434 offset <<= 16;
435 offset >>= 16;
436
Ralf Baechlefe00f942005-03-01 19:22:29 +0000437 vaddr = (unsigned long __user *)
438 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 reg = (opcode & RT) >> 16;
440
441 if ((unsigned long)vaddr & 3) {
442 signal = SIGBUS;
443 goto sig;
444 }
445
446 preempt_disable();
447
448 if (ll_bit == 0 || ll_task != current) {
449 regs->regs[reg] = 0;
450 preempt_enable();
451 compute_return_epc(regs);
452 return;
453 }
454
455 preempt_enable();
456
457 if (put_user(regs->regs[reg], vaddr)) {
458 signal = SIGSEGV;
459 goto sig;
460 }
461
462 regs->regs[reg] = 1;
463
464 compute_return_epc(regs);
465 return;
466
467sig:
468 force_sig(signal, current);
469}
470
471/*
472 * ll uses the opcode of lwc0 and sc uses the opcode of swc0. That is both
473 * opcodes are supposed to result in coprocessor unusable exceptions if
474 * executed on ll/sc-less processors. That's the theory. In practice a
475 * few processors such as NEC's VR4100 throw reserved instruction exceptions
476 * instead, so we're doing the emulation thing in both exception handlers.
477 */
478static inline int simulate_llsc(struct pt_regs *regs)
479{
480 unsigned int opcode;
481
482 if (unlikely(get_insn_opcode(regs, &opcode)))
483 return -EFAULT;
484
485 if ((opcode & OPCODE) == LL) {
486 simulate_ll(regs, opcode);
487 return 0;
488 }
489 if ((opcode & OPCODE) == SC) {
490 simulate_sc(regs, opcode);
491 return 0;
492 }
493
494 return -EFAULT; /* Strange things going on ... */
495}
496
497asmlinkage void do_ov(struct pt_regs *regs)
498{
499 siginfo_t info;
500
501 info.si_code = FPE_INTOVF;
502 info.si_signo = SIGFPE;
503 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000504 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 force_sig_info(SIGFPE, &info, current);
506}
507
508/*
509 * XXX Delayed fp exceptions when doing a lazy ctx switch XXX
510 */
511asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31)
512{
513 if (fcr31 & FPU_CSR_UNI_X) {
514 int sig;
515
516 preempt_disable();
517
518 /*
519 * Unimplemented operation exception. If we've got the full
520 * software emulator on-board, let's use it...
521 *
522 * Force FPU to dump state into task/thread context. We're
523 * moving a lot of data here for what is probably a single
524 * instruction, but the alternative is to pre-decode the FP
525 * register operands before invoking the emulator, which seems
526 * a bit extreme for what should be an infrequent event.
527 */
528 save_fp(current);
529
530 /* Run the emulator */
531 sig = fpu_emulator_cop1Handler (0, regs,
532 &current->thread.fpu.soft);
533
534 /*
535 * We can't allow the emulated instruction to leave any of
536 * the cause bit set in $fcr31.
537 */
538 current->thread.fpu.soft.fcr31 &= ~FPU_CSR_ALL_X;
539
540 /* Restore the hardware register state */
541 restore_fp(current);
542
543 preempt_enable();
544
545 /* If something went wrong, signal */
546 if (sig)
547 force_sig(sig, current);
548
549 return;
550 }
551
552 force_sig(SIGFPE, current);
553}
554
555asmlinkage void do_bp(struct pt_regs *regs)
556{
557 unsigned int opcode, bcode;
558 siginfo_t info;
559
560 die_if_kernel("Break instruction in kernel code", regs);
561
562 if (get_insn_opcode(regs, &opcode))
563 return;
564
565 /*
566 * There is the ancient bug in the MIPS assemblers that the break
567 * code starts left to bit 16 instead to bit 6 in the opcode.
568 * Gas is bug-compatible, but not always, grrr...
569 * We handle both cases with a simple heuristics. --macro
570 */
571 bcode = ((opcode >> 6) & ((1 << 20) - 1));
572 if (bcode < (1 << 10))
573 bcode <<= 10;
574
575 /*
576 * (A short test says that IRIX 5.3 sends SIGTRAP for all break
577 * insns, even for break codes that indicate arithmetic failures.
578 * Weird ...)
579 * But should we continue the brokenness??? --macro
580 */
581 switch (bcode) {
582 case BRK_OVERFLOW << 10:
583 case BRK_DIVZERO << 10:
584 if (bcode == (BRK_DIVZERO << 10))
585 info.si_code = FPE_INTDIV;
586 else
587 info.si_code = FPE_INTOVF;
588 info.si_signo = SIGFPE;
589 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000590 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 force_sig_info(SIGFPE, &info, current);
592 break;
593 default:
594 force_sig(SIGTRAP, current);
595 }
596}
597
598asmlinkage void do_tr(struct pt_regs *regs)
599{
600 unsigned int opcode, tcode = 0;
601 siginfo_t info;
602
603 die_if_kernel("Trap instruction in kernel code", regs);
604
605 if (get_insn_opcode(regs, &opcode))
606 return;
607
608 /* Immediate versions don't provide a code. */
609 if (!(opcode & OPCODE))
610 tcode = ((opcode >> 6) & ((1 << 10) - 1));
611
612 /*
613 * (A short test says that IRIX 5.3 sends SIGTRAP for all trap
614 * insns, even for trap codes that indicate arithmetic failures.
615 * Weird ...)
616 * But should we continue the brokenness??? --macro
617 */
618 switch (tcode) {
619 case BRK_OVERFLOW:
620 case BRK_DIVZERO:
621 if (tcode == BRK_DIVZERO)
622 info.si_code = FPE_INTDIV;
623 else
624 info.si_code = FPE_INTOVF;
625 info.si_signo = SIGFPE;
626 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000627 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 force_sig_info(SIGFPE, &info, current);
629 break;
630 default:
631 force_sig(SIGTRAP, current);
632 }
633}
634
635asmlinkage void do_ri(struct pt_regs *regs)
636{
637 die_if_kernel("Reserved instruction in kernel code", regs);
638
639 if (!cpu_has_llsc)
640 if (!simulate_llsc(regs))
641 return;
642
643 force_sig(SIGILL, current);
644}
645
646asmlinkage void do_cpu(struct pt_regs *regs)
647{
648 unsigned int cpid;
649
650 die_if_kernel("do_cpu invoked from kernel context!", regs);
651
652 cpid = (regs->cp0_cause >> CAUSEB_CE) & 3;
653
654 switch (cpid) {
655 case 0:
656 if (cpu_has_llsc)
657 break;
658
659 if (!simulate_llsc(regs))
660 return;
661 break;
662
663 case 1:
664 preempt_disable();
665
666 own_fpu();
667 if (used_math()) { /* Using the FPU again. */
668 restore_fp(current);
669 } else { /* First time FPU user. */
670 init_fpu();
671 set_used_math();
672 }
673
674 if (!cpu_has_fpu) {
675 int sig = fpu_emulator_cop1Handler(0, regs,
676 &current->thread.fpu.soft);
677 if (sig)
678 force_sig(sig, current);
679 }
680
681 preempt_enable();
682
683 return;
684
685 case 2:
686 case 3:
687 break;
688 }
689
690 force_sig(SIGILL, current);
691}
692
693asmlinkage void do_mdmx(struct pt_regs *regs)
694{
695 force_sig(SIGILL, current);
696}
697
698asmlinkage void do_watch(struct pt_regs *regs)
699{
700 /*
701 * We use the watch exception where available to detect stack
702 * overflows.
703 */
704 dump_tlb_all();
705 show_regs(regs);
706 panic("Caught WATCH exception - probably caused by stack overflow.");
707}
708
709asmlinkage void do_mcheck(struct pt_regs *regs)
710{
711 show_regs(regs);
712 dump_tlb_all();
713 /*
714 * Some chips may have other causes of machine check (e.g. SB1
715 * graduation timer)
716 */
717 panic("Caught Machine Check exception - %scaused by multiple "
718 "matching entries in the TLB.",
719 (regs->cp0_status & ST0_TS) ? "" : "not ");
720}
721
722asmlinkage void do_reserved(struct pt_regs *regs)
723{
724 /*
725 * Game over - no way to handle this if it ever occurs. Most probably
726 * caused by a new unknown cpu type or after another deadly
727 * hard/software error.
728 */
729 show_regs(regs);
730 panic("Caught reserved exception %ld - should not happen.",
731 (regs->cp0_cause & 0x7f) >> 2);
732}
733
734/*
735 * Some MIPS CPUs can enable/disable for cache parity detection, but do
736 * it different ways.
737 */
738static inline void parity_protection_init(void)
739{
740 switch (current_cpu_data.cputype) {
741 case CPU_24K:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 case CPU_5KC:
Ralf Baechle14f18b72005-03-01 18:15:08 +0000743 write_c0_ecc(0x80000000);
744 back_to_back_c0_hazard();
745 /* Set the PE bit (bit 31) in the c0_errctl register. */
746 printk(KERN_INFO "Cache parity protection %sabled\n",
747 (read_c0_ecc() & 0x80000000) ? "en" : "dis");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 break;
749 case CPU_20KC:
750 case CPU_25KF:
751 /* Clear the DE bit (bit 16) in the c0_status register. */
752 printk(KERN_INFO "Enable cache parity protection for "
753 "MIPS 20KC/25KF CPUs.\n");
754 clear_c0_status(ST0_DE);
755 break;
756 default:
757 break;
758 }
759}
760
761asmlinkage void cache_parity_error(void)
762{
763 const int field = 2 * sizeof(unsigned long);
764 unsigned int reg_val;
765
766 /* For the moment, report the problem and hang. */
767 printk("Cache error exception:\n");
768 printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
769 reg_val = read_c0_cacheerr();
770 printk("c0_cacheerr == %08x\n", reg_val);
771
772 printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
773 reg_val & (1<<30) ? "secondary" : "primary",
774 reg_val & (1<<31) ? "data" : "insn");
775 printk("Error bits: %s%s%s%s%s%s%s\n",
776 reg_val & (1<<29) ? "ED " : "",
777 reg_val & (1<<28) ? "ET " : "",
778 reg_val & (1<<26) ? "EE " : "",
779 reg_val & (1<<25) ? "EB " : "",
780 reg_val & (1<<24) ? "EI " : "",
781 reg_val & (1<<23) ? "E1 " : "",
782 reg_val & (1<<22) ? "E0 " : "");
783 printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1));
784
785#if defined(CONFIG_CPU_MIPS32) || defined (CONFIG_CPU_MIPS64)
786 if (reg_val & (1<<22))
787 printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0());
788
789 if (reg_val & (1<<23))
790 printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1());
791#endif
792
793 panic("Can't handle the cache error!");
794}
795
796/*
797 * SDBBP EJTAG debug exception handler.
798 * We skip the instruction and return to the next instruction.
799 */
800void ejtag_exception_handler(struct pt_regs *regs)
801{
802 const int field = 2 * sizeof(unsigned long);
803 unsigned long depc, old_epc;
804 unsigned int debug;
805
806 printk("SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
807 depc = read_c0_depc();
808 debug = read_c0_debug();
809 printk("c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
810 if (debug & 0x80000000) {
811 /*
812 * In branch delay slot.
813 * We cheat a little bit here and use EPC to calculate the
814 * debug return address (DEPC). EPC is restored after the
815 * calculation.
816 */
817 old_epc = regs->cp0_epc;
818 regs->cp0_epc = depc;
819 __compute_return_epc(regs);
820 depc = regs->cp0_epc;
821 regs->cp0_epc = old_epc;
822 } else
823 depc += 4;
824 write_c0_depc(depc);
825
826#if 0
827 printk("\n\n----- Enable EJTAG single stepping ----\n\n");
828 write_c0_debug(debug | 0x100);
829#endif
830}
831
832/*
833 * NMI exception handler.
834 */
835void nmi_exception_handler(struct pt_regs *regs)
836{
837 printk("NMI taken!!!!\n");
838 die("NMI", regs);
839 while(1) ;
840}
841
842unsigned long exception_handlers[32];
843
844/*
845 * As a side effect of the way this is implemented we're limited
846 * to interrupt handlers in the address range from
847 * KSEG0 <= x < KSEG0 + 256mb on the Nevada. Oh well ...
848 */
849void *set_except_vector(int n, void *addr)
850{
851 unsigned long handler = (unsigned long) addr;
852 unsigned long old_handler = exception_handlers[n];
853
854 exception_handlers[n] = handler;
855 if (n == 0 && cpu_has_divec) {
856 *(volatile u32 *)(CAC_BASE + 0x200) = 0x08000000 |
857 (0x03ffffff & (handler >> 2));
858 flush_icache_range(CAC_BASE + 0x200, CAC_BASE + 0x204);
859 }
860 return (void *)old_handler;
861}
862
863/*
864 * This is used by native signal handling
865 */
866asmlinkage int (*save_fp_context)(struct sigcontext *sc);
867asmlinkage int (*restore_fp_context)(struct sigcontext *sc);
868
869extern asmlinkage int _save_fp_context(struct sigcontext *sc);
870extern asmlinkage int _restore_fp_context(struct sigcontext *sc);
871
872extern asmlinkage int fpu_emulator_save_context(struct sigcontext *sc);
873extern asmlinkage int fpu_emulator_restore_context(struct sigcontext *sc);
874
875static inline void signal_init(void)
876{
877 if (cpu_has_fpu) {
878 save_fp_context = _save_fp_context;
879 restore_fp_context = _restore_fp_context;
880 } else {
881 save_fp_context = fpu_emulator_save_context;
882 restore_fp_context = fpu_emulator_restore_context;
883 }
884}
885
886#ifdef CONFIG_MIPS32_COMPAT
887
888/*
889 * This is used by 32-bit signal stuff on the 64-bit kernel
890 */
891asmlinkage int (*save_fp_context32)(struct sigcontext32 *sc);
892asmlinkage int (*restore_fp_context32)(struct sigcontext32 *sc);
893
894extern asmlinkage int _save_fp_context32(struct sigcontext32 *sc);
895extern asmlinkage int _restore_fp_context32(struct sigcontext32 *sc);
896
897extern asmlinkage int fpu_emulator_save_context32(struct sigcontext32 *sc);
898extern asmlinkage int fpu_emulator_restore_context32(struct sigcontext32 *sc);
899
900static inline void signal32_init(void)
901{
902 if (cpu_has_fpu) {
903 save_fp_context32 = _save_fp_context32;
904 restore_fp_context32 = _restore_fp_context32;
905 } else {
906 save_fp_context32 = fpu_emulator_save_context32;
907 restore_fp_context32 = fpu_emulator_restore_context32;
908 }
909}
910#endif
911
912extern void cpu_cache_init(void);
913extern void tlb_init(void);
914
915void __init per_cpu_trap_init(void)
916{
917 unsigned int cpu = smp_processor_id();
918 unsigned int status_set = ST0_CU0;
919
920 /*
921 * Disable coprocessors and select 32-bit or 64-bit addressing
922 * and the 16/32 or 32/32 FPR register model. Reset the BEV
923 * flag that some firmware may have left set and the TS bit (for
924 * IP27). Set XX for ISA IV code to work.
925 */
Ralf Baechle875d43e2005-09-03 15:56:16 -0700926#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX;
928#endif
929 if (current_cpu_data.isa_level == MIPS_CPU_ISA_IV)
930 status_set |= ST0_XX;
931 change_c0_status(ST0_CU|ST0_FR|ST0_BEV|ST0_TS|ST0_KX|ST0_SX|ST0_UX,
932 status_set);
933
934 /*
935 * Some MIPS CPUs have a dedicated interrupt vector which reduces the
936 * interrupt processing overhead. Use it where available.
937 */
938 if (cpu_has_divec)
939 set_c0_cause(CAUSEF_IV);
940
941 cpu_data[cpu].asid_cache = ASID_FIRST_VERSION;
942 TLBMISS_HANDLER_SETUP();
943
944 atomic_inc(&init_mm.mm_count);
945 current->active_mm = &init_mm;
946 BUG_ON(current->mm);
947 enter_lazy_tlb(&init_mm, current);
948
949 cpu_cache_init();
950 tlb_init();
951}
952
953void __init trap_init(void)
954{
955 extern char except_vec3_generic, except_vec3_r4000;
956 extern char except_vec_ejtag_debug;
957 extern char except_vec4;
958 unsigned long i;
959
960 per_cpu_trap_init();
961
962 /*
963 * Copy the generic exception handlers to their final destination.
964 * This will be overriden later as suitable for a particular
965 * configuration.
966 */
967 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_generic, 0x80);
968
969 /*
970 * Setup default vectors
971 */
972 for (i = 0; i <= 31; i++)
973 set_except_vector(i, handle_reserved);
974
975 /*
976 * Copy the EJTAG debug exception vector handler code to it's final
977 * destination.
978 */
979 if (cpu_has_ejtag)
980 memcpy((void *)(CAC_BASE + 0x300), &except_vec_ejtag_debug, 0x80);
981
982 /*
983 * Only some CPUs have the watch exceptions.
984 */
985 if (cpu_has_watch)
986 set_except_vector(23, handle_watch);
987
988 /*
989 * Some MIPS CPUs have a dedicated interrupt vector which reduces the
990 * interrupt processing overhead. Use it where available.
991 */
992 if (cpu_has_divec)
993 memcpy((void *)(CAC_BASE + 0x200), &except_vec4, 0x8);
994
995 /*
996 * Some CPUs can enable/disable for cache parity detection, but does
997 * it different ways.
998 */
999 parity_protection_init();
1000
1001 /*
1002 * The Data Bus Errors / Instruction Bus Errors are signaled
1003 * by external hardware. Therefore these two exceptions
1004 * may have board specific handlers.
1005 */
1006 if (board_be_init)
1007 board_be_init();
1008
1009 set_except_vector(1, handle_tlbm);
1010 set_except_vector(2, handle_tlbl);
1011 set_except_vector(3, handle_tlbs);
1012
1013 set_except_vector(4, handle_adel);
1014 set_except_vector(5, handle_ades);
1015
1016 set_except_vector(6, handle_ibe);
1017 set_except_vector(7, handle_dbe);
1018
1019 set_except_vector(8, handle_sys);
1020 set_except_vector(9, handle_bp);
1021 set_except_vector(10, handle_ri);
1022 set_except_vector(11, handle_cpu);
1023 set_except_vector(12, handle_ov);
1024 set_except_vector(13, handle_tr);
1025 set_except_vector(22, handle_mdmx);
1026
1027 if (cpu_has_fpu && !cpu_has_nofpuex)
1028 set_except_vector(15, handle_fpe);
1029
1030 if (cpu_has_mcheck)
1031 set_except_vector(24, handle_mcheck);
1032
1033 if (cpu_has_vce)
1034 /* Special exception: R4[04]00 uses also the divec space. */
1035 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_r4000, 0x100);
1036 else if (cpu_has_4kex)
1037 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_generic, 0x80);
1038 else
1039 memcpy((void *)(CAC_BASE + 0x080), &except_vec3_generic, 0x80);
1040
1041 if (current_cpu_data.cputype == CPU_R6000 ||
1042 current_cpu_data.cputype == CPU_R6000A) {
1043 /*
1044 * The R6000 is the only R-series CPU that features a machine
1045 * check exception (similar to the R4000 cache error) and
1046 * unaligned ldc1/sdc1 exception. The handlers have not been
1047 * written yet. Well, anyway there is no R6000 machine on the
1048 * current list of targets for Linux/MIPS.
1049 * (Duh, crap, there is someone with a triple R6k machine)
1050 */
1051 //set_except_vector(14, handle_mc);
1052 //set_except_vector(15, handle_ndc);
1053 }
1054
1055 signal_init();
1056#ifdef CONFIG_MIPS32_COMPAT
1057 signal32_init();
1058#endif
1059
1060 flush_icache_range(CAC_BASE, CAC_BASE + 0x400);
1061}