2 * arch/xtensa/kernel/traps.c
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.
12 * Essentially rewritten for the Xtensa architecture port.
14 * Copyright (C) 2001 - 2013 Tensilica Inc.
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>
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
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>
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>
45 extern int return_from_debug_flag
;
49 * Machine specific interrupt handlers
52 extern void kernel_exception(void);
53 extern void user_exception(void);
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);
63 extern void do_illegal_instruction (struct pt_regs
*);
64 extern void do_interrupt (struct pt_regs
*);
65 extern void do_nmi(struct pt_regs
*);
66 extern void do_unaligned_user (struct pt_regs
*);
67 extern void do_multihit (struct pt_regs
*, unsigned long);
68 extern void do_page_fault (struct pt_regs
*, unsigned long);
69 extern void do_debug (struct pt_regs
*);
70 extern void system_call (struct pt_regs
*);
73 * The vector table must be preceded by a save area (which
74 * implies it must be in RAM, unless one places RAM immediately
75 * before a ROM and puts the vector at the start of the ROM (!))
81 #define COPROCESSOR(x) \
82 { EXCCAUSE_COPROCESSOR ## x ## _DISABLED, USER, fast_coprocessor }
88 } dispatch_init_table_t
;
90 static dispatch_init_table_t __initdata dispatch_init_table
[] = {
92 { EXCCAUSE_ILLEGAL_INSTRUCTION
, 0, do_illegal_instruction
},
93 { EXCCAUSE_SYSTEM_CALL
, KRNL
, fast_syscall_kernel
},
94 { EXCCAUSE_SYSTEM_CALL
, USER
, fast_syscall_user
},
95 { EXCCAUSE_SYSTEM_CALL
, 0, system_call
},
96 /* EXCCAUSE_INSTRUCTION_FETCH unhandled */
97 /* EXCCAUSE_LOAD_STORE_ERROR unhandled*/
98 { EXCCAUSE_LEVEL1_INTERRUPT
, 0, do_interrupt
},
99 { EXCCAUSE_ALLOCA
, USER
|KRNL
, fast_alloca
},
100 /* EXCCAUSE_INTEGER_DIVIDE_BY_ZERO unhandled */
101 /* EXCCAUSE_PRIVILEGED unhandled */
102 #if XCHAL_UNALIGNED_LOAD_EXCEPTION || XCHAL_UNALIGNED_STORE_EXCEPTION
103 #ifdef CONFIG_XTENSA_UNALIGNED_USER
104 { EXCCAUSE_UNALIGNED
, USER
, fast_unaligned
},
106 { EXCCAUSE_UNALIGNED
, 0, do_unaligned_user
},
107 { EXCCAUSE_UNALIGNED
, KRNL
, fast_unaligned
},
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)
129 #if XTENSA_HAVE_COPROCESSOR(1)
132 #if XTENSA_HAVE_COPROCESSOR(2)
135 #if XTENSA_HAVE_COPROCESSOR(3)
138 #if XTENSA_HAVE_COPROCESSOR(4)
141 #if XTENSA_HAVE_COPROCESSOR(5)
144 #if XTENSA_HAVE_COPROCESSOR(6)
147 #if XTENSA_HAVE_COPROCESSOR(7)
151 { EXCCAUSE_MAPPED_NMI
, 0, do_nmi
},
153 { EXCCAUSE_MAPPED_DEBUG
, 0, do_debug
},
158 /* The exception table <exc_table> serves two functions:
159 * 1. it contains three dispatch tables (fast_user, fast_kernel, default-c)
160 * 2. it is a temporary memory buffer for the exception handlers.
163 DEFINE_PER_CPU(unsigned long, exc_table
[EXC_TABLE_SIZE
/4]);
165 void die(const char*, struct pt_regs
*, long);
168 __die_if_kernel(const char *str
, struct pt_regs
*regs
, long err
)
170 if (!user_mode(regs
))
175 * Unhandled Exceptions. Kill user task or panic if in kernel space.
178 void do_unhandled(struct pt_regs
*regs
, unsigned long exccause
)
180 __die_if_kernel("Caught unhandled exception - should not happen",
183 /* If in user mode, send SIGILL signal to current process */
184 printk("Caught unhandled exception in '%s' "
185 "(pid = %d, pc = %#010lx) - should not happen\n"
186 "\tEXCCAUSE is %ld\n",
187 current
->comm
, task_pid_nr(current
), regs
->pc
, exccause
);
188 force_sig(SIGILL
, current
);
192 * Multi-hit exception. This if fatal!
195 void do_multihit(struct pt_regs
*regs
, unsigned long exccause
)
197 die("Caught multihit exception", regs
, SIGKILL
);
204 extern void do_IRQ(int, struct pt_regs
*);
208 irqreturn_t
xtensa_pmu_irq_handler(int irq
, void *dev_id
);
210 DEFINE_PER_CPU(unsigned long, nmi_count
);
212 void do_nmi(struct pt_regs
*regs
)
214 struct pt_regs
*old_regs
;
216 if ((regs
->ps
& PS_INTLEVEL_MASK
) < LOCKLEVEL
)
217 trace_hardirqs_off();
219 old_regs
= set_irq_regs(regs
);
221 ++*this_cpu_ptr(&nmi_count
);
222 xtensa_pmu_irq_handler(0, NULL
);
224 set_irq_regs(old_regs
);
228 void do_interrupt(struct pt_regs
*regs
)
230 static const unsigned int_level_mask
[] = {
232 XCHAL_INTLEVEL1_MASK
,
233 XCHAL_INTLEVEL2_MASK
,
234 XCHAL_INTLEVEL3_MASK
,
235 XCHAL_INTLEVEL4_MASK
,
236 XCHAL_INTLEVEL5_MASK
,
237 XCHAL_INTLEVEL6_MASK
,
238 XCHAL_INTLEVEL7_MASK
,
240 struct pt_regs
*old_regs
;
242 trace_hardirqs_off();
244 old_regs
= set_irq_regs(regs
);
248 unsigned intread
= get_sr(interrupt
);
249 unsigned intenable
= get_sr(intenable
);
250 unsigned int_at_level
= intread
& intenable
;
253 for (level
= LOCKLEVEL
; level
> 0; --level
) {
254 if (int_at_level
& int_level_mask
[level
]) {
255 int_at_level
&= int_level_mask
[level
];
263 do_IRQ(__ffs(int_at_level
), regs
);
267 set_irq_regs(old_regs
);
271 * Illegal instruction. Fatal if in kernel space.
275 do_illegal_instruction(struct pt_regs
*regs
)
277 __die_if_kernel("Illegal instruction in kernel", regs
, SIGKILL
);
279 /* If in user mode, send SIGILL signal to current process. */
281 printk("Illegal Instruction in '%s' (pid = %d, pc = %#010lx)\n",
282 current
->comm
, task_pid_nr(current
), regs
->pc
);
283 force_sig(SIGILL
, current
);
288 * Handle unaligned memory accesses from user space. Kill task.
290 * If CONFIG_UNALIGNED_USER is not set, we don't allow unaligned memory
291 * accesses causes from user space.
294 #if XCHAL_UNALIGNED_LOAD_EXCEPTION || XCHAL_UNALIGNED_STORE_EXCEPTION
296 do_unaligned_user (struct pt_regs
*regs
)
300 __die_if_kernel("Unhandled unaligned exception in kernel",
303 current
->thread
.bad_vaddr
= regs
->excvaddr
;
304 current
->thread
.error_code
= -3;
305 printk("Unaligned memory access to %08lx in '%s' "
306 "(pid = %d, pc = %#010lx)\n",
307 regs
->excvaddr
, current
->comm
, task_pid_nr(current
), regs
->pc
);
308 info
.si_signo
= SIGBUS
;
310 info
.si_code
= BUS_ADRALN
;
311 info
.si_addr
= (void *) regs
->excvaddr
;
312 force_sig_info(SIGSEGV
, &info
, current
);
318 do_debug(struct pt_regs
*regs
)
321 /* If remote debugging is configured AND enabled, we give control to
322 * kgdb. Otherwise, we fall through, perhaps giving control to the
327 extern void gdb_handle_exception(struct pt_regs
*);
328 gdb_handle_exception(regs
);
329 return_from_debug_flag
= 1;
334 __die_if_kernel("Breakpoint in kernel", regs
, SIGKILL
);
336 /* If in user mode, send SIGTRAP signal to current process */
338 force_sig(SIGTRAP
, current
);
342 static void set_handler(int idx
, void *handler
)
346 for_each_possible_cpu(cpu
)
347 per_cpu(exc_table
, cpu
)[idx
] = (unsigned long)handler
;
350 /* Set exception C handler - for temporary use when probing exceptions */
352 void * __init
trap_set_handler(int cause
, void *handler
)
354 void *previous
= (void *)per_cpu(exc_table
, 0)[
355 EXC_TABLE_DEFAULT
/ 4 + cause
];
356 set_handler(EXC_TABLE_DEFAULT
/ 4 + cause
, handler
);
361 static void trap_init_excsave(void)
363 unsigned long excsave1
= (unsigned long)this_cpu_ptr(exc_table
);
364 __asm__
__volatile__("wsr %0, excsave1\n" : : "a" (excsave1
));
368 * Initialize dispatch tables.
370 * The exception vectors are stored compressed the __init section in the
371 * dispatch_init_table. This function initializes the following three tables
372 * from that compressed table:
373 * - fast user first dispatch table for user exceptions
374 * - fast kernel first dispatch table for kernel exceptions
375 * - default C-handler C-handler called by the default fast handler.
377 * See vectors.S for more details.
380 void __init
trap_init(void)
384 /* Setup default vectors. */
386 for(i
= 0; i
< 64; i
++) {
387 set_handler(EXC_TABLE_FAST_USER
/4 + i
, user_exception
);
388 set_handler(EXC_TABLE_FAST_KERNEL
/4 + i
, kernel_exception
);
389 set_handler(EXC_TABLE_DEFAULT
/4 + i
, do_unhandled
);
392 /* Setup specific handlers. */
394 for(i
= 0; dispatch_init_table
[i
].cause
>= 0; i
++) {
396 int fast
= dispatch_init_table
[i
].fast
;
397 int cause
= dispatch_init_table
[i
].cause
;
398 void *handler
= dispatch_init_table
[i
].handler
;
401 set_handler (EXC_TABLE_DEFAULT
/4 + cause
, handler
);
402 if (fast
&& fast
& USER
)
403 set_handler (EXC_TABLE_FAST_USER
/4 + cause
, handler
);
404 if (fast
&& fast
& KRNL
)
405 set_handler (EXC_TABLE_FAST_KERNEL
/4 + cause
, handler
);
408 /* Initialize EXCSAVE_1 to hold the address of the exception table. */
413 void secondary_trap_init(void)
420 * This function dumps the current valid window frame and other base registers.
423 void show_regs(struct pt_regs
* regs
)
427 show_regs_print_info(KERN_DEFAULT
);
429 wmask
= regs
->wmask
& ~1;
431 for (i
= 0; i
< 16; i
++) {
433 printk(KERN_INFO
"a%02d:", i
);
434 printk(KERN_CONT
" %08lx", regs
->areg
[i
]);
436 printk(KERN_CONT
"\n");
438 printk("pc: %08lx, ps: %08lx, depc: %08lx, excvaddr: %08lx\n",
439 regs
->pc
, regs
->ps
, regs
->depc
, regs
->excvaddr
);
440 printk("lbeg: %08lx, lend: %08lx lcount: %08lx, sar: %08lx\n",
441 regs
->lbeg
, regs
->lend
, regs
->lcount
, regs
->sar
);
443 printk("wb: %08lx, ws: %08lx, wmask: %08lx, syscall: %ld\n",
444 regs
->windowbase
, regs
->windowstart
, regs
->wmask
,
448 static int show_trace_cb(struct stackframe
*frame
, void *data
)
450 if (kernel_text_address(frame
->pc
)) {
451 printk(" [<%08lx>] ", frame
->pc
);
452 print_symbol("%s\n", frame
->pc
);
457 void show_trace(struct task_struct
*task
, unsigned long *sp
)
460 sp
= stack_pointer(task
);
462 printk("Call Trace:");
463 #ifdef CONFIG_KALLSYMS
466 walk_stackframe(sp
, show_trace_cb
, NULL
);
471 * This routine abuses get_user()/put_user() to reference pointers
472 * with at least a bit of error checking ...
475 static int kstack_depth_to_print
= 24;
477 void show_stack(struct task_struct
*task
, unsigned long *sp
)
480 unsigned long *stack
;
483 sp
= stack_pointer(task
);
488 for (i
= 0; i
< kstack_depth_to_print
; i
++) {
491 if (i
&& ((i
% 8) == 0))
493 printk("%08lx ", *sp
++);
496 show_trace(task
, stack
);
499 void show_code(unsigned int *pc
)
505 for(i
= -3 ; i
< 6 ; i
++) {
507 if (__get_user(insn
, pc
+ i
)) {
508 printk(" (Bad address in pc)\n");
511 printk("%c%08lx%c",(i
?' ':'<'),insn
,(i
?' ':'>'));
515 DEFINE_SPINLOCK(die_lock
);
517 void die(const char * str
, struct pt_regs
* regs
, long err
)
519 static int die_counter
;
523 spin_lock_irq(&die_lock
);
525 printk("%s: sig: %ld [#%d]\n", str
, err
, ++die_counter
);
526 #ifdef CONFIG_PREEMPT
533 if (!user_mode(regs
))
534 show_stack(NULL
, (unsigned long*)regs
->areg
[1]);
536 add_taint(TAINT_DIE
, LOCKDEP_NOW_UNRELIABLE
);
537 spin_unlock_irq(&die_lock
);
540 panic("Fatal exception in interrupt");
543 panic("Fatal exception");