2 * Copyright (C) 2013-2017 ARM Limited, All Rights Reserved.
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
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.
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.
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/>.
18 #define pr_fmt(fmt) "GICv3: " fmt
20 #include <linux/acpi.h>
21 #include <linux/cpu.h>
22 #include <linux/cpu_pm.h>
23 #include <linux/delay.h>
24 #include <linux/interrupt.h>
25 #include <linux/irqdomain.h>
27 #include <linux/of_address.h>
28 #include <linux/of_irq.h>
29 #include <linux/percpu.h>
30 #include <linux/slab.h>
32 #include <linux/irqchip.h>
33 #include <linux/irqchip/arm-gic-common.h>
34 #include <linux/irqchip/arm-gic-v3.h>
35 #include <linux/irqchip/irq-partition-percpu.h>
37 #include <asm/cputype.h>
38 #include <asm/exception.h>
39 #include <asm/smp_plat.h>
42 #include "irq-gic-common.h"
44 struct redist_region
{
45 void __iomem
*redist_base
;
46 phys_addr_t phys_base
;
50 struct gic_chip_data
{
51 struct fwnode_handle
*fwnode
;
52 void __iomem
*dist_base
;
53 struct redist_region
*redist_regions
;
55 struct irq_domain
*domain
;
57 u32 nr_redist_regions
;
60 struct partition_desc
*ppi_descs
[16];
63 static struct gic_chip_data gic_data __read_mostly
;
64 static struct static_key supports_deactivate
= STATIC_KEY_INIT_TRUE
;
66 static struct gic_kvm_info gic_v3_kvm_info
;
67 static DEFINE_PER_CPU(bool, has_rss
);
69 #define MPIDR_RS(mpidr) (((mpidr) & 0xF0UL) >> 4)
70 #define gic_data_rdist() (this_cpu_ptr(gic_data.rdists.rdist))
71 #define gic_data_rdist_rd_base() (gic_data_rdist()->rd_base)
72 #define gic_data_rdist_sgi_base() (gic_data_rdist_rd_base() + SZ_64K)
74 /* Our default, arbitrary priority value. Linux only uses one anyway. */
75 #define DEFAULT_PMR_VALUE 0xf0
77 static inline unsigned int gic_irq(struct irq_data
*d
)
82 static inline int gic_irq_in_rdist(struct irq_data
*d
)
84 return gic_irq(d
) < 32;
87 static inline void __iomem
*gic_dist_base(struct irq_data
*d
)
89 if (gic_irq_in_rdist(d
)) /* SGI+PPI -> SGI_base for this CPU */
90 return gic_data_rdist_sgi_base();
92 if (d
->hwirq
<= 1023) /* SPI -> dist_base */
93 return gic_data
.dist_base
;
98 static void gic_do_wait_for_rwp(void __iomem
*base
)
100 u32 count
= 1000000; /* 1s! */
102 while (readl_relaxed(base
+ GICD_CTLR
) & GICD_CTLR_RWP
) {
105 pr_err_ratelimited("RWP timeout, gone fishing\n");
113 /* Wait for completion of a distributor change */
114 static void gic_dist_wait_for_rwp(void)
116 gic_do_wait_for_rwp(gic_data
.dist_base
);
119 /* Wait for completion of a redistributor change */
120 static void gic_redist_wait_for_rwp(void)
122 gic_do_wait_for_rwp(gic_data_rdist_rd_base());
127 static u64 __maybe_unused
gic_read_iar(void)
129 if (cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_23154
))
130 return gic_read_iar_cavium_thunderx();
132 return gic_read_iar_common();
136 static void gic_enable_redist(bool enable
)
139 u32 count
= 1000000; /* 1s! */
142 rbase
= gic_data_rdist_rd_base();
144 val
= readl_relaxed(rbase
+ GICR_WAKER
);
146 /* Wake up this CPU redistributor */
147 val
&= ~GICR_WAKER_ProcessorSleep
;
149 val
|= GICR_WAKER_ProcessorSleep
;
150 writel_relaxed(val
, rbase
+ GICR_WAKER
);
152 if (!enable
) { /* Check that GICR_WAKER is writeable */
153 val
= readl_relaxed(rbase
+ GICR_WAKER
);
154 if (!(val
& GICR_WAKER_ProcessorSleep
))
155 return; /* No PM support in this redistributor */
159 val
= readl_relaxed(rbase
+ GICR_WAKER
);
160 if (enable
^ (bool)(val
& GICR_WAKER_ChildrenAsleep
))
166 pr_err_ratelimited("redistributor failed to %s...\n",
167 enable
? "wakeup" : "sleep");
171 * Routines to disable, enable, EOI and route interrupts
173 static int gic_peek_irq(struct irq_data
*d
, u32 offset
)
175 u32 mask
= 1 << (gic_irq(d
) % 32);
178 if (gic_irq_in_rdist(d
))
179 base
= gic_data_rdist_sgi_base();
181 base
= gic_data
.dist_base
;
183 return !!(readl_relaxed(base
+ offset
+ (gic_irq(d
) / 32) * 4) & mask
);
186 static void gic_poke_irq(struct irq_data
*d
, u32 offset
)
188 u32 mask
= 1 << (gic_irq(d
) % 32);
189 void (*rwp_wait
)(void);
192 if (gic_irq_in_rdist(d
)) {
193 base
= gic_data_rdist_sgi_base();
194 rwp_wait
= gic_redist_wait_for_rwp
;
196 base
= gic_data
.dist_base
;
197 rwp_wait
= gic_dist_wait_for_rwp
;
200 writel_relaxed(mask
, base
+ offset
+ (gic_irq(d
) / 32) * 4);
204 static void gic_mask_irq(struct irq_data
*d
)
206 gic_poke_irq(d
, GICD_ICENABLER
);
209 static void gic_eoimode1_mask_irq(struct irq_data
*d
)
213 * When masking a forwarded interrupt, make sure it is
214 * deactivated as well.
216 * This ensures that an interrupt that is getting
217 * disabled/masked will not get "stuck", because there is
218 * noone to deactivate it (guest is being terminated).
220 if (irqd_is_forwarded_to_vcpu(d
))
221 gic_poke_irq(d
, GICD_ICACTIVER
);
224 static void gic_unmask_irq(struct irq_data
*d
)
226 gic_poke_irq(d
, GICD_ISENABLER
);
229 static int gic_irq_set_irqchip_state(struct irq_data
*d
,
230 enum irqchip_irq_state which
, bool val
)
234 if (d
->hwirq
>= gic_data
.irq_nr
) /* PPI/SPI only */
238 case IRQCHIP_STATE_PENDING
:
239 reg
= val
? GICD_ISPENDR
: GICD_ICPENDR
;
242 case IRQCHIP_STATE_ACTIVE
:
243 reg
= val
? GICD_ISACTIVER
: GICD_ICACTIVER
;
246 case IRQCHIP_STATE_MASKED
:
247 reg
= val
? GICD_ICENABLER
: GICD_ISENABLER
;
254 gic_poke_irq(d
, reg
);
258 static int gic_irq_get_irqchip_state(struct irq_data
*d
,
259 enum irqchip_irq_state which
, bool *val
)
261 if (d
->hwirq
>= gic_data
.irq_nr
) /* PPI/SPI only */
265 case IRQCHIP_STATE_PENDING
:
266 *val
= gic_peek_irq(d
, GICD_ISPENDR
);
269 case IRQCHIP_STATE_ACTIVE
:
270 *val
= gic_peek_irq(d
, GICD_ISACTIVER
);
273 case IRQCHIP_STATE_MASKED
:
274 *val
= !gic_peek_irq(d
, GICD_ISENABLER
);
284 static void gic_eoi_irq(struct irq_data
*d
)
286 gic_write_eoir(gic_irq(d
));
289 static void gic_eoimode1_eoi_irq(struct irq_data
*d
)
292 * No need to deactivate an LPI, or an interrupt that
293 * is is getting forwarded to a vcpu.
295 if (gic_irq(d
) >= 8192 || irqd_is_forwarded_to_vcpu(d
))
297 gic_write_dir(gic_irq(d
));
300 static int gic_set_type(struct irq_data
*d
, unsigned int type
)
302 unsigned int irq
= gic_irq(d
);
303 void (*rwp_wait
)(void);
306 /* Interrupt configuration for SGIs can't be changed */
310 /* SPIs have restrictions on the supported types */
311 if (irq
>= 32 && type
!= IRQ_TYPE_LEVEL_HIGH
&&
312 type
!= IRQ_TYPE_EDGE_RISING
)
315 if (gic_irq_in_rdist(d
)) {
316 base
= gic_data_rdist_sgi_base();
317 rwp_wait
= gic_redist_wait_for_rwp
;
319 base
= gic_data
.dist_base
;
320 rwp_wait
= gic_dist_wait_for_rwp
;
323 return gic_configure_irq(irq
, type
, base
, rwp_wait
);
326 static int gic_irq_set_vcpu_affinity(struct irq_data
*d
, void *vcpu
)
329 irqd_set_forwarded_to_vcpu(d
);
331 irqd_clr_forwarded_to_vcpu(d
);
335 static u64
gic_mpidr_to_affinity(unsigned long mpidr
)
339 aff
= ((u64
)MPIDR_AFFINITY_LEVEL(mpidr
, 3) << 32 |
340 MPIDR_AFFINITY_LEVEL(mpidr
, 2) << 16 |
341 MPIDR_AFFINITY_LEVEL(mpidr
, 1) << 8 |
342 MPIDR_AFFINITY_LEVEL(mpidr
, 0));
347 static asmlinkage
void __exception_irq_entry
gic_handle_irq(struct pt_regs
*regs
)
352 irqnr
= gic_read_iar();
354 if (likely(irqnr
> 15 && irqnr
< 1020) || irqnr
>= 8192) {
357 if (static_key_true(&supports_deactivate
))
358 gic_write_eoir(irqnr
);
362 err
= handle_domain_irq(gic_data
.domain
, irqnr
, regs
);
364 WARN_ONCE(true, "Unexpected interrupt received!\n");
365 if (static_key_true(&supports_deactivate
)) {
367 gic_write_dir(irqnr
);
369 gic_write_eoir(irqnr
);
375 gic_write_eoir(irqnr
);
376 if (static_key_true(&supports_deactivate
))
377 gic_write_dir(irqnr
);
380 * Unlike GICv2, we don't need an smp_rmb() here.
381 * The control dependency from gic_read_iar to
382 * the ISB in gic_write_eoir is enough to ensure
383 * that any shared data read by handle_IPI will
384 * be read after the ACK.
386 handle_IPI(irqnr
, regs
);
388 WARN_ONCE(true, "Unexpected SGI received!\n");
392 } while (irqnr
!= ICC_IAR1_EL1_SPURIOUS
);
395 static void __init
gic_dist_init(void)
399 void __iomem
*base
= gic_data
.dist_base
;
401 /* Disable the distributor */
402 writel_relaxed(0, base
+ GICD_CTLR
);
403 gic_dist_wait_for_rwp();
406 * Configure SPIs as non-secure Group-1. This will only matter
407 * if the GIC only has a single security state. This will not
408 * do the right thing if the kernel is running in secure mode,
409 * but that's not the intended use case anyway.
411 for (i
= 32; i
< gic_data
.irq_nr
; i
+= 32)
412 writel_relaxed(~0, base
+ GICD_IGROUPR
+ i
/ 8);
414 gic_dist_config(base
, gic_data
.irq_nr
, gic_dist_wait_for_rwp
);
416 /* Enable distributor with ARE, Group1 */
417 writel_relaxed(GICD_CTLR_ARE_NS
| GICD_CTLR_ENABLE_G1A
| GICD_CTLR_ENABLE_G1
,
421 * Set all global interrupts to the boot CPU only. ARE must be
424 affinity
= gic_mpidr_to_affinity(cpu_logical_map(smp_processor_id()));
425 for (i
= 32; i
< gic_data
.irq_nr
; i
++)
426 gic_write_irouter(affinity
, base
+ GICD_IROUTER
+ i
* 8);
429 static int gic_iterate_rdists(int (*fn
)(struct redist_region
*, void __iomem
*))
434 for (i
= 0; i
< gic_data
.nr_redist_regions
; i
++) {
435 void __iomem
*ptr
= gic_data
.redist_regions
[i
].redist_base
;
439 reg
= readl_relaxed(ptr
+ GICR_PIDR2
) & GIC_PIDR2_ARCH_MASK
;
440 if (reg
!= GIC_PIDR2_ARCH_GICv3
&&
441 reg
!= GIC_PIDR2_ARCH_GICv4
) { /* We're in trouble... */
442 pr_warn("No redistributor present @%p\n", ptr
);
447 typer
= gic_read_typer(ptr
+ GICR_TYPER
);
448 ret
= fn(gic_data
.redist_regions
+ i
, ptr
);
452 if (gic_data
.redist_regions
[i
].single_redist
)
455 if (gic_data
.redist_stride
) {
456 ptr
+= gic_data
.redist_stride
;
458 ptr
+= SZ_64K
* 2; /* Skip RD_base + SGI_base */
459 if (typer
& GICR_TYPER_VLPIS
)
460 ptr
+= SZ_64K
* 2; /* Skip VLPI_base + reserved page */
462 } while (!(typer
& GICR_TYPER_LAST
));
465 return ret
? -ENODEV
: 0;
468 static int __gic_populate_rdist(struct redist_region
*region
, void __iomem
*ptr
)
470 unsigned long mpidr
= cpu_logical_map(smp_processor_id());
475 * Convert affinity to a 32bit value that can be matched to
476 * GICR_TYPER bits [63:32].
478 aff
= (MPIDR_AFFINITY_LEVEL(mpidr
, 3) << 24 |
479 MPIDR_AFFINITY_LEVEL(mpidr
, 2) << 16 |
480 MPIDR_AFFINITY_LEVEL(mpidr
, 1) << 8 |
481 MPIDR_AFFINITY_LEVEL(mpidr
, 0));
483 typer
= gic_read_typer(ptr
+ GICR_TYPER
);
484 if ((typer
>> 32) == aff
) {
485 u64 offset
= ptr
- region
->redist_base
;
486 gic_data_rdist_rd_base() = ptr
;
487 gic_data_rdist()->phys_base
= region
->phys_base
+ offset
;
489 pr_info("CPU%d: found redistributor %lx region %d:%pa\n",
490 smp_processor_id(), mpidr
,
491 (int)(region
- gic_data
.redist_regions
),
492 &gic_data_rdist()->phys_base
);
500 static int gic_populate_rdist(void)
502 if (gic_iterate_rdists(__gic_populate_rdist
) == 0)
505 /* We couldn't even deal with ourselves... */
506 WARN(true, "CPU%d: mpidr %lx has no re-distributor!\n",
508 (unsigned long)cpu_logical_map(smp_processor_id()));
512 static int __gic_update_vlpi_properties(struct redist_region
*region
,
515 u64 typer
= gic_read_typer(ptr
+ GICR_TYPER
);
516 gic_data
.rdists
.has_vlpis
&= !!(typer
& GICR_TYPER_VLPIS
);
517 gic_data
.rdists
.has_direct_lpi
&= !!(typer
& GICR_TYPER_DirectLPIS
);
522 static void gic_update_vlpi_properties(void)
524 gic_iterate_rdists(__gic_update_vlpi_properties
);
525 pr_info("%sVLPI support, %sdirect LPI support\n",
526 !gic_data
.rdists
.has_vlpis
? "no " : "",
527 !gic_data
.rdists
.has_direct_lpi
? "no " : "");
530 static void gic_cpu_sys_reg_init(void)
532 int i
, cpu
= smp_processor_id();
533 u64 mpidr
= cpu_logical_map(cpu
);
534 u64 need_rss
= MPIDR_RS(mpidr
);
537 * Need to check that the SRE bit has actually been set. If
538 * not, it means that SRE is disabled at EL2. We're going to
539 * die painfully, and there is nothing we can do about it.
541 * Kindly inform the luser.
543 if (!gic_enable_sre())
544 pr_err("GIC: unable to set SRE (disabled at EL2), panic ahead\n");
546 /* Set priority mask register */
547 gic_write_pmr(DEFAULT_PMR_VALUE
);
550 * Some firmwares hand over to the kernel with the BPR changed from
551 * its reset value (and with a value large enough to prevent
552 * any pre-emptive interrupts from working at all). Writing a zero
553 * to BPR restores is reset value.
557 if (static_key_true(&supports_deactivate
)) {
558 /* EOI drops priority only (mode 1) */
559 gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop
);
561 /* EOI deactivates interrupt too (mode 0) */
562 gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop_dir
);
565 /* ... and let's hit the road... */
568 /* Keep the RSS capability status in per_cpu variable */
569 per_cpu(has_rss
, cpu
) = !!(gic_read_ctlr() & ICC_CTLR_EL1_RSS
);
571 /* Check all the CPUs have capable of sending SGIs to other CPUs */
572 for_each_online_cpu(i
) {
573 bool have_rss
= per_cpu(has_rss
, i
) && per_cpu(has_rss
, cpu
);
575 need_rss
|= MPIDR_RS(cpu_logical_map(i
));
576 if (need_rss
&& (!have_rss
))
577 pr_crit("CPU%d (%lx) can't SGI CPU%d (%lx), no RSS\n",
578 cpu
, (unsigned long)mpidr
,
579 i
, (unsigned long)cpu_logical_map(i
));
583 * GIC spec says, when ICC_CTLR_EL1.RSS==1 and GICD_TYPER.RSS==0,
584 * writing ICC_ASGI1R_EL1 register with RS != 0 is a CONSTRAINED
585 * UNPREDICTABLE choice of :
586 * - The write is ignored.
587 * - The RS field is treated as 0.
589 if (need_rss
&& (!gic_data
.has_rss
))
590 pr_crit_once("RSS is required but GICD doesn't support it\n");
593 static int gic_dist_supports_lpis(void)
595 return !!(readl_relaxed(gic_data
.dist_base
+ GICD_TYPER
) & GICD_TYPER_LPIS
);
598 static void gic_cpu_init(void)
602 /* Register ourselves with the rest of the world */
603 if (gic_populate_rdist())
606 gic_enable_redist(true);
608 rbase
= gic_data_rdist_sgi_base();
610 /* Configure SGIs/PPIs as non-secure Group-1 */
611 writel_relaxed(~0, rbase
+ GICR_IGROUPR0
);
613 gic_cpu_config(rbase
, gic_redist_wait_for_rwp
);
615 /* Give LPIs a spin */
616 if (IS_ENABLED(CONFIG_ARM_GIC_V3_ITS
) && gic_dist_supports_lpis())
619 /* initialise system registers */
620 gic_cpu_sys_reg_init();
625 #define MPIDR_TO_SGI_RS(mpidr) (MPIDR_RS(mpidr) << ICC_SGI1R_RS_SHIFT)
626 #define MPIDR_TO_SGI_CLUSTER_ID(mpidr) ((mpidr) & ~0xFUL)
628 static int gic_starting_cpu(unsigned int cpu
)
634 static u16
gic_compute_target_list(int *base_cpu
, const struct cpumask
*mask
,
635 unsigned long cluster_id
)
637 int next_cpu
, cpu
= *base_cpu
;
638 unsigned long mpidr
= cpu_logical_map(cpu
);
641 while (cpu
< nr_cpu_ids
) {
642 tlist
|= 1 << (mpidr
& 0xf);
644 next_cpu
= cpumask_next(cpu
, mask
);
645 if (next_cpu
>= nr_cpu_ids
)
649 mpidr
= cpu_logical_map(cpu
);
651 if (cluster_id
!= MPIDR_TO_SGI_CLUSTER_ID(mpidr
)) {
661 #define MPIDR_TO_SGI_AFFINITY(cluster_id, level) \
662 (MPIDR_AFFINITY_LEVEL(cluster_id, level) \
663 << ICC_SGI1R_AFFINITY_## level ##_SHIFT)
665 static void gic_send_sgi(u64 cluster_id
, u16 tlist
, unsigned int irq
)
669 val
= (MPIDR_TO_SGI_AFFINITY(cluster_id
, 3) |
670 MPIDR_TO_SGI_AFFINITY(cluster_id
, 2) |
671 irq
<< ICC_SGI1R_SGI_ID_SHIFT
|
672 MPIDR_TO_SGI_AFFINITY(cluster_id
, 1) |
673 MPIDR_TO_SGI_RS(cluster_id
) |
674 tlist
<< ICC_SGI1R_TARGET_LIST_SHIFT
);
676 pr_debug("CPU%d: ICC_SGI1R_EL1 %llx\n", smp_processor_id(), val
);
677 gic_write_sgi1r(val
);
680 static void gic_raise_softirq(const struct cpumask
*mask
, unsigned int irq
)
684 if (WARN_ON(irq
>= 16))
688 * Ensure that stores to Normal memory are visible to the
689 * other CPUs before issuing the IPI.
693 for_each_cpu(cpu
, mask
) {
694 u64 cluster_id
= MPIDR_TO_SGI_CLUSTER_ID(cpu_logical_map(cpu
));
697 tlist
= gic_compute_target_list(&cpu
, mask
, cluster_id
);
698 gic_send_sgi(cluster_id
, tlist
, irq
);
701 /* Force the above writes to ICC_SGI1R_EL1 to be executed */
705 static void gic_smp_init(void)
707 set_smp_cross_call(gic_raise_softirq
);
708 cpuhp_setup_state_nocalls(CPUHP_AP_IRQ_GIC_STARTING
,
709 "irqchip/arm/gicv3:starting",
710 gic_starting_cpu
, NULL
);
713 static int gic_set_affinity(struct irq_data
*d
, const struct cpumask
*mask_val
,
722 cpu
= cpumask_first(mask_val
);
724 cpu
= cpumask_any_and(mask_val
, cpu_online_mask
);
726 if (cpu
>= nr_cpu_ids
)
729 if (gic_irq_in_rdist(d
))
732 /* If interrupt was enabled, disable it first */
733 enabled
= gic_peek_irq(d
, GICD_ISENABLER
);
737 reg
= gic_dist_base(d
) + GICD_IROUTER
+ (gic_irq(d
) * 8);
738 val
= gic_mpidr_to_affinity(cpu_logical_map(cpu
));
740 gic_write_irouter(val
, reg
);
743 * If the interrupt was enabled, enabled it again. Otherwise,
744 * just wait for the distributor to have digested our changes.
749 gic_dist_wait_for_rwp();
751 irq_data_update_effective_affinity(d
, cpumask_of(cpu
));
753 return IRQ_SET_MASK_OK_DONE
;
756 #define gic_set_affinity NULL
757 #define gic_smp_init() do { } while(0)
761 /* Check whether it's single security state view */
762 static bool gic_dist_security_disabled(void)
764 return readl_relaxed(gic_data
.dist_base
+ GICD_CTLR
) & GICD_CTLR_DS
;
767 static int gic_cpu_pm_notifier(struct notifier_block
*self
,
768 unsigned long cmd
, void *v
)
770 if (cmd
== CPU_PM_EXIT
) {
771 if (gic_dist_security_disabled())
772 gic_enable_redist(true);
773 gic_cpu_sys_reg_init();
774 } else if (cmd
== CPU_PM_ENTER
&& gic_dist_security_disabled()) {
776 gic_enable_redist(false);
781 static struct notifier_block gic_cpu_pm_notifier_block
= {
782 .notifier_call
= gic_cpu_pm_notifier
,
785 static void gic_cpu_pm_init(void)
787 cpu_pm_register_notifier(&gic_cpu_pm_notifier_block
);
791 static inline void gic_cpu_pm_init(void) { }
792 #endif /* CONFIG_CPU_PM */
794 static struct irq_chip gic_chip
= {
796 .irq_mask
= gic_mask_irq
,
797 .irq_unmask
= gic_unmask_irq
,
798 .irq_eoi
= gic_eoi_irq
,
799 .irq_set_type
= gic_set_type
,
800 .irq_set_affinity
= gic_set_affinity
,
801 .irq_get_irqchip_state
= gic_irq_get_irqchip_state
,
802 .irq_set_irqchip_state
= gic_irq_set_irqchip_state
,
803 .flags
= IRQCHIP_SET_TYPE_MASKED
,
806 static struct irq_chip gic_eoimode1_chip
= {
808 .irq_mask
= gic_eoimode1_mask_irq
,
809 .irq_unmask
= gic_unmask_irq
,
810 .irq_eoi
= gic_eoimode1_eoi_irq
,
811 .irq_set_type
= gic_set_type
,
812 .irq_set_affinity
= gic_set_affinity
,
813 .irq_get_irqchip_state
= gic_irq_get_irqchip_state
,
814 .irq_set_irqchip_state
= gic_irq_set_irqchip_state
,
815 .irq_set_vcpu_affinity
= gic_irq_set_vcpu_affinity
,
816 .flags
= IRQCHIP_SET_TYPE_MASKED
,
819 #define GIC_ID_NR (1U << gic_data.rdists.id_bits)
821 static int gic_irq_domain_map(struct irq_domain
*d
, unsigned int irq
,
824 struct irq_chip
*chip
= &gic_chip
;
826 if (static_key_true(&supports_deactivate
))
827 chip
= &gic_eoimode1_chip
;
829 /* SGIs are private to the core kernel */
833 if (hw
>= gic_data
.irq_nr
&& hw
< 8192)
841 irq_set_percpu_devid(irq
);
842 irq_domain_set_info(d
, irq
, hw
, chip
, d
->host_data
,
843 handle_percpu_devid_irq
, NULL
, NULL
);
844 irq_set_status_flags(irq
, IRQ_NOAUTOEN
);
847 if (hw
>= 32 && hw
< gic_data
.irq_nr
) {
848 irq_domain_set_info(d
, irq
, hw
, chip
, d
->host_data
,
849 handle_fasteoi_irq
, NULL
, NULL
);
851 irqd_set_single_target(irq_desc_get_irq_data(irq_to_desc(irq
)));
854 if (hw
>= 8192 && hw
< GIC_ID_NR
) {
855 if (!gic_dist_supports_lpis())
857 irq_domain_set_info(d
, irq
, hw
, chip
, d
->host_data
,
858 handle_fasteoi_irq
, NULL
, NULL
);
864 static int gic_irq_domain_translate(struct irq_domain
*d
,
865 struct irq_fwspec
*fwspec
,
866 unsigned long *hwirq
,
869 if (is_of_node(fwspec
->fwnode
)) {
870 if (fwspec
->param_count
< 3)
873 switch (fwspec
->param
[0]) {
875 *hwirq
= fwspec
->param
[1] + 32;
878 *hwirq
= fwspec
->param
[1] + 16;
880 case GIC_IRQ_TYPE_LPI
: /* LPI */
881 *hwirq
= fwspec
->param
[1];
887 *type
= fwspec
->param
[2] & IRQ_TYPE_SENSE_MASK
;
891 if (is_fwnode_irqchip(fwspec
->fwnode
)) {
892 if(fwspec
->param_count
!= 2)
895 *hwirq
= fwspec
->param
[0];
896 *type
= fwspec
->param
[1];
903 static int gic_irq_domain_alloc(struct irq_domain
*domain
, unsigned int virq
,
904 unsigned int nr_irqs
, void *arg
)
907 irq_hw_number_t hwirq
;
908 unsigned int type
= IRQ_TYPE_NONE
;
909 struct irq_fwspec
*fwspec
= arg
;
911 ret
= gic_irq_domain_translate(domain
, fwspec
, &hwirq
, &type
);
915 for (i
= 0; i
< nr_irqs
; i
++) {
916 ret
= gic_irq_domain_map(domain
, virq
+ i
, hwirq
+ i
);
924 static void gic_irq_domain_free(struct irq_domain
*domain
, unsigned int virq
,
925 unsigned int nr_irqs
)
929 for (i
= 0; i
< nr_irqs
; i
++) {
930 struct irq_data
*d
= irq_domain_get_irq_data(domain
, virq
+ i
);
931 irq_set_handler(virq
+ i
, NULL
);
932 irq_domain_reset_irq_data(d
);
936 static int gic_irq_domain_select(struct irq_domain
*d
,
937 struct irq_fwspec
*fwspec
,
938 enum irq_domain_bus_token bus_token
)
941 if (fwspec
->fwnode
!= d
->fwnode
)
944 /* If this is not DT, then we have a single domain */
945 if (!is_of_node(fwspec
->fwnode
))
949 * If this is a PPI and we have a 4th (non-null) parameter,
950 * then we need to match the partition domain.
952 if (fwspec
->param_count
>= 4 &&
953 fwspec
->param
[0] == 1 && fwspec
->param
[3] != 0)
954 return d
== partition_get_domain(gic_data
.ppi_descs
[fwspec
->param
[1]]);
956 return d
== gic_data
.domain
;
959 static const struct irq_domain_ops gic_irq_domain_ops
= {
960 .translate
= gic_irq_domain_translate
,
961 .alloc
= gic_irq_domain_alloc
,
962 .free
= gic_irq_domain_free
,
963 .select
= gic_irq_domain_select
,
966 static int partition_domain_translate(struct irq_domain
*d
,
967 struct irq_fwspec
*fwspec
,
968 unsigned long *hwirq
,
971 struct device_node
*np
;
974 np
= of_find_node_by_phandle(fwspec
->param
[3]);
978 ret
= partition_translate_id(gic_data
.ppi_descs
[fwspec
->param
[1]],
979 of_node_to_fwnode(np
));
984 *type
= fwspec
->param
[2] & IRQ_TYPE_SENSE_MASK
;
989 static const struct irq_domain_ops partition_domain_ops
= {
990 .translate
= partition_domain_translate
,
991 .select
= gic_irq_domain_select
,
994 static int __init
gic_init_bases(void __iomem
*dist_base
,
995 struct redist_region
*rdist_regs
,
996 u32 nr_redist_regions
,
998 struct fwnode_handle
*handle
)
1004 if (!is_hyp_mode_available())
1005 static_key_slow_dec(&supports_deactivate
);
1007 if (static_key_true(&supports_deactivate
))
1008 pr_info("GIC: Using split EOI/Deactivate mode\n");
1010 gic_data
.fwnode
= handle
;
1011 gic_data
.dist_base
= dist_base
;
1012 gic_data
.redist_regions
= rdist_regs
;
1013 gic_data
.nr_redist_regions
= nr_redist_regions
;
1014 gic_data
.redist_stride
= redist_stride
;
1017 * Find out how many interrupts are supported.
1018 * The GIC only supports up to 1020 interrupt sources (SGI+PPI+SPI)
1020 typer
= readl_relaxed(gic_data
.dist_base
+ GICD_TYPER
);
1021 gic_data
.rdists
.id_bits
= GICD_TYPER_ID_BITS(typer
);
1022 gic_irqs
= GICD_TYPER_IRQS(typer
);
1023 if (gic_irqs
> 1020)
1025 gic_data
.irq_nr
= gic_irqs
;
1027 gic_data
.domain
= irq_domain_create_tree(handle
, &gic_irq_domain_ops
,
1029 gic_data
.rdists
.rdist
= alloc_percpu(typeof(*gic_data
.rdists
.rdist
));
1030 gic_data
.rdists
.has_vlpis
= true;
1031 gic_data
.rdists
.has_direct_lpi
= true;
1033 if (WARN_ON(!gic_data
.domain
) || WARN_ON(!gic_data
.rdists
.rdist
)) {
1038 gic_data
.has_rss
= !!(typer
& GICD_TYPER_RSS
);
1039 pr_info("Distributor has %sRange Selector support\n",
1040 gic_data
.has_rss
? "" : "no ");
1042 set_handle_irq(gic_handle_irq
);
1044 gic_update_vlpi_properties();
1046 if (IS_ENABLED(CONFIG_ARM_GIC_V3_ITS
) && gic_dist_supports_lpis())
1047 its_init(handle
, &gic_data
.rdists
, gic_data
.domain
);
1057 if (gic_data
.domain
)
1058 irq_domain_remove(gic_data
.domain
);
1059 free_percpu(gic_data
.rdists
.rdist
);
1063 static int __init
gic_validate_dist_version(void __iomem
*dist_base
)
1065 u32 reg
= readl_relaxed(dist_base
+ GICD_PIDR2
) & GIC_PIDR2_ARCH_MASK
;
1067 if (reg
!= GIC_PIDR2_ARCH_GICv3
&& reg
!= GIC_PIDR2_ARCH_GICv4
)
1073 static int get_cpu_number(struct device_node
*dn
)
1079 cell
= of_get_property(dn
, "reg", NULL
);
1083 hwid
= of_read_number(cell
, of_n_addr_cells(dn
));
1086 * Non affinity bits must be set to 0 in the DT
1088 if (hwid
& ~MPIDR_HWID_BITMASK
)
1091 for_each_possible_cpu(cpu
)
1092 if (cpu_logical_map(cpu
) == hwid
)
1098 /* Create all possible partitions at boot time */
1099 static void __init
gic_populate_ppi_partitions(struct device_node
*gic_node
)
1101 struct device_node
*parts_node
, *child_part
;
1102 int part_idx
= 0, i
;
1104 struct partition_affinity
*parts
;
1106 parts_node
= of_find_node_by_name(gic_node
, "ppi-partitions");
1110 nr_parts
= of_get_child_count(parts_node
);
1115 parts
= kzalloc(sizeof(*parts
) * nr_parts
, GFP_KERNEL
);
1116 if (WARN_ON(!parts
))
1119 for_each_child_of_node(parts_node
, child_part
) {
1120 struct partition_affinity
*part
;
1123 part
= &parts
[part_idx
];
1125 part
->partition_id
= of_node_to_fwnode(child_part
);
1127 pr_info("GIC: PPI partition %s[%d] { ",
1128 child_part
->name
, part_idx
);
1130 n
= of_property_count_elems_of_size(child_part
, "affinity",
1134 for (i
= 0; i
< n
; i
++) {
1137 struct device_node
*cpu_node
;
1139 err
= of_property_read_u32_index(child_part
, "affinity",
1144 cpu_node
= of_find_node_by_phandle(cpu_phandle
);
1145 if (WARN_ON(!cpu_node
))
1148 cpu
= get_cpu_number(cpu_node
);
1149 if (WARN_ON(cpu
== -1))
1152 pr_cont("%pOF[%d] ", cpu_node
, cpu
);
1154 cpumask_set_cpu(cpu
, &part
->mask
);
1161 for (i
= 0; i
< 16; i
++) {
1163 struct partition_desc
*desc
;
1164 struct irq_fwspec ppi_fwspec
= {
1165 .fwnode
= gic_data
.fwnode
,
1170 [2] = IRQ_TYPE_NONE
,
1174 irq
= irq_create_fwspec_mapping(&ppi_fwspec
);
1177 desc
= partition_create_desc(gic_data
.fwnode
, parts
, nr_parts
,
1178 irq
, &partition_domain_ops
);
1182 gic_data
.ppi_descs
[i
] = desc
;
1186 static void __init
gic_of_setup_kvm_info(struct device_node
*node
)
1192 gic_v3_kvm_info
.type
= GIC_V3
;
1194 gic_v3_kvm_info
.maint_irq
= irq_of_parse_and_map(node
, 0);
1195 if (!gic_v3_kvm_info
.maint_irq
)
1198 if (of_property_read_u32(node
, "#redistributor-regions",
1202 gicv_idx
+= 3; /* Also skip GICD, GICC, GICH */
1203 ret
= of_address_to_resource(node
, gicv_idx
, &r
);
1205 gic_v3_kvm_info
.vcpu
= r
;
1207 gic_v3_kvm_info
.has_v4
= gic_data
.rdists
.has_vlpis
;
1208 gic_set_kvm_info(&gic_v3_kvm_info
);
1211 static int __init
gic_of_init(struct device_node
*node
, struct device_node
*parent
)
1213 void __iomem
*dist_base
;
1214 struct redist_region
*rdist_regs
;
1216 u32 nr_redist_regions
;
1219 dist_base
= of_iomap(node
, 0);
1221 pr_err("%pOF: unable to map gic dist registers\n", node
);
1225 err
= gic_validate_dist_version(dist_base
);
1227 pr_err("%pOF: no distributor detected, giving up\n", node
);
1228 goto out_unmap_dist
;
1231 if (of_property_read_u32(node
, "#redistributor-regions", &nr_redist_regions
))
1232 nr_redist_regions
= 1;
1234 rdist_regs
= kzalloc(sizeof(*rdist_regs
) * nr_redist_regions
, GFP_KERNEL
);
1237 goto out_unmap_dist
;
1240 for (i
= 0; i
< nr_redist_regions
; i
++) {
1241 struct resource res
;
1244 ret
= of_address_to_resource(node
, 1 + i
, &res
);
1245 rdist_regs
[i
].redist_base
= of_iomap(node
, 1 + i
);
1246 if (ret
|| !rdist_regs
[i
].redist_base
) {
1247 pr_err("%pOF: couldn't map region %d\n", node
, i
);
1249 goto out_unmap_rdist
;
1251 rdist_regs
[i
].phys_base
= res
.start
;
1254 if (of_property_read_u64(node
, "redistributor-stride", &redist_stride
))
1257 err
= gic_init_bases(dist_base
, rdist_regs
, nr_redist_regions
,
1258 redist_stride
, &node
->fwnode
);
1260 goto out_unmap_rdist
;
1262 gic_populate_ppi_partitions(node
);
1264 if (static_key_true(&supports_deactivate
))
1265 gic_of_setup_kvm_info(node
);
1269 for (i
= 0; i
< nr_redist_regions
; i
++)
1270 if (rdist_regs
[i
].redist_base
)
1271 iounmap(rdist_regs
[i
].redist_base
);
1278 IRQCHIP_DECLARE(gic_v3
, "arm,gic-v3", gic_of_init
);
1283 void __iomem
*dist_base
;
1284 struct redist_region
*redist_regs
;
1285 u32 nr_redist_regions
;
1289 phys_addr_t vcpu_base
;
1290 } acpi_data __initdata
;
1293 gic_acpi_register_redist(phys_addr_t phys_base
, void __iomem
*redist_base
)
1295 static int count
= 0;
1297 acpi_data
.redist_regs
[count
].phys_base
= phys_base
;
1298 acpi_data
.redist_regs
[count
].redist_base
= redist_base
;
1299 acpi_data
.redist_regs
[count
].single_redist
= acpi_data
.single_redist
;
1304 gic_acpi_parse_madt_redist(struct acpi_subtable_header
*header
,
1305 const unsigned long end
)
1307 struct acpi_madt_generic_redistributor
*redist
=
1308 (struct acpi_madt_generic_redistributor
*)header
;
1309 void __iomem
*redist_base
;
1311 redist_base
= ioremap(redist
->base_address
, redist
->length
);
1313 pr_err("Couldn't map GICR region @%llx\n", redist
->base_address
);
1317 gic_acpi_register_redist(redist
->base_address
, redist_base
);
1322 gic_acpi_parse_madt_gicc(struct acpi_subtable_header
*header
,
1323 const unsigned long end
)
1325 struct acpi_madt_generic_interrupt
*gicc
=
1326 (struct acpi_madt_generic_interrupt
*)header
;
1327 u32 reg
= readl_relaxed(acpi_data
.dist_base
+ GICD_PIDR2
) & GIC_PIDR2_ARCH_MASK
;
1328 u32 size
= reg
== GIC_PIDR2_ARCH_GICv4
? SZ_64K
* 4 : SZ_64K
* 2;
1329 void __iomem
*redist_base
;
1331 redist_base
= ioremap(gicc
->gicr_base_address
, size
);
1335 gic_acpi_register_redist(gicc
->gicr_base_address
, redist_base
);
1339 static int __init
gic_acpi_collect_gicr_base(void)
1341 acpi_tbl_entry_handler redist_parser
;
1342 enum acpi_madt_type type
;
1344 if (acpi_data
.single_redist
) {
1345 type
= ACPI_MADT_TYPE_GENERIC_INTERRUPT
;
1346 redist_parser
= gic_acpi_parse_madt_gicc
;
1348 type
= ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR
;
1349 redist_parser
= gic_acpi_parse_madt_redist
;
1352 /* Collect redistributor base addresses in GICR entries */
1353 if (acpi_table_parse_madt(type
, redist_parser
, 0) > 0)
1356 pr_info("No valid GICR entries exist\n");
1360 static int __init
gic_acpi_match_gicr(struct acpi_subtable_header
*header
,
1361 const unsigned long end
)
1363 /* Subtable presence means that redist exists, that's it */
1367 static int __init
gic_acpi_match_gicc(struct acpi_subtable_header
*header
,
1368 const unsigned long end
)
1370 struct acpi_madt_generic_interrupt
*gicc
=
1371 (struct acpi_madt_generic_interrupt
*)header
;
1374 * If GICC is enabled and has valid gicr base address, then it means
1375 * GICR base is presented via GICC
1377 if ((gicc
->flags
& ACPI_MADT_ENABLED
) && gicc
->gicr_base_address
)
1383 static int __init
gic_acpi_count_gicr_regions(void)
1388 * Count how many redistributor regions we have. It is not allowed
1389 * to mix redistributor description, GICR and GICC subtables have to be
1390 * mutually exclusive.
1392 count
= acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR
,
1393 gic_acpi_match_gicr
, 0);
1395 acpi_data
.single_redist
= false;
1399 count
= acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT
,
1400 gic_acpi_match_gicc
, 0);
1402 acpi_data
.single_redist
= true;
1407 static bool __init
acpi_validate_gic_table(struct acpi_subtable_header
*header
,
1408 struct acpi_probe_entry
*ape
)
1410 struct acpi_madt_generic_distributor
*dist
;
1413 dist
= (struct acpi_madt_generic_distributor
*)header
;
1414 if (dist
->version
!= ape
->driver_data
)
1417 /* We need to do that exercise anyway, the sooner the better */
1418 count
= gic_acpi_count_gicr_regions();
1422 acpi_data
.nr_redist_regions
= count
;
1426 static int __init
gic_acpi_parse_virt_madt_gicc(struct acpi_subtable_header
*header
,
1427 const unsigned long end
)
1429 struct acpi_madt_generic_interrupt
*gicc
=
1430 (struct acpi_madt_generic_interrupt
*)header
;
1432 static int first_madt
= true;
1434 /* Skip unusable CPUs */
1435 if (!(gicc
->flags
& ACPI_MADT_ENABLED
))
1438 maint_irq_mode
= (gicc
->flags
& ACPI_MADT_VGIC_IRQ_MODE
) ?
1439 ACPI_EDGE_SENSITIVE
: ACPI_LEVEL_SENSITIVE
;
1444 acpi_data
.maint_irq
= gicc
->vgic_interrupt
;
1445 acpi_data
.maint_irq_mode
= maint_irq_mode
;
1446 acpi_data
.vcpu_base
= gicc
->gicv_base_address
;
1452 * The maintenance interrupt and GICV should be the same for every CPU
1454 if ((acpi_data
.maint_irq
!= gicc
->vgic_interrupt
) ||
1455 (acpi_data
.maint_irq_mode
!= maint_irq_mode
) ||
1456 (acpi_data
.vcpu_base
!= gicc
->gicv_base_address
))
1462 static bool __init
gic_acpi_collect_virt_info(void)
1466 count
= acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT
,
1467 gic_acpi_parse_virt_madt_gicc
, 0);
1472 #define ACPI_GICV3_DIST_MEM_SIZE (SZ_64K)
1473 #define ACPI_GICV2_VCTRL_MEM_SIZE (SZ_4K)
1474 #define ACPI_GICV2_VCPU_MEM_SIZE (SZ_8K)
1476 static void __init
gic_acpi_setup_kvm_info(void)
1480 if (!gic_acpi_collect_virt_info()) {
1481 pr_warn("Unable to get hardware information used for virtualization\n");
1485 gic_v3_kvm_info
.type
= GIC_V3
;
1487 irq
= acpi_register_gsi(NULL
, acpi_data
.maint_irq
,
1488 acpi_data
.maint_irq_mode
,
1493 gic_v3_kvm_info
.maint_irq
= irq
;
1495 if (acpi_data
.vcpu_base
) {
1496 struct resource
*vcpu
= &gic_v3_kvm_info
.vcpu
;
1498 vcpu
->flags
= IORESOURCE_MEM
;
1499 vcpu
->start
= acpi_data
.vcpu_base
;
1500 vcpu
->end
= vcpu
->start
+ ACPI_GICV2_VCPU_MEM_SIZE
- 1;
1503 gic_v3_kvm_info
.has_v4
= gic_data
.rdists
.has_vlpis
;
1504 gic_set_kvm_info(&gic_v3_kvm_info
);
1508 gic_acpi_init(struct acpi_subtable_header
*header
, const unsigned long end
)
1510 struct acpi_madt_generic_distributor
*dist
;
1511 struct fwnode_handle
*domain_handle
;
1515 /* Get distributor base address */
1516 dist
= (struct acpi_madt_generic_distributor
*)header
;
1517 acpi_data
.dist_base
= ioremap(dist
->base_address
,
1518 ACPI_GICV3_DIST_MEM_SIZE
);
1519 if (!acpi_data
.dist_base
) {
1520 pr_err("Unable to map GICD registers\n");
1524 err
= gic_validate_dist_version(acpi_data
.dist_base
);
1526 pr_err("No distributor detected at @%p, giving up",
1527 acpi_data
.dist_base
);
1528 goto out_dist_unmap
;
1531 size
= sizeof(*acpi_data
.redist_regs
) * acpi_data
.nr_redist_regions
;
1532 acpi_data
.redist_regs
= kzalloc(size
, GFP_KERNEL
);
1533 if (!acpi_data
.redist_regs
) {
1535 goto out_dist_unmap
;
1538 err
= gic_acpi_collect_gicr_base();
1540 goto out_redist_unmap
;
1542 domain_handle
= irq_domain_alloc_fwnode(acpi_data
.dist_base
);
1543 if (!domain_handle
) {
1545 goto out_redist_unmap
;
1548 err
= gic_init_bases(acpi_data
.dist_base
, acpi_data
.redist_regs
,
1549 acpi_data
.nr_redist_regions
, 0, domain_handle
);
1551 goto out_fwhandle_free
;
1553 acpi_set_irq_model(ACPI_IRQ_MODEL_GIC
, domain_handle
);
1555 if (static_key_true(&supports_deactivate
))
1556 gic_acpi_setup_kvm_info();
1561 irq_domain_free_fwnode(domain_handle
);
1563 for (i
= 0; i
< acpi_data
.nr_redist_regions
; i
++)
1564 if (acpi_data
.redist_regs
[i
].redist_base
)
1565 iounmap(acpi_data
.redist_regs
[i
].redist_base
);
1566 kfree(acpi_data
.redist_regs
);
1568 iounmap(acpi_data
.dist_base
);
1571 IRQCHIP_ACPI_DECLARE(gic_v3
, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR
,
1572 acpi_validate_gic_table
, ACPI_MADT_GIC_VERSION_V3
,
1574 IRQCHIP_ACPI_DECLARE(gic_v4
, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR
,
1575 acpi_validate_gic_table
, ACPI_MADT_GIC_VERSION_V4
,
1577 IRQCHIP_ACPI_DECLARE(gic_v3_or_v4
, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR
,
1578 acpi_validate_gic_table
, ACPI_MADT_GIC_VERSION_NONE
,