Home | History | Annotate | Line # | Download | only in include
intr.h revision 1.19.22.1
      1  1.19.22.1     yamt /*	$NetBSD: intr.h,v 1.19.22.1 2006/10/09 11:30:25 yamt 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.12   simonb  *
      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.15   keihan  *          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.12   simonb  *
     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.19.22.1     yamt #define	IPL_SOFT	1	/* generic software interrupts */
     40  1.19.22.1     yamt #define	IPL_SOFTSERIAL	2	/* serial software interrupts */
     41  1.19.22.1     yamt #define	IPL_SOFTNET	3	/* network software interrupts */
     42  1.19.22.1     yamt #define	IPL_SOFTCLOCK	4	/* clock software interrupts */
     43  1.19.22.1     yamt #define	IPL_BIO		5	/* Disable block I/O interrupts. */
     44  1.19.22.1     yamt #define	IPL_NET		6	/* Disable network interrupts. */
     45  1.19.22.1     yamt #define	IPL_TTY		7	/* Disable terminal interrupts. */
     46  1.19.22.1     yamt #define	IPL_SERIAL	IPL_TTY
     47  1.19.22.1     yamt #define	IPL_LPT		IPL_TTY
     48  1.19.22.1     yamt #define	IPL_VM		IPL_TTY
     49  1.19.22.1     yamt #define	IPL_CLOCK	8	/* Disable clock interrupts. */
     50  1.19.22.1     yamt #define	IPL_STATCLOCK	IPL_CLOCK /* Disable profiling interrupts. */
     51  1.19.22.1     yamt #define	IPL_HIGH	9	/* Disable all interrupts. */
     52  1.19.22.1     yamt #define	IPL_SCHED	IPL_HIGH
     53  1.19.22.1     yamt #define	IPL_LOCK	IPL_HIGH
     54  1.19.22.1     yamt #define NIPL		10
     55        1.1    soren 
     56        1.1    soren /* Interrupt sharing types. */
     57        1.1    soren #define IST_NONE	0	/* none */
     58        1.1    soren #define IST_PULSE	1	/* pulsed */
     59        1.1    soren #define IST_EDGE	2	/* edge-triggered */
     60        1.1    soren #define IST_LEVEL	3	/* level-triggered */
     61        1.1    soren 
     62        1.7  thorpej /* Soft interrupt numbers */
     63  1.19.22.1     yamt #define	SI_SOFT		0
     64  1.19.22.1     yamt #define	SI_SOFTCLOCK	1
     65  1.19.22.1     yamt #define	SI_SOFTNET	2
     66  1.19.22.1     yamt #define	SI_SOFTSERIAL	3
     67        1.7  thorpej 
     68  1.19.22.1     yamt #define	SI_NQUEUES	4
     69  1.19.22.1     yamt 
     70  1.19.22.1     yamt #define	SI_QUEUENAMES {							\
     71       1.14   simonb 	"misc",								\
     72        1.7  thorpej 	"serial",							\
     73        1.7  thorpej 	"net",								\
     74        1.7  thorpej 	"clock",							\
     75        1.7  thorpej }
     76        1.1    soren 
     77        1.1    soren #ifdef _KERNEL
     78        1.1    soren #ifndef _LOCORE
     79        1.1    soren 
     80        1.7  thorpej #include <sys/queue.h>
     81        1.7  thorpej #include <sys/types.h>
     82        1.7  thorpej #include <sys/device.h>
     83        1.1    soren #include <mips/cpuregs.h>
     84        1.1    soren 
     85        1.7  thorpej #define NINTR	32
     86        1.7  thorpej 
     87       1.10    soren struct sgimips_intrhand {
     88       1.10    soren 	LIST_ENTRY(sgimips_intrhand)
     89        1.7  thorpej 		ih_q;
     90       1.16   sekiya 	int	(*ih_fun) (void *);
     91        1.7  thorpej 	void	 *ih_arg;
     92       1.10    soren 	struct	sgimips_intr *ih_intrhead;
     93       1.17   sekiya 	struct	sgimips_intrhand *ih_next;
     94        1.7  thorpej 	int	ih_pending;
     95        1.7  thorpej };
     96        1.7  thorpej 
     97       1.10    soren struct sgimips_intr {
     98       1.10    soren 	LIST_HEAD(,sgimips_intrhand)
     99        1.7  thorpej 		intr_q;
    100        1.7  thorpej 	struct	evcnt ih_evcnt;
    101        1.7  thorpej 	unsigned long intr_ipl;
    102        1.7  thorpej };
    103        1.7  thorpej 
    104       1.10    soren extern struct sgimips_intrhand intrtab[];
    105        1.7  thorpej 
    106        1.1    soren extern int		_splraise(int);
    107       1.12   simonb extern int		_spllower(int);
    108        1.1    soren extern int		_splset(int);
    109        1.1    soren extern int		_splget(void);
    110       1.12   simonb extern void		_splnone(void);
    111        1.1    soren extern void		_setsoftintr(int);
    112        1.1    soren extern void		_clrsoftintr(int);
    113        1.1    soren 
    114  1.19.22.1     yamt extern const int *ipl2spl_table;
    115        1.1    soren 
    116       1.12   simonb #define splhigh()	_splraise(MIPS_INT_MASK)
    117       1.12   simonb #define spl0()		(void)_spllower(0)
    118       1.12   simonb #define splx(s)		(void)_splset(s)
    119  1.19.22.1     yamt #define splbio()	_splraise(ipl2spl_table[IPL_BIO])
    120  1.19.22.1     yamt #define splnet()	_splraise(ipl2spl_table[IPL_NET])
    121  1.19.22.1     yamt #define spltty()	_splraise(ipl2spl_table[IPL_TTY])
    122       1.12   simonb #define splvm()		spltty()
    123  1.19.22.1     yamt #define splclock()	_splraise(ipl2spl_table[IPL_CLOCK])
    124       1.12   simonb #define splstatclock()	splclock()
    125        1.2    soren 
    126        1.3  thorpej #define	splsched()	splhigh()
    127        1.4  thorpej #define	spllock()	splhigh()
    128       1.13    rafal #define splserial()	spltty()
    129        1.2    soren #define spllpt()	spltty()
    130        1.1    soren 
    131        1.9    rafal #define splsoft()	_splraise(MIPS_SOFT_INT_MASK_1)
    132        1.9    rafal #define splsoftclock()	splsoft()
    133        1.7  thorpej #define splsoftnet()	splsoft()
    134        1.9    rafal 
    135        1.9    rafal #define spllowersoftclock() _spllower(MIPS_SOFT_INT_MASK_1)
    136        1.1    soren 
    137        1.1    soren extern void *		cpu_intr_establish(int, int, int (*)(void *), void *);
    138       1.14   simonb 
    139  1.19.22.1     yamt typedef int ipl_t;
    140  1.19.22.1     yamt typedef struct {
    141  1.19.22.1     yamt 	int _spl;
    142  1.19.22.1     yamt } ipl_cookie_t;
    143  1.19.22.1     yamt 
    144  1.19.22.1     yamt ipl_cookie_t makeiplcookie(ipl_t);
    145  1.19.22.1     yamt 
    146  1.19.22.1     yamt static inline int
    147  1.19.22.1     yamt splraiseipl(ipl_cookie_t icookie)
    148  1.19.22.1     yamt {
    149  1.19.22.1     yamt 
    150  1.19.22.1     yamt 	return _splraise(icookie._spl);
    151  1.19.22.1     yamt }
    152  1.19.22.1     yamt 
    153       1.14   simonb #include <mips/softintr.h>
    154        1.1    soren 
    155        1.1    soren #endif /* _LOCORE */
    156       1.10    soren #endif /* !_KERNEL */
    157        1.7  thorpej 
    158        1.7  thorpej #endif	/* !_SGIMIPS_INTR_H_ */
    159