Home | History | Annotate | Line # | Download | only in include
      1  1.34      matt /*	$NetBSD: intr.h,v 1.34 2011/02/20 07:50:25 matt Exp $	*/
      2   1.2     perry 
      3   1.3  jonathan /*
      4   1.3  jonathan  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
      5   1.3  jonathan  *
      6   1.3  jonathan  * Redistribution and use in source and binary forms, with or without
      7   1.3  jonathan  * modification, are permitted provided that the following conditions
      8   1.3  jonathan  * are met:
      9   1.3  jonathan  * 1. Redistributions of source code must retain the above copyright
     10   1.3  jonathan  *    notice, this list of conditions and the following disclaimer.
     11   1.3  jonathan  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.3  jonathan  *    notice, this list of conditions and the following disclaimer in the
     13   1.3  jonathan  *    documentation and/or other materials provided with the distribution.
     14   1.3  jonathan  * 3. All advertising materials mentioning features or use of this software
     15   1.3  jonathan  *    must display the following acknowledgement:
     16   1.3  jonathan  *	This product includes software developed by Jonathan Stone for
     17   1.3  jonathan  *      the NetBSD Project.
     18   1.3  jonathan  * 4. The name of the author may not be used to endorse or promote products
     19   1.3  jonathan  *    derived from this software without specific prior written permission.
     20   1.3  jonathan  *
     21   1.3  jonathan  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.3  jonathan  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.3  jonathan  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.3  jonathan  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.3  jonathan  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.3  jonathan  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.3  jonathan  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.3  jonathan  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.3  jonathan  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.3  jonathan  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.3  jonathan  */
     32   1.1  jonathan 
     33   1.1  jonathan #ifndef _PMAX_INTR_H_
     34   1.1  jonathan #define _PMAX_INTR_H_
     35   1.4  jonathan 
     36  1.32        ad #include <sys/evcnt.h>
     37  1.21  nisimura #include <sys/queue.h>
     38  1.21  nisimura 
     39  1.34      matt #include <mips/intr.h>
     40  1.21  nisimura 
     41   1.5  nisimura #ifdef _KERNEL
     42   1.5  nisimura #ifndef _LOCORE
     43   1.5  nisimura 
     44  1.34      matt #define MIPS_SPLHIGH	(MIPS_INT_MASK)
     45  1.34      matt #define MIPS_SPL0	(MIPS_INT_MASK_0|MIPS_SOFT_INT_MASK)
     46  1.34      matt #define MIPS_SPL1	(MIPS_INT_MASK_1|MIPS_SOFT_INT_MASK)
     47  1.34      matt #define MIPS_SPL3	(MIPS_INT_MASK_3|MIPS_SOFT_INT_MASK)
     48   1.6  nisimura #define MIPS_SPL_0_1	 (MIPS_INT_MASK_1|MIPS_SPL0)
     49   1.6  nisimura #define MIPS_SPL_0_1_2	 (MIPS_INT_MASK_2|MIPS_SPL_0_1)
     50   1.6  nisimura #define MIPS_SPL_0_1_3	 (MIPS_INT_MASK_3|MIPS_SPL_0_1)
     51   1.6  nisimura #define MIPS_SPL_0_1_2_3 (MIPS_INT_MASK_3|MIPS_SPL_0_1_2)
     52   1.3  jonathan 
     53  1.11    simonb struct intrhand {
     54  1.33       dsl 	int	(*ih_func)(void *);
     55  1.11    simonb 	void	*ih_arg;
     56  1.25    simonb 	struct evcnt ih_count;
     57  1.11    simonb };
     58  1.11    simonb extern struct intrhand intrtab[];
     59  1.11    simonb 
     60  1.25    simonb #define SYS_DEV_SCC0	0
     61  1.25    simonb #define SYS_DEV_SCC1	1
     62  1.25    simonb #define SYS_DEV_LANCE	2
     63  1.25    simonb #define SYS_DEV_SCSI	3
     64  1.25    simonb #define SYS_DEV_OPT0	4
     65  1.25    simonb #define SYS_DEV_OPT1	5
     66  1.25    simonb #define SYS_DEV_OPT2	6
     67  1.25    simonb #define SYS_DEV_DTOP	7
     68  1.25    simonb #define SYS_DEV_ISDN	8
     69  1.25    simonb #define SYS_DEV_FDC	9
     70  1.12  nisimura #define SYS_DEV_BOGUS	-1
     71  1.23  nisimura #define MAX_DEV_NCOOKIES 10
     72  1.23  nisimura 
     73  1.21  nisimura struct pmax_intrhand {
     74  1.21  nisimura 	LIST_ENTRY(pmax_intrhand) ih_q;
     75  1.21  nisimura 	int (*ih_func)(void *);
     76  1.21  nisimura 	void *ih_arg;
     77  1.21  nisimura };
     78  1.21  nisimura 
     79  1.21  nisimura extern struct evcnt pmax_clock_evcnt;
     80  1.21  nisimura extern struct evcnt pmax_fpu_evcnt;
     81  1.23  nisimura extern struct evcnt pmax_memerr_evcnt;
     82   1.5  nisimura 
     83  1.25    simonb void intr_init(void);
     84   1.5  nisimura #endif /* !_LOCORE */
     85   1.5  nisimura #endif /* _KERNEL */
     86   1.3  jonathan 
     87  1.10        ad #endif	/* !_PMAX_INTR_H_ */
     88