blob: a2ee12948f4056d9f6d50a4e03b42818569f949c [file] [log] [blame]
Jonas Bonn769a8a92011-06-04 22:35:30 +03001/*
2 * OpenRISC traps.c
3 *
4 * Linux architectural port borrowing liberally from similar works of
5 * others. All original copyrights apply as per the original source
6 * declaration.
7 *
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>
11 *
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.
16 *
17 * Here we handle the break vectors not used by the system call
18 * mechanism, as well as some general stack/register dumping
19 * things.
20 *
21 */
22
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>
32#include <linux/mm.h>
33#include <linux/kallsyms.h>
34#include <asm/uaccess.h>
35
36#include <asm/system.h>
37#include <asm/segment.h>
38#include <asm/io.h>
39#include <asm/pgtable.h>
40
41extern char _etext, _stext;
42
43int kstack_depth_to_print = 0x180;
44
45static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
46{
47 return p > (void *)tinfo && p < (void *)tinfo + THREAD_SIZE - 3;
48}
49
50void show_trace(struct task_struct *task, unsigned long *stack)
51{
52 struct thread_info *context;
53 unsigned long addr;
54
55 context = (struct thread_info *)
56 ((unsigned long)stack & (~(THREAD_SIZE - 1)));
57
58 while (valid_stack_ptr(context, stack)) {
59 addr = *stack++;
60 if (__kernel_text_address(addr)) {
61 printk(" [<%08lx>]", addr);
62 print_symbol(" %s", addr);
63 printk("\n");
64 }
65 }
66 printk(" =======================\n");
67}
68
69/* displays a short stack trace */
70void show_stack(struct task_struct *task, unsigned long *esp)
71{
72 unsigned long addr, *stack;
73 int i;
74
75 if (esp == NULL)
76 esp = (unsigned long *)&esp;
77
78 stack = esp;
79
80 printk("Stack dump [0x%08lx]:\n", (unsigned long)esp);
81 for (i = 0; i < kstack_depth_to_print; i++) {
82 if (kstack_end(stack))
83 break;
84 if (__get_user(addr, stack)) {
85 /* This message matches "failing address" marked
86 s390 in ksymoops, so lines containing it will
87 not be filtered out by ksymoops. */
88 printk("Failing address 0x%lx\n", (unsigned long)stack);
89 break;
90 }
91 stack++;
92
93 printk("sp + %02d: 0x%08lx\n", i * 4, addr);
94 }
95 printk("\n");
96
97 show_trace(task, esp);
98
99 return;
100}
101
102void show_trace_task(struct task_struct *tsk)
103{
104 /*
105 * TODO: SysRq-T trace dump...
106 */
107}
108
109/*
110 * The architecture-independent backtrace generator
111 */
112void dump_stack(void)
113{
114 unsigned long stack;
115
116 show_stack(current, &stack);
117}
Richard Weinberger01c4d332012-03-02 01:55:15 +0100118EXPORT_SYMBOL(dump_stack);
Jonas Bonn769a8a92011-06-04 22:35:30 +0300119
120void show_registers(struct pt_regs *regs)
121{
122 int i;
123 int in_kernel = 1;
124 unsigned long esp;
125
126 esp = (unsigned long)(&regs->sp);
127 if (user_mode(regs))
128 in_kernel = 0;
129
130 printk("CPU #: %d\n"
131 " PC: %08lx SR: %08lx SP: %08lx\n",
132 smp_processor_id(), regs->pc, regs->sr, regs->sp);
133 printk("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
134 0L, regs->gpr[1], regs->gpr[2], regs->gpr[3]);
135 printk("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
136 regs->gpr[4], regs->gpr[5], regs->gpr[6], regs->gpr[7]);
137 printk("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
138 regs->gpr[8], regs->gpr[9], regs->gpr[10], regs->gpr[11]);
139 printk("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
140 regs->gpr[12], regs->gpr[13], regs->gpr[14], regs->gpr[15]);
141 printk("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
142 regs->gpr[16], regs->gpr[17], regs->gpr[18], regs->gpr[19]);
143 printk("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
144 regs->gpr[20], regs->gpr[21], regs->gpr[22], regs->gpr[23]);
145 printk("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
146 regs->gpr[24], regs->gpr[25], regs->gpr[26], regs->gpr[27]);
147 printk("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
148 regs->gpr[28], regs->gpr[29], regs->gpr[30], regs->gpr[31]);
Jonas Bonn6cbe5e92012-03-02 10:05:24 +0100149 printk(" RES: %08lx oGPR11: %08lx\n",
150 regs->gpr[11], regs->orig_gpr11);
Jonas Bonn769a8a92011-06-04 22:35:30 +0300151
152 printk("Process %s (pid: %d, stackpage=%08lx)\n",
153 current->comm, current->pid, (unsigned long)current);
154 /*
155 * When in-kernel, we also print out the stack and code at the
156 * time of the fault..
157 */
158 if (in_kernel) {
159
160 printk("\nStack: ");
161 show_stack(NULL, (unsigned long *)esp);
162
163 printk("\nCode: ");
164 if (regs->pc < PAGE_OFFSET)
165 goto bad;
166
167 for (i = -24; i < 24; i++) {
168 unsigned char c;
169 if (__get_user(c, &((unsigned char *)regs->pc)[i])) {
170bad:
171 printk(" Bad PC value.");
172 break;
173 }
174
175 if (i == 0)
176 printk("(%02x) ", c);
177 else
178 printk("%02x ", c);
179 }
180 }
181 printk("\n");
182}
183
184void nommu_dump_state(struct pt_regs *regs,
185 unsigned long ea, unsigned long vector)
186{
187 int i;
188 unsigned long addr, stack = regs->sp;
189
190 printk("\n\r[nommu_dump_state] :: ea %lx, vector %lx\n\r", ea, vector);
191
192 printk("CPU #: %d\n"
193 " PC: %08lx SR: %08lx SP: %08lx\n",
194 0, regs->pc, regs->sr, regs->sp);
195 printk("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
196 0L, regs->gpr[1], regs->gpr[2], regs->gpr[3]);
197 printk("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
198 regs->gpr[4], regs->gpr[5], regs->gpr[6], regs->gpr[7]);
199 printk("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
200 regs->gpr[8], regs->gpr[9], regs->gpr[10], regs->gpr[11]);
201 printk("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
202 regs->gpr[12], regs->gpr[13], regs->gpr[14], regs->gpr[15]);
203 printk("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
204 regs->gpr[16], regs->gpr[17], regs->gpr[18], regs->gpr[19]);
205 printk("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
206 regs->gpr[20], regs->gpr[21], regs->gpr[22], regs->gpr[23]);
207 printk("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
208 regs->gpr[24], regs->gpr[25], regs->gpr[26], regs->gpr[27]);
209 printk("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
210 regs->gpr[28], regs->gpr[29], regs->gpr[30], regs->gpr[31]);
Jonas Bonn6cbe5e92012-03-02 10:05:24 +0100211 printk(" RES: %08lx oGPR11: %08lx\n",
212 regs->gpr[11], regs->orig_gpr11);
Jonas Bonn769a8a92011-06-04 22:35:30 +0300213
214 printk("Process %s (pid: %d, stackpage=%08lx)\n",
215 ((struct task_struct *)(__pa(current)))->comm,
216 ((struct task_struct *)(__pa(current)))->pid,
217 (unsigned long)current);
218
219 printk("\nStack: ");
220 printk("Stack dump [0x%08lx]:\n", (unsigned long)stack);
221 for (i = 0; i < kstack_depth_to_print; i++) {
222 if (((long)stack & (THREAD_SIZE - 1)) == 0)
223 break;
224 stack++;
225
226 printk("%lx :: sp + %02d: 0x%08lx\n", stack, i * 4,
227 *((unsigned long *)(__pa(stack))));
228 }
229 printk("\n");
230
231 printk("Call Trace: ");
232 i = 1;
233 while (((long)stack & (THREAD_SIZE - 1)) != 0) {
234 addr = *((unsigned long *)__pa(stack));
235 stack++;
236
237 if (kernel_text_address(addr)) {
238 if (i && ((i % 6) == 0))
239 printk("\n ");
240 printk(" [<%08lx>]", addr);
241 i++;
242 }
243 }
244 printk("\n");
245
246 printk("\nCode: ");
247
248 for (i = -24; i < 24; i++) {
249 unsigned char c;
250 c = ((unsigned char *)(__pa(regs->pc)))[i];
251
252 if (i == 0)
253 printk("(%02x) ", c);
254 else
255 printk("%02x ", c);
256 }
257 printk("\n");
258}
259
260/* This is normally the 'Oops' routine */
261void die(const char *str, struct pt_regs *regs, long err)
262{
263
264 console_verbose();
265 printk("\n%s#: %04lx\n", str, err & 0xffff);
266 show_registers(regs);
267#ifdef CONFIG_JUMP_UPON_UNHANDLED_EXCEPTION
268 printk("\n\nUNHANDLED_EXCEPTION: entering infinite loop\n");
269
270 /* shut down interrupts */
271 local_irq_disable();
272
273 __asm__ __volatile__("l.nop 1");
274 do {} while (1);
275#endif
276 do_exit(SIGSEGV);
277}
278
279/* This is normally the 'Oops' routine */
280void die_if_kernel(const char *str, struct pt_regs *regs, long err)
281{
282 if (user_mode(regs))
283 return;
284
285 die(str, regs, err);
286}
287
288void unhandled_exception(struct pt_regs *regs, int ea, int vector)
289{
290 printk("Unable to handle exception at EA =0x%x, vector 0x%x",
291 ea, vector);
292 die("Oops", regs, 9);
293}
294
295void __init trap_init(void)
296{
297 /* Nothing needs to be done */
298}
299
300asmlinkage void do_trap(struct pt_regs *regs, unsigned long address)
301{
302 siginfo_t info;
303 memset(&info, 0, sizeof(info));
304 info.si_signo = SIGTRAP;
305 info.si_code = TRAP_TRACE;
306 info.si_addr = (void *)address;
307 force_sig_info(SIGTRAP, &info, current);
308
309 regs->pc += 4;
310}
311
312asmlinkage void do_unaligned_access(struct pt_regs *regs, unsigned long address)
313{
314 siginfo_t info;
315
316 if (user_mode(regs)) {
317 /* Send a SIGSEGV */
318 info.si_signo = SIGSEGV;
319 info.si_errno = 0;
320 /* info.si_code has been set above */
321 info.si_addr = (void *)address;
322 force_sig_info(SIGSEGV, &info, current);
323 } else {
324 printk("KERNEL: Unaligned Access 0x%.8lx\n", address);
325 show_registers(regs);
326 die("Die:", regs, address);
327 }
328
329}
330
331asmlinkage void do_bus_fault(struct pt_regs *regs, unsigned long address)
332{
333 siginfo_t info;
334
335 if (user_mode(regs)) {
336 /* Send a SIGBUS */
337 info.si_signo = SIGBUS;
338 info.si_errno = 0;
339 info.si_code = BUS_ADRERR;
340 info.si_addr = (void *)address;
341 force_sig_info(SIGBUS, &info, current);
342 } else { /* Kernel mode */
343 printk("KERNEL: Bus error (SIGBUS) 0x%.8lx\n", address);
344 show_registers(regs);
345 die("Die:", regs, address);
346 }
347}
348
349asmlinkage void do_illegal_instruction(struct pt_regs *regs,
350 unsigned long address)
351{
352 siginfo_t info;
353
354 if (user_mode(regs)) {
355 /* Send a SIGILL */
356 info.si_signo = SIGILL;
357 info.si_errno = 0;
358 info.si_code = ILL_ILLOPC;
359 info.si_addr = (void *)address;
360 force_sig_info(SIGBUS, &info, current);
361 } else { /* Kernel mode */
362 printk("KERNEL: Illegal instruction (SIGILL) 0x%.8lx\n",
363 address);
364 show_registers(regs);
365 die("Die:", regs, address);
366 }
367}