au_icu.c revision 1.2.2.3 1 /* $NetBSD: au_icu.c,v 1.2.2.3 2002/12/11 06:10:55 thorpej Exp $ */
2
3 /*-
4 * Copyright (c) 2001 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe.
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 /*
40 * Interrupt support for the Alchemy Semiconductor Au1x00 CPUs.
41 *
42 * The Alchemy Semiconductor Au1x00's interrupts are wired to two internal
43 * interrupt controllers.
44 */
45
46 #include "opt_ddb.h"
47
48 #include <sys/param.h>
49 #include <sys/queue.h>
50 #include <sys/malloc.h>
51 #include <sys/systm.h>
52 #include <sys/device.h>
53 #include <sys/kernel.h>
54
55 #include <machine/bus.h>
56 #include <machine/intr.h>
57
58 #include <mips/locore.h>
59 #include <mips/alchemy/include/aureg.h>
60 #include <mips/alchemy/include/auvar.h>
61
62 #define REGVAL(x) *((__volatile u_int32_t *)(MIPS_PHYS_TO_KSEG1((x))))
63
64 /*
65 * This is a mask of bits to clear in the SR when we go to a
66 * given hardware interrupt priority level.
67 */
68
69 const u_int32_t ipl_sr_bits[_IPL_N] = {
70 0, /* 0: IPL_NONE */
71
72 MIPS_SOFT_INT_MASK_0, /* 1: IPL_SOFT */
73
74 MIPS_SOFT_INT_MASK_0, /* 2: IPL_SOFTCLOCK */
75
76 MIPS_SOFT_INT_MASK_0, /* 3: IPL_SOFTNET */
77
78 MIPS_SOFT_INT_MASK_0, /* 4: IPL_SOFTSERIAL */
79
80 MIPS_SOFT_INT_MASK_0|
81 MIPS_SOFT_INT_MASK_1|
82 MIPS_INT_MASK_0, /* 5: IPL_BIO */
83
84 MIPS_SOFT_INT_MASK_0|
85 MIPS_SOFT_INT_MASK_1|
86 MIPS_INT_MASK_0, /* 6: IPL_NET */
87
88 MIPS_SOFT_INT_MASK_0|
89 MIPS_SOFT_INT_MASK_1|
90 MIPS_INT_MASK_0, /* 7: IPL_{SERIAL,TTY} */
91
92 MIPS_SOFT_INT_MASK_0|
93 MIPS_SOFT_INT_MASK_1|
94 MIPS_INT_MASK_0|
95 MIPS_INT_MASK_1|
96 MIPS_INT_MASK_2|
97 MIPS_INT_MASK_3|
98 MIPS_INT_MASK_4|
99 MIPS_INT_MASK_5, /* 8: IPL_{CLOCK,HIGH} */
100 };
101
102 /*
103 * This is a mask of bits to clear in the SR when we go to a
104 * given software interrupt priority level.
105 * Hardware ipls are port/board specific.
106 */
107 const u_int32_t ipl_si_to_sr[_IPL_NSOFT] = {
108 MIPS_SOFT_INT_MASK_0, /* IPL_SOFT */
109 MIPS_SOFT_INT_MASK_0, /* IPL_SOFTCLOCK */
110 MIPS_SOFT_INT_MASK_0, /* IPL_SOFTNET */
111 MIPS_SOFT_INT_MASK_0, /* IPL_SOFTSERIAL */
112 };
113
114 #define NIRQS 64
115
116 const char *au1000_intrnames[NIRQS] = {
117 "uart0",
118 "uart1",
119 "uart2",
120 "uart3",
121 "ssi0",
122 "ssi1",
123 "dma0",
124 "dma1",
125 "dma2",
126 "dma3",
127 "dma4",
128 "dma5",
129 "dma6",
130 "dma7",
131 "pc0",
132 "pc0 match1",
133 "pc0 match2",
134 "pc0 match3",
135 "pc1",
136 "pc1 match1",
137 "pc1 match2",
138 "pc1 match3",
139 "irda tx",
140 "irda rx",
141 "usb intr",
142 "usb suspend",
143 "usb host",
144 "ac97",
145 "mac0",
146 "mac1",
147 "i2s",
148 "ac97 cmd",
149
150 "gpio 0",
151 "gpio 1",
152 "gpio 2",
153 "gpio 3",
154 "gpio 4",
155 "gpio 5",
156 "gpio 6",
157 "gpio 7",
158 "gpio 8",
159 "gpio 9",
160 "gpio 10",
161 "gpio 11",
162 "gpio 12",
163 "gpio 13",
164 "gpio 14",
165 "gpio 15",
166 "gpio 16",
167 "gpio 17",
168 "gpio 18",
169 "gpio 19",
170 "gpio 20",
171 "gpio 21",
172 "gpio 22",
173 "gpio 23",
174 "gpio 24",
175 "gpio 25",
176 "gpio 26",
177 "gpio 27",
178 "gpio 28",
179 "gpio 29",
180 "gpio 30",
181 "gpio 31",
182 };
183
184 struct au1000_intrhead {
185 struct evcnt intr_count;
186 int intr_refcnt;
187 };
188 struct au1000_intrhead au1000_intrtab[NIRQS];
189
190 #define NINTRS 4 /* MIPS INT0 - INT3 */
191
192 struct au1000_cpuintr {
193 LIST_HEAD(, evbmips_intrhand) cintr_list;
194 struct evcnt cintr_count;
195 };
196
197 struct au1000_cpuintr au1000_cpuintrs[NINTRS];
198 const char *au1000_cpuintrnames[NINTRS] = {
199 "icu 0, req 0",
200 "icu 0, req 1",
201 "icu 1, req 0",
202 "icu 1, req 1",
203 };
204
205 void
206 au_intr_init(void)
207 {
208 int i;
209
210 for (i = 0; i < NINTRS; i++) {
211 LIST_INIT(&au1000_cpuintrs[i].cintr_list);
212 evcnt_attach_dynamic(&au1000_cpuintrs[i].cintr_count,
213 EVCNT_TYPE_INTR, NULL, "mips", au1000_cpuintrnames[i]);
214 }
215
216 for (i = 0; i < NIRQS; i++) {
217 /* XXX steering - use an irqmap array? */
218
219 au1000_intrtab[i].intr_refcnt = 0;
220 evcnt_attach_dynamic(&au1000_intrtab[i].intr_count,
221 EVCNT_TYPE_INTR, NULL, "au1000", au1000_intrnames[i]);
222 }
223 }
224
225 void *
226 au_intr_establish(int irq, int req, int level, int type,
227 int (*func)(void *), void *arg)
228 {
229 struct evbmips_intrhand *ih;
230 uint32_t icu_base;
231 int cpu_intr, s;
232
233 if (irq >= NIRQS)
234 panic("au_intr_establish: bogus IRQ %d", irq);
235 if (req > 1)
236 panic("au_intr_establish: bogus request %d", req);
237
238 ih = malloc(sizeof(*ih), M_DEVBUF, M_NOWAIT);
239 if (ih == NULL)
240 return (NULL);
241
242 ih->ih_func = func;
243 ih->ih_arg = arg;
244 ih->ih_irq = irq;
245
246 s = splhigh();
247
248 /*
249 * First, link it into the tables.
250 * XXX do we want a separate list (really, should only be one item, not
251 * a list anyway) per irq, not per cpu interrupt?
252 */
253 cpu_intr = (irq < 32 ? 0 : 2);
254 LIST_INSERT_HEAD(&au1000_cpuintrs[cpu_intr].cintr_list, ih, ih_q);
255
256 /*
257 * Now enable it.
258 */
259 if (au1000_intrtab[irq].intr_refcnt++ == 0) {
260 icu_base = (irq < 32) ? IC0_BASE : IC1_BASE;
261
262 irq &= 31; /* throw away high bit if set */
263 irq = 1 << irq; /* only used as a mask from here on */
264
265 /* XXX Only high-level interrupts for now */
266 switch (type) {
267 case IST_NONE:
268 case IST_PULSE:
269 case IST_EDGE:
270 panic("unsupported irq type %d", type);
271 case IST_LEVEL:
272 REGVAL(icu_base + IC_CONFIG2_SET) = irq;
273 REGVAL(icu_base + IC_CONFIG1_CLEAR) = irq;
274 REGVAL(icu_base + IC_CONFIG0_SET) = irq;
275 }
276
277 /* XXX handle GPIO interrupts - not done at all yet */
278 if (cpu_intr & 0x1)
279 REGVAL(icu_base + IC_ASSIGN_REQUEST_CLEAR) = irq;
280 else
281 REGVAL(icu_base + IC_ASSIGN_REQUEST_SET) = irq;
282
283 /* Associate interrupt with peripheral */
284 REGVAL(icu_base + IC_SOURCE_SET) = irq;
285
286 /* Actually enable the interrupt */
287 REGVAL(icu_base + IC_MASK_SET) = irq;
288
289 /* And allow the interrupt to interrupt idle */
290 REGVAL(icu_base + IC_WAKEUP_SET) = irq;
291 }
292 splx(s);
293
294 return (ih);
295 }
296
297 void
298 au_intr_disestablish(void *cookie)
299 {
300 struct evbmips_intrhand *ih = cookie;
301 uint32_t icu_base;
302 int irq, s;
303
304 irq = ih->ih_irq;
305
306 s = splhigh();
307
308 /*
309 * First, remove it from the table.
310 */
311 LIST_REMOVE(ih, ih_q);
312
313 /*
314 * Now, disable it, if there is nothing remaining on the
315 * list.
316 */
317 if (au1000_intrtab[irq].intr_refcnt-- == 1) {
318 icu_base = (irq < 32) ? IC0_BASE : IC1_BASE;
319
320 irq &= 31; /* throw away high bit if set */
321 irq = 1 << irq; /* only used as a mask from here on */
322
323 REGVAL(icu_base + IC_CONFIG2_CLEAR) = irq;
324 REGVAL(icu_base + IC_CONFIG1_CLEAR) = irq;
325 REGVAL(icu_base + IC_CONFIG0_CLEAR) = irq;
326
327 /* XXX disable with MASK_CLEAR and WAKEUP_CLEAR */
328 }
329
330 splx(s);
331
332 free(ih, M_DEVBUF);
333 }
334
335 void
336 au_iointr(u_int32_t status, u_int32_t cause, u_int32_t pc, u_int32_t ipending)
337 {
338 struct evbmips_intrhand *ih;
339 int level;
340 u_int32_t icu_base, irqmask;
341
342 for (level = 3; level >= 0; level--) {
343 if ((ipending & (MIPS_INT_MASK_0 << level)) == 0)
344 continue;
345
346 /*
347 * XXX the following may well be slow to execute.
348 * investigate and possibly speed up.
349 *
350 * is something like:
351 *
352 * irqmask = REGVAL(
353 * (level & 4 == 0) ? IC0_BASE ? IC1_BASE +
354 * (level & 2 == 0) ? IC_REQUEST0_INT : IC_REQUEST1_INT);
355 *
356 * be any better?
357 *
358 */
359 switch (level) {
360 case 0:
361 icu_base = IC0_BASE;
362 irqmask = REGVAL(icu_base + IC_REQUEST0_INT);
363 break;
364 case 1:
365 icu_base = IC0_BASE;
366 irqmask = REGVAL(icu_base + IC_REQUEST1_INT);
367 break;
368 case 2:
369 icu_base = IC1_BASE;
370 irqmask = REGVAL(icu_base + IC_REQUEST0_INT);
371 break;
372 case 3:
373 icu_base = IC1_BASE;
374 irqmask = REGVAL(icu_base + IC_REQUEST1_INT);
375 break;
376 }
377 au1000_cpuintrs[level].cintr_count.ev_count++;
378 LIST_FOREACH(ih, &au1000_cpuintrs[level].cintr_list, ih_q) {
379 /* XXX should check is see if interrupt is masked? */
380 if (1 << ih->ih_irq & irqmask) {
381 au1000_intrtab[ih->ih_irq].intr_count.ev_count++;
382 (*ih->ih_func)(ih->ih_arg);
383
384 REGVAL(icu_base + IC_MASK_CLEAR) = 1 << ih->ih_irq;
385 REGVAL(icu_base + IC_MASK_SET) = 1 << ih->ih_irq;
386 }
387 }
388 cause &= ~(MIPS_INT_MASK_0 << level);
389 }
390
391 /* Re-enable anything that we have processed. */
392 _splset(MIPS_SR_INT_IE | ((status & ~cause) & MIPS_HARD_INT_MASK));
393 }
394