xref: /netbsd/sys/arch/sandpoint/include/intr.h (revision c4a72b64)
1 /*	$NetBSD: intr.h,v 1.4 2002/07/05 18:45:23 matt Exp $	*/
2 
3 /*-
4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Charles M. Hannum.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *        This product includes software developed by the NetBSD
21  *        Foundation, Inc. and its contributors.
22  * 4. Neither the name of The NetBSD Foundation nor the names of its
23  *    contributors may be used to endorse or promote products derived
24  *    from this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  */
38 /*
39  * Sandpoint-specific code developed
40  * by Allen Briggs for Wasabi Systems, Inc.
41  *
42  * OpenPIC code derived from code with the following notice.
43  */
44 /*-
45  * Copyright (c) 2000 Tsubai Masanari.  All rights reserved.
46  *
47  * Redistribution and use in source and binary forms, with or without
48  * modification, are permitted provided that the following conditions
49  * are met:
50  * 1. Redistributions of source code must retain the above copyright
51  *    notice, this list of conditions and the following disclaimer.
52  * 2. Redistributions in binary form must reproduce the above copyright
53  *    notice, this list of conditions and the following disclaimer in the
54  *    documentation and/or other materials provided with the distribution.
55  * 3. The name of the author may not be used to endorse or promote products
56  *    derived from this software without specific prior written permission.
57  *
58  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
59  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
60  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
61  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
62  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
63  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
64  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
65  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
66  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
67  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
68  */
69 
70 #ifndef _SANDPOINT_INTR_H_
71 #define _SANDPOINT_INTR_H_
72 
73 /* Interrupt priority `levels'. */
74 #define	IPL_NONE	9	/* nothing */
75 #define	IPL_SOFTCLOCK	8	/* software clock interrupt */
76 #define	IPL_SOFTNET	7	/* software network interrupt */
77 #define	IPL_BIO		6	/* block I/O */
78 #define	IPL_NET		5	/* network */
79 #define	IPL_SOFTSERIAL	4	/* software serial interrupt */
80 #define	IPL_TTY		3	/* terminal */
81 #define	IPL_IMP		3	/* memory allocation */
82 #define	IPL_AUDIO	2	/* audio */
83 #define	IPL_CLOCK	1	/* clock */
84 #define	IPL_HIGH	1	/* everything */
85 #define	IPL_SERIAL	0	/* serial */
86 #define	NIPL		10
87 
88 /* Interrupt sharing types. */
89 #define	IST_NONE	0	/* none */
90 #define	IST_PULSE	1	/* pulsed */
91 #define	IST_EDGE	2	/* edge-triggered */
92 #define	IST_LEVEL	3	/* level-triggered */
93 
94 #ifndef _LOCORE
95 
96 /*
97  * Interrupt handler chains.  intr_establish() inserts a handler into
98  * the list.  The handler is called with its (single) argument.
99  */
100 struct intrhand {
101 	int	(*ih_fun)(void *);
102 	void	*ih_arg;
103 	u_long	ih_count;
104 	struct	intrhand *ih_next;
105 	int	ih_level;
106 	int	ih_irq;
107 };
108 
109 void	do_pending_int(void);
110 void	*intr_establish(int, int, int, int (*)(void *), void *);
111 void	intr_disestablish(void *);
112 
113 static __inline int splraise(int);
114 static __inline int spllower(int);
115 static __inline void splx(int);
116 static __inline void set_sint(int);
117 
118 extern volatile int cpl, ipending, astpending, tickspending;
119 extern int imask[];
120 extern long intrcnt[];
121 
122 /*
123  * Reorder protection in the following inline functions is
124  * protected with the "eieio" instruction.
125  */
126 static __inline int
127 splraise(newcpl)
128 	int newcpl;
129 {
130 	int oldcpl;
131 
132 	__asm__ volatile("sync; eieio\n");	/* don't reorder.... */
133 	oldcpl = cpl;
134 	cpl = oldcpl | newcpl;
135 	__asm__ volatile("sync; eieio\n");	/* reorder protect */
136 	return(oldcpl);
137 }
138 
139 static __inline void
140 splx(newcpl)
141 	int newcpl;
142 {
143 	__asm__ volatile("sync; eieio\n");	/* reorder protect */
144 	cpl = newcpl;
145 	if(ipending & ~newcpl)
146 		do_pending_int();
147 	__asm__ volatile("sync; eieio\n");	/* reorder protect */
148 }
149 
150 static __inline int
151 spllower(newcpl)
152 	int newcpl;
153 {
154 	int oldcpl;
155 
156 	__asm__ volatile("sync; eieio\n");	/* reorder protect */
157 	oldcpl = cpl;
158 	cpl = newcpl;
159 	if(ipending & ~newcpl)
160 		do_pending_int();
161 	__asm__ volatile("sync; eieio\n");	/* reorder protect */
162 	return(oldcpl);
163 }
164 
165 /* Following code should be implemented with lwarx/stwcx to avoid
166  * the disable/enable. i need to read the manual once more.... */
167 static __inline void
168 set_sint(pending)
169 	int	pending;
170 {
171 	int	msrsave;
172 
173 	__asm__ ("mfmsr %0" : "=r"(msrsave));
174 	__asm__ volatile ("mtmsr %0" :: "r"(msrsave & ~PSL_EE));
175 	ipending |= pending;
176 	__asm__ volatile ("mtmsr %0" :: "r"(msrsave));
177 }
178 
179 /*
180  * Motorola SandPoint PPC eval board interrupt list
181  */
182 #define	ICU_LEN		25
183 #define	ICU_MASK	0x01ffffff
184 
185 #define	LEGAL_IRQ(x)	((x) >= 0 && (x) < ICU_LEN)
186 
187 #define	SINT_ISA	0x10000000
188 #define	SINT_NET	0x20000000
189 #define	SINT_CLOCK	0x40000000
190 #define	SINT_SERIAL	0x80000000
191 #define	SPL_CLOCK	0x00000001
192 #define	SINT_MASK	(SINT_ISA|SINT_CLOCK|SINT_NET|SINT_SERIAL)
193 
194 #define	CNT_SINT_ISA	28
195 #define	CNT_SINT_NET	29
196 #define	CNT_SINT_CLOCK	30
197 #define	CNT_SINT_SERIAL	31
198 #define	CNT_CLOCK	0
199 
200 #define splbio()	splraise(imask[IPL_BIO])
201 #define splnet()	splraise(imask[IPL_NET])
202 #define spltty()	splraise(imask[IPL_TTY])
203 #define splclock()	splraise(imask[IPL_CLOCK])
204 #define splvm()		splraise(imask[IPL_IMP])
205 #define	splserial()	splraise(imask[IPL_SERIAL])
206 #define splstatclock()	splclock()
207 #define	spllowersoftclock() spllower(imask[IPL_SOFTCLOCK])
208 #define	splsoftclock()	splraise(imask[IPL_SOFTCLOCK])
209 #define	splsoftnet()	splraise(imask[IPL_SOFTNET])
210 #define	splsoftserial()	splraise(imask[IPL_SOFTSERIAL])
211 
212 #define spllpt()	spltty()
213 
214 #define	setsoftisa()	set_sint(SINT_ISA);
215 #define	setsoftclock()	set_sint(SINT_CLOCK);
216 #define	setsoftnet()	set_sint(SINT_NET);
217 #define	setsoftserial()	set_sint(SINT_SERIAL);
218 
219 #define	splhigh()	splraise(imask[IPL_HIGH])
220 #define	spl0()		spllower(0)
221 
222 #define splsched()	splhigh()
223 #define spllock()	splhigh()
224 
225 #endif /* !_LOCORE */
226 
227 #endif /* !_SANDPOINT_INTR_H_ */
228