Home | History | Annotate | Line # | Download | only in include
intr.h revision 1.12
      1  1.12  tsutsui /*	$NetBSD: intr.h,v 1.12 2003/05/10 09:46:25 tsutsui Exp $	*/
      2   1.1   tsubai 
      3   1.1   tsubai /*
      4   1.1   tsubai  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
      5   1.1   tsubai  *
      6   1.1   tsubai  * Redistribution and use in source and binary forms, with or without
      7   1.1   tsubai  * modification, are permitted provided that the following conditions
      8   1.1   tsubai  * are met:
      9   1.1   tsubai  * 1. Redistributions of source code must retain the above copyright
     10   1.1   tsubai  *    notice, this list of conditions and the following disclaimer.
     11   1.1   tsubai  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.1   tsubai  *    notice, this list of conditions and the following disclaimer in the
     13   1.1   tsubai  *    documentation and/or other materials provided with the distribution.
     14   1.1   tsubai  * 3. All advertising materials mentioning features or use of this software
     15   1.1   tsubai  *    must display the following acknowledgement:
     16   1.1   tsubai  *	This product includes software developed by Jonathan Stone for
     17   1.1   tsubai  *      the NetBSD Project.
     18   1.1   tsubai  * 4. The name of the author may not be used to endorse or promote products
     19   1.1   tsubai  *    derived from this software without specific prior written permission.
     20   1.1   tsubai  *
     21   1.1   tsubai  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.1   tsubai  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.1   tsubai  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.1   tsubai  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.1   tsubai  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.1   tsubai  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.1   tsubai  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.1   tsubai  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.1   tsubai  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.1   tsubai  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.1   tsubai  */
     32   1.1   tsubai 
     33   1.1   tsubai #ifndef _MACHINE_INTR_H_
     34   1.1   tsubai #define _MACHINE_INTR_H_
     35   1.1   tsubai 
     36   1.4   tsubai #define IPL_NONE	0	/* disable only this interrupt */
     37   1.4   tsubai #define IPL_BIO		1	/* disable block I/O interrupts */
     38   1.4   tsubai #define IPL_NET		2	/* disable network interrupts */
     39   1.4   tsubai #define IPL_TTY		3	/* disable terminal interrupts */
     40   1.4   tsubai #define IPL_CLOCK	4	/* disable clock interrupts */
     41   1.4   tsubai #define IPL_STATCLOCK	5	/* disable profiling interrupts */
     42   1.4   tsubai #define IPL_SERIAL	6	/* disable serial hardware interrupts */
     43   1.4   tsubai #define IPL_HIGH	7	/* disable all interrupts */
     44   1.2   tsubai 
     45   1.4   tsubai #ifdef _KERNEL
     46   1.2   tsubai #ifndef _LOCORE
     47  1.12  tsutsui #include <sys/device.h>
     48   1.4   tsubai #include <mips/cpuregs.h>
     49   1.2   tsubai 
     50   1.4   tsubai extern int _splraise __P((int));
     51   1.4   tsubai extern int _spllower __P((int));
     52   1.4   tsubai extern int _splset __P((int));
     53   1.4   tsubai extern int _splget __P((void));
     54   1.4   tsubai extern void _splnone __P((void));
     55   1.4   tsubai extern void _setsoftintr __P((int));
     56   1.4   tsubai extern void _clrsoftintr __P((int));
     57   1.4   tsubai 
     58   1.7   tsubai /*
     59   1.7   tsubai  * software simulated interrupt
     60   1.7   tsubai  */
     61   1.7   tsubai #define SIR_NET		0x01
     62   1.7   tsubai #define SIR_SERIAL	0x02
     63   1.7   tsubai 
     64   1.7   tsubai #define setsoft(x)	do {			\
     65   1.7   tsubai 	extern u_int ssir;			\
     66   1.7   tsubai 	int s;					\
     67   1.7   tsubai 						\
     68   1.7   tsubai 	s = splhigh();				\
     69   1.7   tsubai 	ssir |= (x);				\
     70   1.7   tsubai 	_setsoftintr(MIPS_SOFT_INT_MASK_1);	\
     71   1.7   tsubai 	splx(s);				\
     72   1.7   tsubai } while (0)
     73   1.7   tsubai 
     74   1.4   tsubai #define setsoftclock()	_setsoftintr(MIPS_SOFT_INT_MASK_0)
     75   1.7   tsubai #define setsoftnet()	setsoft(SIR_NET)
     76   1.7   tsubai #define setsoftserial()	setsoft(SIR_SERIAL)
     77   1.2   tsubai 
     78   1.4   tsubai /*
     79   1.4   tsubai  * nesting interrupt masks.
     80   1.4   tsubai  */
     81   1.4   tsubai #define MIPS_INT_MASK_SPL_SOFT0	MIPS_SOFT_INT_MASK_0
     82   1.4   tsubai #define MIPS_INT_MASK_SPL_SOFT1	(MIPS_SOFT_INT_MASK_1|MIPS_INT_MASK_SPL_SOFT0)
     83   1.4   tsubai #define MIPS_INT_MASK_SPL0	(MIPS_INT_MASK_0|MIPS_INT_MASK_SPL_SOFT1)
     84   1.4   tsubai #define MIPS_INT_MASK_SPL1	(MIPS_INT_MASK_1|MIPS_INT_MASK_SPL0)
     85   1.4   tsubai #define MIPS_INT_MASK_SPL2	(MIPS_INT_MASK_2|MIPS_INT_MASK_SPL1)
     86   1.4   tsubai #define MIPS_INT_MASK_SPL3	(MIPS_INT_MASK_3|MIPS_INT_MASK_SPL2)
     87   1.4   tsubai #define MIPS_INT_MASK_SPL4	(MIPS_INT_MASK_4|MIPS_INT_MASK_SPL3)
     88   1.4   tsubai #define MIPS_INT_MASK_SPL5	(MIPS_INT_MASK_5|MIPS_INT_MASK_SPL4)
     89   1.4   tsubai 
     90   1.4   tsubai #define spl0()		(void)_spllower(0)
     91   1.4   tsubai #define splx(s)		(void)_splset(s)
     92   1.4   tsubai #define splbio()	_splraise(MIPS_INT_MASK_SPL0)
     93   1.4   tsubai #define splnet()	_splraise(MIPS_INT_MASK_SPL1)
     94   1.4   tsubai #define spltty()	_splraise(MIPS_INT_MASK_SPL1)
     95  1.10  thorpej #define splvm()		_splraise(MIPS_INT_MASK_SPL1)
     96   1.4   tsubai #define splclock()	_splraise(MIPS_INT_MASK_SPL2)
     97   1.4   tsubai #define splstatclock()	_splraise(MIPS_INT_MASK_SPL2)
     98   1.4   tsubai #define splhigh()	_splraise(MIPS_INT_MASK_SPL2)
     99   1.8  thorpej #define	splsched()	splhigh()
    100   1.9  thorpej #define	spllock()	splhigh()
    101   1.4   tsubai 
    102   1.4   tsubai #define splsoftclock()	_splraise(MIPS_INT_MASK_SPL_SOFT0)
    103   1.4   tsubai #define splsoftnet()	_splraise(MIPS_INT_MASK_SPL_SOFT1)
    104   1.4   tsubai #define spllowersoftclock() _spllower(MIPS_INT_MASK_SPL_SOFT0)
    105  1.12  tsutsui 
    106  1.12  tsutsui struct newsmips_intrhand {
    107  1.12  tsutsui 	LIST_ENTRY(newsmips_intrhand) ih_q;
    108  1.12  tsutsui 	struct evcnt intr_count;
    109  1.12  tsutsui 	int (*ih_func)(void *);
    110  1.12  tsutsui 	void *ih_arg;
    111  1.12  tsutsui 	u_int ih_level;
    112  1.12  tsutsui 	u_int ih_mask;
    113  1.12  tsutsui 	u_int ih_priority;
    114  1.12  tsutsui };
    115  1.12  tsutsui 
    116  1.12  tsutsui struct newsmips_intr {
    117  1.12  tsutsui 	LIST_HEAD(,newsmips_intrhand) intr_q;
    118  1.12  tsutsui };
    119   1.1   tsubai 
    120   1.1   tsubai /*
    121   1.1   tsubai  * Index into intrcnt[], which is defined in locore
    122   1.1   tsubai  */
    123   1.2   tsubai #define SOFTCLOCK_INTR	0
    124   1.2   tsubai #define SOFTNET_INTR	1
    125   1.2   tsubai #define SERIAL0_INTR	2
    126   1.2   tsubai #define SERIAL1_INTR	3
    127   1.2   tsubai #define SERIAL2_INTR	4
    128   1.2   tsubai #define LANCE_INTR	5
    129   1.2   tsubai #define SCSI_INTR	6
    130   1.2   tsubai #define ERROR_INTR	7
    131   1.2   tsubai #define HARDCLOCK_INTR	8
    132   1.2   tsubai #define FPU_INTR	9
    133   1.2   tsubai #define SLOT1_INTR	10
    134   1.2   tsubai #define SLOT2_INTR	11
    135   1.2   tsubai #define SLOT3_INTR	12
    136   1.2   tsubai #define FLOPPY_INTR	13
    137   1.2   tsubai #define STRAY_INTR	14
    138   1.1   tsubai 
    139   1.2   tsubai extern u_int intrcnt[];
    140   1.1   tsubai 
    141   1.2   tsubai /* handle i/o device interrupts */
    142   1.7   tsubai extern void news3400_intr __P((u_int, u_int, u_int, u_int));
    143   1.7   tsubai extern void news5000_intr __P((u_int, u_int, u_int, u_int));
    144   1.5   tsubai 
    145   1.5   tsubai extern void (*enable_intr) __P((void));
    146   1.5   tsubai extern void (*disable_intr) __P((void));
    147   1.4   tsubai 
    148   1.2   tsubai #endif /* !_LOCORE */
    149   1.4   tsubai #endif /* _KERNEL */
    150   1.1   tsubai #endif /* _MACHINE_INTR_H_ */
    151