Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6
[linux/fpc-iii.git] / arch / sh / kernel / traps.c
blobb3e0067db3583006753fb70203993eda80a439a3
1 #include <linux/bug.h>
2 #include <linux/io.h>
3 #include <linux/types.h>
4 #include <linux/kdebug.h>
5 #include <linux/signal.h>
6 #include <linux/sched.h>
7 #include <linux/uaccess.h>
8 #include <asm/system.h>
10 #ifdef CONFIG_BUG
11 static void handle_BUG(struct pt_regs *regs)
13 enum bug_trap_type tt;
14 tt = report_bug(regs->pc, regs);
15 if (tt == BUG_TRAP_TYPE_WARN) {
16 regs->pc += instruction_size(regs->pc);
17 return;
20 die("Kernel BUG", regs, TRAPA_BUG_OPCODE & 0xff);
23 int is_valid_bugaddr(unsigned long addr)
25 insn_size_t opcode;
27 if (addr < PAGE_OFFSET)
28 return 0;
29 if (probe_kernel_address((insn_size_t *)addr, opcode))
30 return 0;
32 return opcode == TRAPA_BUG_OPCODE;
34 #endif
37 * Generic trap handler.
39 BUILD_TRAP_HANDLER(debug)
41 TRAP_HANDLER_DECL;
43 /* Rewind */
44 regs->pc -= instruction_size(ctrl_inw(regs->pc - 4));
46 if (notify_die(DIE_TRAP, "debug trap", regs, 0, vec & 0xff,
47 SIGTRAP) == NOTIFY_STOP)
48 return;
50 force_sig(SIGTRAP, current);
54 * Special handler for BUG() traps.
56 BUILD_TRAP_HANDLER(bug)
58 TRAP_HANDLER_DECL;
60 /* Rewind */
61 regs->pc -= instruction_size(ctrl_inw(regs->pc - 4));
63 if (notify_die(DIE_TRAP, "bug trap", regs, 0, TRAPA_BUG_OPCODE & 0xff,
64 SIGTRAP) == NOTIFY_STOP)
65 return;
67 #ifdef CONFIG_BUG
68 if (__kernel_text_address(instruction_pointer(regs))) {
69 insn_size_t insn = *(insn_size_t *)instruction_pointer(regs);
70 if (insn == TRAPA_BUG_OPCODE)
71 handle_BUG(regs);
72 return;
74 #endif
76 force_sig(SIGTRAP, current);