blob: 05a04b6df8446416d08beb8c614570dfe05c12d3 [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>
Russell Kingba84be22009-01-06 14:41:07 -080016#include <linux/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/spinlock.h>
19#include <linux/module.h>
20#include <linux/kallsyms.h>
Paul Mundt1f666582006-10-19 16:20:25 +090021#include <linux/io.h>
Paul Mundtfa691512007-03-08 19:41:21 +090022#include <linux/bug.h>
Paul Mundt9b8c90e2006-12-06 11:07:51 +090023#include <linux/debug_locks.h>
Paul Mundtb118ca52007-05-09 10:55:38 +090024#include <linux/kdebug.h>
Paul Mundte1132762007-05-15 08:36:36 +090025#include <linux/kexec.h>
Paul Mundtdc34d312006-12-08 17:41:43 +090026#include <linux/limits.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/system.h>
28#include <asm/uaccess.h>
Andrew Mortonfad0f902008-04-16 02:03:51 +090029#include <asm/fpu.h>
Chris Smithd39f5452008-09-05 17:15:39 +090030#include <asm/kprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#ifdef CONFIG_CPU_SH2
Yoshinori Sato0983b312006-11-05 15:58:47 +090033# define TRAP_RESERVED_INST 4
34# define TRAP_ILLEGAL_SLOT_INST 6
35# define TRAP_ADDRESS_ERROR 9
36# ifdef CONFIG_CPU_SH2A
Peter Griffincd894362009-05-08 15:51:51 +010037# define TRAP_UBC 12
Yoshinori Sato6e80f5e2008-07-10 01:20:03 +090038# define TRAP_FPU_ERROR 13
Yoshinori Sato0983b312006-11-05 15:58:47 +090039# define TRAP_DIVZERO_ERROR 17
40# define TRAP_DIVOVF_ERROR 18
41# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#else
43#define TRAP_RESERVED_INST 12
44#define TRAP_ILLEGAL_SLOT_INST 13
45#endif
46
Paul Mundt6b002232006-10-12 17:07:45 +090047static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
48{
49 unsigned long p;
50 int i;
51
52 printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top);
53
54 for (p = bottom & ~31; p < top; ) {
55 printk("%04lx: ", p & 0xffff);
56
57 for (i = 0; i < 8; i++, p += 4) {
58 unsigned int val;
59
60 if (p < bottom || p >= top)
61 printk(" ");
62 else {
63 if (__get_user(val, (unsigned int __user *)p)) {
64 printk("\n");
65 return;
66 }
67 printk("%08x ", val);
68 }
69 }
70 printk("\n");
71 }
72}
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Paul Mundt3a2e1172007-05-01 16:33:10 +090074static DEFINE_SPINLOCK(die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76void die(const char * str, struct pt_regs * regs, long err)
77{
78 static int die_counter;
79
Paul Mundt55273982007-06-18 18:57:13 +090080 oops_enter();
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 console_verbose();
83 spin_lock_irq(&die_lock);
Paul Mundt6b002232006-10-12 17:07:45 +090084 bust_spinlocks(1);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 printk("%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
Paul Mundt6b002232006-10-12 17:07:45 +090087
Paul Mundt6b002232006-10-12 17:07:45 +090088 print_modules();
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 show_regs(regs);
Paul Mundt6b002232006-10-12 17:07:45 +090090
Alexey Dobriyan19c58702007-10-18 23:40:41 -070091 printk("Process: %s (pid: %d, stack limit = %p)\n", current->comm,
92 task_pid_nr(current), task_stack_page(current) + 1);
Paul Mundt6b002232006-10-12 17:07:45 +090093
94 if (!user_mode(regs) || in_interrupt())
95 dump_mem("Stack: ", regs->regs[15], THREAD_SIZE +
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +090096 (unsigned long)task_stack_page(current));
Paul Mundt6b002232006-10-12 17:07:45 +090097
Paul Mundtc9306f02008-10-21 18:33:36 +090098 notify_die(DIE_OOPS, str, regs, err, 255, SIGSEGV);
99
Paul Mundt6b002232006-10-12 17:07:45 +0900100 bust_spinlocks(0);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700101 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 spin_unlock_irq(&die_lock);
Paul Mundte1132762007-05-15 08:36:36 +0900103
104 if (kexec_should_crash(current))
105 crash_kexec(regs);
106
107 if (in_interrupt())
108 panic("Fatal exception in interrupt");
109
110 if (panic_on_oops)
111 panic("Fatal exception");
112
Paul Mundt55273982007-06-18 18:57:13 +0900113 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 do_exit(SIGSEGV);
115}
116
Paul Mundt6b002232006-10-12 17:07:45 +0900117static inline void die_if_kernel(const char *str, struct pt_regs *regs,
118 long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 if (!user_mode(regs))
121 die(str, regs, err);
122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
125 * try and fix up kernelspace address errors
126 * - userspace errors just cause EFAULT to be returned, resulting in SEGV
127 * - kernel/userspace interfaces cause a jump to an appropriate handler
128 * - other kernel errors are bad
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
SUGIOKA Toshinobu2afb4472009-01-21 09:42:10 +0900130static void die_if_no_fixup(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Paul Mundt6b002232006-10-12 17:07:45 +0900132 if (!user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 const struct exception_table_entry *fixup;
134 fixup = search_exception_tables(regs->pc);
135 if (fixup) {
136 regs->pc = fixup->fixup;
SUGIOKA Toshinobu2afb4472009-01-21 09:42:10 +0900137 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
Matt Flemingb344e24a2009-08-16 21:54:48 +0100139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 die(str, regs, err);
141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Magnus Damm86c01792008-02-07 00:02:50 +0900144static inline void sign_extend(unsigned int count, unsigned char *dst)
145{
146#ifdef __LITTLE_ENDIAN__
Magnus Damm4252c652008-02-07 19:58:46 +0900147 if ((count == 1) && dst[0] & 0x80) {
148 dst[1] = 0xff;
149 dst[2] = 0xff;
150 dst[3] = 0xff;
151 }
Magnus Damm86c01792008-02-07 00:02:50 +0900152 if ((count == 2) && dst[1] & 0x80) {
153 dst[2] = 0xff;
154 dst[3] = 0xff;
155 }
156#else
Magnus Damm4252c652008-02-07 19:58:46 +0900157 if ((count == 1) && dst[3] & 0x80) {
158 dst[2] = 0xff;
Magnus Damm86c01792008-02-07 00:02:50 +0900159 dst[1] = 0xff;
Magnus Damm4252c652008-02-07 19:58:46 +0900160 dst[0] = 0xff;
161 }
162 if ((count == 2) && dst[2] & 0x80) {
163 dst[1] = 0xff;
164 dst[0] = 0xff;
Magnus Damm86c01792008-02-07 00:02:50 +0900165 }
166#endif
167}
168
Magnus Damme7cc9a72008-02-07 20:18:21 +0900169static struct mem_access user_mem_access = {
170 copy_from_user,
171 copy_to_user,
172};
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
175 * handle an instruction that does an unaligned memory access by emulating the
176 * desired behaviour
177 * - note that PC _may not_ point to the faulting instruction
178 * (if that instruction is in a branch delay slot)
179 * - return 0 if emulation okay, -EFAULT on existential error
180 */
Paul Mundt2bcfffa2009-05-09 16:02:08 +0900181static int handle_unaligned_ins(insn_size_t instruction, struct pt_regs *regs,
Magnus Damme7cc9a72008-02-07 20:18:21 +0900182 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 int ret, index, count;
185 unsigned long *rm, *rn;
186 unsigned char *src, *dst;
Paul Mundtfa439722008-09-04 18:53:58 +0900187 unsigned char __user *srcu, *dstu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 index = (instruction>>8)&15; /* 0x0F00 */
190 rn = &regs->regs[index];
191
192 index = (instruction>>4)&15; /* 0x00F0 */
193 rm = &regs->regs[index];
194
195 count = 1<<(instruction&3);
196
197 ret = -EFAULT;
198 switch (instruction>>12) {
199 case 0: /* mov.[bwl] to/from memory via r0+rn */
200 if (instruction & 8) {
201 /* from memory */
Paul Mundtfa439722008-09-04 18:53:58 +0900202 srcu = (unsigned char __user *)*rm;
203 srcu += regs->regs[0];
204 dst = (unsigned char *)rn;
205 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Magnus Damm86c01792008-02-07 00:02:50 +0900207#if !defined(__LITTLE_ENDIAN__)
208 dst += 4-count;
209#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900210 if (ma->from(dst, srcu, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto fetch_fault;
212
Magnus Damm86c01792008-02-07 00:02:50 +0900213 sign_extend(count, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 } else {
215 /* to memory */
Paul Mundtfa439722008-09-04 18:53:58 +0900216 src = (unsigned char *)rm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#if !defined(__LITTLE_ENDIAN__)
218 src += 4-count;
219#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900220 dstu = (unsigned char __user *)*rn;
221 dstu += regs->regs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Paul Mundtfa439722008-09-04 18:53:58 +0900223 if (ma->to(dstu, src, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 goto fetch_fault;
225 }
226 ret = 0;
227 break;
228
229 case 1: /* mov.l Rm,@(disp,Rn) */
230 src = (unsigned char*) rm;
Paul Mundtfa439722008-09-04 18:53:58 +0900231 dstu = (unsigned char __user *)*rn;
232 dstu += (instruction&0x000F)<<2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Paul Mundtfa439722008-09-04 18:53:58 +0900234 if (ma->to(dstu, src, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 goto fetch_fault;
236 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900237 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 case 2: /* mov.[bwl] to memory, possibly with pre-decrement */
240 if (instruction & 4)
241 *rn -= count;
242 src = (unsigned char*) rm;
Paul Mundtfa439722008-09-04 18:53:58 +0900243 dstu = (unsigned char __user *)*rn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244#if !defined(__LITTLE_ENDIAN__)
245 src += 4-count;
246#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900247 if (ma->to(dstu, src, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 goto fetch_fault;
249 ret = 0;
250 break;
251
252 case 5: /* mov.l @(disp,Rm),Rn */
Paul Mundtfa439722008-09-04 18:53:58 +0900253 srcu = (unsigned char __user *)*rm;
254 srcu += (instruction & 0x000F) << 2;
255 dst = (unsigned char *)rn;
256 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Paul Mundtfa439722008-09-04 18:53:58 +0900258 if (ma->from(dst, srcu, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 goto fetch_fault;
260 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900261 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 case 6: /* mov.[bwl] from memory, possibly with post-increment */
Paul Mundtfa439722008-09-04 18:53:58 +0900264 srcu = (unsigned char __user *)*rm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (instruction & 4)
266 *rm += count;
267 dst = (unsigned char*) rn;
268 *(unsigned long*)dst = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900269
Magnus Damm86c01792008-02-07 00:02:50 +0900270#if !defined(__LITTLE_ENDIAN__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 dst += 4-count;
Magnus Damm86c01792008-02-07 00:02:50 +0900272#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900273 if (ma->from(dst, srcu, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 goto fetch_fault;
Magnus Damm86c01792008-02-07 00:02:50 +0900275 sign_extend(count, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 ret = 0;
277 break;
278
279 case 8:
280 switch ((instruction&0xFF00)>>8) {
281 case 0x81: /* mov.w R0,@(disp,Rn) */
Paul Mundtfa439722008-09-04 18:53:58 +0900282 src = (unsigned char *) &regs->regs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283#if !defined(__LITTLE_ENDIAN__)
284 src += 2;
285#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900286 dstu = (unsigned char __user *)*rm; /* called Rn in the spec */
287 dstu += (instruction & 0x000F) << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Paul Mundtfa439722008-09-04 18:53:58 +0900289 if (ma->to(dstu, src, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 goto fetch_fault;
291 ret = 0;
292 break;
293
294 case 0x85: /* mov.w @(disp,Rm),R0 */
Paul Mundtfa439722008-09-04 18:53:58 +0900295 srcu = (unsigned char __user *)*rm;
296 srcu += (instruction & 0x000F) << 1;
297 dst = (unsigned char *) &regs->regs[0];
298 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300#if !defined(__LITTLE_ENDIAN__)
301 dst += 2;
302#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900303 if (ma->from(dst, srcu, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 goto fetch_fault;
Magnus Damm86c01792008-02-07 00:02:50 +0900305 sign_extend(2, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 ret = 0;
307 break;
308 }
309 break;
310 }
311 return ret;
312
313 fetch_fault:
314 /* Argh. Address not only misaligned but also non-existent.
315 * Raise an EFAULT and see if it's trapped
316 */
SUGIOKA Toshinobu2afb4472009-01-21 09:42:10 +0900317 die_if_no_fixup("Fault in unaligned fixup", regs, 0);
318 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
321/*
322 * emulate the instruction in the delay slot
323 * - fetches the instruction from PC+2
324 */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900325static inline int handle_delayslot(struct pt_regs *regs,
Paul Mundt2bcfffa2009-05-09 16:02:08 +0900326 insn_size_t old_instruction,
Magnus Damme7cc9a72008-02-07 20:18:21 +0900327 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Paul Mundt2bcfffa2009-05-09 16:02:08 +0900329 insn_size_t instruction;
Paul Mundtfa439722008-09-04 18:53:58 +0900330 void __user *addr = (void __user *)(regs->pc +
331 instruction_size(old_instruction));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900333 if (copy_from_user(&instruction, addr, sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* the instruction-fetch faulted */
335 if (user_mode(regs))
336 return -EFAULT;
337
338 /* kernel */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900339 die("delay-slot-insn faulting in handle_unaligned_delayslot",
340 regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342
Magnus Damme7cc9a72008-02-07 20:18:21 +0900343 return handle_unaligned_ins(instruction, regs, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346/*
347 * handle an instruction that does an unaligned memory access
348 * - have to be careful of branch delay-slot instructions that fault
349 * SH3:
350 * - if the branch would be taken PC points to the branch
351 * - if the branch would not be taken, PC points to delay-slot
352 * SH4:
353 * - PC always points to delayed branch
354 * - return 0 if handled, -EFAULT if failed (may not return if in kernel)
355 */
356
357/* Macros to determine offset from current PC for branch instructions */
358/* Explicit type coercion is used to force sign extension where needed */
359#define SH_PC_8BIT_OFFSET(instr) ((((signed char)(instr))*2) + 4)
360#define SH_PC_12BIT_OFFSET(instr) ((((signed short)(instr<<4))>>3) + 4)
361
Paul Mundt710ee0c2006-11-05 16:48:42 +0900362/*
363 * XXX: SH-2A needs this too, but it needs an overhaul thanks to mixed 32-bit
364 * opcodes..
365 */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900366
Paul Mundt710ee0c2006-11-05 16:48:42 +0900367static int handle_unaligned_notify_count = 10;
368
Paul Mundt2bcfffa2009-05-09 16:02:08 +0900369int handle_unaligned_access(insn_size_t instruction, struct pt_regs *regs,
Magnus Damme7cc9a72008-02-07 20:18:21 +0900370 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 u_int rm;
373 int ret, index;
374
375 index = (instruction>>8)&15; /* 0x0F00 */
376 rm = regs->regs[index];
377
378 /* shout about the first ten userspace fixups */
379 if (user_mode(regs) && handle_unaligned_notify_count>0) {
380 handle_unaligned_notify_count--;
381
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900382 printk(KERN_NOTICE "Fixing up unaligned userspace access "
383 "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700384 current->comm, task_pid_nr(current),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900385 (void *)regs->pc, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
388 ret = -EFAULT;
389 switch (instruction&0xF000) {
390 case 0x0000:
391 if (instruction==0x000B) {
392 /* rts */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900393 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (ret==0)
395 regs->pc = regs->pr;
396 }
397 else if ((instruction&0x00FF)==0x0023) {
398 /* braf @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900399 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (ret==0)
401 regs->pc += rm + 4;
402 }
403 else if ((instruction&0x00FF)==0x0003) {
404 /* bsrf @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900405 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (ret==0) {
407 regs->pr = regs->pc + 4;
408 regs->pc += rm + 4;
409 }
410 }
411 else {
412 /* mov.[bwl] to/from memory via r0+rn */
413 goto simple;
414 }
415 break;
416
417 case 0x1000: /* mov.l Rm,@(disp,Rn) */
418 goto simple;
419
420 case 0x2000: /* mov.[bwl] to memory, possibly with pre-decrement */
421 goto simple;
422
423 case 0x4000:
424 if ((instruction&0x00FF)==0x002B) {
425 /* jmp @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900426 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (ret==0)
428 regs->pc = rm;
429 }
430 else if ((instruction&0x00FF)==0x000B) {
431 /* jsr @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900432 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (ret==0) {
434 regs->pr = regs->pc + 4;
435 regs->pc = rm;
436 }
437 }
438 else {
439 /* mov.[bwl] to/from memory via r0+rn */
440 goto simple;
441 }
442 break;
443
444 case 0x5000: /* mov.l @(disp,Rm),Rn */
445 goto simple;
446
447 case 0x6000: /* mov.[bwl] from memory, possibly with post-increment */
448 goto simple;
449
450 case 0x8000: /* bf lab, bf/s lab, bt lab, bt/s lab */
451 switch (instruction&0x0F00) {
452 case 0x0100: /* mov.w R0,@(disp,Rm) */
453 goto simple;
454 case 0x0500: /* mov.w @(disp,Rm),R0 */
455 goto simple;
456 case 0x0B00: /* bf lab - no delayslot*/
457 break;
458 case 0x0F00: /* bf/s lab */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900459 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (ret==0) {
461#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
462 if ((regs->sr & 0x00000001) != 0)
463 regs->pc += 4; /* next after slot */
464 else
465#endif
466 regs->pc += SH_PC_8BIT_OFFSET(instruction);
467 }
468 break;
469 case 0x0900: /* bt lab - no delayslot */
470 break;
471 case 0x0D00: /* bt/s lab */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900472 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (ret==0) {
474#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
475 if ((regs->sr & 0x00000001) == 0)
476 regs->pc += 4; /* next after slot */
477 else
478#endif
479 regs->pc += SH_PC_8BIT_OFFSET(instruction);
480 }
481 break;
482 }
483 break;
484
485 case 0xA000: /* bra label */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900486 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (ret==0)
488 regs->pc += SH_PC_12BIT_OFFSET(instruction);
489 break;
490
491 case 0xB000: /* bsr label */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900492 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (ret==0) {
494 regs->pr = regs->pc + 4;
495 regs->pc += SH_PC_12BIT_OFFSET(instruction);
496 }
497 break;
498 }
499 return ret;
500
501 /* handle non-delay-slot instruction */
502 simple:
Magnus Damme7cc9a72008-02-07 20:18:21 +0900503 ret = handle_unaligned_ins(instruction, regs, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (ret==0)
Paul Mundt53f983a2007-05-08 15:31:48 +0900505 regs->pc += instruction_size(instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return ret;
507}
508
509/*
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900510 * Handle various address error exceptions:
511 * - instruction address error:
512 * misaligned PC
513 * PC >= 0x80000000 in user mode
514 * - data address error (read and write)
515 * misaligned data access
516 * access to >= 0x80000000 is user mode
517 * Unfortuntaly we can't distinguish between instruction address error
Simon Arlotte868d612007-05-14 08:15:10 +0900518 * and data address errors caused by read accesses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900520asmlinkage void do_address_error(struct pt_regs *regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 unsigned long writeaccess,
522 unsigned long address)
523{
Yoshinori Sato0983b312006-11-05 15:58:47 +0900524 unsigned long error_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 mm_segment_t oldfs;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900526 siginfo_t info;
Paul Mundt2bcfffa2009-05-09 16:02:08 +0900527 insn_size_t instruction;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 int tmp;
529
Yoshinori Sato0983b312006-11-05 15:58:47 +0900530 /* Intentional ifdef */
531#ifdef CONFIG_CPU_HAS_SR_RB
Paul Mundt4c59e292008-09-21 12:00:23 +0900532 error_code = lookup_exception_vector();
Yoshinori Sato0983b312006-11-05 15:58:47 +0900533#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 oldfs = get_fs();
536
537 if (user_mode(regs)) {
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900538 int si_code = BUS_ADRERR;
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 /* bad PC is not something we can fix */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900543 if (regs->pc & 1) {
544 si_code = BUS_ADRALN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 goto uspace_segv;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 set_fs(USER_DS);
Paul Mundtfa439722008-09-04 18:53:58 +0900549 if (copy_from_user(&instruction, (void __user *)(regs->pc),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900550 sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /* Argh. Fault on the instruction itself.
552 This should never happen non-SMP
553 */
554 set_fs(oldfs);
555 goto uspace_segv;
556 }
557
Magnus Damme7cc9a72008-02-07 20:18:21 +0900558 tmp = handle_unaligned_access(instruction, regs,
559 &user_mem_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 set_fs(oldfs);
561
562 if (tmp==0)
563 return; /* sorted */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900564uspace_segv:
565 printk(KERN_NOTICE "Sending SIGBUS to \"%s\" due to unaligned "
566 "access (PC %lx PR %lx)\n", current->comm, regs->pc,
567 regs->pr);
568
569 info.si_signo = SIGBUS;
570 info.si_errno = 0;
571 info.si_code = si_code;
Paul Mundte08f4572007-05-14 12:52:56 +0900572 info.si_addr = (void __user *)address;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900573 force_sig_info(SIGBUS, &info, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 } else {
575 if (regs->pc & 1)
576 die("unaligned program counter", regs, error_code);
577
578 set_fs(KERNEL_DS);
Paul Mundtfa439722008-09-04 18:53:58 +0900579 if (copy_from_user(&instruction, (void __user *)(regs->pc),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900580 sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /* Argh. Fault on the instruction itself.
582 This should never happen non-SMP
583 */
584 set_fs(oldfs);
585 die("insn faulting in do_address_error", regs, 0);
586 }
587
Magnus Damme7cc9a72008-02-07 20:18:21 +0900588 handle_unaligned_access(instruction, regs, &user_mem_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 set_fs(oldfs);
590 }
591}
592
593#ifdef CONFIG_SH_DSP
594/*
595 * SH-DSP support gerg@snapgear.com.
596 */
597int is_dsp_inst(struct pt_regs *regs)
598{
Paul Mundt882c12c2007-05-14 17:26:34 +0900599 unsigned short inst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900601 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 * Safe guard if DSP mode is already enabled or we're lacking
603 * the DSP altogether.
604 */
Paul Mundt11c19652006-12-25 10:19:56 +0900605 if (!(current_cpu_data.flags & CPU_HAS_DSP) || (regs->sr & SR_DSP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return 0;
607
608 get_user(inst, ((unsigned short *) regs->pc));
609
610 inst &= 0xf000;
611
612 /* Check for any type of DSP or support instruction */
613 if ((inst == 0xf000) || (inst == 0x4000))
614 return 1;
615
616 return 0;
617}
618#else
619#define is_dsp_inst(regs) (0)
620#endif /* CONFIG_SH_DSP */
621
Yoshinori Sato0983b312006-11-05 15:58:47 +0900622#ifdef CONFIG_CPU_SH2A
623asmlinkage void do_divide_error(unsigned long r4, unsigned long r5,
624 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900625 struct pt_regs __regs)
Yoshinori Sato0983b312006-11-05 15:58:47 +0900626{
627 siginfo_t info;
628
Yoshinori Sato0983b312006-11-05 15:58:47 +0900629 switch (r4) {
630 case TRAP_DIVZERO_ERROR:
631 info.si_code = FPE_INTDIV;
632 break;
633 case TRAP_DIVOVF_ERROR:
634 info.si_code = FPE_INTOVF;
635 break;
636 }
637
638 force_sig_info(SIGFPE, &info, current);
639}
640#endif
641
Takashi YOSHII4b565682006-09-27 17:15:32 +0900642asmlinkage void do_reserved_inst(unsigned long r4, unsigned long r5,
643 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900644 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900645{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900646 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900647 unsigned long error_code;
648 struct task_struct *tsk = current;
649
650#ifdef CONFIG_SH_FPU_EMU
Yoshinori Sato0983b312006-11-05 15:58:47 +0900651 unsigned short inst = 0;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900652 int err;
653
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900654 get_user(inst, (unsigned short*)regs->pc);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900655
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900656 err = do_fpu_inst(inst, regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900657 if (!err) {
Paul Mundt53f983a2007-05-08 15:31:48 +0900658 regs->pc += instruction_size(inst);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900659 return;
660 }
661 /* not a FPU inst. */
662#endif
663
664#ifdef CONFIG_SH_DSP
665 /* Check if it's a DSP instruction */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900666 if (is_dsp_inst(regs)) {
Takashi YOSHII4b565682006-09-27 17:15:32 +0900667 /* Enable DSP mode, and restart instruction. */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900668 regs->sr |= SR_DSP;
Michael Trimarchi01ab1032009-04-03 17:32:33 +0000669 /* Save DSP mode */
670 tsk->thread.dsp_status.status |= SR_DSP;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900671 return;
672 }
673#endif
674
Paul Mundt4c59e292008-09-21 12:00:23 +0900675 error_code = lookup_exception_vector();
Yoshinori Sato0983b312006-11-05 15:58:47 +0900676
Takashi YOSHII4b565682006-09-27 17:15:32 +0900677 local_irq_enable();
Takashi YOSHII4b565682006-09-27 17:15:32 +0900678 force_sig(SIGILL, tsk);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900679 die_if_no_fixup("reserved instruction", regs, error_code);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900680}
681
682#ifdef CONFIG_SH_FPU_EMU
Paul Mundtedfd6da2008-11-26 13:06:04 +0900683static int emulate_branch(unsigned short inst, struct pt_regs *regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900684{
685 /*
686 * bfs: 8fxx: PC+=d*2+4;
687 * bts: 8dxx: PC+=d*2+4;
688 * bra: axxx: PC+=D*2+4;
689 * bsr: bxxx: PC+=D*2+4 after PR=PC+4;
690 * braf:0x23: PC+=Rn*2+4;
691 * bsrf:0x03: PC+=Rn*2+4 after PR=PC+4;
692 * jmp: 4x2b: PC=Rn;
693 * jsr: 4x0b: PC=Rn after PR=PC+4;
694 * rts: 000b: PC=PR;
695 */
Paul Mundtedfd6da2008-11-26 13:06:04 +0900696 if (((inst & 0xf000) == 0xb000) || /* bsr */
697 ((inst & 0xf0ff) == 0x0003) || /* bsrf */
698 ((inst & 0xf0ff) == 0x400b)) /* jsr */
699 regs->pr = regs->pc + 4;
700
701 if ((inst & 0xfd00) == 0x8d00) { /* bfs, bts */
Takashi YOSHII4b565682006-09-27 17:15:32 +0900702 regs->pc += SH_PC_8BIT_OFFSET(inst);
703 return 0;
704 }
705
Paul Mundtedfd6da2008-11-26 13:06:04 +0900706 if ((inst & 0xe000) == 0xa000) { /* bra, bsr */
Takashi YOSHII4b565682006-09-27 17:15:32 +0900707 regs->pc += SH_PC_12BIT_OFFSET(inst);
708 return 0;
709 }
710
Paul Mundtedfd6da2008-11-26 13:06:04 +0900711 if ((inst & 0xf0df) == 0x0003) { /* braf, bsrf */
Takashi YOSHII4b565682006-09-27 17:15:32 +0900712 regs->pc += regs->regs[(inst & 0x0f00) >> 8] + 4;
713 return 0;
714 }
715
Paul Mundtedfd6da2008-11-26 13:06:04 +0900716 if ((inst & 0xf0df) == 0x400b) { /* jmp, jsr */
Takashi YOSHII4b565682006-09-27 17:15:32 +0900717 regs->pc = regs->regs[(inst & 0x0f00) >> 8];
718 return 0;
719 }
720
Paul Mundtedfd6da2008-11-26 13:06:04 +0900721 if ((inst & 0xffff) == 0x000b) { /* rts */
Takashi YOSHII4b565682006-09-27 17:15:32 +0900722 regs->pc = regs->pr;
723 return 0;
724 }
725
726 return 1;
727}
728#endif
729
730asmlinkage void do_illegal_slot_inst(unsigned long r4, unsigned long r5,
731 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900732 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900733{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900734 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Paul Mundtb3d765f2008-09-17 23:12:11 +0900735 unsigned long inst;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900736 struct task_struct *tsk = current;
Chris Smithd39f5452008-09-05 17:15:39 +0900737
738 if (kprobe_handle_illslot(regs->pc) == 0)
739 return;
740
Takashi YOSHII4b565682006-09-27 17:15:32 +0900741#ifdef CONFIG_SH_FPU_EMU
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900742 get_user(inst, (unsigned short *)regs->pc + 1);
743 if (!do_fpu_inst(inst, regs)) {
744 get_user(inst, (unsigned short *)regs->pc);
745 if (!emulate_branch(inst, regs))
Takashi YOSHII4b565682006-09-27 17:15:32 +0900746 return;
747 /* fault in branch.*/
748 }
749 /* not a FPU inst. */
750#endif
751
Paul Mundt4c59e292008-09-21 12:00:23 +0900752 inst = lookup_exception_vector();
Yoshinori Sato0983b312006-11-05 15:58:47 +0900753
Takashi YOSHII4b565682006-09-27 17:15:32 +0900754 local_irq_enable();
Takashi YOSHII4b565682006-09-27 17:15:32 +0900755 force_sig(SIGILL, tsk);
Paul Mundtb3d765f2008-09-17 23:12:11 +0900756 die_if_no_fixup("illegal slot instruction", regs, inst);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900757}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759asmlinkage void do_exception_error(unsigned long r4, unsigned long r5,
760 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900761 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900763 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 long ex;
Yoshinori Sato0983b312006-11-05 15:58:47 +0900765
Paul Mundt4c59e292008-09-21 12:00:23 +0900766 ex = lookup_exception_vector();
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900767 die_if_kernel("exception", regs, ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
770#if defined(CONFIG_SH_STANDARD_BIOS)
771void *gdb_vbr_vector;
772
773static inline void __init gdb_vbr_init(void)
774{
775 register unsigned long vbr;
776
777 /*
778 * Read the old value of the VBR register to initialise
779 * the vector through which debug and BIOS traps are
780 * delegated by the Linux trap handler.
781 */
782 asm volatile("stc vbr, %0" : "=r" (vbr));
783
784 gdb_vbr_vector = (void *)(vbr + 0x100);
785 printk("Setting GDB trap vector to 0x%08lx\n",
786 (unsigned long)gdb_vbr_vector);
787}
788#endif
789
Paul Mundtaba10302007-09-21 18:32:32 +0900790void __cpuinit per_cpu_trap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 extern void *vbr_base;
793
794#ifdef CONFIG_SH_STANDARD_BIOS
Paul Mundtaba10302007-09-21 18:32:32 +0900795 if (raw_smp_processor_id() == 0)
796 gdb_vbr_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797#endif
798
799 /* NOTE: The VBR value should be at P1
800 (or P2, virtural "fixed" address space).
801 It's definitely should not in physical address. */
802
803 asm volatile("ldc %0, vbr"
804 : /* no output */
805 : "r" (&vbr_base)
806 : "memory");
807}
808
Paul Mundt1f666582006-10-19 16:20:25 +0900809void *set_exception_table_vec(unsigned int vec, void *handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 extern void *exception_handling_table[];
Paul Mundt1f666582006-10-19 16:20:25 +0900812 void *old_handler;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900813
Paul Mundt1f666582006-10-19 16:20:25 +0900814 old_handler = exception_handling_table[vec];
815 exception_handling_table[vec] = handler;
816 return old_handler;
817}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Paul Mundt1f666582006-10-19 16:20:25 +0900819void __init trap_init(void)
820{
821 set_exception_table_vec(TRAP_RESERVED_INST, do_reserved_inst);
822 set_exception_table_vec(TRAP_ILLEGAL_SLOT_INST, do_illegal_slot_inst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Takashi YOSHII4b565682006-09-27 17:15:32 +0900824#if defined(CONFIG_CPU_SH4) && !defined(CONFIG_SH_FPU) || \
825 defined(CONFIG_SH_FPU_EMU)
826 /*
827 * For SH-4 lacking an FPU, treat floating point instructions as
828 * reserved. They'll be handled in the math-emu case, or faulted on
829 * otherwise.
830 */
Paul Mundt1f666582006-10-19 16:20:25 +0900831 set_exception_table_evt(0x800, do_reserved_inst);
832 set_exception_table_evt(0x820, do_illegal_slot_inst);
833#elif defined(CONFIG_SH_FPU)
Paul Mundte0a36472007-08-01 16:55:07 +0900834#ifdef CONFIG_CPU_SUBTYPE_SHX3
Paul Mundt74d99a52007-11-26 20:38:36 +0900835 set_exception_table_evt(0xd80, fpu_state_restore_trap_handler);
836 set_exception_table_evt(0xda0, fpu_state_restore_trap_handler);
Paul Mundte0a36472007-08-01 16:55:07 +0900837#else
Paul Mundt74d99a52007-11-26 20:38:36 +0900838 set_exception_table_evt(0x800, fpu_state_restore_trap_handler);
839 set_exception_table_evt(0x820, fpu_state_restore_trap_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840#endif
Paul Mundte0a36472007-08-01 16:55:07 +0900841#endif
Yoshinori Sato0983b312006-11-05 15:58:47 +0900842
843#ifdef CONFIG_CPU_SH2
Paul Mundt5a4f7c62007-11-20 18:08:06 +0900844 set_exception_table_vec(TRAP_ADDRESS_ERROR, address_error_trap_handler);
Yoshinori Sato0983b312006-11-05 15:58:47 +0900845#endif
846#ifdef CONFIG_CPU_SH2A
847 set_exception_table_vec(TRAP_DIVZERO_ERROR, do_divide_error);
848 set_exception_table_vec(TRAP_DIVOVF_ERROR, do_divide_error);
Yoshinori Sato6e80f5e2008-07-10 01:20:03 +0900849#ifdef CONFIG_SH_FPU
850 set_exception_table_vec(TRAP_FPU_ERROR, fpu_error_trap_handler);
851#endif
Yoshinori Sato0983b312006-11-05 15:58:47 +0900852#endif
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900853
Peter Griffincd894362009-05-08 15:51:51 +0100854#ifdef TRAP_UBC
855 set_exception_table_vec(TRAP_UBC, break_point_trap);
856#endif
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /* Setup VBR for boot cpu */
859 per_cpu_trap_init();
860}
861
862void show_stack(struct task_struct *tsk, unsigned long *sp)
863{
Paul Mundt6b002232006-10-12 17:07:45 +0900864 unsigned long stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Paul Mundta6a311392006-09-27 18:22:14 +0900866 if (!tsk)
867 tsk = current;
868 if (tsk == current)
869 sp = (unsigned long *)current_stack_pointer;
870 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 sp = (unsigned long *)tsk->thread.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Paul Mundt6b002232006-10-12 17:07:45 +0900873 stack = (unsigned long)sp;
874 dump_mem("Stack: ", stack, THREAD_SIZE +
875 (unsigned long)task_stack_page(tsk));
876 show_trace(tsk, sp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
879void dump_stack(void)
880{
881 show_stack(NULL, NULL);
882}
883EXPORT_SYMBOL(dump_stack);