2 * File: arch/blackfin/kernel/traps.c
4 * Author: Hamish Macdonald
7 * Description: uses S/W interrupt 15 for the system calls
10 * Copyright 2004-2006 Analog Devices Inc.
12 * Bugs: Enter bugs at http://blackfin.uclinux.org/
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see the file COPYING, or write
26 * to the Free Software Foundation, Inc.,
27 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 #include <linux/uaccess.h>
31 #include <linux/interrupt.h>
32 #include <linux/module.h>
33 #include <linux/kallsyms.h>
35 #include <asm/traps.h>
36 #include <asm/cacheflush.h>
37 #include <asm/blackfin.h>
38 #include <asm/irq_handler.h>
39 #include <linux/irq.h>
40 #include <asm/trace.h>
41 #include <asm/fixed_code.h>
45 # include <linux/debugger.h>
46 # include <linux/kgdb.h>
48 # define CHK_DEBUGGER_TRAP() \
50 CHK_DEBUGGER(trapnr, sig, info.si_code, fp, ); \
52 # define CHK_DEBUGGER_TRAP_MAYBE() \
55 CHK_DEBUGGER_TRAP(); \
58 # define CHK_DEBUGGER_TRAP() do { } while (0)
59 # define CHK_DEBUGGER_TRAP_MAYBE() do { } while (0)
62 /* Initiate the event table handler */
63 void __init trap_init(void)
66 bfin_write_EVT3(trap);
70 int kstack_depth_to_print = 48;
72 static void decode_address(char *buf, unsigned long address)
74 struct vm_list_struct *vml;
75 struct task_struct *p;
77 unsigned long flags, offset;
78 unsigned char in_atomic = (bfin_read_IPEND() & 0x10) || in_atomic();
80 #ifdef CONFIG_KALLSYMS
81 unsigned long symsize;
87 /* look up the address and see if we are in kernel space */
88 symname = kallsyms_lookup(address, &symsize, &offset, &modname, namebuf);
91 /* yeah! kernel space! */
94 sprintf(buf, "<0x%p> { %s%s%s%s + 0x%lx }",
95 (void *)address, delim, modname, delim, symname,
96 (unsigned long)offset);
102 /* Problem in fixed code section? */
103 if (address >= FIXED_CODE_START && address < FIXED_CODE_END) {
104 sprintf(buf, "<0x%p> /* Maybe fixed code section */", (void *)address);
108 /* Problem somewhere before the kernel start address */
109 if (address < CONFIG_BOOT_LOAD) {
110 sprintf(buf, "<0x%p> /* Maybe null pointer? */", (void *)address);
114 /* looks like we're off in user-land, so let's walk all the
115 * mappings of all our processes and see if we can't be a whee
118 write_lock_irqsave(&tasklist_lock, flags);
119 for_each_process(p) {
120 mm = (in_atomic ? p->mm : get_task_mm(p));
124 vml = mm->context.vmlist;
126 struct vm_area_struct *vma = vml->vma;
128 if (address >= vma->vm_start && address < vma->vm_end) {
130 char *name = p->comm;
131 struct file *file = vma->vm_file;
134 name = d_path(&file->f_path, _tmpbuf,
137 /* FLAT does not have its text aligned to the start of
138 * the map while FDPIC ELF does ...
141 /* before we can check flat/fdpic, we need to
142 * make sure current is valid
144 if ((unsigned long)current >= FIXED_CODE_START &&
145 !((unsigned long)current & 0x3)) {
147 (address > current->mm->start_code) &&
148 (address < current->mm->end_code))
149 offset = address - current->mm->start_code;
151 offset = (address - vma->vm_start) +
152 (vma->vm_pgoff << PAGE_SHIFT);
154 sprintf(buf, "<0x%p> [ %s + 0x%lx ]",
155 (void *)address, name, offset);
157 sprintf(buf, "<0x%p> [ %s vma:0x%lx-0x%lx]",
158 (void *)address, name,
159 vma->vm_start, vma->vm_end);
173 /* we were unable to find this address anywhere */
174 sprintf(buf, "<0x%p> /* unknown address */", (void *)address);
177 write_unlock_irqrestore(&tasklist_lock, flags);
180 asmlinkage void double_fault_c(struct pt_regs *fp)
183 oops_in_progress = 1;
184 printk(KERN_EMERG "\n" KERN_EMERG "Double Fault\n");
185 dump_bfin_process(fp);
188 panic("Double Fault - unrecoverable event\n");
192 asmlinkage void trap_c(struct pt_regs *fp)
194 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_ON
199 unsigned long trapnr = fp->seqstat & SEQSTAT_EXCAUSE;
201 trace_buffer_save(j);
203 /* Important - be very careful dereferncing pointers - will lead to
204 * double faults if the stack has become corrupt
207 /* If the fault was caused by a kernel thread, or interrupt handler
208 * we will kernel panic, so the system reboots.
209 * If KGDB is enabled, don't set this for kernel breakpoints
212 /* TODO: check to see if we are in some sort of deferred HWERR
213 * that we should be able to recover from, not kernel panic
215 if ((bfin_read_IPEND() & 0xFFC0) && (trapnr != VEC_STEP)
217 && (trapnr != VEC_EXCPT02)
221 oops_in_progress = 1;
222 } else if (current) {
223 if (current->mm == NULL) {
225 oops_in_progress = 1;
229 /* trap_c() will be called for exceptions. During exceptions
230 * processing, the pc value should be set with retx value.
231 * With this change we can cleanup some code in signal.c- TODO
233 fp->orig_pc = fp->retx;
234 /* printk("exception: 0x%x, ipend=%x, reti=%x, retx=%x\n",
235 trapnr, fp->ipend, fp->pc, fp->retx); */
237 /* send the appropriate signal to the user program */
240 /* This table works in conjuction with the one in ./mach-common/entry.S
241 * Some exceptions are handled there (in assembly, in exception space)
242 * Some are handled here, (in C, in interrupt space)
243 * Some, like CPLB, are handled in both, where the normal path is
244 * handled in assembly/exception space, and the error path is handled
248 /* 0x00 - Linux Syscall, getting here is an error */
249 /* 0x01 - userspace gdb breakpoint, handled here */
251 info.si_code = TRAP_ILLTRAP;
253 CHK_DEBUGGER_TRAP_MAYBE();
254 /* Check if this is a breakpoint in kernel space */
255 if (fp->ipend & 0xffc0)
260 case VEC_EXCPT02 : /* gdb connection */
261 info.si_code = TRAP_ILLTRAP;
266 /* 0x02 - User Defined, Caught by default */
268 /* 0x03 - User Defined, userspace stack overflow */
270 info.si_code = SEGV_STACKFLOW;
272 printk(KERN_NOTICE EXC_0x03(KERN_NOTICE));
275 /* 0x04 - User Defined, Caught by default */
276 /* 0x05 - User Defined, Caught by default */
277 /* 0x06 - User Defined, Caught by default */
278 /* 0x07 - User Defined, Caught by default */
279 /* 0x08 - User Defined, Caught by default */
280 /* 0x09 - User Defined, Caught by default */
281 /* 0x0A - User Defined, Caught by default */
282 /* 0x0B - User Defined, Caught by default */
283 /* 0x0C - User Defined, Caught by default */
284 /* 0x0D - User Defined, Caught by default */
285 /* 0x0E - User Defined, Caught by default */
286 /* 0x0F - User Defined, Caught by default */
287 /* 0x10 HW Single step, handled here */
289 info.si_code = TRAP_STEP;
291 CHK_DEBUGGER_TRAP_MAYBE();
292 /* Check if this is a single step in kernel space */
293 if (fp->ipend & 0xffc0)
297 /* 0x11 - Trace Buffer Full, handled here */
299 info.si_code = TRAP_TRACEFLOW;
301 printk(KERN_NOTICE EXC_0x11(KERN_NOTICE));
304 /* 0x12 - Reserved, Caught by default */
305 /* 0x13 - Reserved, Caught by default */
306 /* 0x14 - Reserved, Caught by default */
307 /* 0x15 - Reserved, Caught by default */
308 /* 0x16 - Reserved, Caught by default */
309 /* 0x17 - Reserved, Caught by default */
310 /* 0x18 - Reserved, Caught by default */
311 /* 0x19 - Reserved, Caught by default */
312 /* 0x1A - Reserved, Caught by default */
313 /* 0x1B - Reserved, Caught by default */
314 /* 0x1C - Reserved, Caught by default */
315 /* 0x1D - Reserved, Caught by default */
316 /* 0x1E - Reserved, Caught by default */
317 /* 0x1F - Reserved, Caught by default */
318 /* 0x20 - Reserved, Caught by default */
319 /* 0x21 - Undefined Instruction, handled here */
321 info.si_code = ILL_ILLOPC;
323 printk(KERN_NOTICE EXC_0x21(KERN_NOTICE));
326 /* 0x22 - Illegal Instruction Combination, handled here */
328 info.si_code = ILL_ILLPARAOP;
330 printk(KERN_NOTICE EXC_0x22(KERN_NOTICE));
333 /* 0x23 - Data CPLB protection violation, handled here */
335 info.si_code = ILL_CPLB_VI;
337 printk(KERN_NOTICE EXC_0x23(KERN_NOTICE));
340 /* 0x24 - Data access misaligned, handled here */
342 info.si_code = BUS_ADRALN;
344 printk(KERN_NOTICE EXC_0x24(KERN_NOTICE));
347 /* 0x25 - Unrecoverable Event, handled here */
349 info.si_code = ILL_ILLEXCPT;
351 printk(KERN_NOTICE EXC_0x25(KERN_NOTICE));
354 /* 0x26 - Data CPLB Miss, normal case is handled in _cplb_hdr,
355 error case is handled here */
357 info.si_code = BUS_ADRALN;
359 printk(KERN_NOTICE EXC_0x26(KERN_NOTICE));
362 /* 0x27 - Data CPLB Multiple Hits - Linux Trap Zero, handled here */
364 info.si_code = ILL_CPLB_MULHIT;
365 #ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
367 printk(KERN_NOTICE "NULL pointer access (probably)\n");
370 printk(KERN_NOTICE EXC_0x27(KERN_NOTICE));
374 /* 0x28 - Emulation Watchpoint, handled here */
376 info.si_code = TRAP_WATCHPT;
378 pr_debug(EXC_0x28(KERN_DEBUG));
379 CHK_DEBUGGER_TRAP_MAYBE();
380 /* Check if this is a watchpoint in kernel space */
381 if (fp->ipend & 0xffc0)
386 /* 0x29 - Instruction fetch access error (535 only) */
387 case VEC_ISTRU_VL: /* ADSP-BF535 only (MH) */
388 info.si_code = BUS_OPFETCH;
390 printk(KERN_NOTICE "BF535: VEC_ISTRU_VL\n");
394 /* 0x29 - Reserved, Caught by default */
396 /* 0x2A - Instruction fetch misaligned, handled here */
398 info.si_code = BUS_ADRALN;
400 printk(KERN_NOTICE EXC_0x2A(KERN_NOTICE));
403 /* 0x2B - Instruction CPLB protection violation, handled here */
405 info.si_code = ILL_CPLB_VI;
407 printk(KERN_NOTICE EXC_0x2B(KERN_NOTICE));
410 /* 0x2C - Instruction CPLB miss, handled in _cplb_hdr */
412 info.si_code = ILL_CPLB_MISS;
414 printk(KERN_NOTICE EXC_0x2C(KERN_NOTICE));
417 /* 0x2D - Instruction CPLB Multiple Hits, handled here */
418 case VEC_CPLB_I_MHIT:
419 info.si_code = ILL_CPLB_MULHIT;
420 #ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
422 printk(KERN_NOTICE "Jump to address 0 - 0x0fff\n");
425 printk(KERN_NOTICE EXC_0x2D(KERN_NOTICE));
429 /* 0x2E - Illegal use of Supervisor Resource, handled here */
431 info.si_code = ILL_PRVOPC;
433 printk(KERN_NOTICE EXC_0x2E(KERN_NOTICE));
436 /* 0x2F - Reserved, Caught by default */
437 /* 0x30 - Reserved, Caught by default */
438 /* 0x31 - Reserved, Caught by default */
439 /* 0x32 - Reserved, Caught by default */
440 /* 0x33 - Reserved, Caught by default */
441 /* 0x34 - Reserved, Caught by default */
442 /* 0x35 - Reserved, Caught by default */
443 /* 0x36 - Reserved, Caught by default */
444 /* 0x37 - Reserved, Caught by default */
445 /* 0x38 - Reserved, Caught by default */
446 /* 0x39 - Reserved, Caught by default */
447 /* 0x3A - Reserved, Caught by default */
448 /* 0x3B - Reserved, Caught by default */
449 /* 0x3C - Reserved, Caught by default */
450 /* 0x3D - Reserved, Caught by default */
451 /* 0x3E - Reserved, Caught by default */
452 /* 0x3F - Reserved, Caught by default */
454 info.si_code = BUS_ADRALN;
456 switch (fp->seqstat & SEQSTAT_HWERRCAUSE) {
457 /* System MMR Error */
458 case (SEQSTAT_HWERRCAUSE_SYSTEM_MMR):
459 info.si_code = BUS_ADRALN;
461 printk(KERN_NOTICE HWC_x2(KERN_NOTICE));
463 /* External Memory Addressing Error */
464 case (SEQSTAT_HWERRCAUSE_EXTERN_ADDR):
465 info.si_code = BUS_ADRERR;
467 printk(KERN_NOTICE HWC_x3(KERN_NOTICE));
469 /* Performance Monitor Overflow */
470 case (SEQSTAT_HWERRCAUSE_PERF_FLOW):
471 printk(KERN_NOTICE HWC_x12(KERN_NOTICE));
473 /* RAISE 5 instruction */
474 case (SEQSTAT_HWERRCAUSE_RAISE_5):
475 printk(KERN_NOTICE HWC_x18(KERN_NOTICE));
477 default: /* Reserved */
478 printk(KERN_NOTICE HWC_default(KERN_NOTICE));
484 info.si_code = TRAP_ILLTRAP;
486 printk(KERN_EMERG "Caught Unhandled Exception, code = %08lx\n",
487 (fp->seqstat & SEQSTAT_EXCAUSE));
494 if (sig != SIGTRAP) {
496 dump_bfin_process(fp);
500 /* Print out the trace buffer if it makes sense */
501 #ifndef CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE
502 if (trapnr == VEC_CPLB_I_M || trapnr == VEC_CPLB_M)
503 printk(KERN_NOTICE "No trace since you do not have "
504 "CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE enabled\n"
508 dump_bfin_trace_buffer();
509 show_stack(current, &stack);
510 if (oops_in_progress) {
512 #ifndef CONFIG_ACCESS_CHECK
513 printk(KERN_EMERG "Please turn on "
514 "CONFIG_ACCESS_CHECK\n");
516 panic("Kernel exception");
522 info.si_addr = (void __user *)fp->pc;
523 force_sig_info(sig, &info, current);
525 trace_buffer_restore(j);
529 /* Typical exception handling routines */
531 #define EXPAND_LEN ((1 << CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN) * 256 - 1)
533 void dump_bfin_trace_buffer(void)
535 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_ON
538 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_EXPAND
542 trace_buffer_save(tflags);
544 printk(KERN_NOTICE "Hardware Trace:\n");
546 if (likely(bfin_read_TBUFSTAT() & TBUFCNT)) {
547 for (; bfin_read_TBUFSTAT() & TBUFCNT; i++) {
548 decode_address(buf, (unsigned long)bfin_read_TBUF());
549 printk(KERN_NOTICE "%4i Target : %s\n", i, buf);
550 decode_address(buf, (unsigned long)bfin_read_TBUF());
551 printk(KERN_NOTICE " Source : %s\n", buf);
555 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_EXPAND
556 if (trace_buff_offset)
557 index = trace_buff_offset/4 - 1;
561 j = (1 << CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN) * 128;
563 decode_address(buf, software_trace_buff[index]);
564 printk(KERN_NOTICE "%4i Target : %s\n", i, buf);
568 decode_address(buf, software_trace_buff[index]);
569 printk(KERN_NOTICE " Source : %s\n", buf);
578 trace_buffer_restore(tflags);
581 EXPORT_SYMBOL(dump_bfin_trace_buffer);
583 static void show_trace(struct task_struct *tsk, unsigned long *sp)
587 printk(KERN_NOTICE "\n" KERN_NOTICE "Call Trace:\n");
589 while (!kstack_end(sp)) {
592 * If the address is either in the text segment of the
593 * kernel, or in the region which contains vmalloc'ed
594 * memory, it *may* be the address of a calling
595 * routine; if so, print it so that someone tracing
596 * down the cause of the crash will be able to figure
597 * out the call path that was taken.
599 if (kernel_text_address(addr))
603 printk(KERN_NOTICE "\n");
606 void show_stack(struct task_struct *task, unsigned long *stack)
608 unsigned long *endstack, addr;
611 /* Cannot call dump_bfin_trace_buffer() here as show_stack() is
612 * called externally in some places in the kernel.
617 stack = (unsigned long *)task->thread.ksp;
619 stack = (unsigned long *)&stack;
622 addr = (unsigned long)stack;
623 endstack = (unsigned long *)PAGE_ALIGN(addr);
625 printk(KERN_NOTICE "Stack from %08lx:", (unsigned long)stack);
626 for (i = 0; i < kstack_depth_to_print; i++) {
627 if (stack + 1 > endstack)
630 printk("\n" KERN_NOTICE " ");
631 printk(" %08lx", *stack++);
635 show_trace(task, stack);
638 void dump_stack(void)
641 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_ON
644 trace_buffer_save(tflags);
645 dump_bfin_trace_buffer();
646 show_stack(current, &stack);
647 trace_buffer_restore(tflags);
649 EXPORT_SYMBOL(dump_stack);
651 void dump_bfin_process(struct pt_regs *fp)
653 /* We should be able to look at fp->ipend, but we don't push it on the
654 * stack all the time, so do this until we fix that */
655 unsigned int context = bfin_read_IPEND();
657 if (oops_in_progress)
658 printk(KERN_EMERG "Kernel OOPS in progress\n");
660 if (context & 0x0020 && (fp->seqstat & SEQSTAT_EXCAUSE) == VEC_HWERR)
661 printk(KERN_NOTICE "HW Error context\n");
662 else if (context & 0x0020)
663 printk(KERN_NOTICE "Deferred Exception context\n");
664 else if (context & 0x3FC0)
665 printk(KERN_NOTICE "Interrupt context\n");
666 else if (context & 0x4000)
667 printk(KERN_NOTICE "Deferred Interrupt context\n");
668 else if (context & 0x8000)
669 printk(KERN_NOTICE "Kernel process context\n");
671 /* Because we are crashing, and pointers could be bad, we check things
672 * pretty closely before we use them
674 if ((unsigned long)current >= FIXED_CODE_START &&
675 !((unsigned long)current & 0x3) && current->pid) {
676 printk(KERN_NOTICE "CURRENT PROCESS:\n");
677 if (current->comm >= (char *)FIXED_CODE_START)
678 printk(KERN_NOTICE "COMM=%s PID=%d\n",
679 current->comm, current->pid);
681 printk(KERN_NOTICE "COMM= invalid\n");
683 if (!((unsigned long)current->mm & 0x3) && (unsigned long)current->mm >= FIXED_CODE_START)
684 printk(KERN_NOTICE "TEXT = 0x%p-0x%p DATA = 0x%p-0x%p\n"
685 KERN_NOTICE " BSS = 0x%p-0x%p USER-STACK = 0x%p\n"
687 (void *)current->mm->start_code,
688 (void *)current->mm->end_code,
689 (void *)current->mm->start_data,
690 (void *)current->mm->end_data,
691 (void *)current->mm->end_data,
692 (void *)current->mm->brk,
693 (void *)current->mm->start_stack);
695 printk(KERN_NOTICE "invalid mm\n");
697 printk(KERN_NOTICE "\n" KERN_NOTICE
698 "No Valid process in current context\n");
701 void dump_bfin_mem(struct pt_regs *fp)
703 unsigned short *addr, *erraddr, val = 0, err = 0;
704 char sti = 0, buf[6];
706 if (unlikely((fp->seqstat & SEQSTAT_EXCAUSE) == VEC_HWERR))
707 erraddr = (void *)fp->pc;
709 erraddr = (void *)fp->retx;
711 printk(KERN_NOTICE "return address: [0x%p]; contents of:", erraddr);
713 for (addr = (unsigned short *)((unsigned long)erraddr & ~0xF) - 0x10;
714 addr < (unsigned short *)((unsigned long)erraddr & ~0xF) + 0x10;
716 if (!((unsigned long)addr & 0xF))
717 printk("\n" KERN_NOTICE "0x%p: ", addr);
719 if (get_user(val, addr)) {
720 if (addr >= (unsigned short *)L1_CODE_START &&
721 addr < (unsigned short *)(L1_CODE_START + L1_CODE_LENGTH)) {
722 dma_memcpy(&val, addr, sizeof(val));
723 sprintf(buf, "%04x", val);
724 } else if (addr >= (unsigned short *)FIXED_CODE_START &&
725 addr <= (unsigned short *)memory_start) {
726 val = bfin_read16(addr);
727 sprintf(buf, "%04x", val);
730 sprintf(buf, "????");
733 sprintf(buf, "%04x", val);
735 if (addr == erraddr) {
741 /* Do any previous instructions turn on interrupts? */
742 if (addr <= erraddr && /* in the past */
743 ((val >= 0x0040 && val <= 0x0047) || /* STI instruction */
744 val == 0x017b)) /* [SP++] = RETI */
750 /* Hardware error interrupts can be deferred */
751 if (unlikely(sti && (fp->seqstat & SEQSTAT_EXCAUSE) == VEC_HWERR &&
753 printk(KERN_NOTICE "Looks like this was a deferred error - sorry\n");
754 #ifndef CONFIG_DEBUG_HWERR
755 printk(KERN_NOTICE "The remaining message may be meaningless\n"
756 KERN_NOTICE "You should enable CONFIG_DEBUG_HWERR to get a"
757 " better idea where it came from\n");
759 /* If we are handling only one peripheral interrupt
760 * and current mm and pid are valid, and the last error
761 * was in that user space process's text area
762 * print it out - because that is where the problem exists
764 if ((!(((fp)->ipend & ~0x30) & (((fp)->ipend & ~0x30) - 1))) &&
765 (current->pid && current->mm)) {
766 /* And the last RETI points to the current userspace context */
767 if ((fp + 1)->pc >= current->mm->start_code &&
768 (fp + 1)->pc <= current->mm->end_code) {
769 printk(KERN_NOTICE "It might be better to look around here : \n");
770 printk(KERN_NOTICE "-------------------------------------------\n");
772 printk(KERN_NOTICE "-------------------------------------------\n");
779 void show_regs(struct pt_regs *fp)
782 struct irqaction *action;
786 printk(KERN_NOTICE "\n" KERN_NOTICE "SEQUENCER STATUS:\t\t%s\n", print_tainted());
787 printk(KERN_NOTICE " SEQSTAT: %08lx IPEND: %04lx SYSCFG: %04lx\n",
788 (long)fp->seqstat, fp->ipend, fp->syscfg);
789 printk(KERN_NOTICE " HWERRCAUSE: 0x%lx\n",
790 (fp->seqstat & SEQSTAT_HWERRCAUSE) >> 14);
791 printk(KERN_NOTICE " EXCAUSE : 0x%lx\n",
792 fp->seqstat & SEQSTAT_EXCAUSE);
793 for (i = 6; i <= 15 ; i++) {
794 if (fp->ipend & (1 << i)) {
795 decode_address(buf, bfin_read32(EVT0 + 4*i));
796 printk(KERN_NOTICE " physical IVG%i asserted : %s\n", i, buf);
800 /* if no interrupts are going off, don't print this out */
801 if (fp->ipend & ~0x3F) {
802 for (i = 0; i < (NR_IRQS - 1); i++) {
803 spin_lock_irqsave(&irq_desc[i].lock, flags);
804 action = irq_desc[i].action;
808 decode_address(buf, (unsigned int)action->handler);
809 printk(KERN_NOTICE " logical irq %3d mapped : %s", i, buf);
810 for (action = action->next; action; action = action->next) {
811 decode_address(buf, (unsigned int)action->handler);
816 spin_unlock_irqrestore(&irq_desc[i].lock, flags);
820 decode_address(buf, fp->rete);
821 printk(KERN_NOTICE " RETE: %s\n", buf);
822 decode_address(buf, fp->retn);
823 printk(KERN_NOTICE " RETN: %s\n", buf);
824 decode_address(buf, fp->retx);
825 printk(KERN_NOTICE " RETX: %s\n", buf);
826 decode_address(buf, fp->rets);
827 printk(KERN_NOTICE " RETS: %s\n", buf);
828 decode_address(buf, fp->pc);
829 printk(KERN_NOTICE " PC : %s\n", buf);
831 if (((long)fp->seqstat & SEQSTAT_EXCAUSE) &&
832 (((long)fp->seqstat & SEQSTAT_EXCAUSE) != VEC_HWERR)) {
833 decode_address(buf, bfin_read_DCPLB_FAULT_ADDR());
834 printk(KERN_NOTICE "DCPLB_FAULT_ADDR: %s\n", buf);
835 decode_address(buf, bfin_read_ICPLB_FAULT_ADDR());
836 printk(KERN_NOTICE "ICPLB_FAULT_ADDR: %s\n", buf);
839 printk(KERN_NOTICE "\n" KERN_NOTICE "PROCESSOR STATE:\n");
840 printk(KERN_NOTICE " R0 : %08lx R1 : %08lx R2 : %08lx R3 : %08lx\n",
841 fp->r0, fp->r1, fp->r2, fp->r3);
842 printk(KERN_NOTICE " R4 : %08lx R5 : %08lx R6 : %08lx R7 : %08lx\n",
843 fp->r4, fp->r5, fp->r6, fp->r7);
844 printk(KERN_NOTICE " P0 : %08lx P1 : %08lx P2 : %08lx P3 : %08lx\n",
845 fp->p0, fp->p1, fp->p2, fp->p3);
846 printk(KERN_NOTICE " P4 : %08lx P5 : %08lx FP : %08lx SP : %08lx\n",
847 fp->p4, fp->p5, fp->fp, (long)fp);
848 printk(KERN_NOTICE " LB0: %08lx LT0: %08lx LC0: %08lx\n",
849 fp->lb0, fp->lt0, fp->lc0);
850 printk(KERN_NOTICE " LB1: %08lx LT1: %08lx LC1: %08lx\n",
851 fp->lb1, fp->lt1, fp->lc1);
852 printk(KERN_NOTICE " B0 : %08lx L0 : %08lx M0 : %08lx I0 : %08lx\n",
853 fp->b0, fp->l0, fp->m0, fp->i0);
854 printk(KERN_NOTICE " B1 : %08lx L1 : %08lx M1 : %08lx I1 : %08lx\n",
855 fp->b1, fp->l1, fp->m1, fp->i1);
856 printk(KERN_NOTICE " B2 : %08lx L2 : %08lx M2 : %08lx I2 : %08lx\n",
857 fp->b2, fp->l2, fp->m2, fp->i2);
858 printk(KERN_NOTICE " B3 : %08lx L3 : %08lx M3 : %08lx I3 : %08lx\n",
859 fp->b3, fp->l3, fp->m3, fp->i3);
860 printk(KERN_NOTICE "A0.w: %08lx A0.x: %08lx A1.w: %08lx A1.x: %08lx\n",
861 fp->a0w, fp->a0x, fp->a1w, fp->a1x);
863 printk(KERN_NOTICE "USP : %08lx ASTAT: %08lx\n",
866 printk(KERN_NOTICE "\n");
869 #ifdef CONFIG_SYS_BFIN_SPINLOCK_L1
870 asmlinkage int sys_bfin_spinlock(int *spinlock)__attribute__((l1_text));
873 asmlinkage int sys_bfin_spinlock(int *spinlock)
879 ret = get_user(tmp, spinlock);
884 put_user(tmp, spinlock);
890 int bfin_request_exception(unsigned int exception, void (*handler)(void))
892 void (*curr_handler)(void);
894 if (exception > 0x3F)
897 curr_handler = ex_table[exception];
899 if (curr_handler != ex_replaceable)
902 ex_table[exception] = handler;
906 EXPORT_SYMBOL(bfin_request_exception);
908 int bfin_free_exception(unsigned int exception, void (*handler)(void))
910 void (*curr_handler)(void);
912 if (exception > 0x3F)
915 curr_handler = ex_table[exception];
917 if (curr_handler != handler)
920 ex_table[exception] = ex_replaceable;
924 EXPORT_SYMBOL(bfin_free_exception);
926 void panic_cplb_error(int cplb_panic, struct pt_regs *fp)
928 switch (cplb_panic) {
929 case CPLB_NO_UNLOCKED:
930 printk(KERN_EMERG "All CPLBs are locked\n");
934 case CPLB_NO_ADDR_MATCH:
936 case CPLB_UNKNOWN_ERR:
937 printk(KERN_EMERG "Unknown CPLB Exception\n");
941 oops_in_progress = 1;
943 printk(KERN_EMERG "DCPLB_FAULT_ADDR=%p\n", (void *)bfin_read_DCPLB_FAULT_ADDR());
944 printk(KERN_EMERG "ICPLB_FAULT_ADDR=%p\n", (void *)bfin_read_ICPLB_FAULT_ADDR());
945 dump_bfin_process(fp);
949 panic("Unrecoverable event\n");