/* $NetBSD: intr.c,v 1.19 2012/07/27 05:36:10 matt Exp $ */ /* * Copyright (c) 1994-1998 Mark Brinicombe. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Mark Brinicombe * for the NetBSD Project. * 4. The name of the company nor the name of the author may be used to * endorse or promote products derived from this software without specific * prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * Soft interrupt and other generic interrupt functions. */ #include __KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.19 2012/07/27 05:36:10 matt Exp $"); #include "opt_irqstats.h" #include "opt_cputypes.h" #include #include #include #include #include #include #include volatile u_int soft_interrupts = 0; extern int softintr_dispatch(int); /* Generate soft interrupt counts if IRQSTATS is defined */ #ifdef IRQSTATS extern u_int sintrcnt[]; #define INC_SINTRCNT(x) ++sintrcnt[x] #else #define INC_SINTRCNT(x) #endif /* IRQSTATS */ /* Prototypes */ #include "com.h" #if NCOM > 0 extern void comsoft(void); #endif /* NCOM > 0 */ #if defined(CPU_SA1100) || defined(CPU_SA1110) #include "sacom.h" #if NSACOM > 0 extern void sacomsoft(void); #endif /* NSACOM > 0 */ #endif /* Eventually these will become macros */ #ifdef __HAVE_FAST_SOFTINTS void setsoftintr(u_int); void clearsoftintr(u_int); void dosoftints(void); void setsoftintr(u_int intrmask) { atomic_or_uint(&soft_interrupts, intrmask); } void clearsoftintr(u_int intrmask) { atomic_and_uint(&soft_interrupts, ~intrmask); } void setsoftnet(void) { atomic_or_uint(&soft_interrupts, SOFTIRQ_BIT(SOFTIRQ_NET)); } #endif void set_spl_masks(void); u_int spl_masks[_SPL_LEVELS + 1]; u_int spl_smasks[_SPL_LEVELS]; #ifdef __HAVE_FAST_SOFTINTS /* Handle software interrupts */ void dosoftints(void) { u_int softints; int s; softintr_dispatch(curcpu()->ci_cpl); } #endif void set_spl_masks(void) { int loop; for (loop = 0; loop < _SPL_LEVELS; ++loop) spl_smasks[loop] = 0; for (loop = 0; loop <= _SPL_SOFTCLOCK; loop++) spl_masks[loop] = imask[IPL_SOFTCLOCK]; spl_masks[_SPL_SOFTBIO] = imask[IPL_SOFTBIO]; spl_masks[_SPL_SOFTNET] = imask[IPL_SOFTNET]; spl_masks[_SPL_SOFTSERIAL] = imask[IPL_SOFTSERIAL]; spl_masks[_SPL_VM] = imask[IPL_VM]; spl_masks[_SPL_SCHED] = imask[IPL_SCHED]; spl_masks[_SPL_HIGH] = imask[IPL_HIGH]; spl_masks[_SPL_LEVELS] = 0; spl_smasks[_SPL_0] = 0xffffffff; for (loop = 0; loop < _SPL_SOFTSERIAL; ++loop) spl_smasks[loop] |= SOFTIRQ_BIT(SOFTIRQ_SERIAL); for (loop = 0; loop < _SPL_SOFTNET; ++loop) spl_smasks[loop] |= SOFTIRQ_BIT(SOFTIRQ_NET); for (loop = 0; loop < _SPL_SOFTBIO; ++loop) spl_smasks[loop] |= SOFTIRQ_BIT(SOFTIRQ_BIO); for (loop = 0; loop < _SPL_SOFTCLOCK; ++loop) spl_smasks[loop] |= SOFTIRQ_BIT(SOFTIRQ_CLOCK); } int ipl_to_spl(ipl_t ipl) { switch (ipl) { case IPL_NONE: return _SPL_0; case IPL_SOFTCLOCK: return _SPL_SOFTCLOCK; case IPL_SOFTNET: return _SPL_SOFTNET; case IPL_SOFTBIO: return _SPL_SOFTBIO; case IPL_SOFTSERIAL: return _SPL_SOFTSERIAL; case IPL_VM: return _SPL_VM; case IPL_SCHED: return _SPL_SCHED; case IPL_HIGH: return _SPL_HIGH; default: panic("bogus ipl %d", ipl); } } #ifdef DIAGNOSTIC void dump_spl_masks(void); void dump_spl_masks(void) { int loop; for (loop = 0; loop < _SPL_LEVELS; ++loop) { printf("spl_masks[%d]=%08x spl_smasks[%d]=%08x\n", loop, spl_masks[loop], loop, spl_smasks[loop]); } } #endif /* End of intr.c */