intr.h revision 1.24 1 1.24 garbled /* $NetBSD: intr.h,v 1.24 2007/10/17 19:57:04 garbled Exp $ */
2 1.1 soren
3 1.1 soren /*
4 1.1 soren * Copyright (c) 2000 Soren S. Jorvang
5 1.1 soren * All rights reserved.
6 1.12 simonb *
7 1.1 soren * Redistribution and use in source and binary forms, with or without
8 1.1 soren * modification, are permitted provided that the following conditions
9 1.1 soren * are met:
10 1.1 soren * 1. Redistributions of source code must retain the above copyright
11 1.1 soren * notice, this list of conditions and the following disclaimer.
12 1.1 soren * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 soren * notice, this list of conditions and the following disclaimer in the
14 1.1 soren * documentation and/or other materials provided with the distribution.
15 1.1 soren * 3. All advertising materials mentioning features or use of this software
16 1.1 soren * must display the following acknowledgement:
17 1.1 soren * This product includes software developed for the
18 1.15 keihan * NetBSD Project. See http://www.NetBSD.org/ for
19 1.1 soren * information about NetBSD.
20 1.1 soren * 4. The name of the author may not be used to endorse or promote products
21 1.1 soren * derived from this software without specific prior written permission.
22 1.12 simonb *
23 1.1 soren * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.1 soren * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.1 soren * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.1 soren * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.1 soren * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.1 soren * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.1 soren * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.1 soren * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.1 soren * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.1 soren * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 soren */
34 1.1 soren
35 1.7 thorpej #ifndef _SGIMIPS_INTR_H_
36 1.7 thorpej #define _SGIMIPS_INTR_H_
37 1.7 thorpej
38 1.1 soren #define IPL_NONE 0 /* Disable only this interrupt. */
39 1.20 yamt #define IPL_SOFT 1 /* generic software interrupts */
40 1.20 yamt #define IPL_SOFTSERIAL 2 /* serial software interrupts */
41 1.20 yamt #define IPL_SOFTNET 3 /* network software interrupts */
42 1.20 yamt #define IPL_SOFTCLOCK 4 /* clock software interrupts */
43 1.20 yamt #define IPL_BIO 5 /* Disable block I/O interrupts. */
44 1.20 yamt #define IPL_NET 6 /* Disable network interrupts. */
45 1.20 yamt #define IPL_TTY 7 /* Disable terminal interrupts. */
46 1.20 yamt #define IPL_SERIAL IPL_TTY
47 1.20 yamt #define IPL_LPT IPL_TTY
48 1.20 yamt #define IPL_VM IPL_TTY
49 1.20 yamt #define IPL_CLOCK 8 /* Disable clock interrupts. */
50 1.20 yamt #define IPL_STATCLOCK IPL_CLOCK /* Disable profiling interrupts. */
51 1.20 yamt #define IPL_HIGH 9 /* Disable all interrupts. */
52 1.20 yamt #define IPL_SCHED IPL_HIGH
53 1.20 yamt #define IPL_LOCK IPL_HIGH
54 1.20 yamt #define NIPL 10
55 1.1 soren
56 1.1 soren /* Interrupt sharing types. */
57 1.1 soren #define IST_NONE 0 /* none */
58 1.1 soren #define IST_PULSE 1 /* pulsed */
59 1.1 soren #define IST_EDGE 2 /* edge-triggered */
60 1.1 soren #define IST_LEVEL 3 /* level-triggered */
61 1.1 soren
62 1.7 thorpej /* Soft interrupt numbers */
63 1.20 yamt #define SI_SOFT 0
64 1.20 yamt #define SI_SOFTCLOCK 1
65 1.20 yamt #define SI_SOFTNET 2
66 1.20 yamt #define SI_SOFTSERIAL 3
67 1.7 thorpej
68 1.20 yamt #define SI_NQUEUES 4
69 1.20 yamt
70 1.20 yamt #define SI_QUEUENAMES { \
71 1.14 simonb "misc", \
72 1.23 tsutsui "clock", \
73 1.23 tsutsui "net", \
74 1.7 thorpej "serial", \
75 1.7 thorpej }
76 1.1 soren
77 1.1 soren #ifdef _KERNEL
78 1.1 soren #ifndef _LOCORE
79 1.1 soren
80 1.7 thorpej #include <sys/queue.h>
81 1.7 thorpej #include <sys/types.h>
82 1.7 thorpej #include <sys/device.h>
83 1.1 soren #include <mips/cpuregs.h>
84 1.22 tsutsui #include <mips/locore.h>
85 1.1 soren
86 1.7 thorpej #define NINTR 32
87 1.7 thorpej
88 1.10 soren struct sgimips_intrhand {
89 1.10 soren LIST_ENTRY(sgimips_intrhand)
90 1.7 thorpej ih_q;
91 1.16 sekiya int (*ih_fun) (void *);
92 1.7 thorpej void *ih_arg;
93 1.10 soren struct sgimips_intr *ih_intrhead;
94 1.17 sekiya struct sgimips_intrhand *ih_next;
95 1.7 thorpej int ih_pending;
96 1.7 thorpej };
97 1.7 thorpej
98 1.10 soren struct sgimips_intr {
99 1.10 soren LIST_HEAD(,sgimips_intrhand)
100 1.7 thorpej intr_q;
101 1.7 thorpej struct evcnt ih_evcnt;
102 1.7 thorpej unsigned long intr_ipl;
103 1.7 thorpej };
104 1.7 thorpej
105 1.10 soren extern struct sgimips_intrhand intrtab[];
106 1.7 thorpej
107 1.20 yamt extern const int *ipl2spl_table;
108 1.1 soren
109 1.12 simonb #define splhigh() _splraise(MIPS_INT_MASK)
110 1.12 simonb #define spl0() (void)_spllower(0)
111 1.12 simonb #define splx(s) (void)_splset(s)
112 1.20 yamt #define splbio() _splraise(ipl2spl_table[IPL_BIO])
113 1.20 yamt #define splnet() _splraise(ipl2spl_table[IPL_NET])
114 1.20 yamt #define spltty() _splraise(ipl2spl_table[IPL_TTY])
115 1.12 simonb #define splvm() spltty()
116 1.20 yamt #define splclock() _splraise(ipl2spl_table[IPL_CLOCK])
117 1.12 simonb #define splstatclock() splclock()
118 1.2 soren
119 1.3 thorpej #define splsched() splhigh()
120 1.4 thorpej #define spllock() splhigh()
121 1.13 rafal #define splserial() spltty()
122 1.2 soren #define spllpt() spltty()
123 1.1 soren
124 1.9 rafal #define splsoft() _splraise(MIPS_SOFT_INT_MASK_1)
125 1.9 rafal #define splsoftclock() splsoft()
126 1.7 thorpej #define splsoftnet() splsoft()
127 1.20 yamt #define splsoftserial() splsoft()
128 1.9 rafal
129 1.1 soren extern void * cpu_intr_establish(int, int, int (*)(void *), void *);
130 1.14 simonb
131 1.20 yamt typedef int ipl_t;
132 1.20 yamt typedef struct {
133 1.20 yamt int _spl;
134 1.20 yamt } ipl_cookie_t;
135 1.20 yamt
136 1.20 yamt ipl_cookie_t makeiplcookie(ipl_t);
137 1.20 yamt
138 1.20 yamt static inline int
139 1.20 yamt splraiseipl(ipl_cookie_t icookie)
140 1.20 yamt {
141 1.20 yamt
142 1.20 yamt return _splraise(icookie._spl);
143 1.20 yamt }
144 1.20 yamt
145 1.14 simonb #include <mips/softintr.h>
146 1.1 soren
147 1.1 soren #endif /* _LOCORE */
148 1.10 soren #endif /* !_KERNEL */
149 1.7 thorpej
150 1.7 thorpej #endif /* !_SGIMIPS_INTR_H_ */
151