blob: 60dcf87ed019b76b5be51baf24c2156122b04350 [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
Yoshinori Sato6e80f5e2008-07-10 01:20:03 +090037# define TRAP_FPU_ERROR 13
Yoshinori Sato0983b312006-11-05 15:58:47 +090038# define TRAP_DIVZERO_ERROR 17
39# define TRAP_DIVOVF_ERROR 18
40# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#else
42#define TRAP_RESERVED_INST 12
43#define TRAP_ILLEGAL_SLOT_INST 13
44#endif
45
Paul Mundt6b002232006-10-12 17:07:45 +090046static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
47{
48 unsigned long p;
49 int i;
50
51 printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top);
52
53 for (p = bottom & ~31; p < top; ) {
54 printk("%04lx: ", p & 0xffff);
55
56 for (i = 0; i < 8; i++, p += 4) {
57 unsigned int val;
58
59 if (p < bottom || p >= top)
60 printk(" ");
61 else {
62 if (__get_user(val, (unsigned int __user *)p)) {
63 printk("\n");
64 return;
65 }
66 printk("%08x ", val);
67 }
68 }
69 printk("\n");
70 }
71}
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Paul Mundt3a2e1172007-05-01 16:33:10 +090073static DEFINE_SPINLOCK(die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75void die(const char * str, struct pt_regs * regs, long err)
76{
77 static int die_counter;
78
Paul Mundt55273982007-06-18 18:57:13 +090079 oops_enter();
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 console_verbose();
82 spin_lock_irq(&die_lock);
Paul Mundt6b002232006-10-12 17:07:45 +090083 bust_spinlocks(1);
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 printk("%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
Paul Mundt6b002232006-10-12 17:07:45 +090086
Paul Mundt6b002232006-10-12 17:07:45 +090087 print_modules();
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 show_regs(regs);
Paul Mundt6b002232006-10-12 17:07:45 +090089
Alexey Dobriyan19c58702007-10-18 23:40:41 -070090 printk("Process: %s (pid: %d, stack limit = %p)\n", current->comm,
91 task_pid_nr(current), task_stack_page(current) + 1);
Paul Mundt6b002232006-10-12 17:07:45 +090092
93 if (!user_mode(regs) || in_interrupt())
94 dump_mem("Stack: ", regs->regs[15], THREAD_SIZE +
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +090095 (unsigned long)task_stack_page(current));
Paul Mundt6b002232006-10-12 17:07:45 +090096
Paul Mundtc9306f02008-10-21 18:33:36 +090097 notify_die(DIE_OOPS, str, regs, err, 255, SIGSEGV);
98
Paul Mundt6b002232006-10-12 17:07:45 +090099 bust_spinlocks(0);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700100 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 spin_unlock_irq(&die_lock);
Paul Mundte1132762007-05-15 08:36:36 +0900102
103 if (kexec_should_crash(current))
104 crash_kexec(regs);
105
106 if (in_interrupt())
107 panic("Fatal exception in interrupt");
108
109 if (panic_on_oops)
110 panic("Fatal exception");
111
Paul Mundt55273982007-06-18 18:57:13 +0900112 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 do_exit(SIGSEGV);
114}
115
Paul Mundt6b002232006-10-12 17:07:45 +0900116static inline void die_if_kernel(const char *str, struct pt_regs *regs,
117 long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 if (!user_mode(regs))
120 die(str, regs, err);
121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*
124 * try and fix up kernelspace address errors
125 * - userspace errors just cause EFAULT to be returned, resulting in SEGV
126 * - kernel/userspace interfaces cause a jump to an appropriate handler
127 * - other kernel errors are bad
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
SUGIOKA Toshinobu2afb4472009-01-21 09:42:10 +0900129static void die_if_no_fixup(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Paul Mundt6b002232006-10-12 17:07:45 +0900131 if (!user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 const struct exception_table_entry *fixup;
133 fixup = search_exception_tables(regs->pc);
134 if (fixup) {
135 regs->pc = fixup->fixup;
SUGIOKA Toshinobu2afb4472009-01-21 09:42:10 +0900136 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
138 die(str, regs, err);
139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Magnus Damm86c01792008-02-07 00:02:50 +0900142static inline void sign_extend(unsigned int count, unsigned char *dst)
143{
144#ifdef __LITTLE_ENDIAN__
Magnus Damm4252c652008-02-07 19:58:46 +0900145 if ((count == 1) && dst[0] & 0x80) {
146 dst[1] = 0xff;
147 dst[2] = 0xff;
148 dst[3] = 0xff;
149 }
Magnus Damm86c01792008-02-07 00:02:50 +0900150 if ((count == 2) && dst[1] & 0x80) {
151 dst[2] = 0xff;
152 dst[3] = 0xff;
153 }
154#else
Magnus Damm4252c652008-02-07 19:58:46 +0900155 if ((count == 1) && dst[3] & 0x80) {
156 dst[2] = 0xff;
Magnus Damm86c01792008-02-07 00:02:50 +0900157 dst[1] = 0xff;
Magnus Damm4252c652008-02-07 19:58:46 +0900158 dst[0] = 0xff;
159 }
160 if ((count == 2) && dst[2] & 0x80) {
161 dst[1] = 0xff;
162 dst[0] = 0xff;
Magnus Damm86c01792008-02-07 00:02:50 +0900163 }
164#endif
165}
166
Magnus Damme7cc9a72008-02-07 20:18:21 +0900167static struct mem_access user_mem_access = {
168 copy_from_user,
169 copy_to_user,
170};
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*
173 * handle an instruction that does an unaligned memory access by emulating the
174 * desired behaviour
175 * - note that PC _may not_ point to the faulting instruction
176 * (if that instruction is in a branch delay slot)
177 * - return 0 if emulation okay, -EFAULT on existential error
178 */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900179static int handle_unaligned_ins(opcode_t instruction, struct pt_regs *regs,
180 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 int ret, index, count;
183 unsigned long *rm, *rn;
184 unsigned char *src, *dst;
Paul Mundtfa439722008-09-04 18:53:58 +0900185 unsigned char __user *srcu, *dstu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 index = (instruction>>8)&15; /* 0x0F00 */
188 rn = &regs->regs[index];
189
190 index = (instruction>>4)&15; /* 0x00F0 */
191 rm = &regs->regs[index];
192
193 count = 1<<(instruction&3);
194
195 ret = -EFAULT;
196 switch (instruction>>12) {
197 case 0: /* mov.[bwl] to/from memory via r0+rn */
198 if (instruction & 8) {
199 /* from memory */
Paul Mundtfa439722008-09-04 18:53:58 +0900200 srcu = (unsigned char __user *)*rm;
201 srcu += regs->regs[0];
202 dst = (unsigned char *)rn;
203 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Magnus Damm86c01792008-02-07 00:02:50 +0900205#if !defined(__LITTLE_ENDIAN__)
206 dst += 4-count;
207#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900208 if (ma->from(dst, srcu, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 goto fetch_fault;
210
Magnus Damm86c01792008-02-07 00:02:50 +0900211 sign_extend(count, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 } else {
213 /* to memory */
Paul Mundtfa439722008-09-04 18:53:58 +0900214 src = (unsigned char *)rm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#if !defined(__LITTLE_ENDIAN__)
216 src += 4-count;
217#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900218 dstu = (unsigned char __user *)*rn;
219 dstu += regs->regs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Paul Mundtfa439722008-09-04 18:53:58 +0900221 if (ma->to(dstu, src, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 goto fetch_fault;
223 }
224 ret = 0;
225 break;
226
227 case 1: /* mov.l Rm,@(disp,Rn) */
228 src = (unsigned char*) rm;
Paul Mundtfa439722008-09-04 18:53:58 +0900229 dstu = (unsigned char __user *)*rn;
230 dstu += (instruction&0x000F)<<2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Paul Mundtfa439722008-09-04 18:53:58 +0900232 if (ma->to(dstu, src, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 goto fetch_fault;
234 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900235 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 case 2: /* mov.[bwl] to memory, possibly with pre-decrement */
238 if (instruction & 4)
239 *rn -= count;
240 src = (unsigned char*) rm;
Paul Mundtfa439722008-09-04 18:53:58 +0900241 dstu = (unsigned char __user *)*rn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242#if !defined(__LITTLE_ENDIAN__)
243 src += 4-count;
244#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900245 if (ma->to(dstu, src, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 goto fetch_fault;
247 ret = 0;
248 break;
249
250 case 5: /* mov.l @(disp,Rm),Rn */
Paul Mundtfa439722008-09-04 18:53:58 +0900251 srcu = (unsigned char __user *)*rm;
252 srcu += (instruction & 0x000F) << 2;
253 dst = (unsigned char *)rn;
254 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Paul Mundtfa439722008-09-04 18:53:58 +0900256 if (ma->from(dst, srcu, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 goto fetch_fault;
258 ret = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900259 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 case 6: /* mov.[bwl] from memory, possibly with post-increment */
Paul Mundtfa439722008-09-04 18:53:58 +0900262 srcu = (unsigned char __user *)*rm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (instruction & 4)
264 *rm += count;
265 dst = (unsigned char*) rn;
266 *(unsigned long*)dst = 0;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900267
Magnus Damm86c01792008-02-07 00:02:50 +0900268#if !defined(__LITTLE_ENDIAN__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 dst += 4-count;
Magnus Damm86c01792008-02-07 00:02:50 +0900270#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900271 if (ma->from(dst, srcu, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 goto fetch_fault;
Magnus Damm86c01792008-02-07 00:02:50 +0900273 sign_extend(count, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 ret = 0;
275 break;
276
277 case 8:
278 switch ((instruction&0xFF00)>>8) {
279 case 0x81: /* mov.w R0,@(disp,Rn) */
Paul Mundtfa439722008-09-04 18:53:58 +0900280 src = (unsigned char *) &regs->regs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281#if !defined(__LITTLE_ENDIAN__)
282 src += 2;
283#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900284 dstu = (unsigned char __user *)*rm; /* called Rn in the spec */
285 dstu += (instruction & 0x000F) << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Paul Mundtfa439722008-09-04 18:53:58 +0900287 if (ma->to(dstu, src, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 goto fetch_fault;
289 ret = 0;
290 break;
291
292 case 0x85: /* mov.w @(disp,Rm),R0 */
Paul Mundtfa439722008-09-04 18:53:58 +0900293 srcu = (unsigned char __user *)*rm;
294 srcu += (instruction & 0x000F) << 1;
295 dst = (unsigned char *) &regs->regs[0];
296 *(unsigned long *)dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298#if !defined(__LITTLE_ENDIAN__)
299 dst += 2;
300#endif
Paul Mundtfa439722008-09-04 18:53:58 +0900301 if (ma->from(dst, srcu, 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 goto fetch_fault;
Magnus Damm86c01792008-02-07 00:02:50 +0900303 sign_extend(2, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 ret = 0;
305 break;
306 }
307 break;
308 }
309 return ret;
310
311 fetch_fault:
312 /* Argh. Address not only misaligned but also non-existent.
313 * Raise an EFAULT and see if it's trapped
314 */
SUGIOKA Toshinobu2afb4472009-01-21 09:42:10 +0900315 die_if_no_fixup("Fault in unaligned fixup", regs, 0);
316 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319/*
320 * emulate the instruction in the delay slot
321 * - fetches the instruction from PC+2
322 */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900323static inline int handle_delayslot(struct pt_regs *regs,
324 opcode_t old_instruction,
325 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900327 opcode_t instruction;
Paul Mundtfa439722008-09-04 18:53:58 +0900328 void __user *addr = (void __user *)(regs->pc +
329 instruction_size(old_instruction));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900331 if (copy_from_user(&instruction, addr, sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /* the instruction-fetch faulted */
333 if (user_mode(regs))
334 return -EFAULT;
335
336 /* kernel */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900337 die("delay-slot-insn faulting in handle_unaligned_delayslot",
338 regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
340
Magnus Damme7cc9a72008-02-07 20:18:21 +0900341 return handle_unaligned_ins(instruction, regs, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344/*
345 * handle an instruction that does an unaligned memory access
346 * - have to be careful of branch delay-slot instructions that fault
347 * SH3:
348 * - if the branch would be taken PC points to the branch
349 * - if the branch would not be taken, PC points to delay-slot
350 * SH4:
351 * - PC always points to delayed branch
352 * - return 0 if handled, -EFAULT if failed (may not return if in kernel)
353 */
354
355/* Macros to determine offset from current PC for branch instructions */
356/* Explicit type coercion is used to force sign extension where needed */
357#define SH_PC_8BIT_OFFSET(instr) ((((signed char)(instr))*2) + 4)
358#define SH_PC_12BIT_OFFSET(instr) ((((signed short)(instr<<4))>>3) + 4)
359
Paul Mundt710ee0c2006-11-05 16:48:42 +0900360/*
361 * XXX: SH-2A needs this too, but it needs an overhaul thanks to mixed 32-bit
362 * opcodes..
363 */
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900364
Paul Mundt710ee0c2006-11-05 16:48:42 +0900365static int handle_unaligned_notify_count = 10;
366
Magnus Damme7cc9a72008-02-07 20:18:21 +0900367int handle_unaligned_access(opcode_t instruction, struct pt_regs *regs,
368 struct mem_access *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 u_int rm;
371 int ret, index;
372
373 index = (instruction>>8)&15; /* 0x0F00 */
374 rm = regs->regs[index];
375
376 /* shout about the first ten userspace fixups */
377 if (user_mode(regs) && handle_unaligned_notify_count>0) {
378 handle_unaligned_notify_count--;
379
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900380 printk(KERN_NOTICE "Fixing up unaligned userspace access "
381 "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700382 current->comm, task_pid_nr(current),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900383 (void *)regs->pc, instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385
386 ret = -EFAULT;
387 switch (instruction&0xF000) {
388 case 0x0000:
389 if (instruction==0x000B) {
390 /* rts */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900391 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (ret==0)
393 regs->pc = regs->pr;
394 }
395 else if ((instruction&0x00FF)==0x0023) {
396 /* braf @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900397 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (ret==0)
399 regs->pc += rm + 4;
400 }
401 else if ((instruction&0x00FF)==0x0003) {
402 /* bsrf @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900403 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (ret==0) {
405 regs->pr = regs->pc + 4;
406 regs->pc += rm + 4;
407 }
408 }
409 else {
410 /* mov.[bwl] to/from memory via r0+rn */
411 goto simple;
412 }
413 break;
414
415 case 0x1000: /* mov.l Rm,@(disp,Rn) */
416 goto simple;
417
418 case 0x2000: /* mov.[bwl] to memory, possibly with pre-decrement */
419 goto simple;
420
421 case 0x4000:
422 if ((instruction&0x00FF)==0x002B) {
423 /* jmp @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900424 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (ret==0)
426 regs->pc = rm;
427 }
428 else if ((instruction&0x00FF)==0x000B) {
429 /* jsr @Rm */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900430 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (ret==0) {
432 regs->pr = regs->pc + 4;
433 regs->pc = rm;
434 }
435 }
436 else {
437 /* mov.[bwl] to/from memory via r0+rn */
438 goto simple;
439 }
440 break;
441
442 case 0x5000: /* mov.l @(disp,Rm),Rn */
443 goto simple;
444
445 case 0x6000: /* mov.[bwl] from memory, possibly with post-increment */
446 goto simple;
447
448 case 0x8000: /* bf lab, bf/s lab, bt lab, bt/s lab */
449 switch (instruction&0x0F00) {
450 case 0x0100: /* mov.w R0,@(disp,Rm) */
451 goto simple;
452 case 0x0500: /* mov.w @(disp,Rm),R0 */
453 goto simple;
454 case 0x0B00: /* bf lab - no delayslot*/
455 break;
456 case 0x0F00: /* bf/s lab */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900457 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (ret==0) {
459#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
460 if ((regs->sr & 0x00000001) != 0)
461 regs->pc += 4; /* next after slot */
462 else
463#endif
464 regs->pc += SH_PC_8BIT_OFFSET(instruction);
465 }
466 break;
467 case 0x0900: /* bt lab - no delayslot */
468 break;
469 case 0x0D00: /* bt/s lab */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900470 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (ret==0) {
472#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
473 if ((regs->sr & 0x00000001) == 0)
474 regs->pc += 4; /* next after slot */
475 else
476#endif
477 regs->pc += SH_PC_8BIT_OFFSET(instruction);
478 }
479 break;
480 }
481 break;
482
483 case 0xA000: /* bra label */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900484 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (ret==0)
486 regs->pc += SH_PC_12BIT_OFFSET(instruction);
487 break;
488
489 case 0xB000: /* bsr label */
Magnus Damme7cc9a72008-02-07 20:18:21 +0900490 ret = handle_delayslot(regs, instruction, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (ret==0) {
492 regs->pr = regs->pc + 4;
493 regs->pc += SH_PC_12BIT_OFFSET(instruction);
494 }
495 break;
496 }
497 return ret;
498
499 /* handle non-delay-slot instruction */
500 simple:
Magnus Damme7cc9a72008-02-07 20:18:21 +0900501 ret = handle_unaligned_ins(instruction, regs, ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (ret==0)
Paul Mundt53f983a2007-05-08 15:31:48 +0900503 regs->pc += instruction_size(instruction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return ret;
505}
506
507/*
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900508 * Handle various address error exceptions:
509 * - instruction address error:
510 * misaligned PC
511 * PC >= 0x80000000 in user mode
512 * - data address error (read and write)
513 * misaligned data access
514 * access to >= 0x80000000 is user mode
515 * Unfortuntaly we can't distinguish between instruction address error
Simon Arlotte868d612007-05-14 08:15:10 +0900516 * and data address errors caused by read accesses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900518asmlinkage void do_address_error(struct pt_regs *regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 unsigned long writeaccess,
520 unsigned long address)
521{
Yoshinori Sato0983b312006-11-05 15:58:47 +0900522 unsigned long error_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 mm_segment_t oldfs;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900524 siginfo_t info;
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900525 opcode_t instruction;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 int tmp;
527
Yoshinori Sato0983b312006-11-05 15:58:47 +0900528 /* Intentional ifdef */
529#ifdef CONFIG_CPU_HAS_SR_RB
Paul Mundt4c59e292008-09-21 12:00:23 +0900530 error_code = lookup_exception_vector();
Yoshinori Sato0983b312006-11-05 15:58:47 +0900531#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 oldfs = get_fs();
534
535 if (user_mode(regs)) {
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900536 int si_code = BUS_ADRERR;
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* bad PC is not something we can fix */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900541 if (regs->pc & 1) {
542 si_code = BUS_ADRALN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 goto uspace_segv;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 set_fs(USER_DS);
Paul Mundtfa439722008-09-04 18:53:58 +0900547 if (copy_from_user(&instruction, (void __user *)(regs->pc),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900548 sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* Argh. Fault on the instruction itself.
550 This should never happen non-SMP
551 */
552 set_fs(oldfs);
553 goto uspace_segv;
554 }
555
Magnus Damme7cc9a72008-02-07 20:18:21 +0900556 tmp = handle_unaligned_access(instruction, regs,
557 &user_mem_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 set_fs(oldfs);
559
560 if (tmp==0)
561 return; /* sorted */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900562uspace_segv:
563 printk(KERN_NOTICE "Sending SIGBUS to \"%s\" due to unaligned "
564 "access (PC %lx PR %lx)\n", current->comm, regs->pc,
565 regs->pr);
566
567 info.si_signo = SIGBUS;
568 info.si_errno = 0;
569 info.si_code = si_code;
Paul Mundte08f4572007-05-14 12:52:56 +0900570 info.si_addr = (void __user *)address;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900571 force_sig_info(SIGBUS, &info, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 } else {
573 if (regs->pc & 1)
574 die("unaligned program counter", regs, error_code);
575
576 set_fs(KERNEL_DS);
Paul Mundtfa439722008-09-04 18:53:58 +0900577 if (copy_from_user(&instruction, (void __user *)(regs->pc),
Magnus Damm4b5a9ef2008-02-07 20:04:12 +0900578 sizeof(instruction))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 /* Argh. Fault on the instruction itself.
580 This should never happen non-SMP
581 */
582 set_fs(oldfs);
583 die("insn faulting in do_address_error", regs, 0);
584 }
585
Magnus Damme7cc9a72008-02-07 20:18:21 +0900586 handle_unaligned_access(instruction, regs, &user_mem_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 set_fs(oldfs);
588 }
589}
590
591#ifdef CONFIG_SH_DSP
592/*
593 * SH-DSP support gerg@snapgear.com.
594 */
595int is_dsp_inst(struct pt_regs *regs)
596{
Paul Mundt882c12c2007-05-14 17:26:34 +0900597 unsigned short inst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900599 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 * Safe guard if DSP mode is already enabled or we're lacking
601 * the DSP altogether.
602 */
Paul Mundt11c19652006-12-25 10:19:56 +0900603 if (!(current_cpu_data.flags & CPU_HAS_DSP) || (regs->sr & SR_DSP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return 0;
605
606 get_user(inst, ((unsigned short *) regs->pc));
607
608 inst &= 0xf000;
609
610 /* Check for any type of DSP or support instruction */
611 if ((inst == 0xf000) || (inst == 0x4000))
612 return 1;
613
614 return 0;
615}
616#else
617#define is_dsp_inst(regs) (0)
618#endif /* CONFIG_SH_DSP */
619
Yoshinori Sato0983b312006-11-05 15:58:47 +0900620#ifdef CONFIG_CPU_SH2A
621asmlinkage void do_divide_error(unsigned long r4, unsigned long r5,
622 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900623 struct pt_regs __regs)
Yoshinori Sato0983b312006-11-05 15:58:47 +0900624{
625 siginfo_t info;
626
Yoshinori Sato0983b312006-11-05 15:58:47 +0900627 switch (r4) {
628 case TRAP_DIVZERO_ERROR:
629 info.si_code = FPE_INTDIV;
630 break;
631 case TRAP_DIVOVF_ERROR:
632 info.si_code = FPE_INTOVF;
633 break;
634 }
635
636 force_sig_info(SIGFPE, &info, current);
637}
638#endif
639
Takashi YOSHII4b565682006-09-27 17:15:32 +0900640asmlinkage void do_reserved_inst(unsigned long r4, unsigned long r5,
641 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900642 struct pt_regs __regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900643{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900644 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900645 unsigned long error_code;
646 struct task_struct *tsk = current;
647
648#ifdef CONFIG_SH_FPU_EMU
Yoshinori Sato0983b312006-11-05 15:58:47 +0900649 unsigned short inst = 0;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900650 int err;
651
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900652 get_user(inst, (unsigned short*)regs->pc);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900653
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900654 err = do_fpu_inst(inst, regs);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900655 if (!err) {
Paul Mundt53f983a2007-05-08 15:31:48 +0900656 regs->pc += instruction_size(inst);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900657 return;
658 }
659 /* not a FPU inst. */
660#endif
661
662#ifdef CONFIG_SH_DSP
663 /* Check if it's a DSP instruction */
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900664 if (is_dsp_inst(regs)) {
Takashi YOSHII4b565682006-09-27 17:15:32 +0900665 /* Enable DSP mode, and restart instruction. */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900666 regs->sr |= SR_DSP;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900667 return;
668 }
669#endif
670
Paul Mundt4c59e292008-09-21 12:00:23 +0900671 error_code = lookup_exception_vector();
Yoshinori Sato0983b312006-11-05 15:58:47 +0900672
Takashi YOSHII4b565682006-09-27 17:15:32 +0900673 local_irq_enable();
Takashi YOSHII4b565682006-09-27 17:15:32 +0900674 force_sig(SIGILL, tsk);
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900675 die_if_no_fixup("reserved instruction", regs, error_code);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900676}
677
678#ifdef CONFIG_SH_FPU_EMU
Paul Mundtedfd6da2008-11-26 13:06:04 +0900679static int emulate_branch(unsigned short inst, struct pt_regs *regs)
Takashi YOSHII4b565682006-09-27 17:15:32 +0900680{
681 /*
682 * bfs: 8fxx: PC+=d*2+4;
683 * bts: 8dxx: PC+=d*2+4;
684 * bra: axxx: PC+=D*2+4;
685 * bsr: bxxx: PC+=D*2+4 after PR=PC+4;
686 * braf:0x23: PC+=Rn*2+4;
687 * bsrf:0x03: PC+=Rn*2+4 after PR=PC+4;
688 * jmp: 4x2b: PC=Rn;
689 * jsr: 4x0b: PC=Rn after PR=PC+4;
690 * rts: 000b: PC=PR;
691 */
Paul Mundtedfd6da2008-11-26 13:06:04 +0900692 if (((inst & 0xf000) == 0xb000) || /* bsr */
693 ((inst & 0xf0ff) == 0x0003) || /* bsrf */
694 ((inst & 0xf0ff) == 0x400b)) /* jsr */
695 regs->pr = regs->pc + 4;
696
697 if ((inst & 0xfd00) == 0x8d00) { /* bfs, bts */
Takashi YOSHII4b565682006-09-27 17:15:32 +0900698 regs->pc += SH_PC_8BIT_OFFSET(inst);
699 return 0;
700 }
701
Paul Mundtedfd6da2008-11-26 13:06:04 +0900702 if ((inst & 0xe000) == 0xa000) { /* bra, bsr */
Takashi YOSHII4b565682006-09-27 17:15:32 +0900703 regs->pc += SH_PC_12BIT_OFFSET(inst);
704 return 0;
705 }
706
Paul Mundtedfd6da2008-11-26 13:06:04 +0900707 if ((inst & 0xf0df) == 0x0003) { /* braf, bsrf */
Takashi YOSHII4b565682006-09-27 17:15:32 +0900708 regs->pc += regs->regs[(inst & 0x0f00) >> 8] + 4;
709 return 0;
710 }
711
Paul Mundtedfd6da2008-11-26 13:06:04 +0900712 if ((inst & 0xf0df) == 0x400b) { /* jmp, jsr */
Takashi YOSHII4b565682006-09-27 17:15:32 +0900713 regs->pc = regs->regs[(inst & 0x0f00) >> 8];
714 return 0;
715 }
716
Paul Mundtedfd6da2008-11-26 13:06:04 +0900717 if ((inst & 0xffff) == 0x000b) { /* rts */
Takashi YOSHII4b565682006-09-27 17:15:32 +0900718 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);
Paul Mundtb3d765f2008-09-17 23:12:11 +0900731 unsigned long inst;
Takashi YOSHII4b565682006-09-27 17:15:32 +0900732 struct task_struct *tsk = current;
Chris Smithd39f5452008-09-05 17:15:39 +0900733
734 if (kprobe_handle_illslot(regs->pc) == 0)
735 return;
736
Takashi YOSHII4b565682006-09-27 17:15:32 +0900737#ifdef CONFIG_SH_FPU_EMU
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900738 get_user(inst, (unsigned short *)regs->pc + 1);
739 if (!do_fpu_inst(inst, regs)) {
740 get_user(inst, (unsigned short *)regs->pc);
741 if (!emulate_branch(inst, regs))
Takashi YOSHII4b565682006-09-27 17:15:32 +0900742 return;
743 /* fault in branch.*/
744 }
745 /* not a FPU inst. */
746#endif
747
Paul Mundt4c59e292008-09-21 12:00:23 +0900748 inst = lookup_exception_vector();
Yoshinori Sato0983b312006-11-05 15:58:47 +0900749
Takashi YOSHII4b565682006-09-27 17:15:32 +0900750 local_irq_enable();
Takashi YOSHII4b565682006-09-27 17:15:32 +0900751 force_sig(SIGILL, tsk);
Paul Mundtb3d765f2008-09-17 23:12:11 +0900752 die_if_no_fixup("illegal slot instruction", regs, inst);
Takashi YOSHII4b565682006-09-27 17:15:32 +0900753}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755asmlinkage void do_exception_error(unsigned long r4, unsigned long r5,
756 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900757 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900759 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 long ex;
Yoshinori Sato0983b312006-11-05 15:58:47 +0900761
Paul Mundt4c59e292008-09-21 12:00:23 +0900762 ex = lookup_exception_vector();
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900763 die_if_kernel("exception", regs, ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766#if defined(CONFIG_SH_STANDARD_BIOS)
767void *gdb_vbr_vector;
768
769static inline void __init gdb_vbr_init(void)
770{
771 register unsigned long vbr;
772
773 /*
774 * Read the old value of the VBR register to initialise
775 * the vector through which debug and BIOS traps are
776 * delegated by the Linux trap handler.
777 */
778 asm volatile("stc vbr, %0" : "=r" (vbr));
779
780 gdb_vbr_vector = (void *)(vbr + 0x100);
781 printk("Setting GDB trap vector to 0x%08lx\n",
782 (unsigned long)gdb_vbr_vector);
783}
784#endif
785
Paul Mundtaba10302007-09-21 18:32:32 +0900786void __cpuinit per_cpu_trap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 extern void *vbr_base;
789
790#ifdef CONFIG_SH_STANDARD_BIOS
Paul Mundtaba10302007-09-21 18:32:32 +0900791 if (raw_smp_processor_id() == 0)
792 gdb_vbr_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793#endif
794
795 /* NOTE: The VBR value should be at P1
796 (or P2, virtural "fixed" address space).
797 It's definitely should not in physical address. */
798
799 asm volatile("ldc %0, vbr"
800 : /* no output */
801 : "r" (&vbr_base)
802 : "memory");
803}
804
Paul Mundt1f666582006-10-19 16:20:25 +0900805void *set_exception_table_vec(unsigned int vec, void *handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 extern void *exception_handling_table[];
Paul Mundt1f666582006-10-19 16:20:25 +0900808 void *old_handler;
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900809
Paul Mundt1f666582006-10-19 16:20:25 +0900810 old_handler = exception_handling_table[vec];
811 exception_handling_table[vec] = handler;
812 return old_handler;
813}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Paul Mundt1f666582006-10-19 16:20:25 +0900815void __init trap_init(void)
816{
817 set_exception_table_vec(TRAP_RESERVED_INST, do_reserved_inst);
818 set_exception_table_vec(TRAP_ILLEGAL_SLOT_INST, do_illegal_slot_inst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Takashi YOSHII4b565682006-09-27 17:15:32 +0900820#if defined(CONFIG_CPU_SH4) && !defined(CONFIG_SH_FPU) || \
821 defined(CONFIG_SH_FPU_EMU)
822 /*
823 * For SH-4 lacking an FPU, treat floating point instructions as
824 * reserved. They'll be handled in the math-emu case, or faulted on
825 * otherwise.
826 */
Paul Mundt1f666582006-10-19 16:20:25 +0900827 set_exception_table_evt(0x800, do_reserved_inst);
828 set_exception_table_evt(0x820, do_illegal_slot_inst);
829#elif defined(CONFIG_SH_FPU)
Paul Mundte0a36472007-08-01 16:55:07 +0900830#ifdef CONFIG_CPU_SUBTYPE_SHX3
Paul Mundt74d99a52007-11-26 20:38:36 +0900831 set_exception_table_evt(0xd80, fpu_state_restore_trap_handler);
832 set_exception_table_evt(0xda0, fpu_state_restore_trap_handler);
Paul Mundte0a36472007-08-01 16:55:07 +0900833#else
Paul Mundt74d99a52007-11-26 20:38:36 +0900834 set_exception_table_evt(0x800, fpu_state_restore_trap_handler);
835 set_exception_table_evt(0x820, fpu_state_restore_trap_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836#endif
Paul Mundte0a36472007-08-01 16:55:07 +0900837#endif
Yoshinori Sato0983b312006-11-05 15:58:47 +0900838
839#ifdef CONFIG_CPU_SH2
Paul Mundt5a4f7c62007-11-20 18:08:06 +0900840 set_exception_table_vec(TRAP_ADDRESS_ERROR, address_error_trap_handler);
Yoshinori Sato0983b312006-11-05 15:58:47 +0900841#endif
842#ifdef CONFIG_CPU_SH2A
843 set_exception_table_vec(TRAP_DIVZERO_ERROR, do_divide_error);
844 set_exception_table_vec(TRAP_DIVOVF_ERROR, do_divide_error);
Yoshinori Sato6e80f5e2008-07-10 01:20:03 +0900845#ifdef CONFIG_SH_FPU
846 set_exception_table_vec(TRAP_FPU_ERROR, fpu_error_trap_handler);
847#endif
Yoshinori Sato0983b312006-11-05 15:58:47 +0900848#endif
Stuart Menefyb5a1bcb2006-11-21 13:34:04 +0900849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 /* Setup VBR for boot cpu */
851 per_cpu_trap_init();
852}
853
Paul Mundt6b002232006-10-12 17:07:45 +0900854void show_trace(struct task_struct *tsk, unsigned long *sp,
855 struct pt_regs *regs)
856{
857 unsigned long addr;
858
859 if (regs && user_mode(regs))
860 return;
861
Paul Mundt75fd24c2008-11-26 15:20:35 +0900862 printk("\nCall trace:\n");
Paul Mundt6b002232006-10-12 17:07:45 +0900863
864 while (!kstack_end(sp)) {
865 addr = *sp++;
866 if (kernel_text_address(addr))
867 print_ip_sym(addr);
868 }
869
870 printk("\n");
Paul Mundt9b8c90e2006-12-06 11:07:51 +0900871
872 if (!tsk)
873 tsk = current;
874
875 debug_show_held_locks(tsk);
Paul Mundt6b002232006-10-12 17:07:45 +0900876}
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878void show_stack(struct task_struct *tsk, unsigned long *sp)
879{
Paul Mundt6b002232006-10-12 17:07:45 +0900880 unsigned long stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Paul Mundta6a311392006-09-27 18:22:14 +0900882 if (!tsk)
883 tsk = current;
884 if (tsk == current)
885 sp = (unsigned long *)current_stack_pointer;
886 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 sp = (unsigned long *)tsk->thread.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Paul Mundt6b002232006-10-12 17:07:45 +0900889 stack = (unsigned long)sp;
890 dump_mem("Stack: ", stack, THREAD_SIZE +
891 (unsigned long)task_stack_page(tsk));
892 show_trace(tsk, sp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
895void dump_stack(void)
896{
897 show_stack(NULL, NULL);
898}
899EXPORT_SYMBOL(dump_stack);