Merge tag 'v4.4.12' into linux-linaro-lsk-v4.4
[firefly-linux-kernel-4.4.55.git] / drivers / irqchip / irq-gic-v3.c
1 /*
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/cpu_pm.h>
20 #include <linux/delay.h>
21 #include <linux/interrupt.h>
22 #include <linux/of.h>
23 #include <linux/of_address.h>
24 #include <linux/of_irq.h>
25 #include <linux/percpu.h>
26 #include <linux/slab.h>
27
28 #include <linux/irqchip.h>
29 #include <linux/irqchip/arm-gic-v3.h>
30
31 #include <asm/cputype.h>
32 #include <asm/exception.h>
33 #include <asm/smp_plat.h>
34 #include <asm/virt.h>
35
36 #include "irq-gic-common.h"
37
38 struct redist_region {
39         void __iomem            *redist_base;
40         phys_addr_t             phys_base;
41 };
42
43 struct gic_chip_data {
44         void __iomem            *dist_base;
45         struct redist_region    *redist_regions;
46         struct rdists           rdists;
47         struct irq_domain       *domain;
48         u64                     redist_stride;
49         u32                     nr_redist_regions;
50         unsigned int            irq_nr;
51 };
52
53 static struct gic_chip_data gic_data __read_mostly;
54 static struct static_key supports_deactivate = STATIC_KEY_INIT_TRUE;
55
56 #define gic_data_rdist()                (this_cpu_ptr(gic_data.rdists.rdist))
57 #define gic_data_rdist_rd_base()        (gic_data_rdist()->rd_base)
58 #define gic_data_rdist_sgi_base()       (gic_data_rdist_rd_base() + SZ_64K)
59
60 /* Our default, arbitrary priority value. Linux only uses one anyway. */
61 #define DEFAULT_PMR_VALUE       0xf0
62
63 static inline unsigned int gic_irq(struct irq_data *d)
64 {
65         return d->hwirq;
66 }
67
68 static inline int gic_irq_in_rdist(struct irq_data *d)
69 {
70         return gic_irq(d) < 32;
71 }
72
73 static inline void __iomem *gic_dist_base(struct irq_data *d)
74 {
75         if (gic_irq_in_rdist(d))        /* SGI+PPI -> SGI_base for this CPU */
76                 return gic_data_rdist_sgi_base();
77
78         if (d->hwirq <= 1023)           /* SPI -> dist_base */
79                 return gic_data.dist_base;
80
81         return NULL;
82 }
83
84 static void gic_do_wait_for_rwp(void __iomem *base)
85 {
86         u32 count = 1000000;    /* 1s! */
87
88         while (readl_relaxed(base + GICD_CTLR) & GICD_CTLR_RWP) {
89                 count--;
90                 if (!count) {
91                         pr_err_ratelimited("RWP timeout, gone fishing\n");
92                         return;
93                 }
94                 cpu_relax();
95                 udelay(1);
96         };
97 }
98
99 /* Wait for completion of a distributor change */
100 static void gic_dist_wait_for_rwp(void)
101 {
102         gic_do_wait_for_rwp(gic_data.dist_base);
103 }
104
105 /* Wait for completion of a redistributor change */
106 static void gic_redist_wait_for_rwp(void)
107 {
108         gic_do_wait_for_rwp(gic_data_rdist_rd_base());
109 }
110
111 #ifdef CONFIG_ARM64
112 static DEFINE_STATIC_KEY_FALSE(is_cavium_thunderx);
113
114 static u64 __maybe_unused gic_read_iar(void)
115 {
116         if (static_branch_unlikely(&is_cavium_thunderx))
117                 return gic_read_iar_cavium_thunderx();
118         else
119                 return gic_read_iar_common();
120 }
121 #endif
122
123 static void gic_enable_redist(bool enable)
124 {
125         void __iomem *rbase;
126         u32 count = 1000000;    /* 1s! */
127         u32 val;
128
129         rbase = gic_data_rdist_rd_base();
130
131         val = readl_relaxed(rbase + GICR_WAKER);
132         if (enable)
133                 /* Wake up this CPU redistributor */
134                 val &= ~GICR_WAKER_ProcessorSleep;
135         else
136                 val |= GICR_WAKER_ProcessorSleep;
137         writel_relaxed(val, rbase + GICR_WAKER);
138
139         if (!enable) {          /* Check that GICR_WAKER is writeable */
140                 val = readl_relaxed(rbase + GICR_WAKER);
141                 if (!(val & GICR_WAKER_ProcessorSleep))
142                         return; /* No PM support in this redistributor */
143         }
144
145         while (count--) {
146                 val = readl_relaxed(rbase + GICR_WAKER);
147                 if (enable ^ (val & GICR_WAKER_ChildrenAsleep))
148                         break;
149                 cpu_relax();
150                 udelay(1);
151         };
152         if (!count)
153                 pr_err_ratelimited("redistributor failed to %s...\n",
154                                    enable ? "wakeup" : "sleep");
155 }
156
157 /*
158  * Routines to disable, enable, EOI and route interrupts
159  */
160 static int gic_peek_irq(struct irq_data *d, u32 offset)
161 {
162         u32 mask = 1 << (gic_irq(d) % 32);
163         void __iomem *base;
164
165         if (gic_irq_in_rdist(d))
166                 base = gic_data_rdist_sgi_base();
167         else
168                 base = gic_data.dist_base;
169
170         return !!(readl_relaxed(base + offset + (gic_irq(d) / 32) * 4) & mask);
171 }
172
173 static void gic_poke_irq(struct irq_data *d, u32 offset)
174 {
175         u32 mask = 1 << (gic_irq(d) % 32);
176         void (*rwp_wait)(void);
177         void __iomem *base;
178
179         if (gic_irq_in_rdist(d)) {
180                 base = gic_data_rdist_sgi_base();
181                 rwp_wait = gic_redist_wait_for_rwp;
182         } else {
183                 base = gic_data.dist_base;
184                 rwp_wait = gic_dist_wait_for_rwp;
185         }
186
187         writel_relaxed(mask, base + offset + (gic_irq(d) / 32) * 4);
188         rwp_wait();
189 }
190
191 static void gic_mask_irq(struct irq_data *d)
192 {
193         gic_poke_irq(d, GICD_ICENABLER);
194 }
195
196 static void gic_eoimode1_mask_irq(struct irq_data *d)
197 {
198         gic_mask_irq(d);
199         /*
200          * When masking a forwarded interrupt, make sure it is
201          * deactivated as well.
202          *
203          * This ensures that an interrupt that is getting
204          * disabled/masked will not get "stuck", because there is
205          * noone to deactivate it (guest is being terminated).
206          */
207         if (irqd_is_forwarded_to_vcpu(d))
208                 gic_poke_irq(d, GICD_ICACTIVER);
209 }
210
211 static void gic_unmask_irq(struct irq_data *d)
212 {
213         gic_poke_irq(d, GICD_ISENABLER);
214 }
215
216 static int gic_irq_set_irqchip_state(struct irq_data *d,
217                                      enum irqchip_irq_state which, bool val)
218 {
219         u32 reg;
220
221         if (d->hwirq >= gic_data.irq_nr) /* PPI/SPI only */
222                 return -EINVAL;
223
224         switch (which) {
225         case IRQCHIP_STATE_PENDING:
226                 reg = val ? GICD_ISPENDR : GICD_ICPENDR;
227                 break;
228
229         case IRQCHIP_STATE_ACTIVE:
230                 reg = val ? GICD_ISACTIVER : GICD_ICACTIVER;
231                 break;
232
233         case IRQCHIP_STATE_MASKED:
234                 reg = val ? GICD_ICENABLER : GICD_ISENABLER;
235                 break;
236
237         default:
238                 return -EINVAL;
239         }
240
241         gic_poke_irq(d, reg);
242         return 0;
243 }
244
245 static int gic_irq_get_irqchip_state(struct irq_data *d,
246                                      enum irqchip_irq_state which, bool *val)
247 {
248         if (d->hwirq >= gic_data.irq_nr) /* PPI/SPI only */
249                 return -EINVAL;
250
251         switch (which) {
252         case IRQCHIP_STATE_PENDING:
253                 *val = gic_peek_irq(d, GICD_ISPENDR);
254                 break;
255
256         case IRQCHIP_STATE_ACTIVE:
257                 *val = gic_peek_irq(d, GICD_ISACTIVER);
258                 break;
259
260         case IRQCHIP_STATE_MASKED:
261                 *val = !gic_peek_irq(d, GICD_ISENABLER);
262                 break;
263
264         default:
265                 return -EINVAL;
266         }
267
268         return 0;
269 }
270
271 static void gic_eoi_irq(struct irq_data *d)
272 {
273         gic_write_eoir(gic_irq(d));
274 }
275
276 static void gic_eoimode1_eoi_irq(struct irq_data *d)
277 {
278         /*
279          * No need to deactivate an LPI, or an interrupt that
280          * is is getting forwarded to a vcpu.
281          */
282         if (gic_irq(d) >= 8192 || irqd_is_forwarded_to_vcpu(d))
283                 return;
284         gic_write_dir(gic_irq(d));
285 }
286
287 static int gic_set_type(struct irq_data *d, unsigned int type)
288 {
289         unsigned int irq = gic_irq(d);
290         void (*rwp_wait)(void);
291         void __iomem *base;
292
293         /* Interrupt configuration for SGIs can't be changed */
294         if (irq < 16)
295                 return -EINVAL;
296
297         /* SPIs have restrictions on the supported types */
298         if (irq >= 32 && type != IRQ_TYPE_LEVEL_HIGH &&
299                          type != IRQ_TYPE_EDGE_RISING)
300                 return -EINVAL;
301
302         if (gic_irq_in_rdist(d)) {
303                 base = gic_data_rdist_sgi_base();
304                 rwp_wait = gic_redist_wait_for_rwp;
305         } else {
306                 base = gic_data.dist_base;
307                 rwp_wait = gic_dist_wait_for_rwp;
308         }
309
310         return gic_configure_irq(irq, type, base, rwp_wait);
311 }
312
313 static int gic_irq_set_vcpu_affinity(struct irq_data *d, void *vcpu)
314 {
315         if (vcpu)
316                 irqd_set_forwarded_to_vcpu(d);
317         else
318                 irqd_clr_forwarded_to_vcpu(d);
319         return 0;
320 }
321
322 static u64 gic_mpidr_to_affinity(unsigned long mpidr)
323 {
324         u64 aff;
325
326         aff = ((u64)MPIDR_AFFINITY_LEVEL(mpidr, 3) << 32 |
327                MPIDR_AFFINITY_LEVEL(mpidr, 2) << 16 |
328                MPIDR_AFFINITY_LEVEL(mpidr, 1) << 8  |
329                MPIDR_AFFINITY_LEVEL(mpidr, 0));
330
331         return aff;
332 }
333
334 static asmlinkage void __exception_irq_entry gic_handle_irq(struct pt_regs *regs)
335 {
336         u32 irqnr;
337
338         do {
339                 irqnr = gic_read_iar();
340
341                 if (likely(irqnr > 15 && irqnr < 1020) || irqnr >= 8192) {
342                         int err;
343
344                         if (static_key_true(&supports_deactivate))
345                                 gic_write_eoir(irqnr);
346
347                         err = handle_domain_irq(gic_data.domain, irqnr, regs);
348                         if (err) {
349                                 WARN_ONCE(true, "Unexpected interrupt received!\n");
350                                 if (static_key_true(&supports_deactivate)) {
351                                         if (irqnr < 8192)
352                                                 gic_write_dir(irqnr);
353                                 } else {
354                                         gic_write_eoir(irqnr);
355                                 }
356                         }
357                         continue;
358                 }
359                 if (irqnr < 16) {
360                         gic_write_eoir(irqnr);
361                         if (static_key_true(&supports_deactivate))
362                                 gic_write_dir(irqnr);
363 #ifdef CONFIG_SMP
364                         /*
365                          * Unlike GICv2, we don't need an smp_rmb() here.
366                          * The control dependency from gic_read_iar to
367                          * the ISB in gic_write_eoir is enough to ensure
368                          * that any shared data read by handle_IPI will
369                          * be read after the ACK.
370                          */
371                         handle_IPI(irqnr, regs);
372 #else
373                         WARN_ONCE(true, "Unexpected SGI received!\n");
374 #endif
375                         continue;
376                 }
377         } while (irqnr != ICC_IAR1_EL1_SPURIOUS);
378 }
379
380 static void __init gic_dist_init(void)
381 {
382         unsigned int i;
383         u64 affinity;
384         void __iomem *base = gic_data.dist_base;
385
386         /* Disable the distributor */
387         writel_relaxed(0, base + GICD_CTLR);
388         gic_dist_wait_for_rwp();
389
390         /*
391          * Configure SPIs as non-secure Group-1. This will only matter
392          * if the GIC only has a single security state. This will not
393          * do the right thing if the kernel is running in secure mode,
394          * but that's not the intended use case anyway.
395          */
396         for (i = 32; i < gic_data.irq_nr; i += 32)
397                 writel_relaxed(~0, base + GICD_IGROUPR + i / 8);
398
399         gic_dist_config(base, gic_data.irq_nr, gic_dist_wait_for_rwp);
400
401         /* Enable distributor with ARE, Group1 */
402         writel_relaxed(GICD_CTLR_ARE_NS | GICD_CTLR_ENABLE_G1A | GICD_CTLR_ENABLE_G1,
403                        base + GICD_CTLR);
404
405         /*
406          * Set all global interrupts to the boot CPU only. ARE must be
407          * enabled.
408          */
409         affinity = gic_mpidr_to_affinity(cpu_logical_map(smp_processor_id()));
410         for (i = 32; i < gic_data.irq_nr; i++)
411                 gic_write_irouter(affinity, base + GICD_IROUTER + i * 8);
412 }
413
414 static int gic_populate_rdist(void)
415 {
416         unsigned long mpidr = cpu_logical_map(smp_processor_id());
417         u64 typer;
418         u32 aff;
419         int i;
420
421         /*
422          * Convert affinity to a 32bit value that can be matched to
423          * GICR_TYPER bits [63:32].
424          */
425         aff = (MPIDR_AFFINITY_LEVEL(mpidr, 3) << 24 |
426                MPIDR_AFFINITY_LEVEL(mpidr, 2) << 16 |
427                MPIDR_AFFINITY_LEVEL(mpidr, 1) << 8 |
428                MPIDR_AFFINITY_LEVEL(mpidr, 0));
429
430         for (i = 0; i < gic_data.nr_redist_regions; i++) {
431                 void __iomem *ptr = gic_data.redist_regions[i].redist_base;
432                 u32 reg;
433
434                 reg = readl_relaxed(ptr + GICR_PIDR2) & GIC_PIDR2_ARCH_MASK;
435                 if (reg != GIC_PIDR2_ARCH_GICv3 &&
436                     reg != GIC_PIDR2_ARCH_GICv4) { /* We're in trouble... */
437                         pr_warn("No redistributor present @%p\n", ptr);
438                         break;
439                 }
440
441                 do {
442                         typer = gic_read_typer(ptr + GICR_TYPER);
443                         if ((typer >> 32) == aff) {
444                                 u64 offset = ptr - gic_data.redist_regions[i].redist_base;
445                                 gic_data_rdist_rd_base() = ptr;
446                                 gic_data_rdist()->phys_base = gic_data.redist_regions[i].phys_base + offset;
447                                 pr_info("CPU%d: found redistributor %lx region %d:%pa\n",
448                                         smp_processor_id(), mpidr, i,
449                                         &gic_data_rdist()->phys_base);
450                                 return 0;
451                         }
452
453                         if (gic_data.redist_stride) {
454                                 ptr += gic_data.redist_stride;
455                         } else {
456                                 ptr += SZ_64K * 2; /* Skip RD_base + SGI_base */
457                                 if (typer & GICR_TYPER_VLPIS)
458                                         ptr += SZ_64K * 2; /* Skip VLPI_base + reserved page */
459                         }
460                 } while (!(typer & GICR_TYPER_LAST));
461         }
462
463         /* We couldn't even deal with ourselves... */
464         WARN(true, "CPU%d: mpidr %lx has no re-distributor!\n",
465              smp_processor_id(), mpidr);
466         return -ENODEV;
467 }
468
469 static void gic_cpu_sys_reg_init(void)
470 {
471         /*
472          * Need to check that the SRE bit has actually been set. If
473          * not, it means that SRE is disabled at EL2. We're going to
474          * die painfully, and there is nothing we can do about it.
475          *
476          * Kindly inform the luser.
477          */
478         if (!gic_enable_sre())
479                 pr_err("GIC: unable to set SRE (disabled at EL2), panic ahead\n");
480
481         /* Set priority mask register */
482         gic_write_pmr(DEFAULT_PMR_VALUE);
483
484         if (static_key_true(&supports_deactivate)) {
485                 /* EOI drops priority only (mode 1) */
486                 gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop);
487         } else {
488                 /* EOI deactivates interrupt too (mode 0) */
489                 gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop_dir);
490         }
491
492         /* ... and let's hit the road... */
493         gic_write_grpen1(1);
494 }
495
496 static int gic_dist_supports_lpis(void)
497 {
498         return !!(readl_relaxed(gic_data.dist_base + GICD_TYPER) & GICD_TYPER_LPIS);
499 }
500
501 static void gic_cpu_init(void)
502 {
503         void __iomem *rbase;
504
505         /* Register ourselves with the rest of the world */
506         if (gic_populate_rdist())
507                 return;
508
509         gic_enable_redist(true);
510
511         rbase = gic_data_rdist_sgi_base();
512
513         /* Configure SGIs/PPIs as non-secure Group-1 */
514         writel_relaxed(~0, rbase + GICR_IGROUPR0);
515
516         gic_cpu_config(rbase, gic_redist_wait_for_rwp);
517
518         /* Give LPIs a spin */
519         if (IS_ENABLED(CONFIG_ARM_GIC_V3_ITS) && gic_dist_supports_lpis())
520                 its_cpu_init();
521
522         /* initialise system registers */
523         gic_cpu_sys_reg_init();
524 }
525
526 #ifdef CONFIG_SMP
527 static int gic_secondary_init(struct notifier_block *nfb,
528                               unsigned long action, void *hcpu)
529 {
530         if (action == CPU_STARTING || action == CPU_STARTING_FROZEN)
531                 gic_cpu_init();
532         return NOTIFY_OK;
533 }
534
535 /*
536  * Notifier for enabling the GIC CPU interface. Set an arbitrarily high
537  * priority because the GIC needs to be up before the ARM generic timers.
538  */
539 static struct notifier_block gic_cpu_notifier = {
540         .notifier_call = gic_secondary_init,
541         .priority = 100,
542 };
543
544 static u16 gic_compute_target_list(int *base_cpu, const struct cpumask *mask,
545                                    unsigned long cluster_id)
546 {
547         int cpu = *base_cpu;
548         unsigned long mpidr = cpu_logical_map(cpu);
549         u16 tlist = 0;
550
551         while (cpu < nr_cpu_ids) {
552                 /*
553                  * If we ever get a cluster of more than 16 CPUs, just
554                  * scream and skip that CPU.
555                  */
556                 if (WARN_ON((mpidr & 0xff) >= 16))
557                         goto out;
558
559                 tlist |= 1 << (mpidr & 0xf);
560
561                 cpu = cpumask_next(cpu, mask);
562                 if (cpu >= nr_cpu_ids)
563                         goto out;
564
565                 mpidr = cpu_logical_map(cpu);
566
567                 if (cluster_id != (mpidr & ~0xffUL)) {
568                         cpu--;
569                         goto out;
570                 }
571         }
572 out:
573         *base_cpu = cpu;
574         return tlist;
575 }
576
577 #define MPIDR_TO_SGI_AFFINITY(cluster_id, level) \
578         (MPIDR_AFFINITY_LEVEL(cluster_id, level) \
579                 << ICC_SGI1R_AFFINITY_## level ##_SHIFT)
580
581 static void gic_send_sgi(u64 cluster_id, u16 tlist, unsigned int irq)
582 {
583         u64 val;
584
585         val = (MPIDR_TO_SGI_AFFINITY(cluster_id, 3)     |
586                MPIDR_TO_SGI_AFFINITY(cluster_id, 2)     |
587                irq << ICC_SGI1R_SGI_ID_SHIFT            |
588                MPIDR_TO_SGI_AFFINITY(cluster_id, 1)     |
589                tlist << ICC_SGI1R_TARGET_LIST_SHIFT);
590
591         pr_debug("CPU%d: ICC_SGI1R_EL1 %llx\n", smp_processor_id(), val);
592         gic_write_sgi1r(val);
593 }
594
595 static void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)
596 {
597         int cpu;
598
599         if (WARN_ON(irq >= 16))
600                 return;
601
602         /*
603          * Ensure that stores to Normal memory are visible to the
604          * other CPUs before issuing the IPI.
605          */
606         smp_wmb();
607
608         for_each_cpu(cpu, mask) {
609                 unsigned long cluster_id = cpu_logical_map(cpu) & ~0xffUL;
610                 u16 tlist;
611
612                 tlist = gic_compute_target_list(&cpu, mask, cluster_id);
613                 gic_send_sgi(cluster_id, tlist, irq);
614         }
615
616         /* Force the above writes to ICC_SGI1R_EL1 to be executed */
617         isb();
618 }
619
620 static void gic_smp_init(void)
621 {
622         set_smp_cross_call(gic_raise_softirq);
623         register_cpu_notifier(&gic_cpu_notifier);
624 }
625
626 static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
627                             bool force)
628 {
629         unsigned int cpu = cpumask_any_and(mask_val, cpu_online_mask);
630         void __iomem *reg;
631         int enabled;
632         u64 val;
633
634         if (gic_irq_in_rdist(d))
635                 return -EINVAL;
636
637         /* If interrupt was enabled, disable it first */
638         enabled = gic_peek_irq(d, GICD_ISENABLER);
639         if (enabled)
640                 gic_mask_irq(d);
641
642         reg = gic_dist_base(d) + GICD_IROUTER + (gic_irq(d) * 8);
643         val = gic_mpidr_to_affinity(cpu_logical_map(cpu));
644
645         gic_write_irouter(val, reg);
646
647         /*
648          * If the interrupt was enabled, enabled it again. Otherwise,
649          * just wait for the distributor to have digested our changes.
650          */
651         if (enabled)
652                 gic_unmask_irq(d);
653         else
654                 gic_dist_wait_for_rwp();
655
656         return IRQ_SET_MASK_OK;
657 }
658 #else
659 #define gic_set_affinity        NULL
660 #define gic_smp_init()          do { } while(0)
661 #endif
662
663 #ifdef CONFIG_CPU_PM
664 static int gic_cpu_pm_notifier(struct notifier_block *self,
665                                unsigned long cmd, void *v)
666 {
667         if (cmd == CPU_PM_EXIT) {
668                 gic_enable_redist(true);
669                 gic_cpu_sys_reg_init();
670         } else if (cmd == CPU_PM_ENTER) {
671                 gic_write_grpen1(0);
672                 gic_enable_redist(false);
673         }
674         return NOTIFY_OK;
675 }
676
677 static struct notifier_block gic_cpu_pm_notifier_block = {
678         .notifier_call = gic_cpu_pm_notifier,
679 };
680
681 static void gic_cpu_pm_init(void)
682 {
683         cpu_pm_register_notifier(&gic_cpu_pm_notifier_block);
684 }
685
686 #else
687 static inline void gic_cpu_pm_init(void) { }
688 #endif /* CONFIG_CPU_PM */
689
690 static struct irq_chip gic_chip = {
691         .name                   = "GICv3",
692         .irq_mask               = gic_mask_irq,
693         .irq_unmask             = gic_unmask_irq,
694         .irq_eoi                = gic_eoi_irq,
695         .irq_set_type           = gic_set_type,
696         .irq_set_affinity       = gic_set_affinity,
697         .irq_get_irqchip_state  = gic_irq_get_irqchip_state,
698         .irq_set_irqchip_state  = gic_irq_set_irqchip_state,
699         .flags                  = IRQCHIP_SET_TYPE_MASKED,
700 };
701
702 static struct irq_chip gic_eoimode1_chip = {
703         .name                   = "GICv3",
704         .irq_mask               = gic_eoimode1_mask_irq,
705         .irq_unmask             = gic_unmask_irq,
706         .irq_eoi                = gic_eoimode1_eoi_irq,
707         .irq_set_type           = gic_set_type,
708         .irq_set_affinity       = gic_set_affinity,
709         .irq_get_irqchip_state  = gic_irq_get_irqchip_state,
710         .irq_set_irqchip_state  = gic_irq_set_irqchip_state,
711         .irq_set_vcpu_affinity  = gic_irq_set_vcpu_affinity,
712         .flags                  = IRQCHIP_SET_TYPE_MASKED,
713 };
714
715 #define GIC_ID_NR               (1U << gic_data.rdists.id_bits)
716
717 static int gic_irq_domain_map(struct irq_domain *d, unsigned int irq,
718                               irq_hw_number_t hw)
719 {
720         struct irq_chip *chip = &gic_chip;
721
722         if (static_key_true(&supports_deactivate))
723                 chip = &gic_eoimode1_chip;
724
725         /* SGIs are private to the core kernel */
726         if (hw < 16)
727                 return -EPERM;
728         /* Nothing here */
729         if (hw >= gic_data.irq_nr && hw < 8192)
730                 return -EPERM;
731         /* Off limits */
732         if (hw >= GIC_ID_NR)
733                 return -EPERM;
734
735         /* PPIs */
736         if (hw < 32) {
737                 irq_set_percpu_devid(irq);
738                 irq_domain_set_info(d, irq, hw, chip, d->host_data,
739                                     handle_percpu_devid_irq, NULL, NULL);
740                 irq_set_status_flags(irq, IRQ_NOAUTOEN);
741         }
742         /* SPIs */
743         if (hw >= 32 && hw < gic_data.irq_nr) {
744                 irq_domain_set_info(d, irq, hw, chip, d->host_data,
745                                     handle_fasteoi_irq, NULL, NULL);
746                 irq_set_probe(irq);
747         }
748         /* LPIs */
749         if (hw >= 8192 && hw < GIC_ID_NR) {
750                 if (!gic_dist_supports_lpis())
751                         return -EPERM;
752                 irq_domain_set_info(d, irq, hw, chip, d->host_data,
753                                     handle_fasteoi_irq, NULL, NULL);
754         }
755
756         return 0;
757 }
758
759 static int gic_irq_domain_translate(struct irq_domain *d,
760                                     struct irq_fwspec *fwspec,
761                                     unsigned long *hwirq,
762                                     unsigned int *type)
763 {
764         if (is_of_node(fwspec->fwnode)) {
765                 if (fwspec->param_count < 3)
766                         return -EINVAL;
767
768                 switch (fwspec->param[0]) {
769                 case 0:                 /* SPI */
770                         *hwirq = fwspec->param[1] + 32;
771                         break;
772                 case 1:                 /* PPI */
773                         *hwirq = fwspec->param[1] + 16;
774                         break;
775                 case GIC_IRQ_TYPE_LPI:  /* LPI */
776                         *hwirq = fwspec->param[1];
777                         break;
778                 default:
779                         return -EINVAL;
780                 }
781
782                 *type = fwspec->param[2] & IRQ_TYPE_SENSE_MASK;
783                 return 0;
784         }
785
786         return -EINVAL;
787 }
788
789 static int gic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
790                                 unsigned int nr_irqs, void *arg)
791 {
792         int i, ret;
793         irq_hw_number_t hwirq;
794         unsigned int type = IRQ_TYPE_NONE;
795         struct irq_fwspec *fwspec = arg;
796
797         ret = gic_irq_domain_translate(domain, fwspec, &hwirq, &type);
798         if (ret)
799                 return ret;
800
801         for (i = 0; i < nr_irqs; i++)
802                 gic_irq_domain_map(domain, virq + i, hwirq + i);
803
804         return 0;
805 }
806
807 static void gic_irq_domain_free(struct irq_domain *domain, unsigned int virq,
808                                 unsigned int nr_irqs)
809 {
810         int i;
811
812         for (i = 0; i < nr_irqs; i++) {
813                 struct irq_data *d = irq_domain_get_irq_data(domain, virq + i);
814                 irq_set_handler(virq + i, NULL);
815                 irq_domain_reset_irq_data(d);
816         }
817 }
818
819 static const struct irq_domain_ops gic_irq_domain_ops = {
820         .translate = gic_irq_domain_translate,
821         .alloc = gic_irq_domain_alloc,
822         .free = gic_irq_domain_free,
823 };
824
825 static void gicv3_enable_quirks(void)
826 {
827 #ifdef CONFIG_ARM64
828         if (cpus_have_cap(ARM64_WORKAROUND_CAVIUM_23154))
829                 static_branch_enable(&is_cavium_thunderx);
830 #endif
831 }
832
833 static int __init gic_of_init(struct device_node *node, struct device_node *parent)
834 {
835         void __iomem *dist_base;
836         struct redist_region *rdist_regs;
837         u64 redist_stride;
838         u32 nr_redist_regions;
839         u32 typer;
840         u32 reg;
841         int gic_irqs;
842         int err;
843         int i;
844
845         dist_base = of_iomap(node, 0);
846         if (!dist_base) {
847                 pr_err("%s: unable to map gic dist registers\n",
848                         node->full_name);
849                 return -ENXIO;
850         }
851
852         reg = readl_relaxed(dist_base + GICD_PIDR2) & GIC_PIDR2_ARCH_MASK;
853         if (reg != GIC_PIDR2_ARCH_GICv3 && reg != GIC_PIDR2_ARCH_GICv4) {
854                 pr_err("%s: no distributor detected, giving up\n",
855                         node->full_name);
856                 err = -ENODEV;
857                 goto out_unmap_dist;
858         }
859
860         if (of_property_read_u32(node, "#redistributor-regions", &nr_redist_regions))
861                 nr_redist_regions = 1;
862
863         rdist_regs = kzalloc(sizeof(*rdist_regs) * nr_redist_regions, GFP_KERNEL);
864         if (!rdist_regs) {
865                 err = -ENOMEM;
866                 goto out_unmap_dist;
867         }
868
869         for (i = 0; i < nr_redist_regions; i++) {
870                 struct resource res;
871                 int ret;
872
873                 ret = of_address_to_resource(node, 1 + i, &res);
874                 rdist_regs[i].redist_base = of_iomap(node, 1 + i);
875                 if (ret || !rdist_regs[i].redist_base) {
876                         pr_err("%s: couldn't map region %d\n",
877                                node->full_name, i);
878                         err = -ENODEV;
879                         goto out_unmap_rdist;
880                 }
881                 rdist_regs[i].phys_base = res.start;
882         }
883
884         if (of_property_read_u64(node, "redistributor-stride", &redist_stride))
885                 redist_stride = 0;
886
887         if (!is_hyp_mode_available())
888                 static_key_slow_dec(&supports_deactivate);
889
890         if (static_key_true(&supports_deactivate))
891                 pr_info("GIC: Using split EOI/Deactivate mode\n");
892
893         gic_data.dist_base = dist_base;
894         gic_data.redist_regions = rdist_regs;
895         gic_data.nr_redist_regions = nr_redist_regions;
896         gic_data.redist_stride = redist_stride;
897
898         gicv3_enable_quirks();
899
900         /*
901          * Find out how many interrupts are supported.
902          * The GIC only supports up to 1020 interrupt sources (SGI+PPI+SPI)
903          */
904         typer = readl_relaxed(gic_data.dist_base + GICD_TYPER);
905         gic_data.rdists.id_bits = GICD_TYPER_ID_BITS(typer);
906         gic_irqs = GICD_TYPER_IRQS(typer);
907         if (gic_irqs > 1020)
908                 gic_irqs = 1020;
909         gic_data.irq_nr = gic_irqs;
910
911         gic_data.domain = irq_domain_add_tree(node, &gic_irq_domain_ops,
912                                               &gic_data);
913         gic_data.rdists.rdist = alloc_percpu(typeof(*gic_data.rdists.rdist));
914
915         if (WARN_ON(!gic_data.domain) || WARN_ON(!gic_data.rdists.rdist)) {
916                 err = -ENOMEM;
917                 goto out_free;
918         }
919
920         set_handle_irq(gic_handle_irq);
921
922         if (IS_ENABLED(CONFIG_ARM_GIC_V3_ITS) && gic_dist_supports_lpis())
923                 its_init(node, &gic_data.rdists, gic_data.domain);
924
925         gic_smp_init();
926         gic_dist_init();
927         gic_cpu_init();
928         gic_cpu_pm_init();
929
930         return 0;
931
932 out_free:
933         if (gic_data.domain)
934                 irq_domain_remove(gic_data.domain);
935         free_percpu(gic_data.rdists.rdist);
936 out_unmap_rdist:
937         for (i = 0; i < nr_redist_regions; i++)
938                 if (rdist_regs[i].redist_base)
939                         iounmap(rdist_regs[i].redist_base);
940         kfree(rdist_regs);
941 out_unmap_dist:
942         iounmap(dist_base);
943         return err;
944 }
945
946 IRQCHIP_DECLARE(gic_v3, "arm,gic-v3", gic_of_init);