Home | History | Annotate | Line # | Download | only in include
intr.h revision 1.9.8.2
      1  1.9.8.2  nathanw /*	$NetBSD: intr.h,v 1.9.8.2 2002/01/08 00:27:30 nathanw Exp $	*/
      2  1.9.8.2  nathanw 
      3  1.9.8.2  nathanw /*
      4  1.9.8.2  nathanw  * Copyright (c) 2000 Soren S. Jorvang
      5  1.9.8.2  nathanw  * All rights reserved.
      6  1.9.8.2  nathanw  *
      7  1.9.8.2  nathanw  * Redistribution and use in source and binary forms, with or without
      8  1.9.8.2  nathanw  * modification, are permitted provided that the following conditions
      9  1.9.8.2  nathanw  * are met:
     10  1.9.8.2  nathanw  * 1. Redistributions of source code must retain the above copyright
     11  1.9.8.2  nathanw  *    notice, this list of conditions and the following disclaimer.
     12  1.9.8.2  nathanw  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.9.8.2  nathanw  *    notice, this list of conditions and the following disclaimer in the
     14  1.9.8.2  nathanw  *    documentation and/or other materials provided with the distribution.
     15  1.9.8.2  nathanw  * 3. All advertising materials mentioning features or use of this software
     16  1.9.8.2  nathanw  *    must display the following acknowledgement:
     17  1.9.8.2  nathanw  *          This product includes software developed for the
     18  1.9.8.2  nathanw  *          NetBSD Project.  See http://www.netbsd.org/ for
     19  1.9.8.2  nathanw  *          information about NetBSD.
     20  1.9.8.2  nathanw  * 4. The name of the author may not be used to endorse or promote products
     21  1.9.8.2  nathanw  *    derived from this software without specific prior written permission.
     22  1.9.8.2  nathanw  *
     23  1.9.8.2  nathanw  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24  1.9.8.2  nathanw  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25  1.9.8.2  nathanw  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26  1.9.8.2  nathanw  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27  1.9.8.2  nathanw  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28  1.9.8.2  nathanw  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29  1.9.8.2  nathanw  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30  1.9.8.2  nathanw  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31  1.9.8.2  nathanw  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32  1.9.8.2  nathanw  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33  1.9.8.2  nathanw  */
     34  1.9.8.2  nathanw 
     35  1.9.8.2  nathanw #ifndef	_SGIMIPS_INTR_H_
     36  1.9.8.2  nathanw #define	_SGIMIPS_INTR_H_
     37  1.9.8.2  nathanw 
     38  1.9.8.2  nathanw #define	IPL_NONE	0	/* Disable only this interrupt. */
     39  1.9.8.2  nathanw #define	IPL_BIO		1	/* Disable block I/O interrupts. */
     40  1.9.8.2  nathanw #define	IPL_NET		2	/* Disable network interrupts. */
     41  1.9.8.2  nathanw #define	IPL_TTY		3	/* Disable terminal interrupts. */
     42  1.9.8.2  nathanw #define	IPL_CLOCK	4	/* Disable clock interrupts. */
     43  1.9.8.2  nathanw #define	IPL_STATCLOCK	5	/* Disable profiling interrupts. */
     44  1.9.8.2  nathanw #ifndef __NO_SOFT_SERIAL_INTERRUPT
     45  1.9.8.2  nathanw #define	IPL_SERIAL	6	/* Disable serial hardware interrupts. */
     46  1.9.8.2  nathanw #endif
     47  1.9.8.2  nathanw #define	IPL_HIGH	7	/* Disable all interrupts. */
     48  1.9.8.2  nathanw #define NIPL		8
     49  1.9.8.2  nathanw 
     50  1.9.8.2  nathanw /* Interrupt sharing types. */
     51  1.9.8.2  nathanw #define IST_NONE	0	/* none */
     52  1.9.8.2  nathanw #define IST_PULSE	1	/* pulsed */
     53  1.9.8.2  nathanw #define IST_EDGE	2	/* edge-triggered */
     54  1.9.8.2  nathanw #define IST_LEVEL	3	/* level-triggered */
     55  1.9.8.2  nathanw 
     56  1.9.8.2  nathanw /* Soft interrupt numbers */
     57  1.9.8.2  nathanw #define	IPL_SOFTSERIAL	0	/* serial software interrupts */
     58  1.9.8.2  nathanw #define	IPL_SOFTNET	1	/* network software interrupts */
     59  1.9.8.2  nathanw #define	IPL_SOFTCLOCK	2	/* clock software interrupts */
     60  1.9.8.2  nathanw #define	IPL_NSOFT	3
     61  1.9.8.2  nathanw 
     62  1.9.8.2  nathanw #define	IPL_SOFTNAMES {							\
     63  1.9.8.2  nathanw 	"serial",							\
     64  1.9.8.2  nathanw 	"net",								\
     65  1.9.8.2  nathanw 	"clock",							\
     66  1.9.8.2  nathanw }
     67  1.9.8.2  nathanw 
     68  1.9.8.2  nathanw #ifdef _KERNEL
     69  1.9.8.2  nathanw #ifndef _LOCORE
     70  1.9.8.2  nathanw 
     71  1.9.8.2  nathanw #include <sys/queue.h>
     72  1.9.8.2  nathanw #include <sys/types.h>
     73  1.9.8.2  nathanw #include <sys/device.h>
     74  1.9.8.2  nathanw #include <mips/cpuregs.h>
     75  1.9.8.2  nathanw 
     76  1.9.8.2  nathanw /*
     77  1.9.8.2  nathanw  * software simulated interrupt
     78  1.9.8.2  nathanw  */
     79  1.9.8.2  nathanw #define setsoft(x)	do {			\
     80  1.9.8.2  nathanw 	extern u_int ssir;			\
     81  1.9.8.2  nathanw 	int s;					\
     82  1.9.8.2  nathanw 						\
     83  1.9.8.2  nathanw 	s = splhigh();				\
     84  1.9.8.2  nathanw 	ssir |= 1 << (x);			\
     85  1.9.8.2  nathanw 	_setsoftintr(MIPS_SOFT_INT_MASK_1);	\
     86  1.9.8.2  nathanw 	splx(s);				\
     87  1.9.8.2  nathanw } while (0)
     88  1.9.8.2  nathanw 
     89  1.9.8.2  nathanw #ifdef __HAVE_GENERIC_SOFT_INTERRUPTS
     90  1.9.8.2  nathanw 
     91  1.9.8.2  nathanw #define softintr_schedule(arg)						\
     92  1.9.8.2  nathanw do {									\
     93  1.9.8.2  nathanw 	struct sgimips_intrhand *__ih = (arg);				\
     94  1.9.8.2  nathanw 	__ih->ih_pending = 1;						\
     95  1.9.8.2  nathanw 	setsoft(__ih->ih_intrhead->intr_ipl);				\
     96  1.9.8.2  nathanw } while (0)
     97  1.9.8.2  nathanw 
     98  1.9.8.2  nathanw extern struct sgimips_intrhand *softnet_intrhand;
     99  1.9.8.2  nathanw 
    100  1.9.8.2  nathanw #define	setsoftnet()	softintr_schedule(softnet_intrhand)
    101  1.9.8.2  nathanw 
    102  1.9.8.2  nathanw #else /* ! __HAVE_GENERIC_SOFT_INTERRUPTS */
    103  1.9.8.2  nathanw 
    104  1.9.8.2  nathanw #define SIR_NET		0x01
    105  1.9.8.2  nathanw #define SIR_SERIAL	0x02
    106  1.9.8.2  nathanw 
    107  1.9.8.2  nathanw #define setsoftclock()	_setsoftintr(MIPS_SOFT_INT_MASK_0)
    108  1.9.8.2  nathanw #define setsoftnet()	setsoft(SIR_NET)
    109  1.9.8.2  nathanw #define setsoftserial()	setsoft(SIR_SERIAL)
    110  1.9.8.2  nathanw #endif /* __HAVE_GENERIC_SOFT_INTERRUPTS */
    111  1.9.8.2  nathanw 
    112  1.9.8.2  nathanw #define NINTR	32
    113  1.9.8.2  nathanw 
    114  1.9.8.2  nathanw struct sgimips_intrhand {
    115  1.9.8.2  nathanw 	LIST_ENTRY(sgimips_intrhand)
    116  1.9.8.2  nathanw 		ih_q;
    117  1.9.8.2  nathanw 	int	(*ih_fun) __P((void *));
    118  1.9.8.2  nathanw 	void	 *ih_arg;
    119  1.9.8.2  nathanw 	struct	sgimips_intr *ih_intrhead;
    120  1.9.8.2  nathanw 	int	ih_pending;
    121  1.9.8.2  nathanw };
    122  1.9.8.2  nathanw 
    123  1.9.8.2  nathanw struct sgimips_intr {
    124  1.9.8.2  nathanw 	LIST_HEAD(,sgimips_intrhand)
    125  1.9.8.2  nathanw 		intr_q;
    126  1.9.8.2  nathanw 	struct	evcnt ih_evcnt;
    127  1.9.8.2  nathanw 	unsigned long intr_ipl;
    128  1.9.8.2  nathanw };
    129  1.9.8.2  nathanw 
    130  1.9.8.2  nathanw extern struct sgimips_intrhand intrtab[];
    131  1.9.8.2  nathanw 
    132  1.9.8.2  nathanw extern int		_splraise(int);
    133  1.9.8.2  nathanw extern int		_spllower(int);
    134  1.9.8.2  nathanw extern int		_splset(int);
    135  1.9.8.2  nathanw extern int		_splget(void);
    136  1.9.8.2  nathanw extern void		_splnone(void);
    137  1.9.8.2  nathanw extern void		_setsoftintr(int);
    138  1.9.8.2  nathanw extern void		_clrsoftintr(int);
    139  1.9.8.2  nathanw 
    140  1.9.8.2  nathanw extern u_int32_t 	biomask;
    141  1.9.8.2  nathanw extern u_int32_t 	netmask;
    142  1.9.8.2  nathanw extern u_int32_t 	ttymask;
    143  1.9.8.2  nathanw extern u_int32_t 	clockmask;
    144  1.9.8.2  nathanw 
    145  1.9.8.2  nathanw #define splhigh()       _splraise(MIPS_INT_MASK)
    146  1.9.8.2  nathanw #define spl0()          (void)_spllower(0)
    147  1.9.8.2  nathanw #define splx(s)         (void)_splset(s)
    148  1.9.8.2  nathanw #define splbio()        _splraise(biomask)
    149  1.9.8.2  nathanw #define splnet()        _splraise(netmask)
    150  1.9.8.2  nathanw #define spltty()        _splraise(ttymask)
    151  1.9.8.2  nathanw #define splserial()	spltty()
    152  1.9.8.2  nathanw #define splvm()         spltty()
    153  1.9.8.2  nathanw #define splclock()      _splraise(clockmask)
    154  1.9.8.2  nathanw #define splstatclock()  splclock()
    155  1.9.8.2  nathanw 
    156  1.9.8.2  nathanw #define	splsched()	splhigh()
    157  1.9.8.2  nathanw #define	spllock()	splhigh()
    158  1.9.8.2  nathanw #define spllpt()	spltty()
    159  1.9.8.2  nathanw 
    160  1.9.8.2  nathanw #define splsoft()	_splraise(MIPS_SOFT_INT_MASK_1)
    161  1.9.8.2  nathanw #define splsoftclock()	splsoft()
    162  1.9.8.2  nathanw #define splsoftnet()	splsoft()
    163  1.9.8.2  nathanw 
    164  1.9.8.2  nathanw #define spllowersoftclock() _spllower(MIPS_SOFT_INT_MASK_1)
    165  1.9.8.2  nathanw 
    166  1.9.8.2  nathanw extern void *		cpu_intr_establish(int, int, int (*)(void *), void *);
    167  1.9.8.2  nathanw void *			softintr_establish(int, void (*)(void *), void *);
    168  1.9.8.2  nathanw void			softintr_disestablish(void *);
    169  1.9.8.2  nathanw void			softintr_init(void);
    170  1.9.8.2  nathanw void			softintr_dispatch(void);
    171  1.9.8.2  nathanw 
    172  1.9.8.2  nathanw 
    173  1.9.8.2  nathanw #endif /* _LOCORE */
    174  1.9.8.2  nathanw #endif /* !_KERNEL */
    175  1.9.8.2  nathanw 
    176  1.9.8.2  nathanw #endif	/* !_SGIMIPS_INTR_H_ */
    177