blob: 4901f673216210b5b5f26bf39fa7604a1c16377d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#ifdef CONFIG_SH_KGDB
31#include <asm/kgdb.h>
Stuart Menefyf0bc8142006-11-21 11:16:57 +090032#define CHK_REMOTE_DEBUG(regs) \
33{ \
Takashi YOSHII4b565682006-09-27 17:15:32 +090034 if (kgdb_debug_hook && !user_mode(regs))\
35 (*kgdb_debug_hook)(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070036}
37#else
38#define CHK_REMOTE_DEBUG(regs)
39#endif
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#ifdef CONFIG_CPU_SH2
Yoshinori Sato0983b312006-11-05 15:58:47 +090042# define TRAP_RESERVED_INST 4
43# define TRAP_ILLEGAL_SLOT_INST 6
44# define TRAP_ADDRESS_ERROR 9
45# ifdef CONFIG_CPU_SH2A
Yoshinori Sato6e80f5e2008-07-10 01:20:03 +090046# define TRAP_FPU_ERROR 13
Yoshinori Sato0983b312006-11-05 15:58:47 +090047# define TRAP_DIVZERO_ERROR 17
48# define TRAP_DIVOVF_ERROR 18
49# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#else
51#define TRAP_RESERVED_INST 12
52#define TRAP_ILLEGAL_SLOT_INST 13
53#endif
54
Paul Mundt6b002232006-10-12 17:07:45 +090055static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
56{
57 unsigned long p;
58 int i;
59
60 printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top);
61
62 for (p = bottom & ~31; p < top; ) {
63 printk("%04lx: ", p & 0xffff);
64
65 for (i = 0; i < 8; i++, p += 4) {
66 unsigned int val;
67
68 if (p < bottom || p >= top)
69 printk(" ");
70 else {
71 if (__get_user(val, (unsigned int __user *)p)) {
72 printk("\n");
73 return;
74 }
75 printk("%08x ", val);
76 }
77 }
78 printk("\n");
79 }
80}
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Paul Mundt3a2e1172007-05-01 16:33:10 +090082static DEFINE_SPINLOCK(die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84void die(const char * str, struct pt_regs * regs, long err)
85{
86 static int die_counter;
87
Paul Mundt55273982007-06-18 18:57:13 +090088 oops_enter();
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 console_verbose();
91 spin_lock_irq(&die_lock);
Paul Mundt6b002232006-10-12 17:07:45 +090092 bust_spinlocks(1);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 printk("%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
Paul Mundt6b002232006-10-12 17:07:45 +090095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 CHK_REMOTE_DEBUG(regs);
Paul Mundt6b002232006-10-12 17:07:45 +090097 print_modules();
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 show_regs(regs);
Paul Mundt6b002232006-10-12 17:07:45 +090099
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700100 printk("Process: %s (pid: %d, stack limit = %p)\n", current->comm,
101 task_pid_nr(current), task_stack_page(current) + 1);
Paul Mundt6b002232006-10-12 17:07:45 +0900102
103 if (!user_mode(regs) || in_interrupt())
104 dump_mem("Stack: ", regs->regs[15], THREAD_SIZE +
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900105 (unsigned long)task_stack_page(current));
Paul Mundt6b002232006-10-12 17:07:45 +0900106
107 bust_spinlocks(0);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700108 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 spin_unlock_irq(&die_lock);
Paul Mundte1132762007-05-15 08:36:36 +0900110
111 if (kexec_should_crash(current))
112 crash_kexec(regs);
113
114 if (in_interrupt())
115 panic("Fatal exception in interrupt");
116
117 if (panic_on_oops)
118 panic("Fatal exception");
119
Paul Mundt55273982007-06-18 18:57:13 +0900120 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 do_exit(SIGSEGV);
122}
123
Paul Mundt6b002232006-10-12 17:07:45 +0900124static inline void die_if_kernel(const char *str, struct pt_regs *regs,
125 long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 if (!user_mode(regs))
128 die(str, regs, err);
129}
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131/*
132 * try and fix up kernelspace address errors
133 * - userspace errors just cause EFAULT to be returned, resulting in SEGV
134 * - kernel/userspace interfaces cause a jump to an appropriate handler
135 * - other kernel errors are bad
136 * - return 0 if fixed-up, -EFAULT if non-fatal (to the kernel) fault
137 */
138static int die_if_no_fixup(const char * str, struct pt_regs * regs, long err)
139{
Paul Mundt6b002232006-10-12 17:07:45 +0900140 if (!user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 const struct exception_table_entry *fixup;
142 fixup = search_exception_tables(regs->pc);
143 if (fixup) {
144 regs->pc = fixup->fixup;
145 return 0;
146 }
147 die(str, regs, err);
148 }
149 return -EFAULT;
150}
151
Magnus Damm86c01792008-02-07 00:02:50 +0900152static inline void sign_extend(unsigned int count, unsigned char *dst)
153{
154#ifdef __LITTLE_ENDIAN__
Magnus Damm4252c652008-02-07 19:58:46 +0900155 if ((count == 1) && dst[0] & 0x80) {
156 dst[1] = 0xff;
157 dst[2] = 0xff;
158 dst[3] = 0xff;
159 }
Magnus Damm86c01792008-02-07 00:02:50 +0900160 if ((count == 2) && dst[1] & 0x80) {
161 dst[2] = 0xff;
162 dst[3] = 0xff;
163 }
164#else
Magnus Damm4252c652008-02-07 19:58:46 +0900165 if ((count == 1) && dst[3] & 0x80) {
166 dst[2] = 0xff;
Magnus Damm86c01792008-02-07 00:02:50 +0900167 dst[1] = 0xff;
Magnus Damm4252c652008-02-07 19:58:46 +0900168 dst[0] = 0xff;
169 }
170 if ((count == 2) && dst[2] & 0x80) {
171 dst[1] = 0xff;
172 dst[0] = 0xff;
Magnus Damm86c01792008-02-07 00:02:50 +0900173 }
174#endif
175}
176
Magnus Damme7cc9a72008-02-07 20:18:21 +0900177static struct mem_access user_mem_access = {
178 copy_from_user,
179 copy_to_user,
180};
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/*
183 * handle an instruction that does an unaligned memory access by emulating the
184 * desired behaviour
185 * - note that PC _may not_ point to the faulting instruction
186 * (if that instruction is in a branch delay slot)
187 * - return 0 if emulation okay, -EFAULT on existential error
188 */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900189static int handle_unaligned_ins(opcode_t instruction, struct pt_regs *regs,
190 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 int ret, index, count;
193 unsigned long *rm, *rn;
194 unsigned char *src, *dst;
Paul Mundtfa439722008-09-04 18:53:58 +0900195 unsigned char __user *srcu, *dstu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 index = (instruction>>8)&15; /* 0x0F00 */
198 rn = &regs->regs[index];
199
200 index = (instruction>>4)&15; /* 0x00F0 */
201 rm = &regs->regs[index];
202
203 count = 1<<(instruction&3);
204
205 ret = -EFAULT;
206 switch (instruction>>12) {
207 case 0: /* mov.[bwl] to/from memory via r0+rn */
208 if (instruction & 8) {
209 /* from memory */
Paul Mundtfa439722008-09-04 18:53:58 +0900210 srcu = (unsigned char __user *)*rm;
211 srcu += regs->regs[0];
212 dst = (unsigned char *)rn;
213 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Magnus Damm86c01792008-02-07 00:02:50 +0900215#if !defined(__LITTLE_ENDIAN__)
216 dst += 4-count;
217#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900218 if (ma->from(dst, srcu, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 goto fetch_fault;
220
Magnus Damm86c01792008-02-07 00:02:50 +0900221 sign_extend(count, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 } else {
223 /* to memory */
Paul Mundtfa439722008-09-04 18:53:58 +0900224 src = (unsigned char *)rm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225#if !defined(__LITTLE_ENDIAN__)
226 src += 4-count;
227#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900228 dstu = (unsigned char __user *)*rn;
229 dstu += regs->regs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Paul Mundtfa439722008-09-04 18:53:58 +0900231 if (ma->to(dstu, src, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 goto fetch_fault;
233 }
234 ret = 0;
235 break;
236
237 case 1: /* mov.l Rm,@(disp,Rn) */
238 src = (unsigned char*) rm;
Paul Mundtfa439722008-09-04 18:53:58 +0900239 dstu = (unsigned char __user *)*rn;
240 dstu += (instruction&0x000F)<<2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Paul Mundtfa439722008-09-04 18:53:58 +0900242 if (ma->to(dstu, src, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto fetch_fault;
244 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900245 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 case 2: /* mov.[bwl] to memory, possibly with pre-decrement */
248 if (instruction & 4)
249 *rn -= count;
250 src = (unsigned char*) rm;
Paul Mundtfa439722008-09-04 18:53:58 +0900251 dstu = (unsigned char __user *)*rn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252#if !defined(__LITTLE_ENDIAN__)
253 src += 4-count;
254#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900255 if (ma->to(dstu, src, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 goto fetch_fault;
257 ret = 0;
258 break;
259
260 case 5: /* mov.l @(disp,Rm),Rn */
Paul Mundtfa439722008-09-04 18:53:58 +0900261 srcu = (unsigned char __user *)*rm;
262 srcu += (instruction & 0x000F) << 2;
263 dst = (unsigned char *)rn;
264 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Paul Mundtfa439722008-09-04 18:53:58 +0900266 if (ma->from(dst, srcu, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 goto fetch_fault;
268 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900269 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 case 6: /* mov.[bwl] from memory, possibly with post-increment */
Paul Mundtfa439722008-09-04 18:53:58 +0900272 srcu = (unsigned char __user *)*rm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (instruction & 4)
274 *rm += count;
275 dst = (unsigned char*) rn;
276 *(unsigned long*)dst = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900277
Magnus Damm86c01792008-02-07 00:02:50 +0900278#if !defined(__LITTLE_ENDIAN__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 dst += 4-count;
Magnus Damm86c01792008-02-07 00:02:50 +0900280#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900281 if (ma->from(dst, srcu, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 goto fetch_fault;
Magnus Damm86c01792008-02-07 00:02:50 +0900283 sign_extend(count, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 ret = 0;
285 break;
286
287 case 8:
288 switch ((instruction&0xFF00)>>8) {
289 case 0x81: /* mov.w R0,@(disp,Rn) */
Paul Mundtfa439722008-09-04 18:53:58 +0900290 src = (unsigned char *) &regs->regs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291#if !defined(__LITTLE_ENDIAN__)
292 src += 2;
293#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900294 dstu = (unsigned char __user *)*rm; /* called Rn in the spec */
295 dstu += (instruction & 0x000F) << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Paul Mundtfa439722008-09-04 18:53:58 +0900297 if (ma->to(dstu, src, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 goto fetch_fault;
299 ret = 0;
300 break;
301
302 case 0x85: /* mov.w @(disp,Rm),R0 */
Paul Mundtfa439722008-09-04 18:53:58 +0900303 srcu = (unsigned char __user *)*rm;
304 srcu += (instruction & 0x000F) << 1;
305 dst = (unsigned char *) &regs->regs[0];
306 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308#if !defined(__LITTLE_ENDIAN__)
309 dst += 2;
310#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900311 if (ma->from(dst, srcu, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 goto fetch_fault;
Magnus Damm86c01792008-02-07 00:02:50 +0900313 sign_extend(2, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 ret = 0;
315 break;
316 }
317 break;
318 }
319 return ret;
320
321 fetch_fault:
322 /* Argh. Address not only misaligned but also non-existent.
323 * Raise an EFAULT and see if it's trapped
324 */
325 return die_if_no_fixup("Fault in unaligned fixup", regs, 0);
326}
327
328/*
329 * emulate the instruction in the delay slot
330 * - fetches the instruction from PC+2
331 */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900332static inline int handle_delayslot(struct pt_regs *regs,
333 opcode_t old_instruction,
334 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900336 opcode_t instruction;
Paul Mundtfa439722008-09-04 18:53:58 +0900337 void __user *addr = (void __user *)(regs->pc +
338 instruction_size(old_instruction));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900340 if (copy_from_user(&instruction, addr, sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* the instruction-fetch faulted */
342 if (user_mode(regs))
343 return -EFAULT;
344
345 /* kernel */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900346 die("delay-slot-insn faulting in handle_unaligned_delayslot",
347 regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349
Magnus Damme7cc9a72008-02-07 20:18:21 +0900350 return handle_unaligned_ins(instruction, regs, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353/*
354 * handle an instruction that does an unaligned memory access
355 * - have to be careful of branch delay-slot instructions that fault
356 * SH3:
357 * - if the branch would be taken PC points to the branch
358 * - if the branch would not be taken, PC points to delay-slot
359 * SH4:
360 * - PC always points to delayed branch
361 * - return 0 if handled, -EFAULT if failed (may not return if in kernel)
362 */
363
364/* Macros to determine offset from current PC for branch instructions */
365/* Explicit type coercion is used to force sign extension where needed */
366#define SH_PC_8BIT_OFFSET(instr) ((((signed char)(instr))*2) + 4)
367#define SH_PC_12BIT_OFFSET(instr) ((((signed short)(instr<<4))>>3) + 4)
368
Paul Mundt710ee0c2006-11-05 16:48:42 +0900369/*
370 * XXX: SH-2A needs this too, but it needs an overhaul thanks to mixed 32-bit
371 * opcodes..
372 */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900373
Paul Mundt710ee0c2006-11-05 16:48:42 +0900374static int handle_unaligned_notify_count = 10;
375
Magnus Damme7cc9a72008-02-07 20:18:21 +0900376int handle_unaligned_access(opcode_t instruction, struct pt_regs *regs,
377 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 u_int rm;
380 int ret, index;
381
382 index = (instruction>>8)&15; /* 0x0F00 */
383 rm = regs->regs[index];
384
385 /* shout about the first ten userspace fixups */
386 if (user_mode(regs) && handle_unaligned_notify_count>0) {
387 handle_unaligned_notify_count--;
388
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900389 printk(KERN_NOTICE "Fixing up unaligned userspace access "
390 "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700391 current->comm, task_pid_nr(current),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900392 (void *)regs->pc, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394
395 ret = -EFAULT;
396 switch (instruction&0xF000) {
397 case 0x0000:
398 if (instruction==0x000B) {
399 /* rts */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900400 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (ret==0)
402 regs->pc = regs->pr;
403 }
404 else if ((instruction&0x00FF)==0x0023) {
405 /* braf @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900406 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (ret==0)
408 regs->pc += rm + 4;
409 }
410 else if ((instruction&0x00FF)==0x0003) {
411 /* bsrf @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900412 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (ret==0) {
414 regs->pr = regs->pc + 4;
415 regs->pc += rm + 4;
416 }
417 }
418 else {
419 /* mov.[bwl] to/from memory via r0+rn */
420 goto simple;
421 }
422 break;
423
424 case 0x1000: /* mov.l Rm,@(disp,Rn) */
425 goto simple;
426
427 case 0x2000: /* mov.[bwl] to memory, possibly with pre-decrement */
428 goto simple;
429
430 case 0x4000:
431 if ((instruction&0x00FF)==0x002B) {
432 /* jmp @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900433 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (ret==0)
435 regs->pc = rm;
436 }
437 else if ((instruction&0x00FF)==0x000B) {
438 /* jsr @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900439 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (ret==0) {
441 regs->pr = regs->pc + 4;
442 regs->pc = rm;
443 }
444 }
445 else {
446 /* mov.[bwl] to/from memory via r0+rn */
447 goto simple;
448 }
449 break;
450
451 case 0x5000: /* mov.l @(disp,Rm),Rn */
452 goto simple;
453
454 case 0x6000: /* mov.[bwl] from memory, possibly with post-increment */
455 goto simple;
456
457 case 0x8000: /* bf lab, bf/s lab, bt lab, bt/s lab */
458 switch (instruction&0x0F00) {
459 case 0x0100: /* mov.w R0,@(disp,Rm) */
460 goto simple;
461 case 0x0500: /* mov.w @(disp,Rm),R0 */
462 goto simple;
463 case 0x0B00: /* bf lab - no delayslot*/
464 break;
465 case 0x0F00: /* bf/s lab */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900466 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (ret==0) {
468#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
469 if ((regs->sr & 0x00000001) != 0)
470 regs->pc += 4; /* next after slot */
471 else
472#endif
473 regs->pc += SH_PC_8BIT_OFFSET(instruction);
474 }
475 break;
476 case 0x0900: /* bt lab - no delayslot */
477 break;
478 case 0x0D00: /* bt/s lab */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900479 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (ret==0) {
481#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
482 if ((regs->sr & 0x00000001) == 0)
483 regs->pc += 4; /* next after slot */
484 else
485#endif
486 regs->pc += SH_PC_8BIT_OFFSET(instruction);
487 }
488 break;
489 }
490 break;
491
492 case 0xA000: /* bra label */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900493 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (ret==0)
495 regs->pc += SH_PC_12BIT_OFFSET(instruction);
496 break;
497
498 case 0xB000: /* bsr label */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900499 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (ret==0) {
501 regs->pr = regs->pc + 4;
502 regs->pc += SH_PC_12BIT_OFFSET(instruction);
503 }
504 break;
505 }
506 return ret;
507
508 /* handle non-delay-slot instruction */
509 simple:
Magnus Damme7cc9a72008-02-07 20:18:21 +0900510 ret = handle_unaligned_ins(instruction, regs, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (ret==0)
Paul Mundt53f983a2007-05-08 15:31:48 +0900512 regs->pc += instruction_size(instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return ret;
514}
515
Yoshinori Sato0983b312006-11-05 15:58:47 +0900516#ifdef CONFIG_CPU_HAS_SR_RB
517#define lookup_exception_vector(x) \
518 __asm__ __volatile__ ("stc r2_bank, %0\n\t" : "=r" ((x)))
519#else
520#define lookup_exception_vector(x) \
521 __asm__ __volatile__ ("mov r4, %0\n\t" : "=r" ((x)))
522#endif
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/*
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900525 * Handle various address error exceptions:
526 * - instruction address error:
527 * misaligned PC
528 * PC >= 0x80000000 in user mode
529 * - data address error (read and write)
530 * misaligned data access
531 * access to >= 0x80000000 is user mode
532 * Unfortuntaly we can't distinguish between instruction address error
Simon Arlotte868d612007-05-14 08:15:10 +0900533 * and data address errors caused by read accesses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900535asmlinkage void do_address_error(struct pt_regs *regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 unsigned long writeaccess,
537 unsigned long address)
538{
Yoshinori Sato0983b312006-11-05 15:58:47 +0900539 unsigned long error_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 mm_segment_t oldfs;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900541 siginfo_t info;
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900542 opcode_t instruction;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int tmp;
544
Yoshinori Sato0983b312006-11-05 15:58:47 +0900545 /* Intentional ifdef */
546#ifdef CONFIG_CPU_HAS_SR_RB
547 lookup_exception_vector(error_code);
548#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 oldfs = get_fs();
551
552 if (user_mode(regs)) {
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900553 int si_code = BUS_ADRERR;
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 /* bad PC is not something we can fix */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900558 if (regs->pc & 1) {
559 si_code = BUS_ADRALN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 goto uspace_segv;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 set_fs(USER_DS);
Paul Mundtfa439722008-09-04 18:53:58 +0900564 if (copy_from_user(&instruction, (void __user *)(regs->pc),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900565 sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 /* Argh. Fault on the instruction itself.
567 This should never happen non-SMP
568 */
569 set_fs(oldfs);
570 goto uspace_segv;
571 }
572
Magnus Damme7cc9a72008-02-07 20:18:21 +0900573 tmp = handle_unaligned_access(instruction, regs,
574 &user_mem_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 set_fs(oldfs);
576
577 if (tmp==0)
578 return; /* sorted */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900579uspace_segv:
580 printk(KERN_NOTICE "Sending SIGBUS to \"%s\" due to unaligned "
581 "access (PC %lx PR %lx)\n", current->comm, regs->pc,
582 regs->pr);
583
584 info.si_signo = SIGBUS;
585 info.si_errno = 0;
586 info.si_code = si_code;
Paul Mundte08f4572007-05-14 12:52:56 +0900587 info.si_addr = (void __user *)address;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900588 force_sig_info(SIGBUS, &info, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 } else {
590 if (regs->pc & 1)
591 die("unaligned program counter", regs, error_code);
592
593 set_fs(KERNEL_DS);
Paul Mundtfa439722008-09-04 18:53:58 +0900594 if (copy_from_user(&instruction, (void __user *)(regs->pc),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900595 sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /* Argh. Fault on the instruction itself.
597 This should never happen non-SMP
598 */
599 set_fs(oldfs);
600 die("insn faulting in do_address_error", regs, 0);
601 }
602
Magnus Damme7cc9a72008-02-07 20:18:21 +0900603 handle_unaligned_access(instruction, regs, &user_mem_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 set_fs(oldfs);
605 }
606}
607
608#ifdef CONFIG_SH_DSP
609/*
610 * SH-DSP support gerg@snapgear.com.
611 */
612int is_dsp_inst(struct pt_regs *regs)
613{
Paul Mundt882c12c2007-05-14 17:26:34 +0900614 unsigned short inst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900616 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 * Safe guard if DSP mode is already enabled or we're lacking
618 * the DSP altogether.
619 */
Paul Mundt11c19652006-12-25 10:19:56 +0900620 if (!(current_cpu_data.flags & CPU_HAS_DSP) || (regs->sr & SR_DSP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return 0;
622
623 get_user(inst, ((unsigned short *) regs->pc));
624
625 inst &= 0xf000;
626
627 /* Check for any type of DSP or support instruction */
628 if ((inst == 0xf000) || (inst == 0x4000))
629 return 1;
630
631 return 0;
632}
633#else
634#define is_dsp_inst(regs) (0)
635#endif /* CONFIG_SH_DSP */
636
Yoshinori Sato0983b312006-11-05 15:58:47 +0900637#ifdef CONFIG_CPU_SH2A
638asmlinkage void do_divide_error(unsigned long r4, unsigned long r5,
639 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900640 struct pt_regs __regs)
Yoshinori Sato0983b312006-11-05 15:58:47 +0900641{
642 siginfo_t info;
643
Yoshinori Sato0983b312006-11-05 15:58:47 +0900644 switch (r4) {
645 case TRAP_DIVZERO_ERROR:
646 info.si_code = FPE_INTDIV;
647 break;
648 case TRAP_DIVOVF_ERROR:
649 info.si_code = FPE_INTOVF;
650 break;
651 }
652
653 force_sig_info(SIGFPE, &info, current);
654}
655#endif
656
Takashi YOSHII4b565682006-09-27 17:15:32 +0900657asmlinkage void do_reserved_inst(unsigned long r4, unsigned long r5,
658 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900659 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900660{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900661 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900662 unsigned long error_code;
663 struct task_struct *tsk = current;
664
665#ifdef CONFIG_SH_FPU_EMU
Yoshinori Sato0983b312006-11-05 15:58:47 +0900666 unsigned short inst = 0;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900667 int err;
668
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900669 get_user(inst, (unsigned short*)regs->pc);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900670
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900671 err = do_fpu_inst(inst, regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900672 if (!err) {
Paul Mundt53f983a2007-05-08 15:31:48 +0900673 regs->pc += instruction_size(inst);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900674 return;
675 }
676 /* not a FPU inst. */
677#endif
678
679#ifdef CONFIG_SH_DSP
680 /* Check if it's a DSP instruction */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900681 if (is_dsp_inst(regs)) {
Takashi YOSHII4b565682006-09-27 17:15:32 +0900682 /* Enable DSP mode, and restart instruction. */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900683 regs->sr |= SR_DSP;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900684 return;
685 }
686#endif
687
Yoshinori Sato0983b312006-11-05 15:58:47 +0900688 lookup_exception_vector(error_code);
689
Takashi YOSHII4b565682006-09-27 17:15:32 +0900690 local_irq_enable();
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900691 CHK_REMOTE_DEBUG(regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900692 force_sig(SIGILL, tsk);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900693 die_if_no_fixup("reserved instruction", regs, error_code);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900694}
695
696#ifdef CONFIG_SH_FPU_EMU
697static int emulate_branch(unsigned short inst, struct pt_regs* regs)
698{
699 /*
700 * bfs: 8fxx: PC+=d*2+4;
701 * bts: 8dxx: PC+=d*2+4;
702 * bra: axxx: PC+=D*2+4;
703 * bsr: bxxx: PC+=D*2+4 after PR=PC+4;
704 * braf:0x23: PC+=Rn*2+4;
705 * bsrf:0x03: PC+=Rn*2+4 after PR=PC+4;
706 * jmp: 4x2b: PC=Rn;
707 * jsr: 4x0b: PC=Rn after PR=PC+4;
708 * rts: 000b: PC=PR;
709 */
710 if ((inst & 0xfd00) == 0x8d00) {
711 regs->pc += SH_PC_8BIT_OFFSET(inst);
712 return 0;
713 }
714
715 if ((inst & 0xe000) == 0xa000) {
716 regs->pc += SH_PC_12BIT_OFFSET(inst);
717 return 0;
718 }
719
720 if ((inst & 0xf0df) == 0x0003) {
721 regs->pc += regs->regs[(inst & 0x0f00) >> 8] + 4;
722 return 0;
723 }
724
725 if ((inst & 0xf0df) == 0x400b) {
726 regs->pc = regs->regs[(inst & 0x0f00) >> 8];
727 return 0;
728 }
729
730 if ((inst & 0xffff) == 0x000b) {
731 regs->pc = regs->pr;
732 return 0;
733 }
734
735 return 1;
736}
737#endif
738
739asmlinkage void do_illegal_slot_inst(unsigned long r4, unsigned long r5,
740 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900741 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900742{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900743 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900744 unsigned long error_code;
745 struct task_struct *tsk = current;
746#ifdef CONFIG_SH_FPU_EMU
Yoshinori Sato0983b312006-11-05 15:58:47 +0900747 unsigned short inst = 0;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900748
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900749 get_user(inst, (unsigned short *)regs->pc + 1);
750 if (!do_fpu_inst(inst, regs)) {
751 get_user(inst, (unsigned short *)regs->pc);
752 if (!emulate_branch(inst, regs))
Takashi YOSHII4b565682006-09-27 17:15:32 +0900753 return;
754 /* fault in branch.*/
755 }
756 /* not a FPU inst. */
757#endif
758
Yoshinori Sato0983b312006-11-05 15:58:47 +0900759 lookup_exception_vector(error_code);
760
Takashi YOSHII4b565682006-09-27 17:15:32 +0900761 local_irq_enable();
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900762 CHK_REMOTE_DEBUG(regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900763 force_sig(SIGILL, tsk);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900764 die_if_no_fixup("illegal slot instruction", regs, error_code);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900765}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767asmlinkage void do_exception_error(unsigned long r4, unsigned long r5,
768 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900769 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900771 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 long ex;
Yoshinori Sato0983b312006-11-05 15:58:47 +0900773
774 lookup_exception_vector(ex);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900775 die_if_kernel("exception", regs, ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
778#if defined(CONFIG_SH_STANDARD_BIOS)
779void *gdb_vbr_vector;
780
781static inline void __init gdb_vbr_init(void)
782{
783 register unsigned long vbr;
784
785 /*
786 * Read the old value of the VBR register to initialise
787 * the vector through which debug and BIOS traps are
788 * delegated by the Linux trap handler.
789 */
790 asm volatile("stc vbr, %0" : "=r" (vbr));
791
792 gdb_vbr_vector = (void *)(vbr + 0x100);
793 printk("Setting GDB trap vector to 0x%08lx\n",
794 (unsigned long)gdb_vbr_vector);
795}
796#endif
797
Paul Mundtaba10302007-09-21 18:32:32 +0900798void __cpuinit per_cpu_trap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 extern void *vbr_base;
801
802#ifdef CONFIG_SH_STANDARD_BIOS
Paul Mundtaba10302007-09-21 18:32:32 +0900803 if (raw_smp_processor_id() == 0)
804 gdb_vbr_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805#endif
806
807 /* NOTE: The VBR value should be at P1
808 (or P2, virtural "fixed" address space).
809 It's definitely should not in physical address. */
810
811 asm volatile("ldc %0, vbr"
812 : /* no output */
813 : "r" (&vbr_base)
814 : "memory");
815}
816
Paul Mundt1f666582006-10-19 16:20:25 +0900817void *set_exception_table_vec(unsigned int vec, void *handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 extern void *exception_handling_table[];
Paul Mundt1f666582006-10-19 16:20:25 +0900820 void *old_handler;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900821
Paul Mundt1f666582006-10-19 16:20:25 +0900822 old_handler = exception_handling_table[vec];
823 exception_handling_table[vec] = handler;
824 return old_handler;
825}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Paul Mundt1f666582006-10-19 16:20:25 +0900827void __init trap_init(void)
828{
829 set_exception_table_vec(TRAP_RESERVED_INST, do_reserved_inst);
830 set_exception_table_vec(TRAP_ILLEGAL_SLOT_INST, do_illegal_slot_inst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Takashi YOSHII4b565682006-09-27 17:15:32 +0900832#if defined(CONFIG_CPU_SH4) && !defined(CONFIG_SH_FPU) || \
833 defined(CONFIG_SH_FPU_EMU)
834 /*
835 * For SH-4 lacking an FPU, treat floating point instructions as
836 * reserved. They'll be handled in the math-emu case, or faulted on
837 * otherwise.
838 */
Paul Mundt1f666582006-10-19 16:20:25 +0900839 set_exception_table_evt(0x800, do_reserved_inst);
840 set_exception_table_evt(0x820, do_illegal_slot_inst);
841#elif defined(CONFIG_SH_FPU)
Paul Mundte0a36472007-08-01 16:55:07 +0900842#ifdef CONFIG_CPU_SUBTYPE_SHX3
Paul Mundt74d99a52007-11-26 20:38:36 +0900843 set_exception_table_evt(0xd80, fpu_state_restore_trap_handler);
844 set_exception_table_evt(0xda0, fpu_state_restore_trap_handler);
Paul Mundte0a36472007-08-01 16:55:07 +0900845#else
Paul Mundt74d99a52007-11-26 20:38:36 +0900846 set_exception_table_evt(0x800, fpu_state_restore_trap_handler);
847 set_exception_table_evt(0x820, fpu_state_restore_trap_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848#endif
Paul Mundte0a36472007-08-01 16:55:07 +0900849#endif
Yoshinori Sato0983b312006-11-05 15:58:47 +0900850
851#ifdef CONFIG_CPU_SH2
Paul Mundt5a4f7c62007-11-20 18:08:06 +0900852 set_exception_table_vec(TRAP_ADDRESS_ERROR, address_error_trap_handler);
Yoshinori Sato0983b312006-11-05 15:58:47 +0900853#endif
854#ifdef CONFIG_CPU_SH2A
855 set_exception_table_vec(TRAP_DIVZERO_ERROR, do_divide_error);
856 set_exception_table_vec(TRAP_DIVOVF_ERROR, do_divide_error);
Yoshinori Sato6e80f5e2008-07-10 01:20:03 +0900857#ifdef CONFIG_SH_FPU
858 set_exception_table_vec(TRAP_FPU_ERROR, fpu_error_trap_handler);
859#endif
Yoshinori Sato0983b312006-11-05 15:58:47 +0900860#endif
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 /* Setup VBR for boot cpu */
863 per_cpu_trap_init();
864}
865
Paul Mundt6b002232006-10-12 17:07:45 +0900866void show_trace(struct task_struct *tsk, unsigned long *sp,
867 struct pt_regs *regs)
868{
869 unsigned long addr;
870
871 if (regs && user_mode(regs))
872 return;
873
874 printk("\nCall trace: ");
875#ifdef CONFIG_KALLSYMS
876 printk("\n");
877#endif
878
879 while (!kstack_end(sp)) {
880 addr = *sp++;
881 if (kernel_text_address(addr))
882 print_ip_sym(addr);
883 }
884
885 printk("\n");
Paul Mundt9b8c90e2006-12-06 11:07:51 +0900886
887 if (!tsk)
888 tsk = current;
889
890 debug_show_held_locks(tsk);
Paul Mundt6b002232006-10-12 17:07:45 +0900891}
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893void show_stack(struct task_struct *tsk, unsigned long *sp)
894{
Paul Mundt6b002232006-10-12 17:07:45 +0900895 unsigned long stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Paul Mundta6a311392006-09-27 18:22:14 +0900897 if (!tsk)
898 tsk = current;
899 if (tsk == current)
900 sp = (unsigned long *)current_stack_pointer;
901 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 sp = (unsigned long *)tsk->thread.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Paul Mundt6b002232006-10-12 17:07:45 +0900904 stack = (unsigned long)sp;
905 dump_mem("Stack: ", stack, THREAD_SIZE +
906 (unsigned long)task_stack_page(tsk));
907 show_trace(tsk, sp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
910void dump_stack(void)
911{
912 show_stack(NULL, NULL);
913}
914EXPORT_SYMBOL(dump_stack);