blob: 05a40f3c30bf0c7848d02d77d77b4b8af5600ad1 [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
98 printk("Process: %s (pid: %d, stack limit = %p)\n",
99 current->comm, current->pid, task_stack_page(current) + 1);
100
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 spin_unlock_irq(&die_lock);
Paul Mundte1132762007-05-15 08:36:36 +0900107
108 if (kexec_should_crash(current))
109 crash_kexec(regs);
110
111 if (in_interrupt())
112 panic("Fatal exception in interrupt");
113
114 if (panic_on_oops)
115 panic("Fatal exception");
116
Paul Mundt55273982007-06-18 18:57:13 +0900117 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 do_exit(SIGSEGV);
119}
120
Paul Mundt6b002232006-10-12 17:07:45 +0900121static inline void die_if_kernel(const char *str, struct pt_regs *regs,
122 long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 if (!user_mode(regs))
125 die(str, regs, err);
126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*
129 * try and fix up kernelspace address errors
130 * - userspace errors just cause EFAULT to be returned, resulting in SEGV
131 * - kernel/userspace interfaces cause a jump to an appropriate handler
132 * - other kernel errors are bad
133 * - return 0 if fixed-up, -EFAULT if non-fatal (to the kernel) fault
134 */
135static int die_if_no_fixup(const char * str, struct pt_regs * regs, long err)
136{
Paul Mundt6b002232006-10-12 17:07:45 +0900137 if (!user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 const struct exception_table_entry *fixup;
139 fixup = search_exception_tables(regs->pc);
140 if (fixup) {
141 regs->pc = fixup->fixup;
142 return 0;
143 }
144 die(str, regs, err);
145 }
146 return -EFAULT;
147}
148
149/*
150 * handle an instruction that does an unaligned memory access by emulating the
151 * desired behaviour
152 * - note that PC _may not_ point to the faulting instruction
153 * (if that instruction is in a branch delay slot)
154 * - return 0 if emulation okay, -EFAULT on existential error
155 */
156static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs)
157{
158 int ret, index, count;
159 unsigned long *rm, *rn;
160 unsigned char *src, *dst;
161
162 index = (instruction>>8)&15; /* 0x0F00 */
163 rn = &regs->regs[index];
164
165 index = (instruction>>4)&15; /* 0x00F0 */
166 rm = &regs->regs[index];
167
168 count = 1<<(instruction&3);
169
170 ret = -EFAULT;
171 switch (instruction>>12) {
172 case 0: /* mov.[bwl] to/from memory via r0+rn */
173 if (instruction & 8) {
174 /* from memory */
175 src = (unsigned char*) *rm;
176 src += regs->regs[0];
177 dst = (unsigned char*) rn;
178 *(unsigned long*)dst = 0;
179
180#ifdef __LITTLE_ENDIAN__
181 if (copy_from_user(dst, src, count))
182 goto fetch_fault;
183
184 if ((count == 2) && dst[1] & 0x80) {
185 dst[2] = 0xff;
186 dst[3] = 0xff;
187 }
188#else
189 dst += 4-count;
190
191 if (__copy_user(dst, src, count))
192 goto fetch_fault;
193
194 if ((count == 2) && dst[2] & 0x80) {
195 dst[0] = 0xff;
196 dst[1] = 0xff;
197 }
198#endif
199 } else {
200 /* to memory */
201 src = (unsigned char*) rm;
202#if !defined(__LITTLE_ENDIAN__)
203 src += 4-count;
204#endif
205 dst = (unsigned char*) *rn;
206 dst += regs->regs[0];
207
208 if (copy_to_user(dst, src, count))
209 goto fetch_fault;
210 }
211 ret = 0;
212 break;
213
214 case 1: /* mov.l Rm,@(disp,Rn) */
215 src = (unsigned char*) rm;
216 dst = (unsigned char*) *rn;
217 dst += (instruction&0x000F)<<2;
218
219 if (copy_to_user(dst,src,4))
220 goto fetch_fault;
221 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900222 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 case 2: /* mov.[bwl] to memory, possibly with pre-decrement */
225 if (instruction & 4)
226 *rn -= count;
227 src = (unsigned char*) rm;
228 dst = (unsigned char*) *rn;
229#if !defined(__LITTLE_ENDIAN__)
230 src += 4-count;
231#endif
232 if (copy_to_user(dst, src, count))
233 goto fetch_fault;
234 ret = 0;
235 break;
236
237 case 5: /* mov.l @(disp,Rm),Rn */
238 src = (unsigned char*) *rm;
239 src += (instruction&0x000F)<<2;
240 dst = (unsigned char*) rn;
241 *(unsigned long*)dst = 0;
242
243 if (copy_from_user(dst,src,4))
244 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 6: /* mov.[bwl] from memory, possibly with post-increment */
249 src = (unsigned char*) *rm;
250 if (instruction & 4)
251 *rm += count;
252 dst = (unsigned char*) rn;
253 *(unsigned long*)dst = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255#ifdef __LITTLE_ENDIAN__
256 if (copy_from_user(dst, src, count))
257 goto fetch_fault;
258
259 if ((count == 2) && dst[1] & 0x80) {
260 dst[2] = 0xff;
261 dst[3] = 0xff;
262 }
263#else
264 dst += 4-count;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (copy_from_user(dst, src, count))
267 goto fetch_fault;
268
269 if ((count == 2) && dst[2] & 0x80) {
270 dst[0] = 0xff;
271 dst[1] = 0xff;
272 }
273#endif
274 ret = 0;
275 break;
276
277 case 8:
278 switch ((instruction&0xFF00)>>8) {
279 case 0x81: /* mov.w R0,@(disp,Rn) */
280 src = (unsigned char*) &regs->regs[0];
281#if !defined(__LITTLE_ENDIAN__)
282 src += 2;
283#endif
284 dst = (unsigned char*) *rm; /* called Rn in the spec */
285 dst += (instruction&0x000F)<<1;
286
287 if (copy_to_user(dst, src, 2))
288 goto fetch_fault;
289 ret = 0;
290 break;
291
292 case 0x85: /* mov.w @(disp,Rm),R0 */
293 src = (unsigned char*) *rm;
294 src += (instruction&0x000F)<<1;
295 dst = (unsigned char*) &regs->regs[0];
296 *(unsigned long*)dst = 0;
297
298#if !defined(__LITTLE_ENDIAN__)
299 dst += 2;
300#endif
301
302 if (copy_from_user(dst, src, 2))
303 goto fetch_fault;
304
305#ifdef __LITTLE_ENDIAN__
306 if (dst[1] & 0x80) {
307 dst[2] = 0xff;
308 dst[3] = 0xff;
309 }
310#else
311 if (dst[2] & 0x80) {
312 dst[0] = 0xff;
313 dst[1] = 0xff;
314 }
315#endif
316 ret = 0;
317 break;
318 }
319 break;
320 }
321 return ret;
322
323 fetch_fault:
324 /* Argh. Address not only misaligned but also non-existent.
325 * Raise an EFAULT and see if it's trapped
326 */
327 return die_if_no_fixup("Fault in unaligned fixup", regs, 0);
328}
329
330/*
331 * emulate the instruction in the delay slot
332 * - fetches the instruction from PC+2
333 */
334static inline int handle_unaligned_delayslot(struct pt_regs *regs)
335{
336 u16 instruction;
337
338 if (copy_from_user(&instruction, (u16 *)(regs->pc+2), 2)) {
339 /* the instruction-fetch faulted */
340 if (user_mode(regs))
341 return -EFAULT;
342
343 /* kernel */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900344 die("delay-slot-insn faulting in handle_unaligned_delayslot",
345 regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347
348 return handle_unaligned_ins(instruction,regs);
349}
350
351/*
352 * handle an instruction that does an unaligned memory access
353 * - have to be careful of branch delay-slot instructions that fault
354 * SH3:
355 * - if the branch would be taken PC points to the branch
356 * - if the branch would not be taken, PC points to delay-slot
357 * SH4:
358 * - PC always points to delayed branch
359 * - return 0 if handled, -EFAULT if failed (may not return if in kernel)
360 */
361
362/* Macros to determine offset from current PC for branch instructions */
363/* Explicit type coercion is used to force sign extension where needed */
364#define SH_PC_8BIT_OFFSET(instr) ((((signed char)(instr))*2) + 4)
365#define SH_PC_12BIT_OFFSET(instr) ((((signed short)(instr<<4))>>3) + 4)
366
Paul Mundt710ee0c2006-11-05 16:48:42 +0900367/*
368 * XXX: SH-2A needs this too, but it needs an overhaul thanks to mixed 32-bit
369 * opcodes..
370 */
371#ifndef CONFIG_CPU_SH2A
372static int handle_unaligned_notify_count = 10;
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static int handle_unaligned_access(u16 instruction, struct pt_regs *regs)
375{
376 u_int rm;
377 int ret, index;
378
379 index = (instruction>>8)&15; /* 0x0F00 */
380 rm = regs->regs[index];
381
382 /* shout about the first ten userspace fixups */
383 if (user_mode(regs) && handle_unaligned_notify_count>0) {
384 handle_unaligned_notify_count--;
385
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900386 printk(KERN_NOTICE "Fixing up unaligned userspace access "
387 "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 current->comm,current->pid,(u16*)regs->pc,instruction);
389 }
390
391 ret = -EFAULT;
392 switch (instruction&0xF000) {
393 case 0x0000:
394 if (instruction==0x000B) {
395 /* rts */
396 ret = handle_unaligned_delayslot(regs);
397 if (ret==0)
398 regs->pc = regs->pr;
399 }
400 else if ((instruction&0x00FF)==0x0023) {
401 /* braf @Rm */
402 ret = handle_unaligned_delayslot(regs);
403 if (ret==0)
404 regs->pc += rm + 4;
405 }
406 else if ((instruction&0x00FF)==0x0003) {
407 /* bsrf @Rm */
408 ret = handle_unaligned_delayslot(regs);
409 if (ret==0) {
410 regs->pr = regs->pc + 4;
411 regs->pc += rm + 4;
412 }
413 }
414 else {
415 /* mov.[bwl] to/from memory via r0+rn */
416 goto simple;
417 }
418 break;
419
420 case 0x1000: /* mov.l Rm,@(disp,Rn) */
421 goto simple;
422
423 case 0x2000: /* mov.[bwl] to memory, possibly with pre-decrement */
424 goto simple;
425
426 case 0x4000:
427 if ((instruction&0x00FF)==0x002B) {
428 /* jmp @Rm */
429 ret = handle_unaligned_delayslot(regs);
430 if (ret==0)
431 regs->pc = rm;
432 }
433 else if ((instruction&0x00FF)==0x000B) {
434 /* jsr @Rm */
435 ret = handle_unaligned_delayslot(regs);
436 if (ret==0) {
437 regs->pr = regs->pc + 4;
438 regs->pc = rm;
439 }
440 }
441 else {
442 /* mov.[bwl] to/from memory via r0+rn */
443 goto simple;
444 }
445 break;
446
447 case 0x5000: /* mov.l @(disp,Rm),Rn */
448 goto simple;
449
450 case 0x6000: /* mov.[bwl] from memory, possibly with post-increment */
451 goto simple;
452
453 case 0x8000: /* bf lab, bf/s lab, bt lab, bt/s lab */
454 switch (instruction&0x0F00) {
455 case 0x0100: /* mov.w R0,@(disp,Rm) */
456 goto simple;
457 case 0x0500: /* mov.w @(disp,Rm),R0 */
458 goto simple;
459 case 0x0B00: /* bf lab - no delayslot*/
460 break;
461 case 0x0F00: /* bf/s lab */
462 ret = handle_unaligned_delayslot(regs);
463 if (ret==0) {
464#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
465 if ((regs->sr & 0x00000001) != 0)
466 regs->pc += 4; /* next after slot */
467 else
468#endif
469 regs->pc += SH_PC_8BIT_OFFSET(instruction);
470 }
471 break;
472 case 0x0900: /* bt lab - no delayslot */
473 break;
474 case 0x0D00: /* bt/s lab */
475 ret = handle_unaligned_delayslot(regs);
476 if (ret==0) {
477#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
478 if ((regs->sr & 0x00000001) == 0)
479 regs->pc += 4; /* next after slot */
480 else
481#endif
482 regs->pc += SH_PC_8BIT_OFFSET(instruction);
483 }
484 break;
485 }
486 break;
487
488 case 0xA000: /* bra label */
489 ret = handle_unaligned_delayslot(regs);
490 if (ret==0)
491 regs->pc += SH_PC_12BIT_OFFSET(instruction);
492 break;
493
494 case 0xB000: /* bsr label */
495 ret = handle_unaligned_delayslot(regs);
496 if (ret==0) {
497 regs->pr = regs->pc + 4;
498 regs->pc += SH_PC_12BIT_OFFSET(instruction);
499 }
500 break;
501 }
502 return ret;
503
504 /* handle non-delay-slot instruction */
505 simple:
506 ret = handle_unaligned_ins(instruction,regs);
507 if (ret==0)
Paul Mundt53f983a2007-05-08 15:31:48 +0900508 regs->pc += instruction_size(instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return ret;
510}
Paul Mundt710ee0c2006-11-05 16:48:42 +0900511#endif /* CONFIG_CPU_SH2A */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Yoshinori Sato0983b312006-11-05 15:58:47 +0900513#ifdef CONFIG_CPU_HAS_SR_RB
514#define lookup_exception_vector(x) \
515 __asm__ __volatile__ ("stc r2_bank, %0\n\t" : "=r" ((x)))
516#else
517#define lookup_exception_vector(x) \
518 __asm__ __volatile__ ("mov r4, %0\n\t" : "=r" ((x)))
519#endif
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900522 * Handle various address error exceptions:
523 * - instruction address error:
524 * misaligned PC
525 * PC >= 0x80000000 in user mode
526 * - data address error (read and write)
527 * misaligned data access
528 * access to >= 0x80000000 is user mode
529 * Unfortuntaly we can't distinguish between instruction address error
Simon Arlotte868d612007-05-14 08:15:10 +0900530 * and data address errors caused by read accesses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900532asmlinkage void do_address_error(struct pt_regs *regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 unsigned long writeaccess,
534 unsigned long address)
535{
Yoshinori Sato0983b312006-11-05 15:58:47 +0900536 unsigned long error_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 mm_segment_t oldfs;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900538 siginfo_t info;
Paul Mundt710ee0c2006-11-05 16:48:42 +0900539#ifndef CONFIG_CPU_SH2A
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 u16 instruction;
541 int tmp;
Paul Mundt710ee0c2006-11-05 16:48:42 +0900542#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Yoshinori Sato0983b312006-11-05 15:58:47 +0900544 /* Intentional ifdef */
545#ifdef CONFIG_CPU_HAS_SR_RB
546 lookup_exception_vector(error_code);
547#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 oldfs = get_fs();
550
551 if (user_mode(regs)) {
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900552 int si_code = BUS_ADRERR;
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 /* bad PC is not something we can fix */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900557 if (regs->pc & 1) {
558 si_code = BUS_ADRALN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto uspace_segv;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Yoshinori Sato0983b312006-11-05 15:58:47 +0900562#ifndef CONFIG_CPU_SH2A
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 set_fs(USER_DS);
564 if (copy_from_user(&instruction, (u16 *)(regs->pc), 2)) {
565 /* Argh. Fault on the instruction itself.
566 This should never happen non-SMP
567 */
568 set_fs(oldfs);
569 goto uspace_segv;
570 }
571
572 tmp = handle_unaligned_access(instruction, regs);
573 set_fs(oldfs);
574
575 if (tmp==0)
576 return; /* sorted */
Yoshinori Sato0983b312006-11-05 15:58:47 +0900577#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
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
Yoshinori Sato0983b312006-11-05 15:58:47 +0900593#ifndef CONFIG_CPU_SH2A
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 set_fs(KERNEL_DS);
595 if (copy_from_user(&instruction, (u16 *)(regs->pc), 2)) {
596 /* 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
603 handle_unaligned_access(instruction, regs);
604 set_fs(oldfs);
Yoshinori Sato0983b312006-11-05 15:58:47 +0900605#else
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900606 printk(KERN_NOTICE "Killing process \"%s\" due to unaligned "
607 "access\n", current->comm);
608
Yoshinori Sato0983b312006-11-05 15:58:47 +0900609 force_sig(SIGSEGV, current);
610#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612}
613
614#ifdef CONFIG_SH_DSP
615/*
616 * SH-DSP support gerg@snapgear.com.
617 */
618int is_dsp_inst(struct pt_regs *regs)
619{
Paul Mundt882c12c2007-05-14 17:26:34 +0900620 unsigned short inst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900622 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 * Safe guard if DSP mode is already enabled or we're lacking
624 * the DSP altogether.
625 */
Paul Mundt11c19652006-12-25 10:19:56 +0900626 if (!(current_cpu_data.flags & CPU_HAS_DSP) || (regs->sr & SR_DSP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return 0;
628
629 get_user(inst, ((unsigned short *) regs->pc));
630
631 inst &= 0xf000;
632
633 /* Check for any type of DSP or support instruction */
634 if ((inst == 0xf000) || (inst == 0x4000))
635 return 1;
636
637 return 0;
638}
639#else
640#define is_dsp_inst(regs) (0)
641#endif /* CONFIG_SH_DSP */
642
Yoshinori Sato0983b312006-11-05 15:58:47 +0900643#ifdef CONFIG_CPU_SH2A
644asmlinkage void do_divide_error(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)
Yoshinori Sato0983b312006-11-05 15:58:47 +0900647{
648 siginfo_t info;
649
Yoshinori Sato0983b312006-11-05 15:58:47 +0900650 switch (r4) {
651 case TRAP_DIVZERO_ERROR:
652 info.si_code = FPE_INTDIV;
653 break;
654 case TRAP_DIVOVF_ERROR:
655 info.si_code = FPE_INTOVF;
656 break;
657 }
658
659 force_sig_info(SIGFPE, &info, current);
660}
661#endif
662
Paul Mundt1f666582006-10-19 16:20:25 +0900663/* arch/sh/kernel/cpu/sh4/fpu.c */
664extern int do_fpu_inst(unsigned short, struct pt_regs *);
665extern asmlinkage void do_fpu_state_restore(unsigned long r4, unsigned long r5,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900666 unsigned long r6, unsigned long r7, struct pt_regs __regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900667
668asmlinkage void do_reserved_inst(unsigned long r4, unsigned long r5,
669 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900670 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900671{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900672 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900673 unsigned long error_code;
674 struct task_struct *tsk = current;
675
676#ifdef CONFIG_SH_FPU_EMU
Yoshinori Sato0983b312006-11-05 15:58:47 +0900677 unsigned short inst = 0;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900678 int err;
679
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900680 get_user(inst, (unsigned short*)regs->pc);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900681
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900682 err = do_fpu_inst(inst, regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900683 if (!err) {
Paul Mundt53f983a2007-05-08 15:31:48 +0900684 regs->pc += instruction_size(inst);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900685 return;
686 }
687 /* not a FPU inst. */
688#endif
689
690#ifdef CONFIG_SH_DSP
691 /* Check if it's a DSP instruction */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900692 if (is_dsp_inst(regs)) {
Takashi YOSHII4b565682006-09-27 17:15:32 +0900693 /* Enable DSP mode, and restart instruction. */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900694 regs->sr |= SR_DSP;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900695 return;
696 }
697#endif
698
Yoshinori Sato0983b312006-11-05 15:58:47 +0900699 lookup_exception_vector(error_code);
700
Takashi YOSHII4b565682006-09-27 17:15:32 +0900701 local_irq_enable();
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900702 CHK_REMOTE_DEBUG(regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900703 force_sig(SIGILL, tsk);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900704 die_if_no_fixup("reserved instruction", regs, error_code);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900705}
706
707#ifdef CONFIG_SH_FPU_EMU
708static int emulate_branch(unsigned short inst, struct pt_regs* regs)
709{
710 /*
711 * bfs: 8fxx: PC+=d*2+4;
712 * bts: 8dxx: PC+=d*2+4;
713 * bra: axxx: PC+=D*2+4;
714 * bsr: bxxx: PC+=D*2+4 after PR=PC+4;
715 * braf:0x23: PC+=Rn*2+4;
716 * bsrf:0x03: PC+=Rn*2+4 after PR=PC+4;
717 * jmp: 4x2b: PC=Rn;
718 * jsr: 4x0b: PC=Rn after PR=PC+4;
719 * rts: 000b: PC=PR;
720 */
721 if ((inst & 0xfd00) == 0x8d00) {
722 regs->pc += SH_PC_8BIT_OFFSET(inst);
723 return 0;
724 }
725
726 if ((inst & 0xe000) == 0xa000) {
727 regs->pc += SH_PC_12BIT_OFFSET(inst);
728 return 0;
729 }
730
731 if ((inst & 0xf0df) == 0x0003) {
732 regs->pc += regs->regs[(inst & 0x0f00) >> 8] + 4;
733 return 0;
734 }
735
736 if ((inst & 0xf0df) == 0x400b) {
737 regs->pc = regs->regs[(inst & 0x0f00) >> 8];
738 return 0;
739 }
740
741 if ((inst & 0xffff) == 0x000b) {
742 regs->pc = regs->pr;
743 return 0;
744 }
745
746 return 1;
747}
748#endif
749
750asmlinkage void do_illegal_slot_inst(unsigned long r4, unsigned long r5,
751 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900752 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900753{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900754 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900755 unsigned long error_code;
756 struct task_struct *tsk = current;
757#ifdef CONFIG_SH_FPU_EMU
Yoshinori Sato0983b312006-11-05 15:58:47 +0900758 unsigned short inst = 0;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900759
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900760 get_user(inst, (unsigned short *)regs->pc + 1);
761 if (!do_fpu_inst(inst, regs)) {
762 get_user(inst, (unsigned short *)regs->pc);
763 if (!emulate_branch(inst, regs))
Takashi YOSHII4b565682006-09-27 17:15:32 +0900764 return;
765 /* fault in branch.*/
766 }
767 /* not a FPU inst. */
768#endif
769
Yoshinori Sato0983b312006-11-05 15:58:47 +0900770 lookup_exception_vector(error_code);
771
Takashi YOSHII4b565682006-09-27 17:15:32 +0900772 local_irq_enable();
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900773 CHK_REMOTE_DEBUG(regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900774 force_sig(SIGILL, tsk);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900775 die_if_no_fixup("illegal slot instruction", regs, error_code);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900776}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778asmlinkage void do_exception_error(unsigned long r4, unsigned long r5,
779 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900780 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900782 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 long ex;
Yoshinori Sato0983b312006-11-05 15:58:47 +0900784
785 lookup_exception_vector(ex);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900786 die_if_kernel("exception", regs, ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
789#if defined(CONFIG_SH_STANDARD_BIOS)
790void *gdb_vbr_vector;
791
792static inline void __init gdb_vbr_init(void)
793{
794 register unsigned long vbr;
795
796 /*
797 * Read the old value of the VBR register to initialise
798 * the vector through which debug and BIOS traps are
799 * delegated by the Linux trap handler.
800 */
801 asm volatile("stc vbr, %0" : "=r" (vbr));
802
803 gdb_vbr_vector = (void *)(vbr + 0x100);
804 printk("Setting GDB trap vector to 0x%08lx\n",
805 (unsigned long)gdb_vbr_vector);
806}
807#endif
808
809void __init per_cpu_trap_init(void)
810{
811 extern void *vbr_base;
812
813#ifdef CONFIG_SH_STANDARD_BIOS
814 gdb_vbr_init();
815#endif
816
817 /* NOTE: The VBR value should be at P1
818 (or P2, virtural "fixed" address space).
819 It's definitely should not in physical address. */
820
821 asm volatile("ldc %0, vbr"
822 : /* no output */
823 : "r" (&vbr_base)
824 : "memory");
825}
826
Paul Mundt1f666582006-10-19 16:20:25 +0900827void *set_exception_table_vec(unsigned int vec, void *handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829 extern void *exception_handling_table[];
Paul Mundt1f666582006-10-19 16:20:25 +0900830 void *old_handler;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900831
Paul Mundt1f666582006-10-19 16:20:25 +0900832 old_handler = exception_handling_table[vec];
833 exception_handling_table[vec] = handler;
834 return old_handler;
835}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Yoshinori Sato0983b312006-11-05 15:58:47 +0900837extern asmlinkage void address_error_handler(unsigned long r4, unsigned long r5,
838 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900839 struct pt_regs __regs);
Yoshinori Sato0983b312006-11-05 15:58:47 +0900840
Paul Mundt1f666582006-10-19 16:20:25 +0900841void __init trap_init(void)
842{
843 set_exception_table_vec(TRAP_RESERVED_INST, do_reserved_inst);
844 set_exception_table_vec(TRAP_ILLEGAL_SLOT_INST, do_illegal_slot_inst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Takashi YOSHII4b565682006-09-27 17:15:32 +0900846#if defined(CONFIG_CPU_SH4) && !defined(CONFIG_SH_FPU) || \
847 defined(CONFIG_SH_FPU_EMU)
848 /*
849 * For SH-4 lacking an FPU, treat floating point instructions as
850 * reserved. They'll be handled in the math-emu case, or faulted on
851 * otherwise.
852 */
Paul Mundt1f666582006-10-19 16:20:25 +0900853 set_exception_table_evt(0x800, do_reserved_inst);
854 set_exception_table_evt(0x820, do_illegal_slot_inst);
855#elif defined(CONFIG_SH_FPU)
856 set_exception_table_evt(0x800, do_fpu_state_restore);
857 set_exception_table_evt(0x820, do_fpu_state_restore);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858#endif
Yoshinori Sato0983b312006-11-05 15:58:47 +0900859
860#ifdef CONFIG_CPU_SH2
861 set_exception_table_vec(TRAP_ADDRESS_ERROR, address_error_handler);
862#endif
863#ifdef CONFIG_CPU_SH2A
864 set_exception_table_vec(TRAP_DIVZERO_ERROR, do_divide_error);
865 set_exception_table_vec(TRAP_DIVOVF_ERROR, do_divide_error);
866#endif
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 /* Setup VBR for boot cpu */
869 per_cpu_trap_init();
870}
871
Paul Mundtfa691512007-03-08 19:41:21 +0900872#ifdef CONFIG_BUG
873void handle_BUG(struct pt_regs *regs)
874{
875 enum bug_trap_type tt;
Heiko Carstens608e2612007-07-15 23:41:39 -0700876 tt = report_bug(regs->pc, regs);
Paul Mundtfa691512007-03-08 19:41:21 +0900877 if (tt == BUG_TRAP_TYPE_WARN) {
878 regs->pc += 2;
879 return;
880 }
881
882 die("Kernel BUG", regs, TRAPA_BUG_OPCODE & 0xff);
883}
884
885int is_valid_bugaddr(unsigned long addr)
886{
887 return addr >= PAGE_OFFSET;
888}
889#endif
890
Paul Mundt6b002232006-10-12 17:07:45 +0900891void show_trace(struct task_struct *tsk, unsigned long *sp,
892 struct pt_regs *regs)
893{
894 unsigned long addr;
895
896 if (regs && user_mode(regs))
897 return;
898
899 printk("\nCall trace: ");
900#ifdef CONFIG_KALLSYMS
901 printk("\n");
902#endif
903
904 while (!kstack_end(sp)) {
905 addr = *sp++;
906 if (kernel_text_address(addr))
907 print_ip_sym(addr);
908 }
909
910 printk("\n");
Paul Mundt9b8c90e2006-12-06 11:07:51 +0900911
912 if (!tsk)
913 tsk = current;
914
915 debug_show_held_locks(tsk);
Paul Mundt6b002232006-10-12 17:07:45 +0900916}
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918void show_stack(struct task_struct *tsk, unsigned long *sp)
919{
Paul Mundt6b002232006-10-12 17:07:45 +0900920 unsigned long stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Paul Mundta6a311392006-09-27 18:22:14 +0900922 if (!tsk)
923 tsk = current;
924 if (tsk == current)
925 sp = (unsigned long *)current_stack_pointer;
926 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 sp = (unsigned long *)tsk->thread.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Paul Mundt6b002232006-10-12 17:07:45 +0900929 stack = (unsigned long)sp;
930 dump_mem("Stack: ", stack, THREAD_SIZE +
931 (unsigned long)task_stack_page(tsk));
932 show_trace(tsk, sp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
935void dump_stack(void)
936{
937 show_stack(NULL, NULL);
938}
939EXPORT_SYMBOL(dump_stack);