2 * HW exception handling
4 * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
5 * Copyright (C) 2008 PetaLogix
7 * This file is subject to the terms and conditions of the GNU General
8 * Public License. See the file COPYING in the main directory of this
9 * archive for more details.
13 * This file handles the architecture-dependent parts of hardware exceptions
16 #include <linux/kernel.h>
17 #include <linux/signal.h>
18 #include <linux/sched.h>
19 #include <linux/kallsyms.h>
20 #include <linux/module.h>
22 #include <asm/exceptions.h>
23 #include <asm/entry.h> /* For KM CPU var */
24 #include <linux/uaccess.h>
25 #include <linux/errno.h>
26 #include <linux/ptrace.h>
27 #include <asm/current.h>
29 #define MICROBLAZE_ILL_OPCODE_EXCEPTION 0x02
30 #define MICROBLAZE_IBUS_EXCEPTION 0x03
31 #define MICROBLAZE_DBUS_EXCEPTION 0x04
32 #define MICROBLAZE_DIV_ZERO_EXCEPTION 0x05
33 #define MICROBLAZE_FPU_EXCEPTION 0x06
34 #define MICROBLAZE_PRIVILEGED_EXCEPTION 0x07
36 static DEFINE_SPINLOCK(die_lock
);
38 void die(const char *str
, struct pt_regs
*fp
, long err
)
41 spin_lock_irq(&die_lock
);
42 printk(KERN_WARNING
"Oops: %s, sig: %ld\n", str
, err
);
44 spin_unlock_irq(&die_lock
);
45 /* do_exit() should take care of panic'ing from an interrupt
46 * context so we don't handle it here
51 void _exception(int signr
, struct pt_regs
*regs
, int code
, unsigned long addr
)
55 if (kernel_mode(regs
)) {
57 die("Exception in kernel mode", regs
, signr
);
59 info
.si_signo
= signr
;
62 info
.si_addr
= (void __user
*) addr
;
63 force_sig_info(signr
, &info
, current
);
66 asmlinkage
void full_exception(struct pt_regs
*regs
, unsigned int type
,
75 printk(KERN_WARNING
"Exception %02x in %s mode, FSR=%08x PC=%08x ESR=%08x\n",
76 type
, user_mode(regs
) ? "user" : "kernel", fsr
,
77 (unsigned int) regs
->pc
, (unsigned int) regs
->esr
);
80 switch (type
& 0x1F) {
81 case MICROBLAZE_ILL_OPCODE_EXCEPTION
:
82 if (user_mode(regs
)) {
83 printk(KERN_WARNING
"Illegal opcode exception in user mode.\n");
84 _exception(SIGILL
, regs
, ILL_ILLOPC
, addr
);
87 printk(KERN_WARNING
"Illegal opcode exception in kernel mode.\n");
88 die("opcode exception", regs
, SIGBUS
);
90 case MICROBLAZE_IBUS_EXCEPTION
:
91 if (user_mode(regs
)) {
92 printk(KERN_WARNING
"Instruction bus error exception in user mode.\n");
93 _exception(SIGBUS
, regs
, BUS_ADRERR
, addr
);
96 printk(KERN_WARNING
"Instruction bus error exception in kernel mode.\n");
97 die("bus exception", regs
, SIGBUS
);
99 case MICROBLAZE_DBUS_EXCEPTION
:
100 if (user_mode(regs
)) {
101 printk(KERN_WARNING
"Data bus error exception in user mode.\n");
102 _exception(SIGBUS
, regs
, BUS_ADRERR
, addr
);
105 printk(KERN_WARNING
"Data bus error exception in kernel mode.\n");
106 die("bus exception", regs
, SIGBUS
);
108 case MICROBLAZE_DIV_ZERO_EXCEPTION
:
109 if (user_mode(regs
)) {
110 printk(KERN_WARNING
"Divide by zero exception in user mode\n");
111 _exception(SIGILL
, regs
, ILL_ILLOPC
, addr
);
114 printk(KERN_WARNING
"Divide by zero exception in kernel mode.\n");
115 die("Divide by exception", regs
, SIGBUS
);
117 case MICROBLAZE_FPU_EXCEPTION
:
118 printk(KERN_WARNING
"FPU exception\n");
119 /* IEEE FP exception */
120 /* I removed fsr variable and use code var for storing fsr */
123 else if (fsr
& FSR_OF
)
125 else if (fsr
& FSR_UF
)
127 else if (fsr
& FSR_DZ
)
129 else if (fsr
& FSR_DO
)
131 _exception(SIGFPE
, regs
, fsr
, addr
);
135 case MICROBLAZE_PRIVILEGED_EXCEPTION
:
136 printk(KERN_WARNING
"Privileged exception\n");
137 /* "brk r0,r0" - used as debug breakpoint */
138 if (get_user(code
, (unsigned long *)regs
->pc
) == 0
139 && code
== 0x980c0000) {
140 _exception(SIGTRAP
, regs
, TRAP_BRKPT
, addr
);
142 _exception(SIGILL
, regs
, ILL_PRVOPC
, addr
);
147 /* FIXME what to do in unexpected exception */
148 printk(KERN_WARNING
"Unexpected exception %02x "
149 "PC=%08x in %s mode\n", type
, (unsigned int) addr
,
150 kernel_mode(regs
) ? "kernel" : "user");