2 * linux/arch/h8300/boot/traps.c -- general exception handling code
5 * Cloned from Linux/m68k.
7 * No original Copyright holder listed,
8 * Probable original (C) Roman Zippel (assigned DJD, 1999)
12 * This file is subject to the terms and conditions of the GNU General Public
13 * License. See the file COPYING in the main directory of this archive
17 #include <linux/types.h>
18 #include <linux/sched.h>
19 #include <linux/kernel.h>
20 #include <linux/errno.h>
21 #include <linux/init.h>
22 #include <linux/module.h>
23 #include <linux/bug.h>
26 #include <asm/traps.h>
29 static DEFINE_SPINLOCK(die_lock);
32 * this must be called very early as the kernel might
33 * use some instruction that are emulated on the 060
36 void __init base_trap_init(void)
40 void __init trap_init(void)
44 asmlinkage void set_esp0(unsigned long ssp)
46 current->thread.esp0 = ssp;
50 * Generic dumping code. Used for panic and debug.
53 static void dump(struct pt_regs *fp)
59 pr_info("\nCURRENT PROCESS:\n\n");
60 pr_info("COMM=%s PID=%d\n", current->comm, current->pid);
62 pr_info("TEXT=%08x-%08x DATA=%08x-%08x BSS=%08x-%08x\n",
63 (int) current->mm->start_code,
64 (int) current->mm->end_code,
65 (int) current->mm->start_data,
66 (int) current->mm->end_data,
67 (int) current->mm->end_data,
68 (int) current->mm->brk);
69 pr_info("USER-STACK=%08x KERNEL-STACK=%08lx\n\n",
70 (int) current->mm->start_stack,
71 (int) PAGE_SIZE+(unsigned long)current);
76 tp = ((unsigned char *) fp->pc) - 0x20;
77 for (sp = (unsigned long *) tp, i = 0; (i < 0x40); i += 4) {
79 pr_info("\n%08x: ", (int) (tp + i));
80 pr_info("%08x ", (int) *sp++);
84 pr_info("\nKERNEL STACK:");
85 tp = ((unsigned char *) fp) - 0x40;
86 for (sp = (unsigned long *) tp, i = 0; (i < 0xc0); i += 4) {
88 pr_info("\n%08x: ", (int) (tp + i));
89 pr_info("%08x ", (int) *sp++);
92 if (STACK_MAGIC != *(unsigned long *)((unsigned long)current+PAGE_SIZE))
93 pr_info("(Possibly corrupted stack page??)\n");
98 void die(const char *str, struct pt_regs *fp, unsigned long err)
105 spin_lock_irq(&die_lock);
106 report_bug(fp->pc, fp);
107 pr_crit("%s: %04lx [#%d] ", str, err & 0xffff, ++diecount);
110 spin_unlock_irq(&die_lock);
114 static int kstack_depth_to_print = 24;
116 void show_stack(struct task_struct *task, unsigned long *esp)
118 unsigned long *stack, addr;
122 esp = (unsigned long *) &esp;
126 pr_info("Stack from %08lx:", (unsigned long)stack);
127 for (i = 0; i < kstack_depth_to_print; i++) {
128 if (((unsigned long)stack & (THREAD_SIZE - 1)) >=
133 pr_cont(" %08lx", *stack++);
136 pr_info("\nCall Trace:\n");
139 while (((unsigned long)stack & (THREAD_SIZE - 1)) < THREAD_SIZE-4) {
142 * If the address is either in the text segment of the
143 * kernel, or in the region which contains vmalloc'ed
144 * memory, it *may* be the address of a calling
145 * routine; if so, print it so that someone tracing
146 * down the cause of the crash will be able to figure
147 * out the call path that was taken.
149 if (check_kernel_text(addr)) {
152 pr_cont(" [<%08lx>]", addr);