blob: 25b1b8672cf0ce5780e551afdad8a862e05b476b [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#ifdef CONFIG_SH_KGDB
30#include <asm/kgdb.h>
Stuart Menefyf0bc8142006-11-21 11:16:57 +090031#define CHK_REMOTE_DEBUG(regs) \
32{ \
Takashi YOSHII4b565682006-09-27 17:15:32 +090033 if (kgdb_debug_hook && !user_mode(regs))\
34 (*kgdb_debug_hook)(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36#else
37#define CHK_REMOTE_DEBUG(regs)
38#endif
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#ifdef CONFIG_CPU_SH2
Yoshinori Sato0983b312006-11-05 15:58:47 +090041# define TRAP_RESERVED_INST 4
42# define TRAP_ILLEGAL_SLOT_INST 6
43# define TRAP_ADDRESS_ERROR 9
44# ifdef CONFIG_CPU_SH2A
45# define TRAP_DIVZERO_ERROR 17
46# define TRAP_DIVOVF_ERROR 18
47# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#else
49#define TRAP_RESERVED_INST 12
50#define TRAP_ILLEGAL_SLOT_INST 13
51#endif
52
Paul Mundt6b002232006-10-12 17:07:45 +090053static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
54{
55 unsigned long p;
56 int i;
57
58 printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top);
59
60 for (p = bottom & ~31; p < top; ) {
61 printk("%04lx: ", p & 0xffff);
62
63 for (i = 0; i < 8; i++, p += 4) {
64 unsigned int val;
65
66 if (p < bottom || p >= top)
67 printk(" ");
68 else {
69 if (__get_user(val, (unsigned int __user *)p)) {
70 printk("\n");
71 return;
72 }
73 printk("%08x ", val);
74 }
75 }
76 printk("\n");
77 }
78}
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Paul Mundt3a2e1172007-05-01 16:33:10 +090080static DEFINE_SPINLOCK(die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82void die(const char * str, struct pt_regs * regs, long err)
83{
84 static int die_counter;
85
Paul Mundt55273982007-06-18 18:57:13 +090086 oops_enter();
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 console_verbose();
89 spin_lock_irq(&die_lock);
Paul Mundt6b002232006-10-12 17:07:45 +090090 bust_spinlocks(1);
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 printk("%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
Paul Mundt6b002232006-10-12 17:07:45 +090093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 CHK_REMOTE_DEBUG(regs);
Paul Mundt6b002232006-10-12 17:07:45 +090095 print_modules();
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 show_regs(regs);
Paul Mundt6b002232006-10-12 17:07:45 +090097
Alexey Dobriyan19c58702007-10-18 23:40:41 -070098 printk("Process: %s (pid: %d, stack limit = %p)\n", current->comm,
99 task_pid_nr(current), task_stack_page(current) + 1);
Paul Mundt6b002232006-10-12 17:07:45 +0900100
101 if (!user_mode(regs) || in_interrupt())
102 dump_mem("Stack: ", regs->regs[15], THREAD_SIZE +
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900103 (unsigned long)task_stack_page(current));
Paul Mundt6b002232006-10-12 17:07:45 +0900104
105 bust_spinlocks(0);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700106 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 spin_unlock_irq(&die_lock);
Paul Mundte1132762007-05-15 08:36:36 +0900108
109 if (kexec_should_crash(current))
110 crash_kexec(regs);
111
112 if (in_interrupt())
113 panic("Fatal exception in interrupt");
114
115 if (panic_on_oops)
116 panic("Fatal exception");
117
Paul Mundt55273982007-06-18 18:57:13 +0900118 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 do_exit(SIGSEGV);
120}
121
Paul Mundt6b002232006-10-12 17:07:45 +0900122static inline void die_if_kernel(const char *str, struct pt_regs *regs,
123 long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 if (!user_mode(regs))
126 die(str, regs, err);
127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/*
130 * try and fix up kernelspace address errors
131 * - userspace errors just cause EFAULT to be returned, resulting in SEGV
132 * - kernel/userspace interfaces cause a jump to an appropriate handler
133 * - other kernel errors are bad
134 * - return 0 if fixed-up, -EFAULT if non-fatal (to the kernel) fault
135 */
136static int die_if_no_fixup(const char * str, struct pt_regs * regs, long err)
137{
Paul Mundt6b002232006-10-12 17:07:45 +0900138 if (!user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 const struct exception_table_entry *fixup;
140 fixup = search_exception_tables(regs->pc);
141 if (fixup) {
142 regs->pc = fixup->fixup;
143 return 0;
144 }
145 die(str, regs, err);
146 }
147 return -EFAULT;
148}
149
Magnus Damm86c01792008-02-07 00:02:50 +0900150static inline void sign_extend(unsigned int count, unsigned char *dst)
151{
152#ifdef __LITTLE_ENDIAN__
Magnus Damm4252c652008-02-07 19:58:46 +0900153 if ((count == 1) && dst[0] & 0x80) {
154 dst[1] = 0xff;
155 dst[2] = 0xff;
156 dst[3] = 0xff;
157 }
Magnus Damm86c01792008-02-07 00:02:50 +0900158 if ((count == 2) && dst[1] & 0x80) {
159 dst[2] = 0xff;
160 dst[3] = 0xff;
161 }
162#else
Magnus Damm4252c652008-02-07 19:58:46 +0900163 if ((count == 1) && dst[3] & 0x80) {
164 dst[2] = 0xff;
Magnus Damm86c01792008-02-07 00:02:50 +0900165 dst[1] = 0xff;
Magnus Damm4252c652008-02-07 19:58:46 +0900166 dst[0] = 0xff;
167 }
168 if ((count == 2) && dst[2] & 0x80) {
169 dst[1] = 0xff;
170 dst[0] = 0xff;
Magnus Damm86c01792008-02-07 00:02:50 +0900171 }
172#endif
173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/*
176 * handle an instruction that does an unaligned memory access by emulating the
177 * desired behaviour
178 * - note that PC _may not_ point to the faulting instruction
179 * (if that instruction is in a branch delay slot)
180 * - return 0 if emulation okay, -EFAULT on existential error
181 */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900182static int handle_unaligned_ins(opcode_t instruction, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 int ret, index, count;
185 unsigned long *rm, *rn;
186 unsigned char *src, *dst;
187
188 index = (instruction>>8)&15; /* 0x0F00 */
189 rn = &regs->regs[index];
190
191 index = (instruction>>4)&15; /* 0x00F0 */
192 rm = &regs->regs[index];
193
194 count = 1<<(instruction&3);
195
196 ret = -EFAULT;
197 switch (instruction>>12) {
198 case 0: /* mov.[bwl] to/from memory via r0+rn */
199 if (instruction & 8) {
200 /* from memory */
201 src = (unsigned char*) *rm;
202 src += regs->regs[0];
203 dst = (unsigned char*) rn;
204 *(unsigned long*)dst = 0;
205
Magnus Damm86c01792008-02-07 00:02:50 +0900206#if !defined(__LITTLE_ENDIAN__)
207 dst += 4-count;
208#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (copy_from_user(dst, src, count))
210 goto fetch_fault;
211
Magnus Damm86c01792008-02-07 00:02:50 +0900212 sign_extend(count, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 } else {
214 /* to memory */
215 src = (unsigned char*) rm;
216#if !defined(__LITTLE_ENDIAN__)
217 src += 4-count;
218#endif
219 dst = (unsigned char*) *rn;
220 dst += regs->regs[0];
221
222 if (copy_to_user(dst, src, count))
223 goto fetch_fault;
224 }
225 ret = 0;
226 break;
227
228 case 1: /* mov.l Rm,@(disp,Rn) */
229 src = (unsigned char*) rm;
230 dst = (unsigned char*) *rn;
231 dst += (instruction&0x000F)<<2;
232
233 if (copy_to_user(dst,src,4))
234 goto fetch_fault;
235 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900236 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 case 2: /* mov.[bwl] to memory, possibly with pre-decrement */
239 if (instruction & 4)
240 *rn -= count;
241 src = (unsigned char*) rm;
242 dst = (unsigned char*) *rn;
243#if !defined(__LITTLE_ENDIAN__)
244 src += 4-count;
245#endif
246 if (copy_to_user(dst, src, count))
247 goto fetch_fault;
248 ret = 0;
249 break;
250
251 case 5: /* mov.l @(disp,Rm),Rn */
252 src = (unsigned char*) *rm;
253 src += (instruction&0x000F)<<2;
254 dst = (unsigned char*) rn;
255 *(unsigned long*)dst = 0;
256
257 if (copy_from_user(dst,src,4))
258 goto fetch_fault;
259 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900260 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 case 6: /* mov.[bwl] from memory, possibly with post-increment */
263 src = (unsigned char*) *rm;
264 if (instruction & 4)
265 *rm += count;
266 dst = (unsigned char*) rn;
267 *(unsigned long*)dst = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900268
Magnus Damm86c01792008-02-07 00:02:50 +0900269#if !defined(__LITTLE_ENDIAN__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 dst += 4-count;
Magnus Damm86c01792008-02-07 00:02:50 +0900271#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (copy_from_user(dst, src, count))
273 goto fetch_fault;
Magnus Damm86c01792008-02-07 00:02:50 +0900274 sign_extend(count, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 ret = 0;
276 break;
277
278 case 8:
279 switch ((instruction&0xFF00)>>8) {
280 case 0x81: /* mov.w R0,@(disp,Rn) */
281 src = (unsigned char*) &regs->regs[0];
282#if !defined(__LITTLE_ENDIAN__)
283 src += 2;
284#endif
285 dst = (unsigned char*) *rm; /* called Rn in the spec */
286 dst += (instruction&0x000F)<<1;
287
288 if (copy_to_user(dst, src, 2))
289 goto fetch_fault;
290 ret = 0;
291 break;
292
293 case 0x85: /* mov.w @(disp,Rm),R0 */
294 src = (unsigned char*) *rm;
295 src += (instruction&0x000F)<<1;
296 dst = (unsigned char*) &regs->regs[0];
297 *(unsigned long*)dst = 0;
298
299#if !defined(__LITTLE_ENDIAN__)
300 dst += 2;
301#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (copy_from_user(dst, src, 2))
303 goto fetch_fault;
Magnus Damm86c01792008-02-07 00:02:50 +0900304 sign_extend(2, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 ret = 0;
306 break;
307 }
308 break;
309 }
310 return ret;
311
312 fetch_fault:
313 /* Argh. Address not only misaligned but also non-existent.
314 * Raise an EFAULT and see if it's trapped
315 */
316 return die_if_no_fixup("Fault in unaligned fixup", regs, 0);
317}
318
319/*
320 * emulate the instruction in the delay slot
321 * - fetches the instruction from PC+2
322 */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900323static inline int handle_unaligned_delayslot(struct pt_regs *regs,
324 opcode_t old_instruction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900326 opcode_t instruction;
327 void *addr = (void *)(regs->pc + instruction_size(old_instruction));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900329 if (copy_from_user(&instruction, addr, sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /* the instruction-fetch faulted */
331 if (user_mode(regs))
332 return -EFAULT;
333
334 /* kernel */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900335 die("delay-slot-insn faulting in handle_unaligned_delayslot",
336 regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900339 return handle_unaligned_ins(instruction, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/*
343 * handle an instruction that does an unaligned memory access
344 * - have to be careful of branch delay-slot instructions that fault
345 * SH3:
346 * - if the branch would be taken PC points to the branch
347 * - if the branch would not be taken, PC points to delay-slot
348 * SH4:
349 * - PC always points to delayed branch
350 * - return 0 if handled, -EFAULT if failed (may not return if in kernel)
351 */
352
353/* Macros to determine offset from current PC for branch instructions */
354/* Explicit type coercion is used to force sign extension where needed */
355#define SH_PC_8BIT_OFFSET(instr) ((((signed char)(instr))*2) + 4)
356#define SH_PC_12BIT_OFFSET(instr) ((((signed short)(instr<<4))>>3) + 4)
357
Paul Mundt710ee0c2006-11-05 16:48:42 +0900358/*
359 * XXX: SH-2A needs this too, but it needs an overhaul thanks to mixed 32-bit
360 * opcodes..
361 */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900362
Paul Mundt710ee0c2006-11-05 16:48:42 +0900363static int handle_unaligned_notify_count = 10;
364
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900365static int handle_unaligned_access(opcode_t instruction, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 u_int rm;
368 int ret, index;
369
370 index = (instruction>>8)&15; /* 0x0F00 */
371 rm = regs->regs[index];
372
373 /* shout about the first ten userspace fixups */
374 if (user_mode(regs) && handle_unaligned_notify_count>0) {
375 handle_unaligned_notify_count--;
376
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900377 printk(KERN_NOTICE "Fixing up unaligned userspace access "
378 "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700379 current->comm, task_pid_nr(current),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900380 (void *)regs->pc, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
383 ret = -EFAULT;
384 switch (instruction&0xF000) {
385 case 0x0000:
386 if (instruction==0x000B) {
387 /* rts */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900388 ret = handle_unaligned_delayslot(regs, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (ret==0)
390 regs->pc = regs->pr;
391 }
392 else if ((instruction&0x00FF)==0x0023) {
393 /* braf @Rm */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900394 ret = handle_unaligned_delayslot(regs, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (ret==0)
396 regs->pc += rm + 4;
397 }
398 else if ((instruction&0x00FF)==0x0003) {
399 /* bsrf @Rm */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900400 ret = handle_unaligned_delayslot(regs, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (ret==0) {
402 regs->pr = regs->pc + 4;
403 regs->pc += rm + 4;
404 }
405 }
406 else {
407 /* mov.[bwl] to/from memory via r0+rn */
408 goto simple;
409 }
410 break;
411
412 case 0x1000: /* mov.l Rm,@(disp,Rn) */
413 goto simple;
414
415 case 0x2000: /* mov.[bwl] to memory, possibly with pre-decrement */
416 goto simple;
417
418 case 0x4000:
419 if ((instruction&0x00FF)==0x002B) {
420 /* jmp @Rm */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900421 ret = handle_unaligned_delayslot(regs, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (ret==0)
423 regs->pc = rm;
424 }
425 else if ((instruction&0x00FF)==0x000B) {
426 /* jsr @Rm */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900427 ret = handle_unaligned_delayslot(regs, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (ret==0) {
429 regs->pr = regs->pc + 4;
430 regs->pc = rm;
431 }
432 }
433 else {
434 /* mov.[bwl] to/from memory via r0+rn */
435 goto simple;
436 }
437 break;
438
439 case 0x5000: /* mov.l @(disp,Rm),Rn */
440 goto simple;
441
442 case 0x6000: /* mov.[bwl] from memory, possibly with post-increment */
443 goto simple;
444
445 case 0x8000: /* bf lab, bf/s lab, bt lab, bt/s lab */
446 switch (instruction&0x0F00) {
447 case 0x0100: /* mov.w R0,@(disp,Rm) */
448 goto simple;
449 case 0x0500: /* mov.w @(disp,Rm),R0 */
450 goto simple;
451 case 0x0B00: /* bf lab - no delayslot*/
452 break;
453 case 0x0F00: /* bf/s lab */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900454 ret = handle_unaligned_delayslot(regs, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (ret==0) {
456#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
457 if ((regs->sr & 0x00000001) != 0)
458 regs->pc += 4; /* next after slot */
459 else
460#endif
461 regs->pc += SH_PC_8BIT_OFFSET(instruction);
462 }
463 break;
464 case 0x0900: /* bt lab - no delayslot */
465 break;
466 case 0x0D00: /* bt/s lab */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900467 ret = handle_unaligned_delayslot(regs, instruction);
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 }
478 break;
479
480 case 0xA000: /* bra label */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900481 ret = handle_unaligned_delayslot(regs, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (ret==0)
483 regs->pc += SH_PC_12BIT_OFFSET(instruction);
484 break;
485
486 case 0xB000: /* bsr label */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900487 ret = handle_unaligned_delayslot(regs, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (ret==0) {
489 regs->pr = regs->pc + 4;
490 regs->pc += SH_PC_12BIT_OFFSET(instruction);
491 }
492 break;
493 }
494 return ret;
495
496 /* handle non-delay-slot instruction */
497 simple:
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900498 ret = handle_unaligned_ins(instruction, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (ret==0)
Paul Mundt53f983a2007-05-08 15:31:48 +0900500 regs->pc += instruction_size(instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return ret;
502}
503
Yoshinori Sato0983b312006-11-05 15:58:47 +0900504#ifdef CONFIG_CPU_HAS_SR_RB
505#define lookup_exception_vector(x) \
506 __asm__ __volatile__ ("stc r2_bank, %0\n\t" : "=r" ((x)))
507#else
508#define lookup_exception_vector(x) \
509 __asm__ __volatile__ ("mov r4, %0\n\t" : "=r" ((x)))
510#endif
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512/*
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900513 * Handle various address error exceptions:
514 * - instruction address error:
515 * misaligned PC
516 * PC >= 0x80000000 in user mode
517 * - data address error (read and write)
518 * misaligned data access
519 * access to >= 0x80000000 is user mode
520 * Unfortuntaly we can't distinguish between instruction address error
Simon Arlotte868d612007-05-14 08:15:10 +0900521 * and data address errors caused by read accesses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900523asmlinkage void do_address_error(struct pt_regs *regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 unsigned long writeaccess,
525 unsigned long address)
526{
Yoshinori Sato0983b312006-11-05 15:58:47 +0900527 unsigned long error_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 mm_segment_t oldfs;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900529 siginfo_t info;
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900530 opcode_t instruction;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 int tmp;
532
Yoshinori Sato0983b312006-11-05 15:58:47 +0900533 /* Intentional ifdef */
534#ifdef CONFIG_CPU_HAS_SR_RB
535 lookup_exception_vector(error_code);
536#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 oldfs = get_fs();
539
540 if (user_mode(regs)) {
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900541 int si_code = BUS_ADRERR;
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 /* bad PC is not something we can fix */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900546 if (regs->pc & 1) {
547 si_code = BUS_ADRALN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 goto uspace_segv;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 set_fs(USER_DS);
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900552 if (copy_from_user(&instruction, (void *)(regs->pc),
553 sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 /* Argh. Fault on the instruction itself.
555 This should never happen non-SMP
556 */
557 set_fs(oldfs);
558 goto uspace_segv;
559 }
560
561 tmp = handle_unaligned_access(instruction, regs);
562 set_fs(oldfs);
563
564 if (tmp==0)
565 return; /* sorted */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900566uspace_segv:
567 printk(KERN_NOTICE "Sending SIGBUS to \"%s\" due to unaligned "
568 "access (PC %lx PR %lx)\n", current->comm, regs->pc,
569 regs->pr);
570
571 info.si_signo = SIGBUS;
572 info.si_errno = 0;
573 info.si_code = si_code;
Paul Mundte08f4572007-05-14 12:52:56 +0900574 info.si_addr = (void __user *)address;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900575 force_sig_info(SIGBUS, &info, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 } else {
577 if (regs->pc & 1)
578 die("unaligned program counter", regs, error_code);
579
580 set_fs(KERNEL_DS);
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900581 if (copy_from_user(&instruction, (void *)(regs->pc),
582 sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* Argh. Fault on the instruction itself.
584 This should never happen non-SMP
585 */
586 set_fs(oldfs);
587 die("insn faulting in do_address_error", regs, 0);
588 }
589
590 handle_unaligned_access(instruction, regs);
591 set_fs(oldfs);
592 }
593}
594
595#ifdef CONFIG_SH_DSP
596/*
597 * SH-DSP support gerg@snapgear.com.
598 */
599int is_dsp_inst(struct pt_regs *regs)
600{
Paul Mundt882c12c2007-05-14 17:26:34 +0900601 unsigned short inst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900603 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 * Safe guard if DSP mode is already enabled or we're lacking
605 * the DSP altogether.
606 */
Paul Mundt11c19652006-12-25 10:19:56 +0900607 if (!(current_cpu_data.flags & CPU_HAS_DSP) || (regs->sr & SR_DSP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return 0;
609
610 get_user(inst, ((unsigned short *) regs->pc));
611
612 inst &= 0xf000;
613
614 /* Check for any type of DSP or support instruction */
615 if ((inst == 0xf000) || (inst == 0x4000))
616 return 1;
617
618 return 0;
619}
620#else
621#define is_dsp_inst(regs) (0)
622#endif /* CONFIG_SH_DSP */
623
Yoshinori Sato0983b312006-11-05 15:58:47 +0900624#ifdef CONFIG_CPU_SH2A
625asmlinkage void do_divide_error(unsigned long r4, unsigned long r5,
626 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900627 struct pt_regs __regs)
Yoshinori Sato0983b312006-11-05 15:58:47 +0900628{
629 siginfo_t info;
630
Yoshinori Sato0983b312006-11-05 15:58:47 +0900631 switch (r4) {
632 case TRAP_DIVZERO_ERROR:
633 info.si_code = FPE_INTDIV;
634 break;
635 case TRAP_DIVOVF_ERROR:
636 info.si_code = FPE_INTOVF;
637 break;
638 }
639
640 force_sig_info(SIGFPE, &info, current);
641}
642#endif
643
Takashi YOSHII4b565682006-09-27 17:15:32 +0900644asmlinkage void do_reserved_inst(unsigned long r4, unsigned long r5,
645 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900646 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900647{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900648 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900649 unsigned long error_code;
650 struct task_struct *tsk = current;
651
652#ifdef CONFIG_SH_FPU_EMU
Yoshinori Sato0983b312006-11-05 15:58:47 +0900653 unsigned short inst = 0;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900654 int err;
655
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900656 get_user(inst, (unsigned short*)regs->pc);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900657
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900658 err = do_fpu_inst(inst, regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900659 if (!err) {
Paul Mundt53f983a2007-05-08 15:31:48 +0900660 regs->pc += instruction_size(inst);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900661 return;
662 }
663 /* not a FPU inst. */
664#endif
665
666#ifdef CONFIG_SH_DSP
667 /* Check if it's a DSP instruction */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900668 if (is_dsp_inst(regs)) {
Takashi YOSHII4b565682006-09-27 17:15:32 +0900669 /* Enable DSP mode, and restart instruction. */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900670 regs->sr |= SR_DSP;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900671 return;
672 }
673#endif
674
Yoshinori Sato0983b312006-11-05 15:58:47 +0900675 lookup_exception_vector(error_code);
676
Takashi YOSHII4b565682006-09-27 17:15:32 +0900677 local_irq_enable();
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900678 CHK_REMOTE_DEBUG(regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900679 force_sig(SIGILL, tsk);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900680 die_if_no_fixup("reserved instruction", regs, error_code);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900681}
682
683#ifdef CONFIG_SH_FPU_EMU
684static int emulate_branch(unsigned short inst, struct pt_regs* regs)
685{
686 /*
687 * bfs: 8fxx: PC+=d*2+4;
688 * bts: 8dxx: PC+=d*2+4;
689 * bra: axxx: PC+=D*2+4;
690 * bsr: bxxx: PC+=D*2+4 after PR=PC+4;
691 * braf:0x23: PC+=Rn*2+4;
692 * bsrf:0x03: PC+=Rn*2+4 after PR=PC+4;
693 * jmp: 4x2b: PC=Rn;
694 * jsr: 4x0b: PC=Rn after PR=PC+4;
695 * rts: 000b: PC=PR;
696 */
697 if ((inst & 0xfd00) == 0x8d00) {
698 regs->pc += SH_PC_8BIT_OFFSET(inst);
699 return 0;
700 }
701
702 if ((inst & 0xe000) == 0xa000) {
703 regs->pc += SH_PC_12BIT_OFFSET(inst);
704 return 0;
705 }
706
707 if ((inst & 0xf0df) == 0x0003) {
708 regs->pc += regs->regs[(inst & 0x0f00) >> 8] + 4;
709 return 0;
710 }
711
712 if ((inst & 0xf0df) == 0x400b) {
713 regs->pc = regs->regs[(inst & 0x0f00) >> 8];
714 return 0;
715 }
716
717 if ((inst & 0xffff) == 0x000b) {
718 regs->pc = regs->pr;
719 return 0;
720 }
721
722 return 1;
723}
724#endif
725
726asmlinkage void do_illegal_slot_inst(unsigned long r4, unsigned long r5,
727 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900728 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900729{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900730 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900731 unsigned long error_code;
732 struct task_struct *tsk = current;
733#ifdef CONFIG_SH_FPU_EMU
Yoshinori Sato0983b312006-11-05 15:58:47 +0900734 unsigned short inst = 0;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900735
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900736 get_user(inst, (unsigned short *)regs->pc + 1);
737 if (!do_fpu_inst(inst, regs)) {
738 get_user(inst, (unsigned short *)regs->pc);
739 if (!emulate_branch(inst, regs))
Takashi YOSHII4b565682006-09-27 17:15:32 +0900740 return;
741 /* fault in branch.*/
742 }
743 /* not a FPU inst. */
744#endif
745
Yoshinori Sato0983b312006-11-05 15:58:47 +0900746 lookup_exception_vector(error_code);
747
Takashi YOSHII4b565682006-09-27 17:15:32 +0900748 local_irq_enable();
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900749 CHK_REMOTE_DEBUG(regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900750 force_sig(SIGILL, tsk);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900751 die_if_no_fixup("illegal slot instruction", regs, error_code);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900752}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754asmlinkage void do_exception_error(unsigned long r4, unsigned long r5,
755 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900756 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900758 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 long ex;
Yoshinori Sato0983b312006-11-05 15:58:47 +0900760
761 lookup_exception_vector(ex);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900762 die_if_kernel("exception", regs, ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
765#if defined(CONFIG_SH_STANDARD_BIOS)
766void *gdb_vbr_vector;
767
768static inline void __init gdb_vbr_init(void)
769{
770 register unsigned long vbr;
771
772 /*
773 * Read the old value of the VBR register to initialise
774 * the vector through which debug and BIOS traps are
775 * delegated by the Linux trap handler.
776 */
777 asm volatile("stc vbr, %0" : "=r" (vbr));
778
779 gdb_vbr_vector = (void *)(vbr + 0x100);
780 printk("Setting GDB trap vector to 0x%08lx\n",
781 (unsigned long)gdb_vbr_vector);
782}
783#endif
784
Paul Mundtaba10302007-09-21 18:32:32 +0900785void __cpuinit per_cpu_trap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
787 extern void *vbr_base;
788
789#ifdef CONFIG_SH_STANDARD_BIOS
Paul Mundtaba10302007-09-21 18:32:32 +0900790 if (raw_smp_processor_id() == 0)
791 gdb_vbr_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792#endif
793
794 /* NOTE: The VBR value should be at P1
795 (or P2, virtural "fixed" address space).
796 It's definitely should not in physical address. */
797
798 asm volatile("ldc %0, vbr"
799 : /* no output */
800 : "r" (&vbr_base)
801 : "memory");
802}
803
Paul Mundt1f666582006-10-19 16:20:25 +0900804void *set_exception_table_vec(unsigned int vec, void *handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
806 extern void *exception_handling_table[];
Paul Mundt1f666582006-10-19 16:20:25 +0900807 void *old_handler;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900808
Paul Mundt1f666582006-10-19 16:20:25 +0900809 old_handler = exception_handling_table[vec];
810 exception_handling_table[vec] = handler;
811 return old_handler;
812}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Paul Mundt1f666582006-10-19 16:20:25 +0900814void __init trap_init(void)
815{
816 set_exception_table_vec(TRAP_RESERVED_INST, do_reserved_inst);
817 set_exception_table_vec(TRAP_ILLEGAL_SLOT_INST, do_illegal_slot_inst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Takashi YOSHII4b565682006-09-27 17:15:32 +0900819#if defined(CONFIG_CPU_SH4) && !defined(CONFIG_SH_FPU) || \
820 defined(CONFIG_SH_FPU_EMU)
821 /*
822 * For SH-4 lacking an FPU, treat floating point instructions as
823 * reserved. They'll be handled in the math-emu case, or faulted on
824 * otherwise.
825 */
Paul Mundt1f666582006-10-19 16:20:25 +0900826 set_exception_table_evt(0x800, do_reserved_inst);
827 set_exception_table_evt(0x820, do_illegal_slot_inst);
828#elif defined(CONFIG_SH_FPU)
Paul Mundte0a36472007-08-01 16:55:07 +0900829#ifdef CONFIG_CPU_SUBTYPE_SHX3
Paul Mundt74d99a52007-11-26 20:38:36 +0900830 set_exception_table_evt(0xd80, fpu_state_restore_trap_handler);
831 set_exception_table_evt(0xda0, fpu_state_restore_trap_handler);
Paul Mundte0a36472007-08-01 16:55:07 +0900832#else
Paul Mundt74d99a52007-11-26 20:38:36 +0900833 set_exception_table_evt(0x800, fpu_state_restore_trap_handler);
834 set_exception_table_evt(0x820, fpu_state_restore_trap_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835#endif
Paul Mundte0a36472007-08-01 16:55:07 +0900836#endif
Yoshinori Sato0983b312006-11-05 15:58:47 +0900837
838#ifdef CONFIG_CPU_SH2
Paul Mundt5a4f7c62007-11-20 18:08:06 +0900839 set_exception_table_vec(TRAP_ADDRESS_ERROR, address_error_trap_handler);
Yoshinori Sato0983b312006-11-05 15:58:47 +0900840#endif
841#ifdef CONFIG_CPU_SH2A
842 set_exception_table_vec(TRAP_DIVZERO_ERROR, do_divide_error);
843 set_exception_table_vec(TRAP_DIVOVF_ERROR, do_divide_error);
844#endif
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 /* Setup VBR for boot cpu */
847 per_cpu_trap_init();
848}
849
Paul Mundt6b002232006-10-12 17:07:45 +0900850void show_trace(struct task_struct *tsk, unsigned long *sp,
851 struct pt_regs *regs)
852{
853 unsigned long addr;
854
855 if (regs && user_mode(regs))
856 return;
857
858 printk("\nCall trace: ");
859#ifdef CONFIG_KALLSYMS
860 printk("\n");
861#endif
862
863 while (!kstack_end(sp)) {
864 addr = *sp++;
865 if (kernel_text_address(addr))
866 print_ip_sym(addr);
867 }
868
869 printk("\n");
Paul Mundt9b8c90e2006-12-06 11:07:51 +0900870
871 if (!tsk)
872 tsk = current;
873
874 debug_show_held_locks(tsk);
Paul Mundt6b002232006-10-12 17:07:45 +0900875}
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877void show_stack(struct task_struct *tsk, unsigned long *sp)
878{
Paul Mundt6b002232006-10-12 17:07:45 +0900879 unsigned long stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Paul Mundta6a311392006-09-27 18:22:14 +0900881 if (!tsk)
882 tsk = current;
883 if (tsk == current)
884 sp = (unsigned long *)current_stack_pointer;
885 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 sp = (unsigned long *)tsk->thread.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Paul Mundt6b002232006-10-12 17:07:45 +0900888 stack = (unsigned long)sp;
889 dump_mem("Stack: ", stack, THREAD_SIZE +
890 (unsigned long)task_stack_page(tsk));
891 show_trace(tsk, sp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
894void dump_stack(void)
895{
896 show_stack(NULL, NULL);
897}
898EXPORT_SYMBOL(dump_stack);