ixp425_intr.c revision 1.23.12.1 1 1.23.12.1 tls /* $NetBSD: ixp425_intr.c,v 1.23.12.1 2012/11/20 03:01:08 tls Exp $ */
2 1.1 ichiro
3 1.1 ichiro /*
4 1.1 ichiro * Copyright (c) 2003
5 1.1 ichiro * Ichiro FUKUHARA <ichiro (at) ichiro.org>.
6 1.1 ichiro * All rights reserved.
7 1.1 ichiro *
8 1.1 ichiro * Redistribution and use in source and binary forms, with or without
9 1.1 ichiro * modification, are permitted provided that the following conditions
10 1.1 ichiro * are met:
11 1.1 ichiro * 1. Redistributions of source code must retain the above copyright
12 1.1 ichiro * notice, this list of conditions and the following disclaimer.
13 1.1 ichiro * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 ichiro * notice, this list of conditions and the following disclaimer in the
15 1.1 ichiro * documentation and/or other materials provided with the distribution.
16 1.1 ichiro *
17 1.1 ichiro * THIS SOFTWARE IS PROVIDED BY ICHIRO FUKUHARA ``AS IS'' AND ANY EXPRESS OR
18 1.1 ichiro * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 1.1 ichiro * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 1.1 ichiro * IN NO EVENT SHALL ICHIRO FUKUHARA OR THE VOICES IN HIS HEAD BE LIABLE FOR
21 1.1 ichiro * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 1.1 ichiro * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 1.1 ichiro * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 1.1 ichiro * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 1.1 ichiro * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 1.1 ichiro * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 1.1 ichiro * SUCH DAMAGE.
28 1.1 ichiro */
29 1.1 ichiro /*
30 1.1 ichiro * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
31 1.1 ichiro * All rights reserved.
32 1.1 ichiro *
33 1.1 ichiro * Written by Jason R. Thorpe for Wasabi Systems, Inc.
34 1.1 ichiro *
35 1.1 ichiro * Redistribution and use in source and binary forms, with or without
36 1.1 ichiro * modification, are permitted provided that the following conditions
37 1.1 ichiro * are met:
38 1.1 ichiro * 1. Redistributions of source code must retain the above copyright
39 1.1 ichiro * notice, this list of conditions and the following disclaimer.
40 1.1 ichiro * 2. Redistributions in binary form must reproduce the above copyright
41 1.1 ichiro * notice, this list of conditions and the following disclaimer in the
42 1.1 ichiro * documentation and/or other materials provided with the distribution.
43 1.1 ichiro * 3. All advertising materials mentioning features or use of this software
44 1.1 ichiro * must display the following acknowledgement:
45 1.1 ichiro * This product includes software developed for the NetBSD Project by
46 1.1 ichiro * Wasabi Systems, Inc.
47 1.1 ichiro * 4. The name of Wasabi Systems, Inc. may not be used to endorse
48 1.1 ichiro * or promote products derived from this software without specific prior
49 1.1 ichiro * written permission.
50 1.1 ichiro *
51 1.1 ichiro * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
52 1.1 ichiro * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
53 1.1 ichiro * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
54 1.1 ichiro * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
55 1.1 ichiro * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
56 1.1 ichiro * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
57 1.1 ichiro * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
58 1.1 ichiro * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
59 1.1 ichiro * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
60 1.1 ichiro * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
61 1.1 ichiro * POSSIBILITY OF SUCH DAMAGE.
62 1.1 ichiro */
63 1.1 ichiro
64 1.1 ichiro #include <sys/cdefs.h>
65 1.23.12.1 tls __KERNEL_RCSID(0, "$NetBSD: ixp425_intr.c,v 1.23.12.1 2012/11/20 03:01:08 tls Exp $");
66 1.1 ichiro
67 1.1 ichiro #ifndef EVBARM_SPL_NOINLINE
68 1.1 ichiro #define EVBARM_SPL_NOINLINE
69 1.1 ichiro #endif
70 1.1 ichiro
71 1.1 ichiro /*
72 1.1 ichiro * Interrupt support for the Intel IXP425 NetworkProcessor.
73 1.1 ichiro */
74 1.1 ichiro
75 1.1 ichiro #include <sys/param.h>
76 1.1 ichiro #include <sys/systm.h>
77 1.1 ichiro #include <sys/malloc.h>
78 1.1 ichiro
79 1.23 dyoung #include <sys/bus.h>
80 1.1 ichiro #include <machine/intr.h>
81 1.1 ichiro
82 1.1 ichiro #include <arm/cpufunc.h>
83 1.1 ichiro
84 1.1 ichiro #include <arm/xscale/ixp425reg.h>
85 1.1 ichiro #include <arm/xscale/ixp425var.h>
86 1.1 ichiro
87 1.1 ichiro /* Interrupt handler queues. */
88 1.1 ichiro struct intrq intrq[NIRQ];
89 1.1 ichiro
90 1.1 ichiro /* Interrupts to mask at each level. */
91 1.1 ichiro int ixp425_imask[NIPL];
92 1.1 ichiro
93 1.1 ichiro /* Interrupts pending. */
94 1.12 perry volatile int ixp425_ipending;
95 1.1 ichiro
96 1.1 ichiro /* Software copy of the IRQs we have enabled. */
97 1.12 perry volatile uint32_t intr_enabled;
98 1.1 ichiro
99 1.1 ichiro /* Mask if interrupts steered to FIQs. */
100 1.1 ichiro uint32_t intr_steer;
101 1.1 ichiro
102 1.18 matt #ifdef __HAVE_FAST_SOFTINTS
103 1.1 ichiro /*
104 1.1 ichiro * Map a software interrupt queue index
105 1.9 scw *
106 1.9 scw * XXX: !NOTE! :XXX
107 1.9 scw * We 'borrow' bits from the interrupt status register for interrupt sources
108 1.9 scw * which are not used by the current IXP425 port. Should any of the following
109 1.9 scw * interrupt sources be used at some future time, this must be revisited.
110 1.9 scw *
111 1.9 scw * Bit#31: SW Interrupt 1
112 1.9 scw * Bit#30: SW Interrupt 0
113 1.9 scw * Bit#14: Timestamp Timer
114 1.9 scw * Bit#11: General-purpose Timer 1
115 1.9 scw */
116 1.1 ichiro static const uint32_t si_to_irqbit[SI_NQUEUES] = {
117 1.1 ichiro IXP425_INT_bit31, /* SI_SOFT */
118 1.1 ichiro IXP425_INT_bit30, /* SI_SOFTCLOCK */
119 1.9 scw IXP425_INT_bit14, /* SI_SOFTNET */
120 1.9 scw IXP425_INT_bit11, /* SI_SOFTSERIAL */
121 1.1 ichiro };
122 1.1 ichiro
123 1.1 ichiro #define SI_TO_IRQBIT(si) (1U << si_to_irqbit[(si)])
124 1.1 ichiro
125 1.1 ichiro /*
126 1.1 ichiro * Map a software interrupt queue to an interrupt priority level.
127 1.1 ichiro */
128 1.18 matt static const int si_to_ipl[] = {
129 1.18 matt [SI_SOFTCLOCK] = IPL_SOFTCLOCK,
130 1.18 matt [SI_SOFTBIO] = IPL_SOFTBIO,
131 1.18 matt [SI_SOFTNET] = IPL_SOFTNET,
132 1.18 matt [SI_SOFTSERIAL] = IPL_SOFTSERIAL,
133 1.1 ichiro };
134 1.18 matt #endif /* __HAVE_FAST_SOFTINTS */
135 1.1 ichiro void ixp425_intr_dispatch(struct clockframe *frame);
136 1.1 ichiro
137 1.12 perry static inline uint32_t
138 1.1 ichiro ixp425_irq_read(void)
139 1.1 ichiro {
140 1.1 ichiro return IXPREG(IXP425_INT_STATUS) & intr_enabled;
141 1.1 ichiro }
142 1.1 ichiro
143 1.12 perry static inline void
144 1.1 ichiro ixp425_set_intrsteer(void)
145 1.1 ichiro {
146 1.1 ichiro IXPREG(IXP425_INT_SELECT) = intr_steer & IXP425_INT_HWMASK;
147 1.1 ichiro }
148 1.1 ichiro
149 1.12 perry static inline void
150 1.1 ichiro ixp425_enable_irq(int irq)
151 1.1 ichiro {
152 1.1 ichiro
153 1.1 ichiro intr_enabled |= (1U << irq);
154 1.1 ichiro ixp425_set_intrmask();
155 1.1 ichiro }
156 1.1 ichiro
157 1.12 perry static inline void
158 1.1 ichiro ixp425_disable_irq(int irq)
159 1.1 ichiro {
160 1.1 ichiro
161 1.1 ichiro intr_enabled &= ~(1U << irq);
162 1.1 ichiro ixp425_set_intrmask();
163 1.1 ichiro }
164 1.1 ichiro
165 1.23.12.1 tls static inline uint32_t
166 1.4 scw ixp425_irq2gpio_bit(int irq)
167 1.4 scw {
168 1.4 scw
169 1.23.12.1 tls static const uint8_t int2gpio[32] __attribute__ ((aligned(32))) = {
170 1.4 scw 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* INT#0 -> INT#5 */
171 1.4 scw 0x00, 0x01, /* GPIO#0 -> GPIO#1 */
172 1.4 scw 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* INT#8 -> INT#13 */
173 1.4 scw 0xff, 0xff, 0xff, 0xff, 0xff, /* INT#14 -> INT#18 */
174 1.4 scw 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* GPIO#2 -> GPIO#7 */
175 1.4 scw 0x08, 0x09, 0x0a, 0x0b, 0x0c, /* GPIO#8 -> GPIO#12 */
176 1.4 scw 0xff, 0xff /* INT#30 -> INT#31 */
177 1.4 scw };
178 1.4 scw
179 1.4 scw #ifdef DEBUG
180 1.4 scw if (int2gpio[irq] == 0xff)
181 1.4 scw panic("ixp425_irq2gpio_bit: bad GPIO irq: %d\n", irq);
182 1.4 scw #endif
183 1.4 scw return (1U << int2gpio[irq]);
184 1.4 scw }
185 1.4 scw
186 1.1 ichiro /*
187 1.1 ichiro * NOTE: This routine must be called with interrupts disabled in the CPSR.
188 1.1 ichiro */
189 1.1 ichiro static void
190 1.1 ichiro ixp425_intr_calculate_masks(void)
191 1.1 ichiro {
192 1.1 ichiro struct intrq *iq;
193 1.1 ichiro struct intrhand *ih;
194 1.1 ichiro int irq, ipl;
195 1.1 ichiro
196 1.1 ichiro /* First, figure out which IPLs each IRQ has. */
197 1.1 ichiro for (irq = 0; irq < NIRQ; irq++) {
198 1.1 ichiro int levels = 0;
199 1.1 ichiro iq = &intrq[irq];
200 1.1 ichiro ixp425_disable_irq(irq);
201 1.1 ichiro for (ih = TAILQ_FIRST(&iq->iq_list); ih != NULL;
202 1.1 ichiro ih = TAILQ_NEXT(ih, ih_list))
203 1.1 ichiro levels |= (1U << ih->ih_ipl);
204 1.1 ichiro iq->iq_levels = levels;
205 1.1 ichiro }
206 1.1 ichiro
207 1.1 ichiro /* Next, figure out which IRQs are used by each IPL. */
208 1.1 ichiro for (ipl = 0; ipl < NIPL; ipl++) {
209 1.1 ichiro int irqs = 0;
210 1.1 ichiro for (irq = 0; irq < NIRQ; irq++) {
211 1.1 ichiro if (intrq[irq].iq_levels & (1U << ipl))
212 1.1 ichiro irqs |= (1U << irq);
213 1.1 ichiro }
214 1.1 ichiro ixp425_imask[ipl] = irqs;
215 1.1 ichiro }
216 1.1 ichiro
217 1.18 matt KASSERT(ixp425_imask[IPL_NONE] == 0);
218 1.1 ichiro
219 1.18 matt #ifdef __HAVE_FAST_SOFTINTS
220 1.1 ichiro /*
221 1.1 ichiro * Initialize the soft interrupt masks to block themselves.
222 1.1 ichiro */
223 1.1 ichiro ixp425_imask[IPL_SOFTCLOCK] = SI_TO_IRQBIT(SI_SOFTCLOCK);
224 1.16 ad ixp425_imask[IPL_SOFTBIO] = SI_TO_IRQBIT(SI_SOFTBIO);
225 1.1 ichiro ixp425_imask[IPL_SOFTNET] = SI_TO_IRQBIT(SI_SOFTNET);
226 1.1 ichiro ixp425_imask[IPL_SOFTSERIAL] = SI_TO_IRQBIT(SI_SOFTSERIAL);
227 1.21 tsutsui #else
228 1.21 tsutsui KASSERT(ixp425_imask[IPL_SOFTCLOCK] == 0);
229 1.21 tsutsui KASSERT(ixp425_imask[IPL_SOFTBIO] == 0);
230 1.21 tsutsui KASSERT(ixp425_imask[IPL_SOFTNET] == 0);
231 1.21 tsutsui KASSERT(ixp425_imask[IPL_SOFTSERIAL] == 0);
232 1.18 matt #endif
233 1.1 ichiro
234 1.1 ichiro /*
235 1.15 wiz * Enforce a hierarchy that gives "slow" device (or devices with
236 1.1 ichiro * limited input buffer space/"real-time" requirements) a better
237 1.1 ichiro * chance at not dropping data.
238 1.1 ichiro */
239 1.16 ad ixp425_imask[IPL_SCHED] |= ixp425_imask[IPL_VM];
240 1.16 ad ixp425_imask[IPL_HIGH] |= ixp425_imask[IPL_SCHED];
241 1.1 ichiro
242 1.1 ichiro /*
243 1.1 ichiro * Now compute which IRQs must be blocked when servicing any
244 1.1 ichiro * given IRQ.
245 1.1 ichiro */
246 1.1 ichiro for (irq = 0; irq < NIRQ; irq++) {
247 1.1 ichiro int irqs = (1U << irq);
248 1.1 ichiro iq = &intrq[irq];
249 1.1 ichiro if (TAILQ_FIRST(&iq->iq_list) != NULL)
250 1.1 ichiro ixp425_enable_irq(irq);
251 1.1 ichiro for (ih = TAILQ_FIRST(&iq->iq_list); ih != NULL;
252 1.1 ichiro ih = TAILQ_NEXT(ih, ih_list))
253 1.1 ichiro irqs |= ixp425_imask[ih->ih_ipl];
254 1.1 ichiro iq->iq_mask = irqs;
255 1.1 ichiro }
256 1.1 ichiro }
257 1.1 ichiro
258 1.1 ichiro void
259 1.1 ichiro splx(int new)
260 1.1 ichiro {
261 1.1 ichiro ixp425_splx(new);
262 1.1 ichiro }
263 1.1 ichiro
264 1.1 ichiro int
265 1.1 ichiro _spllower(int ipl)
266 1.1 ichiro {
267 1.1 ichiro return (ixp425_spllower(ipl));
268 1.1 ichiro }
269 1.1 ichiro
270 1.1 ichiro int
271 1.1 ichiro _splraise(int ipl)
272 1.1 ichiro {
273 1.1 ichiro return (ixp425_splraise(ipl));
274 1.1 ichiro }
275 1.1 ichiro
276 1.1 ichiro /*
277 1.1 ichiro * ixp425_icu_init:
278 1.1 ichiro *
279 1.1 ichiro * Called early in bootstrap to make clear interrupt register
280 1.1 ichiro */
281 1.1 ichiro void
282 1.1 ichiro ixp425_icu_init(void)
283 1.1 ichiro {
284 1.1 ichiro
285 1.1 ichiro intr_enabled = 0; /* All interrupts disabled */
286 1.1 ichiro ixp425_set_intrmask();
287 1.1 ichiro
288 1.1 ichiro intr_steer = 0; /* All interrupts steered to IRQ */
289 1.1 ichiro ixp425_set_intrsteer();
290 1.1 ichiro }
291 1.1 ichiro
292 1.1 ichiro /*
293 1.1 ichiro * ixp425_intr_init:
294 1.1 ichiro *
295 1.1 ichiro * Initialize the rest of the interrupt subsystem, making it
296 1.1 ichiro * ready to handle interrupts from devices.
297 1.1 ichiro */
298 1.1 ichiro void
299 1.1 ichiro ixp425_intr_init(void)
300 1.1 ichiro {
301 1.1 ichiro struct intrq *iq;
302 1.1 ichiro int i;
303 1.1 ichiro
304 1.1 ichiro intr_enabled = 0;
305 1.1 ichiro
306 1.1 ichiro for (i = 0; i < NIRQ; i++) {
307 1.1 ichiro iq = &intrq[i];
308 1.1 ichiro TAILQ_INIT(&iq->iq_list);
309 1.1 ichiro
310 1.1 ichiro sprintf(iq->iq_name, "irq %d", i);
311 1.1 ichiro }
312 1.1 ichiro
313 1.1 ichiro ixp425_intr_calculate_masks();
314 1.1 ichiro
315 1.1 ichiro /* Enable IRQs (don't yet use FIQs). */
316 1.1 ichiro enable_interrupts(I32_bit);
317 1.1 ichiro }
318 1.1 ichiro
319 1.23.12.1 tls void
320 1.23.12.1 tls ixp425_intr_evcnt_attach(void)
321 1.23.12.1 tls {
322 1.23.12.1 tls struct intrq *iq;
323 1.23.12.1 tls int i;
324 1.23.12.1 tls
325 1.23.12.1 tls for (i = 0; i < NIRQ; i++) {
326 1.23.12.1 tls iq = &intrq[i];
327 1.23.12.1 tls evcnt_attach_dynamic(&iq->iq_ev, EVCNT_TYPE_INTR,
328 1.23.12.1 tls NULL, "ixp425", iq->iq_name);
329 1.23.12.1 tls }
330 1.23.12.1 tls }
331 1.23.12.1 tls
332 1.1 ichiro void *
333 1.1 ichiro ixp425_intr_establish(int irq, int ipl, int (*func)(void *), void *arg)
334 1.1 ichiro {
335 1.1 ichiro struct intrq *iq;
336 1.1 ichiro struct intrhand *ih;
337 1.1 ichiro u_int oldirqstate;
338 1.1 ichiro
339 1.1 ichiro if (irq < 0 || irq > NIRQ)
340 1.1 ichiro panic("ixp425_intr_establish: IRQ %d out of range", irq);
341 1.1 ichiro #ifdef DEBUG
342 1.1 ichiro printf("ixp425_intr_establish(irq=%d, ipl=%d, func=%08x, arg=%08x)\n",
343 1.23.12.1 tls irq, ipl, (uint32_t) func, (uint32_t) arg);
344 1.1 ichiro #endif
345 1.1 ichiro
346 1.1 ichiro ih = malloc(sizeof(*ih), M_DEVBUF, M_NOWAIT);
347 1.1 ichiro if (ih == NULL)
348 1.1 ichiro return (NULL);
349 1.1 ichiro
350 1.1 ichiro ih->ih_func = func;
351 1.1 ichiro ih->ih_arg = arg;
352 1.1 ichiro ih->ih_ipl = ipl;
353 1.1 ichiro ih->ih_irq = irq;
354 1.1 ichiro
355 1.1 ichiro iq = &intrq[irq];
356 1.1 ichiro
357 1.1 ichiro /* All IXP425 interrupts are level-triggered. */
358 1.1 ichiro iq->iq_ist = IST_LEVEL; /* XXX */
359 1.1 ichiro
360 1.1 ichiro oldirqstate = disable_interrupts(I32_bit);
361 1.1 ichiro
362 1.1 ichiro TAILQ_INSERT_TAIL(&iq->iq_list, ih, ih_list);
363 1.1 ichiro
364 1.1 ichiro ixp425_intr_calculate_masks();
365 1.1 ichiro
366 1.1 ichiro restore_interrupts(oldirqstate);
367 1.1 ichiro
368 1.1 ichiro return (ih);
369 1.1 ichiro }
370 1.1 ichiro
371 1.1 ichiro void
372 1.1 ichiro ixp425_intr_disestablish(void *cookie)
373 1.1 ichiro {
374 1.1 ichiro struct intrhand *ih = cookie;
375 1.1 ichiro struct intrq *iq = &intrq[ih->ih_irq];
376 1.1 ichiro int oldirqstate;
377 1.1 ichiro
378 1.1 ichiro oldirqstate = disable_interrupts(I32_bit);
379 1.1 ichiro
380 1.1 ichiro TAILQ_REMOVE(&iq->iq_list, ih, ih_list);
381 1.1 ichiro
382 1.1 ichiro ixp425_intr_calculate_masks();
383 1.1 ichiro
384 1.1 ichiro restore_interrupts(oldirqstate);
385 1.1 ichiro }
386 1.1 ichiro
387 1.1 ichiro void
388 1.1 ichiro ixp425_intr_dispatch(struct clockframe *frame)
389 1.1 ichiro {
390 1.1 ichiro struct intrq *iq;
391 1.1 ichiro struct intrhand *ih;
392 1.19 matt int oldirqstate, irq, ibit, hwpend;
393 1.19 matt struct cpu_info * const ci = curcpu();
394 1.19 matt const int ppl = ci->ci_cpl;
395 1.19 matt const uint32_t imask = ixp425_imask[ppl];
396 1.1 ichiro
397 1.1 ichiro hwpend = ixp425_irq_read();
398 1.1 ichiro
399 1.1 ichiro /*
400 1.1 ichiro * Disable all the interrupts that are pending. We will
401 1.1 ichiro * reenable them once they are processed and not masked.
402 1.1 ichiro */
403 1.1 ichiro intr_enabled &= ~hwpend;
404 1.1 ichiro ixp425_set_intrmask();
405 1.1 ichiro
406 1.1 ichiro while (hwpend != 0) {
407 1.1 ichiro irq = ffs(hwpend) - 1;
408 1.1 ichiro ibit = (1U << irq);
409 1.1 ichiro
410 1.1 ichiro hwpend &= ~ibit;
411 1.1 ichiro
412 1.19 matt if (imask & ibit) {
413 1.1 ichiro /*
414 1.1 ichiro * IRQ is masked; mark it as pending and check
415 1.1 ichiro * the next one. Note: the IRQ is already disabled.
416 1.1 ichiro */
417 1.1 ichiro ixp425_ipending |= ibit;
418 1.1 ichiro continue;
419 1.1 ichiro }
420 1.1 ichiro
421 1.1 ichiro ixp425_ipending &= ~ibit;
422 1.1 ichiro
423 1.1 ichiro iq = &intrq[irq];
424 1.1 ichiro iq->iq_ev.ev_count++;
425 1.22 matt ci->ci_data.cpu_nintr++;
426 1.4 scw
427 1.4 scw /* Clear down non-level triggered GPIO interrupts now */
428 1.4 scw if ((ibit & IXP425_INT_GPIOMASK) && iq->iq_ist != IST_LEVEL) {
429 1.4 scw IXPREG(IXP425_GPIO_VBASE + IXP425_GPIO_GPISR) =
430 1.4 scw ixp425_irq2gpio_bit(irq);
431 1.4 scw }
432 1.4 scw
433 1.19 matt TAILQ_FOREACH(ih, &iq->iq_list, ih_list) {
434 1.19 matt ci->ci_cpl = ih->ih_ipl;
435 1.19 matt oldirqstate = enable_interrupts(I32_bit);
436 1.7 scw (void) (*ih->ih_func)(ih->ih_arg ? ih->ih_arg : frame);
437 1.19 matt restore_interrupts(oldirqstate);
438 1.1 ichiro }
439 1.4 scw
440 1.4 scw /* Clear down level triggered GPIO interrupts now */
441 1.4 scw if ((ibit & IXP425_INT_GPIOMASK) && iq->iq_ist == IST_LEVEL) {
442 1.4 scw IXPREG(IXP425_GPIO_VBASE + IXP425_GPIO_GPISR) =
443 1.4 scw ixp425_irq2gpio_bit(irq);
444 1.4 scw }
445 1.1 ichiro
446 1.19 matt ci->ci_cpl = ppl;
447 1.1 ichiro
448 1.1 ichiro /* Re-enable this interrupt now that's it's cleared. */
449 1.1 ichiro intr_enabled |= ibit;
450 1.1 ichiro ixp425_set_intrmask();
451 1.8 scw
452 1.8 scw /*
453 1.8 scw * Don't forget to include interrupts which may have
454 1.8 scw * arrived in the meantime.
455 1.8 scw */
456 1.19 matt hwpend |= ((ixp425_ipending & IXP425_INT_HWMASK) & ~imask);
457 1.1 ichiro }
458 1.1 ichiro
459 1.18 matt #ifdef __HAVE_FAST_SOFTINTS
460 1.19 matt cpu_dosoftints();
461 1.18 matt #endif
462 1.1 ichiro }
463