blob: 862667a341fd4e7a85b92da76f16e6a49307a3b3 [file] [log] [blame]
Paul Mundt6b002232006-10-12 17:07:45 +09001/*
2 * 'traps.c' handles hardware traps and faults after we have saved some
3 * state in 'entry.S'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * SuperH version: Copyright (C) 1999 Niibe Yutaka
6 * Copyright (C) 2000 Philipp Rumpf
7 * Copyright (C) 2000 David Howells
Paul Mundt3a2e1172007-05-01 16:33:10 +09008 * Copyright (C) 2002 - 2007 Paul Mundt
Paul Mundt6b002232006-10-12 17:07:45 +09009 *
10 * This file is subject to the terms and conditions of the GNU General Public
11 * License. See the file "COPYING" in the main directory of this archive
12 * for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/spinlock.h>
18#include <linux/module.h>
19#include <linux/kallsyms.h>
Paul Mundt1f666582006-10-19 16:20:25 +090020#include <linux/io.h>
Paul Mundtfa691512007-03-08 19:41:21 +090021#include <linux/bug.h>
Paul Mundt9b8c90e2006-12-06 11:07:51 +090022#include <linux/debug_locks.h>
Paul Mundtb118ca52007-05-09 10:55:38 +090023#include <linux/kdebug.h>
Paul Mundte1132762007-05-15 08:36:36 +090024#include <linux/kexec.h>
Paul Mundtdc34d312006-12-08 17:41:43 +090025#include <linux/limits.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/system.h>
27#include <asm/uaccess.h>
Andrew Mortonfad0f902008-04-16 02:03:51 +090028#include <asm/fpu.h>
Chris Smithd39f5452008-09-05 17:15:39 +090029#include <asm/kprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#ifdef CONFIG_SH_KGDB
32#include <asm/kgdb.h>
Stuart Menefyf0bc8142006-11-21 11:16:57 +090033#define CHK_REMOTE_DEBUG(regs) \
34{ \
Takashi YOSHII4b565682006-09-27 17:15:32 +090035 if (kgdb_debug_hook && !user_mode(regs))\
36 (*kgdb_debug_hook)(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38#else
39#define CHK_REMOTE_DEBUG(regs)
40#endif
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#ifdef CONFIG_CPU_SH2
Yoshinori Sato0983b312006-11-05 15:58:47 +090043# define TRAP_RESERVED_INST 4
44# define TRAP_ILLEGAL_SLOT_INST 6
45# define TRAP_ADDRESS_ERROR 9
46# ifdef CONFIG_CPU_SH2A
Yoshinori Sato6e80f5e2008-07-10 01:20:03 +090047# define TRAP_FPU_ERROR 13
Yoshinori Sato0983b312006-11-05 15:58:47 +090048# define TRAP_DIVZERO_ERROR 17
49# define TRAP_DIVOVF_ERROR 18
50# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#else
52#define TRAP_RESERVED_INST 12
53#define TRAP_ILLEGAL_SLOT_INST 13
54#endif
55
Paul Mundt6b002232006-10-12 17:07:45 +090056static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
57{
58 unsigned long p;
59 int i;
60
61 printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top);
62
63 for (p = bottom & ~31; p < top; ) {
64 printk("%04lx: ", p & 0xffff);
65
66 for (i = 0; i < 8; i++, p += 4) {
67 unsigned int val;
68
69 if (p < bottom || p >= top)
70 printk(" ");
71 else {
72 if (__get_user(val, (unsigned int __user *)p)) {
73 printk("\n");
74 return;
75 }
76 printk("%08x ", val);
77 }
78 }
79 printk("\n");
80 }
81}
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Paul Mundt3a2e1172007-05-01 16:33:10 +090083static DEFINE_SPINLOCK(die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85void die(const char * str, struct pt_regs * regs, long err)
86{
87 static int die_counter;
88
Paul Mundt55273982007-06-18 18:57:13 +090089 oops_enter();
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 console_verbose();
92 spin_lock_irq(&die_lock);
Paul Mundt6b002232006-10-12 17:07:45 +090093 bust_spinlocks(1);
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 printk("%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
Paul Mundt6b002232006-10-12 17:07:45 +090096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 CHK_REMOTE_DEBUG(regs);
Paul Mundt6b002232006-10-12 17:07:45 +090098 print_modules();
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 show_regs(regs);
Paul Mundt6b002232006-10-12 17:07:45 +0900100
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700101 printk("Process: %s (pid: %d, stack limit = %p)\n", current->comm,
102 task_pid_nr(current), task_stack_page(current) + 1);
Paul Mundt6b002232006-10-12 17:07:45 +0900103
104 if (!user_mode(regs) || in_interrupt())
105 dump_mem("Stack: ", regs->regs[15], THREAD_SIZE +
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900106 (unsigned long)task_stack_page(current));
Paul Mundt6b002232006-10-12 17:07:45 +0900107
108 bust_spinlocks(0);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700109 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 spin_unlock_irq(&die_lock);
Paul Mundte1132762007-05-15 08:36:36 +0900111
112 if (kexec_should_crash(current))
113 crash_kexec(regs);
114
115 if (in_interrupt())
116 panic("Fatal exception in interrupt");
117
118 if (panic_on_oops)
119 panic("Fatal exception");
120
Paul Mundt55273982007-06-18 18:57:13 +0900121 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 do_exit(SIGSEGV);
123}
124
Paul Mundt6b002232006-10-12 17:07:45 +0900125static inline void die_if_kernel(const char *str, struct pt_regs *regs,
126 long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
128 if (!user_mode(regs))
129 die(str, regs, err);
130}
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/*
133 * try and fix up kernelspace address errors
134 * - userspace errors just cause EFAULT to be returned, resulting in SEGV
135 * - kernel/userspace interfaces cause a jump to an appropriate handler
136 * - other kernel errors are bad
137 * - return 0 if fixed-up, -EFAULT if non-fatal (to the kernel) fault
138 */
139static int die_if_no_fixup(const char * str, struct pt_regs * regs, long err)
140{
Paul Mundt6b002232006-10-12 17:07:45 +0900141 if (!user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 const struct exception_table_entry *fixup;
143 fixup = search_exception_tables(regs->pc);
144 if (fixup) {
145 regs->pc = fixup->fixup;
146 return 0;
147 }
148 die(str, regs, err);
149 }
150 return -EFAULT;
151}
152
Magnus Damm86c01792008-02-07 00:02:50 +0900153static inline void sign_extend(unsigned int count, unsigned char *dst)
154{
155#ifdef __LITTLE_ENDIAN__
Magnus Damm4252c652008-02-07 19:58:46 +0900156 if ((count == 1) && dst[0] & 0x80) {
157 dst[1] = 0xff;
158 dst[2] = 0xff;
159 dst[3] = 0xff;
160 }
Magnus Damm86c01792008-02-07 00:02:50 +0900161 if ((count == 2) && dst[1] & 0x80) {
162 dst[2] = 0xff;
163 dst[3] = 0xff;
164 }
165#else
Magnus Damm4252c652008-02-07 19:58:46 +0900166 if ((count == 1) && dst[3] & 0x80) {
167 dst[2] = 0xff;
Magnus Damm86c01792008-02-07 00:02:50 +0900168 dst[1] = 0xff;
Magnus Damm4252c652008-02-07 19:58:46 +0900169 dst[0] = 0xff;
170 }
171 if ((count == 2) && dst[2] & 0x80) {
172 dst[1] = 0xff;
173 dst[0] = 0xff;
Magnus Damm86c01792008-02-07 00:02:50 +0900174 }
175#endif
176}
177
Magnus Damme7cc9a72008-02-07 20:18:21 +0900178static struct mem_access user_mem_access = {
179 copy_from_user,
180 copy_to_user,
181};
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*
184 * handle an instruction that does an unaligned memory access by emulating the
185 * desired behaviour
186 * - note that PC _may not_ point to the faulting instruction
187 * (if that instruction is in a branch delay slot)
188 * - return 0 if emulation okay, -EFAULT on existential error
189 */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900190static int handle_unaligned_ins(opcode_t instruction, struct pt_regs *regs,
191 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 int ret, index, count;
194 unsigned long *rm, *rn;
195 unsigned char *src, *dst;
Paul Mundtfa439722008-09-04 18:53:58 +0900196 unsigned char __user *srcu, *dstu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 index = (instruction>>8)&15; /* 0x0F00 */
199 rn = &regs->regs[index];
200
201 index = (instruction>>4)&15; /* 0x00F0 */
202 rm = &regs->regs[index];
203
204 count = 1<<(instruction&3);
205
206 ret = -EFAULT;
207 switch (instruction>>12) {
208 case 0: /* mov.[bwl] to/from memory via r0+rn */
209 if (instruction & 8) {
210 /* from memory */
Paul Mundtfa439722008-09-04 18:53:58 +0900211 srcu = (unsigned char __user *)*rm;
212 srcu += regs->regs[0];
213 dst = (unsigned char *)rn;
214 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Magnus Damm86c01792008-02-07 00:02:50 +0900216#if !defined(__LITTLE_ENDIAN__)
217 dst += 4-count;
218#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900219 if (ma->from(dst, srcu, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 goto fetch_fault;
221
Magnus Damm86c01792008-02-07 00:02:50 +0900222 sign_extend(count, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 } else {
224 /* to memory */
Paul Mundtfa439722008-09-04 18:53:58 +0900225 src = (unsigned char *)rm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#if !defined(__LITTLE_ENDIAN__)
227 src += 4-count;
228#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900229 dstu = (unsigned char __user *)*rn;
230 dstu += regs->regs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Paul Mundtfa439722008-09-04 18:53:58 +0900232 if (ma->to(dstu, src, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 goto fetch_fault;
234 }
235 ret = 0;
236 break;
237
238 case 1: /* mov.l Rm,@(disp,Rn) */
239 src = (unsigned char*) rm;
Paul Mundtfa439722008-09-04 18:53:58 +0900240 dstu = (unsigned char __user *)*rn;
241 dstu += (instruction&0x000F)<<2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Paul Mundtfa439722008-09-04 18:53:58 +0900243 if (ma->to(dstu, src, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 goto fetch_fault;
245 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900246 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 case 2: /* mov.[bwl] to memory, possibly with pre-decrement */
249 if (instruction & 4)
250 *rn -= count;
251 src = (unsigned char*) rm;
Paul Mundtfa439722008-09-04 18:53:58 +0900252 dstu = (unsigned char __user *)*rn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#if !defined(__LITTLE_ENDIAN__)
254 src += 4-count;
255#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900256 if (ma->to(dstu, src, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 goto fetch_fault;
258 ret = 0;
259 break;
260
261 case 5: /* mov.l @(disp,Rm),Rn */
Paul Mundtfa439722008-09-04 18:53:58 +0900262 srcu = (unsigned char __user *)*rm;
263 srcu += (instruction & 0x000F) << 2;
264 dst = (unsigned char *)rn;
265 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Paul Mundtfa439722008-09-04 18:53:58 +0900267 if (ma->from(dst, srcu, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 goto fetch_fault;
269 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900270 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 case 6: /* mov.[bwl] from memory, possibly with post-increment */
Paul Mundtfa439722008-09-04 18:53:58 +0900273 srcu = (unsigned char __user *)*rm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (instruction & 4)
275 *rm += count;
276 dst = (unsigned char*) rn;
277 *(unsigned long*)dst = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900278
Magnus Damm86c01792008-02-07 00:02:50 +0900279#if !defined(__LITTLE_ENDIAN__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 dst += 4-count;
Magnus Damm86c01792008-02-07 00:02:50 +0900281#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900282 if (ma->from(dst, srcu, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 goto fetch_fault;
Magnus Damm86c01792008-02-07 00:02:50 +0900284 sign_extend(count, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 ret = 0;
286 break;
287
288 case 8:
289 switch ((instruction&0xFF00)>>8) {
290 case 0x81: /* mov.w R0,@(disp,Rn) */
Paul Mundtfa439722008-09-04 18:53:58 +0900291 src = (unsigned char *) &regs->regs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292#if !defined(__LITTLE_ENDIAN__)
293 src += 2;
294#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900295 dstu = (unsigned char __user *)*rm; /* called Rn in the spec */
296 dstu += (instruction & 0x000F) << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Paul Mundtfa439722008-09-04 18:53:58 +0900298 if (ma->to(dstu, src, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 goto fetch_fault;
300 ret = 0;
301 break;
302
303 case 0x85: /* mov.w @(disp,Rm),R0 */
Paul Mundtfa439722008-09-04 18:53:58 +0900304 srcu = (unsigned char __user *)*rm;
305 srcu += (instruction & 0x000F) << 1;
306 dst = (unsigned char *) &regs->regs[0];
307 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309#if !defined(__LITTLE_ENDIAN__)
310 dst += 2;
311#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900312 if (ma->from(dst, srcu, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 goto fetch_fault;
Magnus Damm86c01792008-02-07 00:02:50 +0900314 sign_extend(2, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 ret = 0;
316 break;
317 }
318 break;
319 }
320 return ret;
321
322 fetch_fault:
323 /* Argh. Address not only misaligned but also non-existent.
324 * Raise an EFAULT and see if it's trapped
325 */
326 return die_if_no_fixup("Fault in unaligned fixup", regs, 0);
327}
328
329/*
330 * emulate the instruction in the delay slot
331 * - fetches the instruction from PC+2
332 */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900333static inline int handle_delayslot(struct pt_regs *regs,
334 opcode_t old_instruction,
335 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900337 opcode_t instruction;
Paul Mundtfa439722008-09-04 18:53:58 +0900338 void __user *addr = (void __user *)(regs->pc +
339 instruction_size(old_instruction));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900341 if (copy_from_user(&instruction, addr, sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 /* the instruction-fetch faulted */
343 if (user_mode(regs))
344 return -EFAULT;
345
346 /* kernel */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900347 die("delay-slot-insn faulting in handle_unaligned_delayslot",
348 regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350
Magnus Damme7cc9a72008-02-07 20:18:21 +0900351 return handle_unaligned_ins(instruction, regs, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354/*
355 * handle an instruction that does an unaligned memory access
356 * - have to be careful of branch delay-slot instructions that fault
357 * SH3:
358 * - if the branch would be taken PC points to the branch
359 * - if the branch would not be taken, PC points to delay-slot
360 * SH4:
361 * - PC always points to delayed branch
362 * - return 0 if handled, -EFAULT if failed (may not return if in kernel)
363 */
364
365/* Macros to determine offset from current PC for branch instructions */
366/* Explicit type coercion is used to force sign extension where needed */
367#define SH_PC_8BIT_OFFSET(instr) ((((signed char)(instr))*2) + 4)
368#define SH_PC_12BIT_OFFSET(instr) ((((signed short)(instr<<4))>>3) + 4)
369
Paul Mundt710ee0c2006-11-05 16:48:42 +0900370/*
371 * XXX: SH-2A needs this too, but it needs an overhaul thanks to mixed 32-bit
372 * opcodes..
373 */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900374
Paul Mundt710ee0c2006-11-05 16:48:42 +0900375static int handle_unaligned_notify_count = 10;
376
Magnus Damme7cc9a72008-02-07 20:18:21 +0900377int handle_unaligned_access(opcode_t instruction, struct pt_regs *regs,
378 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 u_int rm;
381 int ret, index;
382
383 index = (instruction>>8)&15; /* 0x0F00 */
384 rm = regs->regs[index];
385
386 /* shout about the first ten userspace fixups */
387 if (user_mode(regs) && handle_unaligned_notify_count>0) {
388 handle_unaligned_notify_count--;
389
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900390 printk(KERN_NOTICE "Fixing up unaligned userspace access "
391 "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700392 current->comm, task_pid_nr(current),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900393 (void *)regs->pc, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395
396 ret = -EFAULT;
397 switch (instruction&0xF000) {
398 case 0x0000:
399 if (instruction==0x000B) {
400 /* rts */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900401 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (ret==0)
403 regs->pc = regs->pr;
404 }
405 else if ((instruction&0x00FF)==0x0023) {
406 /* braf @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900407 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (ret==0)
409 regs->pc += rm + 4;
410 }
411 else if ((instruction&0x00FF)==0x0003) {
412 /* bsrf @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900413 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (ret==0) {
415 regs->pr = regs->pc + 4;
416 regs->pc += rm + 4;
417 }
418 }
419 else {
420 /* mov.[bwl] to/from memory via r0+rn */
421 goto simple;
422 }
423 break;
424
425 case 0x1000: /* mov.l Rm,@(disp,Rn) */
426 goto simple;
427
428 case 0x2000: /* mov.[bwl] to memory, possibly with pre-decrement */
429 goto simple;
430
431 case 0x4000:
432 if ((instruction&0x00FF)==0x002B) {
433 /* jmp @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900434 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (ret==0)
436 regs->pc = rm;
437 }
438 else if ((instruction&0x00FF)==0x000B) {
439 /* jsr @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900440 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (ret==0) {
442 regs->pr = regs->pc + 4;
443 regs->pc = rm;
444 }
445 }
446 else {
447 /* mov.[bwl] to/from memory via r0+rn */
448 goto simple;
449 }
450 break;
451
452 case 0x5000: /* mov.l @(disp,Rm),Rn */
453 goto simple;
454
455 case 0x6000: /* mov.[bwl] from memory, possibly with post-increment */
456 goto simple;
457
458 case 0x8000: /* bf lab, bf/s lab, bt lab, bt/s lab */
459 switch (instruction&0x0F00) {
460 case 0x0100: /* mov.w R0,@(disp,Rm) */
461 goto simple;
462 case 0x0500: /* mov.w @(disp,Rm),R0 */
463 goto simple;
464 case 0x0B00: /* bf lab - no delayslot*/
465 break;
466 case 0x0F00: /* bf/s lab */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900467 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (ret==0) {
469#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
470 if ((regs->sr & 0x00000001) != 0)
471 regs->pc += 4; /* next after slot */
472 else
473#endif
474 regs->pc += SH_PC_8BIT_OFFSET(instruction);
475 }
476 break;
477 case 0x0900: /* bt lab - no delayslot */
478 break;
479 case 0x0D00: /* bt/s lab */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900480 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (ret==0) {
482#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
483 if ((regs->sr & 0x00000001) == 0)
484 regs->pc += 4; /* next after slot */
485 else
486#endif
487 regs->pc += SH_PC_8BIT_OFFSET(instruction);
488 }
489 break;
490 }
491 break;
492
493 case 0xA000: /* bra label */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900494 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (ret==0)
496 regs->pc += SH_PC_12BIT_OFFSET(instruction);
497 break;
498
499 case 0xB000: /* bsr label */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900500 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (ret==0) {
502 regs->pr = regs->pc + 4;
503 regs->pc += SH_PC_12BIT_OFFSET(instruction);
504 }
505 break;
506 }
507 return ret;
508
509 /* handle non-delay-slot instruction */
510 simple:
Magnus Damme7cc9a72008-02-07 20:18:21 +0900511 ret = handle_unaligned_ins(instruction, regs, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (ret==0)
Paul Mundt53f983a2007-05-08 15:31:48 +0900513 regs->pc += instruction_size(instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return ret;
515}
516
Yoshinori Sato0983b312006-11-05 15:58:47 +0900517#ifdef CONFIG_CPU_HAS_SR_RB
518#define lookup_exception_vector(x) \
519 __asm__ __volatile__ ("stc r2_bank, %0\n\t" : "=r" ((x)))
520#else
521#define lookup_exception_vector(x) \
522 __asm__ __volatile__ ("mov r4, %0\n\t" : "=r" ((x)))
523#endif
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/*
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900526 * Handle various address error exceptions:
527 * - instruction address error:
528 * misaligned PC
529 * PC >= 0x80000000 in user mode
530 * - data address error (read and write)
531 * misaligned data access
532 * access to >= 0x80000000 is user mode
533 * Unfortuntaly we can't distinguish between instruction address error
Simon Arlotte868d612007-05-14 08:15:10 +0900534 * and data address errors caused by read accesses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900536asmlinkage void do_address_error(struct pt_regs *regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 unsigned long writeaccess,
538 unsigned long address)
539{
Yoshinori Sato0983b312006-11-05 15:58:47 +0900540 unsigned long error_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 mm_segment_t oldfs;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900542 siginfo_t info;
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900543 opcode_t instruction;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 int tmp;
545
Yoshinori Sato0983b312006-11-05 15:58:47 +0900546 /* Intentional ifdef */
547#ifdef CONFIG_CPU_HAS_SR_RB
548 lookup_exception_vector(error_code);
549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 oldfs = get_fs();
552
553 if (user_mode(regs)) {
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900554 int si_code = BUS_ADRERR;
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 /* bad PC is not something we can fix */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900559 if (regs->pc & 1) {
560 si_code = BUS_ADRALN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 goto uspace_segv;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 set_fs(USER_DS);
Paul Mundtfa439722008-09-04 18:53:58 +0900565 if (copy_from_user(&instruction, (void __user *)(regs->pc),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900566 sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 /* Argh. Fault on the instruction itself.
568 This should never happen non-SMP
569 */
570 set_fs(oldfs);
571 goto uspace_segv;
572 }
573
Magnus Damme7cc9a72008-02-07 20:18:21 +0900574 tmp = handle_unaligned_access(instruction, regs,
575 &user_mem_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 set_fs(oldfs);
577
578 if (tmp==0)
579 return; /* sorted */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900580uspace_segv:
581 printk(KERN_NOTICE "Sending SIGBUS to \"%s\" due to unaligned "
582 "access (PC %lx PR %lx)\n", current->comm, regs->pc,
583 regs->pr);
584
585 info.si_signo = SIGBUS;
586 info.si_errno = 0;
587 info.si_code = si_code;
Paul Mundte08f4572007-05-14 12:52:56 +0900588 info.si_addr = (void __user *)address;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900589 force_sig_info(SIGBUS, &info, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 } else {
591 if (regs->pc & 1)
592 die("unaligned program counter", regs, error_code);
593
594 set_fs(KERNEL_DS);
Paul Mundtfa439722008-09-04 18:53:58 +0900595 if (copy_from_user(&instruction, (void __user *)(regs->pc),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900596 sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* Argh. Fault on the instruction itself.
598 This should never happen non-SMP
599 */
600 set_fs(oldfs);
601 die("insn faulting in do_address_error", regs, 0);
602 }
603
Magnus Damme7cc9a72008-02-07 20:18:21 +0900604 handle_unaligned_access(instruction, regs, &user_mem_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 set_fs(oldfs);
606 }
607}
608
609#ifdef CONFIG_SH_DSP
610/*
611 * SH-DSP support gerg@snapgear.com.
612 */
613int is_dsp_inst(struct pt_regs *regs)
614{
Paul Mundt882c12c2007-05-14 17:26:34 +0900615 unsigned short inst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900617 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 * Safe guard if DSP mode is already enabled or we're lacking
619 * the DSP altogether.
620 */
Paul Mundt11c19652006-12-25 10:19:56 +0900621 if (!(current_cpu_data.flags & CPU_HAS_DSP) || (regs->sr & SR_DSP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return 0;
623
624 get_user(inst, ((unsigned short *) regs->pc));
625
626 inst &= 0xf000;
627
628 /* Check for any type of DSP or support instruction */
629 if ((inst == 0xf000) || (inst == 0x4000))
630 return 1;
631
632 return 0;
633}
634#else
635#define is_dsp_inst(regs) (0)
636#endif /* CONFIG_SH_DSP */
637
Yoshinori Sato0983b312006-11-05 15:58:47 +0900638#ifdef CONFIG_CPU_SH2A
639asmlinkage void do_divide_error(unsigned long r4, unsigned long r5,
640 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900641 struct pt_regs __regs)
Yoshinori Sato0983b312006-11-05 15:58:47 +0900642{
643 siginfo_t info;
644
Yoshinori Sato0983b312006-11-05 15:58:47 +0900645 switch (r4) {
646 case TRAP_DIVZERO_ERROR:
647 info.si_code = FPE_INTDIV;
648 break;
649 case TRAP_DIVOVF_ERROR:
650 info.si_code = FPE_INTOVF;
651 break;
652 }
653
654 force_sig_info(SIGFPE, &info, current);
655}
656#endif
657
Takashi YOSHII4b565682006-09-27 17:15:32 +0900658asmlinkage void do_reserved_inst(unsigned long r4, unsigned long r5,
659 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900660 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900661{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900662 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900663 unsigned long error_code;
664 struct task_struct *tsk = current;
665
666#ifdef CONFIG_SH_FPU_EMU
Yoshinori Sato0983b312006-11-05 15:58:47 +0900667 unsigned short inst = 0;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900668 int err;
669
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900670 get_user(inst, (unsigned short*)regs->pc);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900671
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900672 err = do_fpu_inst(inst, regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900673 if (!err) {
Paul Mundt53f983a2007-05-08 15:31:48 +0900674 regs->pc += instruction_size(inst);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900675 return;
676 }
677 /* not a FPU inst. */
678#endif
679
680#ifdef CONFIG_SH_DSP
681 /* Check if it's a DSP instruction */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900682 if (is_dsp_inst(regs)) {
Takashi YOSHII4b565682006-09-27 17:15:32 +0900683 /* Enable DSP mode, and restart instruction. */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900684 regs->sr |= SR_DSP;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900685 return;
686 }
687#endif
688
Yoshinori Sato0983b312006-11-05 15:58:47 +0900689 lookup_exception_vector(error_code);
690
Takashi YOSHII4b565682006-09-27 17:15:32 +0900691 local_irq_enable();
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900692 CHK_REMOTE_DEBUG(regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900693 force_sig(SIGILL, tsk);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900694 die_if_no_fixup("reserved instruction", regs, error_code);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900695}
696
697#ifdef CONFIG_SH_FPU_EMU
698static int emulate_branch(unsigned short inst, struct pt_regs* regs)
699{
700 /*
701 * bfs: 8fxx: PC+=d*2+4;
702 * bts: 8dxx: PC+=d*2+4;
703 * bra: axxx: PC+=D*2+4;
704 * bsr: bxxx: PC+=D*2+4 after PR=PC+4;
705 * braf:0x23: PC+=Rn*2+4;
706 * bsrf:0x03: PC+=Rn*2+4 after PR=PC+4;
707 * jmp: 4x2b: PC=Rn;
708 * jsr: 4x0b: PC=Rn after PR=PC+4;
709 * rts: 000b: PC=PR;
710 */
711 if ((inst & 0xfd00) == 0x8d00) {
712 regs->pc += SH_PC_8BIT_OFFSET(inst);
713 return 0;
714 }
715
716 if ((inst & 0xe000) == 0xa000) {
717 regs->pc += SH_PC_12BIT_OFFSET(inst);
718 return 0;
719 }
720
721 if ((inst & 0xf0df) == 0x0003) {
722 regs->pc += regs->regs[(inst & 0x0f00) >> 8] + 4;
723 return 0;
724 }
725
726 if ((inst & 0xf0df) == 0x400b) {
727 regs->pc = regs->regs[(inst & 0x0f00) >> 8];
728 return 0;
729 }
730
731 if ((inst & 0xffff) == 0x000b) {
732 regs->pc = regs->pr;
733 return 0;
734 }
735
736 return 1;
737}
738#endif
739
740asmlinkage void do_illegal_slot_inst(unsigned long r4, unsigned long r5,
741 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900742 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900743{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900744 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900745 unsigned long error_code;
746 struct task_struct *tsk = current;
Chris Smithd39f5452008-09-05 17:15:39 +0900747
748 if (kprobe_handle_illslot(regs->pc) == 0)
749 return;
750
Takashi YOSHII4b565682006-09-27 17:15:32 +0900751#ifdef CONFIG_SH_FPU_EMU
Yoshinori Sato0983b312006-11-05 15:58:47 +0900752 unsigned short inst = 0;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900753
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900754 get_user(inst, (unsigned short *)regs->pc + 1);
755 if (!do_fpu_inst(inst, regs)) {
756 get_user(inst, (unsigned short *)regs->pc);
757 if (!emulate_branch(inst, regs))
Takashi YOSHII4b565682006-09-27 17:15:32 +0900758 return;
759 /* fault in branch.*/
760 }
761 /* not a FPU inst. */
762#endif
763
Yoshinori Sato0983b312006-11-05 15:58:47 +0900764 lookup_exception_vector(error_code);
765
Takashi YOSHII4b565682006-09-27 17:15:32 +0900766 local_irq_enable();
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900767 CHK_REMOTE_DEBUG(regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900768 force_sig(SIGILL, tsk);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900769 die_if_no_fixup("illegal slot instruction", regs, error_code);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900770}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772asmlinkage void do_exception_error(unsigned long r4, unsigned long r5,
773 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900774 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900776 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 long ex;
Yoshinori Sato0983b312006-11-05 15:58:47 +0900778
779 lookup_exception_vector(ex);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900780 die_if_kernel("exception", regs, ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783#if defined(CONFIG_SH_STANDARD_BIOS)
784void *gdb_vbr_vector;
785
786static inline void __init gdb_vbr_init(void)
787{
788 register unsigned long vbr;
789
790 /*
791 * Read the old value of the VBR register to initialise
792 * the vector through which debug and BIOS traps are
793 * delegated by the Linux trap handler.
794 */
795 asm volatile("stc vbr, %0" : "=r" (vbr));
796
797 gdb_vbr_vector = (void *)(vbr + 0x100);
798 printk("Setting GDB trap vector to 0x%08lx\n",
799 (unsigned long)gdb_vbr_vector);
800}
801#endif
802
Paul Mundtaba10302007-09-21 18:32:32 +0900803void __cpuinit per_cpu_trap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 extern void *vbr_base;
806
807#ifdef CONFIG_SH_STANDARD_BIOS
Paul Mundtaba10302007-09-21 18:32:32 +0900808 if (raw_smp_processor_id() == 0)
809 gdb_vbr_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810#endif
811
812 /* NOTE: The VBR value should be at P1
813 (or P2, virtural "fixed" address space).
814 It's definitely should not in physical address. */
815
816 asm volatile("ldc %0, vbr"
817 : /* no output */
818 : "r" (&vbr_base)
819 : "memory");
820}
821
Paul Mundt1f666582006-10-19 16:20:25 +0900822void *set_exception_table_vec(unsigned int vec, void *handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 extern void *exception_handling_table[];
Paul Mundt1f666582006-10-19 16:20:25 +0900825 void *old_handler;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900826
Paul Mundt1f666582006-10-19 16:20:25 +0900827 old_handler = exception_handling_table[vec];
828 exception_handling_table[vec] = handler;
829 return old_handler;
830}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Paul Mundt1f666582006-10-19 16:20:25 +0900832void __init trap_init(void)
833{
834 set_exception_table_vec(TRAP_RESERVED_INST, do_reserved_inst);
835 set_exception_table_vec(TRAP_ILLEGAL_SLOT_INST, do_illegal_slot_inst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Takashi YOSHII4b565682006-09-27 17:15:32 +0900837#if defined(CONFIG_CPU_SH4) && !defined(CONFIG_SH_FPU) || \
838 defined(CONFIG_SH_FPU_EMU)
839 /*
840 * For SH-4 lacking an FPU, treat floating point instructions as
841 * reserved. They'll be handled in the math-emu case, or faulted on
842 * otherwise.
843 */
Paul Mundt1f666582006-10-19 16:20:25 +0900844 set_exception_table_evt(0x800, do_reserved_inst);
845 set_exception_table_evt(0x820, do_illegal_slot_inst);
846#elif defined(CONFIG_SH_FPU)
Paul Mundte0a36472007-08-01 16:55:07 +0900847#ifdef CONFIG_CPU_SUBTYPE_SHX3
Paul Mundt74d99a52007-11-26 20:38:36 +0900848 set_exception_table_evt(0xd80, fpu_state_restore_trap_handler);
849 set_exception_table_evt(0xda0, fpu_state_restore_trap_handler);
Paul Mundte0a36472007-08-01 16:55:07 +0900850#else
Paul Mundt74d99a52007-11-26 20:38:36 +0900851 set_exception_table_evt(0x800, fpu_state_restore_trap_handler);
852 set_exception_table_evt(0x820, fpu_state_restore_trap_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853#endif
Paul Mundte0a36472007-08-01 16:55:07 +0900854#endif
Yoshinori Sato0983b312006-11-05 15:58:47 +0900855
856#ifdef CONFIG_CPU_SH2
Paul Mundt5a4f7c62007-11-20 18:08:06 +0900857 set_exception_table_vec(TRAP_ADDRESS_ERROR, address_error_trap_handler);
Yoshinori Sato0983b312006-11-05 15:58:47 +0900858#endif
859#ifdef CONFIG_CPU_SH2A
860 set_exception_table_vec(TRAP_DIVZERO_ERROR, do_divide_error);
861 set_exception_table_vec(TRAP_DIVOVF_ERROR, do_divide_error);
Yoshinori Sato6e80f5e2008-07-10 01:20:03 +0900862#ifdef CONFIG_SH_FPU
863 set_exception_table_vec(TRAP_FPU_ERROR, fpu_error_trap_handler);
864#endif
Yoshinori Sato0983b312006-11-05 15:58:47 +0900865#endif
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /* Setup VBR for boot cpu */
868 per_cpu_trap_init();
869}
870
Paul Mundt6b002232006-10-12 17:07:45 +0900871void show_trace(struct task_struct *tsk, unsigned long *sp,
872 struct pt_regs *regs)
873{
874 unsigned long addr;
875
876 if (regs && user_mode(regs))
877 return;
878
879 printk("\nCall trace: ");
880#ifdef CONFIG_KALLSYMS
881 printk("\n");
882#endif
883
884 while (!kstack_end(sp)) {
885 addr = *sp++;
886 if (kernel_text_address(addr))
887 print_ip_sym(addr);
888 }
889
890 printk("\n");
Paul Mundt9b8c90e2006-12-06 11:07:51 +0900891
892 if (!tsk)
893 tsk = current;
894
895 debug_show_held_locks(tsk);
Paul Mundt6b002232006-10-12 17:07:45 +0900896}
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898void show_stack(struct task_struct *tsk, unsigned long *sp)
899{
Paul Mundt6b002232006-10-12 17:07:45 +0900900 unsigned long stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Paul Mundta6a311392006-09-27 18:22:14 +0900902 if (!tsk)
903 tsk = current;
904 if (tsk == current)
905 sp = (unsigned long *)current_stack_pointer;
906 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 sp = (unsigned long *)tsk->thread.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Paul Mundt6b002232006-10-12 17:07:45 +0900909 stack = (unsigned long)sp;
910 dump_mem("Stack: ", stack, THREAD_SIZE +
911 (unsigned long)task_stack_page(tsk));
912 show_trace(tsk, sp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915void dump_stack(void)
916{
917 show_stack(NULL, NULL);
918}
919EXPORT_SYMBOL(dump_stack);