Home | History | Annotate | Line # | Download | only in include
intr.h revision 1.21
      1  1.21  nisimura /*	$NetBSD: intr.h,v 1.21 2001/08/22 06:59:44 nisimura Exp $	*/
      2   1.2     perry 
      3   1.3  jonathan /*
      4   1.3  jonathan  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
      5   1.3  jonathan  *
      6   1.3  jonathan  * Redistribution and use in source and binary forms, with or without
      7   1.3  jonathan  * modification, are permitted provided that the following conditions
      8   1.3  jonathan  * are met:
      9   1.3  jonathan  * 1. Redistributions of source code must retain the above copyright
     10   1.3  jonathan  *    notice, this list of conditions and the following disclaimer.
     11   1.3  jonathan  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.3  jonathan  *    notice, this list of conditions and the following disclaimer in the
     13   1.3  jonathan  *    documentation and/or other materials provided with the distribution.
     14   1.3  jonathan  * 3. All advertising materials mentioning features or use of this software
     15   1.3  jonathan  *    must display the following acknowledgement:
     16   1.3  jonathan  *	This product includes software developed by Jonathan Stone for
     17   1.3  jonathan  *      the NetBSD Project.
     18   1.3  jonathan  * 4. The name of the author may not be used to endorse or promote products
     19   1.3  jonathan  *    derived from this software without specific prior written permission.
     20   1.3  jonathan  *
     21   1.3  jonathan  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.3  jonathan  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.3  jonathan  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.3  jonathan  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.3  jonathan  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.3  jonathan  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.3  jonathan  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.3  jonathan  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.3  jonathan  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.3  jonathan  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.3  jonathan  */
     32   1.1  jonathan 
     33   1.1  jonathan #ifndef _PMAX_INTR_H_
     34   1.1  jonathan #define _PMAX_INTR_H_
     35   1.4  jonathan 
     36  1.21  nisimura #include <sys/device.h>
     37  1.21  nisimura #include <sys/lock.h>
     38  1.21  nisimura #include <sys/queue.h>
     39  1.21  nisimura 
     40   1.4  jonathan #define	IPL_NONE	0	/* disable only this interrupt */
     41  1.21  nisimura 
     42  1.21  nisimura #define	IPL_SOFT	1	/* generic software interrupts (SI 0) */
     43  1.21  nisimura #define	IPL_SOFTCLOCK	2	/* clock software interrupts (SI 0) */
     44  1.21  nisimura #define	IPL_SOFTNET	3	/* network software interrupts (SI 1) */
     45  1.21  nisimura #define	IPL_SOFTSERIAL	4	/* serial software interrupts (SI 1) */
     46  1.21  nisimura 
     47  1.21  nisimura #define	IPL_BIO		5	/* disable block I/O interrupts */
     48  1.21  nisimura #define	IPL_NET		6	/* disable network interrupts */
     49  1.21  nisimura #define	IPL_TTY		7	/* disable terminal interrupts */
     50  1.21  nisimura #define	IPL_SERIAL	7	/* disable serial interrupts */
     51  1.21  nisimura #define	IPL_CLOCK	8	/* disable clock interrupts */
     52   1.4  jonathan #define	IPL_HIGH	8	/* disable all interrupts */
     53   1.4  jonathan 
     54  1.21  nisimura #define	_IPL_NSOFT	4
     55  1.21  nisimura #define	_IPL_N		9
     56  1.21  nisimura 
     57  1.21  nisimura #define	_IPL_SI0_FIRST	IPL_SOFT
     58  1.21  nisimura #define	_IPL_SI0_LAST	IPL_SOFTCLOCK
     59  1.21  nisimura 
     60  1.21  nisimura #define	_IPL_SI1_FIRST	IPL_SOFTNET
     61  1.21  nisimura #define	_IPL_SI1_LAST	IPL_SOFTSERIAL
     62  1.21  nisimura 
     63  1.21  nisimura #define	IPL_SOFTNAMES {							\
     64  1.21  nisimura 	"misc",								\
     65  1.21  nisimura 	"clock",							\
     66  1.21  nisimura 	"net",								\
     67  1.21  nisimura 	"serial",							\
     68  1.21  nisimura }
     69  1.21  nisimura 
     70   1.5  nisimura #ifdef _KERNEL
     71   1.5  nisimura #ifndef _LOCORE
     72   1.5  nisimura 
     73  1.21  nisimura extern const u_int32_t ipl_si_to_sr[_IPL_NSOFT];
     74  1.21  nisimura 
     75   1.6  nisimura #include <mips/cpuregs.h>
     76   1.6  nisimura 
     77   1.9    simonb int	_splraise __P((int));
     78   1.9    simonb int	_spllower __P((int));
     79   1.9    simonb int	_splset __P((int));
     80   1.9    simonb int	_splget __P((void));
     81   1.9    simonb void	_splnone __P((void));
     82   1.9    simonb void	_setsoftintr __P((int));
     83   1.9    simonb void	_clrsoftintr __P((int));
     84   1.6  nisimura 
     85   1.6  nisimura #define splhigh()	_splraise(MIPS_INT_MASK)
     86   1.6  nisimura #define spl0()		(void)_spllower(0)
     87   1.6  nisimura #define splx(s)		(void)_splset(s)
     88   1.6  nisimura #define splbio()	(_splraise(splvec.splbio))
     89   1.6  nisimura #define splnet()	(_splraise(splvec.splnet))
     90   1.6  nisimura #define spltty()	(_splraise(splvec.spltty))
     91  1.19   thorpej #define splvm()		(_splraise(splvec.splvm))
     92   1.6  nisimura #define splclock()	(_splraise(splvec.splclock))
     93   1.6  nisimura #define splstatclock()	(_splraise(splvec.splstatclock))
     94   1.8   thorpej #define spllowersoftclock() _spllower(MIPS_SOFT_INT_MASK_0)
     95   1.8   thorpej #define splsoftclock()	_splraise(MIPS_SOFT_INT_MASK_0)
     96  1.14      soda #define splsoftnet()	_splraise(MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
     97  1.16   thorpej 
     98  1.16   thorpej #define	splsched()	splhigh()
     99  1.17   thorpej #define	spllock()	splhigh()
    100   1.6  nisimura 
    101   1.6  nisimura struct splvec {
    102   1.6  nisimura 	int	splbio;
    103   1.6  nisimura 	int	splnet;
    104   1.6  nisimura 	int	spltty;
    105  1.19   thorpej 	int	splvm;
    106   1.6  nisimura 	int	splclock;
    107   1.6  nisimura 	int	splstatclock;
    108   1.6  nisimura };
    109   1.6  nisimura extern struct splvec splvec;
    110   1.6  nisimura 
    111   1.6  nisimura /* Conventionals ... */
    112   1.6  nisimura 
    113   1.6  nisimura #define MIPS_SPLHIGH (MIPS_INT_MASK)
    114   1.6  nisimura #define MIPS_SPL0 (MIPS_INT_MASK_0|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
    115   1.6  nisimura #define MIPS_SPL1 (MIPS_INT_MASK_1|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
    116   1.6  nisimura #define MIPS_SPL3 (MIPS_INT_MASK_3|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
    117   1.6  nisimura #define MIPS_SPL_0_1	 (MIPS_INT_MASK_1|MIPS_SPL0)
    118   1.6  nisimura #define MIPS_SPL_0_1_2	 (MIPS_INT_MASK_2|MIPS_SPL_0_1)
    119   1.6  nisimura #define MIPS_SPL_0_1_3	 (MIPS_INT_MASK_3|MIPS_SPL_0_1)
    120   1.6  nisimura #define MIPS_SPL_0_1_2_3 (MIPS_INT_MASK_3|MIPS_SPL_0_1_2)
    121   1.3  jonathan 
    122   1.3  jonathan /*
    123   1.3  jonathan  * Index into intrcnt[], which is defined in locore
    124   1.3  jonathan  */
    125   1.3  jonathan extern u_long intrcnt[];
    126   1.3  jonathan 
    127  1.21  nisimura #if 0
    128   1.5  nisimura #define	SOFTCLOCK_INTR	0
    129   1.5  nisimura #define	SOFTNET_INTR	1
    130   1.5  nisimura #define	SERIAL0_INTR	2
    131   1.5  nisimura #define	SERIAL1_INTR	3
    132  1.13  nisimura #define	LANCE_INTR	4
    133  1.13  nisimura #define	SCSI_INTR	5
    134  1.13  nisimura #define	ERROR_INTR	6
    135  1.13  nisimura #define	HARDCLOCK	7
    136  1.13  nisimura #define	FPU_INTR	8
    137  1.13  nisimura #define	SLOT0_INTR	9
    138  1.13  nisimura #define	SLOT1_INTR	10
    139  1.13  nisimura #define	SLOT2_INTR	11
    140  1.13  nisimura #define	DTOP_INTR	12
    141  1.13  nisimura #define	ISDN_INTR	13
    142  1.13  nisimura #define	FLOPPY_INTR	14
    143  1.13  nisimura #define	STRAY_INTR	15
    144  1.21  nisimura #else
    145  1.21  nisimura #define	SERIAL0_INTR	0
    146  1.21  nisimura #define	SERIAL1_INTR	1
    147  1.21  nisimura #define	LANCE_INTR	2
    148  1.21  nisimura #define	SCSI_INTR	3
    149  1.21  nisimura #define	ERROR_INTR	4
    150  1.21  nisimura #define	SLOT0_INTR	5
    151  1.21  nisimura #define	SLOT1_INTR	6
    152  1.21  nisimura #define	SLOT2_INTR	7
    153  1.21  nisimura #define	DTOP_INTR	8
    154  1.21  nisimura #define	ISDN_INTR	9
    155  1.21  nisimura #define	FLOPPY_INTR	10
    156  1.21  nisimura #define	STRAY_INTR	11
    157  1.21  nisimura #endif
    158   1.5  nisimura 
    159  1.11    simonb struct intrhand {
    160  1.11    simonb 	int	(*ih_func) __P((void *));
    161  1.11    simonb 	void	*ih_arg;
    162  1.11    simonb };
    163  1.11    simonb extern struct intrhand intrtab[];
    164  1.11    simonb 
    165  1.12  nisimura #define SYS_DEV_SCSI	SCSI_INTR
    166  1.12  nisimura #define SYS_DEV_LANCE	LANCE_INTR
    167  1.12  nisimura #define SYS_DEV_SCC0	SERIAL0_INTR
    168  1.12  nisimura #define SYS_DEV_SCC1	SERIAL1_INTR
    169  1.12  nisimura #define SYS_DEV_DTOP	DTOP_INTR
    170  1.12  nisimura #define SYS_DEV_FDC	FLOPPY_INTR
    171  1.12  nisimura #define SYS_DEV_ISDN	ISDN_INTR
    172  1.12  nisimura #define SYS_DEV_OPT0	SLOT0_INTR
    173  1.12  nisimura #define SYS_DEV_OPT1	SLOT1_INTR
    174  1.12  nisimura #define SYS_DEV_OPT2	SLOT2_INTR
    175  1.12  nisimura #define SYS_DEV_BOGUS	-1
    176  1.21  nisimura #define MAX_DEV_NCOOKIES 12
    177  1.15  nisimura 
    178  1.21  nisimura struct pmax_intrhand {
    179  1.21  nisimura 	LIST_ENTRY(pmax_intrhand) ih_q;
    180  1.21  nisimura 	int (*ih_func)(void *);
    181  1.21  nisimura 	void *ih_arg;
    182  1.21  nisimura };
    183  1.21  nisimura 
    184  1.21  nisimura #define	setsoft(x)							\
    185  1.21  nisimura do {									\
    186  1.21  nisimura 	_setsoftintr(ipl_si_to_sr[(x) - IPL_SOFT]);			\
    187  1.21  nisimura } while (0)
    188  1.21  nisimura 
    189  1.21  nisimura struct pmax_soft_intrhand {
    190  1.21  nisimura 	TAILQ_ENTRY(pmax_soft_intrhand)
    191  1.21  nisimura 		sih_q;
    192  1.21  nisimura 	struct pmax_soft_intr *sih_intrhead;
    193  1.21  nisimura 	void	(*sih_fn)(void *);
    194  1.21  nisimura 	void	*sih_arg;
    195  1.21  nisimura 	int	sih_pending;
    196  1.21  nisimura };
    197  1.21  nisimura 
    198  1.21  nisimura struct pmax_soft_intr {
    199  1.21  nisimura 	TAILQ_HEAD(, pmax_soft_intrhand)
    200  1.21  nisimura 		softintr_q;
    201  1.21  nisimura 	struct evcnt softintr_evcnt;
    202  1.21  nisimura 	struct simplelock softintr_slock;
    203  1.21  nisimura 	unsigned long softintr_ipl;
    204  1.21  nisimura };
    205  1.21  nisimura 
    206  1.21  nisimura void	*softintr_establish(int, void (*)(void *), void *);
    207  1.21  nisimura void	softintr_disestablish(void *);
    208  1.21  nisimura void	softintr_init(void);
    209  1.21  nisimura void	softintr_dispatch(void);
    210  1.21  nisimura 
    211  1.21  nisimura #define	softintr_schedule(arg)						\
    212  1.21  nisimura do {									\
    213  1.21  nisimura 	struct pmax_soft_intrhand *__sih = (arg);			\
    214  1.21  nisimura 	struct pmax_soft_intr *__si = __sih->sih_intrhead;		\
    215  1.21  nisimura 	int __s;							\
    216  1.21  nisimura 									\
    217  1.21  nisimura 	__s = splhigh();						\
    218  1.21  nisimura 	simple_lock(&__si->softintr_slock);				\
    219  1.21  nisimura 	if (__sih->sih_pending == 0) {					\
    220  1.21  nisimura 		TAILQ_INSERT_TAIL(&__si->softintr_q, __sih, sih_q);	\
    221  1.21  nisimura 		__sih->sih_pending = 1;					\
    222  1.21  nisimura 		setsoft(__si->softintr_ipl);				\
    223  1.21  nisimura 	}								\
    224  1.21  nisimura 	simple_unlock(&__si->softintr_slock);				\
    225  1.21  nisimura 	splx(__s);							\
    226  1.21  nisimura } while (0)
    227  1.15  nisimura 
    228  1.21  nisimura extern struct pmax_soft_intrhand *softnet_intrhand;
    229  1.15  nisimura 
    230  1.21  nisimura #define	setsoftnet()	softintr_schedule(softnet_intrhand)
    231  1.15  nisimura 
    232  1.21  nisimura extern struct evcnt pmax_clock_evcnt;
    233  1.21  nisimura extern struct evcnt pmax_fpu_evcnt;
    234   1.5  nisimura 
    235   1.5  nisimura #endif /* !_LOCORE */
    236   1.5  nisimura #endif /* _KERNEL */
    237   1.3  jonathan 
    238  1.10        ad #endif	/* !_PMAX_INTR_H_ */
    239