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 int in_exception
= bfin_read_IPEND() & 0x10;
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_exception
? 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
) {
129 char *name
= p
->comm
;
130 struct file
*file
= vma
->vm_file
;
133 name
= d_path(file
->f_dentry
,
139 /* FLAT does not have its text aligned to the start of
140 * the map while FDPIC ELF does ...
143 (address
> current
->mm
->start_code
) &&
144 (address
< current
->mm
->end_code
))
145 offset
= address
- current
->mm
->start_code
;
147 offset
= (address
- vma
->vm_start
) + (vma
->vm_pgoff
<< PAGE_SHIFT
);
149 sprintf(buf
, "<0x%p> [ %s + 0x%lx ]",
150 (void *)address
, name
, offset
);
162 /* we were unable to find this address anywhere */
163 sprintf(buf
, "<0x%p> /* unknown address */", (void *)address
);
166 write_unlock_irqrestore(&tasklist_lock
, flags
);
169 asmlinkage
void double_fault_c(struct pt_regs
*fp
)
172 oops_in_progress
= 1;
173 printk(KERN_EMERG
"\n" KERN_EMERG
"Double Fault\n");
174 dump_bfin_process(fp
);
177 panic("Double Fault - unrecoverable event\n");
181 asmlinkage
void trap_c(struct pt_regs
*fp
)
183 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_ON
188 unsigned long trapnr
= fp
->seqstat
& SEQSTAT_EXCAUSE
;
190 trace_buffer_save(j
);
192 /* Important - be very careful dereferncing pointers - will lead to
193 * double faults if the stack has become corrupt
196 /* If the fault was caused by a kernel thread, or interrupt handler
197 * we will kernel panic, so the system reboots.
198 * If KGDB is enabled, don't set this for kernel breakpoints
201 /* TODO: check to see if we are in some sort of deferred HWERR
202 * that we should be able to recover from, not kernel panic
204 if ((bfin_read_IPEND() & 0xFFC0) && (trapnr
!= VEC_STEP
)
206 && (trapnr
!= VEC_EXCPT02
)
210 oops_in_progress
= 1;
211 } else if (current
) {
212 if (current
->mm
== NULL
) {
214 oops_in_progress
= 1;
218 /* trap_c() will be called for exceptions. During exceptions
219 * processing, the pc value should be set with retx value.
220 * With this change we can cleanup some code in signal.c- TODO
222 fp
->orig_pc
= fp
->retx
;
223 /* printk("exception: 0x%x, ipend=%x, reti=%x, retx=%x\n",
224 trapnr, fp->ipend, fp->pc, fp->retx); */
226 /* send the appropriate signal to the user program */
229 /* This table works in conjuction with the one in ./mach-common/entry.S
230 * Some exceptions are handled there (in assembly, in exception space)
231 * Some are handled here, (in C, in interrupt space)
232 * Some, like CPLB, are handled in both, where the normal path is
233 * handled in assembly/exception space, and the error path is handled
237 /* 0x00 - Linux Syscall, getting here is an error */
238 /* 0x01 - userspace gdb breakpoint, handled here */
240 info
.si_code
= TRAP_ILLTRAP
;
242 CHK_DEBUGGER_TRAP_MAYBE();
243 /* Check if this is a breakpoint in kernel space */
244 if (fp
->ipend
& 0xffc0)
249 case VEC_EXCPT02
: /* gdb connection */
250 info
.si_code
= TRAP_ILLTRAP
;
255 /* 0x02 - User Defined, Caught by default */
257 /* 0x03 - User Defined, userspace stack overflow */
259 info
.si_code
= SEGV_STACKFLOW
;
261 printk(KERN_NOTICE
EXC_0x03(KERN_NOTICE
));
264 /* 0x04 - User Defined, Caught by default */
265 /* 0x05 - User Defined, Caught by default */
266 /* 0x06 - User Defined, Caught by default */
267 /* 0x07 - User Defined, Caught by default */
268 /* 0x08 - User Defined, Caught by default */
269 /* 0x09 - User Defined, Caught by default */
270 /* 0x0A - User Defined, Caught by default */
271 /* 0x0B - User Defined, Caught by default */
272 /* 0x0C - User Defined, Caught by default */
273 /* 0x0D - User Defined, Caught by default */
274 /* 0x0E - User Defined, Caught by default */
275 /* 0x0F - User Defined, Caught by default */
276 /* 0x10 HW Single step, handled here */
278 info
.si_code
= TRAP_STEP
;
280 CHK_DEBUGGER_TRAP_MAYBE();
281 /* Check if this is a single step in kernel space */
282 if (fp
->ipend
& 0xffc0)
286 /* 0x11 - Trace Buffer Full, handled here */
288 info
.si_code
= TRAP_TRACEFLOW
;
290 printk(KERN_NOTICE
EXC_0x11(KERN_NOTICE
));
293 /* 0x12 - Reserved, Caught by default */
294 /* 0x13 - Reserved, Caught by default */
295 /* 0x14 - Reserved, Caught by default */
296 /* 0x15 - Reserved, Caught by default */
297 /* 0x16 - Reserved, Caught by default */
298 /* 0x17 - Reserved, Caught by default */
299 /* 0x18 - Reserved, Caught by default */
300 /* 0x19 - Reserved, Caught by default */
301 /* 0x1A - Reserved, Caught by default */
302 /* 0x1B - Reserved, Caught by default */
303 /* 0x1C - Reserved, Caught by default */
304 /* 0x1D - Reserved, Caught by default */
305 /* 0x1E - Reserved, Caught by default */
306 /* 0x1F - Reserved, Caught by default */
307 /* 0x20 - Reserved, Caught by default */
308 /* 0x21 - Undefined Instruction, handled here */
310 info
.si_code
= ILL_ILLOPC
;
312 printk(KERN_NOTICE
EXC_0x21(KERN_NOTICE
));
315 /* 0x22 - Illegal Instruction Combination, handled here */
317 info
.si_code
= ILL_ILLPARAOP
;
319 printk(KERN_NOTICE
EXC_0x22(KERN_NOTICE
));
322 /* 0x23 - Data CPLB protection violation, handled here */
324 info
.si_code
= ILL_CPLB_VI
;
326 printk(KERN_NOTICE
EXC_0x23(KERN_NOTICE
));
329 /* 0x24 - Data access misaligned, handled here */
331 info
.si_code
= BUS_ADRALN
;
333 printk(KERN_NOTICE
EXC_0x24(KERN_NOTICE
));
336 /* 0x25 - Unrecoverable Event, handled here */
338 info
.si_code
= ILL_ILLEXCPT
;
340 printk(KERN_NOTICE
EXC_0x25(KERN_NOTICE
));
343 /* 0x26 - Data CPLB Miss, normal case is handled in _cplb_hdr,
344 error case is handled here */
346 info
.si_code
= BUS_ADRALN
;
348 printk(KERN_NOTICE
EXC_0x26(KERN_NOTICE
));
351 /* 0x27 - Data CPLB Multiple Hits - Linux Trap Zero, handled here */
353 info
.si_code
= ILL_CPLB_MULHIT
;
354 #ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
356 printk(KERN_NOTICE
"NULL pointer access (probably)\n");
359 printk(KERN_NOTICE
EXC_0x27(KERN_NOTICE
));
363 /* 0x28 - Emulation Watchpoint, handled here */
365 info
.si_code
= TRAP_WATCHPT
;
367 pr_debug(EXC_0x28(KERN_DEBUG
));
368 CHK_DEBUGGER_TRAP_MAYBE();
369 /* Check if this is a watchpoint in kernel space */
370 if (fp
->ipend
& 0xffc0)
375 /* 0x29 - Instruction fetch access error (535 only) */
376 case VEC_ISTRU_VL
: /* ADSP-BF535 only (MH) */
377 info
.si_code
= BUS_OPFETCH
;
379 printk(KERN_NOTICE
"BF535: VEC_ISTRU_VL\n");
383 /* 0x29 - Reserved, Caught by default */
385 /* 0x2A - Instruction fetch misaligned, handled here */
387 info
.si_code
= BUS_ADRALN
;
389 printk(KERN_NOTICE
EXC_0x2A(KERN_NOTICE
));
392 /* 0x2B - Instruction CPLB protection violation, handled here */
394 info
.si_code
= ILL_CPLB_VI
;
396 printk(KERN_NOTICE
EXC_0x2B(KERN_NOTICE
));
399 /* 0x2C - Instruction CPLB miss, handled in _cplb_hdr */
401 info
.si_code
= ILL_CPLB_MISS
;
403 printk(KERN_NOTICE
EXC_0x2C(KERN_NOTICE
));
406 /* 0x2D - Instruction CPLB Multiple Hits, handled here */
407 case VEC_CPLB_I_MHIT
:
408 info
.si_code
= ILL_CPLB_MULHIT
;
409 #ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
411 printk(KERN_NOTICE
"Jump to address 0 - 0x0fff\n");
414 printk(KERN_NOTICE
EXC_0x2D(KERN_NOTICE
));
418 /* 0x2E - Illegal use of Supervisor Resource, handled here */
420 info
.si_code
= ILL_PRVOPC
;
422 printk(KERN_NOTICE
EXC_0x2E(KERN_NOTICE
));
425 /* 0x2F - Reserved, Caught by default */
426 /* 0x30 - Reserved, Caught by default */
427 /* 0x31 - Reserved, Caught by default */
428 /* 0x32 - Reserved, Caught by default */
429 /* 0x33 - Reserved, Caught by default */
430 /* 0x34 - Reserved, Caught by default */
431 /* 0x35 - Reserved, Caught by default */
432 /* 0x36 - Reserved, Caught by default */
433 /* 0x37 - Reserved, Caught by default */
434 /* 0x38 - Reserved, Caught by default */
435 /* 0x39 - Reserved, Caught by default */
436 /* 0x3A - Reserved, Caught by default */
437 /* 0x3B - Reserved, Caught by default */
438 /* 0x3C - Reserved, Caught by default */
439 /* 0x3D - Reserved, Caught by default */
440 /* 0x3E - Reserved, Caught by default */
441 /* 0x3F - Reserved, Caught by default */
443 info
.si_code
= BUS_ADRALN
;
445 switch (fp
->seqstat
& SEQSTAT_HWERRCAUSE
) {
446 /* System MMR Error */
447 case (SEQSTAT_HWERRCAUSE_SYSTEM_MMR
):
448 info
.si_code
= BUS_ADRALN
;
450 printk(KERN_NOTICE
HWC_x2(KERN_NOTICE
));
452 /* External Memory Addressing Error */
453 case (SEQSTAT_HWERRCAUSE_EXTERN_ADDR
):
454 info
.si_code
= BUS_ADRERR
;
456 printk(KERN_NOTICE
HWC_x3(KERN_NOTICE
));
458 /* Performance Monitor Overflow */
459 case (SEQSTAT_HWERRCAUSE_PERF_FLOW
):
460 printk(KERN_NOTICE
HWC_x12(KERN_NOTICE
));
462 /* RAISE 5 instruction */
463 case (SEQSTAT_HWERRCAUSE_RAISE_5
):
464 printk(KERN_NOTICE
HWC_x18(KERN_NOTICE
));
466 default: /* Reserved */
467 printk(KERN_NOTICE
HWC_default(KERN_NOTICE
));
473 info
.si_code
= TRAP_ILLTRAP
;
475 printk(KERN_EMERG
"Caught Unhandled Exception, code = %08lx\n",
476 (fp
->seqstat
& SEQSTAT_EXCAUSE
));
483 if (sig
!= SIGTRAP
) {
485 dump_bfin_process(fp
);
489 /* Print out the trace buffer if it makes sense */
490 #ifndef CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE
491 if (trapnr
== VEC_CPLB_I_M
|| trapnr
== VEC_CPLB_M
)
492 printk(KERN_NOTICE
"No trace since you do not have "
493 "CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE enabled\n"
497 dump_bfin_trace_buffer();
498 show_stack(current
, &stack
);
499 if (oops_in_progress
) {
501 #ifndef CONFIG_ACCESS_CHECK
502 printk(KERN_EMERG
"Please turn on "
503 "CONFIG_ACCESS_CHECK\n");
505 panic("Kernel exception");
511 info
.si_addr
= (void *)fp
->pc
;
512 force_sig_info(sig
, &info
, current
);
514 trace_buffer_restore(j
);
518 /* Typical exception handling routines */
520 #define EXPAND_LEN ((1 << CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN) * 256 - 1)
522 void dump_bfin_trace_buffer(void)
524 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_ON
527 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_EXPAND
531 trace_buffer_save(tflags
);
533 printk(KERN_NOTICE
"Hardware Trace:\n");
535 if (likely(bfin_read_TBUFSTAT() & TBUFCNT
)) {
536 for (; bfin_read_TBUFSTAT() & TBUFCNT
; i
++) {
537 decode_address(buf
, (unsigned long)bfin_read_TBUF());
538 printk(KERN_NOTICE
"%4i Target : %s\n", i
, buf
);
539 decode_address(buf
, (unsigned long)bfin_read_TBUF());
540 printk(KERN_NOTICE
" Source : %s\n", buf
);
544 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_EXPAND
545 if (trace_buff_offset
)
546 index
= trace_buff_offset
/4 - 1;
550 j
= (1 << CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN
) * 128;
552 decode_address(buf
, software_trace_buff
[index
]);
553 printk(KERN_NOTICE
"%4i Target : %s\n", i
, buf
);
557 decode_address(buf
, software_trace_buff
[index
]);
558 printk(KERN_NOTICE
" Source : %s\n", buf
);
567 trace_buffer_restore(tflags
);
570 EXPORT_SYMBOL(dump_bfin_trace_buffer
);
572 static void show_trace(struct task_struct
*tsk
, unsigned long *sp
)
576 printk(KERN_NOTICE
"\n" KERN_NOTICE
"Call Trace:\n");
578 while (!kstack_end(sp
)) {
581 * If the address is either in the text segment of the
582 * kernel, or in the region which contains vmalloc'ed
583 * memory, it *may* be the address of a calling
584 * routine; if so, print it so that someone tracing
585 * down the cause of the crash will be able to figure
586 * out the call path that was taken.
588 if (kernel_text_address(addr
))
592 printk(KERN_NOTICE
"\n");
595 void show_stack(struct task_struct
*task
, unsigned long *stack
)
597 unsigned long *endstack
, addr
;
600 /* Cannot call dump_bfin_trace_buffer() here as show_stack() is
601 * called externally in some places in the kernel.
606 stack
= (unsigned long *)task
->thread
.ksp
;
608 stack
= (unsigned long *)&stack
;
611 addr
= (unsigned long)stack
;
612 endstack
= (unsigned long *)PAGE_ALIGN(addr
);
614 printk(KERN_NOTICE
"Stack from %08lx:", (unsigned long)stack
);
615 for (i
= 0; i
< kstack_depth_to_print
; i
++) {
616 if (stack
+ 1 > endstack
)
619 printk("\n" KERN_NOTICE
" ");
620 printk(" %08lx", *stack
++);
624 show_trace(task
, stack
);
627 void dump_stack(void)
630 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_ON
633 trace_buffer_save(tflags
);
634 dump_bfin_trace_buffer();
635 show_stack(current
, &stack
);
636 trace_buffer_restore(tflags
);
638 EXPORT_SYMBOL(dump_stack
);
640 void dump_bfin_process(struct pt_regs
*fp
)
642 /* We should be able to look at fp->ipend, but we don't push it on the
643 * stack all the time, so do this until we fix that */
644 unsigned int context
= bfin_read_IPEND();
646 if (oops_in_progress
)
647 printk(KERN_EMERG
"Kernel OOPS in progress\n");
649 if (context
& 0x0020 && (fp
->seqstat
& SEQSTAT_EXCAUSE
) == VEC_HWERR
)
650 printk(KERN_NOTICE
"HW Error context\n");
651 else if (context
& 0x0020)
652 printk(KERN_NOTICE
"Defered Exception context\n");
653 else if (context
& 0x3FC0)
654 printk(KERN_NOTICE
"Interrupt context\n");
655 else if (context
& 0x4000)
656 printk(KERN_NOTICE
"Deferred Interrupt context\n");
657 else if (context
& 0x8000)
658 printk(KERN_NOTICE
"Kernel process context\n");
660 if (current
->pid
&& current
->mm
) {
661 printk(KERN_NOTICE
"CURRENT PROCESS:\n");
662 printk(KERN_NOTICE
"COMM=%s PID=%d\n",
663 current
->comm
, current
->pid
);
665 printk(KERN_NOTICE
"TEXT = 0x%p-0x%p DATA = 0x%p-0x%p\n"
666 KERN_NOTICE
"BSS = 0x%p-0x%p USER-STACK = 0x%p\n"
668 (void *)current
->mm
->start_code
,
669 (void *)current
->mm
->end_code
,
670 (void *)current
->mm
->start_data
,
671 (void *)current
->mm
->end_data
,
672 (void *)current
->mm
->end_data
,
673 (void *)current
->mm
->brk
,
674 (void *)current
->mm
->start_stack
);
676 printk(KERN_NOTICE
"\n" KERN_NOTICE
677 "No Valid process in current context\n");
680 void dump_bfin_mem(struct pt_regs
*fp
)
682 unsigned short *addr
, *erraddr
, val
= 0, err
= 0;
683 char sti
= 0, buf
[6];
685 if (unlikely((fp
->seqstat
& SEQSTAT_EXCAUSE
) == VEC_HWERR
))
686 erraddr
= (void *)fp
->pc
;
688 erraddr
= (void *)fp
->retx
;
690 printk(KERN_NOTICE
"return address: [0x%p]; contents of:", erraddr
);
692 for (addr
= (unsigned short *)((unsigned long)erraddr
& ~0xF) - 0x10;
693 addr
< (unsigned short *)((unsigned long)erraddr
& ~0xF) + 0x10;
695 if (!((unsigned long)addr
& 0xF))
696 printk("\n" KERN_NOTICE
"0x%p: ", addr
);
698 if (get_user(val
, addr
)) {
699 if (addr
>= (unsigned short *)L1_CODE_START
&&
700 addr
< (unsigned short *)(L1_CODE_START
+ L1_CODE_LENGTH
)) {
701 dma_memcpy(&val
, addr
, sizeof(val
));
702 sprintf(buf
, "%04x", val
);
703 } else if (addr
>= (unsigned short *)FIXED_CODE_START
&&
704 addr
<= (unsigned short *)memory_start
) {
705 val
= bfin_read16(addr
);
706 sprintf(buf
, "%04x", val
);
709 sprintf(buf
, "????");
712 sprintf(buf
, "%04x", val
);
714 if (addr
== erraddr
) {
720 /* Do any previous instructions turn on interrupts? */
721 if (addr
<= erraddr
&& /* in the past */
722 ((val
>= 0x0040 && val
<= 0x0047) || /* STI instruction */
723 val
== 0x017b)) /* [SP++] = RETI */
729 /* Hardware error interrupts can be deferred */
730 if (unlikely(sti
&& (fp
->seqstat
& SEQSTAT_EXCAUSE
) == VEC_HWERR
&&
732 printk(KERN_NOTICE
"Looks like this was a deferred error - sorry\n");
733 #ifndef CONFIG_DEBUG_HWERR
734 printk(KERN_NOTICE
"The remaining message may be meaningless\n"
735 KERN_NOTICE
"You should enable CONFIG_DEBUG_HWERR to get a"
736 " better idea where it came from\n");
738 /* If we are handling only one peripheral interrupt
739 * and current mm and pid are valid, and the last error
740 * was in that user space process's text area
741 * print it out - because that is where the problem exists
743 if ((!(((fp
)->ipend
& ~0x30) & (((fp
)->ipend
& ~0x30) - 1))) &&
744 (current
->pid
&& current
->mm
)) {
745 /* And the last RETI points to the current userspace context */
746 if ((fp
+ 1)->pc
>= current
->mm
->start_code
&&
747 (fp
+ 1)->pc
<= current
->mm
->end_code
) {
748 printk(KERN_NOTICE
"It might be better to look around here : \n");
749 printk(KERN_NOTICE
"-------------------------------------------\n");
751 printk(KERN_NOTICE
"-------------------------------------------\n");
758 void show_regs(struct pt_regs
*fp
)
761 struct irqaction
*action
;
765 printk(KERN_NOTICE
"\n" KERN_NOTICE
"SEQUENCER STATUS:\t\t%s\n", print_tainted());
766 printk(KERN_NOTICE
" SEQSTAT: %08lx IPEND: %04lx SYSCFG: %04lx\n",
767 (long)fp
->seqstat
, fp
->ipend
, fp
->syscfg
);
768 printk(KERN_NOTICE
" HWERRCAUSE: 0x%lx\n",
769 (fp
->seqstat
& SEQSTAT_HWERRCAUSE
) >> 14);
770 printk(KERN_NOTICE
" EXCAUSE : 0x%lx\n",
771 fp
->seqstat
& SEQSTAT_EXCAUSE
);
772 for (i
= 6; i
<= 15 ; i
++) {
773 if (fp
->ipend
& (1 << i
)) {
774 decode_address(buf
, bfin_read32(EVT0
+ 4*i
));
775 printk(KERN_NOTICE
" physical IVG%i asserted : %s\n", i
, buf
);
779 /* if no interrupts are going off, don't print this out */
780 if (fp
->ipend
& ~0x3F) {
781 for (i
= 0; i
< (NR_IRQS
- 1); i
++) {
782 spin_lock_irqsave(&irq_desc
[i
].lock
, flags
);
783 action
= irq_desc
[i
].action
;
787 decode_address(buf
, (unsigned int)action
->handler
);
788 printk(KERN_NOTICE
" logical irq %3d mapped : %s", i
, buf
);
789 for (action
= action
->next
; action
; action
= action
->next
) {
790 decode_address(buf
, (unsigned int)action
->handler
);
795 spin_unlock_irqrestore(&irq_desc
[i
].lock
, flags
);
799 decode_address(buf
, fp
->rete
);
800 printk(KERN_NOTICE
" RETE: %s\n", buf
);
801 decode_address(buf
, fp
->retn
);
802 printk(KERN_NOTICE
" RETN: %s\n", buf
);
803 decode_address(buf
, fp
->retx
);
804 printk(KERN_NOTICE
" RETX: %s\n", buf
);
805 decode_address(buf
, fp
->rets
);
806 printk(KERN_NOTICE
" RETS: %s\n", buf
);
807 decode_address(buf
, fp
->pc
);
808 printk(KERN_NOTICE
" PC : %s\n", buf
);
810 if (((long)fp
->seqstat
& SEQSTAT_EXCAUSE
) &&
811 (((long)fp
->seqstat
& SEQSTAT_EXCAUSE
) != VEC_HWERR
)) {
812 decode_address(buf
, bfin_read_DCPLB_FAULT_ADDR());
813 printk(KERN_NOTICE
"DCPLB_FAULT_ADDR: %s\n", buf
);
814 decode_address(buf
, bfin_read_ICPLB_FAULT_ADDR());
815 printk(KERN_NOTICE
"ICPLB_FAULT_ADDR: %s\n", buf
);
818 printk(KERN_NOTICE
"\n" KERN_NOTICE
"PROCESSOR STATE:\n");
819 printk(KERN_NOTICE
" R0 : %08lx R1 : %08lx R2 : %08lx R3 : %08lx\n",
820 fp
->r0
, fp
->r1
, fp
->r2
, fp
->r3
);
821 printk(KERN_NOTICE
" R4 : %08lx R5 : %08lx R6 : %08lx R7 : %08lx\n",
822 fp
->r4
, fp
->r5
, fp
->r6
, fp
->r7
);
823 printk(KERN_NOTICE
" P0 : %08lx P1 : %08lx P2 : %08lx P3 : %08lx\n",
824 fp
->p0
, fp
->p1
, fp
->p2
, fp
->p3
);
825 printk(KERN_NOTICE
" P4 : %08lx P5 : %08lx FP : %08lx SP : %08lx\n",
826 fp
->p4
, fp
->p5
, fp
->fp
, (long)fp
);
827 printk(KERN_NOTICE
" LB0: %08lx LT0: %08lx LC0: %08lx\n",
828 fp
->lb0
, fp
->lt0
, fp
->lc0
);
829 printk(KERN_NOTICE
" LB1: %08lx LT1: %08lx LC1: %08lx\n",
830 fp
->lb1
, fp
->lt1
, fp
->lc1
);
831 printk(KERN_NOTICE
" B0 : %08lx L0 : %08lx M0 : %08lx I0 : %08lx\n",
832 fp
->b0
, fp
->l0
, fp
->m0
, fp
->i0
);
833 printk(KERN_NOTICE
" B1 : %08lx L1 : %08lx M1 : %08lx I1 : %08lx\n",
834 fp
->b1
, fp
->l1
, fp
->m1
, fp
->i1
);
835 printk(KERN_NOTICE
" B2 : %08lx L2 : %08lx M2 : %08lx I2 : %08lx\n",
836 fp
->b2
, fp
->l2
, fp
->m2
, fp
->i2
);
837 printk(KERN_NOTICE
" B3 : %08lx L3 : %08lx M3 : %08lx I3 : %08lx\n",
838 fp
->b3
, fp
->l3
, fp
->m3
, fp
->i3
);
839 printk(KERN_NOTICE
"A0.w: %08lx A0.x: %08lx A1.w: %08lx A1.x: %08lx\n",
840 fp
->a0w
, fp
->a0x
, fp
->a1w
, fp
->a1x
);
842 printk(KERN_NOTICE
"USP : %08lx ASTAT: %08lx\n",
845 printk(KERN_NOTICE
"\n");
848 #ifdef CONFIG_SYS_BFIN_SPINLOCK_L1
849 asmlinkage
int sys_bfin_spinlock(int *spinlock
)__attribute__((l1_text
));
852 asmlinkage
int sys_bfin_spinlock(int *spinlock
)
858 ret
= get_user(tmp
, spinlock
);
863 put_user(tmp
, spinlock
);
869 int bfin_request_exception(unsigned int exception
, void (*handler
)(void))
871 void (*curr_handler
)(void);
873 if (exception
> 0x3F)
876 curr_handler
= ex_table
[exception
];
878 if (curr_handler
!= ex_replaceable
)
881 ex_table
[exception
] = handler
;
885 EXPORT_SYMBOL(bfin_request_exception
);
887 int bfin_free_exception(unsigned int exception
, void (*handler
)(void))
889 void (*curr_handler
)(void);
891 if (exception
> 0x3F)
894 curr_handler
= ex_table
[exception
];
896 if (curr_handler
!= handler
)
899 ex_table
[exception
] = ex_replaceable
;
903 EXPORT_SYMBOL(bfin_free_exception
);
905 void panic_cplb_error(int cplb_panic
, struct pt_regs
*fp
)
907 switch (cplb_panic
) {
908 case CPLB_NO_UNLOCKED
:
909 printk(KERN_EMERG
"All CPLBs are locked\n");
913 case CPLB_NO_ADDR_MATCH
:
915 case CPLB_UNKNOWN_ERR
:
916 printk(KERN_EMERG
"Unknown CPLB Exception\n");
920 oops_in_progress
= 1;
922 printk(KERN_EMERG
"DCPLB_FAULT_ADDR=%p\n", (void *)bfin_read_DCPLB_FAULT_ADDR());
923 printk(KERN_EMERG
"ICPLB_FAULT_ADDR=%p\n", (void *)bfin_read_ICPLB_FAULT_ADDR());
924 dump_bfin_process(fp
);
928 panic("Unrecoverable event\n");