intr.h revision 1.2 1 1.2 matt /* $NetBSD: intr.h,v 1.2 2011/02/22 08:20:20 matt 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.2 matt #include <mips/intr.h>
40 1.1 pooka
41 1.1 pooka #ifdef _KERNEL
42 1.1 pooka #ifndef _LOCORE
43 1.1 pooka
44 1.2 matt extern struct evcnt emips_clock_evcnt;
45 1.2 matt extern struct evcnt emips_fpu_evcnt;
46 1.2 matt extern struct evcnt emips_memerr_evcnt;
47 1.1 pooka
48 1.2 matt #if 0
49 1.1 pooka #define MIPS_SPLHIGH (MIPS_INT_MASK)
50 1.1 pooka #define MIPS_SPL0 (MIPS_INT_MASK_0|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
51 1.1 pooka #define MIPS_SPL1 (MIPS_INT_MASK_1|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
52 1.1 pooka #define MIPS_SPL3 (MIPS_INT_MASK_3|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
53 1.1 pooka #define MIPS_SPL_0_1 (MIPS_INT_MASK_1|MIPS_SPL0)
54 1.1 pooka #define MIPS_SPL_0_1_2 (MIPS_INT_MASK_2|MIPS_SPL_0_1)
55 1.1 pooka #define MIPS_SPL_0_1_3 (MIPS_INT_MASK_3|MIPS_SPL_0_1)
56 1.1 pooka #define MIPS_SPL_0_1_2_3 (MIPS_INT_MASK_3|MIPS_SPL_0_1_2)
57 1.2 matt #endif
58 1.1 pooka
59 1.1 pooka struct intrhand {
60 1.1 pooka int (*ih_func)(void *, void *);
61 1.1 pooka void *ih_arg;
62 1.1 pooka struct evcnt ih_count;
63 1.1 pooka };
64 1.1 pooka extern struct intrhand intrtab[];
65 1.1 pooka #define MAX_DEV_NCOOKIES 32
66 1.1 pooka
67 1.1 pooka struct emips_intrhand {
68 1.1 pooka LIST_ENTRY(emips_intrhand) ih_q;
69 1.1 pooka int (*ih_func)(void *, void *);
70 1.1 pooka void *ih_arg;
71 1.1 pooka };
72 1.1 pooka
73 1.1 pooka void intr_init(int);
74 1.1 pooka #endif /* !_LOCORE */
75 1.1 pooka #endif /* _KERNEL */
76 1.1 pooka
77 1.1 pooka #endif /* !_EMIPS_INTR_H_ */
78