4 * Copyright 2005-2009 Analog Devices Inc.
5 * D. Jeff Dionne <jeff@ryeham.ee.ryerson.ca>
6 * Kenneth Albanowski <kjahds@kjahds.com>
8 * Licensed under the GPL-2 or later.
11 #include <asm/blackfin.h>
13 #include <linux/linkage.h>
14 #include <asm/entry.h>
15 #include <asm/asm-offsets.h>
16 #include <asm/trace.h>
17 #include <asm/traps.h>
18 #include <asm/thread_info.h>
20 #include <asm/context.S>
22 .extern _ret_from_exception
24 #ifdef CONFIG_I_ENTRY_L1
30 .align 4 /* just in case */
32 /* Common interrupt entry code. First we do CLI, then push
33 * RETI, to keep interrupts disabled, but to allow this state to be changed
35 * R0 contains the interrupt number, while R1 may contain the value of IPEND,
36 * or garbage if IPEND won't be needed by the ISR. */
74 [--sp] = r0; /* Skip reserved */
82 [--sp] = r1; /* IPEND - R1 may or may not be set up before jumping here. */
84 /* Switch to other method of keeping interrupts disabled. */
85 #ifdef CONFIG_DEBUG_HWERR
91 #ifdef CONFIG_TRACE_IRQFLAGS
94 call _trace_hardirqs_off;
98 [--sp] = RETI; /* orig_pc */
99 /* Clear all L registers. */
105 #ifdef CONFIG_FRAME_POINTER
109 ANOMALY_283_315_WORKAROUND(p5, r7)
114 call ___ipipe_grab_irq
117 if cc jump .Lcommon_restore_context;
118 #else /* CONFIG_IPIPE */
119 pseudo_long_call _do_irq, p2;
121 #endif /* CONFIG_IPIPE */
122 pseudo_long_call _return_from_int, p2;
123 .Lcommon_restore_context:
127 /* interrupt routine for ivhw - 5 */
129 /* In case a single action kicks off multiple memory transactions, (like
130 * a cache line fetch, - this can cause multiple hardware errors, let's
131 * catch them all. First - make sure all the actions are complete, and
132 * the core sees the hardware errors.
138 #ifdef CONFIG_FRAME_POINTER
142 ANOMALY_283_315_WORKAROUND(p5, r7)
144 /* Handle all stacked hardware errors
145 * To make sure we don't hang forever, only do it 10 times
153 CC = BITTST(R1, EVT_IVHW_P);
155 /* OK a hardware error is pending - clear it */
163 # We are going to dump something out, so make sure we print IPEND properly
167 [sp + PT_IPEND] = r0;
169 /* set the EXCAUSE to HWERR for trap_c */
170 r0 = [sp + PT_SEQSTAT];
171 R1.L = LO(VEC_HWERR);
172 R1.H = HI(VEC_HWERR);
174 [sp + PT_SEQSTAT] = R0;
176 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
178 pseudo_long_call _trap_c, p5;
182 /* make sure EBIU_ERRMST is clear */
183 p0.l = LO(EBIU_ERRMST);
184 p0.h = HI(EBIU_ERRMST);
185 r0.l = (CORE_ERROR | CORE_MERROR);
189 pseudo_long_call _ret_from_exception, p2;
191 .Lcommon_restore_all_sys:
196 /* Interrupt routine for evt2 (NMI).
197 * For inner circle type details, please see:
198 * http://docs.blackfin.uclinux.org/doku.php?id=linux-kernel:nmi
201 #ifndef CONFIG_NMI_WATCHDOG
204 /* Not take account of CPLBs, this handler will not return */
209 trace_buffer_save(p4,r5);
211 ANOMALY_283_315_WORKAROUND(p4, r5)
222 /* interrupt routine for core timer - 6 */
224 TIMER_INTERRUPT_ENTRY(EVT_IVTMR_P)
226 /* interrupt routine for evt7 - 7 */
228 INTERRUPT_ENTRY(EVT_IVG7_P)
230 INTERRUPT_ENTRY(EVT_IVG8_P)
232 INTERRUPT_ENTRY(EVT_IVG9_P)
234 INTERRUPT_ENTRY(EVT_IVG10_P)
236 INTERRUPT_ENTRY(EVT_IVG11_P)
238 INTERRUPT_ENTRY(EVT_IVG12_P)
240 INTERRUPT_ENTRY(EVT_IVG13_P)
243 /* interrupt routine for system_call - 15 */
244 ENTRY(_evt_system_call)
246 #ifdef CONFIG_FRAME_POINTER
249 pseudo_long_call _system_call, p2;
250 jump .Lcommon_restore_context;
251 ENDPROC(_evt_system_call)
255 * __ipipe_call_irqtail: lowers the current priority level to EVT15
256 * before running a user-defined routine, then raises the priority
257 * level to EVT14 to prepare the caller for a normal interrupt
258 * return through RTI.
260 * We currently use this facility in two occasions:
262 * - to branch to __ipipe_irq_tail_hook as requested by a high
263 * priority domain after the pipeline delivered an interrupt,
264 * e.g. such as Xenomai, in order to start its rescheduling
265 * procedure, since we may not switch tasks when IRQ levels are
266 * nested on the Blackfin, so we have to fake an interrupt return
267 * so that we may reschedule immediately.
269 * - to branch to sync_root_irqs, in order to play any interrupt
270 * pending for the root domain (i.e. the Linux kernel). This lowers
271 * the core priority level enough so that Linux IRQ handlers may
272 * never delay interrupts handled by high priority domains; we defer
273 * those handlers until this point instead. This is a substitute
274 * to using a threaded interrupt model for the Linux kernel.
276 * r0: address of user-defined routine
277 * context: caller must have preempted EVT15, hw interrupts must be off.
279 ENTRY(___ipipe_call_irqtail)
287 [--sp] = ( r7:4, p5:3 );
291 ( r7:4, p5:3 ) = [sp++];
294 #ifdef CONFIG_DEBUG_HWERR
295 /* enable irq14 & hwerr interrupt, until we transition to _evt_evt14 */
296 r0 = (EVT_IVG14 | EVT_IVHW | \
297 EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
299 /* Only enable irq14 interrupt, until we transition to _evt_evt14 */
301 EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
304 raise 14; /* Branches to _evt_evt14 */
306 jump 2b; /* Likely paranoid. */
307 ENDPROC(___ipipe_call_irqtail)
309 #endif /* CONFIG_IPIPE */