intr.h revision 1.2.6.2 1 1.2.6.2 jruoho /* $NetBSD: intr.h,v 1.2.6.2 2011/06/06 09:05:18 jruoho Exp $ */
2 1.2.6.2 jruoho
3 1.2.6.2 jruoho /*
4 1.2.6.2 jruoho * Copyright (c) 1998 Jonathan Stone. All rights reserved.
5 1.2.6.2 jruoho *
6 1.2.6.2 jruoho * Redistribution and use in source and binary forms, with or without
7 1.2.6.2 jruoho * modification, are permitted provided that the following conditions
8 1.2.6.2 jruoho * are met:
9 1.2.6.2 jruoho * 1. Redistributions of source code must retain the above copyright
10 1.2.6.2 jruoho * notice, this list of conditions and the following disclaimer.
11 1.2.6.2 jruoho * 2. Redistributions in binary form must reproduce the above copyright
12 1.2.6.2 jruoho * notice, this list of conditions and the following disclaimer in the
13 1.2.6.2 jruoho * documentation and/or other materials provided with the distribution.
14 1.2.6.2 jruoho * 3. All advertising materials mentioning features or use of this software
15 1.2.6.2 jruoho * must display the following acknowledgement:
16 1.2.6.2 jruoho * This product includes software developed by Jonathan Stone for
17 1.2.6.2 jruoho * the NetBSD Project.
18 1.2.6.2 jruoho * 4. The name of the author may not be used to endorse or promote products
19 1.2.6.2 jruoho * derived from this software without specific prior written permission.
20 1.2.6.2 jruoho *
21 1.2.6.2 jruoho * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.2.6.2 jruoho * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.2.6.2 jruoho * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.2.6.2 jruoho * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.2.6.2 jruoho * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.2.6.2 jruoho * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.2.6.2 jruoho * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.2.6.2 jruoho * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.2.6.2 jruoho * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.2.6.2 jruoho * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.2.6.2 jruoho */
32 1.2.6.2 jruoho
33 1.2.6.2 jruoho #ifndef _EMIPS_INTR_H_
34 1.2.6.2 jruoho #define _EMIPS_INTR_H_
35 1.2.6.2 jruoho
36 1.2.6.2 jruoho #include <sys/evcnt.h>
37 1.2.6.2 jruoho #include <sys/queue.h>
38 1.2.6.2 jruoho
39 1.2.6.2 jruoho #include <mips/intr.h>
40 1.2.6.2 jruoho
41 1.2.6.2 jruoho #ifdef _KERNEL
42 1.2.6.2 jruoho #ifndef _LOCORE
43 1.2.6.2 jruoho
44 1.2.6.2 jruoho extern struct evcnt emips_clock_evcnt;
45 1.2.6.2 jruoho extern struct evcnt emips_fpu_evcnt;
46 1.2.6.2 jruoho extern struct evcnt emips_memerr_evcnt;
47 1.2.6.2 jruoho
48 1.2.6.2 jruoho #if 0
49 1.2.6.2 jruoho #define MIPS_SPLHIGH (MIPS_INT_MASK)
50 1.2.6.2 jruoho #define MIPS_SPL0 (MIPS_INT_MASK_0|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
51 1.2.6.2 jruoho #define MIPS_SPL1 (MIPS_INT_MASK_1|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
52 1.2.6.2 jruoho #define MIPS_SPL3 (MIPS_INT_MASK_3|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
53 1.2.6.2 jruoho #define MIPS_SPL_0_1 (MIPS_INT_MASK_1|MIPS_SPL0)
54 1.2.6.2 jruoho #define MIPS_SPL_0_1_2 (MIPS_INT_MASK_2|MIPS_SPL_0_1)
55 1.2.6.2 jruoho #define MIPS_SPL_0_1_3 (MIPS_INT_MASK_3|MIPS_SPL_0_1)
56 1.2.6.2 jruoho #define MIPS_SPL_0_1_2_3 (MIPS_INT_MASK_3|MIPS_SPL_0_1_2)
57 1.2.6.2 jruoho #endif
58 1.2.6.2 jruoho
59 1.2.6.2 jruoho struct intrhand {
60 1.2.6.2 jruoho int (*ih_func)(void *, void *);
61 1.2.6.2 jruoho void *ih_arg;
62 1.2.6.2 jruoho struct evcnt ih_count;
63 1.2.6.2 jruoho };
64 1.2.6.2 jruoho extern struct intrhand intrtab[];
65 1.2.6.2 jruoho #define MAX_DEV_NCOOKIES 32
66 1.2.6.2 jruoho
67 1.2.6.2 jruoho struct emips_intrhand {
68 1.2.6.2 jruoho LIST_ENTRY(emips_intrhand) ih_q;
69 1.2.6.2 jruoho int (*ih_func)(void *, void *);
70 1.2.6.2 jruoho void *ih_arg;
71 1.2.6.2 jruoho };
72 1.2.6.2 jruoho
73 1.2.6.2 jruoho void intr_init(int);
74 1.2.6.2 jruoho #endif /* !_LOCORE */
75 1.2.6.2 jruoho #endif /* _KERNEL */
76 1.2.6.2 jruoho
77 1.2.6.2 jruoho #endif /* !_EMIPS_INTR_H_ */
78