intr.h revision 1.32 1 1.32 ad /* $NetBSD: intr.h,v 1.32 2008/01/04 21:54:05 ad 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.4 jonathan #define IPL_NONE 0 /* disable only this interrupt */
40 1.31 ad #define IPL_SOFTCLOCK 1 /* clock software interrupts (SI 0) */
41 1.31 ad #define IPL_SOFTBIO 1 /* generic software interrupts (SI 0) */
42 1.31 ad #define IPL_SOFTNET 2 /* network software interrupts (SI 1) */
43 1.31 ad #define IPL_SOFTSERIAL 2 /* serial software interrupts (SI 1) */
44 1.31 ad #define IPL_VM 3
45 1.31 ad #define IPL_SCHED 4
46 1.31 ad #define IPL_HIGH 5
47 1.4 jonathan
48 1.31 ad #define _IPL_N 6
49 1.21 nisimura
50 1.31 ad #define _IPL_SI0_FIRST IPL_SOFTCLOCK
51 1.31 ad #define _IPL_SI0_LAST IPL_SOFTBIO
52 1.21 nisimura
53 1.21 nisimura #define _IPL_SI1_FIRST IPL_SOFTNET
54 1.21 nisimura #define _IPL_SI1_LAST IPL_SOFTSERIAL
55 1.21 nisimura
56 1.5 nisimura #ifdef _KERNEL
57 1.5 nisimura #ifndef _LOCORE
58 1.5 nisimura
59 1.6 nisimura #include <mips/cpuregs.h>
60 1.29 tsutsui #include <mips/locore.h>
61 1.6 nisimura
62 1.6 nisimura #define spl0() (void)_spllower(0)
63 1.6 nisimura #define splx(s) (void)_splset(s)
64 1.27 yamt #define splvm() splraiseipl(makeiplcookie(IPL_VM))
65 1.31 ad #define splsched() splraiseipl(makeiplcookie(IPL_SCHED))
66 1.31 ad #define splhigh() _splraise(MIPS_INT_MASK)
67 1.6 nisimura
68 1.27 yamt #define _SPL_SOFT MIPS_SOFT_INT_MASK_0
69 1.27 yamt #define _SPL_SOFTCLOCK MIPS_SOFT_INT_MASK_0
70 1.27 yamt #define _SPL_SOFTNET (MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
71 1.27 yamt #define _SPL_SOFTSERIAL (MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
72 1.27 yamt
73 1.27 yamt #define splsoftclock() _splraise(_SPL_SOFTCLOCK)
74 1.31 ad #define splsoftbio() _splraise(_SPL_SOFTBIO)
75 1.27 yamt #define splsoftnet() _splraise(_SPL_SOFTNET)
76 1.27 yamt #define splsoftserial() _splraise(_SPL_SOFTSERIAL)
77 1.27 yamt
78 1.27 yamt extern const int *ipl2spl_table;
79 1.27 yamt
80 1.27 yamt typedef int ipl_t;
81 1.27 yamt typedef struct {
82 1.27 yamt int _spl;
83 1.27 yamt } ipl_cookie_t;
84 1.27 yamt
85 1.27 yamt ipl_cookie_t makeiplcookie(ipl_t);
86 1.27 yamt
87 1.27 yamt static inline int
88 1.27 yamt splraiseipl(ipl_cookie_t icookie)
89 1.27 yamt {
90 1.27 yamt
91 1.27 yamt return _splraise(icookie._spl);
92 1.27 yamt }
93 1.6 nisimura
94 1.6 nisimura /* Conventionals ... */
95 1.6 nisimura
96 1.6 nisimura #define MIPS_SPLHIGH (MIPS_INT_MASK)
97 1.6 nisimura #define MIPS_SPL0 (MIPS_INT_MASK_0|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
98 1.6 nisimura #define MIPS_SPL1 (MIPS_INT_MASK_1|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
99 1.6 nisimura #define MIPS_SPL3 (MIPS_INT_MASK_3|MIPS_SOFT_INT_MASK_0|MIPS_SOFT_INT_MASK_1)
100 1.6 nisimura #define MIPS_SPL_0_1 (MIPS_INT_MASK_1|MIPS_SPL0)
101 1.6 nisimura #define MIPS_SPL_0_1_2 (MIPS_INT_MASK_2|MIPS_SPL_0_1)
102 1.6 nisimura #define MIPS_SPL_0_1_3 (MIPS_INT_MASK_3|MIPS_SPL_0_1)
103 1.6 nisimura #define MIPS_SPL_0_1_2_3 (MIPS_INT_MASK_3|MIPS_SPL_0_1_2)
104 1.3 jonathan
105 1.11 simonb struct intrhand {
106 1.11 simonb int (*ih_func) __P((void *));
107 1.11 simonb void *ih_arg;
108 1.25 simonb struct evcnt ih_count;
109 1.11 simonb };
110 1.11 simonb extern struct intrhand intrtab[];
111 1.11 simonb
112 1.25 simonb #define SYS_DEV_SCC0 0
113 1.25 simonb #define SYS_DEV_SCC1 1
114 1.25 simonb #define SYS_DEV_LANCE 2
115 1.25 simonb #define SYS_DEV_SCSI 3
116 1.25 simonb #define SYS_DEV_OPT0 4
117 1.25 simonb #define SYS_DEV_OPT1 5
118 1.25 simonb #define SYS_DEV_OPT2 6
119 1.25 simonb #define SYS_DEV_DTOP 7
120 1.25 simonb #define SYS_DEV_ISDN 8
121 1.25 simonb #define SYS_DEV_FDC 9
122 1.12 nisimura #define SYS_DEV_BOGUS -1
123 1.23 nisimura #define MAX_DEV_NCOOKIES 10
124 1.23 nisimura
125 1.21 nisimura struct pmax_intrhand {
126 1.21 nisimura LIST_ENTRY(pmax_intrhand) ih_q;
127 1.21 nisimura int (*ih_func)(void *);
128 1.21 nisimura void *ih_arg;
129 1.21 nisimura };
130 1.21 nisimura
131 1.24 tsutsui #include <mips/softintr.h>
132 1.15 nisimura
133 1.21 nisimura extern struct evcnt pmax_clock_evcnt;
134 1.21 nisimura extern struct evcnt pmax_fpu_evcnt;
135 1.23 nisimura extern struct evcnt pmax_memerr_evcnt;
136 1.5 nisimura
137 1.25 simonb void intr_init(void);
138 1.5 nisimura #endif /* !_LOCORE */
139 1.5 nisimura #endif /* _KERNEL */
140 1.3 jonathan
141 1.10 ad #endif /* !_PMAX_INTR_H_ */
142