sa11x0_irq.S revision 1.1 1 1.1 rjs /* $NetBSD: sa11x0_irq.S,v 1.1 2001/07/08 23:37:53 rjs Exp $ */
2 1.1 rjs
3 1.1 rjs /*
4 1.1 rjs * Copyright (c) 1998 Mark Brinicombe.
5 1.1 rjs * Copyright (c) 1998 Causality Limited
6 1.1 rjs * All rights reserved.
7 1.1 rjs *
8 1.1 rjs * This code is derived from software contributed to the NetBSD Foundation
9 1.1 rjs * by IWAMOTO Toshihiro.
10 1.1 rjs *
11 1.1 rjs * Redistribution and use in source and binary forms, with or without
12 1.1 rjs * modification, are permitted provided that the following conditions
13 1.1 rjs * are met:
14 1.1 rjs * 1. Redistributions of source code must retain the above copyright
15 1.1 rjs * notice, this list of conditions and the following disclaimer.
16 1.1 rjs * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 rjs * notice, this list of conditions and the following disclaimer in the
18 1.1 rjs * documentation and/or other materials provided with the distribution.
19 1.1 rjs * 3. All advertising materials mentioning features or use of this software
20 1.1 rjs * must display the following acknowledgement:
21 1.1 rjs * This product includes software developed by Mark Brinicombe
22 1.1 rjs * for the NetBSD Project.
23 1.1 rjs * 4. The name of the company nor the name of the author may be used to
24 1.1 rjs * endorse or promote products derived from this software without specific
25 1.1 rjs * prior written permission.
26 1.1 rjs *
27 1.1 rjs * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
28 1.1 rjs * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
29 1.1 rjs * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30 1.1 rjs * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
31 1.1 rjs * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
32 1.1 rjs * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
33 1.1 rjs * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 1.1 rjs * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 1.1 rjs * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 1.1 rjs * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 1.1 rjs * SUCH DAMAGE.
38 1.1 rjs */
39 1.1 rjs
40 1.1 rjs #include "opt_cputypes.h"
41 1.1 rjs #include "opt_irqstats.h"
42 1.1 rjs
43 1.1 rjs #include "assym.h"
44 1.1 rjs #include <machine/asm.h>
45 1.1 rjs #include <machine/cpu.h>
46 1.1 rjs #include <machine/frame.h>
47 1.1 rjs #include <hpcarm/sa11x0/sa11x0_reg.h>
48 1.1 rjs
49 1.1 rjs
50 1.1 rjs .text
51 1.1 rjs .align 0
52 1.1 rjs
53 1.1 rjs Lcurrent_spl_level:
54 1.1 rjs .word _C_LABEL(current_spl_level)
55 1.1 rjs
56 1.1 rjs Lcurrent_intr_depth:
57 1.1 rjs .word _C_LABEL(current_intr_depth)
58 1.1 rjs
59 1.1 rjs Lspl_masks:
60 1.1 rjs .word _C_LABEL(spl_masks)
61 1.1 rjs
62 1.1 rjs .globl _C_LABEL(saipic_base)
63 1.1 rjs _C_LABEL(saipic_base):
64 1.1 rjs .word 0x00000000
65 1.1 rjs
66 1.1 rjs #ifdef INTR_DEBUG
67 1.1 rjs Ldbg_str:
68 1.1 rjs .asciz "irq_entry %x %x\n"
69 1.1 rjs #endif
70 1.1 rjs
71 1.1 rjs /*
72 1.1 rjs * Regsister usage
73 1.1 rjs *
74 1.1 rjs * r6 - Address of current handler
75 1.1 rjs * r7 - Pointer to handler pointer list
76 1.1 rjs * r8 - Current IRQ requests.
77 1.1 rjs * r9 - Used to count through possible IRQ bits.
78 1.1 rjs * r10 - Base address of SAIP
79 1.1 rjs */
80 1.1 rjs
81 1.1 rjs ASENTRY_NP(irq_entry)
82 1.1 rjs sub lr, lr, #0x00000004 /* Adjust the lr */
83 1.1 rjs
84 1.1 rjs PUSHFRAMEINSVC /* Push an interrupt frame */
85 1.1 rjs
86 1.1 rjs /* Load r8 with the SAIPIC interrupt requests */
87 1.1 rjs
88 1.1 rjs ldr r10, [pc, #_C_LABEL(saipic_base) - . - 8]
89 1.1 rjs ldr r8, [r10, #(SAIPIC_IP)] /* Load IRQ pending register */
90 1.1 rjs
91 1.1 rjs #ifdef INTR_DEBUG
92 1.1 rjs ldr r2, [r10, #(SAIPIC_MR)]
93 1.1 rjs add r0, pc, #Ldbg_str - . - 8
94 1.1 rjs mov r1, r8
95 1.1 rjs bl _C_LABEL(printf)
96 1.1 rjs #endif
97 1.1 rjs /*
98 1.1 rjs * Note that we have entered the IRQ handler.
99 1.1 rjs * We are in SVC mode so we cannot use the processor mode
100 1.1 rjs * to determine if we are in an IRQ. Instead we will count the
101 1.1 rjs * each time the interrupt handler is nested.
102 1.1 rjs */
103 1.1 rjs
104 1.1 rjs ldr r0, Lcurrent_intr_depth
105 1.1 rjs ldr r1, [r0]
106 1.1 rjs add r1, r1, #1
107 1.1 rjs str r1, [r0]
108 1.1 rjs
109 1.1 rjs /*
110 1.1 rjs * Need to block all interrupts at the IPL or lower for
111 1.1 rjs * all asserted interrupts.
112 1.1 rjs * This basically emulates hardware interrupt priority levels.
113 1.1 rjs * Means we need to go through the interrupt mask and for
114 1.1 rjs * every asserted interrupt we need to mask out all other
115 1.1 rjs * interrupts at the same or lower IPL.
116 1.1 rjs * If only we could wait until the main loop but we need to sort
117 1.1 rjs * this out first so interrupts can be re-enabled.
118 1.1 rjs *
119 1.1 rjs * This would benefit from a special ffs type routine
120 1.1 rjs */
121 1.1 rjs
122 1.1 rjs mov r9, #(_SPL_LEVELS - 1)
123 1.1 rjs ldr r7, Lspl_masks
124 1.1 rjs
125 1.1 rjs Lfind_highest_ipl:
126 1.1 rjs ldr r2, [r7, r9, lsl #2]
127 1.1 rjs tst r8, r2
128 1.1 rjs subeq r9, r9, #1
129 1.1 rjs beq Lfind_highest_ipl
130 1.1 rjs
131 1.1 rjs /* r9 = SPL level of highest priority interrupt */
132 1.1 rjs add r9, r9, #1
133 1.1 rjs ldr r2, [r7, r9, lsl #2]
134 1.1 rjs mvn r2, r2
135 1.1 rjs
136 1.1 rjs ldr r0, Lcurrent_spl_level
137 1.1 rjs ldr r1, [r0]
138 1.1 rjs str r9, [r0]
139 1.1 rjs stmfd sp!, {r1}
140 1.1 rjs
141 1.1 rjs /* Update the SAIP irq masks */
142 1.1 rjs bl _C_LABEL(irq_setmasks)
143 1.1 rjs
144 1.1 rjs #ifdef INTR_DEBUG
145 1.1 rjs stmfd sp!, {r0,r1,r2}
146 1.1 rjs add r0, pc, #Ldbg_str - . - 8
147 1.1 rjs mov r1, #1
148 1.1 rjs mov r2, r9
149 1.1 rjs bl _C_LABEL(printf)
150 1.1 rjs ldmia sp!, {r0,r1,r2}
151 1.1 rjs #endif
152 1.1 rjs mrs r0, cpsr_all /* Enable IRQ's */
153 1.1 rjs bic r0, r0, #I32_bit
154 1.1 rjs msr cpsr_all, r0
155 1.1 rjs
156 1.1 rjs ldr r7, [pc, #Lirqhandlers - . - 8]
157 1.1 rjs mov r9, #0x00000001
158 1.1 rjs
159 1.1 rjs irqloop:
160 1.1 rjs /* This would benefit from a special ffs type routine */
161 1.1 rjs tst r8, r9 /* Is a bit set ? */
162 1.1 rjs beq nextirq /* No ? try next bit */
163 1.1 rjs
164 1.1 rjs ldr r6, [r7] /* Get address of first handler structure */
165 1.1 rjs
166 1.1 rjs teq r6, #0x00000000 /* Do we have a handler */
167 1.1 rjs moveq r0, r8 /* IRQ requests as arg 0 */
168 1.1 rjs beq _C_LABEL(stray_irqhandler) /* call special handler */
169 1.1 rjs
170 1.1 rjs ldr r0, Lcnt /* Stat info */
171 1.1 rjs ldr r1, [r0, #(V_INTR)]
172 1.1 rjs add r1, r1, #0x00000001
173 1.1 rjs str r1, [r0, #(V_INTR)]
174 1.1 rjs
175 1.1 rjs /*
176 1.1 rjs * XXX: Should stats be accumlated for every interrupt routine
177 1.1 rjs * called or for every physical interrupt that is serviced.
178 1.1 rjs */
179 1.1 rjs
180 1.1 rjs #ifdef IRQSTATS
181 1.1 rjs ldr r0, Lintrcnt
182 1.1 rjs ldr r1, [r6, #(IH_COUNT)]
183 1.1 rjs
184 1.1 rjs add r0, r0, r1, lsl #2
185 1.1 rjs ldr r1, [r0]
186 1.1 rjs add r1, r1, #0x00000001
187 1.1 rjs str r1, [r0]
188 1.1 rjs #endif /* IRQSTATS */
189 1.1 rjs
190 1.1 rjs irqchainloop:
191 1.1 rjs #ifdef INTR_DEBUG
192 1.1 rjs stmfd sp!, {r0,r1,r2}
193 1.1 rjs add r0, pc, #Ldbg_str - . - 8
194 1.1 rjs mov r1, #2
195 1.1 rjs bl _C_LABEL(printf)
196 1.1 rjs ldmia sp!, {r0,r1,r2}
197 1.1 rjs #endif
198 1.1 rjs add lr, pc, #nextinchain - . - 8 /* return address */
199 1.1 rjs ldr r0, [r6, #(IH_ARG)] /* Get argument pointer */
200 1.1 rjs teq r0, #0x00000000 /* If arg is zero pass stack frame */
201 1.1 rjs addeq r0, sp, #4 /* ... stack frame [XXX needs care] */
202 1.1 rjs ldr pc, [r6, #(IH_FUNC)] /* Call handler */
203 1.1 rjs
204 1.1 rjs nextinchain:
205 1.1 rjs teq r0, #0x00000001 /* Was the irq serviced ? */
206 1.1 rjs beq irqdone
207 1.1 rjs
208 1.1 rjs ldr r6, [r6, #(IH_NEXT)]
209 1.1 rjs teq r6, #0x00000000
210 1.1 rjs bne irqchainloop
211 1.1 rjs
212 1.1 rjs irqdone:
213 1.1 rjs nextirq:
214 1.1 rjs add r7, r7, #0x00000004 /* update pointer to handlers */
215 1.1 rjs mov r9, r9, lsl #1 /* move on to next bit */
216 1.1 rjs teq r9, #(1 << 31) /* done the last bit ? */
217 1.1 rjs bne irqloop /* no - loop back. */
218 1.1 rjs
219 1.1 rjs ldmfd sp!, {r2}
220 1.1 rjs ldr r1, Lcurrent_spl_level
221 1.1 rjs str r2, [r1]
222 1.1 rjs
223 1.1 rjs /* Restore previous disabled mask */
224 1.1 rjs bl _C_LABEL(irq_setmasks)
225 1.1 rjs
226 1.1 rjs bl _C_LABEL(dosoftints) /* Handle the soft interrupts */
227 1.1 rjs
228 1.1 rjs /* Manage AST's. Maybe this should be done as a soft interrupt ? */
229 1.1 rjs ldr r0, [sp] /* Get the SPSR from stack */
230 1.1 rjs
231 1.1 rjs and r0, r0, #(PSR_MODE) /* Test for USR32 mode before the IRQ */
232 1.1 rjs teq r0, #(PSR_USR32_MODE)
233 1.1 rjs ldreq r0, Lastpending /* Do we have an AST pending ? */
234 1.1 rjs ldreq r1, [r0]
235 1.1 rjs teqeq r1, #0x00000001
236 1.1 rjs
237 1.1 rjs beq irqast /* call the AST handler */
238 1.1 rjs
239 1.1 rjs /* Kill IRQ's in preparation for exit */
240 1.1 rjs mrs r0, cpsr_all
241 1.1 rjs orr r0, r0, #(I32_bit)
242 1.1 rjs msr cpsr_all, r0
243 1.1 rjs
244 1.1 rjs #ifdef INTR_DEBUG
245 1.1 rjs add r0, pc, #Ldbg_str - . - 8
246 1.1 rjs mov r1, #3
247 1.1 rjs ldr r2, [r10, #(SAIPIC_MR)]
248 1.1 rjs bl _C_LABEL(printf)
249 1.1 rjs #endif
250 1.1 rjs
251 1.1 rjs /* Decrement the nest count */
252 1.1 rjs ldr r0, Lcurrent_intr_depth
253 1.1 rjs ldr r1, [r0]
254 1.1 rjs sub r1, r1, #1
255 1.1 rjs str r1, [r0]
256 1.1 rjs
257 1.1 rjs PULLFRAMEFROMSVCANDEXIT
258 1.1 rjs
259 1.1 rjs /* NOT REACHED */
260 1.1 rjs b . - 8
261 1.1 rjs
262 1.1 rjs /*
263 1.1 rjs * Ok, snag with current intr depth ...
264 1.1 rjs * If ast() calls mi_sleep() the current_intr_depth will not be
265 1.1 rjs * decremented until the process is woken up. This can result
266 1.1 rjs * in the system believing it is still in the interrupt handler.
267 1.1 rjs * If we are calling ast() then correct the current_intr_depth
268 1.1 rjs * before the call.
269 1.1 rjs */
270 1.1 rjs irqast:
271 1.1 rjs mov r1, #0x00000000 /* Clear ast_pending */
272 1.1 rjs str r1, [r0]
273 1.1 rjs
274 1.1 rjs /* Kill IRQ's so we atomically decrement current_intr_depth */
275 1.1 rjs mrs r2, cpsr_all
276 1.1 rjs orr r3, r2, #(I32_bit)
277 1.1 rjs msr cpsr_all, r3
278 1.1 rjs
279 1.1 rjs /* Decrement the interrupt nesting count */
280 1.1 rjs ldr r0, Lcurrent_intr_depth
281 1.1 rjs ldr r1, [r0]
282 1.1 rjs sub r1, r1, #1
283 1.1 rjs str r1, [r0]
284 1.1 rjs
285 1.1 rjs /* Restore IRQ's */
286 1.1 rjs msr cpsr_all, r2
287 1.1 rjs
288 1.1 rjs mov r0, sp
289 1.1 rjs bl _C_LABEL(ast)
290 1.1 rjs
291 1.1 rjs /* Kill IRQ's in preparation for exit */
292 1.1 rjs mrs r0, cpsr_all
293 1.1 rjs orr r0, r0, #(I32_bit)
294 1.1 rjs msr cpsr_all, r0
295 1.1 rjs
296 1.1 rjs PULLFRAMEFROMSVCANDEXIT
297 1.1 rjs
298 1.1 rjs /* NOT REACHED */
299 1.1 rjs b . - 8
300 1.1 rjs
301 1.1 rjs
302 1.1 rjs ENTRY(irq_setmasks)
303 1.1 rjs /* Disable interrupts */
304 1.1 rjs mrs r3, cpsr_all
305 1.1 rjs orr r1, r3, #(I32_bit)
306 1.1 rjs msr cpsr_all, r1
307 1.1 rjs
308 1.1 rjs /* Calculate interrupt mask */
309 1.1 rjs ldr r0, Lspl_masks
310 1.1 rjs ldr r2, Lcurrent_spl_level
311 1.1 rjs ldr r2, [r2]
312 1.1 rjs ldr r2, [r0, r2, lsl #2]
313 1.1 rjs
314 1.1 rjs ldr r0, [pc, #_C_LABEL(saipic_base) - . - 8]
315 1.1 rjs str r2, [r0, #(SAIPIC_MR)] /* Set mask register */
316 1.1 rjs
317 1.1 rjs /* Restore old cpsr and exit */
318 1.1 rjs msr cpsr_all, r3
319 1.1 rjs mov pc, lr
320 1.1 rjs
321 1.1 rjs Lcnt:
322 1.1 rjs .word _C_LABEL(uvmexp)
323 1.1 rjs
324 1.1 rjs #ifdef IRQSTATS
325 1.1 rjs Lintrcnt:
326 1.1 rjs .word _C_LABEL(intrcnt)
327 1.1 rjs #endif
328 1.1 rjs
329 1.1 rjs Lirqhandlers:
330 1.1 rjs .word _C_LABEL(irqhandlers) /* Pointer to array of irqhandlers */
331 1.1 rjs
332 1.1 rjs Lastpending:
333 1.1 rjs .word _C_LABEL(astpending)
334 1.1 rjs
335 1.1 rjs
336 1.1 rjs
337 1.1 rjs #ifdef IRQSTATS
338 1.1 rjs .globl _C_LABEL(intrcnt), _C_LABEL(sintrcnt)
339 1.1 rjs
340 1.1 rjs _C_LABEL(intrcnt):
341 1.1 rjs .space ICU_LEN*4 /* XXX Should be linked to number of interrupts */
342 1.1 rjs
343 1.1 rjs _C_LABEL(sintrcnt):
344 1.1 rjs .space 32*4
345 1.1 rjs #endif
346