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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
|
/* $OpenBSD: ampintc.c,v 1.5 2014/12/13 21:05:32 doug Exp $ */
/*
* Copyright (c) 2007,2009,2011 Dale Rahn <drahn@openbsd.org>
*
* 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.
*/
/*
* This driver implements the interrupt controller as specified in
* DDI0407E_cortex_a9_mpcore_r2p0_trm with the
* IHI0048A_gic_architecture_spec_v1_0 underlying specification
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/queue.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include <sys/evcount.h>
#include <arm/cpufunc.h>
#include <machine/bus.h>
#include <arm/cortex/cortex.h>
/* offset from periphbase */
#define ICP_ADDR 0x100
#define ICP_SIZE 0x100
#define ICD_ADDR 0x1000
#define ICD_SIZE 0x1000
#define ICD_A7_A15_ADDR 0x1000
#define ICD_A7_A15_SIZE 0x1000
#define ICP_A7_A15_ADDR 0x2000
#define ICP_A7_A15_SIZE 0x1000
/* registers */
#define ICD_DCR 0x000
#define ICD_DCR_ES 0x00000001
#define ICD_DCR_ENS 0x00000002
#define ICD_ICTR 0x004
#define ICD_ICTR_LSPI_SH 11
#define ICD_ICTR_LSPI_M 0x1f
#define ICD_ICTR_CPU_SH 5
#define ICD_ICTR_CPU_M 0x07
#define ICD_ICTR_ITL_SH 0
#define ICD_ICTR_ITL_M 0x1f
#define ICD_IDIR 0x008
#define ICD_DIR_PROD_SH 24
#define ICD_DIR_PROD_M 0xff
#define ICD_DIR_REV_SH 12
#define ICD_DIR_REV_M 0xfff
#define ICD_DIR_IMP_SH 0
#define ICD_DIR_IMP_M 0xfff
#define IRQ_TO_REG32(i) (((i) >> 5) & 0x7)
#define IRQ_TO_REG32BIT(i) ((i) & 0x1f)
#define IRQ_TO_REG4(i) (((i) >> 2) & 0x3f)
#define IRQ_TO_REG4BIT(i) ((i) & 0x3)
#define IRQ_TO_REG16(i) (((i) >> 4) & 0xf)
#define IRQ_TO_REGBIT_S(i) 8
#define IRQ_TO_REG4BIT_M(i) 8
#define ICD_ISRn(i) (0x080 + (IRQ_TO_REG32(i) * 4))
#define ICD_ISERn(i) (0x100 + (IRQ_TO_REG32(i) * 4))
#define ICD_ICERn(i) (0x180 + (IRQ_TO_REG32(i) * 4))
#define ICD_ISPRn(i) (0x200 + (IRQ_TO_REG32(i) * 4))
#define ICD_ICPRn(i) (0x280 + (IRQ_TO_REG32(i) * 4))
#define ICD_ABRn(i) (0x300 + (IRQ_TO_REG32(i) * 4))
#define ICD_IPRn(i) (0x400 + (i))
#define ICD_IPTRn(i) (0x800 + (i))
#define ICD_ICRn(i) (0xC00 + (IRQ_TO_REG16(i) * 4))
/*
* what about (ppi|spi)_status
*/
#define ICD_PPI 0xD00
#define ICD_PPI_GTIMER (1 << 11)
#define ICD_PPI_FIQ (1 << 12)
#define ICD_PPI_PTIMER (1 << 13)
#define ICD_PPI_PWDOG (1 << 14)
#define ICD_PPI_IRQ (1 << 15)
#define ICD_SPI_BASE 0xD04
#define ICD_SPIn(i) (ICD_SPI_BASE + ((i) * 4))
#define ICD_SGIR 0xF00
#define ICD_PERIPH_ID_0 0xFD0
#define ICD_PERIPH_ID_1 0xFD4
#define ICD_PERIPH_ID_2 0xFD8
#define ICD_PERIPH_ID_3 0xFDC
#define ICD_PERIPH_ID_4 0xFE0
#define ICD_PERIPH_ID_5 0xFE4
#define ICD_PERIPH_ID_6 0xFE8
#define ICD_PERIPH_ID_7 0xFEC
#define ICD_COMP_ID_0 0xFEC
#define ICD_COMP_ID_1 0xFEC
#define ICD_COMP_ID_2 0xFEC
#define ICD_COMP_ID_3 0xFEC
#define ICD_SIZE 0x1000
#define ICPICR 0x00
#define ICPIPMR 0x04
/* XXX - must left justify bits to 0 - 7 */
#define ICMIPMR_SH 4
#define ICPBPR 0x08
#define ICPIAR 0x0C
#define ICPIAR_IRQ_SH 0
#define ICPIAR_IRQ_M 0x3ff
#define ICPIAR_CPUID_SH 10
#define ICPIAR_CPUID_M 0x7
#define ICPIAR_NO_PENDING_IRQ ICPIAR_IRQ_M
#define ICPEOIR 0x10
#define ICPPRP 0x14
#define ICPHPIR 0x18
#define ICPIIR 0xFC
#define ICP_SIZE 0x100
/*
* what about periph_id and component_id
*/
#define AMPAMPINTC_SIZE 0x1000
#define IRQ_ENABLE 1
#define IRQ_DISABLE 0
struct ampintc_softc {
struct device sc_dev;
struct intrq *sc_ampintc_handler;
int sc_nintr;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_d_ioh, sc_p_ioh;
struct evcount sc_spur;
};
struct ampintc_softc *ampintc;
struct intrhand {
TAILQ_ENTRY(intrhand) ih_list; /* link on intrq list */
int (*ih_func)(void *); /* handler */
void *ih_arg; /* arg for handler */
int ih_ipl; /* IPL_* */
int ih_irq; /* IRQ number */
struct evcount ih_count;
char *ih_name;
};
struct intrq {
TAILQ_HEAD(, intrhand) iq_list; /* handler list */
int iq_irq; /* IRQ to mask while handling */
int iq_levels; /* IPL_*'s this IRQ has */
int iq_ist; /* share type */
};
int ampintc_match(struct device *, void *, void *);
void ampintc_attach(struct device *, struct device *, void *);
int ampintc_spllower(int);
void ampintc_splx(int);
int ampintc_splraise(int);
void ampintc_setipl(int);
void ampintc_calc_mask(void);
void *ampintc_intr_establish(int, int, int (*)(void *), void *,
char *);
void *ampintc_intr_establish_ext(int, int, int (*)(void *), void *,
char *);
void ampintc_intr_disestablish(void *);
void ampintc_irq_handler(void *);
const char *ampintc_intr_string(void *);
uint32_t ampintc_iack(void);
void ampintc_eoi(uint32_t);
void ampintc_set_priority(int, int);
void ampintc_intr_enable(int);
void ampintc_intr_disable(int);
void ampintc_route(int, int , int);
struct cfattach ampintc_ca = {
sizeof (struct ampintc_softc), ampintc_match, ampintc_attach
};
struct cfdriver ampintc_cd = {
NULL, "ampintc", DV_DULL
};
int
ampintc_match(struct device *parent, void *cfdata, void *aux)
{
return (1);
}
void
ampintc_attach(struct device *parent, struct device *self, void *args)
{
struct ampintc_softc *sc = (struct ampintc_softc *)self;
struct cortex_attach_args *ia = args;
int i, nintr;
bus_space_tag_t iot;
bus_space_handle_t d_ioh, p_ioh;
uint32_t icp, icpsize, icd, icdsize;
ampintc = sc;
arm_init_smask();
iot = ia->ca_iot;
icp = ia->ca_periphbase + ICP_ADDR;
icpsize = ICP_SIZE;
icd = ia->ca_periphbase + ICD_ADDR;
icdsize = ICD_SIZE;
if ((cputype & CPU_ID_CORTEX_A7_MASK) == CPU_ID_CORTEX_A7 ||
(cputype & CPU_ID_CORTEX_A15_MASK) == CPU_ID_CORTEX_A15) {
icp = ia->ca_periphbase + ICP_A7_A15_ADDR;
icpsize = ICP_A7_A15_SIZE;
icd = ia->ca_periphbase + ICD_A7_A15_ADDR;
icdsize = ICD_A7_A15_SIZE;
}
if (bus_space_map(iot, icp, icpsize, 0, &p_ioh))
panic("ampintc_attach: ICP bus_space_map failed!");
if (bus_space_map(iot, icd, icdsize, 0, &d_ioh))
panic("ampintc_attach: ICD bus_space_map failed!");
sc->sc_iot = iot;
sc->sc_d_ioh = d_ioh;
sc->sc_p_ioh = p_ioh;
evcount_attach(&sc->sc_spur, "irq1023/spur", NULL);
nintr = 32 * (bus_space_read_4(iot, d_ioh, ICD_ICTR) & ICD_ICTR_ITL_M);
nintr += 32; /* ICD_ICTR + 1, irq 0-31 is SGI, 32+ is PPI */
sc->sc_nintr = nintr;
printf(" nirq %d\n", nintr);
/* Disable all interrupts, clear all pending */
for (i = 0; i < nintr/32; i++) {
bus_space_write_4(iot, d_ioh, ICD_ICERn(i*32), ~0);
bus_space_write_4(iot, d_ioh, ICD_ICPRn(i*32), ~0);
}
for (i = 0; i < nintr; i++) {
/* lowest priority ?? */
bus_space_write_1(iot, d_ioh, ICD_IPRn(i), 0xff);
/* target no cpus */
bus_space_write_1(iot, d_ioh, ICD_IPTRn(i), 0);
}
for (i = 2; i < nintr/16; i++) {
/* irq 32 - N */
bus_space_write_4(iot, d_ioh, ICD_ICRn(i*16), 0);
}
/* software reset of the part? */
/* set protection bit (kernel only)? */
/* XXX - check power saving bit */
sc->sc_ampintc_handler = mallocarray(nintr,
sizeof(*sc->sc_ampintc_handler), M_DEVBUF, M_ZERO | M_NOWAIT);
for (i = 0; i < nintr; i++) {
TAILQ_INIT(&sc->sc_ampintc_handler[i].iq_list);
}
ampintc_setipl(IPL_HIGH); /* XXX ??? */
ampintc_calc_mask();
/* insert self as interrupt handler */
arm_set_intr_handler(ampintc_splraise, ampintc_spllower, ampintc_splx,
ampintc_setipl, ampintc_intr_establish_ext,
ampintc_intr_disestablish, ampintc_intr_string, ampintc_irq_handler);
/* enable interrupts */
bus_space_write_4(iot, d_ioh, ICD_DCR, 3);
bus_space_write_4(iot, p_ioh, ICPICR, 1);
enable_interrupts(I32_bit);
}
void
ampintc_set_priority(int irq, int pri)
{
struct ampintc_softc *sc = ampintc;
uint32_t prival;
/*
* We only use 16 (13 really) interrupt priorities,
* and a CPU is only required to implement bit 4-7 of each field
* so shift into the top bits.
* also low values are higher priority thus IPL_HIGH - pri
*/
prival = (IPL_HIGH - pri) << ICMIPMR_SH;
bus_space_write_1(sc->sc_iot, sc->sc_d_ioh, ICD_IPRn(irq), prival);
}
void
ampintc_setipl(int new)
{
struct cpu_info *ci = curcpu();
struct ampintc_softc *sc = ampintc;
int psw;
/* disable here is only to keep hardware in sync with ci->ci_cpl */
psw = disable_interrupts(I32_bit);
ci->ci_cpl = new;
/* low values are higher priority thus IPL_HIGH - pri */
bus_space_write_4(sc->sc_iot, sc->sc_p_ioh, ICPIPMR,
(IPL_HIGH - new) << ICMIPMR_SH);
restore_interrupts(psw);
}
void
ampintc_intr_enable(int irq)
{
struct ampintc_softc *sc = ampintc;
#ifdef DEBUG
printf("enable irq %d register %x bitmask %08x\n",
irq, ICD_ISERn(irq), 1 << IRQ_TO_REG32BIT(irq));
#endif
bus_space_write_4(sc->sc_iot, sc->sc_d_ioh, ICD_ISERn(irq),
1 << IRQ_TO_REG32BIT(irq));
}
void
ampintc_intr_disable(int irq)
{
struct ampintc_softc *sc = ampintc;
bus_space_write_4(sc->sc_iot, sc->sc_d_ioh, ICD_ICERn(irq),
1 << IRQ_TO_REG32BIT(irq));
}
void
ampintc_calc_mask(void)
{
struct cpu_info *ci = curcpu();
struct ampintc_softc *sc = ampintc;
struct intrhand *ih;
int irq;
for (irq = 0; irq < sc->sc_nintr; irq++) {
int max = IPL_NONE;
int min = IPL_HIGH;
TAILQ_FOREACH(ih, &sc->sc_ampintc_handler[irq].iq_list,
ih_list) {
if (ih->ih_ipl > max)
max = ih->ih_ipl;
if (ih->ih_ipl < min)
min = ih->ih_ipl;
}
if (sc->sc_ampintc_handler[irq].iq_irq == max) {
continue;
}
sc->sc_ampintc_handler[irq].iq_irq = max;
if (max == IPL_NONE)
min = IPL_NONE;
#ifdef DEBUG_INTC
if (min != IPL_NONE) {
printf("irq %d to block at %d %d reg %d bit %d\n",
irq, max, min, AMPINTC_IRQ_TO_REG(irq),
AMPINTC_IRQ_TO_REGi(irq));
}
#endif
/* Enable interrupts at lower levels, clear -> enable */
/* Set interrupt priority/enable */
if (min != IPL_NONE) {
ampintc_set_priority(irq, min);
ampintc_intr_enable(irq);
ampintc_route(irq, IRQ_ENABLE, 0);
} else {
ampintc_intr_disable(irq);
ampintc_route(irq, IRQ_DISABLE, 0);
}
}
ampintc_setipl(ci->ci_cpl);
}
void
ampintc_splx(int new)
{
struct cpu_info *ci = curcpu();
if (ci->ci_ipending & arm_smask[new])
arm_do_pending_intr(new);
ampintc_setipl(new);
}
int
ampintc_spllower(int new)
{
struct cpu_info *ci = curcpu();
int old = ci->ci_cpl;
ampintc_splx(new);
return (old);
}
int
ampintc_splraise(int new)
{
struct cpu_info *ci = curcpu();
int old;
old = ci->ci_cpl;
/*
* setipl must always be called because there is a race window
* where the variable is updated before the mask is set
* an interrupt occurs in that window without the mask always
* being set, the hardware might not get updated on the next
* splraise completely messing up spl protection.
*/
if (old > new)
new = old;
ampintc_setipl(new);
return (old);
}
uint32_t
ampintc_iack(void)
{
uint32_t intid;
struct ampintc_softc *sc = ampintc;
intid = bus_space_read_4(sc->sc_iot, sc->sc_p_ioh, ICPIAR);
return (intid);
}
void
ampintc_eoi(uint32_t eoi)
{
struct ampintc_softc *sc = ampintc;
bus_space_write_4(sc->sc_iot, sc->sc_p_ioh, ICPEOIR, eoi);
}
void
ampintc_route(int irq, int enable, int cpu)
{
uint8_t val;
struct ampintc_softc *sc = ampintc;
val = bus_space_read_1(sc->sc_iot, sc->sc_d_ioh, ICD_IPTRn(irq));
if (enable == IRQ_ENABLE)
val |= (1 << cpu);
else
val &= ~(1 << cpu);
bus_space_write_1(sc->sc_iot, sc->sc_d_ioh, ICD_IPTRn(irq), val);
}
void
ampintc_irq_handler(void *frame)
{
struct ampintc_softc *sc = ampintc;
struct intrhand *ih;
void *arg;
uint32_t iack_val;
int irq, pri, s;
iack_val = ampintc_iack();
//#define DEBUG_INTC
#ifdef DEBUG_INTC
if (iack_val != 27)
printf("irq %d fired\n", iack_val);
else {
static int cnt = 0;
if ((cnt++ % 100) == 0) {
printf("irq %d fired * _100\n", iack_val);
Debugger();
}
}
#endif
if (iack_val == 1023) {
sc->sc_spur.ec_count++;
return;
}
irq = iack_val & ((1 << sc->sc_nintr) - 1);
pri = sc->sc_ampintc_handler[irq].iq_irq;
s = ampintc_splraise(pri);
TAILQ_FOREACH(ih, &sc->sc_ampintc_handler[irq].iq_list, ih_list) {
if (ih->ih_arg != 0)
arg = ih->ih_arg;
else
arg = frame;
if (ih->ih_func(arg))
ih->ih_count.ec_count++;
}
ampintc_eoi(iack_val);
ampintc_splx(s);
}
void *
ampintc_intr_establish_ext(int irqno, int level, int (*func)(void *),
void *arg, char *name)
{
return ampintc_intr_establish(irqno+32, level, func, arg, name);
}
void *
ampintc_intr_establish(int irqno, int level, int (*func)(void *),
void *arg, char *name)
{
struct ampintc_softc *sc = ampintc;
struct intrhand *ih;
int psw;
if (irqno < 0 || irqno >= sc->sc_nintr)
panic("ampintc_intr_establish: bogus irqnumber %d: %s",
irqno, name);
/* no point in sleeping unless someone can free memory. */
ih = (struct intrhand *)malloc (sizeof *ih, M_DEVBUF,
cold ? M_NOWAIT : M_WAITOK);
if (ih == NULL)
panic("intr_establish: can't malloc handler info");
ih->ih_func = func;
ih->ih_arg = arg;
ih->ih_ipl = level;
ih->ih_irq = irqno;
ih->ih_name = name;
psw = disable_interrupts(I32_bit);
TAILQ_INSERT_TAIL(&sc->sc_ampintc_handler[irqno].iq_list, ih, ih_list);
if (name != NULL)
evcount_attach(&ih->ih_count, name, &ih->ih_irq);
#ifdef DEBUG_INTC
printf("ampintc_intr_establish irq %d level %d [%s]\n", irqno, level,
name);
#endif
ampintc_calc_mask();
restore_interrupts(psw);
return (ih);
}
void
ampintc_intr_disestablish(void *cookie)
{
#if 0
int psw;
struct intrhand *ih = cookie;
int irqno = ih->ih_irq;
psw = disable_interrupts(I32_bit);
TAILQ_REMOVE(&sc->sc_ampintc_handler[irqno].iq_list, ih, ih_list);
if (ih->ih_name != NULL)
evcount_detach(&ih->ih_count);
free(ih, M_DEVBUF, 0);
restore_interrupts(psw);
#endif
}
const char *
ampintc_intr_string(void *cookie)
{
struct intrhand *ih = (struct intrhand *)cookie;
static char irqstr[1 + sizeof("ampintc irq ") + 4];
snprintf(irqstr, sizeof irqstr, "ampintc irq %d", ih->ih_irq);
return irqstr;
}
|