blob: 1ed85ddadc0d25135cf6bf494f1934ae52874f85 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Robin Getz2a12c462010-03-11 16:24:18 +00002 * Main exception handling logic.
3 *
4 * Copyright 2004-2010 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -07005 *
Robin Getz96f10502009-09-24 14:11:24 +00006 * Licensed under the GPL-2 or later
Bryan Wu1394f032007-05-06 14:50:22 -07007 */
8
Mike Frysinger70f12562009-06-07 17:18:25 -04009#include <linux/bug.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080010#include <linux/uaccess.h>
Bryan Wu1394f032007-05-06 14:50:22 -070011#include <linux/module.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080012#include <asm/traps.h>
Mike Frysingerf4585a02008-10-13 14:45:21 +080013#include <asm/cplb.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080014#include <asm/blackfin.h>
15#include <asm/irq_handler.h>
Robin Getzd8f66c82007-12-24 15:27:56 +080016#include <linux/irq.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080017#include <asm/trace.h>
Robin Getz226eb1e2007-10-29 17:59:07 +080018#include <asm/fixed_code.h>
Robin Getz6ce3e9c2010-03-16 14:40:17 +000019#include <asm/pseudo_instructions.h>
David Howells3bed8d62012-03-12 23:36:56 +000020#include <asm/pda.h>
Richard Weinbergerede45dd2015-04-03 18:56:16 +020021#include <asm/asm-offsets.h>
Bryan Wu1394f032007-05-06 14:50:22 -070022
23#ifdef CONFIG_KGDB
Bryan Wu1394f032007-05-06 14:50:22 -070024# include <linux/kgdb.h>
Robin Getz226eb1e2007-10-29 17:59:07 +080025
26# define CHK_DEBUGGER_TRAP() \
27 do { \
Sonic Zhanga5ac0122008-10-13 14:07:19 +080028 kgdb_handle_exception(trapnr, sig, info.si_code, fp); \
Robin Getz226eb1e2007-10-29 17:59:07 +080029 } while (0)
30# define CHK_DEBUGGER_TRAP_MAYBE() \
31 do { \
32 if (kgdb_connected) \
33 CHK_DEBUGGER_TRAP(); \
34 } while (0)
35#else
36# define CHK_DEBUGGER_TRAP() do { } while (0)
37# define CHK_DEBUGGER_TRAP_MAYBE() do { } while (0)
Bryan Wu1394f032007-05-06 14:50:22 -070038#endif
39
Robin Getz9f06c382008-10-10 18:13:21 +080040
Robin Getz4ee1c452008-10-28 11:36:11 +080041#ifdef CONFIG_DEBUG_VERBOSE
Robin Getz9f06c382008-10-10 18:13:21 +080042#define verbose_printk(fmt, arg...) \
43 printk(fmt, ##arg)
44#else
45#define verbose_printk(fmt, arg...) \
46 ({ if (0) printk(fmt, ##arg); 0; })
47#endif
48
Robin Getz81f7f452009-06-03 18:58:26 +000049#if defined(CONFIG_DEBUG_MMRS) || defined(CONFIG_DEBUG_MMRS_MODULE)
50u32 last_seqstat;
51#ifdef CONFIG_DEBUG_MMRS_MODULE
52EXPORT_SYMBOL(last_seqstat);
53#endif
54#endif
55
Bryan Wu1394f032007-05-06 14:50:22 -070056/* Initiate the event table handler */
57void __init trap_init(void)
58{
59 CSYNC();
60 bfin_write_EVT3(trap);
61 CSYNC();
62}
63
Mike Frysinger82bd1d72009-06-07 17:08:28 -040064static int kernel_mode_regs(struct pt_regs *regs)
65{
66 return regs->ipend & 0xffc0;
67}
68
Yi Lic4baebf2009-08-12 23:05:35 +000069asmlinkage notrace void trap_c(struct pt_regs *fp)
Bryan Wu1394f032007-05-06 14:50:22 -070070{
Robin Getz518039b2007-07-25 11:03:28 +080071#ifdef CONFIG_DEBUG_BFIN_HWTRACE_ON
72 int j;
73#endif
Robin Getz6ce3e9c2010-03-16 14:40:17 +000074#ifdef CONFIG_BFIN_PSEUDODBG_INSNS
75 int opcode;
76#endif
Yi Lib6dbde22009-08-20 04:17:47 +000077 unsigned int cpu = raw_smp_processor_id();
Mike Frysinger82bd1d72009-06-07 17:08:28 -040078 const char *strerror = NULL;
Robin Getz518039b2007-07-25 11:03:28 +080079 int sig = 0;
Bryan Wu1394f032007-05-06 14:50:22 -070080 siginfo_t info;
81 unsigned long trapnr = fp->seqstat & SEQSTAT_EXCAUSE;
82
Bryan Wu1394f032007-05-06 14:50:22 -070083 trace_buffer_save(j);
Robin Getz81f7f452009-06-03 18:58:26 +000084#if defined(CONFIG_DEBUG_MMRS) || defined(CONFIG_DEBUG_MMRS_MODULE)
85 last_seqstat = (u32)fp->seqstat;
86#endif
Bryan Wu1394f032007-05-06 14:50:22 -070087
Robin Getz226eb1e2007-10-29 17:59:07 +080088 /* Important - be very careful dereferncing pointers - will lead to
89 * double faults if the stack has become corrupt
90 */
91
Bryan Wu1394f032007-05-06 14:50:22 -070092 /* trap_c() will be called for exceptions. During exceptions
93 * processing, the pc value should be set with retx value.
94 * With this change we can cleanup some code in signal.c- TODO
95 */
96 fp->orig_pc = fp->retx;
97 /* printk("exception: 0x%x, ipend=%x, reti=%x, retx=%x\n",
98 trapnr, fp->ipend, fp->pc, fp->retx); */
99
100 /* send the appropriate signal to the user program */
101 switch (trapnr) {
102
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300103 /* This table works in conjunction with the one in ./mach-common/entry.S
Bryan Wu1394f032007-05-06 14:50:22 -0700104 * Some exceptions are handled there (in assembly, in exception space)
105 * Some are handled here, (in C, in interrupt space)
106 * Some, like CPLB, are handled in both, where the normal path is
107 * handled in assembly/exception space, and the error path is handled
108 * here
109 */
110
111 /* 0x00 - Linux Syscall, getting here is an error */
112 /* 0x01 - userspace gdb breakpoint, handled here */
113 case VEC_EXCPT01:
114 info.si_code = TRAP_ILLTRAP;
115 sig = SIGTRAP;
116 CHK_DEBUGGER_TRAP_MAYBE();
117 /* Check if this is a breakpoint in kernel space */
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400118 if (kernel_mode_regs(fp))
Mike Frysinger6510a202009-06-07 15:07:25 -0400119 goto traps_done;
Bryan Wu1394f032007-05-06 14:50:22 -0700120 else
121 break;
Mike Frysinger9401e612007-07-12 11:50:43 +0800122 /* 0x03 - User Defined, userspace stack overflow */
Bryan Wu1394f032007-05-06 14:50:22 -0700123 case VEC_EXCPT03:
124 info.si_code = SEGV_STACKFLOW;
125 sig = SIGSEGV;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400126 strerror = KERN_NOTICE EXC_0x03(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800127 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700128 break;
Sonic Zhang27707d32008-10-09 14:04:41 +0800129 /* 0x02 - KGDB initial connection and break signal trap */
130 case VEC_EXCPT02:
131#ifdef CONFIG_KGDB
132 info.si_code = TRAP_ILLTRAP;
133 sig = SIGTRAP;
134 CHK_DEBUGGER_TRAP();
Mike Frysinger6510a202009-06-07 15:07:25 -0400135 goto traps_done;
Sonic Zhang27707d32008-10-09 14:04:41 +0800136#endif
Robin Getz5c64e0d2008-10-08 14:43:47 +0800137 /* 0x04 - User Defined */
138 /* 0x05 - User Defined */
139 /* 0x06 - User Defined */
140 /* 0x07 - User Defined */
141 /* 0x08 - User Defined */
142 /* 0x09 - User Defined */
143 /* 0x0A - User Defined */
144 /* 0x0B - User Defined */
145 /* 0x0C - User Defined */
146 /* 0x0D - User Defined */
147 /* 0x0E - User Defined */
148 /* 0x0F - User Defined */
Sonic Zhang27707d32008-10-09 14:04:41 +0800149 /* If we got here, it is most likely that someone was trying to use a
Robin Getz5c64e0d2008-10-08 14:43:47 +0800150 * custom exception handler, and it is not actually installed properly
151 */
152 case VEC_EXCPT04 ... VEC_EXCPT15:
153 info.si_code = ILL_ILLPARAOP;
154 sig = SIGILL;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400155 strerror = KERN_NOTICE EXC_0x04(KERN_NOTICE);
Robin Getz5c64e0d2008-10-08 14:43:47 +0800156 CHK_DEBUGGER_TRAP_MAYBE();
157 break;
Bryan Wu1394f032007-05-06 14:50:22 -0700158 /* 0x10 HW Single step, handled here */
159 case VEC_STEP:
160 info.si_code = TRAP_STEP;
161 sig = SIGTRAP;
162 CHK_DEBUGGER_TRAP_MAYBE();
163 /* Check if this is a single step in kernel space */
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400164 if (kernel_mode_regs(fp))
Mike Frysinger6510a202009-06-07 15:07:25 -0400165 goto traps_done;
Bryan Wu1394f032007-05-06 14:50:22 -0700166 else
167 break;
168 /* 0x11 - Trace Buffer Full, handled here */
169 case VEC_OVFLOW:
170 info.si_code = TRAP_TRACEFLOW;
171 sig = SIGTRAP;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400172 strerror = KERN_NOTICE EXC_0x11(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800173 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700174 break;
175 /* 0x12 - Reserved, Caught by default */
176 /* 0x13 - Reserved, Caught by default */
177 /* 0x14 - Reserved, Caught by default */
178 /* 0x15 - Reserved, Caught by default */
179 /* 0x16 - Reserved, Caught by default */
180 /* 0x17 - Reserved, Caught by default */
181 /* 0x18 - Reserved, Caught by default */
182 /* 0x19 - Reserved, Caught by default */
183 /* 0x1A - Reserved, Caught by default */
184 /* 0x1B - Reserved, Caught by default */
185 /* 0x1C - Reserved, Caught by default */
186 /* 0x1D - Reserved, Caught by default */
187 /* 0x1E - Reserved, Caught by default */
188 /* 0x1F - Reserved, Caught by default */
189 /* 0x20 - Reserved, Caught by default */
190 /* 0x21 - Undefined Instruction, handled here */
191 case VEC_UNDEF_I:
Mike Frysinger70f12562009-06-07 17:18:25 -0400192#ifdef CONFIG_BUG
193 if (kernel_mode_regs(fp)) {
194 switch (report_bug(fp->pc, fp)) {
195 case BUG_TRAP_TYPE_NONE:
196 break;
197 case BUG_TRAP_TYPE_WARN:
198 dump_bfin_trace_buffer();
199 fp->pc += 2;
200 goto traps_done;
201 case BUG_TRAP_TYPE_BUG:
202 /* call to panic() will dump trace, and it is
203 * off at this point, so it won't be clobbered
204 */
205 panic("BUG()");
206 }
207 }
208#endif
Robin Getz6ce3e9c2010-03-16 14:40:17 +0000209#ifdef CONFIG_BFIN_PSEUDODBG_INSNS
210 /*
211 * Support for the fake instructions, if the instruction fails,
212 * then just execute a illegal opcode failure (like normal).
213 * Don't support these instructions inside the kernel
214 */
215 if (!kernel_mode_regs(fp) && get_instruction(&opcode, (unsigned short *)fp->pc)) {
216 if (execute_pseudodbg_assert(fp, opcode))
217 goto traps_done;
Robin Getzdc89d972010-03-28 12:50:53 +0000218 if (execute_pseudodbg(fp, opcode))
219 goto traps_done;
Robin Getz6ce3e9c2010-03-16 14:40:17 +0000220 }
221#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700222 info.si_code = ILL_ILLOPC;
223 sig = SIGILL;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400224 strerror = KERN_NOTICE EXC_0x21(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800225 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700226 break;
227 /* 0x22 - Illegal Instruction Combination, handled here */
228 case VEC_ILGAL_I:
229 info.si_code = ILL_ILLPARAOP;
230 sig = SIGILL;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400231 strerror = KERN_NOTICE EXC_0x22(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800232 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700233 break;
Robin Getzf26fbc42007-11-12 22:21:30 +0800234 /* 0x23 - Data CPLB protection violation, handled here */
Bryan Wu1394f032007-05-06 14:50:22 -0700235 case VEC_CPLB_VL:
236 info.si_code = ILL_CPLB_VI;
Graf Yang36b84122009-07-21 02:26:57 +0000237 sig = SIGSEGV;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400238 strerror = KERN_NOTICE EXC_0x23(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800239 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700240 break;
241 /* 0x24 - Data access misaligned, handled here */
242 case VEC_MISALI_D:
243 info.si_code = BUS_ADRALN;
244 sig = SIGBUS;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400245 strerror = KERN_NOTICE EXC_0x24(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800246 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700247 break;
248 /* 0x25 - Unrecoverable Event, handled here */
249 case VEC_UNCOV:
250 info.si_code = ILL_ILLEXCPT;
251 sig = SIGILL;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400252 strerror = KERN_NOTICE EXC_0x25(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800253 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700254 break;
255 /* 0x26 - Data CPLB Miss, normal case is handled in _cplb_hdr,
256 error case is handled here */
257 case VEC_CPLB_M:
258 info.si_code = BUS_ADRALN;
259 sig = SIGBUS;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400260 strerror = KERN_NOTICE EXC_0x26(KERN_NOTICE);
Bryan Wu1394f032007-05-06 14:50:22 -0700261 break;
262 /* 0x27 - Data CPLB Multiple Hits - Linux Trap Zero, handled here */
263 case VEC_CPLB_MHIT:
264 info.si_code = ILL_CPLB_MULHIT;
Bryan Wu1394f032007-05-06 14:50:22 -0700265 sig = SIGSEGV;
Mike Frysingerc6c6f752008-05-17 16:18:08 +0800266#ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
Graf Yang8f658732008-11-18 17:48:22 +0800267 if (cpu_pda[cpu].dcplb_fault_addr < FIXED_CODE_START)
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400268 strerror = KERN_NOTICE "NULL pointer access\n";
Mike Frysingerc6c6f752008-05-17 16:18:08 +0800269 else
Bryan Wu1394f032007-05-06 14:50:22 -0700270#endif
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400271 strerror = KERN_NOTICE EXC_0x27(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800272 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700273 break;
274 /* 0x28 - Emulation Watchpoint, handled here */
275 case VEC_WATCH:
276 info.si_code = TRAP_WATCHPT;
277 sig = SIGTRAP;
Robin Getz569a50c2007-11-21 16:35:57 +0800278 pr_debug(EXC_0x28(KERN_DEBUG));
Bryan Wu1394f032007-05-06 14:50:22 -0700279 CHK_DEBUGGER_TRAP_MAYBE();
280 /* Check if this is a watchpoint in kernel space */
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400281 if (kernel_mode_regs(fp))
Mike Frysinger6510a202009-06-07 15:07:25 -0400282 goto traps_done;
Bryan Wu1394f032007-05-06 14:50:22 -0700283 else
284 break;
285#ifdef CONFIG_BF535
286 /* 0x29 - Instruction fetch access error (535 only) */
287 case VEC_ISTRU_VL: /* ADSP-BF535 only (MH) */
288 info.si_code = BUS_OPFETCH;
289 sig = SIGBUS;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400290 strerror = KERN_NOTICE "BF535: VEC_ISTRU_VL\n";
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800291 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700292 break;
293#else
294 /* 0x29 - Reserved, Caught by default */
295#endif
296 /* 0x2A - Instruction fetch misaligned, handled here */
297 case VEC_MISALI_I:
298 info.si_code = BUS_ADRALN;
299 sig = SIGBUS;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400300 strerror = KERN_NOTICE EXC_0x2A(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800301 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700302 break;
Robin Getzf26fbc42007-11-12 22:21:30 +0800303 /* 0x2B - Instruction CPLB protection violation, handled here */
Bryan Wu1394f032007-05-06 14:50:22 -0700304 case VEC_CPLB_I_VL:
305 info.si_code = ILL_CPLB_VI;
Robin Getzf26fbc42007-11-12 22:21:30 +0800306 sig = SIGBUS;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400307 strerror = KERN_NOTICE EXC_0x2B(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800308 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700309 break;
310 /* 0x2C - Instruction CPLB miss, handled in _cplb_hdr */
311 case VEC_CPLB_I_M:
312 info.si_code = ILL_CPLB_MISS;
313 sig = SIGBUS;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400314 strerror = KERN_NOTICE EXC_0x2C(KERN_NOTICE);
Bryan Wu1394f032007-05-06 14:50:22 -0700315 break;
316 /* 0x2D - Instruction CPLB Multiple Hits, handled here */
317 case VEC_CPLB_I_MHIT:
318 info.si_code = ILL_CPLB_MULHIT;
Bryan Wu1394f032007-05-06 14:50:22 -0700319 sig = SIGSEGV;
Mike Frysingerc6c6f752008-05-17 16:18:08 +0800320#ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
Graf Yang8f658732008-11-18 17:48:22 +0800321 if (cpu_pda[cpu].icplb_fault_addr < FIXED_CODE_START)
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400322 strerror = KERN_NOTICE "Jump to NULL address\n";
Mike Frysingerc6c6f752008-05-17 16:18:08 +0800323 else
Bryan Wu1394f032007-05-06 14:50:22 -0700324#endif
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400325 strerror = KERN_NOTICE EXC_0x2D(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800326 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700327 break;
328 /* 0x2E - Illegal use of Supervisor Resource, handled here */
329 case VEC_ILL_RES:
330 info.si_code = ILL_PRVOPC;
331 sig = SIGILL;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400332 strerror = KERN_NOTICE EXC_0x2E(KERN_NOTICE);
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800333 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700334 break;
335 /* 0x2F - Reserved, Caught by default */
336 /* 0x30 - Reserved, Caught by default */
337 /* 0x31 - Reserved, Caught by default */
338 /* 0x32 - Reserved, Caught by default */
339 /* 0x33 - Reserved, Caught by default */
340 /* 0x34 - Reserved, Caught by default */
341 /* 0x35 - Reserved, Caught by default */
342 /* 0x36 - Reserved, Caught by default */
343 /* 0x37 - Reserved, Caught by default */
344 /* 0x38 - Reserved, Caught by default */
345 /* 0x39 - Reserved, Caught by default */
346 /* 0x3A - Reserved, Caught by default */
347 /* 0x3B - Reserved, Caught by default */
348 /* 0x3C - Reserved, Caught by default */
349 /* 0x3D - Reserved, Caught by default */
350 /* 0x3E - Reserved, Caught by default */
351 /* 0x3F - Reserved, Caught by default */
Robin Getz13fe24f2008-01-27 15:38:56 +0800352 case VEC_HWERR:
353 info.si_code = BUS_ADRALN;
354 sig = SIGBUS;
355 switch (fp->seqstat & SEQSTAT_HWERRCAUSE) {
356 /* System MMR Error */
357 case (SEQSTAT_HWERRCAUSE_SYSTEM_MMR):
358 info.si_code = BUS_ADRALN;
359 sig = SIGBUS;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400360 strerror = KERN_NOTICE HWC_x2(KERN_NOTICE);
Robin Getz13fe24f2008-01-27 15:38:56 +0800361 break;
362 /* External Memory Addressing Error */
363 case (SEQSTAT_HWERRCAUSE_EXTERN_ADDR):
Barry Songa00b4fe2009-11-27 09:18:21 +0000364 if (ANOMALY_05000310) {
365 static unsigned long anomaly_rets;
366
367 if ((fp->pc >= (L1_CODE_START + L1_CODE_LENGTH - 512)) &&
368 (fp->pc < (L1_CODE_START + L1_CODE_LENGTH))) {
369 /*
370 * A false hardware error will happen while fetching at
371 * the L1 instruction SRAM boundary. Ignore it.
372 */
373 anomaly_rets = fp->rets;
374 goto traps_done;
375 } else if (fp->rets == anomaly_rets) {
376 /*
377 * While boundary code returns to a function, at the ret
378 * point, a new false hardware error might occur too based
379 * on tests. Ignore it too.
380 */
381 goto traps_done;
382 } else if ((fp->rets >= (L1_CODE_START + L1_CODE_LENGTH - 512)) &&
383 (fp->rets < (L1_CODE_START + L1_CODE_LENGTH))) {
384 /*
385 * If boundary code calls a function, at the entry point,
386 * a new false hardware error maybe happen based on tests.
387 * Ignore it too.
388 */
389 goto traps_done;
390 } else
391 anomaly_rets = 0;
392 }
393
Robin Getz13fe24f2008-01-27 15:38:56 +0800394 info.si_code = BUS_ADRERR;
395 sig = SIGBUS;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400396 strerror = KERN_NOTICE HWC_x3(KERN_NOTICE);
Robin Getz13fe24f2008-01-27 15:38:56 +0800397 break;
398 /* Performance Monitor Overflow */
399 case (SEQSTAT_HWERRCAUSE_PERF_FLOW):
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400400 strerror = KERN_NOTICE HWC_x12(KERN_NOTICE);
Robin Getz13fe24f2008-01-27 15:38:56 +0800401 break;
402 /* RAISE 5 instruction */
403 case (SEQSTAT_HWERRCAUSE_RAISE_5):
404 printk(KERN_NOTICE HWC_x18(KERN_NOTICE));
405 break;
406 default: /* Reserved */
407 printk(KERN_NOTICE HWC_default(KERN_NOTICE));
408 break;
409 }
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800410 CHK_DEBUGGER_TRAP_MAYBE();
Robin Getz13fe24f2008-01-27 15:38:56 +0800411 break;
Robin Getz5c64e0d2008-10-08 14:43:47 +0800412 /*
413 * We should be handling all known exception types above,
414 * if we get here we hit a reserved one, so panic
415 */
Bryan Wu1394f032007-05-06 14:50:22 -0700416 default:
Robin Getz5c64e0d2008-10-08 14:43:47 +0800417 info.si_code = ILL_ILLPARAOP;
418 sig = SIGILL;
Robin Getz9f06c382008-10-10 18:13:21 +0800419 verbose_printk(KERN_EMERG "Caught Unhandled Exception, code = %08lx\n",
Bryan Wu1394f032007-05-06 14:50:22 -0700420 (fp->seqstat & SEQSTAT_EXCAUSE));
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800421 CHK_DEBUGGER_TRAP_MAYBE();
Bryan Wu1394f032007-05-06 14:50:22 -0700422 break;
423 }
424
Robin Getz226eb1e2007-10-29 17:59:07 +0800425 BUG_ON(sig == 0);
426
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400427 /* If the fault was caused by a kernel thread, or interrupt handler
428 * we will kernel panic, so the system reboots.
429 */
430 if (kernel_mode_regs(fp) || (current && !current->mm)) {
431 console_verbose();
432 oops_in_progress = 1;
Mike Frysinger82bd1d72009-06-07 17:08:28 -0400433 }
434
Robin Getz226eb1e2007-10-29 17:59:07 +0800435 if (sig != SIGTRAP) {
Mike Frysinger15627bd2009-06-23 11:21:34 +0000436 if (strerror)
437 verbose_printk(strerror);
438
Mike Frysinger49dce912007-11-21 16:46:49 +0800439 dump_bfin_process(fp);
Robin Getzb03b08b2007-12-23 22:57:01 +0800440 dump_bfin_mem(fp);
Mike Frysinger49dce912007-11-21 16:46:49 +0800441 show_regs(fp);
Robin Getz226eb1e2007-10-29 17:59:07 +0800442
443 /* Print out the trace buffer if it makes sense */
444#ifndef CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE
445 if (trapnr == VEC_CPLB_I_M || trapnr == VEC_CPLB_M)
Robin Getz9f06c382008-10-10 18:13:21 +0800446 verbose_printk(KERN_NOTICE "No trace since you do not have "
Joe Perchesad361c92009-07-06 13:05:40 -0700447 "CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE enabled\n\n");
Robin Getz226eb1e2007-10-29 17:59:07 +0800448 else
449#endif
450 dump_bfin_trace_buffer();
Robin Getzf09630b2008-07-26 19:45:46 +0800451
Robin Getz226eb1e2007-10-29 17:59:07 +0800452 if (oops_in_progress) {
Robin Getzf09630b2008-07-26 19:45:46 +0800453 /* Dump the current kernel stack */
Joe Perchesad361c92009-07-06 13:05:40 -0700454 verbose_printk(KERN_NOTICE "Kernel Stack\n");
Robin Getzf09630b2008-07-26 19:45:46 +0800455 show_stack(current, NULL);
Robin Getzaee3a292008-01-11 16:53:00 +0800456 print_modules();
Robin Getz226eb1e2007-10-29 17:59:07 +0800457#ifndef CONFIG_ACCESS_CHECK
Robin Getz9f06c382008-10-10 18:13:21 +0800458 verbose_printk(KERN_EMERG "Please turn on "
Robin Getz90c7f462007-11-18 00:35:33 +0800459 "CONFIG_ACCESS_CHECK\n");
Robin Getz226eb1e2007-10-29 17:59:07 +0800460#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700461 panic("Kernel exception");
Robin Getzf09630b2008-07-26 19:45:46 +0800462 } else {
Robin Getz4ee1c452008-10-28 11:36:11 +0800463#ifdef CONFIG_DEBUG_VERBOSE
Robin Getz9f06c382008-10-10 18:13:21 +0800464 unsigned long *stack;
Robin Getzf09630b2008-07-26 19:45:46 +0800465 /* Dump the user space stack */
466 stack = (unsigned long *)rdusp();
Robin Getz9f06c382008-10-10 18:13:21 +0800467 verbose_printk(KERN_NOTICE "Userspace Stack\n");
Robin Getzf09630b2008-07-26 19:45:46 +0800468 show_stack(NULL, stack);
Robin Getz9f06c382008-10-10 18:13:21 +0800469#endif
Robin Getz226eb1e2007-10-29 17:59:07 +0800470 }
Bryan Wu1394f032007-05-06 14:50:22 -0700471 }
Robin Getzfb322912007-11-21 16:38:05 +0800472
Yi Li6a01f232009-01-07 23:14:39 +0800473#ifdef CONFIG_IPIPE
474 if (!ipipe_trap_notify(fp->seqstat & 0x3f, fp))
475#endif
476 {
477 info.si_signo = sig;
478 info.si_errno = 0;
Barry Song5e8d3212010-01-19 11:01:08 +0000479 switch (trapnr) {
480 case VEC_CPLB_VL:
481 case VEC_MISALI_D:
482 case VEC_CPLB_M:
483 case VEC_CPLB_MHIT:
484 info.si_addr = (void __user *)cpu_pda[cpu].dcplb_fault_addr;
485 break;
486 default:
487 info.si_addr = (void __user *)fp->pc;
488 break;
489 }
Yi Li6a01f232009-01-07 23:14:39 +0800490 force_sig_info(sig, &info, current);
491 }
Bryan Wu1394f032007-05-06 14:50:22 -0700492
Robin Getz0e4edcf2009-06-22 20:23:48 +0000493 if ((ANOMALY_05000461 && trapnr == VEC_HWERR && !access_ok(VERIFY_READ, fp->pc, 8)) ||
Robin Getzf574a762009-07-09 15:11:52 +0000494 (ANOMALY_05000281 && trapnr == VEC_HWERR) ||
495 (ANOMALY_05000189 && (trapnr == VEC_CPLB_I_VL || trapnr == VEC_CPLB_VL)))
Robin Getz0acad8d2009-05-11 18:55:16 +0000496 fp->pc = SAFE_USER_INSTRUCTION;
497
Mike Frysinger6510a202009-06-07 15:07:25 -0400498 traps_done:
Bryan Wu1394f032007-05-06 14:50:22 -0700499 trace_buffer_restore(j);
Bryan Wu1394f032007-05-06 14:50:22 -0700500}
501
Robin Getz2a12c462010-03-11 16:24:18 +0000502asmlinkage void double_fault_c(struct pt_regs *fp)
Robin Getzf09630b2008-07-26 19:45:46 +0800503{
Robin Getz518039b2007-07-25 11:03:28 +0800504#ifdef CONFIG_DEBUG_BFIN_HWTRACE_ON
Robin Getz2a12c462010-03-11 16:24:18 +0000505 int j;
506 trace_buffer_save(j);
Robin Getz518039b2007-07-25 11:03:28 +0800507#endif
508
Robin Getz2a12c462010-03-11 16:24:18 +0000509 console_verbose();
510 oops_in_progress = 1;
Robin Getz9f06c382008-10-10 18:13:21 +0800511#ifdef CONFIG_DEBUG_VERBOSE
Robin Getz2a12c462010-03-11 16:24:18 +0000512 printk(KERN_EMERG "Double Fault\n");
513#ifdef CONFIG_DEBUG_DOUBLEFAULT_PRINT
514 if (((long)fp->seqstat & SEQSTAT_EXCAUSE) == VEC_UNCOV) {
515 unsigned int cpu = raw_smp_processor_id();
516 char buf[150];
517 decode_address(buf, cpu_pda[cpu].retx_doublefault);
518 printk(KERN_EMERG "While handling exception (EXCAUSE = 0x%x) at %s:\n",
519 (unsigned int)cpu_pda[cpu].seqstat_doublefault & SEQSTAT_EXCAUSE, buf);
520 decode_address(buf, cpu_pda[cpu].dcplb_doublefault_addr);
521 printk(KERN_NOTICE " DCPLB_FAULT_ADDR: %s\n", buf);
522 decode_address(buf, cpu_pda[cpu].icplb_doublefault_addr);
523 printk(KERN_NOTICE " ICPLB_FAULT_ADDR: %s\n", buf);
Robin Getz226eb1e2007-10-29 17:59:07 +0800524
Robin Getz2a12c462010-03-11 16:24:18 +0000525 decode_address(buf, fp->retx);
526 printk(KERN_NOTICE "The instruction at %s caused a double exception\n", buf);
Mike Frysinger49dce912007-11-21 16:46:49 +0800527 } else
Robin Getz9f06c382008-10-10 18:13:21 +0800528#endif
Robin Getz2a12c462010-03-11 16:24:18 +0000529 {
530 dump_bfin_process(fp);
531 dump_bfin_mem(fp);
532 show_regs(fp);
533 dump_bfin_trace_buffer();
534 }
535#endif
536 panic("Double Fault - unrecoverable event");
537
Mike Frysinger49dce912007-11-21 16:46:49 +0800538}
539
Mike Frysinger1ffe6642007-08-05 17:14:04 +0800540
Bryan Wu1394f032007-05-06 14:50:22 -0700541void panic_cplb_error(int cplb_panic, struct pt_regs *fp)
542{
543 switch (cplb_panic) {
544 case CPLB_NO_UNLOCKED:
545 printk(KERN_EMERG "All CPLBs are locked\n");
546 break;
547 case CPLB_PROT_VIOL:
548 return;
549 case CPLB_NO_ADDR_MATCH:
550 return;
551 case CPLB_UNKNOWN_ERR:
552 printk(KERN_EMERG "Unknown CPLB Exception\n");
553 break;
554 }
555
Robin Getz226eb1e2007-10-29 17:59:07 +0800556 oops_in_progress = 1;
557
Mike Frysinger49dce912007-11-21 16:46:49 +0800558 dump_bfin_process(fp);
Robin Getzb03b08b2007-12-23 22:57:01 +0800559 dump_bfin_mem(fp);
Mike Frysinger49dce912007-11-21 16:46:49 +0800560 show_regs(fp);
Bryan Wu1394f032007-05-06 14:50:22 -0700561 dump_stack();
Mike Frysingerd8804ad2009-04-29 06:26:46 +0000562 panic("Unrecoverable event");
Bryan Wu1394f032007-05-06 14:50:22 -0700563}
Robin Getz2a12c462010-03-11 16:24:18 +0000564
565#ifdef CONFIG_BUG
566int is_valid_bugaddr(unsigned long addr)
567{
Robin Getz9a95e2f2010-03-15 17:42:07 +0000568 unsigned int opcode;
Robin Getz2a12c462010-03-11 16:24:18 +0000569
570 if (!get_instruction(&opcode, (unsigned short *)addr))
571 return 0;
572
573 return opcode == BFIN_BUG_OPCODE;
574}
575#endif
Robin Getzd28cff42010-03-11 19:26:38 +0000576
577/* stub this out */
578#ifndef CONFIG_DEBUG_VERBOSE
579void show_regs(struct pt_regs *fp)
580{
581
582}
583#endif