]> bbs.cooldavid.org Git - net-next-2.6.git/blob - arch/blackfin/mach-common/interrupt.S
0a0c088ead8ce1074c4aa6deeb5c1c78ddc6b552
[net-next-2.6.git] / arch / blackfin / mach-common / interrupt.S
1 /*
2  * Interrupt Entries
3  *
4  * Copyright 2005-2009 Analog Devices Inc.
5  *               D. Jeff Dionne <jeff@ryeham.ee.ryerson.ca>
6  *               Kenneth Albanowski <kjahds@kjahds.com>
7  *
8  * Licensed under the GPL-2 or later.
9  */
10
11 #include <asm/blackfin.h>
12 #include <mach/irq.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>
19
20 #include <asm/context.S>
21
22 .extern _ret_from_exception
23
24 #ifdef CONFIG_I_ENTRY_L1
25 .section .l1.text
26 #else
27 .text
28 #endif
29
30 .align 4        /* just in case */
31
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
34  * by local_bh_enable.
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.  */
37 __common_int_entry:
38         [--sp] = fp;
39         [--sp] = usp;
40
41         [--sp] = i0;
42         [--sp] = i1;
43         [--sp] = i2;
44         [--sp] = i3;
45
46         [--sp] = m0;
47         [--sp] = m1;
48         [--sp] = m2;
49         [--sp] = m3;
50
51         [--sp] = l0;
52         [--sp] = l1;
53         [--sp] = l2;
54         [--sp] = l3;
55
56         [--sp] = b0;
57         [--sp] = b1;
58         [--sp] = b2;
59         [--sp] = b3;
60         [--sp] = a0.x;
61         [--sp] = a0.w;
62         [--sp] = a1.x;
63         [--sp] = a1.w;
64
65         [--sp] = LC0;
66         [--sp] = LC1;
67         [--sp] = LT0;
68         [--sp] = LT1;
69         [--sp] = LB0;
70         [--sp] = LB1;
71
72         [--sp] = ASTAT;
73
74         [--sp] = r0;    /* Skip reserved */
75         [--sp] = RETS;
76         r2 = RETI;
77         [--sp] = r2;
78         [--sp] = RETX;
79         [--sp] = RETN;
80         [--sp] = RETE;
81         [--sp] = SEQSTAT;
82         [--sp] = r1;    /* IPEND - R1 may or may not be set up before jumping here. */
83
84         /* Switch to other method of keeping interrupts disabled.  */
85 #ifdef CONFIG_DEBUG_HWERR
86         r1 = 0x3f;
87         sti r1;
88 #else
89         cli r1;
90 #endif
91 #ifdef CONFIG_TRACE_IRQFLAGS
92         [--sp] = r0;
93         sp += -12;
94         call _trace_hardirqs_off;
95         sp += 12;
96         r0 = [sp++];
97 #endif
98         [--sp] = RETI;  /* orig_pc */
99         /* Clear all L registers.  */
100         r1 = 0 (x);
101         l0 = r1;
102         l1 = r1;
103         l2 = r1;
104         l3 = r1;
105 #ifdef CONFIG_FRAME_POINTER
106         fp = 0;
107 #endif
108
109         ANOMALY_283_315_WORKAROUND(p5, r7)
110
111         r1 =  sp;
112         SP += -12;
113 #ifdef CONFIG_IPIPE
114         call ___ipipe_grab_irq
115         SP += 12;
116         cc = r0 == 0;
117         if cc jump .Lcommon_restore_context;
118 #else /* CONFIG_IPIPE */
119         pseudo_long_call _do_irq, p2;
120         SP += 12;
121 #endif /* CONFIG_IPIPE */
122         pseudo_long_call _return_from_int, p2;
123 .Lcommon_restore_context:
124         RESTORE_CONTEXT
125         rti;
126
127 /* interrupt routine for ivhw - 5 */
128 ENTRY(_evt_ivhw)
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.
133          */
134         SSYNC;
135         SSYNC;
136
137         SAVE_ALL_SYS
138 #ifdef CONFIG_FRAME_POINTER
139         fp = 0;
140 #endif
141
142         ANOMALY_283_315_WORKAROUND(p5, r7)
143
144         /* Handle all stacked hardware errors
145          * To make sure we don't hang forever, only do it 10 times
146          */
147         R0 = 0;
148         R2 = 10;
149 1:
150         P0.L = LO(ILAT);
151         P0.H = HI(ILAT);
152         R1 = [P0];
153         CC = BITTST(R1, EVT_IVHW_P);
154         IF ! CC JUMP 2f;
155         /* OK a hardware error is pending - clear it */
156         R1 = EVT_IVHW_P;
157         [P0] = R1;
158         R0 += 1;
159         CC = R1 == R2;
160         if CC JUMP 2f;
161         JUMP 1b;
162 2:
163         # We are going to dump something out, so make sure we print IPEND properly
164         p2.l = lo(IPEND);
165         p2.h = hi(IPEND);
166         r0 = [p2];
167         [sp + PT_IPEND] = r0;
168
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);
173         R0 = R0 | R1;
174         [sp + PT_SEQSTAT] = R0;
175
176         r0 = sp;        /* stack frame pt_regs pointer argument ==> r0 */
177         SP += -12;
178         pseudo_long_call _trap_c, p5;
179         SP += 12;
180
181 #ifdef EBIU_ERRMST
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);
186         w[p0] = r0.l;
187 #endif
188
189         pseudo_long_call _ret_from_exception, p2;
190
191 .Lcommon_restore_all_sys:
192         RESTORE_ALL_SYS
193         rti;
194 ENDPROC(_evt_ivhw)
195
196 /* Interrupt routine for evt2 (NMI).
197  * We don't actually use this, so just return.
198  * For inner circle type details, please see:
199  * http://docs.blackfin.uclinux.org/doku.php?id=linux-kernel:nmi
200  */
201 ENTRY(_evt_nmi)
202 .weak _evt_nmi
203         rtn;
204 ENDPROC(_evt_nmi)
205
206 /* interrupt routine for core timer - 6 */
207 ENTRY(_evt_timer)
208         TIMER_INTERRUPT_ENTRY(EVT_IVTMR_P)
209
210 /* interrupt routine for evt7 - 7 */
211 ENTRY(_evt_evt7)
212         INTERRUPT_ENTRY(EVT_IVG7_P)
213 ENTRY(_evt_evt8)
214         INTERRUPT_ENTRY(EVT_IVG8_P)
215 ENTRY(_evt_evt9)
216         INTERRUPT_ENTRY(EVT_IVG9_P)
217 ENTRY(_evt_evt10)
218         INTERRUPT_ENTRY(EVT_IVG10_P)
219 ENTRY(_evt_evt11)
220         INTERRUPT_ENTRY(EVT_IVG11_P)
221 ENTRY(_evt_evt12)
222         INTERRUPT_ENTRY(EVT_IVG12_P)
223 ENTRY(_evt_evt13)
224         INTERRUPT_ENTRY(EVT_IVG13_P)
225
226
227  /* interrupt routine for system_call - 15 */
228 ENTRY(_evt_system_call)
229         SAVE_CONTEXT_SYSCALL
230 #ifdef CONFIG_FRAME_POINTER
231         fp = 0;
232 #endif
233         pseudo_long_call _system_call, p2;
234         jump .Lcommon_restore_context;
235 ENDPROC(_evt_system_call)
236
237 #ifdef CONFIG_IPIPE
238 /*
239  * __ipipe_call_irqtail: lowers the current priority level to EVT15
240  * before running a user-defined routine, then raises the priority
241  * level to EVT14 to prepare the caller for a normal interrupt
242  * return through RTI.
243  *
244  * We currently use this facility in two occasions:
245  *
246  * - to branch to __ipipe_irq_tail_hook as requested by a high
247  *   priority domain after the pipeline delivered an interrupt,
248  *   e.g. such as Xenomai, in order to start its rescheduling
249  *   procedure, since we may not switch tasks when IRQ levels are
250  *   nested on the Blackfin, so we have to fake an interrupt return
251  *   so that we may reschedule immediately.
252  *
253  * - to branch to sync_root_irqs, in order to play any interrupt
254  *   pending for the root domain (i.e. the Linux kernel). This lowers
255  *   the core priority level enough so that Linux IRQ handlers may
256  *   never delay interrupts handled by high priority domains; we defer
257  *   those handlers until this point instead. This is a substitute
258  *   to using a threaded interrupt model for the Linux kernel.
259  *
260  * r0: address of user-defined routine
261  * context: caller must have preempted EVT15, hw interrupts must be off.
262  */
263 ENTRY(___ipipe_call_irqtail)
264         p0 = r0;
265         r0.l = 1f;
266         r0.h = 1f;
267         reti = r0;
268         rti;
269 1:
270         [--sp] = rets;
271         [--sp] = ( r7:4, p5:3 );
272         sp += -12;
273         call (p0);
274         sp += 12;
275         ( r7:4, p5:3 ) = [sp++];
276         rets = [sp++];
277
278 #ifdef CONFIG_DEBUG_HWERR
279         /* enable irq14 & hwerr interrupt, until we transition to _evt_evt14 */
280         r0 = (EVT_IVG14 | EVT_IVHW | \
281                 EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
282 #else
283         /* Only enable irq14 interrupt, until we transition to _evt_evt14 */
284         r0 = (EVT_IVG14 | \
285                 EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
286 #endif
287         sti r0;
288         raise 14;               /* Branches to _evt_evt14 */
289 2:
290         jump 2b;                /* Likely paranoid. */
291 ENDPROC(___ipipe_call_irqtail)
292
293 #endif /* CONFIG_IPIPE */