4 * Linux architectural port borrowing liberally from similar works of
5 * others. All original copyrights apply as per the original source
8 * Modifications for the OpenRISC architecture:
9 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
10 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
17 * Here we handle the break vectors not used by the system call
18 * mechanism, as well as some general stack/register dumping
23 #include <linux/init.h>
24 #include <linux/sched.h>
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/kmod.h>
28 #include <linux/string.h>
29 #include <linux/errno.h>
30 #include <linux/ptrace.h>
31 #include <linux/timer.h>
33 #include <linux/kallsyms.h>
34 #include <asm/uaccess.h>
36 #include <asm/segment.h>
38 #include <asm/pgtable.h>
40 extern char _etext
, _stext
;
42 int kstack_depth_to_print
= 0x180;
44 static inline int valid_stack_ptr(struct thread_info
*tinfo
, void *p
)
46 return p
> (void *)tinfo
&& p
< (void *)tinfo
+ THREAD_SIZE
- 3;
49 void show_trace(struct task_struct
*task
, unsigned long *stack
)
51 struct thread_info
*context
;
54 context
= (struct thread_info
*)
55 ((unsigned long)stack
& (~(THREAD_SIZE
- 1)));
57 while (valid_stack_ptr(context
, stack
)) {
59 if (__kernel_text_address(addr
)) {
60 printk(" [<%08lx>]", addr
);
61 print_symbol(" %s", addr
);
65 printk(" =======================\n");
68 /* displays a short stack trace */
69 void show_stack(struct task_struct
*task
, unsigned long *esp
)
71 unsigned long addr
, *stack
;
75 esp
= (unsigned long *)&esp
;
79 printk("Stack dump [0x%08lx]:\n", (unsigned long)esp
);
80 for (i
= 0; i
< kstack_depth_to_print
; i
++) {
81 if (kstack_end(stack
))
83 if (__get_user(addr
, stack
)) {
84 /* This message matches "failing address" marked
85 s390 in ksymoops, so lines containing it will
86 not be filtered out by ksymoops. */
87 printk("Failing address 0x%lx\n", (unsigned long)stack
);
92 printk("sp + %02d: 0x%08lx\n", i
* 4, addr
);
96 show_trace(task
, esp
);
101 void show_trace_task(struct task_struct
*tsk
)
104 * TODO: SysRq-T trace dump...
109 * The architecture-independent backtrace generator
111 void dump_stack(void)
115 show_stack(current
, &stack
);
117 EXPORT_SYMBOL(dump_stack
);
119 void show_registers(struct pt_regs
*regs
)
125 esp
= (unsigned long)(®s
->sp
);
130 " PC: %08lx SR: %08lx SP: %08lx\n",
131 smp_processor_id(), regs
->pc
, regs
->sr
, regs
->sp
);
132 printk("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
133 0L, regs
->gpr
[1], regs
->gpr
[2], regs
->gpr
[3]);
134 printk("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
135 regs
->gpr
[4], regs
->gpr
[5], regs
->gpr
[6], regs
->gpr
[7]);
136 printk("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
137 regs
->gpr
[8], regs
->gpr
[9], regs
->gpr
[10], regs
->gpr
[11]);
138 printk("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
139 regs
->gpr
[12], regs
->gpr
[13], regs
->gpr
[14], regs
->gpr
[15]);
140 printk("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
141 regs
->gpr
[16], regs
->gpr
[17], regs
->gpr
[18], regs
->gpr
[19]);
142 printk("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
143 regs
->gpr
[20], regs
->gpr
[21], regs
->gpr
[22], regs
->gpr
[23]);
144 printk("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
145 regs
->gpr
[24], regs
->gpr
[25], regs
->gpr
[26], regs
->gpr
[27]);
146 printk("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
147 regs
->gpr
[28], regs
->gpr
[29], regs
->gpr
[30], regs
->gpr
[31]);
148 printk(" RES: %08lx oGPR11: %08lx\n",
149 regs
->gpr
[11], regs
->orig_gpr11
);
151 printk("Process %s (pid: %d, stackpage=%08lx)\n",
152 current
->comm
, current
->pid
, (unsigned long)current
);
154 * When in-kernel, we also print out the stack and code at the
155 * time of the fault..
160 show_stack(NULL
, (unsigned long *)esp
);
163 if (regs
->pc
< PAGE_OFFSET
)
166 for (i
= -24; i
< 24; i
++) {
168 if (__get_user(c
, &((unsigned char *)regs
->pc
)[i
])) {
170 printk(" Bad PC value.");
175 printk("(%02x) ", c
);
183 void nommu_dump_state(struct pt_regs
*regs
,
184 unsigned long ea
, unsigned long vector
)
187 unsigned long addr
, stack
= regs
->sp
;
189 printk("\n\r[nommu_dump_state] :: ea %lx, vector %lx\n\r", ea
, vector
);
192 " PC: %08lx SR: %08lx SP: %08lx\n",
193 0, regs
->pc
, regs
->sr
, regs
->sp
);
194 printk("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
195 0L, regs
->gpr
[1], regs
->gpr
[2], regs
->gpr
[3]);
196 printk("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
197 regs
->gpr
[4], regs
->gpr
[5], regs
->gpr
[6], regs
->gpr
[7]);
198 printk("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
199 regs
->gpr
[8], regs
->gpr
[9], regs
->gpr
[10], regs
->gpr
[11]);
200 printk("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
201 regs
->gpr
[12], regs
->gpr
[13], regs
->gpr
[14], regs
->gpr
[15]);
202 printk("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
203 regs
->gpr
[16], regs
->gpr
[17], regs
->gpr
[18], regs
->gpr
[19]);
204 printk("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
205 regs
->gpr
[20], regs
->gpr
[21], regs
->gpr
[22], regs
->gpr
[23]);
206 printk("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
207 regs
->gpr
[24], regs
->gpr
[25], regs
->gpr
[26], regs
->gpr
[27]);
208 printk("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
209 regs
->gpr
[28], regs
->gpr
[29], regs
->gpr
[30], regs
->gpr
[31]);
210 printk(" RES: %08lx oGPR11: %08lx\n",
211 regs
->gpr
[11], regs
->orig_gpr11
);
213 printk("Process %s (pid: %d, stackpage=%08lx)\n",
214 ((struct task_struct
*)(__pa(current
)))->comm
,
215 ((struct task_struct
*)(__pa(current
)))->pid
,
216 (unsigned long)current
);
219 printk("Stack dump [0x%08lx]:\n", (unsigned long)stack
);
220 for (i
= 0; i
< kstack_depth_to_print
; i
++) {
221 if (((long)stack
& (THREAD_SIZE
- 1)) == 0)
225 printk("%lx :: sp + %02d: 0x%08lx\n", stack
, i
* 4,
226 *((unsigned long *)(__pa(stack
))));
230 printk("Call Trace: ");
232 while (((long)stack
& (THREAD_SIZE
- 1)) != 0) {
233 addr
= *((unsigned long *)__pa(stack
));
236 if (kernel_text_address(addr
)) {
237 if (i
&& ((i
% 6) == 0))
239 printk(" [<%08lx>]", addr
);
247 for (i
= -24; i
< 24; i
++) {
249 c
= ((unsigned char *)(__pa(regs
->pc
)))[i
];
252 printk("(%02x) ", c
);
259 /* This is normally the 'Oops' routine */
260 void die(const char *str
, struct pt_regs
*regs
, long err
)
264 printk("\n%s#: %04lx\n", str
, err
& 0xffff);
265 show_registers(regs
);
266 #ifdef CONFIG_JUMP_UPON_UNHANDLED_EXCEPTION
267 printk("\n\nUNHANDLED_EXCEPTION: entering infinite loop\n");
269 /* shut down interrupts */
272 __asm__
__volatile__("l.nop 1");
278 /* This is normally the 'Oops' routine */
279 void die_if_kernel(const char *str
, struct pt_regs
*regs
, long err
)
287 void unhandled_exception(struct pt_regs
*regs
, int ea
, int vector
)
289 printk("Unable to handle exception at EA =0x%x, vector 0x%x",
291 die("Oops", regs
, 9);
294 void __init
trap_init(void)
296 /* Nothing needs to be done */
299 asmlinkage
void do_trap(struct pt_regs
*regs
, unsigned long address
)
302 memset(&info
, 0, sizeof(info
));
303 info
.si_signo
= SIGTRAP
;
304 info
.si_code
= TRAP_TRACE
;
305 info
.si_addr
= (void *)address
;
306 force_sig_info(SIGTRAP
, &info
, current
);
311 asmlinkage
void do_unaligned_access(struct pt_regs
*regs
, unsigned long address
)
315 if (user_mode(regs
)) {
317 info
.si_signo
= SIGSEGV
;
319 /* info.si_code has been set above */
320 info
.si_addr
= (void *)address
;
321 force_sig_info(SIGSEGV
, &info
, current
);
323 printk("KERNEL: Unaligned Access 0x%.8lx\n", address
);
324 show_registers(regs
);
325 die("Die:", regs
, address
);
330 asmlinkage
void do_bus_fault(struct pt_regs
*regs
, unsigned long address
)
334 if (user_mode(regs
)) {
336 info
.si_signo
= SIGBUS
;
338 info
.si_code
= BUS_ADRERR
;
339 info
.si_addr
= (void *)address
;
340 force_sig_info(SIGBUS
, &info
, current
);
341 } else { /* Kernel mode */
342 printk("KERNEL: Bus error (SIGBUS) 0x%.8lx\n", address
);
343 show_registers(regs
);
344 die("Die:", regs
, address
);
348 asmlinkage
void do_illegal_instruction(struct pt_regs
*regs
,
349 unsigned long address
)
353 if (user_mode(regs
)) {
355 info
.si_signo
= SIGILL
;
357 info
.si_code
= ILL_ILLOPC
;
358 info
.si_addr
= (void *)address
;
359 force_sig_info(SIGBUS
, &info
, current
);
360 } else { /* Kernel mode */
361 printk("KERNEL: Illegal instruction (SIGILL) 0x%.8lx\n",
363 show_registers(regs
);
364 die("Die:", regs
, address
);