Home | History | Annotate | Line # | Download | only in iq80310
iq80310_intr.c revision 1.4.4.5
      1  1.4.4.5  nathanw /*	$NetBSD: iq80310_intr.c,v 1.4.4.5 2002/08/01 02:41:35 nathanw Exp $	*/
      2  1.4.4.2  nathanw 
      3  1.4.4.2  nathanw /*
      4  1.4.4.3  nathanw  * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
      5  1.4.4.2  nathanw  * All rights reserved.
      6  1.4.4.2  nathanw  *
      7  1.4.4.2  nathanw  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
      8  1.4.4.2  nathanw  *
      9  1.4.4.2  nathanw  * Redistribution and use in source and binary forms, with or without
     10  1.4.4.2  nathanw  * modification, are permitted provided that the following conditions
     11  1.4.4.2  nathanw  * are met:
     12  1.4.4.2  nathanw  * 1. Redistributions of source code must retain the above copyright
     13  1.4.4.2  nathanw  *    notice, this list of conditions and the following disclaimer.
     14  1.4.4.2  nathanw  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.4.4.2  nathanw  *    notice, this list of conditions and the following disclaimer in the
     16  1.4.4.2  nathanw  *    documentation and/or other materials provided with the distribution.
     17  1.4.4.2  nathanw  * 3. All advertising materials mentioning features or use of this software
     18  1.4.4.2  nathanw  *    must display the following acknowledgement:
     19  1.4.4.2  nathanw  *	This product includes software developed for the NetBSD Project by
     20  1.4.4.2  nathanw  *	Wasabi Systems, Inc.
     21  1.4.4.2  nathanw  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22  1.4.4.2  nathanw  *    or promote products derived from this software without specific prior
     23  1.4.4.2  nathanw  *    written permission.
     24  1.4.4.2  nathanw  *
     25  1.4.4.2  nathanw  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26  1.4.4.2  nathanw  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  1.4.4.2  nathanw  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  1.4.4.2  nathanw  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29  1.4.4.2  nathanw  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  1.4.4.2  nathanw  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  1.4.4.2  nathanw  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  1.4.4.2  nathanw  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  1.4.4.2  nathanw  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  1.4.4.2  nathanw  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  1.4.4.2  nathanw  * POSSIBILITY OF SUCH DAMAGE.
     36  1.4.4.2  nathanw  */
     37  1.4.4.2  nathanw 
     38  1.4.4.2  nathanw /*
     39  1.4.4.2  nathanw  * Interrupt support for the Intel IQ80310.
     40  1.4.4.2  nathanw  */
     41  1.4.4.2  nathanw 
     42  1.4.4.2  nathanw #include <sys/param.h>
     43  1.4.4.2  nathanw #include <sys/systm.h>
     44  1.4.4.2  nathanw #include <sys/malloc.h>
     45  1.4.4.2  nathanw 
     46  1.4.4.3  nathanw #include <uvm/uvm_extern.h>
     47  1.4.4.3  nathanw 
     48  1.4.4.2  nathanw #include <machine/bus.h>
     49  1.4.4.2  nathanw #include <machine/intr.h>
     50  1.4.4.3  nathanw 
     51  1.4.4.2  nathanw #include <arm/cpufunc.h>
     52  1.4.4.2  nathanw 
     53  1.4.4.2  nathanw #include <arm/xscale/i80200reg.h>
     54  1.4.4.3  nathanw #include <arm/xscale/i80200var.h>
     55  1.4.4.2  nathanw 
     56  1.4.4.2  nathanw #include <evbarm/iq80310/iq80310reg.h>
     57  1.4.4.2  nathanw #include <evbarm/iq80310/iq80310var.h>
     58  1.4.4.2  nathanw #include <evbarm/iq80310/obiovar.h>
     59  1.4.4.2  nathanw 
     60  1.4.4.3  nathanw #if defined(IOP310_TEAMASA_NPWR)
     61  1.4.4.3  nathanw /*
     62  1.4.4.3  nathanw  * We have 5 interrupt source bits -- all in XINT3.  All interrupts
     63  1.4.4.3  nathanw  * can be masked in the CPLD.
     64  1.4.4.3  nathanw  */
     65  1.4.4.3  nathanw #define	IRQ_BITS		0x1f
     66  1.4.4.3  nathanw #define	IRQ_BITS_ALWAYS_ON	0x00
     67  1.4.4.3  nathanw #else /* Default to stock IQ80310 */
     68  1.4.4.2  nathanw /*
     69  1.4.4.2  nathanw  * We have 8 interrupt source bits -- 5 in the XINT3 register, and 3
     70  1.4.4.3  nathanw  * in the XINT0 register (the upper 3).  Note that the XINT0 IRQs
     71  1.4.4.3  nathanw  * (SPCI INTA, INTB, and INTC) are always enabled, since they can not
     72  1.4.4.3  nathanw  * be masked out in the CPLD (it provides only status, not masking,
     73  1.4.4.3  nathanw  * for those interrupts).
     74  1.4.4.2  nathanw  */
     75  1.4.4.3  nathanw #define	IRQ_BITS		0xff
     76  1.4.4.3  nathanw #define	IRQ_BITS_ALWAYS_ON	0xe0
     77  1.4.4.3  nathanw #define	IRQ_READ_XINT0		1	/* XXX only if board rev >= F */
     78  1.4.4.3  nathanw #endif /* list of IQ80310-based designs */
     79  1.4.4.2  nathanw 
     80  1.4.4.3  nathanw /* Interrupt handler queues. */
     81  1.4.4.3  nathanw struct intrq intrq[NIRQ];
     82  1.4.4.2  nathanw 
     83  1.4.4.3  nathanw /* Interrupts to mask at each level. */
     84  1.4.4.3  nathanw static int imask[NIPL];
     85  1.4.4.2  nathanw 
     86  1.4.4.3  nathanw /* Current interrupt priority level. */
     87  1.4.4.3  nathanw __volatile int current_spl_level;
     88  1.4.4.2  nathanw 
     89  1.4.4.3  nathanw /* Interrupts pending. */
     90  1.4.4.3  nathanw static __volatile int ipending;
     91  1.4.4.2  nathanw 
     92  1.4.4.3  nathanw /* Software copy of the IRQs we have enabled. */
     93  1.4.4.3  nathanw uint32_t intr_enabled;
     94  1.4.4.2  nathanw 
     95  1.4.4.3  nathanw /*
     96  1.4.4.3  nathanw  * Map a software interrupt queue index (at the top of the word, and
     97  1.4.4.3  nathanw  * highest priority softintr is encountered first in an ffs()).
     98  1.4.4.3  nathanw  */
     99  1.4.4.3  nathanw #define	SI_TO_IRQBIT(si)	(1U << (31 - (si)))
    100  1.4.4.2  nathanw 
    101  1.4.4.3  nathanw /*
    102  1.4.4.3  nathanw  * Map a software interrupt queue to an interrupt priority level.
    103  1.4.4.3  nathanw  */
    104  1.4.4.3  nathanw static const int si_to_ipl[SI_NQUEUES] = {
    105  1.4.4.3  nathanw 	IPL_SOFT,		/* SI_SOFT */
    106  1.4.4.3  nathanw 	IPL_SOFTCLOCK,		/* SI_SOFTCLOCK */
    107  1.4.4.3  nathanw 	IPL_SOFTNET,		/* SI_SOFTNET */
    108  1.4.4.3  nathanw 	IPL_SOFTSERIAL,		/* SI_SOFTSERIAL */
    109  1.4.4.3  nathanw };
    110  1.4.4.2  nathanw 
    111  1.4.4.3  nathanw void	iq80310_intr_dispatch(struct clockframe *frame);
    112  1.4.4.2  nathanw 
    113  1.4.4.3  nathanw static __inline uint32_t
    114  1.4.4.2  nathanw iq80310_intstat_read(void)
    115  1.4.4.2  nathanw {
    116  1.4.4.2  nathanw 	uint32_t intstat;
    117  1.4.4.2  nathanw 
    118  1.4.4.2  nathanw 	intstat = CPLD_READ(IQ80310_XINT3_STATUS) & 0x1f;
    119  1.4.4.3  nathanw #if defined(IRQ_READ_XINT0)
    120  1.4.4.3  nathanw 	if (IRQ_READ_XINT0)
    121  1.4.4.2  nathanw 		intstat |= (CPLD_READ(IQ80310_XINT0_STATUS) & 0x7) << 5;
    122  1.4.4.3  nathanw #endif
    123  1.4.4.2  nathanw 
    124  1.4.4.3  nathanw 	/* XXX Why do we have to mask off? */
    125  1.4.4.3  nathanw 	return (intstat & intr_enabled);
    126  1.4.4.2  nathanw }
    127  1.4.4.2  nathanw 
    128  1.4.4.3  nathanw static __inline void
    129  1.4.4.3  nathanw iq80310_set_intrmask(void)
    130  1.4.4.2  nathanw {
    131  1.4.4.3  nathanw 	uint32_t disabled;
    132  1.4.4.3  nathanw 
    133  1.4.4.3  nathanw 	intr_enabled |= IRQ_BITS_ALWAYS_ON;
    134  1.4.4.2  nathanw 
    135  1.4.4.3  nathanw 	/* The XINT_MASK register sets a bit to *disable*. */
    136  1.4.4.3  nathanw 	disabled = (~intr_enabled) & IRQ_BITS;
    137  1.4.4.3  nathanw 
    138  1.4.4.3  nathanw 	CPLD_WRITE(IQ80310_XINT_MASK, disabled & 0x1f);
    139  1.4.4.3  nathanw }
    140  1.4.4.3  nathanw 
    141  1.4.4.3  nathanw static __inline void
    142  1.4.4.3  nathanw iq80310_enable_irq(int irq)
    143  1.4.4.3  nathanw {
    144  1.4.4.3  nathanw 
    145  1.4.4.3  nathanw 	intr_enabled |= (1U << irq);
    146  1.4.4.3  nathanw 	iq80310_set_intrmask();
    147  1.4.4.3  nathanw }
    148  1.4.4.3  nathanw 
    149  1.4.4.3  nathanw static __inline void
    150  1.4.4.3  nathanw iq80310_disable_irq(int irq)
    151  1.4.4.3  nathanw {
    152  1.4.4.3  nathanw 
    153  1.4.4.3  nathanw 	intr_enabled &= ~(1U << irq);
    154  1.4.4.3  nathanw 	iq80310_set_intrmask();
    155  1.4.4.3  nathanw }
    156  1.4.4.3  nathanw 
    157  1.4.4.3  nathanw /*
    158  1.4.4.3  nathanw  * NOTE: This routine must be called with interrupts disabled in the CPSR.
    159  1.4.4.3  nathanw  */
    160  1.4.4.3  nathanw static void
    161  1.4.4.3  nathanw iq80310_intr_calculate_masks(void)
    162  1.4.4.3  nathanw {
    163  1.4.4.3  nathanw 	struct intrq *iq;
    164  1.4.4.3  nathanw 	struct intrhand *ih;
    165  1.4.4.3  nathanw 	int irq, ipl;
    166  1.4.4.3  nathanw 
    167  1.4.4.3  nathanw 	/* First, figure out which IPLs each IRQ has. */
    168  1.4.4.3  nathanw 	for (irq = 0; irq < NIRQ; irq++) {
    169  1.4.4.3  nathanw 		int levels = 0;
    170  1.4.4.3  nathanw 		iq = &intrq[irq];
    171  1.4.4.3  nathanw 		iq80310_disable_irq(irq);
    172  1.4.4.3  nathanw 		for (ih = TAILQ_FIRST(&iq->iq_list); ih != NULL;
    173  1.4.4.3  nathanw 		     ih = TAILQ_NEXT(ih, ih_list))
    174  1.4.4.3  nathanw 			levels |= (1U << ih->ih_ipl);
    175  1.4.4.3  nathanw 		iq->iq_levels = levels;
    176  1.4.4.3  nathanw 	}
    177  1.4.4.3  nathanw 
    178  1.4.4.3  nathanw 	/* Next, figure out which IRQs are used by each IPL. */
    179  1.4.4.3  nathanw 	for (ipl = 0; ipl < NIPL; ipl++) {
    180  1.4.4.3  nathanw 		int irqs = 0;
    181  1.4.4.3  nathanw 		for (irq = 0; irq < NIRQ; irq++) {
    182  1.4.4.3  nathanw 			if (intrq[irq].iq_levels & (1U << ipl))
    183  1.4.4.3  nathanw 				irqs |= (1U << irq);
    184  1.4.4.3  nathanw 		}
    185  1.4.4.3  nathanw 		imask[ipl] = irqs;
    186  1.4.4.3  nathanw 	}
    187  1.4.4.3  nathanw 
    188  1.4.4.3  nathanw 	imask[IPL_NONE] = 0;
    189  1.4.4.2  nathanw 
    190  1.4.4.2  nathanw 	/*
    191  1.4.4.3  nathanw 	 * Initialize the soft interrupt masks to block themselves.
    192  1.4.4.2  nathanw 	 */
    193  1.4.4.3  nathanw 	imask[IPL_SOFT] = SI_TO_IRQBIT(SI_SOFT);
    194  1.4.4.3  nathanw 	imask[IPL_SOFTCLOCK] = SI_TO_IRQBIT(SI_SOFTCLOCK);
    195  1.4.4.3  nathanw 	imask[IPL_SOFTNET] = SI_TO_IRQBIT(SI_SOFTNET);
    196  1.4.4.3  nathanw 	imask[IPL_SOFTSERIAL] = SI_TO_IRQBIT(SI_SOFTSERIAL);
    197  1.4.4.2  nathanw 
    198  1.4.4.2  nathanw 	/*
    199  1.4.4.3  nathanw 	 * splsoftclock() is the only interface that users of the
    200  1.4.4.3  nathanw 	 * generic software interrupt facility have to block their
    201  1.4.4.3  nathanw 	 * soft intrs, so splsoftclock() must also block IPL_SOFT.
    202  1.4.4.2  nathanw 	 */
    203  1.4.4.3  nathanw 	imask[IPL_SOFTCLOCK] |= imask[IPL_SOFT];
    204  1.4.4.2  nathanw 
    205  1.4.4.3  nathanw 	/*
    206  1.4.4.3  nathanw 	 * splsoftnet() must also block splsoftclock(), since we don't
    207  1.4.4.3  nathanw 	 * want timer-driven network events to occur while we're
    208  1.4.4.3  nathanw 	 * processing incoming packets.
    209  1.4.4.3  nathanw 	 */
    210  1.4.4.3  nathanw 	imask[IPL_SOFTNET] |= imask[IPL_SOFTCLOCK];
    211  1.4.4.3  nathanw 
    212  1.4.4.3  nathanw 	/*
    213  1.4.4.3  nathanw 	 * Enforce a heirarchy that gives "slow" device (or devices with
    214  1.4.4.3  nathanw 	 * limited input buffer space/"real-time" requirements) a better
    215  1.4.4.3  nathanw 	 * chance at not dropping data.
    216  1.4.4.3  nathanw 	 */
    217  1.4.4.3  nathanw 	imask[IPL_BIO] |= imask[IPL_SOFTNET];
    218  1.4.4.3  nathanw 	imask[IPL_NET] |= imask[IPL_BIO];
    219  1.4.4.3  nathanw 	imask[IPL_SOFTSERIAL] |= imask[IPL_NET];
    220  1.4.4.3  nathanw 	imask[IPL_TTY] |= imask[IPL_SOFTSERIAL];
    221  1.4.4.3  nathanw 
    222  1.4.4.3  nathanw 	/*
    223  1.4.4.3  nathanw 	 * splvm() blocks all interrupts that use the kernel memory
    224  1.4.4.3  nathanw 	 * allocation facilities.
    225  1.4.4.3  nathanw 	 */
    226  1.4.4.3  nathanw 	imask[IPL_IMP] |= imask[IPL_TTY];
    227  1.4.4.3  nathanw 
    228  1.4.4.3  nathanw 	/*
    229  1.4.4.3  nathanw 	 * Audio devices are not allowed to perform memory allocation
    230  1.4.4.3  nathanw 	 * in their interrupt routines, and they have fairly "real-time"
    231  1.4.4.3  nathanw 	 * requirements, so give them a high interrupt priority.
    232  1.4.4.3  nathanw 	 */
    233  1.4.4.3  nathanw 	imask[IPL_AUDIO] |= imask[IPL_IMP];
    234  1.4.4.3  nathanw 
    235  1.4.4.3  nathanw 	/*
    236  1.4.4.3  nathanw 	 * splclock() must block anything that uses the scheduler.
    237  1.4.4.3  nathanw 	 */
    238  1.4.4.3  nathanw 	imask[IPL_CLOCK] |= imask[IPL_AUDIO];
    239  1.4.4.3  nathanw 
    240  1.4.4.3  nathanw 	/*
    241  1.4.4.3  nathanw 	 * No separate statclock on the IQ80310.
    242  1.4.4.3  nathanw 	 */
    243  1.4.4.3  nathanw 	imask[IPL_STATCLOCK] |= imask[IPL_CLOCK];
    244  1.4.4.3  nathanw 
    245  1.4.4.3  nathanw 	/*
    246  1.4.4.3  nathanw 	 * splhigh() must block "everything".
    247  1.4.4.3  nathanw 	 */
    248  1.4.4.3  nathanw 	imask[IPL_HIGH] |= imask[IPL_STATCLOCK];
    249  1.4.4.3  nathanw 
    250  1.4.4.3  nathanw 	/*
    251  1.4.4.3  nathanw 	 * XXX We need serial drivers to run at the absolute highest priority
    252  1.4.4.3  nathanw 	 * in order to avoid overruns, so serial > high.
    253  1.4.4.3  nathanw 	 */
    254  1.4.4.3  nathanw 	imask[IPL_SERIAL] |= imask[IPL_HIGH];
    255  1.4.4.3  nathanw 
    256  1.4.4.3  nathanw 	/*
    257  1.4.4.3  nathanw 	 * Now compute which IRQs must be blocked when servicing any
    258  1.4.4.3  nathanw 	 * given IRQ.
    259  1.4.4.3  nathanw 	 */
    260  1.4.4.3  nathanw 	for (irq = 0; irq < NIRQ; irq++) {
    261  1.4.4.3  nathanw 		int irqs = (1U << irq);
    262  1.4.4.3  nathanw 		iq = &intrq[irq];
    263  1.4.4.3  nathanw 		if (TAILQ_FIRST(&iq->iq_list) != NULL)
    264  1.4.4.3  nathanw 			iq80310_enable_irq(irq);
    265  1.4.4.3  nathanw 		for (ih = TAILQ_FIRST(&iq->iq_list); ih != NULL;
    266  1.4.4.3  nathanw 		     ih = TAILQ_NEXT(ih, ih_list))
    267  1.4.4.3  nathanw 			irqs |= imask[ih->ih_ipl];
    268  1.4.4.3  nathanw 		iq->iq_mask = irqs;
    269  1.4.4.3  nathanw 	}
    270  1.4.4.2  nathanw }
    271  1.4.4.2  nathanw 
    272  1.4.4.3  nathanw static void
    273  1.4.4.4  nathanw iq80310_do_soft(void)
    274  1.4.4.2  nathanw {
    275  1.4.4.3  nathanw 	static __cpu_simple_lock_t processing = __SIMPLELOCK_UNLOCKED;
    276  1.4.4.3  nathanw 	int new, oldirqstate;
    277  1.4.4.3  nathanw 
    278  1.4.4.3  nathanw 	if (__cpu_simple_lock_try(&processing) == 0)
    279  1.4.4.3  nathanw 		return;
    280  1.4.4.3  nathanw 
    281  1.4.4.3  nathanw 	new = current_spl_level;
    282  1.4.4.2  nathanw 
    283  1.4.4.2  nathanw 	oldirqstate = disable_interrupts(I32_bit);
    284  1.4.4.3  nathanw 
    285  1.4.4.3  nathanw #define	DO_SOFTINT(si)							\
    286  1.4.4.3  nathanw 	if ((ipending & ~new) & SI_TO_IRQBIT(si)) {			\
    287  1.4.4.3  nathanw 		ipending &= ~SI_TO_IRQBIT(si);				\
    288  1.4.4.3  nathanw 		current_spl_level |= imask[si_to_ipl[(si)]];		\
    289  1.4.4.3  nathanw 		restore_interrupts(oldirqstate);			\
    290  1.4.4.3  nathanw 		softintr_dispatch(si);					\
    291  1.4.4.3  nathanw 		oldirqstate = disable_interrupts(I32_bit);		\
    292  1.4.4.3  nathanw 		current_spl_level = new;				\
    293  1.4.4.3  nathanw 	}
    294  1.4.4.3  nathanw 
    295  1.4.4.3  nathanw 	DO_SOFTINT(SI_SOFTSERIAL);
    296  1.4.4.3  nathanw 	DO_SOFTINT(SI_SOFTNET);
    297  1.4.4.3  nathanw 	DO_SOFTINT(SI_SOFTCLOCK);
    298  1.4.4.3  nathanw 	DO_SOFTINT(SI_SOFT);
    299  1.4.4.3  nathanw 
    300  1.4.4.3  nathanw 	__cpu_simple_unlock(&processing);
    301  1.4.4.3  nathanw 
    302  1.4.4.2  nathanw 	restore_interrupts(oldirqstate);
    303  1.4.4.2  nathanw }
    304  1.4.4.2  nathanw 
    305  1.4.4.3  nathanw int
    306  1.4.4.3  nathanw _splraise(int ipl)
    307  1.4.4.2  nathanw {
    308  1.4.4.3  nathanw 	int old, oldirqstate;
    309  1.4.4.3  nathanw 
    310  1.4.4.3  nathanw 	oldirqstate = disable_interrupts(I32_bit);
    311  1.4.4.3  nathanw 	old = current_spl_level;
    312  1.4.4.3  nathanw 	current_spl_level |= imask[ipl];
    313  1.4.4.2  nathanw 
    314  1.4.4.3  nathanw 	restore_interrupts(oldirqstate);
    315  1.4.4.3  nathanw 
    316  1.4.4.3  nathanw 	return (old);
    317  1.4.4.3  nathanw }
    318  1.4.4.3  nathanw 
    319  1.4.4.3  nathanw __inline void
    320  1.4.4.3  nathanw splx(int new)
    321  1.4.4.3  nathanw {
    322  1.4.4.3  nathanw 	int old;
    323  1.4.4.3  nathanw 
    324  1.4.4.3  nathanw 	old = current_spl_level;
    325  1.4.4.3  nathanw 	current_spl_level = new;
    326  1.4.4.3  nathanw 
    327  1.4.4.4  nathanw 	/* If there are software interrupts to process, do it. */
    328  1.4.4.4  nathanw 	if ((ipending & ~IRQ_BITS) & ~new)
    329  1.4.4.4  nathanw 		iq80310_do_soft();
    330  1.4.4.4  nathanw 
    331  1.4.4.3  nathanw 	/*
    332  1.4.4.3  nathanw 	 * If there are pending hardware interrupts (i.e. the
    333  1.4.4.3  nathanw 	 * external interrupt is disabled in the ICU), and all
    334  1.4.4.3  nathanw 	 * hardware interrupts are being unblocked, then re-enable
    335  1.4.4.3  nathanw 	 * the external hardware interrupt.
    336  1.4.4.3  nathanw 	 *
    337  1.4.4.3  nathanw 	 * XXX We have to wait for ALL hardware interrupts to
    338  1.4.4.3  nathanw 	 * XXX be unblocked, because we currently lose if we
    339  1.4.4.3  nathanw 	 * XXX get nested interrupts, and I don't know why yet.
    340  1.4.4.3  nathanw 	 */
    341  1.4.4.3  nathanw 	if ((new & IRQ_BITS) == 0 && (ipending & IRQ_BITS))
    342  1.4.4.3  nathanw 		i80200_intr_enable(INTCTL_IM);
    343  1.4.4.3  nathanw }
    344  1.4.4.3  nathanw 
    345  1.4.4.3  nathanw int
    346  1.4.4.3  nathanw _spllower(int ipl)
    347  1.4.4.3  nathanw {
    348  1.4.4.3  nathanw 	int old = current_spl_level;
    349  1.4.4.3  nathanw 
    350  1.4.4.3  nathanw 	splx(imask[ipl]);
    351  1.4.4.3  nathanw 	return (old);
    352  1.4.4.2  nathanw }
    353  1.4.4.2  nathanw 
    354  1.4.4.2  nathanw void
    355  1.4.4.3  nathanw _setsoftintr(int si)
    356  1.4.4.2  nathanw {
    357  1.4.4.3  nathanw 	int oldirqstate;
    358  1.4.4.3  nathanw 
    359  1.4.4.3  nathanw 	oldirqstate = disable_interrupts(I32_bit);
    360  1.4.4.3  nathanw 	ipending |= SI_TO_IRQBIT(si);
    361  1.4.4.3  nathanw 	restore_interrupts(oldirqstate);
    362  1.4.4.2  nathanw 
    363  1.4.4.3  nathanw 	/* Process unmasked pending soft interrupts. */
    364  1.4.4.3  nathanw 	if ((ipending & ~IRQ_BITS) & ~current_spl_level)
    365  1.4.4.4  nathanw 		iq80310_do_soft();
    366  1.4.4.2  nathanw }
    367  1.4.4.2  nathanw 
    368  1.4.4.2  nathanw void
    369  1.4.4.3  nathanw iq80310_intr_init(void)
    370  1.4.4.2  nathanw {
    371  1.4.4.3  nathanw 	struct intrq *iq;
    372  1.4.4.3  nathanw 	int i;
    373  1.4.4.3  nathanw 
    374  1.4.4.3  nathanw 	/*
    375  1.4.4.3  nathanw 	 * The Secondary PCI interrupts INTA, INTB, and INTC
    376  1.4.4.3  nathanw 	 * area always enabled, since they cannot be masked
    377  1.4.4.3  nathanw 	 * in the CPLD.
    378  1.4.4.3  nathanw 	 */
    379  1.4.4.3  nathanw 	intr_enabled |= IRQ_BITS_ALWAYS_ON;
    380  1.4.4.2  nathanw 
    381  1.4.4.3  nathanw 	for (i = 0; i < NIRQ; i++) {
    382  1.4.4.3  nathanw 		iq = &intrq[i];
    383  1.4.4.3  nathanw 		TAILQ_INIT(&iq->iq_list);
    384  1.4.4.3  nathanw 
    385  1.4.4.3  nathanw 		sprintf(iq->iq_name, "irq %d", i);
    386  1.4.4.3  nathanw 		evcnt_attach_dynamic(&iq->iq_ev, EVCNT_TYPE_INTR,
    387  1.4.4.3  nathanw 		    NULL, "iq80310", iq->iq_name);
    388  1.4.4.3  nathanw 	}
    389  1.4.4.3  nathanw 
    390  1.4.4.3  nathanw 	iq80310_intr_calculate_masks();
    391  1.4.4.3  nathanw 
    392  1.4.4.3  nathanw 	/* Enable external interrupts on the i80200. */
    393  1.4.4.3  nathanw 	i80200_extirq_dispatch = iq80310_intr_dispatch;
    394  1.4.4.3  nathanw 	i80200_intr_enable(INTCTL_IM);
    395  1.4.4.3  nathanw 
    396  1.4.4.3  nathanw 	/* Enable IRQs (don't yet use FIQs). */
    397  1.4.4.3  nathanw 	enable_interrupts(I32_bit);
    398  1.4.4.2  nathanw }
    399  1.4.4.2  nathanw 
    400  1.4.4.2  nathanw void *
    401  1.4.4.2  nathanw iq80310_intr_establish(int irq, int ipl, int (*func)(void *), void *arg)
    402  1.4.4.2  nathanw {
    403  1.4.4.3  nathanw 	struct intrq *iq;
    404  1.4.4.3  nathanw 	struct intrhand *ih;
    405  1.4.4.2  nathanw 	u_int oldirqstate;
    406  1.4.4.3  nathanw 
    407  1.4.4.3  nathanw 	if (irq < 0 || irq > NIRQ)
    408  1.4.4.3  nathanw 		panic("iq80310_intr_establish: IRQ %d out of range", irq);
    409  1.4.4.2  nathanw 
    410  1.4.4.2  nathanw 	ih = malloc(sizeof(*ih), M_DEVBUF, M_NOWAIT);
    411  1.4.4.2  nathanw 	if (ih == NULL)
    412  1.4.4.2  nathanw 		return (NULL);
    413  1.4.4.2  nathanw 
    414  1.4.4.2  nathanw 	ih->ih_func = func;
    415  1.4.4.2  nathanw 	ih->ih_arg = arg;
    416  1.4.4.3  nathanw 	ih->ih_ipl = ipl;
    417  1.4.4.3  nathanw 	ih->ih_irq = irq;
    418  1.4.4.2  nathanw 
    419  1.4.4.3  nathanw 	iq = &intrq[irq];
    420  1.4.4.2  nathanw 
    421  1.4.4.3  nathanw 	/* All IQ80310 interrupts are level-triggered. */
    422  1.4.4.3  nathanw 	iq->iq_ist = IST_LEVEL;
    423  1.4.4.2  nathanw 
    424  1.4.4.3  nathanw 	oldirqstate = disable_interrupts(I32_bit);
    425  1.4.4.2  nathanw 
    426  1.4.4.3  nathanw 	TAILQ_INSERT_TAIL(&iq->iq_list, ih, ih_list);
    427  1.4.4.2  nathanw 
    428  1.4.4.3  nathanw 	iq80310_intr_calculate_masks();
    429  1.4.4.2  nathanw 
    430  1.4.4.2  nathanw 	restore_interrupts(oldirqstate);
    431  1.4.4.2  nathanw 
    432  1.4.4.2  nathanw 	return (ih);
    433  1.4.4.2  nathanw }
    434  1.4.4.2  nathanw 
    435  1.4.4.2  nathanw void
    436  1.4.4.2  nathanw iq80310_intr_disestablish(void *cookie)
    437  1.4.4.2  nathanw {
    438  1.4.4.3  nathanw 	struct intrhand *ih = cookie;
    439  1.4.4.3  nathanw 	struct intrq *iq = &intrq[ih->ih_irq];
    440  1.4.4.3  nathanw 	int oldirqstate;
    441  1.4.4.3  nathanw 
    442  1.4.4.3  nathanw 	oldirqstate = disable_interrupts(I32_bit);
    443  1.4.4.3  nathanw 
    444  1.4.4.3  nathanw 	TAILQ_REMOVE(&iq->iq_list, ih, ih_list);
    445  1.4.4.3  nathanw 
    446  1.4.4.3  nathanw 	iq80310_intr_calculate_masks();
    447  1.4.4.3  nathanw 
    448  1.4.4.3  nathanw 	restore_interrupts(oldirqstate);
    449  1.4.4.3  nathanw }
    450  1.4.4.3  nathanw 
    451  1.4.4.3  nathanw void
    452  1.4.4.3  nathanw iq80310_intr_dispatch(struct clockframe *frame)
    453  1.4.4.3  nathanw {
    454  1.4.4.3  nathanw 	struct intrq *iq;
    455  1.4.4.3  nathanw 	struct intrhand *ih;
    456  1.4.4.5  nathanw 	int oldirqstate, pcpl, irq, ibit, hwpend, rv, stray;
    457  1.4.4.5  nathanw 
    458  1.4.4.5  nathanw 	stray = 1;
    459  1.4.4.3  nathanw 
    460  1.4.4.3  nathanw 	/* First, disable external IRQs. */
    461  1.4.4.3  nathanw 	i80200_intr_disable(INTCTL_IM);
    462  1.4.4.3  nathanw 
    463  1.4.4.3  nathanw 	pcpl = current_spl_level;
    464  1.4.4.3  nathanw 
    465  1.4.4.3  nathanw 	for (hwpend = iq80310_intstat_read(); hwpend != 0;) {
    466  1.4.4.3  nathanw 		irq = ffs(hwpend) - 1;
    467  1.4.4.3  nathanw 		ibit = (1U << irq);
    468  1.4.4.3  nathanw 
    469  1.4.4.5  nathanw 		stray = 0;
    470  1.4.4.5  nathanw 
    471  1.4.4.3  nathanw 		hwpend &= ~ibit;
    472  1.4.4.3  nathanw 
    473  1.4.4.3  nathanw 		if (pcpl & ibit) {
    474  1.4.4.3  nathanw 			/*
    475  1.4.4.3  nathanw 			 * IRQ is masked; mark it as pending and check
    476  1.4.4.3  nathanw 			 * the next one.  Note: external IRQs are already
    477  1.4.4.3  nathanw 			 * disabled.
    478  1.4.4.3  nathanw 			 */
    479  1.4.4.3  nathanw 			ipending |= ibit;
    480  1.4.4.3  nathanw 			continue;
    481  1.4.4.3  nathanw 		}
    482  1.4.4.3  nathanw 
    483  1.4.4.3  nathanw 		ipending &= ~ibit;
    484  1.4.4.5  nathanw 		rv = 0;
    485  1.4.4.2  nathanw 
    486  1.4.4.3  nathanw 		iq = &intrq[irq];
    487  1.4.4.3  nathanw 		iq->iq_ev.ev_count++;
    488  1.4.4.3  nathanw 		uvmexp.intrs++;
    489  1.4.4.3  nathanw 		current_spl_level |= iq->iq_mask;
    490  1.4.4.3  nathanw 		oldirqstate = enable_interrupts(I32_bit);
    491  1.4.4.3  nathanw 		for (ih = TAILQ_FIRST(&iq->iq_list); ih != NULL;
    492  1.4.4.3  nathanw 		     ih = TAILQ_NEXT(ih, ih_list)) {
    493  1.4.4.5  nathanw 			rv |= (*ih->ih_func)(ih->ih_arg ? ih->ih_arg : frame);
    494  1.4.4.3  nathanw 		}
    495  1.4.4.3  nathanw 		restore_interrupts(oldirqstate);
    496  1.4.4.3  nathanw 
    497  1.4.4.3  nathanw 		current_spl_level = pcpl;
    498  1.4.4.5  nathanw 
    499  1.4.4.5  nathanw 		if (rv == 0)
    500  1.4.4.5  nathanw 			printf("Stray interrupt: IRQ %d\n", irq);
    501  1.4.4.3  nathanw 	}
    502  1.4.4.3  nathanw 
    503  1.4.4.5  nathanw 	if (stray)
    504  1.4.4.5  nathanw 		printf("Stray external interrupt\n");
    505  1.4.4.5  nathanw 
    506  1.4.4.3  nathanw 	/* Check for pendings soft intrs. */
    507  1.4.4.3  nathanw 	if ((ipending & ~IRQ_BITS) & ~current_spl_level) {
    508  1.4.4.3  nathanw 		oldirqstate = enable_interrupts(I32_bit);
    509  1.4.4.4  nathanw 		iq80310_do_soft();
    510  1.4.4.3  nathanw 		restore_interrupts(oldirqstate);
    511  1.4.4.3  nathanw 	}
    512  1.4.4.3  nathanw 
    513  1.4.4.3  nathanw 	/*
    514  1.4.4.3  nathanw 	 * If no hardware interrupts are masked, re-enable external
    515  1.4.4.3  nathanw 	 * interrupts.
    516  1.4.4.3  nathanw 	 */
    517  1.4.4.3  nathanw 	if ((ipending & IRQ_BITS) == 0)
    518  1.4.4.3  nathanw 		i80200_intr_enable(INTCTL_IM);
    519  1.4.4.2  nathanw }
    520