xref: /linux/arch/xtensa/kernel/traps.c (revision cc34f2909d2fbc8f52d24b20f6cbedcdf477e049)
15a0015d6SChris Zankel /*
25a0015d6SChris Zankel  * arch/xtensa/kernel/traps.c
35a0015d6SChris Zankel  *
45a0015d6SChris Zankel  * Exception handling.
55a0015d6SChris Zankel  *
65a0015d6SChris Zankel  * Derived from code with the following copyrights:
75a0015d6SChris Zankel  * Copyright (C) 1994 - 1999 by Ralf Baechle
85a0015d6SChris Zankel  * Modified for R3000 by Paul M. Antoine, 1995, 1996
95a0015d6SChris Zankel  * Complete output from die() by Ulf Carlsson, 1998
105a0015d6SChris Zankel  * Copyright (C) 1999 Silicon Graphics, Inc.
115a0015d6SChris Zankel  *
125a0015d6SChris Zankel  * Essentially rewritten for the Xtensa architecture port.
135a0015d6SChris Zankel  *
143e4196a5SMax Filippov  * Copyright (C) 2001 - 2013 Tensilica Inc.
155a0015d6SChris Zankel  *
165a0015d6SChris Zankel  * Joe Taylor	<joe@tensilica.com, joetylr@yahoo.com>
175a0015d6SChris Zankel  * Chris Zankel	<chris@zankel.net>
185a0015d6SChris Zankel  * Marc Gauthier<marc@tensilica.com, marc@alumni.uwaterloo.ca>
195a0015d6SChris Zankel  * Kevin Chea
205a0015d6SChris Zankel  *
215a0015d6SChris Zankel  * This file is subject to the terms and conditions of the GNU General Public
225a0015d6SChris Zankel  * License.  See the file "COPYING" in the main directory of this archive
235a0015d6SChris Zankel  * for more details.
245a0015d6SChris Zankel  */
255a0015d6SChris Zankel 
265a0015d6SChris Zankel #include <linux/kernel.h>
273f07c014SIngo Molnar #include <linux/sched/signal.h>
28b17b0153SIngo Molnar #include <linux/sched/debug.h>
293f8c2452SIngo Molnar #include <linux/sched/task_stack.h>
305a0015d6SChris Zankel #include <linux/init.h>
315a0015d6SChris Zankel #include <linux/module.h>
325a0015d6SChris Zankel #include <linux/stringify.h>
335a0015d6SChris Zankel #include <linux/kallsyms.h>
345c888d53SNishanth Aravamudan #include <linux/delay.h>
355a891ed5SAlexey Dobriyan #include <linux/hardirq.h>
36c130d3beSMax Filippov #include <linux/ratelimit.h>
3765fddcfcSMike Rapoport #include <linux/pgtable.h>
385a0015d6SChris Zankel 
393e4196a5SMax Filippov #include <asm/stacktrace.h>
405a0015d6SChris Zankel #include <asm/ptrace.h>
415a0015d6SChris Zankel #include <asm/timex.h>
427c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
435a0015d6SChris Zankel #include <asm/processor.h>
442d6f82feSMax Filippov #include <asm/traps.h>
45c91e02bdSMax Filippov #include <asm/hw_breakpoint.h>
465a0015d6SChris Zankel 
475a0015d6SChris Zankel /*
485a0015d6SChris Zankel  * Machine specific interrupt handlers
495a0015d6SChris Zankel  */
505a0015d6SChris Zankel 
51db0d07faSMax Filippov static void do_illegal_instruction(struct pt_regs *regs);
52408b1d3cSMax Filippov static void do_div0(struct pt_regs *regs);
53db0d07faSMax Filippov static void do_interrupt(struct pt_regs *regs);
54db0d07faSMax Filippov #if XTENSA_FAKE_NMI
55db0d07faSMax Filippov static void do_nmi(struct pt_regs *regs);
56db0d07faSMax Filippov #endif
57f29cf776SMax Filippov #ifdef CONFIG_XTENSA_LOAD_STORE
58f29cf776SMax Filippov static void do_load_store(struct pt_regs *regs);
59f29cf776SMax Filippov #endif
60db0d07faSMax Filippov static void do_unaligned_user(struct pt_regs *regs);
61db0d07faSMax Filippov static void do_multihit(struct pt_regs *regs);
6211e969bcSMax Filippov #if XTENSA_HAVE_COPROCESSORS
6311e969bcSMax Filippov static void do_coprocessor(struct pt_regs *regs);
6411e969bcSMax Filippov #endif
65db0d07faSMax Filippov static void do_debug(struct pt_regs *regs);
665a0015d6SChris Zankel 
675a0015d6SChris Zankel /*
685a0015d6SChris Zankel  * The vector table must be preceded by a save area (which
695a0015d6SChris Zankel  * implies it must be in RAM, unless one places RAM immediately
705a0015d6SChris Zankel  * before a ROM and puts the vector at the start of the ROM (!))
715a0015d6SChris Zankel  */
725a0015d6SChris Zankel 
735a0015d6SChris Zankel #define KRNL		0x01
745a0015d6SChris Zankel #define USER		0x02
755a0015d6SChris Zankel 
765a0015d6SChris Zankel #define COPROCESSOR(x)							\
7711e969bcSMax Filippov { EXCCAUSE_COPROCESSOR ## x ## _DISABLED, USER|KRNL, fast_coprocessor },\
7811e969bcSMax Filippov { EXCCAUSE_COPROCESSOR ## x ## _DISABLED, 0, do_coprocessor }
795a0015d6SChris Zankel 
805a0015d6SChris Zankel typedef struct {
815a0015d6SChris Zankel 	int cause;
825a0015d6SChris Zankel 	int fast;
835a0015d6SChris Zankel 	void* handler;
845a0015d6SChris Zankel } dispatch_init_table_t;
855a0015d6SChris Zankel 
86b91dc336SChris Zankel static dispatch_init_table_t __initdata dispatch_init_table[] = {
875a0015d6SChris Zankel 
8809f8a6dbSMax Filippov #ifdef CONFIG_USER_ABI_CALL0_PROBE
8909f8a6dbSMax Filippov { EXCCAUSE_ILLEGAL_INSTRUCTION,	USER,	   fast_illegal_instruction_user },
9009f8a6dbSMax Filippov #endif
91173d6681SChris Zankel { EXCCAUSE_ILLEGAL_INSTRUCTION,	0,	   do_illegal_instruction},
92173d6681SChris Zankel { EXCCAUSE_SYSTEM_CALL,		USER,	   fast_syscall_user },
93173d6681SChris Zankel { EXCCAUSE_SYSTEM_CALL,		0,	   system_call },
94173d6681SChris Zankel /* EXCCAUSE_INSTRUCTION_FETCH unhandled */
95f29cf776SMax Filippov #ifdef CONFIG_XTENSA_LOAD_STORE
96f29cf776SMax Filippov { EXCCAUSE_LOAD_STORE_ERROR,	USER|KRNL, fast_load_store },
97f29cf776SMax Filippov { EXCCAUSE_LOAD_STORE_ERROR,	0,	   do_load_store },
98f29cf776SMax Filippov #endif
99173d6681SChris Zankel { EXCCAUSE_LEVEL1_INTERRUPT,	0,	   do_interrupt },
100da0a4e5cSMax Filippov #ifdef SUPPORT_WINDOWED
101173d6681SChris Zankel { EXCCAUSE_ALLOCA,		USER|KRNL, fast_alloca },
102da0a4e5cSMax Filippov #endif
103408b1d3cSMax Filippov { EXCCAUSE_INTEGER_DIVIDE_BY_ZERO, 0,	   do_div0 },
104173d6681SChris Zankel /* EXCCAUSE_PRIVILEGED unhandled */
1055a0015d6SChris Zankel #if XCHAL_UNALIGNED_LOAD_EXCEPTION || XCHAL_UNALIGNED_STORE_EXCEPTION
1064ded6282SMax Filippov #ifdef CONFIG_XTENSA_UNALIGNED_USER
107173d6681SChris Zankel { EXCCAUSE_UNALIGNED,		USER,	   fast_unaligned },
1085a0015d6SChris Zankel #endif
109173d6681SChris Zankel { EXCCAUSE_UNALIGNED,		KRNL,	   fast_unaligned },
1105a0015d6SChris Zankel #endif
1113522bcfeSMax Filippov { EXCCAUSE_UNALIGNED,		0,	   do_unaligned_user },
112e5083a63SJohannes Weiner #ifdef CONFIG_MMU
113173d6681SChris Zankel { EXCCAUSE_ITLB_MISS,			0,	   do_page_fault },
114173d6681SChris Zankel { EXCCAUSE_ITLB_MISS,			USER|KRNL, fast_second_level_miss},
115173d6681SChris Zankel { EXCCAUSE_DTLB_MISS,			USER|KRNL, fast_second_level_miss},
116173d6681SChris Zankel { EXCCAUSE_DTLB_MISS,			0,	   do_page_fault },
117a8f0c31fSMax Filippov { EXCCAUSE_STORE_CACHE_ATTRIBUTE,	USER|KRNL, fast_store_prohibited },
118a8f0c31fSMax Filippov #endif /* CONFIG_MMU */
119a8f0c31fSMax Filippov #ifdef CONFIG_PFAULT
120a8f0c31fSMax Filippov { EXCCAUSE_ITLB_MULTIHIT,		0,	   do_multihit },
121a8f0c31fSMax Filippov { EXCCAUSE_ITLB_PRIVILEGE,		0,	   do_page_fault },
122a8f0c31fSMax Filippov { EXCCAUSE_FETCH_CACHE_ATTRIBUTE,	0,	   do_page_fault },
123173d6681SChris Zankel { EXCCAUSE_DTLB_MULTIHIT,		0,	   do_multihit },
124173d6681SChris Zankel { EXCCAUSE_DTLB_PRIVILEGE,		0,	   do_page_fault },
125173d6681SChris Zankel { EXCCAUSE_STORE_CACHE_ATTRIBUTE,	0,	   do_page_fault },
126173d6681SChris Zankel { EXCCAUSE_LOAD_CACHE_ATTRIBUTE,	0,	   do_page_fault },
127a8f0c31fSMax Filippov #endif
1285a0015d6SChris Zankel /* XCCHAL_EXCCAUSE_FLOATING_POINT unhandled */
129c658eac6SChris Zankel #if XTENSA_HAVE_COPROCESSOR(0)
1305a0015d6SChris Zankel COPROCESSOR(0),
1315a0015d6SChris Zankel #endif
132c658eac6SChris Zankel #if XTENSA_HAVE_COPROCESSOR(1)
1335a0015d6SChris Zankel COPROCESSOR(1),
1345a0015d6SChris Zankel #endif
135c658eac6SChris Zankel #if XTENSA_HAVE_COPROCESSOR(2)
1365a0015d6SChris Zankel COPROCESSOR(2),
1375a0015d6SChris Zankel #endif
138c658eac6SChris Zankel #if XTENSA_HAVE_COPROCESSOR(3)
1395a0015d6SChris Zankel COPROCESSOR(3),
1405a0015d6SChris Zankel #endif
141c658eac6SChris Zankel #if XTENSA_HAVE_COPROCESSOR(4)
1425a0015d6SChris Zankel COPROCESSOR(4),
1435a0015d6SChris Zankel #endif
144c658eac6SChris Zankel #if XTENSA_HAVE_COPROCESSOR(5)
1455a0015d6SChris Zankel COPROCESSOR(5),
1465a0015d6SChris Zankel #endif
147c658eac6SChris Zankel #if XTENSA_HAVE_COPROCESSOR(6)
1485a0015d6SChris Zankel COPROCESSOR(6),
1495a0015d6SChris Zankel #endif
150c658eac6SChris Zankel #if XTENSA_HAVE_COPROCESSOR(7)
1515a0015d6SChris Zankel COPROCESSOR(7),
1525a0015d6SChris Zankel #endif
15338fef73cSMax Filippov #if XTENSA_FAKE_NMI
15438fef73cSMax Filippov { EXCCAUSE_MAPPED_NMI,			0,		do_nmi },
15538fef73cSMax Filippov #endif
1565a0015d6SChris Zankel { EXCCAUSE_MAPPED_DEBUG,		0,		do_debug },
1575a0015d6SChris Zankel { -1, -1, 0 }
1585a0015d6SChris Zankel 
1595a0015d6SChris Zankel };
1605a0015d6SChris Zankel 
1615a0015d6SChris Zankel /* The exception table <exc_table> serves two functions:
1625a0015d6SChris Zankel  * 1. it contains three dispatch tables (fast_user, fast_kernel, default-c)
1635a0015d6SChris Zankel  * 2. it is a temporary memory buffer for the exception handlers.
1645a0015d6SChris Zankel  */
1655a0015d6SChris Zankel 
166f21a79caSMax Filippov DEFINE_PER_CPU(struct exc_table, exc_table);
1676ec7026aSMax Filippov DEFINE_PER_CPU(struct debug_table, debug_table);
1686ec7026aSMax Filippov 
1695a0015d6SChris Zankel void die(const char*, struct pt_regs*, long);
1705a0015d6SChris Zankel 
1715a0015d6SChris Zankel static inline void
1725a0015d6SChris Zankel __die_if_kernel(const char *str, struct pt_regs *regs, long err)
1735a0015d6SChris Zankel {
1745a0015d6SChris Zankel 	if (!user_mode(regs))
1755a0015d6SChris Zankel 		die(str, regs, err);
1765a0015d6SChris Zankel }
1775a0015d6SChris Zankel 
1785a0015d6SChris Zankel /*
1795a0015d6SChris Zankel  * Unhandled Exceptions. Kill user task or panic if in kernel space.
1805a0015d6SChris Zankel  */
1815a0015d6SChris Zankel 
182fc55402bSMax Filippov void do_unhandled(struct pt_regs *regs)
1835a0015d6SChris Zankel {
1845a0015d6SChris Zankel 	__die_if_kernel("Caught unhandled exception - should not happen",
1855a0015d6SChris Zankel 			regs, SIGKILL);
1865a0015d6SChris Zankel 
1875a0015d6SChris Zankel 	/* If in user mode, send SIGILL signal to current process */
188c130d3beSMax Filippov 	pr_info_ratelimited("Caught unhandled exception in '%s' "
1895a0015d6SChris Zankel 			    "(pid = %d, pc = %#010lx) - should not happen\n"
1905a0015d6SChris Zankel 			    "\tEXCCAUSE is %ld\n",
191c130d3beSMax Filippov 			    current->comm, task_pid_nr(current), regs->pc,
192fc55402bSMax Filippov 			    regs->exccause);
1933cf5d076SEric W. Biederman 	force_sig(SIGILL);
1945a0015d6SChris Zankel }
1955a0015d6SChris Zankel 
1965a0015d6SChris Zankel /*
1975a0015d6SChris Zankel  * Multi-hit exception. This if fatal!
1985a0015d6SChris Zankel  */
1995a0015d6SChris Zankel 
200db0d07faSMax Filippov static void do_multihit(struct pt_regs *regs)
2015a0015d6SChris Zankel {
2025a0015d6SChris Zankel 	die("Caught multihit exception", regs, SIGKILL);
2035a0015d6SChris Zankel }
2045a0015d6SChris Zankel 
2055a0015d6SChris Zankel /*
2062d1c645cSMarc Gauthier  * IRQ handler.
2075a0015d6SChris Zankel  */
2085a0015d6SChris Zankel 
20938fef73cSMax Filippov #if XTENSA_FAKE_NMI
21038fef73cSMax Filippov 
211e4629194SMax Filippov #define IS_POW2(v) (((v) & ((v) - 1)) == 0)
212e4629194SMax Filippov 
213e4629194SMax Filippov #if !(PROFILING_INTLEVEL == XCHAL_EXCM_LEVEL && \
214e4629194SMax Filippov       IS_POW2(XTENSA_INTLEVEL_MASK(PROFILING_INTLEVEL)))
215e4629194SMax Filippov #warning "Fake NMI is requested for PMM, but there are other IRQs at or above its level."
216e4629194SMax Filippov #warning "Fake NMI will be used, but there will be a bugcheck if one of those IRQs fire."
217e4629194SMax Filippov 
218e4629194SMax Filippov static inline void check_valid_nmi(void)
219e4629194SMax Filippov {
220cad6fadeSMax Filippov 	unsigned intread = xtensa_get_sr(interrupt);
221cad6fadeSMax Filippov 	unsigned intenable = xtensa_get_sr(intenable);
222e4629194SMax Filippov 
223e4629194SMax Filippov 	BUG_ON(intread & intenable &
224e4629194SMax Filippov 	       ~(XTENSA_INTLEVEL_ANDBELOW_MASK(PROFILING_INTLEVEL) ^
225e4629194SMax Filippov 		 XTENSA_INTLEVEL_MASK(PROFILING_INTLEVEL) ^
226e4629194SMax Filippov 		 BIT(XCHAL_PROFILING_INTERRUPT)));
227e4629194SMax Filippov }
228e4629194SMax Filippov 
229e4629194SMax Filippov #else
230e4629194SMax Filippov 
231e4629194SMax Filippov static inline void check_valid_nmi(void)
232e4629194SMax Filippov {
233e4629194SMax Filippov }
234e4629194SMax Filippov 
235e4629194SMax Filippov #endif
236e4629194SMax Filippov 
23738fef73cSMax Filippov irqreturn_t xtensa_pmu_irq_handler(int irq, void *dev_id);
23838fef73cSMax Filippov 
23938fef73cSMax Filippov DEFINE_PER_CPU(unsigned long, nmi_count);
24038fef73cSMax Filippov 
241db0d07faSMax Filippov static void do_nmi(struct pt_regs *regs)
24238fef73cSMax Filippov {
243de4415d0SMax Filippov 	struct pt_regs *old_regs = set_irq_regs(regs);
24438fef73cSMax Filippov 
24538fef73cSMax Filippov 	nmi_enter();
24638fef73cSMax Filippov 	++*this_cpu_ptr(&nmi_count);
247e4629194SMax Filippov 	check_valid_nmi();
24838fef73cSMax Filippov 	xtensa_pmu_irq_handler(0, NULL);
24938fef73cSMax Filippov 	nmi_exit();
25038fef73cSMax Filippov 	set_irq_regs(old_regs);
25138fef73cSMax Filippov }
25238fef73cSMax Filippov #endif
25338fef73cSMax Filippov 
254db0d07faSMax Filippov static void do_interrupt(struct pt_regs *regs)
2555a0015d6SChris Zankel {
2562d1c645cSMarc Gauthier 	static const unsigned int_level_mask[] = {
2572d1c645cSMarc Gauthier 		0,
2582d1c645cSMarc Gauthier 		XCHAL_INTLEVEL1_MASK,
2592d1c645cSMarc Gauthier 		XCHAL_INTLEVEL2_MASK,
2602d1c645cSMarc Gauthier 		XCHAL_INTLEVEL3_MASK,
2612d1c645cSMarc Gauthier 		XCHAL_INTLEVEL4_MASK,
2622d1c645cSMarc Gauthier 		XCHAL_INTLEVEL5_MASK,
2632d1c645cSMarc Gauthier 		XCHAL_INTLEVEL6_MASK,
2642d1c645cSMarc Gauthier 		XCHAL_INTLEVEL7_MASK,
2652d1c645cSMarc Gauthier 	};
266de4415d0SMax Filippov 	struct pt_regs *old_regs = set_irq_regs(regs);
26743ba2237SMax Filippov 	unsigned unhandled = ~0u;
26899623239SMax Filippov 
26999623239SMax Filippov 	irq_enter();
2702d1c645cSMarc Gauthier 
2712d1c645cSMarc Gauthier 	for (;;) {
272cad6fadeSMax Filippov 		unsigned intread = xtensa_get_sr(interrupt);
273cad6fadeSMax Filippov 		unsigned intenable = xtensa_get_sr(intenable);
274895666a9SMax Filippov 		unsigned int_at_level = intread & intenable;
275895666a9SMax Filippov 		unsigned level;
2762d1c645cSMarc Gauthier 
277895666a9SMax Filippov 		for (level = LOCKLEVEL; level > 0; --level) {
278895666a9SMax Filippov 			if (int_at_level & int_level_mask[level]) {
279895666a9SMax Filippov 				int_at_level &= int_level_mask[level];
28043ba2237SMax Filippov 				if (int_at_level & unhandled)
28143ba2237SMax Filippov 					int_at_level &= unhandled;
28243ba2237SMax Filippov 				else
28343ba2237SMax Filippov 					unhandled |= int_level_mask[level];
284895666a9SMax Filippov 				break;
285895666a9SMax Filippov 			}
286895666a9SMax Filippov 		}
287895666a9SMax Filippov 
288895666a9SMax Filippov 		if (level == 0)
28999623239SMax Filippov 			break;
2902d1c645cSMarc Gauthier 
29143ba2237SMax Filippov 		/* clear lowest pending irq in the unhandled mask */
29243ba2237SMax Filippov 		unhandled ^= (int_at_level & -int_at_level);
29399623239SMax Filippov 		do_IRQ(__ffs(int_at_level), regs);
29499623239SMax Filippov 	}
2955a0015d6SChris Zankel 
29699623239SMax Filippov 	irq_exit();
29799623239SMax Filippov 	set_irq_regs(old_regs);
2985a0015d6SChris Zankel }
2995a0015d6SChris Zankel 
300d7486200SMax Filippov static bool check_div0(struct pt_regs *regs)
301d7486200SMax Filippov {
302d7486200SMax Filippov 	static const u8 pattern[] = {'D', 'I', 'V', '0'};
303d7486200SMax Filippov 	const u8 *p;
304d7486200SMax Filippov 	u8 buf[5];
305d7486200SMax Filippov 
306d7486200SMax Filippov 	if (user_mode(regs)) {
307d7486200SMax Filippov 		if (copy_from_user(buf, (void __user *)regs->pc + 2, 5))
308dc60001eSYang Li 			return false;
309d7486200SMax Filippov 		p = buf;
310d7486200SMax Filippov 	} else {
311d7486200SMax Filippov 		p = (const u8 *)regs->pc + 2;
312d7486200SMax Filippov 	}
313d7486200SMax Filippov 
314d7486200SMax Filippov 	return memcmp(p, pattern, sizeof(pattern)) == 0 ||
315d7486200SMax Filippov 		memcmp(p + 1, pattern, sizeof(pattern)) == 0;
316d7486200SMax Filippov }
317d7486200SMax Filippov 
3185a0015d6SChris Zankel /*
3195a0015d6SChris Zankel  * Illegal instruction. Fatal if in kernel space.
3205a0015d6SChris Zankel  */
3215a0015d6SChris Zankel 
322db0d07faSMax Filippov static void do_illegal_instruction(struct pt_regs *regs)
3235a0015d6SChris Zankel {
3245cc5f19fSMax Filippov #ifdef CONFIG_USER_ABI_CALL0_PROBE
3255cc5f19fSMax Filippov 	/*
3265cc5f19fSMax Filippov 	 * When call0 application encounters an illegal instruction fast
3275cc5f19fSMax Filippov 	 * exception handler will attempt to set PS.WOE and retry failing
3285cc5f19fSMax Filippov 	 * instruction.
3295cc5f19fSMax Filippov 	 * If we get here we know that that instruction is also illegal
3305cc5f19fSMax Filippov 	 * with PS.WOE set, so it's not related to the windowed option
3315cc5f19fSMax Filippov 	 * hence PS.WOE may be cleared.
3325cc5f19fSMax Filippov 	 */
3335cc5f19fSMax Filippov 	if (regs->pc == current_thread_info()->ps_woe_fix_addr)
3345cc5f19fSMax Filippov 		regs->ps &= ~PS_WOE_MASK;
3355cc5f19fSMax Filippov #endif
336d7486200SMax Filippov 	if (check_div0(regs)) {
337d7486200SMax Filippov 		do_div0(regs);
338d7486200SMax Filippov 		return;
339d7486200SMax Filippov 	}
340d7486200SMax Filippov 
3415a0015d6SChris Zankel 	__die_if_kernel("Illegal instruction in kernel", regs, SIGKILL);
3425a0015d6SChris Zankel 
3435a0015d6SChris Zankel 	/* If in user mode, send SIGILL signal to current process. */
3445a0015d6SChris Zankel 
345c130d3beSMax Filippov 	pr_info_ratelimited("Illegal Instruction in '%s' (pid = %d, pc = %#010lx)\n",
34619c5870cSAlexey Dobriyan 			    current->comm, task_pid_nr(current), regs->pc);
3473cf5d076SEric W. Biederman 	force_sig(SIGILL);
3485a0015d6SChris Zankel }
3495a0015d6SChris Zankel 
350408b1d3cSMax Filippov static void do_div0(struct pt_regs *regs)
351408b1d3cSMax Filippov {
352408b1d3cSMax Filippov 	__die_if_kernel("Unhandled division by 0 in kernel", regs, SIGKILL);
353408b1d3cSMax Filippov 	force_sig_fault(SIGFPE, FPE_INTDIV, (void __user *)regs->pc);
354408b1d3cSMax Filippov }
3555a0015d6SChris Zankel 
356f29cf776SMax Filippov #ifdef CONFIG_XTENSA_LOAD_STORE
357f29cf776SMax Filippov static void do_load_store(struct pt_regs *regs)
358f29cf776SMax Filippov {
359f29cf776SMax Filippov 	__die_if_kernel("Unhandled load/store exception in kernel",
360f29cf776SMax Filippov 			regs, SIGKILL);
361f29cf776SMax Filippov 
362f29cf776SMax Filippov 	pr_info_ratelimited("Load/store error to %08lx in '%s' (pid = %d, pc = %#010lx)\n",
363f29cf776SMax Filippov 			    regs->excvaddr, current->comm,
364f29cf776SMax Filippov 			    task_pid_nr(current), regs->pc);
365f29cf776SMax Filippov 	force_sig_fault(SIGBUS, BUS_ADRERR, (void *)regs->excvaddr);
366f29cf776SMax Filippov }
367f29cf776SMax Filippov #endif
368f29cf776SMax Filippov 
3695a0015d6SChris Zankel /*
3705a0015d6SChris Zankel  * Handle unaligned memory accesses from user space. Kill task.
3715a0015d6SChris Zankel  *
3725a0015d6SChris Zankel  * If CONFIG_UNALIGNED_USER is not set, we don't allow unaligned memory
3735a0015d6SChris Zankel  * accesses causes from user space.
3745a0015d6SChris Zankel  */
3755a0015d6SChris Zankel 
376db0d07faSMax Filippov static void do_unaligned_user(struct pt_regs *regs)
3775a0015d6SChris Zankel {
3785a0015d6SChris Zankel 	__die_if_kernel("Unhandled unaligned exception in kernel",
3795a0015d6SChris Zankel 			regs, SIGKILL);
3805a0015d6SChris Zankel 
381c130d3beSMax Filippov 	pr_info_ratelimited("Unaligned memory access to %08lx in '%s' "
3825a0015d6SChris Zankel 			    "(pid = %d, pc = %#010lx)\n",
383c130d3beSMax Filippov 			    regs->excvaddr, current->comm,
384c130d3beSMax Filippov 			    task_pid_nr(current), regs->pc);
3852e1661d2SEric W. Biederman 	force_sig_fault(SIGBUS, BUS_ADRALN, (void *) regs->excvaddr);
3865a0015d6SChris Zankel }
3875a0015d6SChris Zankel 
38811e969bcSMax Filippov #if XTENSA_HAVE_COPROCESSORS
38911e969bcSMax Filippov static void do_coprocessor(struct pt_regs *regs)
39011e969bcSMax Filippov {
39111e969bcSMax Filippov 	coprocessor_flush_release_all(current_thread_info());
39211e969bcSMax Filippov }
39311e969bcSMax Filippov #endif
39411e969bcSMax Filippov 
395c91e02bdSMax Filippov /* Handle debug events.
396c91e02bdSMax Filippov  * When CONFIG_HAVE_HW_BREAKPOINT is on this handler is called with
397c91e02bdSMax Filippov  * preemption disabled to avoid rescheduling and keep mapping of hardware
398c91e02bdSMax Filippov  * breakpoint structures to debug registers intact, so that
399c91e02bdSMax Filippov  * DEBUGCAUSE.DBNUM could be used in case of data breakpoint hit.
400c91e02bdSMax Filippov  */
401db0d07faSMax Filippov static void do_debug(struct pt_regs *regs)
4025a0015d6SChris Zankel {
403c91e02bdSMax Filippov #ifdef CONFIG_HAVE_HW_BREAKPOINT
404c91e02bdSMax Filippov 	int ret = check_hw_breakpoint(regs);
405c91e02bdSMax Filippov 
406c91e02bdSMax Filippov 	preempt_enable();
407c91e02bdSMax Filippov 	if (ret == 0)
408c91e02bdSMax Filippov 		return;
409c91e02bdSMax Filippov #endif
4105a0015d6SChris Zankel 	__die_if_kernel("Breakpoint in kernel", regs, SIGKILL);
4115a0015d6SChris Zankel 
4125a0015d6SChris Zankel 	/* If in user mode, send SIGTRAP signal to current process */
4135a0015d6SChris Zankel 
4143cf5d076SEric W. Biederman 	force_sig(SIGTRAP);
4155a0015d6SChris Zankel }
4165a0015d6SChris Zankel 
4175a0015d6SChris Zankel 
418f21a79caSMax Filippov #define set_handler(type, cause, handler)				\
419f21a79caSMax Filippov 	do {								\
420f21a79caSMax Filippov 		unsigned int cpu;					\
421f21a79caSMax Filippov 									\
422f21a79caSMax Filippov 		for_each_possible_cpu(cpu)				\
423f21a79caSMax Filippov 			per_cpu(exc_table, cpu).type[cause] = (handler);\
424f21a79caSMax Filippov 	} while (0)
425f615136cSMax Filippov 
42628570e8dSMax Filippov /* Set exception C handler - for temporary use when probing exceptions */
42728570e8dSMax Filippov 
428fc55402bSMax Filippov xtensa_exception_handler *
429fc55402bSMax Filippov __init trap_set_handler(int cause, xtensa_exception_handler *handler)
43028570e8dSMax Filippov {
431f21a79caSMax Filippov 	void *previous = per_cpu(exc_table, 0).default_handler[cause];
432f21a79caSMax Filippov 
433f21a79caSMax Filippov 	set_handler(default_handler, cause, handler);
43428570e8dSMax Filippov 	return previous;
43528570e8dSMax Filippov }
43628570e8dSMax Filippov 
43728570e8dSMax Filippov 
43849b424feSMax Filippov static void trap_init_excsave(void)
439f615136cSMax Filippov {
4409fa8c59fSMax Filippov 	xtensa_set_sr(this_cpu_ptr(&exc_table), excsave1);
441f615136cSMax Filippov }
442f615136cSMax Filippov 
4436ec7026aSMax Filippov static void trap_init_debug(void)
4446ec7026aSMax Filippov {
4456ec7026aSMax Filippov 	unsigned long debugsave = (unsigned long)this_cpu_ptr(&debug_table);
4466ec7026aSMax Filippov 
4476ec7026aSMax Filippov 	this_cpu_ptr(&debug_table)->debug_exception = debug_exception;
4486ec7026aSMax Filippov 	__asm__ __volatile__("wsr %0, excsave" __stringify(XCHAL_DEBUGLEVEL)
4496ec7026aSMax Filippov 			     :: "a"(debugsave));
4506ec7026aSMax Filippov }
4516ec7026aSMax Filippov 
4525a0015d6SChris Zankel /*
4535a0015d6SChris Zankel  * Initialize dispatch tables.
4545a0015d6SChris Zankel  *
4555a0015d6SChris Zankel  * The exception vectors are stored compressed the __init section in the
4565a0015d6SChris Zankel  * dispatch_init_table. This function initializes the following three tables
4575a0015d6SChris Zankel  * from that compressed table:
4585a0015d6SChris Zankel  * - fast user		first dispatch table for user exceptions
4595a0015d6SChris Zankel  * - fast kernel	first dispatch table for kernel exceptions
4605a0015d6SChris Zankel  * - default C-handler	C-handler called by the default fast handler.
4615a0015d6SChris Zankel  *
4625a0015d6SChris Zankel  * See vectors.S for more details.
4635a0015d6SChris Zankel  */
4645a0015d6SChris Zankel 
465b91dc336SChris Zankel void __init trap_init(void)
4665a0015d6SChris Zankel {
4675a0015d6SChris Zankel 	int i;
4685a0015d6SChris Zankel 
4695a0015d6SChris Zankel 	/* Setup default vectors. */
4705a0015d6SChris Zankel 
471f21a79caSMax Filippov 	for (i = 0; i < EXCCAUSE_N; i++) {
472f21a79caSMax Filippov 		set_handler(fast_user_handler, i, user_exception);
473f21a79caSMax Filippov 		set_handler(fast_kernel_handler, i, kernel_exception);
474f21a79caSMax Filippov 		set_handler(default_handler, i, do_unhandled);
4755a0015d6SChris Zankel 	}
4765a0015d6SChris Zankel 
4775a0015d6SChris Zankel 	/* Setup specific handlers. */
4785a0015d6SChris Zankel 
4795a0015d6SChris Zankel 	for(i = 0; dispatch_init_table[i].cause >= 0; i++) {
4805a0015d6SChris Zankel 		int fast = dispatch_init_table[i].fast;
4815a0015d6SChris Zankel 		int cause = dispatch_init_table[i].cause;
4825a0015d6SChris Zankel 		void *handler = dispatch_init_table[i].handler;
4835a0015d6SChris Zankel 
4845a0015d6SChris Zankel 		if (fast == 0)
485f21a79caSMax Filippov 			set_handler(default_handler, cause, handler);
48660deebe6SMax Filippov 		if ((fast & USER) != 0)
487f21a79caSMax Filippov 			set_handler(fast_user_handler, cause, handler);
48860deebe6SMax Filippov 		if ((fast & KRNL) != 0)
489f21a79caSMax Filippov 			set_handler(fast_kernel_handler, cause, handler);
4905a0015d6SChris Zankel 	}
4915a0015d6SChris Zankel 
4925a0015d6SChris Zankel 	/* Initialize EXCSAVE_1 to hold the address of the exception table. */
493f615136cSMax Filippov 	trap_init_excsave();
4946ec7026aSMax Filippov 	trap_init_debug();
4955a0015d6SChris Zankel }
4965a0015d6SChris Zankel 
497f615136cSMax Filippov #ifdef CONFIG_SMP
49849b424feSMax Filippov void secondary_trap_init(void)
499f615136cSMax Filippov {
500f615136cSMax Filippov 	trap_init_excsave();
5016ec7026aSMax Filippov 	trap_init_debug();
502f615136cSMax Filippov }
503f615136cSMax Filippov #endif
504f615136cSMax Filippov 
5055a0015d6SChris Zankel /*
5065a0015d6SChris Zankel  * This function dumps the current valid window frame and other base registers.
5075a0015d6SChris Zankel  */
5085a0015d6SChris Zankel 
5095a0015d6SChris Zankel void show_regs(struct pt_regs * regs)
5105a0015d6SChris Zankel {
511431d1a34SMax Filippov 	int i;
5125a0015d6SChris Zankel 
513a43cb95dSTejun Heo 	show_regs_print_info(KERN_DEFAULT);
514a43cb95dSTejun Heo 
5158d7e8240SChris Zankel 	for (i = 0; i < 16; i++) {
5165a0015d6SChris Zankel 		if ((i % 8) == 0)
517d4eccafcSMax Filippov 			pr_info("a%02d:", i);
518d4eccafcSMax Filippov 		pr_cont(" %08lx", regs->areg[i]);
5195a0015d6SChris Zankel 	}
520d4eccafcSMax Filippov 	pr_cont("\n");
521d4eccafcSMax Filippov 	pr_info("pc: %08lx, ps: %08lx, depc: %08lx, excvaddr: %08lx\n",
5225a0015d6SChris Zankel 		regs->pc, regs->ps, regs->depc, regs->excvaddr);
523d4eccafcSMax Filippov 	pr_info("lbeg: %08lx, lend: %08lx lcount: %08lx, sar: %08lx\n",
5245a0015d6SChris Zankel 		regs->lbeg, regs->lend, regs->lcount, regs->sar);
5255a0015d6SChris Zankel 	if (user_mode(regs))
526d4eccafcSMax Filippov 		pr_cont("wb: %08lx, ws: %08lx, wmask: %08lx, syscall: %ld\n",
5275a0015d6SChris Zankel 			regs->windowbase, regs->windowstart, regs->wmask,
5285a0015d6SChris Zankel 			regs->syscall);
5295a0015d6SChris Zankel }
5305a0015d6SChris Zankel 
5313e4196a5SMax Filippov static int show_trace_cb(struct stackframe *frame, void *data)
532586411dcSJohannes Weiner {
53347fb7029SDmitry Safonov 	const char *loglvl = data;
53447fb7029SDmitry Safonov 
535e640cc30SMax Filippov 	if (kernel_text_address(frame->pc))
53647fb7029SDmitry Safonov 		printk("%s [<%08lx>] %pB\n",
53747fb7029SDmitry Safonov 			loglvl, frame->pc, (void *)frame->pc);
5383e4196a5SMax Filippov 	return 0;
539586411dcSJohannes Weiner }
540586411dcSJohannes Weiner 
54147fb7029SDmitry Safonov static void show_trace(struct task_struct *task, unsigned long *sp,
54247fb7029SDmitry Safonov 		       const char *loglvl)
5435a0015d6SChris Zankel {
5443e4196a5SMax Filippov 	if (!sp)
5453e4196a5SMax Filippov 		sp = stack_pointer(task);
5465a0015d6SChris Zankel 
54747fb7029SDmitry Safonov 	printk("%sCall Trace:\n", loglvl);
54847fb7029SDmitry Safonov 	walk_stackframe(sp, show_trace_cb, (void *)loglvl);
5495a0015d6SChris Zankel }
5505a0015d6SChris Zankel 
551c5fccebcSMax Filippov #define STACK_DUMP_ENTRY_SIZE 4
552*cc34f290SMax Filippov #define STACK_DUMP_LINE_SIZE 16
5538951eb15SMax Filippov static size_t kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
5545a0015d6SChris Zankel 
555*cc34f290SMax Filippov struct stack_fragment
556*cc34f290SMax Filippov {
557*cc34f290SMax Filippov 	size_t len;
558*cc34f290SMax Filippov 	size_t off;
559*cc34f290SMax Filippov 	u8 *sp;
560*cc34f290SMax Filippov 	const char *loglvl;
561*cc34f290SMax Filippov };
562*cc34f290SMax Filippov 
563*cc34f290SMax Filippov static int show_stack_fragment_cb(struct stackframe *frame, void *data)
564*cc34f290SMax Filippov {
565*cc34f290SMax Filippov 	struct stack_fragment *sf = data;
566*cc34f290SMax Filippov 
567*cc34f290SMax Filippov 	while (sf->off < sf->len) {
568*cc34f290SMax Filippov 		u8 line[STACK_DUMP_LINE_SIZE];
569*cc34f290SMax Filippov 		size_t line_len = sf->len - sf->off > STACK_DUMP_LINE_SIZE ?
570*cc34f290SMax Filippov 			STACK_DUMP_LINE_SIZE : sf->len - sf->off;
571*cc34f290SMax Filippov 		bool arrow = sf->off == 0;
572*cc34f290SMax Filippov 
573*cc34f290SMax Filippov 		if (frame && frame->sp == (unsigned long)(sf->sp + sf->off))
574*cc34f290SMax Filippov 			arrow = true;
575*cc34f290SMax Filippov 
576*cc34f290SMax Filippov 		__memcpy(line, sf->sp + sf->off, line_len);
577*cc34f290SMax Filippov 		print_hex_dump(sf->loglvl, arrow ? "> " : "  ", DUMP_PREFIX_NONE,
578*cc34f290SMax Filippov 			       STACK_DUMP_LINE_SIZE, STACK_DUMP_ENTRY_SIZE,
579*cc34f290SMax Filippov 			       line, line_len, false);
580*cc34f290SMax Filippov 		sf->off += STACK_DUMP_LINE_SIZE;
581*cc34f290SMax Filippov 		if (arrow)
582*cc34f290SMax Filippov 			return 0;
583*cc34f290SMax Filippov 	}
584*cc34f290SMax Filippov 	return 1;
585*cc34f290SMax Filippov }
586*cc34f290SMax Filippov 
5879cb8f069SDmitry Safonov void show_stack(struct task_struct *task, unsigned long *sp, const char *loglvl)
5885a0015d6SChris Zankel {
589*cc34f290SMax Filippov 	struct stack_fragment sf;
5905a0015d6SChris Zankel 
59128a0ce7fSJohannes Weiner 	if (!sp)
592586411dcSJohannes Weiner 		sp = stack_pointer(task);
593c5fccebcSMax Filippov 
594*cc34f290SMax Filippov 	sf.len = min((-(size_t)sp) & (THREAD_SIZE - STACK_DUMP_ENTRY_SIZE),
595c5fccebcSMax Filippov 		     kstack_depth_to_print * STACK_DUMP_ENTRY_SIZE);
596*cc34f290SMax Filippov 	sf.off = 0;
597*cc34f290SMax Filippov 	sf.sp = (u8 *)sp;
598*cc34f290SMax Filippov 	sf.loglvl = loglvl;
5995a0015d6SChris Zankel 
60020da1e8bSDmitry Safonov 	printk("%sStack:\n", loglvl);
601*cc34f290SMax Filippov 	walk_stackframe(sp, show_stack_fragment_cb, &sf);
602*cc34f290SMax Filippov 	while (sf.off < sf.len)
603*cc34f290SMax Filippov 		show_stack_fragment_cb(NULL, &sf);
60420da1e8bSDmitry Safonov 	show_trace(task, sp, loglvl);
60520da1e8bSDmitry Safonov }
60620da1e8bSDmitry Safonov 
60734af946aSIngo Molnar DEFINE_SPINLOCK(die_lock);
6085a0015d6SChris Zankel 
6099fd5a04dSEric W. Biederman void __noreturn die(const char * str, struct pt_regs * regs, long err)
6105a0015d6SChris Zankel {
6115a0015d6SChris Zankel 	static int die_counter;
6126c5260d7SThomas Gleixner 	const char *pr = "";
6136c5260d7SThomas Gleixner 
6146c5260d7SThomas Gleixner 	if (IS_ENABLED(CONFIG_PREEMPTION))
6156c5260d7SThomas Gleixner 		pr = IS_ENABLED(CONFIG_PREEMPT_RT) ? " PREEMPT_RT" : " PREEMPT";
6165a0015d6SChris Zankel 
6175a0015d6SChris Zankel 	console_verbose();
6185a0015d6SChris Zankel 	spin_lock_irq(&die_lock);
6195a0015d6SChris Zankel 
6206c5260d7SThomas Gleixner 	pr_info("%s: sig: %ld [#%d]%s\n", str, err, ++die_counter, pr);
6215a0015d6SChris Zankel 	show_regs(regs);
6225a0015d6SChris Zankel 	if (!user_mode(regs))
6239cb8f069SDmitry Safonov 		show_stack(NULL, (unsigned long *)regs->areg[1], KERN_INFO);
6245a0015d6SChris Zankel 
625373d4d09SRusty Russell 	add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
6265a0015d6SChris Zankel 	spin_unlock_irq(&die_lock);
6275a0015d6SChris Zankel 
6285a0015d6SChris Zankel 	if (in_interrupt())
6295a0015d6SChris Zankel 		panic("Fatal exception in interrupt");
6305a0015d6SChris Zankel 
631cea6a4baSHorms 	if (panic_on_oops)
632012c437dSHorms 		panic("Fatal exception");
633cea6a4baSHorms 
6340e25498fSEric W. Biederman 	make_task_dead(err);
6355a0015d6SChris Zankel }
636