1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
|
/* $OpenBSD: ipic.c,v 1.6 2008/12/04 16:02:20 maja Exp $ */
/*
* Copyright (c) 2008 Mark Kettenis
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <machine/autoconf.h>
#include <machine/intr.h>
#define IPIC_SICFR 0x00
#define IPIC_SIVCR 0x04
#define IPIC_SIPNR_H 0x08
#define IPIC_SIPNR_L 0x0c
#define IPIC_SIPRR_A 0x10
#define IPIC_SIPRR_D 0x1c
#define IPIC_SIMSR_H 0x20
#define IPIC_SIMSR_L 0x24
#define IPIC_SICNR 0x28
#define IPIC_SEPNR 0x2c
#define IPIC_SMPRR_A 0x30
#define IPIC_SMPRR_B 0x34
#define IPIC_SEMSR 0x38
#define IPIC_SECNR 0x3c
#define IPIC_SERSR 0x40
#define IPIC_SERMR 0x44
#define IPIC_SERCR 0x48
#define IPIC_SIFCR_H 0x50
#define IPIC_SIFCR_L 0x54
#define IPIC_SEFCR 0x58
#define IPIC_SERFR 0x5c
#define IPIC_SCVCR 0x60
#define IPIC_SMVCR 0x64
#define IPIC_NVEC 128
#define IPIC_EXTERNAL(ivec) ((ivec) >= 17 && (ivec) <= 23)
struct ipic_softc {
struct device sc_dev;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
uint32_t sc_simsr_h[IPL_NUM];
uint32_t sc_simsr_l[IPL_NUM];
uint32_t sc_semsr[IPL_NUM];
};
uint32_t ipic_imask;
struct intrhand *ipic_intrhand[IPIC_NVEC];
struct ipic_softc *ipic_sc;
int ipic_match(struct device *, void *, void *);
void ipic_attach(struct device *, struct device *, void *);
struct cfattach ipic_ca = {
sizeof(struct ipic_softc), ipic_match, ipic_attach
};
struct cfdriver ipic_cd = {
NULL, "ipic", DV_DULL
};
uint32_t ipic_read(struct ipic_softc *, bus_addr_t);
void ipic_write(struct ipic_softc *, bus_addr_t, uint32_t);
uint32_t ipic_simsr_h(int);
uint32_t ipic_simsr_l(int);
uint32_t ipic_semsr(int);
void ext_intr(void);
void ipic_do_pending_int(void);
int
ipic_match(struct device *parent, void *cfdata, void *aux)
{
return (1);
}
void
ipic_attach(struct device *parent, struct device *self, void *aux)
{
struct ipic_softc *sc = (void *)self;
struct obio_attach_args *oa = aux;
sc->sc_iot = oa->oa_iot;
if (bus_space_map(sc->sc_iot, oa->oa_offset, 128, 0, &sc->sc_ioh)) {
printf(": can't map registers\n");
return;
}
ipic_sc = sc;
printf("\n");
}
uint32_t
ipic_read(struct ipic_softc *sc, bus_addr_t addr)
{
return (letoh32(bus_space_read_4(sc->sc_iot, sc->sc_ioh, addr)));
}
void
ipic_write(struct ipic_softc *sc, bus_addr_t addr, uint32_t data)
{
bus_space_write_4(sc->sc_iot, sc->sc_ioh, addr, htole32(data));
}
uint32_t
ipic_simsr_h(int ivec)
{
switch (ivec) {
case 9:
return 0x00000080;
case 10:
return 0x00000040;
case 32:
return 0x80000000;
case 33:
return 0x40000000;
case 34:
return 0x20000000;
case 35:
return 0x10000000;
case 36:
return 0x08000000;
case 37:
return 0x04000000;
case 39:
return 0x01000000;
}
return 0;
}
uint32_t
ipic_simsr_l(int ivec)
{
return 0;
}
uint32_t
ipic_semsr(int ivec)
{
switch (ivec) {
case 17:
return 0x40000000;
case 18:
return 0x20000000;
case 19:
return 0x10000000;
case 20:
return 0x08000000;
case 21:
return 0x04000000;
case 22:
return 0x02000000;
case 23:
return 0x01000000;
}
return 0;
}
static void
intr_calculatemasks(void)
{
struct ipic_softc *sc = ipic_sc;
int level;
for (level = IPL_NONE; level < IPL_NUM; level++)
imask[level] = SINT_MASK | (1 << level);
/*
* There are tty, network and disk drivers that use free() at interrupt
* time, so vm > (tty | net | bio).
*
* Enforce a hierarchy that gives slow devices a better chance at not
* dropping data.
*/
imask[IPL_NET] |= imask[IPL_BIO];
imask[IPL_TTY] |= imask[IPL_NET];
imask[IPL_VM] |= imask[IPL_TTY];
imask[IPL_CLOCK] |= imask[IPL_VM] | SPL_CLOCK;
/*
* These are pseudo-levels.
*/
imask[IPL_NONE] = 0x00000000;
imask[IPL_HIGH] = 0xffffffff;
sc->sc_simsr_h[IPL_NET] |= sc->sc_simsr_h[IPL_BIO];
sc->sc_simsr_h[IPL_TTY] |= sc->sc_simsr_h[IPL_NET];
sc->sc_simsr_h[IPL_VM] |= sc->sc_simsr_h[IPL_TTY];
sc->sc_simsr_h[IPL_CLOCK] |= sc->sc_simsr_h[IPL_VM];
sc->sc_simsr_h[IPL_HIGH] |= sc->sc_simsr_h[IPL_CLOCK];
sc->sc_simsr_l[IPL_NET] |= sc->sc_simsr_l[IPL_BIO];
sc->sc_simsr_l[IPL_TTY] |= sc->sc_simsr_l[IPL_NET];
sc->sc_simsr_l[IPL_VM] |= sc->sc_simsr_l[IPL_TTY];
sc->sc_simsr_l[IPL_CLOCK] |= sc->sc_simsr_l[IPL_VM];
sc->sc_simsr_l[IPL_HIGH] |= sc->sc_simsr_l[IPL_CLOCK];
sc->sc_semsr[IPL_NET] |= sc->sc_semsr[IPL_BIO];
sc->sc_semsr[IPL_TTY] |= sc->sc_semsr[IPL_NET];
sc->sc_semsr[IPL_VM] |= sc->sc_semsr[IPL_TTY];
sc->sc_semsr[IPL_CLOCK] |= sc->sc_semsr[IPL_VM];
sc->sc_semsr[IPL_HIGH] |= sc->sc_semsr[IPL_CLOCK];
}
void *
intr_establish(int ivec, int type, int level,
int (*ih_fun)(void *), void *ih_arg, const char *name)
{
struct ipic_softc *sc = ipic_sc;
struct intrhand **p, *q, *ih;
uint32_t mask;
ih = malloc(sizeof *ih, M_DEVBUF, cold ? M_NOWAIT : M_WAITOK);
if (ih == NULL)
panic("%s: malloc failed", __func__);
if (ivec < 0 || ivec >= IPIC_NVEC)
panic("%s: invalid vector %d", __func__, ivec);
for (p = &ipic_intrhand[ivec]; (q = *p) != NULL; p = &q->ih_next)
;
sc->sc_simsr_h[level] |= ipic_simsr_h(ivec);
sc->sc_simsr_l[level] |= ipic_simsr_l(ivec);
sc->sc_semsr[level] |= ipic_semsr(ivec);
intr_calculatemasks();
ih->ih_fun = ih_fun;
ih->ih_arg = ih_arg;
ih->ih_next = NULL;
ih->ih_level = level;
ih->ih_irq = ivec;
evcount_attach(&ih->ih_count, name, NULL, &evcount_intr);
*p = ih;
/* Unmask the interrupt. */
mask = ipic_read(sc, IPIC_SIMSR_H);
mask |= ipic_simsr_h(ivec);
ipic_write(sc, IPIC_SIMSR_H, mask);
mask = ipic_read(sc, IPIC_SIMSR_L);
mask |= ipic_simsr_l(ivec);
ipic_write(sc, IPIC_SIMSR_L, mask);
mask = ipic_read(sc, IPIC_SEMSR);
mask |= ipic_semsr(ivec);
ipic_write(sc, IPIC_SEMSR, mask);
return (ih);
}
void
ext_intr(void)
{
struct cpu_info *ci = curcpu();
struct ipic_softc *sc = ipic_sc;
struct intrhand *ih;
uint32_t simsr_h, simsr_l, semsr;
int pcpl, ocpl;
int ivec;
pcpl = ci->ci_cpl;
ivec = ipic_read(sc, IPIC_SIVCR) & 0x7f;
simsr_h = ipic_read(sc, IPIC_SIMSR_H);
simsr_l = ipic_read(sc, IPIC_SIMSR_L);
semsr = ipic_read(sc, IPIC_SEMSR);
ipic_write(sc, IPIC_SIMSR_H, simsr_h & ~ipic_simsr_h(ivec));
ipic_write(sc, IPIC_SIMSR_L, simsr_l & ~ipic_simsr_l(ivec));
ipic_write(sc, IPIC_SEMSR, semsr & ~ipic_semsr(ivec));
ih = ipic_intrhand[ivec];
while (ih) {
if (ci->ci_cpl & (1 << ih->ih_level)) {
ci->ci_ipending |= (1 << ih->ih_level);
return;
}
ipic_write(sc, IPIC_SIMSR_H, sc->sc_simsr_h[ih->ih_level]);
ipic_write(sc, IPIC_SIMSR_L, sc->sc_simsr_l[ih->ih_level]);
ipic_write(sc, IPIC_SEMSR, sc->sc_semsr[ih->ih_level]);
ocpl = splraise(imask[ih->ih_level]);
ppc_intr_enable(1);
KERNEL_LOCK();
if ((*ih->ih_fun)(ih->ih_arg))
ih->ih_count.ec_count++;
KERNEL_UNLOCK();
ppc_intr_disable();
ci->ci_cpl = ocpl;
ih = ih->ih_next;
}
ipic_write(sc, IPIC_SIMSR_H, simsr_h);
ipic_write(sc, IPIC_SIMSR_L, simsr_l);
ipic_write(sc, IPIC_SEMSR, semsr);
splx(pcpl);
}
static __inline int
cntlzw(int x)
{
int a;
__asm __volatile("cntlzw %0,%1" : "=r"(a) : "r"(x));
return a;
}
void
ipic_do_pending_int(void)
{
struct cpu_info *ci = curcpu();
struct ipic_softc *sc = ipic_sc;
uint32_t mask;
int level;
ci->ci_ipending &= SINT_MASK;
level = cntlzw(31 - (ci->ci_cpl & ~(SPL_CLOCK|SINT_MASK)));
mask = sc->sc_simsr_h[IPL_HIGH] & ~sc->sc_simsr_h[level];
ipic_write(sc, IPIC_SIMSR_H, mask);
mask = sc->sc_simsr_l[IPL_HIGH] & ~sc->sc_simsr_l[level];
ipic_write(sc, IPIC_SIMSR_L, mask);
mask = sc->sc_semsr[IPL_HIGH] & ~sc->sc_semsr[level];
ipic_write(sc, IPIC_SEMSR, mask);
}
|