Home | History | Annotate | Line # | Download | only in include
intr.h revision 1.1
      1  1.1  pooka /*	$NetBSD: intr.h,v 1.1 2011/01/26 01:18:51 pooka Exp $	*/
      2  1.1  pooka 
      3  1.1  pooka /*
      4  1.1  pooka  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
      5  1.1  pooka  *
      6  1.1  pooka  * Redistribution and use in source and binary forms, with or without
      7  1.1  pooka  * modification, are permitted provided that the following conditions
      8  1.1  pooka  * are met:
      9  1.1  pooka  * 1. Redistributions of source code must retain the above copyright
     10  1.1  pooka  *    notice, this list of conditions and the following disclaimer.
     11  1.1  pooka  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1  pooka  *    notice, this list of conditions and the following disclaimer in the
     13  1.1  pooka  *    documentation and/or other materials provided with the distribution.
     14  1.1  pooka  * 3. All advertising materials mentioning features or use of this software
     15  1.1  pooka  *    must display the following acknowledgement:
     16  1.1  pooka  *	This product includes software developed by Jonathan Stone for
     17  1.1  pooka  *      the NetBSD Project.
     18  1.1  pooka  * 4. The name of the author may not be used to endorse or promote products
     19  1.1  pooka  *    derived from this software without specific prior written permission.
     20  1.1  pooka  *
     21  1.1  pooka  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  1.1  pooka  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.1  pooka  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  1.1  pooka  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  1.1  pooka  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  1.1  pooka  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  1.1  pooka  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  1.1  pooka  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  1.1  pooka  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  1.1  pooka  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  1.1  pooka  */
     32  1.1  pooka 
     33  1.1  pooka #ifndef _EMIPS_INTR_H_
     34  1.1  pooka #define _EMIPS_INTR_H_
     35  1.1  pooka 
     36  1.1  pooka #include <sys/evcnt.h>
     37  1.1  pooka #include <sys/queue.h>
     38  1.1  pooka 
     39  1.1  pooka #define	IPL_NONE	0	/* disable only this interrupt */
     40  1.1  pooka #define	IPL_SOFTCLOCK	1	/* clock software interrupts (SI 0) */
     41  1.1  pooka #define	IPL_SOFTBIO	1	/* generic software interrupts (SI 0) */
     42  1.1  pooka #define	IPL_SOFTNET	2	/* network software interrupts (SI 1) */
     43  1.1  pooka #define	IPL_SOFTSERIAL	2	/* serial software interrupts (SI 1) */
     44  1.1  pooka #define	IPL_VM		3
     45  1.1  pooka #define	IPL_SCHED	4
     46  1.1  pooka #define	IPL_HIGH	5
     47  1.1  pooka 
     48  1.1  pooka #define	_IPL_N		6
     49  1.1  pooka 
     50  1.1  pooka #define	_IPL_SI0_FIRST	IPL_SOFTCLOCK
     51  1.1  pooka #define	_IPL_SI0_LAST	IPL_SOFTBIO
     52  1.1  pooka 
     53  1.1  pooka #define	_IPL_SI1_FIRST	IPL_SOFTNET
     54  1.1  pooka #define	_IPL_SI1_LAST	IPL_SOFTSERIAL
     55  1.1  pooka 
     56  1.1  pooka #ifdef _KERNEL
     57  1.1  pooka #ifndef _LOCORE
     58  1.1  pooka 
     59  1.1  pooka #include <mips/cpuregs.h>
     60  1.1  pooka #include <mips/locore.h>
     61  1.1  pooka 
     62  1.1  pooka #define spl0()		(void)_spllower(0)
     63  1.1  pooka #define splx(s)		(void)_splset(s)
     64  1.1  pooka #define splvm()		splraiseipl(makeiplcookie(IPL_VM))
     65  1.1  pooka #define splsched()	splraiseipl(makeiplcookie(IPL_SCHED))
     66  1.1  pooka #define splhigh()	_splraise(MIPS_INT_MASK)
     67  1.1  pooka 
     68  1.1  pooka #define	_SPL_SOFT	MIPS_SOFT_INT_MASK_0
     69  1.1  pooka #define	_SPL_SOFTCLOCK	MIPS_SOFT_INT_MASK_0
     70  1.1  pooka #define	_SPL_SOFTNET	(MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
     71  1.1  pooka #define	_SPL_SOFTSERIAL	(MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
     72  1.1  pooka 
     73  1.1  pooka #define splsoftclock()	_splraise(_SPL_SOFTCLOCK)
     74  1.1  pooka #define splsoftbio()	_splraise(_SPL_SOFTBIO)
     75  1.1  pooka #define splsoftnet()	_splraise(_SPL_SOFTNET)
     76  1.1  pooka #define splsoftserial()	_splraise(_SPL_SOFTSERIAL)
     77  1.1  pooka 
     78  1.1  pooka extern const int *ipl2spl_table;
     79  1.1  pooka 
     80  1.1  pooka typedef int ipl_t;
     81  1.1  pooka typedef struct {
     82  1.1  pooka 	int _spl;
     83  1.1  pooka } ipl_cookie_t;
     84  1.1  pooka 
     85  1.1  pooka ipl_cookie_t makeiplcookie(ipl_t);
     86  1.1  pooka 
     87  1.1  pooka static inline int
     88  1.1  pooka splraiseipl(ipl_cookie_t icookie)
     89  1.1  pooka {
     90  1.1  pooka 
     91  1.1  pooka 	return _splraise(icookie._spl);
     92  1.1  pooka }
     93  1.1  pooka 
     94  1.1  pooka /* Conventionals ... */
     95  1.1  pooka 
     96  1.1  pooka #define MIPS_SPLHIGH (MIPS_INT_MASK)
     97  1.1  pooka #define MIPS_SPL0 (MIPS_INT_MASK_0|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
     98  1.1  pooka #define MIPS_SPL1 (MIPS_INT_MASK_1|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
     99  1.1  pooka #define MIPS_SPL3 (MIPS_INT_MASK_3|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
    100  1.1  pooka #define MIPS_SPL_0_1	 (MIPS_INT_MASK_1|MIPS_SPL0)
    101  1.1  pooka #define MIPS_SPL_0_1_2	 (MIPS_INT_MASK_2|MIPS_SPL_0_1)
    102  1.1  pooka #define MIPS_SPL_0_1_3	 (MIPS_INT_MASK_3|MIPS_SPL_0_1)
    103  1.1  pooka #define MIPS_SPL_0_1_2_3 (MIPS_INT_MASK_3|MIPS_SPL_0_1_2)
    104  1.1  pooka 
    105  1.1  pooka struct intrhand {
    106  1.1  pooka 	int	(*ih_func)(void *, void *);
    107  1.1  pooka 	void	*ih_arg;
    108  1.1  pooka 	struct evcnt ih_count;
    109  1.1  pooka };
    110  1.1  pooka extern struct intrhand intrtab[];
    111  1.1  pooka #define MAX_DEV_NCOOKIES 32
    112  1.1  pooka 
    113  1.1  pooka struct emips_intrhand {
    114  1.1  pooka 	LIST_ENTRY(emips_intrhand) ih_q;
    115  1.1  pooka 	int (*ih_func)(void *, void *);
    116  1.1  pooka 	void *ih_arg;
    117  1.1  pooka };
    118  1.1  pooka 
    119  1.1  pooka #include <mips/softintr.h>
    120  1.1  pooka 
    121  1.1  pooka extern struct evcnt emips_clock_evcnt;
    122  1.1  pooka extern struct evcnt emips_fpu_evcnt;
    123  1.1  pooka extern struct evcnt emips_memerr_evcnt;
    124  1.1  pooka 
    125  1.1  pooka void intr_init(int);
    126  1.1  pooka #endif /* !_LOCORE */
    127  1.1  pooka #endif /* _KERNEL */
    128  1.1  pooka 
    129  1.1  pooka #endif	/* !_EMIPS_INTR_H_ */
    130