blob: 9e3144975696454da49081924b2021f254eabecc [file] [log] [blame]
Marc Zyngier021f6532014-06-30 16:01:31 +01001/*
2 * Copyright (C) 2013, 2014 ARM Limited, All Rights Reserved.
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include <linux/cpu.h>
19#include <linux/delay.h>
20#include <linux/interrupt.h>
21#include <linux/of.h>
22#include <linux/of_address.h>
23#include <linux/of_irq.h>
24#include <linux/percpu.h>
25#include <linux/slab.h>
26
27#include <linux/irqchip/arm-gic-v3.h>
28
29#include <asm/cputype.h>
30#include <asm/exception.h>
31#include <asm/smp_plat.h>
32
33#include "irq-gic-common.h"
34#include "irqchip.h"
35
36struct gic_chip_data {
37 void __iomem *dist_base;
38 void __iomem **redist_base;
39 void __percpu __iomem **rdist;
40 struct irq_domain *domain;
41 u64 redist_stride;
42 u32 redist_regions;
43 unsigned int irq_nr;
44};
45
46static struct gic_chip_data gic_data __read_mostly;
47
48#define gic_data_rdist() (this_cpu_ptr(gic_data.rdist))
49#define gic_data_rdist_rd_base() (*gic_data_rdist())
50#define gic_data_rdist_sgi_base() (gic_data_rdist_rd_base() + SZ_64K)
51
52/* Our default, arbitrary priority value. Linux only uses one anyway. */
53#define DEFAULT_PMR_VALUE 0xf0
54
55static inline unsigned int gic_irq(struct irq_data *d)
56{
57 return d->hwirq;
58}
59
60static inline int gic_irq_in_rdist(struct irq_data *d)
61{
62 return gic_irq(d) < 32;
63}
64
65static inline void __iomem *gic_dist_base(struct irq_data *d)
66{
67 if (gic_irq_in_rdist(d)) /* SGI+PPI -> SGI_base for this CPU */
68 return gic_data_rdist_sgi_base();
69
70 if (d->hwirq <= 1023) /* SPI -> dist_base */
71 return gic_data.dist_base;
72
73 if (d->hwirq >= 8192)
74 BUG(); /* LPI Detected!!! */
75
76 return NULL;
77}
78
79static void gic_do_wait_for_rwp(void __iomem *base)
80{
81 u32 count = 1000000; /* 1s! */
82
83 while (readl_relaxed(base + GICD_CTLR) & GICD_CTLR_RWP) {
84 count--;
85 if (!count) {
86 pr_err_ratelimited("RWP timeout, gone fishing\n");
87 return;
88 }
89 cpu_relax();
90 udelay(1);
91 };
92}
93
94/* Wait for completion of a distributor change */
95static void gic_dist_wait_for_rwp(void)
96{
97 gic_do_wait_for_rwp(gic_data.dist_base);
98}
99
100/* Wait for completion of a redistributor change */
101static void gic_redist_wait_for_rwp(void)
102{
103 gic_do_wait_for_rwp(gic_data_rdist_rd_base());
104}
105
106/* Low level accessors */
107static u64 gic_read_iar(void)
108{
109 u64 irqstat;
110
Catalin Marinas72c58392014-07-24 14:14:42 +0100111 asm volatile("mrs_s %0, " __stringify(ICC_IAR1_EL1) : "=r" (irqstat));
Marc Zyngier021f6532014-06-30 16:01:31 +0100112 return irqstat;
113}
114
115static void gic_write_pmr(u64 val)
116{
Catalin Marinas72c58392014-07-24 14:14:42 +0100117 asm volatile("msr_s " __stringify(ICC_PMR_EL1) ", %0" : : "r" (val));
Marc Zyngier021f6532014-06-30 16:01:31 +0100118}
119
120static void gic_write_ctlr(u64 val)
121{
Catalin Marinas72c58392014-07-24 14:14:42 +0100122 asm volatile("msr_s " __stringify(ICC_CTLR_EL1) ", %0" : : "r" (val));
Marc Zyngier021f6532014-06-30 16:01:31 +0100123 isb();
124}
125
126static void gic_write_grpen1(u64 val)
127{
Catalin Marinas72c58392014-07-24 14:14:42 +0100128 asm volatile("msr_s " __stringify(ICC_GRPEN1_EL1) ", %0" : : "r" (val));
Marc Zyngier021f6532014-06-30 16:01:31 +0100129 isb();
130}
131
132static void gic_write_sgi1r(u64 val)
133{
Catalin Marinas72c58392014-07-24 14:14:42 +0100134 asm volatile("msr_s " __stringify(ICC_SGI1R_EL1) ", %0" : : "r" (val));
Marc Zyngier021f6532014-06-30 16:01:31 +0100135}
136
137static void gic_enable_sre(void)
138{
139 u64 val;
140
Catalin Marinas72c58392014-07-24 14:14:42 +0100141 asm volatile("mrs_s %0, " __stringify(ICC_SRE_EL1) : "=r" (val));
Marc Zyngier021f6532014-06-30 16:01:31 +0100142 val |= ICC_SRE_EL1_SRE;
Catalin Marinas72c58392014-07-24 14:14:42 +0100143 asm volatile("msr_s " __stringify(ICC_SRE_EL1) ", %0" : : "r" (val));
Marc Zyngier021f6532014-06-30 16:01:31 +0100144 isb();
145
146 /*
147 * Need to check that the SRE bit has actually been set. If
148 * not, it means that SRE is disabled at EL2. We're going to
149 * die painfully, and there is nothing we can do about it.
150 *
151 * Kindly inform the luser.
152 */
Catalin Marinas72c58392014-07-24 14:14:42 +0100153 asm volatile("mrs_s %0, " __stringify(ICC_SRE_EL1) : "=r" (val));
Marc Zyngier021f6532014-06-30 16:01:31 +0100154 if (!(val & ICC_SRE_EL1_SRE))
155 pr_err("GIC: unable to set SRE (disabled at EL2), panic ahead\n");
156}
157
158static void gic_enable_redist(void)
159{
160 void __iomem *rbase;
161 u32 count = 1000000; /* 1s! */
162 u32 val;
163
164 rbase = gic_data_rdist_rd_base();
165
166 /* Wake up this CPU redistributor */
167 val = readl_relaxed(rbase + GICR_WAKER);
168 val &= ~GICR_WAKER_ProcessorSleep;
169 writel_relaxed(val, rbase + GICR_WAKER);
170
171 while (readl_relaxed(rbase + GICR_WAKER) & GICR_WAKER_ChildrenAsleep) {
172 count--;
173 if (!count) {
174 pr_err_ratelimited("redist didn't wake up...\n");
175 return;
176 }
177 cpu_relax();
178 udelay(1);
179 };
180}
181
182/*
183 * Routines to disable, enable, EOI and route interrupts
184 */
185static void gic_poke_irq(struct irq_data *d, u32 offset)
186{
187 u32 mask = 1 << (gic_irq(d) % 32);
188 void (*rwp_wait)(void);
189 void __iomem *base;
190
191 if (gic_irq_in_rdist(d)) {
192 base = gic_data_rdist_sgi_base();
193 rwp_wait = gic_redist_wait_for_rwp;
194 } else {
195 base = gic_data.dist_base;
196 rwp_wait = gic_dist_wait_for_rwp;
197 }
198
199 writel_relaxed(mask, base + offset + (gic_irq(d) / 32) * 4);
200 rwp_wait();
201}
202
203static int gic_peek_irq(struct irq_data *d, u32 offset)
204{
205 u32 mask = 1 << (gic_irq(d) % 32);
206 void __iomem *base;
207
208 if (gic_irq_in_rdist(d))
209 base = gic_data_rdist_sgi_base();
210 else
211 base = gic_data.dist_base;
212
213 return !!(readl_relaxed(base + offset + (gic_irq(d) / 32) * 4) & mask);
214}
215
216static void gic_mask_irq(struct irq_data *d)
217{
218 gic_poke_irq(d, GICD_ICENABLER);
219}
220
221static void gic_unmask_irq(struct irq_data *d)
222{
223 gic_poke_irq(d, GICD_ISENABLER);
224}
225
226static void gic_eoi_irq(struct irq_data *d)
227{
228 gic_write_eoir(gic_irq(d));
229}
230
231static int gic_set_type(struct irq_data *d, unsigned int type)
232{
233 unsigned int irq = gic_irq(d);
234 void (*rwp_wait)(void);
235 void __iomem *base;
236
237 /* Interrupt configuration for SGIs can't be changed */
238 if (irq < 16)
239 return -EINVAL;
240
241 if (type != IRQ_TYPE_LEVEL_HIGH && type != IRQ_TYPE_EDGE_RISING)
242 return -EINVAL;
243
244 if (gic_irq_in_rdist(d)) {
245 base = gic_data_rdist_sgi_base();
246 rwp_wait = gic_redist_wait_for_rwp;
247 } else {
248 base = gic_data.dist_base;
249 rwp_wait = gic_dist_wait_for_rwp;
250 }
251
252 gic_configure_irq(irq, type, base, rwp_wait);
253
254 return 0;
255}
256
257static u64 gic_mpidr_to_affinity(u64 mpidr)
258{
259 u64 aff;
260
261 aff = (MPIDR_AFFINITY_LEVEL(mpidr, 3) << 32 |
262 MPIDR_AFFINITY_LEVEL(mpidr, 2) << 16 |
263 MPIDR_AFFINITY_LEVEL(mpidr, 1) << 8 |
264 MPIDR_AFFINITY_LEVEL(mpidr, 0));
265
266 return aff;
267}
268
269static asmlinkage void __exception_irq_entry gic_handle_irq(struct pt_regs *regs)
270{
271 u64 irqnr;
272
273 do {
274 irqnr = gic_read_iar();
275
276 if (likely(irqnr > 15 && irqnr < 1020)) {
Marc Zyngierebc6de02014-08-26 11:03:33 +0100277 int err;
278 err = handle_domain_irq(gic_data.domain, irqnr, regs);
279 if (err) {
280 WARN_ONCE(true, "Unexpected SPI received!\n");
281 gic_write_eoir(irqnr);
Marc Zyngier021f6532014-06-30 16:01:31 +0100282 }
Marc Zyngierebc6de02014-08-26 11:03:33 +0100283 continue;
Marc Zyngier021f6532014-06-30 16:01:31 +0100284 }
285 if (irqnr < 16) {
286 gic_write_eoir(irqnr);
287#ifdef CONFIG_SMP
288 handle_IPI(irqnr, regs);
289#else
290 WARN_ONCE(true, "Unexpected SGI received!\n");
291#endif
292 continue;
293 }
294 } while (irqnr != ICC_IAR1_EL1_SPURIOUS);
295}
296
297static void __init gic_dist_init(void)
298{
299 unsigned int i;
300 u64 affinity;
301 void __iomem *base = gic_data.dist_base;
302
303 /* Disable the distributor */
304 writel_relaxed(0, base + GICD_CTLR);
305 gic_dist_wait_for_rwp();
306
307 gic_dist_config(base, gic_data.irq_nr, gic_dist_wait_for_rwp);
308
309 /* Enable distributor with ARE, Group1 */
310 writel_relaxed(GICD_CTLR_ARE_NS | GICD_CTLR_ENABLE_G1A | GICD_CTLR_ENABLE_G1,
311 base + GICD_CTLR);
312
313 /*
314 * Set all global interrupts to the boot CPU only. ARE must be
315 * enabled.
316 */
317 affinity = gic_mpidr_to_affinity(cpu_logical_map(smp_processor_id()));
318 for (i = 32; i < gic_data.irq_nr; i++)
319 writeq_relaxed(affinity, base + GICD_IROUTER + i * 8);
320}
321
322static int gic_populate_rdist(void)
323{
324 u64 mpidr = cpu_logical_map(smp_processor_id());
325 u64 typer;
326 u32 aff;
327 int i;
328
329 /*
330 * Convert affinity to a 32bit value that can be matched to
331 * GICR_TYPER bits [63:32].
332 */
333 aff = (MPIDR_AFFINITY_LEVEL(mpidr, 3) << 24 |
334 MPIDR_AFFINITY_LEVEL(mpidr, 2) << 16 |
335 MPIDR_AFFINITY_LEVEL(mpidr, 1) << 8 |
336 MPIDR_AFFINITY_LEVEL(mpidr, 0));
337
338 for (i = 0; i < gic_data.redist_regions; i++) {
339 void __iomem *ptr = gic_data.redist_base[i];
340 u32 reg;
341
342 reg = readl_relaxed(ptr + GICR_PIDR2) & GIC_PIDR2_ARCH_MASK;
343 if (reg != GIC_PIDR2_ARCH_GICv3 &&
344 reg != GIC_PIDR2_ARCH_GICv4) { /* We're in trouble... */
345 pr_warn("No redistributor present @%p\n", ptr);
346 break;
347 }
348
349 do {
350 typer = readq_relaxed(ptr + GICR_TYPER);
351 if ((typer >> 32) == aff) {
352 gic_data_rdist_rd_base() = ptr;
353 pr_info("CPU%d: found redistributor %llx @%p\n",
354 smp_processor_id(),
355 (unsigned long long)mpidr, ptr);
356 return 0;
357 }
358
359 if (gic_data.redist_stride) {
360 ptr += gic_data.redist_stride;
361 } else {
362 ptr += SZ_64K * 2; /* Skip RD_base + SGI_base */
363 if (typer & GICR_TYPER_VLPIS)
364 ptr += SZ_64K * 2; /* Skip VLPI_base + reserved page */
365 }
366 } while (!(typer & GICR_TYPER_LAST));
367 }
368
369 /* We couldn't even deal with ourselves... */
370 WARN(true, "CPU%d: mpidr %llx has no re-distributor!\n",
371 smp_processor_id(), (unsigned long long)mpidr);
372 return -ENODEV;
373}
374
375static void gic_cpu_init(void)
376{
377 void __iomem *rbase;
378
379 /* Register ourselves with the rest of the world */
380 if (gic_populate_rdist())
381 return;
382
383 gic_enable_redist();
384
385 rbase = gic_data_rdist_sgi_base();
386
387 gic_cpu_config(rbase, gic_redist_wait_for_rwp);
388
389 /* Enable system registers */
390 gic_enable_sre();
391
392 /* Set priority mask register */
393 gic_write_pmr(DEFAULT_PMR_VALUE);
394
395 /* EOI deactivates interrupt too (mode 0) */
396 gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop_dir);
397
398 /* ... and let's hit the road... */
399 gic_write_grpen1(1);
400}
401
402#ifdef CONFIG_SMP
403static int gic_secondary_init(struct notifier_block *nfb,
404 unsigned long action, void *hcpu)
405{
406 if (action == CPU_STARTING || action == CPU_STARTING_FROZEN)
407 gic_cpu_init();
408 return NOTIFY_OK;
409}
410
411/*
412 * Notifier for enabling the GIC CPU interface. Set an arbitrarily high
413 * priority because the GIC needs to be up before the ARM generic timers.
414 */
415static struct notifier_block gic_cpu_notifier = {
416 .notifier_call = gic_secondary_init,
417 .priority = 100,
418};
419
420static u16 gic_compute_target_list(int *base_cpu, const struct cpumask *mask,
421 u64 cluster_id)
422{
423 int cpu = *base_cpu;
424 u64 mpidr = cpu_logical_map(cpu);
425 u16 tlist = 0;
426
427 while (cpu < nr_cpu_ids) {
428 /*
429 * If we ever get a cluster of more than 16 CPUs, just
430 * scream and skip that CPU.
431 */
432 if (WARN_ON((mpidr & 0xff) >= 16))
433 goto out;
434
435 tlist |= 1 << (mpidr & 0xf);
436
437 cpu = cpumask_next(cpu, mask);
438 if (cpu == nr_cpu_ids)
439 goto out;
440
441 mpidr = cpu_logical_map(cpu);
442
443 if (cluster_id != (mpidr & ~0xffUL)) {
444 cpu--;
445 goto out;
446 }
447 }
448out:
449 *base_cpu = cpu;
450 return tlist;
451}
452
453static void gic_send_sgi(u64 cluster_id, u16 tlist, unsigned int irq)
454{
455 u64 val;
456
457 val = (MPIDR_AFFINITY_LEVEL(cluster_id, 3) << 48 |
458 MPIDR_AFFINITY_LEVEL(cluster_id, 2) << 32 |
459 irq << 24 |
460 MPIDR_AFFINITY_LEVEL(cluster_id, 1) << 16 |
461 tlist);
462
463 pr_debug("CPU%d: ICC_SGI1R_EL1 %llx\n", smp_processor_id(), val);
464 gic_write_sgi1r(val);
465}
466
467static void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)
468{
469 int cpu;
470
471 if (WARN_ON(irq >= 16))
472 return;
473
474 /*
475 * Ensure that stores to Normal memory are visible to the
476 * other CPUs before issuing the IPI.
477 */
478 smp_wmb();
479
480 for_each_cpu_mask(cpu, *mask) {
481 u64 cluster_id = cpu_logical_map(cpu) & ~0xffUL;
482 u16 tlist;
483
484 tlist = gic_compute_target_list(&cpu, mask, cluster_id);
485 gic_send_sgi(cluster_id, tlist, irq);
486 }
487
488 /* Force the above writes to ICC_SGI1R_EL1 to be executed */
489 isb();
490}
491
492static void gic_smp_init(void)
493{
494 set_smp_cross_call(gic_raise_softirq);
495 register_cpu_notifier(&gic_cpu_notifier);
496}
497
498static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
499 bool force)
500{
501 unsigned int cpu = cpumask_any_and(mask_val, cpu_online_mask);
502 void __iomem *reg;
503 int enabled;
504 u64 val;
505
506 if (gic_irq_in_rdist(d))
507 return -EINVAL;
508
509 /* If interrupt was enabled, disable it first */
510 enabled = gic_peek_irq(d, GICD_ISENABLER);
511 if (enabled)
512 gic_mask_irq(d);
513
514 reg = gic_dist_base(d) + GICD_IROUTER + (gic_irq(d) * 8);
515 val = gic_mpidr_to_affinity(cpu_logical_map(cpu));
516
517 writeq_relaxed(val, reg);
518
519 /*
520 * If the interrupt was enabled, enabled it again. Otherwise,
521 * just wait for the distributor to have digested our changes.
522 */
523 if (enabled)
524 gic_unmask_irq(d);
525 else
526 gic_dist_wait_for_rwp();
527
528 return IRQ_SET_MASK_OK;
529}
530#else
531#define gic_set_affinity NULL
532#define gic_smp_init() do { } while(0)
533#endif
534
535static struct irq_chip gic_chip = {
536 .name = "GICv3",
537 .irq_mask = gic_mask_irq,
538 .irq_unmask = gic_unmask_irq,
539 .irq_eoi = gic_eoi_irq,
540 .irq_set_type = gic_set_type,
541 .irq_set_affinity = gic_set_affinity,
542};
543
544static int gic_irq_domain_map(struct irq_domain *d, unsigned int irq,
545 irq_hw_number_t hw)
546{
547 /* SGIs are private to the core kernel */
548 if (hw < 16)
549 return -EPERM;
550 /* PPIs */
551 if (hw < 32) {
552 irq_set_percpu_devid(irq);
553 irq_set_chip_and_handler(irq, &gic_chip,
554 handle_percpu_devid_irq);
555 set_irq_flags(irq, IRQF_VALID | IRQF_NOAUTOEN);
556 }
557 /* SPIs */
558 if (hw >= 32 && hw < gic_data.irq_nr) {
559 irq_set_chip_and_handler(irq, &gic_chip,
560 handle_fasteoi_irq);
561 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
562 }
563 irq_set_chip_data(irq, d->host_data);
564 return 0;
565}
566
567static int gic_irq_domain_xlate(struct irq_domain *d,
568 struct device_node *controller,
569 const u32 *intspec, unsigned int intsize,
570 unsigned long *out_hwirq, unsigned int *out_type)
571{
572 if (d->of_node != controller)
573 return -EINVAL;
574 if (intsize < 3)
575 return -EINVAL;
576
577 switch(intspec[0]) {
578 case 0: /* SPI */
579 *out_hwirq = intspec[1] + 32;
580 break;
581 case 1: /* PPI */
582 *out_hwirq = intspec[1] + 16;
583 break;
584 default:
585 return -EINVAL;
586 }
587
588 *out_type = intspec[2] & IRQ_TYPE_SENSE_MASK;
589 return 0;
590}
591
592static const struct irq_domain_ops gic_irq_domain_ops = {
593 .map = gic_irq_domain_map,
594 .xlate = gic_irq_domain_xlate,
595};
596
597static int __init gic_of_init(struct device_node *node, struct device_node *parent)
598{
599 void __iomem *dist_base;
600 void __iomem **redist_base;
601 u64 redist_stride;
602 u32 redist_regions;
603 u32 reg;
604 int gic_irqs;
605 int err;
606 int i;
607
608 dist_base = of_iomap(node, 0);
609 if (!dist_base) {
610 pr_err("%s: unable to map gic dist registers\n",
611 node->full_name);
612 return -ENXIO;
613 }
614
615 reg = readl_relaxed(dist_base + GICD_PIDR2) & GIC_PIDR2_ARCH_MASK;
616 if (reg != GIC_PIDR2_ARCH_GICv3 && reg != GIC_PIDR2_ARCH_GICv4) {
617 pr_err("%s: no distributor detected, giving up\n",
618 node->full_name);
619 err = -ENODEV;
620 goto out_unmap_dist;
621 }
622
623 if (of_property_read_u32(node, "#redistributor-regions", &redist_regions))
624 redist_regions = 1;
625
626 redist_base = kzalloc(sizeof(*redist_base) * redist_regions, GFP_KERNEL);
627 if (!redist_base) {
628 err = -ENOMEM;
629 goto out_unmap_dist;
630 }
631
632 for (i = 0; i < redist_regions; i++) {
633 redist_base[i] = of_iomap(node, 1 + i);
634 if (!redist_base[i]) {
635 pr_err("%s: couldn't map region %d\n",
636 node->full_name, i);
637 err = -ENODEV;
638 goto out_unmap_rdist;
639 }
640 }
641
642 if (of_property_read_u64(node, "redistributor-stride", &redist_stride))
643 redist_stride = 0;
644
645 gic_data.dist_base = dist_base;
646 gic_data.redist_base = redist_base;
647 gic_data.redist_regions = redist_regions;
648 gic_data.redist_stride = redist_stride;
649
650 /*
651 * Find out how many interrupts are supported.
652 * The GIC only supports up to 1020 interrupt sources (SGI+PPI+SPI)
653 */
654 gic_irqs = readl_relaxed(gic_data.dist_base + GICD_TYPER) & 0x1f;
655 gic_irqs = (gic_irqs + 1) * 32;
656 if (gic_irqs > 1020)
657 gic_irqs = 1020;
658 gic_data.irq_nr = gic_irqs;
659
660 gic_data.domain = irq_domain_add_tree(node, &gic_irq_domain_ops,
661 &gic_data);
662 gic_data.rdist = alloc_percpu(typeof(*gic_data.rdist));
663
664 if (WARN_ON(!gic_data.domain) || WARN_ON(!gic_data.rdist)) {
665 err = -ENOMEM;
666 goto out_free;
667 }
668
669 set_handle_irq(gic_handle_irq);
670
671 gic_smp_init();
672 gic_dist_init();
673 gic_cpu_init();
674
675 return 0;
676
677out_free:
678 if (gic_data.domain)
679 irq_domain_remove(gic_data.domain);
680 free_percpu(gic_data.rdist);
681out_unmap_rdist:
682 for (i = 0; i < redist_regions; i++)
683 if (redist_base[i])
684 iounmap(redist_base[i]);
685 kfree(redist_base);
686out_unmap_dist:
687 iounmap(dist_base);
688 return err;
689}
690
691IRQCHIP_DECLARE(gic_v3, "arm,gic-v3", gic_of_init);