]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/xtensa/kernel/traps.c
xtensa: enable lockdep support
[karo-tx-linux.git] / arch / xtensa / kernel / traps.c
1 /*
2  * arch/xtensa/kernel/traps.c
3  *
4  * Exception handling.
5  *
6  * Derived from code with the following copyrights:
7  * Copyright (C) 1994 - 1999 by Ralf Baechle
8  * Modified for R3000 by Paul M. Antoine, 1995, 1996
9  * Complete output from die() by Ulf Carlsson, 1998
10  * Copyright (C) 1999 Silicon Graphics, Inc.
11  *
12  * Essentially rewritten for the Xtensa architecture port.
13  *
14  * Copyright (C) 2001 - 2013 Tensilica Inc.
15  *
16  * Joe Taylor   <joe@tensilica.com, joetylr@yahoo.com>
17  * Chris Zankel <chris@zankel.net>
18  * Marc Gauthier<marc@tensilica.com, marc@alumni.uwaterloo.ca>
19  * Kevin Chea
20  *
21  * This file is subject to the terms and conditions of the GNU General Public
22  * License.  See the file "COPYING" in the main directory of this archive
23  * for more details.
24  */
25
26 #include <linux/kernel.h>
27 #include <linux/sched.h>
28 #include <linux/init.h>
29 #include <linux/module.h>
30 #include <linux/stringify.h>
31 #include <linux/kallsyms.h>
32 #include <linux/delay.h>
33 #include <linux/hardirq.h>
34
35 #include <asm/stacktrace.h>
36 #include <asm/ptrace.h>
37 #include <asm/timex.h>
38 #include <asm/uaccess.h>
39 #include <asm/pgtable.h>
40 #include <asm/processor.h>
41 #include <asm/traps.h>
42
43 #ifdef CONFIG_KGDB
44 extern int gdb_enter;
45 extern int return_from_debug_flag;
46 #endif
47
48 /*
49  * Machine specific interrupt handlers
50  */
51
52 extern void kernel_exception(void);
53 extern void user_exception(void);
54
55 extern void fast_syscall_kernel(void);
56 extern void fast_syscall_user(void);
57 extern void fast_alloca(void);
58 extern void fast_unaligned(void);
59 extern void fast_second_level_miss(void);
60 extern void fast_store_prohibited(void);
61 extern void fast_coprocessor(void);
62
63 extern void do_illegal_instruction (struct pt_regs*);
64 extern void do_interrupt (struct pt_regs*);
65 extern void do_unaligned_user (struct pt_regs*);
66 extern void do_multihit (struct pt_regs*, unsigned long);
67 extern void do_page_fault (struct pt_regs*, unsigned long);
68 extern void do_debug (struct pt_regs*);
69 extern void system_call (struct pt_regs*);
70
71 /*
72  * The vector table must be preceded by a save area (which
73  * implies it must be in RAM, unless one places RAM immediately
74  * before a ROM and puts the vector at the start of the ROM (!))
75  */
76
77 #define KRNL            0x01
78 #define USER            0x02
79
80 #define COPROCESSOR(x)                                                  \
81 { EXCCAUSE_COPROCESSOR ## x ## _DISABLED, USER, fast_coprocessor }
82
83 typedef struct {
84         int cause;
85         int fast;
86         void* handler;
87 } dispatch_init_table_t;
88
89 static dispatch_init_table_t __initdata dispatch_init_table[] = {
90
91 { EXCCAUSE_ILLEGAL_INSTRUCTION, 0,         do_illegal_instruction},
92 { EXCCAUSE_SYSTEM_CALL,         KRNL,      fast_syscall_kernel },
93 { EXCCAUSE_SYSTEM_CALL,         USER,      fast_syscall_user },
94 { EXCCAUSE_SYSTEM_CALL,         0,         system_call },
95 /* EXCCAUSE_INSTRUCTION_FETCH unhandled */
96 /* EXCCAUSE_LOAD_STORE_ERROR unhandled*/
97 { EXCCAUSE_LEVEL1_INTERRUPT,    0,         do_interrupt },
98 { EXCCAUSE_ALLOCA,              USER|KRNL, fast_alloca },
99 /* EXCCAUSE_INTEGER_DIVIDE_BY_ZERO unhandled */
100 /* EXCCAUSE_PRIVILEGED unhandled */
101 #if XCHAL_UNALIGNED_LOAD_EXCEPTION || XCHAL_UNALIGNED_STORE_EXCEPTION
102 #ifdef CONFIG_XTENSA_UNALIGNED_USER
103 { EXCCAUSE_UNALIGNED,           USER,      fast_unaligned },
104 #else
105 { EXCCAUSE_UNALIGNED,           0,         do_unaligned_user },
106 #endif
107 { EXCCAUSE_UNALIGNED,           KRNL,      fast_unaligned },
108 #endif
109 #ifdef CONFIG_MMU
110 { EXCCAUSE_ITLB_MISS,           0,         do_page_fault },
111 { EXCCAUSE_ITLB_MISS,           USER|KRNL, fast_second_level_miss},
112 { EXCCAUSE_ITLB_MULTIHIT,               0,         do_multihit },
113 { EXCCAUSE_ITLB_PRIVILEGE,      0,         do_page_fault },
114 /* EXCCAUSE_SIZE_RESTRICTION unhandled */
115 { EXCCAUSE_FETCH_CACHE_ATTRIBUTE,       0,         do_page_fault },
116 { EXCCAUSE_DTLB_MISS,           USER|KRNL, fast_second_level_miss},
117 { EXCCAUSE_DTLB_MISS,           0,         do_page_fault },
118 { EXCCAUSE_DTLB_MULTIHIT,               0,         do_multihit },
119 { EXCCAUSE_DTLB_PRIVILEGE,      0,         do_page_fault },
120 /* EXCCAUSE_DTLB_SIZE_RESTRICTION unhandled */
121 { EXCCAUSE_STORE_CACHE_ATTRIBUTE,       USER|KRNL, fast_store_prohibited },
122 { EXCCAUSE_STORE_CACHE_ATTRIBUTE,       0,         do_page_fault },
123 { EXCCAUSE_LOAD_CACHE_ATTRIBUTE,        0,         do_page_fault },
124 #endif /* CONFIG_MMU */
125 /* XCCHAL_EXCCAUSE_FLOATING_POINT unhandled */
126 #if XTENSA_HAVE_COPROCESSOR(0)
127 COPROCESSOR(0),
128 #endif
129 #if XTENSA_HAVE_COPROCESSOR(1)
130 COPROCESSOR(1),
131 #endif
132 #if XTENSA_HAVE_COPROCESSOR(2)
133 COPROCESSOR(2),
134 #endif
135 #if XTENSA_HAVE_COPROCESSOR(3)
136 COPROCESSOR(3),
137 #endif
138 #if XTENSA_HAVE_COPROCESSOR(4)
139 COPROCESSOR(4),
140 #endif
141 #if XTENSA_HAVE_COPROCESSOR(5)
142 COPROCESSOR(5),
143 #endif
144 #if XTENSA_HAVE_COPROCESSOR(6)
145 COPROCESSOR(6),
146 #endif
147 #if XTENSA_HAVE_COPROCESSOR(7)
148 COPROCESSOR(7),
149 #endif
150 { EXCCAUSE_MAPPED_DEBUG,                0,              do_debug },
151 { -1, -1, 0 }
152
153 };
154
155 /* The exception table <exc_table> serves two functions:
156  * 1. it contains three dispatch tables (fast_user, fast_kernel, default-c)
157  * 2. it is a temporary memory buffer for the exception handlers.
158  */
159
160 unsigned long exc_table[EXC_TABLE_SIZE/4];
161
162 void die(const char*, struct pt_regs*, long);
163
164 static inline void
165 __die_if_kernel(const char *str, struct pt_regs *regs, long err)
166 {
167         if (!user_mode(regs))
168                 die(str, regs, err);
169 }
170
171 /*
172  * Unhandled Exceptions. Kill user task or panic if in kernel space.
173  */
174
175 void do_unhandled(struct pt_regs *regs, unsigned long exccause)
176 {
177         __die_if_kernel("Caught unhandled exception - should not happen",
178                         regs, SIGKILL);
179
180         /* If in user mode, send SIGILL signal to current process */
181         printk("Caught unhandled exception in '%s' "
182                "(pid = %d, pc = %#010lx) - should not happen\n"
183                "\tEXCCAUSE is %ld\n",
184                current->comm, task_pid_nr(current), regs->pc, exccause);
185         force_sig(SIGILL, current);
186 }
187
188 /*
189  * Multi-hit exception. This if fatal!
190  */
191
192 void do_multihit(struct pt_regs *regs, unsigned long exccause)
193 {
194         die("Caught multihit exception", regs, SIGKILL);
195 }
196
197 /*
198  * IRQ handler.
199  * PS.INTLEVEL is the current IRQ priority level.
200  */
201
202 extern void do_IRQ(int, struct pt_regs *);
203
204 void do_interrupt(struct pt_regs *regs)
205 {
206         static const unsigned int_level_mask[] = {
207                 0,
208                 XCHAL_INTLEVEL1_MASK,
209                 XCHAL_INTLEVEL2_MASK,
210                 XCHAL_INTLEVEL3_MASK,
211                 XCHAL_INTLEVEL4_MASK,
212                 XCHAL_INTLEVEL5_MASK,
213                 XCHAL_INTLEVEL6_MASK,
214                 XCHAL_INTLEVEL7_MASK,
215         };
216         unsigned level = get_sr(ps) & PS_INTLEVEL_MASK;
217
218         if (WARN_ON_ONCE(level >= ARRAY_SIZE(int_level_mask)))
219                 return;
220
221         for (;;) {
222                 unsigned intread = get_sr(interrupt);
223                 unsigned intenable = get_sr(intenable);
224                 unsigned int_at_level = intread & intenable &
225                         int_level_mask[level];
226
227                 if (!int_at_level)
228                         return;
229
230                 /*
231                  * Clear the interrupt before processing, in case it's
232                  *  edge-triggered or software-generated
233                  */
234                 while (int_at_level) {
235                         unsigned i = __ffs(int_at_level);
236                         unsigned mask = 1 << i;
237
238                         int_at_level ^= mask;
239                         set_sr(mask, intclear);
240                         do_IRQ(i, regs);
241                 }
242         }
243 }
244
245 /*
246  * Illegal instruction. Fatal if in kernel space.
247  */
248
249 void
250 do_illegal_instruction(struct pt_regs *regs)
251 {
252         __die_if_kernel("Illegal instruction in kernel", regs, SIGKILL);
253
254         /* If in user mode, send SIGILL signal to current process. */
255
256         printk("Illegal Instruction in '%s' (pid = %d, pc = %#010lx)\n",
257             current->comm, task_pid_nr(current), regs->pc);
258         force_sig(SIGILL, current);
259 }
260
261
262 /*
263  * Handle unaligned memory accesses from user space. Kill task.
264  *
265  * If CONFIG_UNALIGNED_USER is not set, we don't allow unaligned memory
266  * accesses causes from user space.
267  */
268
269 #if XCHAL_UNALIGNED_LOAD_EXCEPTION || XCHAL_UNALIGNED_STORE_EXCEPTION
270 #ifndef CONFIG_XTENSA_UNALIGNED_USER
271 void
272 do_unaligned_user (struct pt_regs *regs)
273 {
274         siginfo_t info;
275
276         __die_if_kernel("Unhandled unaligned exception in kernel",
277                         regs, SIGKILL);
278
279         current->thread.bad_vaddr = regs->excvaddr;
280         current->thread.error_code = -3;
281         printk("Unaligned memory access to %08lx in '%s' "
282                "(pid = %d, pc = %#010lx)\n",
283                regs->excvaddr, current->comm, task_pid_nr(current), regs->pc);
284         info.si_signo = SIGBUS;
285         info.si_errno = 0;
286         info.si_code = BUS_ADRALN;
287         info.si_addr = (void *) regs->excvaddr;
288         force_sig_info(SIGSEGV, &info, current);
289
290 }
291 #endif
292 #endif
293
294 void
295 do_debug(struct pt_regs *regs)
296 {
297 #ifdef CONFIG_KGDB
298         /* If remote debugging is configured AND enabled, we give control to
299          * kgdb.  Otherwise, we fall through, perhaps giving control to the
300          * native debugger.
301          */
302
303         if (gdb_enter) {
304                 extern void gdb_handle_exception(struct pt_regs *);
305                 gdb_handle_exception(regs);
306                 return_from_debug_flag = 1;
307                 return;
308         }
309 #endif
310
311         __die_if_kernel("Breakpoint in kernel", regs, SIGKILL);
312
313         /* If in user mode, send SIGTRAP signal to current process */
314
315         force_sig(SIGTRAP, current);
316 }
317
318
319 /* Set exception C handler - for temporary use when probing exceptions */
320
321 void * __init trap_set_handler(int cause, void *handler)
322 {
323         unsigned long *entry = &exc_table[EXC_TABLE_DEFAULT / 4 + cause];
324         void *previous = (void *)*entry;
325         *entry = (unsigned long)handler;
326         return previous;
327 }
328
329
330 /*
331  * Initialize dispatch tables.
332  *
333  * The exception vectors are stored compressed the __init section in the
334  * dispatch_init_table. This function initializes the following three tables
335  * from that compressed table:
336  * - fast user          first dispatch table for user exceptions
337  * - fast kernel        first dispatch table for kernel exceptions
338  * - default C-handler  C-handler called by the default fast handler.
339  *
340  * See vectors.S for more details.
341  */
342
343 #define set_handler(idx,handler) (exc_table[idx] = (unsigned long) (handler))
344
345 void __init trap_init(void)
346 {
347         int i;
348
349         /* Setup default vectors. */
350
351         for(i = 0; i < 64; i++) {
352                 set_handler(EXC_TABLE_FAST_USER/4   + i, user_exception);
353                 set_handler(EXC_TABLE_FAST_KERNEL/4 + i, kernel_exception);
354                 set_handler(EXC_TABLE_DEFAULT/4 + i, do_unhandled);
355         }
356
357         /* Setup specific handlers. */
358
359         for(i = 0; dispatch_init_table[i].cause >= 0; i++) {
360
361                 int fast = dispatch_init_table[i].fast;
362                 int cause = dispatch_init_table[i].cause;
363                 void *handler = dispatch_init_table[i].handler;
364
365                 if (fast == 0)
366                         set_handler (EXC_TABLE_DEFAULT/4 + cause, handler);
367                 if (fast && fast & USER)
368                         set_handler (EXC_TABLE_FAST_USER/4 + cause, handler);
369                 if (fast && fast & KRNL)
370                         set_handler (EXC_TABLE_FAST_KERNEL/4 + cause, handler);
371         }
372
373         /* Initialize EXCSAVE_1 to hold the address of the exception table. */
374
375         i = (unsigned long)exc_table;
376         __asm__ __volatile__("wsr  %0, excsave1\n" : : "a" (i));
377 }
378
379 /*
380  * This function dumps the current valid window frame and other base registers.
381  */
382
383 void show_regs(struct pt_regs * regs)
384 {
385         int i, wmask;
386
387         wmask = regs->wmask & ~1;
388
389         for (i = 0; i < 16; i++) {
390                 if ((i % 8) == 0)
391                         printk(KERN_INFO "a%02d:", i);
392                 printk(KERN_CONT " %08lx", regs->areg[i]);
393         }
394         printk(KERN_CONT "\n");
395
396         printk("pc: %08lx, ps: %08lx, depc: %08lx, excvaddr: %08lx\n",
397                regs->pc, regs->ps, regs->depc, regs->excvaddr);
398         printk("lbeg: %08lx, lend: %08lx lcount: %08lx, sar: %08lx\n",
399                regs->lbeg, regs->lend, regs->lcount, regs->sar);
400         if (user_mode(regs))
401                 printk("wb: %08lx, ws: %08lx, wmask: %08lx, syscall: %ld\n",
402                        regs->windowbase, regs->windowstart, regs->wmask,
403                        regs->syscall);
404 }
405
406 static int show_trace_cb(struct stackframe *frame, void *data)
407 {
408         if (kernel_text_address(frame->pc)) {
409                 printk(" [<%08lx>] ", frame->pc);
410                 print_symbol("%s\n", frame->pc);
411         }
412         return 0;
413 }
414
415 void show_trace(struct task_struct *task, unsigned long *sp)
416 {
417         if (!sp)
418                 sp = stack_pointer(task);
419
420         printk("Call Trace:");
421 #ifdef CONFIG_KALLSYMS
422         printk("\n");
423 #endif
424         walk_stackframe(sp, show_trace_cb, NULL);
425         printk("\n");
426 }
427
428 /*
429  * This routine abuses get_user()/put_user() to reference pointers
430  * with at least a bit of error checking ...
431  */
432
433 static int kstack_depth_to_print = 24;
434
435 void show_stack(struct task_struct *task, unsigned long *sp)
436 {
437         int i = 0;
438         unsigned long *stack;
439
440         if (!sp)
441                 sp = stack_pointer(task);
442         stack = sp;
443
444         printk("\nStack: ");
445
446         for (i = 0; i < kstack_depth_to_print; i++) {
447                 if (kstack_end(sp))
448                         break;
449                 if (i && ((i % 8) == 0))
450                         printk("\n       ");
451                 printk("%08lx ", *sp++);
452         }
453         printk("\n");
454         show_trace(task, stack);
455 }
456
457 void dump_stack(void)
458 {
459         show_stack(current, NULL);
460 }
461
462 EXPORT_SYMBOL(dump_stack);
463
464
465 void show_code(unsigned int *pc)
466 {
467         long i;
468
469         printk("\nCode:");
470
471         for(i = -3 ; i < 6 ; i++) {
472                 unsigned long insn;
473                 if (__get_user(insn, pc + i)) {
474                         printk(" (Bad address in pc)\n");
475                         break;
476                 }
477                 printk("%c%08lx%c",(i?' ':'<'),insn,(i?' ':'>'));
478         }
479 }
480
481 DEFINE_SPINLOCK(die_lock);
482
483 void die(const char * str, struct pt_regs * regs, long err)
484 {
485         static int die_counter;
486         int nl = 0;
487
488         console_verbose();
489         spin_lock_irq(&die_lock);
490
491         printk("%s: sig: %ld [#%d]\n", str, err, ++die_counter);
492 #ifdef CONFIG_PREEMPT
493         printk("PREEMPT ");
494         nl = 1;
495 #endif
496         if (nl)
497                 printk("\n");
498         show_regs(regs);
499         if (!user_mode(regs))
500                 show_stack(NULL, (unsigned long*)regs->areg[1]);
501
502         add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
503         spin_unlock_irq(&die_lock);
504
505         if (in_interrupt())
506                 panic("Fatal exception in interrupt");
507
508         if (panic_on_oops)
509                 panic("Fatal exception");
510
511         do_exit(err);
512 }