Home | History | Annotate | Line # | Download | only in include
intr.h revision 1.14
      1  1.14  tsutsui /*	$NetBSD: intr.h,v 1.14 2007/06/17 06:04:28 tsutsui Exp $	*/
      2   1.1      wdk 
      3   1.1      wdk /*
      4   1.1      wdk  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
      5   1.1      wdk  *
      6   1.1      wdk  * Redistribution and use in source and binary forms, with or without
      7   1.1      wdk  * modification, are permitted provided that the following conditions
      8   1.1      wdk  * are met:
      9   1.1      wdk  * 1. Redistributions of source code must retain the above copyright
     10   1.1      wdk  *    notice, this list of conditions and the following disclaimer.
     11   1.1      wdk  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.1      wdk  *    notice, this list of conditions and the following disclaimer in the
     13   1.1      wdk  *    documentation and/or other materials provided with the distribution.
     14   1.1      wdk  * 3. All advertising materials mentioning features or use of this software
     15   1.1      wdk  *    must display the following acknowledgement:
     16   1.1      wdk  *	This product includes software developed by Jonathan Stone for
     17   1.1      wdk  *      the NetBSD Project.
     18   1.1      wdk  * 4. The name of the author may not be used to endorse or promote products
     19   1.1      wdk  *    derived from this software without specific prior written permission.
     20   1.1      wdk  *
     21   1.1      wdk  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.1      wdk  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.1      wdk  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.1      wdk  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.1      wdk  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.1      wdk  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.1      wdk  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.1      wdk  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.1      wdk  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.1      wdk  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.1      wdk  */
     32   1.1      wdk 
     33   1.1      wdk #ifndef _MACHINE_INTR_H_
     34   1.1      wdk #define _MACHINE_INTR_H_
     35   1.1      wdk 
     36  1.12     yamt #define	IPL_NONE	0	/* disable only this interrupt */
     37  1.12     yamt #define	IPL_SOFT	1	/* generic software interrupts */
     38  1.12     yamt #define	IPL_SOFTCLOCK	2	/* clock software interrupts */
     39  1.12     yamt #define	IPL_SOFTNET	3	/* network software interrupts */
     40  1.12     yamt #define	IPL_SOFTSERIAL	4	/* serial software interrupts */
     41  1.12     yamt #define	IPL_BIO		5	/* disable block I/O interrupts */
     42  1.12     yamt #define	IPL_NET		6	/* disable network interrupts */
     43  1.12     yamt #define	IPL_TTY		7	/* disable terminal interrupts */
     44  1.12     yamt #define	IPL_SERIAL	IPL_TTY
     45  1.12     yamt #define	IPL_LPT		IPL_TTY
     46  1.12     yamt #define	IPL_VM		IPL_TTY
     47  1.12     yamt #define	IPL_CLOCK	8	/* disable clock interrupts */
     48  1.12     yamt #define	IPL_STATCLOCK	9	/* disable profiling interrupts */
     49  1.12     yamt #define	IPL_SCHED	IPL_CLOCK
     50  1.12     yamt #define	IPL_HIGH	10	/* disable all interrupts */
     51  1.12     yamt #define	IPL_LOCK	IPL_HIGH
     52  1.12     yamt 
     53  1.12     yamt #define	IPL_N		11
     54   1.6      wdk 
     55   1.6      wdk /* Interrupt sharing types. */
     56   1.6      wdk #define IST_NONE	0	/* none */
     57   1.6      wdk #define IST_PULSE	1	/* pulsed */
     58   1.6      wdk #define IST_EDGE	2	/* edge-triggered */
     59   1.6      wdk #define IST_LEVEL	3	/* level-triggered */
     60   1.1      wdk 
     61  1.12     yamt #define	SI_SOFT		0
     62  1.12     yamt #define	SI_SOFTCLOCK	1
     63  1.12     yamt #define	SI_SOFTNET	2
     64  1.12     yamt #define	SI_SOFTSERIAL	3
     65  1.12     yamt 
     66  1.12     yamt #define	SI_NQUEUES	4
     67   1.1      wdk 
     68  1.12     yamt #define	SI_QUEUENAMES {							\
     69  1.12     yamt 	"misc",								\
     70  1.12     yamt 	"clock",							\
     71  1.12     yamt 	"net",								\
     72   1.1      wdk 	"serial",							\
     73   1.1      wdk }
     74   1.1      wdk 
     75   1.1      wdk #ifdef _KERNEL
     76   1.1      wdk #ifndef _LOCORE
     77   1.6      wdk #include <sys/types.h>
     78   1.6      wdk #include <sys/device.h>
     79   1.6      wdk #include <sys/queue.h>
     80  1.14  tsutsui #include <mips/locore.h>
     81   1.1      wdk 
     82   1.1      wdk /*
     83   1.1      wdk  * software simulated interrupt
     84   1.1      wdk  */
     85   1.1      wdk #define setsoft(x)	do {			\
     86   1.1      wdk 	extern u_int ssir;			\
     87  1.10       he 	int _s;					\
     88   1.1      wdk 						\
     89  1.10       he 	_s = splhigh();				\
     90   1.6      wdk 	ssir |= 1 << (x);			\
     91   1.1      wdk 	_setsoftintr(MIPS_SOFT_INT_MASK_1);	\
     92  1.10       he 	splx(_s);				\
     93   1.1      wdk } while (0)
     94   1.1      wdk 
     95   1.6      wdk #define softintr_schedule(arg)						\
     96   1.6      wdk do {									\
     97   1.6      wdk 	struct mipsco_intrhand *__ih = (arg);				\
     98   1.6      wdk 	__ih->ih_pending = 1;						\
     99  1.12     yamt 	setsoft(__ih->ih_intrhead->intr_siq);				\
    100   1.6      wdk } while (0)
    101   1.6      wdk 
    102   1.6      wdk extern struct mipsco_intrhand *softnet_intrhand;
    103   1.6      wdk 
    104   1.6      wdk #define	setsoftnet()	softintr_schedule(softnet_intrhand)
    105   1.1      wdk 
    106   1.1      wdk /*
    107   1.1      wdk  * nesting interrupt masks.
    108   1.1      wdk  */
    109   1.1      wdk #define MIPS_INT_MASK_SPL_SOFT0	MIPS_SOFT_INT_MASK_0
    110   1.1      wdk #define MIPS_INT_MASK_SPL_SOFT1	(MIPS_SOFT_INT_MASK_1|MIPS_INT_MASK_SPL_SOFT0)
    111   1.1      wdk #define MIPS_INT_MASK_SPL0	(MIPS_INT_MASK_0|MIPS_INT_MASK_SPL_SOFT1)
    112   1.1      wdk #define MIPS_INT_MASK_SPL1	(MIPS_INT_MASK_1|MIPS_INT_MASK_SPL0)
    113   1.1      wdk #define MIPS_INT_MASK_SPL2	(MIPS_INT_MASK_2|MIPS_INT_MASK_SPL1)
    114   1.1      wdk #define MIPS_INT_MASK_SPL3	(MIPS_INT_MASK_3|MIPS_INT_MASK_SPL2)
    115   1.1      wdk #define MIPS_INT_MASK_SPL4	(MIPS_INT_MASK_4|MIPS_INT_MASK_SPL3)
    116   1.1      wdk #define MIPS_INT_MASK_SPL5	(MIPS_INT_MASK_5|MIPS_INT_MASK_SPL4)
    117   1.1      wdk 
    118   1.1      wdk #define spl0()		(void)_spllower(0)
    119   1.1      wdk #define splx(s)		(void)_splset(s)
    120   1.1      wdk #define splbio()	_splraise(MIPS_INT_MASK_SPL1)
    121   1.1      wdk #define splnet()	_splraise(MIPS_INT_MASK_SPL0)
    122   1.1      wdk #define spltty()	_splraise(MIPS_INT_MASK_SPL0)
    123   1.5  thorpej #define splvm()		_splraise(MIPS_INT_MASK_SPL2)
    124   1.1      wdk #define splclock()	_splraise(MIPS_INT_MASK_SPL2)
    125   1.1      wdk #define splstatclock()	_splraise(MIPS_INT_MASK_SPL2)
    126   1.1      wdk #define splhigh()	_splraise(MIPS_INT_MASK_SPL2)
    127   1.3  thorpej #define	splsched()	splhigh()
    128   1.4  thorpej #define	spllock()	splhigh()
    129   1.6      wdk #define splserial()	spltty()
    130   1.8      wdk #define spllpt()	spltty()
    131   1.1      wdk 
    132  1.12     yamt #define splsoft()	_splraise(MIPS_INT_MASK_SPL_SOFT1)
    133   1.1      wdk #define splsoftclock()	_splraise(MIPS_INT_MASK_SPL_SOFT0)
    134  1.12     yamt #define	splsoftnet()	splsoft()
    135  1.12     yamt #define	splsoftserial()	splsoft()
    136  1.12     yamt 
    137  1.12     yamt typedef int ipl_t;
    138  1.12     yamt typedef struct {
    139  1.12     yamt 	int _sr;
    140  1.12     yamt } ipl_cookie_t;
    141  1.12     yamt 
    142  1.12     yamt ipl_cookie_t makeiplcookie(ipl_t ipl);
    143  1.12     yamt 
    144  1.12     yamt static inline int
    145  1.12     yamt splraiseipl(ipl_cookie_t icookie)
    146  1.12     yamt {
    147  1.12     yamt 
    148  1.12     yamt 	return _splraise(icookie._sr);
    149  1.12     yamt }
    150   1.1      wdk 
    151   1.6      wdk struct mipsco_intrhand {
    152   1.6      wdk 	LIST_ENTRY(mipsco_intrhand)
    153   1.6      wdk 		ih_q;
    154   1.6      wdk 	int	(*ih_fun) __P((void *));
    155   1.6      wdk 	void	 *ih_arg;
    156   1.6      wdk 	struct	mipsco_intr *ih_intrhead;
    157   1.6      wdk 	int	ih_pending;
    158   1.2      wdk };
    159   1.6      wdk 
    160   1.6      wdk struct mipsco_intr {
    161   1.6      wdk 	LIST_HEAD(,mipsco_intrhand)
    162   1.6      wdk 		intr_q;
    163   1.6      wdk 	struct	evcnt ih_evcnt;
    164  1.12     yamt 	unsigned long intr_siq;
    165   1.6      wdk };
    166   1.6      wdk 
    167   1.6      wdk 
    168   1.6      wdk extern struct mipsco_intrhand intrtab[];
    169   1.2      wdk 
    170   1.2      wdk #define SYS_INTR_LEVEL0	0
    171   1.2      wdk #define SYS_INTR_LEVEL1	1
    172   1.2      wdk #define SYS_INTR_LEVEL2	2
    173   1.2      wdk #define SYS_INTR_LEVEL3	3
    174   1.2      wdk #define SYS_INTR_LEVEL4	4
    175   1.2      wdk #define SYS_INTR_LEVEL5	5
    176   1.2      wdk #define SYS_INTR_SCSI	6
    177   1.2      wdk #define SYS_INTR_TIMER	7
    178   1.2      wdk #define SYS_INTR_ETHER	8
    179   1.2      wdk #define SYS_INTR_SCC0	9
    180   1.2      wdk #define SYS_INTR_FDC	10
    181   1.6      wdk #define SYS_INTR_ATBUS	11
    182   1.1      wdk 
    183   1.2      wdk #define MAX_INTR_COOKIES 16
    184   1.2      wdk 
    185   1.6      wdk #define	CALL_INTR(lev)	((*intrtab[lev].ih_fun)(intrtab[lev].ih_arg))
    186   1.6      wdk 
    187   1.6      wdk void	*softintr_establish(int, void (*)(void *), void *);
    188   1.6      wdk void	softintr_disestablish(void *);
    189   1.6      wdk void	softintr_init(void);
    190   1.6      wdk void	softintr_dispatch(void);
    191   1.1      wdk 
    192   1.1      wdk #endif /* !_LOCORE */
    193   1.1      wdk #endif /* _KERNEL */
    194   1.1      wdk #endif /* _MACHINE_INTR_H_ */
    195