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