Home | History | Annotate | Line # | Download | only in include
intr.h revision 1.25.26.1
      1  1.25.26.1    skrll /*	$NetBSD: intr.h,v 1.25.26.1 2009/04/28 07:34:38 skrll 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.25       ad #define	IPL_SOFTCLOCK	1	/* generic software interrupts */
     40       1.25       ad #define	IPL_SOFTBIO	1	/* serial software interrupts */
     41       1.25       ad #define	IPL_SOFTNET	1	/* network software interrupts */
     42       1.25       ad #define	IPL_SOFTSERIAL	1	/* clock software interrupts */
     43       1.25       ad #define	IPL_VM		2
     44       1.25       ad #define	IPL_SCHED	3
     45       1.25       ad #define	IPL_HIGH	4
     46       1.25       ad 
     47       1.25       ad #define NIPL		5
     48        1.1    soren 
     49        1.1    soren /* Interrupt sharing types. */
     50        1.1    soren #define IST_NONE	0	/* none */
     51        1.1    soren #define IST_PULSE	1	/* pulsed */
     52        1.1    soren #define IST_EDGE	2	/* edge-triggered */
     53        1.1    soren #define IST_LEVEL	3	/* level-triggered */
     54        1.1    soren 
     55        1.1    soren #ifdef _KERNEL
     56        1.1    soren #ifndef _LOCORE
     57        1.1    soren 
     58        1.7  thorpej #include <sys/queue.h>
     59        1.7  thorpej #include <sys/types.h>
     60  1.25.26.1    skrll #include <sys/evcnt.h>
     61        1.1    soren #include <mips/cpuregs.h>
     62       1.22  tsutsui #include <mips/locore.h>
     63        1.1    soren 
     64        1.7  thorpej #define NINTR	32
     65        1.7  thorpej 
     66       1.10    soren struct sgimips_intrhand {
     67       1.10    soren 	LIST_ENTRY(sgimips_intrhand)
     68        1.7  thorpej 		ih_q;
     69       1.16   sekiya 	int	(*ih_fun) (void *);
     70        1.7  thorpej 	void	 *ih_arg;
     71       1.10    soren 	struct	sgimips_intr *ih_intrhead;
     72       1.17   sekiya 	struct	sgimips_intrhand *ih_next;
     73        1.7  thorpej 	int	ih_pending;
     74        1.7  thorpej };
     75        1.7  thorpej 
     76       1.10    soren struct sgimips_intr {
     77       1.10    soren 	LIST_HEAD(,sgimips_intrhand)
     78        1.7  thorpej 		intr_q;
     79        1.7  thorpej 	struct	evcnt ih_evcnt;
     80        1.7  thorpej 	unsigned long intr_ipl;
     81        1.7  thorpej };
     82        1.7  thorpej 
     83       1.10    soren extern struct sgimips_intrhand intrtab[];
     84        1.7  thorpej 
     85       1.20     yamt extern const int *ipl2spl_table;
     86        1.1    soren 
     87       1.12   simonb #define spl0()		(void)_spllower(0)
     88       1.12   simonb #define splx(s)		(void)_splset(s)
     89       1.25       ad #define splvm()		_splraise(ipl2spl_table[IPL_VM])
     90       1.25       ad #define splsched()	_splraise(ipl2spl_table[IPL_SCHED])
     91       1.25       ad #define splhigh()	_splraise(MIPS_INT_MASK)
     92       1.25       ad 
     93       1.25       ad #define splsoftclock()	_splraise(MIPS_SOFT_INT_MASK_1)
     94       1.25       ad #define splsoftbio()	splsoftclock()
     95       1.25       ad #define splsoftnet()	splsoftclock()
     96       1.25       ad #define splsoftserial()	splsoftclock()
     97        1.9    rafal 
     98        1.1    soren extern void *		cpu_intr_establish(int, int, int (*)(void *), void *);
     99       1.14   simonb 
    100       1.20     yamt typedef int ipl_t;
    101       1.20     yamt typedef struct {
    102       1.20     yamt 	int _spl;
    103       1.20     yamt } ipl_cookie_t;
    104       1.20     yamt 
    105       1.20     yamt ipl_cookie_t makeiplcookie(ipl_t);
    106       1.20     yamt 
    107       1.20     yamt static inline int
    108       1.20     yamt splraiseipl(ipl_cookie_t icookie)
    109       1.20     yamt {
    110       1.20     yamt 
    111       1.20     yamt 	return _splraise(icookie._spl);
    112       1.20     yamt }
    113       1.20     yamt 
    114       1.14   simonb #include <mips/softintr.h>
    115        1.1    soren 
    116        1.1    soren #endif /* _LOCORE */
    117       1.10    soren #endif /* !_KERNEL */
    118        1.7  thorpej 
    119        1.7  thorpej #endif	/* !_SGIMIPS_INTR_H_ */
    120