]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/mips/kernel/traps.c
On 24K we did always disable cache parity protection - obviously not
[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 *
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{
342 unsigned int *epc;
343
344 epc = (unsigned int *) regs->cp0_epc +
345 ((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{
374 unsigned long value, *vaddr;
375 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
388 vaddr = (unsigned long *)((long)(regs->regs[(opcode & BASE) >> 21]) + offset);
389
390 if ((unsigned long)vaddr & 3) {
391 signal = SIGBUS;
392 goto sig;
393 }
394 if (get_user(value, vaddr)) {
395 signal = SIGSEGV;
396 goto sig;
397 }
398
399 preempt_disable();
400
401 if (ll_task == NULL || ll_task == current) {
402 ll_bit = 1;
403 } else {
404 ll_bit = 0;
405 }
406 ll_task = current;
407
408 preempt_enable();
409
410 regs->regs[(opcode & RT) >> 16] = value;
411
412 compute_return_epc(regs);
413 return;
414
415sig:
416 force_sig(signal, current);
417}
418
419static inline void simulate_sc(struct pt_regs *regs, unsigned int opcode)
420{
421 unsigned long *vaddr, reg;
422 long offset;
423 int signal = 0;
424
425 /*
426 * analyse the sc instruction that just caused a ri exception
427 * and put the referenced address to addr.
428 */
429
430 /* sign extend offset */
431 offset = opcode & OFFSET;
432 offset <<= 16;
433 offset >>= 16;
434
435 vaddr = (unsigned long *)((long)(regs->regs[(opcode & BASE) >> 21]) + offset);
436 reg = (opcode & RT) >> 16;
437
438 if ((unsigned long)vaddr & 3) {
439 signal = SIGBUS;
440 goto sig;
441 }
442
443 preempt_disable();
444
445 if (ll_bit == 0 || ll_task != current) {
446 regs->regs[reg] = 0;
447 preempt_enable();
448 compute_return_epc(regs);
449 return;
450 }
451
452 preempt_enable();
453
454 if (put_user(regs->regs[reg], vaddr)) {
455 signal = SIGSEGV;
456 goto sig;
457 }
458
459 regs->regs[reg] = 1;
460
461 compute_return_epc(regs);
462 return;
463
464sig:
465 force_sig(signal, current);
466}
467
468/*
469 * ll uses the opcode of lwc0 and sc uses the opcode of swc0. That is both
470 * opcodes are supposed to result in coprocessor unusable exceptions if
471 * executed on ll/sc-less processors. That's the theory. In practice a
472 * few processors such as NEC's VR4100 throw reserved instruction exceptions
473 * instead, so we're doing the emulation thing in both exception handlers.
474 */
475static inline int simulate_llsc(struct pt_regs *regs)
476{
477 unsigned int opcode;
478
479 if (unlikely(get_insn_opcode(regs, &opcode)))
480 return -EFAULT;
481
482 if ((opcode & OPCODE) == LL) {
483 simulate_ll(regs, opcode);
484 return 0;
485 }
486 if ((opcode & OPCODE) == SC) {
487 simulate_sc(regs, opcode);
488 return 0;
489 }
490
491 return -EFAULT; /* Strange things going on ... */
492}
493
494asmlinkage void do_ov(struct pt_regs *regs)
495{
496 siginfo_t info;
497
498 info.si_code = FPE_INTOVF;
499 info.si_signo = SIGFPE;
500 info.si_errno = 0;
501 info.si_addr = (void *)regs->cp0_epc;
502 force_sig_info(SIGFPE, &info, current);
503}
504
505/*
506 * XXX Delayed fp exceptions when doing a lazy ctx switch XXX
507 */
508asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31)
509{
510 if (fcr31 & FPU_CSR_UNI_X) {
511 int sig;
512
513 preempt_disable();
514
515 /*
516 * Unimplemented operation exception. If we've got the full
517 * software emulator on-board, let's use it...
518 *
519 * Force FPU to dump state into task/thread context. We're
520 * moving a lot of data here for what is probably a single
521 * instruction, but the alternative is to pre-decode the FP
522 * register operands before invoking the emulator, which seems
523 * a bit extreme for what should be an infrequent event.
524 */
525 save_fp(current);
526
527 /* Run the emulator */
528 sig = fpu_emulator_cop1Handler (0, regs,
529 &current->thread.fpu.soft);
530
531 /*
532 * We can't allow the emulated instruction to leave any of
533 * the cause bit set in $fcr31.
534 */
535 current->thread.fpu.soft.fcr31 &= ~FPU_CSR_ALL_X;
536
537 /* Restore the hardware register state */
538 restore_fp(current);
539
540 preempt_enable();
541
542 /* If something went wrong, signal */
543 if (sig)
544 force_sig(sig, current);
545
546 return;
547 }
548
549 force_sig(SIGFPE, current);
550}
551
552asmlinkage void do_bp(struct pt_regs *regs)
553{
554 unsigned int opcode, bcode;
555 siginfo_t info;
556
557 die_if_kernel("Break instruction in kernel code", regs);
558
559 if (get_insn_opcode(regs, &opcode))
560 return;
561
562 /*
563 * There is the ancient bug in the MIPS assemblers that the break
564 * code starts left to bit 16 instead to bit 6 in the opcode.
565 * Gas is bug-compatible, but not always, grrr...
566 * We handle both cases with a simple heuristics. --macro
567 */
568 bcode = ((opcode >> 6) & ((1 << 20) - 1));
569 if (bcode < (1 << 10))
570 bcode <<= 10;
571
572 /*
573 * (A short test says that IRIX 5.3 sends SIGTRAP for all break
574 * insns, even for break codes that indicate arithmetic failures.
575 * Weird ...)
576 * But should we continue the brokenness??? --macro
577 */
578 switch (bcode) {
579 case BRK_OVERFLOW << 10:
580 case BRK_DIVZERO << 10:
581 if (bcode == (BRK_DIVZERO << 10))
582 info.si_code = FPE_INTDIV;
583 else
584 info.si_code = FPE_INTOVF;
585 info.si_signo = SIGFPE;
586 info.si_errno = 0;
587 info.si_addr = (void *)regs->cp0_epc;
588 force_sig_info(SIGFPE, &info, current);
589 break;
590 default:
591 force_sig(SIGTRAP, current);
592 }
593}
594
595asmlinkage void do_tr(struct pt_regs *regs)
596{
597 unsigned int opcode, tcode = 0;
598 siginfo_t info;
599
600 die_if_kernel("Trap instruction in kernel code", regs);
601
602 if (get_insn_opcode(regs, &opcode))
603 return;
604
605 /* Immediate versions don't provide a code. */
606 if (!(opcode & OPCODE))
607 tcode = ((opcode >> 6) & ((1 << 10) - 1));
608
609 /*
610 * (A short test says that IRIX 5.3 sends SIGTRAP for all trap
611 * insns, even for trap codes that indicate arithmetic failures.
612 * Weird ...)
613 * But should we continue the brokenness??? --macro
614 */
615 switch (tcode) {
616 case BRK_OVERFLOW:
617 case BRK_DIVZERO:
618 if (tcode == BRK_DIVZERO)
619 info.si_code = FPE_INTDIV;
620 else
621 info.si_code = FPE_INTOVF;
622 info.si_signo = SIGFPE;
623 info.si_errno = 0;
624 info.si_addr = (void *)regs->cp0_epc;
625 force_sig_info(SIGFPE, &info, current);
626 break;
627 default:
628 force_sig(SIGTRAP, current);
629 }
630}
631
632asmlinkage void do_ri(struct pt_regs *regs)
633{
634 die_if_kernel("Reserved instruction in kernel code", regs);
635
636 if (!cpu_has_llsc)
637 if (!simulate_llsc(regs))
638 return;
639
640 force_sig(SIGILL, current);
641}
642
643asmlinkage void do_cpu(struct pt_regs *regs)
644{
645 unsigned int cpid;
646
647 die_if_kernel("do_cpu invoked from kernel context!", regs);
648
649 cpid = (regs->cp0_cause >> CAUSEB_CE) & 3;
650
651 switch (cpid) {
652 case 0:
653 if (cpu_has_llsc)
654 break;
655
656 if (!simulate_llsc(regs))
657 return;
658 break;
659
660 case 1:
661 preempt_disable();
662
663 own_fpu();
664 if (used_math()) { /* Using the FPU again. */
665 restore_fp(current);
666 } else { /* First time FPU user. */
667 init_fpu();
668 set_used_math();
669 }
670
671 if (!cpu_has_fpu) {
672 int sig = fpu_emulator_cop1Handler(0, regs,
673 &current->thread.fpu.soft);
674 if (sig)
675 force_sig(sig, current);
676 }
677
678 preempt_enable();
679
680 return;
681
682 case 2:
683 case 3:
684 break;
685 }
686
687 force_sig(SIGILL, current);
688}
689
690asmlinkage void do_mdmx(struct pt_regs *regs)
691{
692 force_sig(SIGILL, current);
693}
694
695asmlinkage void do_watch(struct pt_regs *regs)
696{
697 /*
698 * We use the watch exception where available to detect stack
699 * overflows.
700 */
701 dump_tlb_all();
702 show_regs(regs);
703 panic("Caught WATCH exception - probably caused by stack overflow.");
704}
705
706asmlinkage void do_mcheck(struct pt_regs *regs)
707{
708 show_regs(regs);
709 dump_tlb_all();
710 /*
711 * Some chips may have other causes of machine check (e.g. SB1
712 * graduation timer)
713 */
714 panic("Caught Machine Check exception - %scaused by multiple "
715 "matching entries in the TLB.",
716 (regs->cp0_status & ST0_TS) ? "" : "not ");
717}
718
719asmlinkage void do_reserved(struct pt_regs *regs)
720{
721 /*
722 * Game over - no way to handle this if it ever occurs. Most probably
723 * caused by a new unknown cpu type or after another deadly
724 * hard/software error.
725 */
726 show_regs(regs);
727 panic("Caught reserved exception %ld - should not happen.",
728 (regs->cp0_cause & 0x7f) >> 2);
729}
730
731/*
732 * Some MIPS CPUs can enable/disable for cache parity detection, but do
733 * it different ways.
734 */
735static inline void parity_protection_init(void)
736{
737 switch (current_cpu_data.cputype) {
738 case CPU_24K:
1da177e4 739 case CPU_5KC:
14f18b7f
RB
740 write_c0_ecc(0x80000000);
741 back_to_back_c0_hazard();
742 /* Set the PE bit (bit 31) in the c0_errctl register. */
743 printk(KERN_INFO "Cache parity protection %sabled\n",
744 (read_c0_ecc() & 0x80000000) ? "en" : "dis");
1da177e4
LT
745 break;
746 case CPU_20KC:
747 case CPU_25KF:
748 /* Clear the DE bit (bit 16) in the c0_status register. */
749 printk(KERN_INFO "Enable cache parity protection for "
750 "MIPS 20KC/25KF CPUs.\n");
751 clear_c0_status(ST0_DE);
752 break;
753 default:
754 break;
755 }
756}
757
758asmlinkage void cache_parity_error(void)
759{
760 const int field = 2 * sizeof(unsigned long);
761 unsigned int reg_val;
762
763 /* For the moment, report the problem and hang. */
764 printk("Cache error exception:\n");
765 printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
766 reg_val = read_c0_cacheerr();
767 printk("c0_cacheerr == %08x\n", reg_val);
768
769 printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
770 reg_val & (1<<30) ? "secondary" : "primary",
771 reg_val & (1<<31) ? "data" : "insn");
772 printk("Error bits: %s%s%s%s%s%s%s\n",
773 reg_val & (1<<29) ? "ED " : "",
774 reg_val & (1<<28) ? "ET " : "",
775 reg_val & (1<<26) ? "EE " : "",
776 reg_val & (1<<25) ? "EB " : "",
777 reg_val & (1<<24) ? "EI " : "",
778 reg_val & (1<<23) ? "E1 " : "",
779 reg_val & (1<<22) ? "E0 " : "");
780 printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1));
781
782#if defined(CONFIG_CPU_MIPS32) || defined (CONFIG_CPU_MIPS64)
783 if (reg_val & (1<<22))
784 printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0());
785
786 if (reg_val & (1<<23))
787 printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1());
788#endif
789
790 panic("Can't handle the cache error!");
791}
792
793/*
794 * SDBBP EJTAG debug exception handler.
795 * We skip the instruction and return to the next instruction.
796 */
797void ejtag_exception_handler(struct pt_regs *regs)
798{
799 const int field = 2 * sizeof(unsigned long);
800 unsigned long depc, old_epc;
801 unsigned int debug;
802
803 printk("SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
804 depc = read_c0_depc();
805 debug = read_c0_debug();
806 printk("c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
807 if (debug & 0x80000000) {
808 /*
809 * In branch delay slot.
810 * We cheat a little bit here and use EPC to calculate the
811 * debug return address (DEPC). EPC is restored after the
812 * calculation.
813 */
814 old_epc = regs->cp0_epc;
815 regs->cp0_epc = depc;
816 __compute_return_epc(regs);
817 depc = regs->cp0_epc;
818 regs->cp0_epc = old_epc;
819 } else
820 depc += 4;
821 write_c0_depc(depc);
822
823#if 0
824 printk("\n\n----- Enable EJTAG single stepping ----\n\n");
825 write_c0_debug(debug | 0x100);
826#endif
827}
828
829/*
830 * NMI exception handler.
831 */
832void nmi_exception_handler(struct pt_regs *regs)
833{
834 printk("NMI taken!!!!\n");
835 die("NMI", regs);
836 while(1) ;
837}
838
839unsigned long exception_handlers[32];
840
841/*
842 * As a side effect of the way this is implemented we're limited
843 * to interrupt handlers in the address range from
844 * KSEG0 <= x < KSEG0 + 256mb on the Nevada. Oh well ...
845 */
846void *set_except_vector(int n, void *addr)
847{
848 unsigned long handler = (unsigned long) addr;
849 unsigned long old_handler = exception_handlers[n];
850
851 exception_handlers[n] = handler;
852 if (n == 0 && cpu_has_divec) {
853 *(volatile u32 *)(CAC_BASE + 0x200) = 0x08000000 |
854 (0x03ffffff & (handler >> 2));
855 flush_icache_range(CAC_BASE + 0x200, CAC_BASE + 0x204);
856 }
857 return (void *)old_handler;
858}
859
860/*
861 * This is used by native signal handling
862 */
863asmlinkage int (*save_fp_context)(struct sigcontext *sc);
864asmlinkage int (*restore_fp_context)(struct sigcontext *sc);
865
866extern asmlinkage int _save_fp_context(struct sigcontext *sc);
867extern asmlinkage int _restore_fp_context(struct sigcontext *sc);
868
869extern asmlinkage int fpu_emulator_save_context(struct sigcontext *sc);
870extern asmlinkage int fpu_emulator_restore_context(struct sigcontext *sc);
871
872static inline void signal_init(void)
873{
874 if (cpu_has_fpu) {
875 save_fp_context = _save_fp_context;
876 restore_fp_context = _restore_fp_context;
877 } else {
878 save_fp_context = fpu_emulator_save_context;
879 restore_fp_context = fpu_emulator_restore_context;
880 }
881}
882
883#ifdef CONFIG_MIPS32_COMPAT
884
885/*
886 * This is used by 32-bit signal stuff on the 64-bit kernel
887 */
888asmlinkage int (*save_fp_context32)(struct sigcontext32 *sc);
889asmlinkage int (*restore_fp_context32)(struct sigcontext32 *sc);
890
891extern asmlinkage int _save_fp_context32(struct sigcontext32 *sc);
892extern asmlinkage int _restore_fp_context32(struct sigcontext32 *sc);
893
894extern asmlinkage int fpu_emulator_save_context32(struct sigcontext32 *sc);
895extern asmlinkage int fpu_emulator_restore_context32(struct sigcontext32 *sc);
896
897static inline void signal32_init(void)
898{
899 if (cpu_has_fpu) {
900 save_fp_context32 = _save_fp_context32;
901 restore_fp_context32 = _restore_fp_context32;
902 } else {
903 save_fp_context32 = fpu_emulator_save_context32;
904 restore_fp_context32 = fpu_emulator_restore_context32;
905 }
906}
907#endif
908
909extern void cpu_cache_init(void);
910extern void tlb_init(void);
911
912void __init per_cpu_trap_init(void)
913{
914 unsigned int cpu = smp_processor_id();
915 unsigned int status_set = ST0_CU0;
916
917 /*
918 * Disable coprocessors and select 32-bit or 64-bit addressing
919 * and the 16/32 or 32/32 FPR register model. Reset the BEV
920 * flag that some firmware may have left set and the TS bit (for
921 * IP27). Set XX for ISA IV code to work.
922 */
875d43e7 923#ifdef CONFIG_64BIT
1da177e4
LT
924 status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX;
925#endif
926 if (current_cpu_data.isa_level == MIPS_CPU_ISA_IV)
927 status_set |= ST0_XX;
928 change_c0_status(ST0_CU|ST0_FR|ST0_BEV|ST0_TS|ST0_KX|ST0_SX|ST0_UX,
929 status_set);
930
931 /*
932 * Some MIPS CPUs have a dedicated interrupt vector which reduces the
933 * interrupt processing overhead. Use it where available.
934 */
935 if (cpu_has_divec)
936 set_c0_cause(CAUSEF_IV);
937
938 cpu_data[cpu].asid_cache = ASID_FIRST_VERSION;
939 TLBMISS_HANDLER_SETUP();
940
941 atomic_inc(&init_mm.mm_count);
942 current->active_mm = &init_mm;
943 BUG_ON(current->mm);
944 enter_lazy_tlb(&init_mm, current);
945
946 cpu_cache_init();
947 tlb_init();
948}
949
950void __init trap_init(void)
951{
952 extern char except_vec3_generic, except_vec3_r4000;
953 extern char except_vec_ejtag_debug;
954 extern char except_vec4;
955 unsigned long i;
956
957 per_cpu_trap_init();
958
959 /*
960 * Copy the generic exception handlers to their final destination.
961 * This will be overriden later as suitable for a particular
962 * configuration.
963 */
964 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_generic, 0x80);
965
966 /*
967 * Setup default vectors
968 */
969 for (i = 0; i <= 31; i++)
970 set_except_vector(i, handle_reserved);
971
972 /*
973 * Copy the EJTAG debug exception vector handler code to it's final
974 * destination.
975 */
976 if (cpu_has_ejtag)
977 memcpy((void *)(CAC_BASE + 0x300), &except_vec_ejtag_debug, 0x80);
978
979 /*
980 * Only some CPUs have the watch exceptions.
981 */
982 if (cpu_has_watch)
983 set_except_vector(23, handle_watch);
984
985 /*
986 * Some MIPS CPUs have a dedicated interrupt vector which reduces the
987 * interrupt processing overhead. Use it where available.
988 */
989 if (cpu_has_divec)
990 memcpy((void *)(CAC_BASE + 0x200), &except_vec4, 0x8);
991
992 /*
993 * Some CPUs can enable/disable for cache parity detection, but does
994 * it different ways.
995 */
996 parity_protection_init();
997
998 /*
999 * The Data Bus Errors / Instruction Bus Errors are signaled
1000 * by external hardware. Therefore these two exceptions
1001 * may have board specific handlers.
1002 */
1003 if (board_be_init)
1004 board_be_init();
1005
1006 set_except_vector(1, handle_tlbm);
1007 set_except_vector(2, handle_tlbl);
1008 set_except_vector(3, handle_tlbs);
1009
1010 set_except_vector(4, handle_adel);
1011 set_except_vector(5, handle_ades);
1012
1013 set_except_vector(6, handle_ibe);
1014 set_except_vector(7, handle_dbe);
1015
1016 set_except_vector(8, handle_sys);
1017 set_except_vector(9, handle_bp);
1018 set_except_vector(10, handle_ri);
1019 set_except_vector(11, handle_cpu);
1020 set_except_vector(12, handle_ov);
1021 set_except_vector(13, handle_tr);
1022 set_except_vector(22, handle_mdmx);
1023
1024 if (cpu_has_fpu && !cpu_has_nofpuex)
1025 set_except_vector(15, handle_fpe);
1026
1027 if (cpu_has_mcheck)
1028 set_except_vector(24, handle_mcheck);
1029
1030 if (cpu_has_vce)
1031 /* Special exception: R4[04]00 uses also the divec space. */
1032 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_r4000, 0x100);
1033 else if (cpu_has_4kex)
1034 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_generic, 0x80);
1035 else
1036 memcpy((void *)(CAC_BASE + 0x080), &except_vec3_generic, 0x80);
1037
1038 if (current_cpu_data.cputype == CPU_R6000 ||
1039 current_cpu_data.cputype == CPU_R6000A) {
1040 /*
1041 * The R6000 is the only R-series CPU that features a machine
1042 * check exception (similar to the R4000 cache error) and
1043 * unaligned ldc1/sdc1 exception. The handlers have not been
1044 * written yet. Well, anyway there is no R6000 machine on the
1045 * current list of targets for Linux/MIPS.
1046 * (Duh, crap, there is someone with a triple R6k machine)
1047 */
1048 //set_except_vector(14, handle_mc);
1049 //set_except_vector(15, handle_ndc);
1050 }
1051
1052 signal_init();
1053#ifdef CONFIG_MIPS32_COMPAT
1054 signal32_init();
1055#endif
1056
1057 flush_icache_range(CAC_BASE, CAC_BASE + 0x400);
1058}