]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - drivers/irqchip/irq-gic-v3.c
Merge tag 'kvm-x86-mmu-6.7' of https://github.com/kvm-x86/linux into HEAD
[thirdparty/kernel/stable.git] / drivers / irqchip / irq-gic-v3.c
CommitLineData
caab277b 1// SPDX-License-Identifier: GPL-2.0-only
021f6537 2/*
0edc23ea 3 * Copyright (C) 2013-2017 ARM Limited, All Rights Reserved.
021f6537 4 * Author: Marc Zyngier <marc.zyngier@arm.com>
021f6537
MZ
5 */
6
68628bb8
JG
7#define pr_fmt(fmt) "GICv3: " fmt
8
ffa7d616 9#include <linux/acpi.h>
021f6537 10#include <linux/cpu.h>
3708d52f 11#include <linux/cpu_pm.h>
021f6537
MZ
12#include <linux/delay.h>
13#include <linux/interrupt.h>
ffa7d616 14#include <linux/irqdomain.h>
5e279739 15#include <linux/kstrtox.h>
021f6537
MZ
16#include <linux/of.h>
17#include <linux/of_address.h>
18#include <linux/of_irq.h>
19#include <linux/percpu.h>
101b35f7 20#include <linux/refcount.h>
021f6537
MZ
21#include <linux/slab.h>
22
41a83e06 23#include <linux/irqchip.h>
1839e576 24#include <linux/irqchip/arm-gic-common.h>
021f6537 25#include <linux/irqchip/arm-gic-v3.h>
e3825ba1 26#include <linux/irqchip/irq-partition-percpu.h>
35727af2
SD
27#include <linux/bitfield.h>
28#include <linux/bits.h>
29#include <linux/arm-smccc.h>
021f6537
MZ
30
31#include <asm/cputype.h>
32#include <asm/exception.h>
33#include <asm/smp_plat.h>
0b6a3da9 34#include <asm/virt.h>
021f6537
MZ
35
36#include "irq-gic-common.h"
021f6537 37
f32c9266
JT
38#define GICD_INT_NMI_PRI (GICD_INT_DEF_PRI & ~0x80)
39
9c8114c2 40#define FLAGS_WORKAROUND_GICR_WAKER_MSM8996 (1ULL << 0)
d01fd161 41#define FLAGS_WORKAROUND_CAVIUM_ERRATUM_38539 (1ULL << 1)
44bd78dd 42#define FLAGS_WORKAROUND_MTK_GICR_SAVE (1ULL << 2)
b4d81fab 43#define FLAGS_WORKAROUND_ASR_ERRATUM_8601001 (1ULL << 3)
9c8114c2 44
64b499d8
MZ
45#define GIC_IRQ_TYPE_PARTITION (GIC_IRQ_TYPE_LPI + 1)
46
f5c1434c
MZ
47struct redist_region {
48 void __iomem *redist_base;
49 phys_addr_t phys_base;
b70fb7af 50 bool single_redist;
f5c1434c
MZ
51};
52
021f6537 53struct gic_chip_data {
e3825ba1 54 struct fwnode_handle *fwnode;
35727af2 55 phys_addr_t dist_phys_base;
021f6537 56 void __iomem *dist_base;
f5c1434c
MZ
57 struct redist_region *redist_regions;
58 struct rdists rdists;
021f6537
MZ
59 struct irq_domain *domain;
60 u64 redist_stride;
f5c1434c 61 u32 nr_redist_regions;
9c8114c2 62 u64 flags;
eda0d04a 63 bool has_rss;
1a60e1e6 64 unsigned int ppi_nr;
52085d3f 65 struct partition_desc **ppi_descs;
021f6537
MZ
66};
67
35727af2
SD
68#define T241_CHIPS_MAX 4
69static void __iomem *t241_dist_base_alias[T241_CHIPS_MAX] __read_mostly;
70static DEFINE_STATIC_KEY_FALSE(gic_nvidia_t241_erratum);
71
6fe5c68e
LP
72static DEFINE_STATIC_KEY_FALSE(gic_arm64_2941627_erratum);
73
021f6537 74static struct gic_chip_data gic_data __read_mostly;
d01d3274 75static DEFINE_STATIC_KEY_TRUE(supports_deactivate_key);
021f6537 76
211bddd2 77#define GIC_ID_NR (1U << GICD_TYPER_ID_BITS(gic_data.rdists.gicd_typer))
c107d613 78#define GIC_LINE_NR min(GICD_TYPER_SPIS(gic_data.rdists.gicd_typer), 1020U)
211bddd2
MZ
79#define GIC_ESPI_NR GICD_TYPER_ESPIS(gic_data.rdists.gicd_typer)
80
d98d0a99
JT
81/*
82 * The behaviours of RPR and PMR registers differ depending on the value of
83 * SCR_EL3.FIQ, and the behaviour of non-secure priority registers of the
84 * distributor and redistributors depends on whether security is enabled in the
85 * GIC.
86 *
87 * When security is enabled, non-secure priority values from the (re)distributor
88 * are presented to the GIC CPUIF as follow:
89 * (GIC_(R)DIST_PRI[irq] >> 1) | 0x80;
90 *
d4034114 91 * If SCR_EL3.FIQ == 1, the values written to/read from PMR and RPR at non-secure
d98d0a99 92 * EL1 are subject to a similar operation thus matching the priorities presented
33678059 93 * from the (re)distributor when security is enabled. When SCR_EL3.FIQ == 0,
d4034114 94 * these values are unchanged by the GIC.
d98d0a99
JT
95 *
96 * see GICv3/GICv4 Architecture Specification (IHI0069D):
97 * - section 4.8.1 Non-secure accesses to register fields for Secure interrupt
98 * priorities.
99 * - Figure 4-7 Secure read of the priority field for a Non-secure Group 1
100 * interrupt.
d98d0a99
JT
101 */
102static DEFINE_STATIC_KEY_FALSE(supports_pseudo_nmis);
103
33678059
AE
104DEFINE_STATIC_KEY_FALSE(gic_nonsecure_priorities);
105EXPORT_SYMBOL(gic_nonsecure_priorities);
106
8d474dea
CYT
107/*
108 * When the Non-secure world has access to group 0 interrupts (as a
109 * consequence of SCR_EL3.FIQ == 0), reading the ICC_RPR_EL1 register will
110 * return the Distributor's view of the interrupt priority.
111 *
112 * When GIC security is enabled (GICD_CTLR.DS == 0), the interrupt priority
113 * written by software is moved to the Non-secure range by the Distributor.
114 *
115 * If both are true (which is when gic_nonsecure_priorities gets enabled),
116 * we need to shift down the priority programmed by software to match it
117 * against the value returned by ICC_RPR_EL1.
118 */
119#define GICD_INT_RPR_PRI(priority) \
120 ({ \
121 u32 __priority = (priority); \
122 if (static_branch_unlikely(&gic_nonsecure_priorities)) \
123 __priority = 0x80 | (__priority >> 1); \
124 \
125 __priority; \
126 })
127
101b35f7 128/* ppi_nmi_refs[n] == number of cpus having ppi[n + 16] set as NMI */
81a43273 129static refcount_t *ppi_nmi_refs;
101b35f7 130
0e5cb777 131static struct gic_kvm_info gic_v3_kvm_info __initdata;
eda0d04a 132static DEFINE_PER_CPU(bool, has_rss);
1839e576 133
eda0d04a 134#define MPIDR_RS(mpidr) (((mpidr) & 0xF0UL) >> 4)
f5c1434c
MZ
135#define gic_data_rdist() (this_cpu_ptr(gic_data.rdists.rdist))
136#define gic_data_rdist_rd_base() (gic_data_rdist()->rd_base)
021f6537
MZ
137#define gic_data_rdist_sgi_base() (gic_data_rdist_rd_base() + SZ_64K)
138
139/* Our default, arbitrary priority value. Linux only uses one anyway. */
140#define DEFAULT_PMR_VALUE 0xf0
141
e91b036e 142enum gic_intid_range {
70a29c32 143 SGI_RANGE,
e91b036e
MZ
144 PPI_RANGE,
145 SPI_RANGE,
5f51f803 146 EPPI_RANGE,
211bddd2 147 ESPI_RANGE,
e91b036e
MZ
148 LPI_RANGE,
149 __INVALID_RANGE__
150};
151
152static enum gic_intid_range __get_intid_range(irq_hw_number_t hwirq)
153{
154 switch (hwirq) {
70a29c32
MZ
155 case 0 ... 15:
156 return SGI_RANGE;
e91b036e
MZ
157 case 16 ... 31:
158 return PPI_RANGE;
159 case 32 ... 1019:
160 return SPI_RANGE;
5f51f803
MZ
161 case EPPI_BASE_INTID ... (EPPI_BASE_INTID + 63):
162 return EPPI_RANGE;
211bddd2
MZ
163 case ESPI_BASE_INTID ... (ESPI_BASE_INTID + 1023):
164 return ESPI_RANGE;
e91b036e
MZ
165 case 8192 ... GENMASK(23, 0):
166 return LPI_RANGE;
167 default:
168 return __INVALID_RANGE__;
169 }
170}
171
172static enum gic_intid_range get_intid_range(struct irq_data *d)
173{
174 return __get_intid_range(d->hwirq);
175}
176
021f6537
MZ
177static inline unsigned int gic_irq(struct irq_data *d)
178{
179 return d->hwirq;
180}
181
70a29c32 182static inline bool gic_irq_in_rdist(struct irq_data *d)
021f6537 183{
70a29c32
MZ
184 switch (get_intid_range(d)) {
185 case SGI_RANGE:
186 case PPI_RANGE:
187 case EPPI_RANGE:
188 return true;
189 default:
190 return false;
191 }
021f6537
MZ
192}
193
35727af2
SD
194static inline void __iomem *gic_dist_base_alias(struct irq_data *d)
195{
196 if (static_branch_unlikely(&gic_nvidia_t241_erratum)) {
197 irq_hw_number_t hwirq = irqd_to_hwirq(d);
198 u32 chip;
199
200 /*
201 * For the erratum T241-FABRIC-4, read accesses to GICD_In{E}
202 * registers are directed to the chip that owns the SPI. The
203 * the alias region can also be used for writes to the
204 * GICD_In{E} except GICD_ICENABLERn. Each chip has support
205 * for 320 {E}SPIs. Mappings for all 4 chips:
206 * Chip0 = 32-351
207 * Chip1 = 352-671
208 * Chip2 = 672-991
209 * Chip3 = 4096-4415
210 */
211 switch (__get_intid_range(hwirq)) {
212 case SPI_RANGE:
213 chip = (hwirq - 32) / 320;
214 break;
215 case ESPI_RANGE:
216 chip = 3;
217 break;
218 default:
219 unreachable();
220 }
221 return t241_dist_base_alias[chip];
222 }
223
224 return gic_data.dist_base;
225}
226
021f6537
MZ
227static inline void __iomem *gic_dist_base(struct irq_data *d)
228{
e91b036e 229 switch (get_intid_range(d)) {
70a29c32 230 case SGI_RANGE:
e91b036e 231 case PPI_RANGE:
5f51f803 232 case EPPI_RANGE:
e91b036e 233 /* SGI+PPI -> SGI_base for this CPU */
021f6537
MZ
234 return gic_data_rdist_sgi_base();
235
e91b036e 236 case SPI_RANGE:
211bddd2 237 case ESPI_RANGE:
e91b036e 238 /* SPI -> dist_base */
021f6537
MZ
239 return gic_data.dist_base;
240
e91b036e
MZ
241 default:
242 return NULL;
243 }
021f6537
MZ
244}
245
0df66645 246static void gic_do_wait_for_rwp(void __iomem *base, u32 bit)
021f6537
MZ
247{
248 u32 count = 1000000; /* 1s! */
249
0df66645 250 while (readl_relaxed(base + GICD_CTLR) & bit) {
021f6537
MZ
251 count--;
252 if (!count) {
253 pr_err_ratelimited("RWP timeout, gone fishing\n");
254 return;
255 }
256 cpu_relax();
257 udelay(1);
2c542426 258 }
021f6537
MZ
259}
260
261/* Wait for completion of a distributor change */
262static void gic_dist_wait_for_rwp(void)
263{
0df66645 264 gic_do_wait_for_rwp(gic_data.dist_base, GICD_CTLR_RWP);
021f6537
MZ
265}
266
267/* Wait for completion of a redistributor change */
268static void gic_redist_wait_for_rwp(void)
269{
0df66645 270 gic_do_wait_for_rwp(gic_data_rdist_rd_base(), GICR_CTLR_RWP);
021f6537
MZ
271}
272
7936e914 273#ifdef CONFIG_ARM64
6d4e11c5
RR
274
275static u64 __maybe_unused gic_read_iar(void)
276{
a4023f68 277 if (cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_23154))
6d4e11c5
RR
278 return gic_read_iar_cavium_thunderx();
279 else
280 return gic_read_iar_common();
281}
7936e914 282#endif
021f6537 283
a2c22510 284static void gic_enable_redist(bool enable)
021f6537
MZ
285{
286 void __iomem *rbase;
287 u32 count = 1000000; /* 1s! */
288 u32 val;
289
9c8114c2
SK
290 if (gic_data.flags & FLAGS_WORKAROUND_GICR_WAKER_MSM8996)
291 return;
292
021f6537
MZ
293 rbase = gic_data_rdist_rd_base();
294
021f6537 295 val = readl_relaxed(rbase + GICR_WAKER);
a2c22510
SH
296 if (enable)
297 /* Wake up this CPU redistributor */
298 val &= ~GICR_WAKER_ProcessorSleep;
299 else
300 val |= GICR_WAKER_ProcessorSleep;
021f6537
MZ
301 writel_relaxed(val, rbase + GICR_WAKER);
302
a2c22510
SH
303 if (!enable) { /* Check that GICR_WAKER is writeable */
304 val = readl_relaxed(rbase + GICR_WAKER);
305 if (!(val & GICR_WAKER_ProcessorSleep))
306 return; /* No PM support in this redistributor */
307 }
308
d102eb5c 309 while (--count) {
a2c22510 310 val = readl_relaxed(rbase + GICR_WAKER);
cf1d9d11 311 if (enable ^ (bool)(val & GICR_WAKER_ChildrenAsleep))
a2c22510 312 break;
021f6537
MZ
313 cpu_relax();
314 udelay(1);
2c542426 315 }
a2c22510
SH
316 if (!count)
317 pr_err_ratelimited("redistributor failed to %s...\n",
318 enable ? "wakeup" : "sleep");
021f6537
MZ
319}
320
321/*
322 * Routines to disable, enable, EOI and route interrupts
323 */
e91b036e
MZ
324static u32 convert_offset_index(struct irq_data *d, u32 offset, u32 *index)
325{
326 switch (get_intid_range(d)) {
70a29c32 327 case SGI_RANGE:
e91b036e
MZ
328 case PPI_RANGE:
329 case SPI_RANGE:
330 *index = d->hwirq;
331 return offset;
5f51f803
MZ
332 case EPPI_RANGE:
333 /*
334 * Contrary to the ESPI range, the EPPI range is contiguous
335 * to the PPI range in the registers, so let's adjust the
336 * displacement accordingly. Consistency is overrated.
337 */
338 *index = d->hwirq - EPPI_BASE_INTID + 32;
339 return offset;
211bddd2
MZ
340 case ESPI_RANGE:
341 *index = d->hwirq - ESPI_BASE_INTID;
342 switch (offset) {
343 case GICD_ISENABLER:
344 return GICD_ISENABLERnE;
345 case GICD_ICENABLER:
346 return GICD_ICENABLERnE;
347 case GICD_ISPENDR:
348 return GICD_ISPENDRnE;
349 case GICD_ICPENDR:
350 return GICD_ICPENDRnE;
351 case GICD_ISACTIVER:
352 return GICD_ISACTIVERnE;
353 case GICD_ICACTIVER:
354 return GICD_ICACTIVERnE;
355 case GICD_IPRIORITYR:
356 return GICD_IPRIORITYRnE;
357 case GICD_ICFGR:
358 return GICD_ICFGRnE;
359 case GICD_IROUTER:
360 return GICD_IROUTERnE;
361 default:
362 break;
363 }
364 break;
e91b036e
MZ
365 default:
366 break;
367 }
368
369 WARN_ON(1);
370 *index = d->hwirq;
371 return offset;
372}
373
b594c6e2
MZ
374static int gic_peek_irq(struct irq_data *d, u32 offset)
375{
b594c6e2 376 void __iomem *base;
e91b036e
MZ
377 u32 index, mask;
378
379 offset = convert_offset_index(d, offset, &index);
380 mask = 1 << (index % 32);
b594c6e2
MZ
381
382 if (gic_irq_in_rdist(d))
383 base = gic_data_rdist_sgi_base();
384 else
35727af2 385 base = gic_dist_base_alias(d);
b594c6e2 386
e91b036e 387 return !!(readl_relaxed(base + offset + (index / 32) * 4) & mask);
b594c6e2
MZ
388}
389
021f6537
MZ
390static void gic_poke_irq(struct irq_data *d, u32 offset)
391{
021f6537 392 void __iomem *base;
e91b036e
MZ
393 u32 index, mask;
394
395 offset = convert_offset_index(d, offset, &index);
396 mask = 1 << (index % 32);
021f6537 397
63f13483 398 if (gic_irq_in_rdist(d))
021f6537 399 base = gic_data_rdist_sgi_base();
63f13483 400 else
021f6537 401 base = gic_data.dist_base;
021f6537 402
e91b036e 403 writel_relaxed(mask, base + offset + (index / 32) * 4);
021f6537
MZ
404}
405
021f6537
MZ
406static void gic_mask_irq(struct irq_data *d)
407{
408 gic_poke_irq(d, GICD_ICENABLER);
63f13483
MZ
409 if (gic_irq_in_rdist(d))
410 gic_redist_wait_for_rwp();
411 else
412 gic_dist_wait_for_rwp();
021f6537
MZ
413}
414
0b6a3da9
MZ
415static void gic_eoimode1_mask_irq(struct irq_data *d)
416{
417 gic_mask_irq(d);
530bf353
MZ
418 /*
419 * When masking a forwarded interrupt, make sure it is
420 * deactivated as well.
421 *
422 * This ensures that an interrupt that is getting
423 * disabled/masked will not get "stuck", because there is
424 * noone to deactivate it (guest is being terminated).
425 */
4df7f54d 426 if (irqd_is_forwarded_to_vcpu(d))
530bf353 427 gic_poke_irq(d, GICD_ICACTIVER);
0b6a3da9
MZ
428}
429
021f6537
MZ
430static void gic_unmask_irq(struct irq_data *d)
431{
432 gic_poke_irq(d, GICD_ISENABLER);
433}
434
d98d0a99
JT
435static inline bool gic_supports_nmi(void)
436{
437 return IS_ENABLED(CONFIG_ARM64_PSEUDO_NMI) &&
438 static_branch_likely(&supports_pseudo_nmis);
439}
440
b594c6e2
MZ
441static int gic_irq_set_irqchip_state(struct irq_data *d,
442 enum irqchip_irq_state which, bool val)
443{
444 u32 reg;
445
64b499d8 446 if (d->hwirq >= 8192) /* SGI/PPI/SPI only */
b594c6e2
MZ
447 return -EINVAL;
448
449 switch (which) {
450 case IRQCHIP_STATE_PENDING:
451 reg = val ? GICD_ISPENDR : GICD_ICPENDR;
452 break;
453
454 case IRQCHIP_STATE_ACTIVE:
455 reg = val ? GICD_ISACTIVER : GICD_ICACTIVER;
456 break;
457
458 case IRQCHIP_STATE_MASKED:
63f13483
MZ
459 if (val) {
460 gic_mask_irq(d);
461 return 0;
462 }
463 reg = GICD_ISENABLER;
b594c6e2
MZ
464 break;
465
466 default:
467 return -EINVAL;
468 }
469
470 gic_poke_irq(d, reg);
471 return 0;
472}
473
474static int gic_irq_get_irqchip_state(struct irq_data *d,
475 enum irqchip_irq_state which, bool *val)
476{
211bddd2 477 if (d->hwirq >= 8192) /* PPI/SPI only */
b594c6e2
MZ
478 return -EINVAL;
479
480 switch (which) {
481 case IRQCHIP_STATE_PENDING:
482 *val = gic_peek_irq(d, GICD_ISPENDR);
483 break;
484
485 case IRQCHIP_STATE_ACTIVE:
486 *val = gic_peek_irq(d, GICD_ISACTIVER);
487 break;
488
489 case IRQCHIP_STATE_MASKED:
490 *val = !gic_peek_irq(d, GICD_ISENABLER);
491 break;
492
493 default:
494 return -EINVAL;
495 }
496
497 return 0;
498}
499
101b35f7
JT
500static void gic_irq_set_prio(struct irq_data *d, u8 prio)
501{
502 void __iomem *base = gic_dist_base(d);
e91b036e 503 u32 offset, index;
101b35f7 504
e91b036e
MZ
505 offset = convert_offset_index(d, GICD_IPRIORITYR, &index);
506
507 writeb_relaxed(prio, base + offset + index);
101b35f7
JT
508}
509
bfa80ee9 510static u32 __gic_get_ppi_index(irq_hw_number_t hwirq)
81a43273 511{
bfa80ee9 512 switch (__get_intid_range(hwirq)) {
81a43273 513 case PPI_RANGE:
bfa80ee9 514 return hwirq - 16;
5f51f803 515 case EPPI_RANGE:
bfa80ee9 516 return hwirq - EPPI_BASE_INTID + 16;
81a43273
MZ
517 default:
518 unreachable();
519 }
520}
521
bfa80ee9
JM
522static u32 gic_get_ppi_index(struct irq_data *d)
523{
524 return __gic_get_ppi_index(d->hwirq);
525}
526
101b35f7
JT
527static int gic_irq_nmi_setup(struct irq_data *d)
528{
529 struct irq_desc *desc = irq_to_desc(d->irq);
530
531 if (!gic_supports_nmi())
532 return -EINVAL;
533
534 if (gic_peek_irq(d, GICD_ISENABLER)) {
535 pr_err("Cannot set NMI property of enabled IRQ %u\n", d->irq);
536 return -EINVAL;
537 }
538
539 /*
540 * A secondary irq_chip should be in charge of LPI request,
541 * it should not be possible to get there
542 */
543 if (WARN_ON(gic_irq(d) >= 8192))
544 return -EINVAL;
545
546 /* desc lock should already be held */
81a43273
MZ
547 if (gic_irq_in_rdist(d)) {
548 u32 idx = gic_get_ppi_index(d);
549
101b35f7 550 /* Setting up PPI as NMI, only switch handler for first NMI */
81a43273
MZ
551 if (!refcount_inc_not_zero(&ppi_nmi_refs[idx])) {
552 refcount_set(&ppi_nmi_refs[idx], 1);
101b35f7
JT
553 desc->handle_irq = handle_percpu_devid_fasteoi_nmi;
554 }
555 } else {
556 desc->handle_irq = handle_fasteoi_nmi;
557 }
558
559 gic_irq_set_prio(d, GICD_INT_NMI_PRI);
560
561 return 0;
562}
563
564static void gic_irq_nmi_teardown(struct irq_data *d)
565{
566 struct irq_desc *desc = irq_to_desc(d->irq);
567
568 if (WARN_ON(!gic_supports_nmi()))
569 return;
570
571 if (gic_peek_irq(d, GICD_ISENABLER)) {
572 pr_err("Cannot set NMI property of enabled IRQ %u\n", d->irq);
573 return;
574 }
575
576 /*
577 * A secondary irq_chip should be in charge of LPI request,
578 * it should not be possible to get there
579 */
580 if (WARN_ON(gic_irq(d) >= 8192))
581 return;
582
583 /* desc lock should already be held */
81a43273
MZ
584 if (gic_irq_in_rdist(d)) {
585 u32 idx = gic_get_ppi_index(d);
586
101b35f7 587 /* Tearing down NMI, only switch handler for last NMI */
81a43273 588 if (refcount_dec_and_test(&ppi_nmi_refs[idx]))
101b35f7
JT
589 desc->handle_irq = handle_percpu_devid_irq;
590 } else {
591 desc->handle_irq = handle_fasteoi_irq;
592 }
593
594 gic_irq_set_prio(d, GICD_INT_DEF_PRI);
595}
596
6fe5c68e
LP
597static bool gic_arm64_erratum_2941627_needed(struct irq_data *d)
598{
599 enum gic_intid_range range;
600
601 if (!static_branch_unlikely(&gic_arm64_2941627_erratum))
602 return false;
603
604 range = get_intid_range(d);
605
606 /*
607 * The workaround is needed if the IRQ is an SPI and
608 * the target cpu is different from the one we are
609 * executing on.
610 */
611 return (range == SPI_RANGE || range == ESPI_RANGE) &&
612 !cpumask_test_cpu(raw_smp_processor_id(),
613 irq_data_get_effective_affinity_mask(d));
614}
615
021f6537
MZ
616static void gic_eoi_irq(struct irq_data *d)
617{
6efb5092
MR
618 write_gicreg(gic_irq(d), ICC_EOIR1_EL1);
619 isb();
6fe5c68e
LP
620
621 if (gic_arm64_erratum_2941627_needed(d)) {
622 /*
623 * Make sure the GIC stream deactivate packet
624 * issued by ICC_EOIR1_EL1 has completed before
625 * deactivating through GICD_IACTIVER.
626 */
627 dsb(sy);
628 gic_poke_irq(d, GICD_ICACTIVER);
629 }
021f6537
MZ
630}
631
0b6a3da9
MZ
632static void gic_eoimode1_eoi_irq(struct irq_data *d)
633{
634 /*
530bf353
MZ
635 * No need to deactivate an LPI, or an interrupt that
636 * is is getting forwarded to a vcpu.
0b6a3da9 637 */
4df7f54d 638 if (gic_irq(d) >= 8192 || irqd_is_forwarded_to_vcpu(d))
0b6a3da9 639 return;
6fe5c68e
LP
640
641 if (!gic_arm64_erratum_2941627_needed(d))
642 gic_write_dir(gic_irq(d));
643 else
644 gic_poke_irq(d, GICD_ICACTIVER);
0b6a3da9
MZ
645}
646
021f6537
MZ
647static int gic_set_type(struct irq_data *d, unsigned int type)
648{
5f51f803 649 enum gic_intid_range range;
021f6537 650 unsigned int irq = gic_irq(d);
021f6537 651 void __iomem *base;
e91b036e 652 u32 offset, index;
13d22e2e 653 int ret;
021f6537 654
5f51f803
MZ
655 range = get_intid_range(d);
656
64b499d8
MZ
657 /* Interrupt configuration for SGIs can't be changed */
658 if (range == SGI_RANGE)
659 return type != IRQ_TYPE_EDGE_RISING ? -EINVAL : 0;
660
fb7e7deb 661 /* SPIs have restrictions on the supported types */
5f51f803
MZ
662 if ((range == SPI_RANGE || range == ESPI_RANGE) &&
663 type != IRQ_TYPE_LEVEL_HIGH && type != IRQ_TYPE_EDGE_RISING)
021f6537
MZ
664 return -EINVAL;
665
63f13483 666 if (gic_irq_in_rdist(d))
021f6537 667 base = gic_data_rdist_sgi_base();
63f13483 668 else
35727af2 669 base = gic_dist_base_alias(d);
021f6537 670
e91b036e 671 offset = convert_offset_index(d, GICD_ICFGR, &index);
13d22e2e 672
63f13483 673 ret = gic_configure_irq(index, type, base + offset, NULL);
5f51f803 674 if (ret && (range == PPI_RANGE || range == EPPI_RANGE)) {
13d22e2e 675 /* Misconfigured PPIs are usually not fatal */
5f51f803 676 pr_warn("GIC: PPI INTID%d is secure or misconfigured\n", irq);
13d22e2e
MZ
677 ret = 0;
678 }
679
680 return ret;
021f6537
MZ
681}
682
530bf353
MZ
683static int gic_irq_set_vcpu_affinity(struct irq_data *d, void *vcpu)
684{
64b499d8
MZ
685 if (get_intid_range(d) == SGI_RANGE)
686 return -EINVAL;
687
4df7f54d
TG
688 if (vcpu)
689 irqd_set_forwarded_to_vcpu(d);
690 else
691 irqd_clr_forwarded_to_vcpu(d);
530bf353
MZ
692 return 0;
693}
694
3c65cbb7 695static u64 gic_cpu_to_affinity(int cpu)
021f6537 696{
3c65cbb7 697 u64 mpidr = cpu_logical_map(cpu);
021f6537
MZ
698 u64 aff;
699
b4d81fab 700 /* ASR8601 needs to have its affinities shifted down... */
701 if (unlikely(gic_data.flags & FLAGS_WORKAROUND_ASR_ERRATUM_8601001))
702 mpidr = (MPIDR_AFFINITY_LEVEL(mpidr, 1) |
703 (MPIDR_AFFINITY_LEVEL(mpidr, 2) << 8));
704
f6c86a41 705 aff = ((u64)MPIDR_AFFINITY_LEVEL(mpidr, 3) << 32 |
021f6537
MZ
706 MPIDR_AFFINITY_LEVEL(mpidr, 2) << 16 |
707 MPIDR_AFFINITY_LEVEL(mpidr, 1) << 8 |
708 MPIDR_AFFINITY_LEVEL(mpidr, 0));
709
710 return aff;
711}
712
f32c9266
JT
713static void gic_deactivate_unhandled(u32 irqnr)
714{
715 if (static_branch_likely(&supports_deactivate_key)) {
716 if (irqnr < 8192)
717 gic_write_dir(irqnr);
718 } else {
6efb5092
MR
719 write_gicreg(irqnr, ICC_EOIR1_EL1);
720 isb();
f32c9266
JT
721 }
722}
723
6efb5092
MR
724/*
725 * Follow a read of the IAR with any HW maintenance that needs to happen prior
726 * to invoking the relevant IRQ handler. We must do two things:
727 *
728 * (1) Ensure instruction ordering between a read of IAR and subsequent
729 * instructions in the IRQ handler using an ISB.
730 *
731 * It is possible for the IAR to report an IRQ which was signalled *after*
732 * the CPU took an IRQ exception as multiple interrupts can race to be
733 * recognized by the GIC, earlier interrupts could be withdrawn, and/or
734 * later interrupts could be prioritized by the GIC.
735 *
736 * For devices which are tightly coupled to the CPU, such as PMUs, a
737 * context synchronization event is necessary to ensure that system
738 * register state is not stale, as these may have been indirectly written
739 * *after* exception entry.
740 *
741 * (2) Deactivate the interrupt when EOI mode 1 is in use.
742 */
743static inline void gic_complete_ack(u32 irqnr)
f32c9266 744{
f32c9266 745 if (static_branch_likely(&supports_deactivate_key))
6efb5092 746 write_gicreg(irqnr, ICC_EOIR1_EL1);
17ce302f 747
6efb5092 748 isb();
f32c9266
JT
749}
750
614ab80c 751static bool gic_rpr_is_nmi_prio(void)
382e6e17 752{
614ab80c
MR
753 if (!gic_supports_nmi())
754 return false;
f32c9266 755
614ab80c
MR
756 return unlikely(gic_read_rpr() == GICD_INT_RPR_PRI(GICD_INT_NMI_PRI));
757}
382e6e17 758
614ab80c
MR
759static bool gic_irqnr_is_special(u32 irqnr)
760{
761 return irqnr >= 1020 && irqnr <= 1023;
762}
382e6e17 763
614ab80c
MR
764static void __gic_handle_irq(u32 irqnr, struct pt_regs *regs)
765{
766 if (gic_irqnr_is_special(irqnr))
767 return;
382e6e17 768
6efb5092 769 gic_complete_ack(irqnr);
382e6e17 770
614ab80c
MR
771 if (generic_handle_domain_irq(gic_data.domain, irqnr)) {
772 WARN_ONCE(true, "Unexpected interrupt (irqnr %u)\n", irqnr);
f32c9266 773 gic_deactivate_unhandled(irqnr);
382e6e17 774 }
f32c9266
JT
775}
776
614ab80c 777static void __gic_handle_nmi(u32 irqnr, struct pt_regs *regs)
382e6e17 778{
614ab80c
MR
779 if (gic_irqnr_is_special(irqnr))
780 return;
382e6e17 781
614ab80c 782 gic_complete_ack(irqnr);
382e6e17 783
614ab80c
MR
784 if (generic_handle_domain_nmi(gic_data.domain, irqnr)) {
785 WARN_ONCE(true, "Unexpected pseudo-NMI (irqnr %u)\n", irqnr);
786 gic_deactivate_unhandled(irqnr);
382e6e17 787 }
382e6e17
MZ
788}
789
614ab80c
MR
790/*
791 * An exception has been taken from a context with IRQs enabled, and this could
792 * be an IRQ or an NMI.
793 *
794 * The entry code called us with DAIF.IF set to keep NMIs masked. We must clear
795 * DAIF.IF (and update ICC_PMR_EL1 to mask regular IRQs) prior to returning,
796 * after handling any NMI but before handling any IRQ.
797 *
798 * The entry code has performed IRQ entry, and if an NMI is detected we must
799 * perform NMI entry/exit around invoking the handler.
800 */
801static void __gic_handle_irq_from_irqson(struct pt_regs *regs)
021f6537 802{
614ab80c 803 bool is_nmi;
f6c86a41 804 u32 irqnr;
021f6537 805
614ab80c 806 irqnr = gic_read_iar();
021f6537 807
614ab80c 808 is_nmi = gic_rpr_is_nmi_prio();
a97709f5 809
614ab80c
MR
810 if (is_nmi) {
811 nmi_enter();
812 __gic_handle_nmi(irqnr, regs);
813 nmi_exit();
f32c9266
JT
814 }
815
3f1f3234
JT
816 if (gic_prio_masking_enabled()) {
817 gic_pmr_mask_irqs();
818 gic_arch_enable_irqs();
819 }
820
614ab80c
MR
821 if (!is_nmi)
822 __gic_handle_irq(irqnr, regs);
823}
64b499d8 824
614ab80c
MR
825/*
826 * An exception has been taken from a context with IRQs disabled, which can only
827 * be an NMI.
828 *
829 * The entry code called us with DAIF.IF set to keep NMIs masked. We must leave
830 * DAIF.IF (and ICC_PMR_EL1) unchanged.
831 *
832 * The entry code has performed NMI entry.
833 */
834static void __gic_handle_irq_from_irqsoff(struct pt_regs *regs)
835{
836 u64 pmr;
837 u32 irqnr;
838
839 /*
840 * We were in a context with IRQs disabled. However, the
841 * entry code has set PMR to a value that allows any
842 * interrupt to be acknowledged, and not just NMIs. This can
843 * lead to surprising effects if the NMI has been retired in
844 * the meantime, and that there is an IRQ pending. The IRQ
845 * would then be taken in NMI context, something that nobody
846 * wants to debug twice.
847 *
848 * Until we sort this, drop PMR again to a level that will
849 * actually only allow NMIs before reading IAR, and then
850 * restore it to what it was.
851 */
852 pmr = gic_read_pmr();
853 gic_pmr_mask_irqs();
854 isb();
855 irqnr = gic_read_iar();
856 gic_write_pmr(pmr);
857
858 __gic_handle_nmi(irqnr, regs);
859}
860
861static asmlinkage void __exception_irq_entry gic_handle_irq(struct pt_regs *regs)
862{
863 if (unlikely(gic_supports_nmi() && !interrupts_enabled(regs)))
864 __gic_handle_irq_from_irqsoff(regs);
865 else
866 __gic_handle_irq_from_irqson(regs);
021f6537
MZ
867}
868
b5cf6073
JT
869static u32 gic_get_pribits(void)
870{
871 u32 pribits;
872
873 pribits = gic_read_ctlr();
874 pribits &= ICC_CTLR_EL1_PRI_BITS_MASK;
875 pribits >>= ICC_CTLR_EL1_PRI_BITS_SHIFT;
876 pribits++;
877
878 return pribits;
879}
880
881static bool gic_has_group0(void)
882{
883 u32 val;
e7932188
JT
884 u32 old_pmr;
885
886 old_pmr = gic_read_pmr();
b5cf6073
JT
887
888 /*
889 * Let's find out if Group0 is under control of EL3 or not by
890 * setting the highest possible, non-zero priority in PMR.
891 *
892 * If SCR_EL3.FIQ is set, the priority gets shifted down in
893 * order for the CPU interface to set bit 7, and keep the
894 * actual priority in the non-secure range. In the process, it
895 * looses the least significant bit and the actual priority
896 * becomes 0x80. Reading it back returns 0, indicating that
897 * we're don't have access to Group0.
898 */
899 gic_write_pmr(BIT(8 - gic_get_pribits()));
900 val = gic_read_pmr();
901
e7932188
JT
902 gic_write_pmr(old_pmr);
903
b5cf6073
JT
904 return val != 0;
905}
906
021f6537
MZ
907static void __init gic_dist_init(void)
908{
909 unsigned int i;
910 u64 affinity;
911 void __iomem *base = gic_data.dist_base;
0b04758b 912 u32 val;
021f6537
MZ
913
914 /* Disable the distributor */
915 writel_relaxed(0, base + GICD_CTLR);
916 gic_dist_wait_for_rwp();
917
7c9b9730
MZ
918 /*
919 * Configure SPIs as non-secure Group-1. This will only matter
920 * if the GIC only has a single security state. This will not
921 * do the right thing if the kernel is running in secure mode,
922 * but that's not the intended use case anyway.
923 */
211bddd2 924 for (i = 32; i < GIC_LINE_NR; i += 32)
7c9b9730
MZ
925 writel_relaxed(~0, base + GICD_IGROUPR + i / 8);
926
211bddd2
MZ
927 /* Extended SPI range, not handled by the GICv2/GICv3 common code */
928 for (i = 0; i < GIC_ESPI_NR; i += 32) {
929 writel_relaxed(~0U, base + GICD_ICENABLERnE + i / 8);
930 writel_relaxed(~0U, base + GICD_ICACTIVERnE + i / 8);
931 }
932
933 for (i = 0; i < GIC_ESPI_NR; i += 32)
934 writel_relaxed(~0U, base + GICD_IGROUPRnE + i / 8);
935
936 for (i = 0; i < GIC_ESPI_NR; i += 16)
937 writel_relaxed(0, base + GICD_ICFGRnE + i / 4);
938
939 for (i = 0; i < GIC_ESPI_NR; i += 4)
940 writel_relaxed(GICD_INT_DEF_PRI_X4, base + GICD_IPRIORITYRnE + i);
941
63f13483
MZ
942 /* Now do the common stuff */
943 gic_dist_config(base, GIC_LINE_NR, NULL);
021f6537 944
0b04758b
MZ
945 val = GICD_CTLR_ARE_NS | GICD_CTLR_ENABLE_G1A | GICD_CTLR_ENABLE_G1;
946 if (gic_data.rdists.gicd_typer2 & GICD_TYPER2_nASSGIcap) {
947 pr_info("Enabling SGIs without active state\n");
948 val |= GICD_CTLR_nASSGIreq;
949 }
950
63f13483 951 /* Enable distributor with ARE, Group1, and wait for it to drain */
0b04758b 952 writel_relaxed(val, base + GICD_CTLR);
63f13483 953 gic_dist_wait_for_rwp();
021f6537
MZ
954
955 /*
956 * Set all global interrupts to the boot CPU only. ARE must be
957 * enabled.
958 */
3c65cbb7 959 affinity = gic_cpu_to_affinity(smp_processor_id());
211bddd2 960 for (i = 32; i < GIC_LINE_NR; i++)
72c97126 961 gic_write_irouter(affinity, base + GICD_IROUTER + i * 8);
211bddd2
MZ
962
963 for (i = 0; i < GIC_ESPI_NR; i++)
964 gic_write_irouter(affinity, base + GICD_IROUTERnE + i * 8);
021f6537
MZ
965}
966
0d94ded2 967static int gic_iterate_rdists(int (*fn)(struct redist_region *, void __iomem *))
021f6537 968{
0d94ded2 969 int ret = -ENODEV;
021f6537
MZ
970 int i;
971
f5c1434c
MZ
972 for (i = 0; i < gic_data.nr_redist_regions; i++) {
973 void __iomem *ptr = gic_data.redist_regions[i].redist_base;
0d94ded2 974 u64 typer;
021f6537
MZ
975 u32 reg;
976
977 reg = readl_relaxed(ptr + GICR_PIDR2) & GIC_PIDR2_ARCH_MASK;
978 if (reg != GIC_PIDR2_ARCH_GICv3 &&
979 reg != GIC_PIDR2_ARCH_GICv4) { /* We're in trouble... */
980 pr_warn("No redistributor present @%p\n", ptr);
981 break;
982 }
983
984 do {
72c97126 985 typer = gic_read_typer(ptr + GICR_TYPER);
0d94ded2
MZ
986 ret = fn(gic_data.redist_regions + i, ptr);
987 if (!ret)
021f6537 988 return 0;
021f6537 989
b70fb7af
TN
990 if (gic_data.redist_regions[i].single_redist)
991 break;
992
021f6537
MZ
993 if (gic_data.redist_stride) {
994 ptr += gic_data.redist_stride;
995 } else {
996 ptr += SZ_64K * 2; /* Skip RD_base + SGI_base */
997 if (typer & GICR_TYPER_VLPIS)
998 ptr += SZ_64K * 2; /* Skip VLPI_base + reserved page */
999 }
1000 } while (!(typer & GICR_TYPER_LAST));
1001 }
1002
0d94ded2
MZ
1003 return ret ? -ENODEV : 0;
1004}
1005
1006static int __gic_populate_rdist(struct redist_region *region, void __iomem *ptr)
1007{
3c65cbb7 1008 unsigned long mpidr;
0d94ded2
MZ
1009 u64 typer;
1010 u32 aff;
1011
1012 /*
1013 * Convert affinity to a 32bit value that can be matched to
1014 * GICR_TYPER bits [63:32].
1015 */
3c65cbb7
MZ
1016 mpidr = gic_cpu_to_affinity(smp_processor_id());
1017
0d94ded2
MZ
1018 aff = (MPIDR_AFFINITY_LEVEL(mpidr, 3) << 24 |
1019 MPIDR_AFFINITY_LEVEL(mpidr, 2) << 16 |
1020 MPIDR_AFFINITY_LEVEL(mpidr, 1) << 8 |
1021 MPIDR_AFFINITY_LEVEL(mpidr, 0));
1022
1023 typer = gic_read_typer(ptr + GICR_TYPER);
1024 if ((typer >> 32) == aff) {
1025 u64 offset = ptr - region->redist_base;
9058a4e9 1026 raw_spin_lock_init(&gic_data_rdist()->rd_lock);
0d94ded2
MZ
1027 gic_data_rdist_rd_base() = ptr;
1028 gic_data_rdist()->phys_base = region->phys_base + offset;
1029
1030 pr_info("CPU%d: found redistributor %lx region %d:%pa\n",
1031 smp_processor_id(), mpidr,
1032 (int)(region - gic_data.redist_regions),
1033 &gic_data_rdist()->phys_base);
1034 return 0;
1035 }
1036
1037 /* Try next one */
1038 return 1;
1039}
1040
1041static int gic_populate_rdist(void)
1042{
1043 if (gic_iterate_rdists(__gic_populate_rdist) == 0)
1044 return 0;
1045
021f6537 1046 /* We couldn't even deal with ourselves... */
f6c86a41 1047 WARN(true, "CPU%d: mpidr %lx has no re-distributor!\n",
0d94ded2
MZ
1048 smp_processor_id(),
1049 (unsigned long)cpu_logical_map(smp_processor_id()));
021f6537
MZ
1050 return -ENODEV;
1051}
1052
1a60e1e6
MZ
1053static int __gic_update_rdist_properties(struct redist_region *region,
1054 void __iomem *ptr)
0edc23ea
MZ
1055{
1056 u64 typer = gic_read_typer(ptr + GICR_TYPER);
a837ed36 1057 u32 ctlr = readl_relaxed(ptr + GICR_CTLR);
b25319d2 1058
4d968297 1059 /* Boot-time cleanup */
79a7f77b
MZ
1060 if ((typer & GICR_TYPER_VLPIS) && (typer & GICR_TYPER_RVPEID)) {
1061 u64 val;
1062
1063 /* Deactivate any present vPE */
1064 val = gicr_read_vpendbaser(ptr + SZ_128K + GICR_VPENDBASER);
1065 if (val & GICR_VPENDBASER_Valid)
1066 gicr_write_vpendbaser(GICR_VPENDBASER_PendingLast,
1067 ptr + SZ_128K + GICR_VPENDBASER);
1068
1069 /* Mark the VPE table as invalid */
1070 val = gicr_read_vpropbaser(ptr + SZ_128K + GICR_VPROPBASER);
1071 val &= ~GICR_VPROPBASER_4_1_VALID;
1072 gicr_write_vpropbaser(val, ptr + SZ_128K + GICR_VPROPBASER);
1073 }
1074
0edc23ea 1075 gic_data.rdists.has_vlpis &= !!(typer & GICR_TYPER_VLPIS);
b25319d2 1076
a837ed36
MZ
1077 /*
1078 * TYPER.RVPEID implies some form of DirectLPI, no matter what the
1079 * doc says... :-/ And CTLR.IR implies another subset of DirectLPI
1080 * that the ITS driver can make use of for LPIs (and not VLPIs).
1081 *
1082 * These are 3 different ways to express the same thing, depending
1083 * on the revision of the architecture and its relaxations over
1084 * time. Just group them under the 'direct_lpi' banner.
1085 */
b25319d2
MZ
1086 gic_data.rdists.has_rvpeid &= !!(typer & GICR_TYPER_RVPEID);
1087 gic_data.rdists.has_direct_lpi &= (!!(typer & GICR_TYPER_DirectLPIS) |
a837ed36 1088 !!(ctlr & GICR_CTLR_IR) |
b25319d2 1089 gic_data.rdists.has_rvpeid);
96806229 1090 gic_data.rdists.has_vpend_valid_dirty &= !!(typer & GICR_TYPER_DIRTY);
b25319d2
MZ
1091
1092 /* Detect non-sensical configurations */
1093 if (WARN_ON_ONCE(gic_data.rdists.has_rvpeid && !gic_data.rdists.has_vlpis)) {
1094 gic_data.rdists.has_direct_lpi = false;
1095 gic_data.rdists.has_vlpis = false;
1096 gic_data.rdists.has_rvpeid = false;
1097 }
1098
5f51f803 1099 gic_data.ppi_nr = min(GICR_TYPER_NR_PPIS(typer), gic_data.ppi_nr);
0edc23ea
MZ
1100
1101 return 1;
1102}
1103
1a60e1e6 1104static void gic_update_rdist_properties(void)
0edc23ea 1105{
1a60e1e6
MZ
1106 gic_data.ppi_nr = UINT_MAX;
1107 gic_iterate_rdists(__gic_update_rdist_properties);
1108 if (WARN_ON(gic_data.ppi_nr == UINT_MAX))
1109 gic_data.ppi_nr = 0;
a837ed36
MZ
1110 pr_info("GICv3 features: %d PPIs%s%s\n",
1111 gic_data.ppi_nr,
1112 gic_data.has_rss ? ", RSS" : "",
1113 gic_data.rdists.has_direct_lpi ? ", DirectLPI" : "");
1114
96806229
MZ
1115 if (gic_data.rdists.has_vlpis)
1116 pr_info("GICv4 features: %s%s%s\n",
1117 gic_data.rdists.has_direct_lpi ? "DirectLPI " : "",
1118 gic_data.rdists.has_rvpeid ? "RVPEID " : "",
1119 gic_data.rdists.has_vpend_valid_dirty ? "Valid+Dirty " : "");
0edc23ea
MZ
1120}
1121
d98d0a99
JT
1122/* Check whether it's single security state view */
1123static inline bool gic_dist_security_disabled(void)
1124{
1125 return readl_relaxed(gic_data.dist_base + GICD_CTLR) & GICD_CTLR_DS;
1126}
1127
3708d52f
SH
1128static void gic_cpu_sys_reg_init(void)
1129{
eda0d04a 1130 int i, cpu = smp_processor_id();
3c65cbb7 1131 u64 mpidr = gic_cpu_to_affinity(cpu);
eda0d04a 1132 u64 need_rss = MPIDR_RS(mpidr);
33625282 1133 bool group0;
b5cf6073 1134 u32 pribits;
eda0d04a 1135
7cabd008
MZ
1136 /*
1137 * Need to check that the SRE bit has actually been set. If
1138 * not, it means that SRE is disabled at EL2. We're going to
1139 * die painfully, and there is nothing we can do about it.
1140 *
1141 * Kindly inform the luser.
1142 */
1143 if (!gic_enable_sre())
1144 pr_err("GIC: unable to set SRE (disabled at EL2), panic ahead\n");
3708d52f 1145
b5cf6073 1146 pribits = gic_get_pribits();
33625282 1147
b5cf6073 1148 group0 = gic_has_group0();
33625282 1149
3708d52f 1150 /* Set priority mask register */
d98d0a99 1151 if (!gic_prio_masking_enabled()) {
e7932188 1152 write_gicreg(DEFAULT_PMR_VALUE, ICC_PMR_EL1);
33678059 1153 } else if (gic_supports_nmi()) {
d98d0a99
JT
1154 /*
1155 * Mismatch configuration with boot CPU, the system is likely
1156 * to die as interrupt masking will not work properly on all
1157 * CPUs
33678059
AE
1158 *
1159 * The boot CPU calls this function before enabling NMI support,
1160 * and as a result we'll never see this warning in the boot path
1161 * for that CPU.
d98d0a99 1162 */
33678059
AE
1163 if (static_branch_unlikely(&gic_nonsecure_priorities))
1164 WARN_ON(!group0 || gic_dist_security_disabled());
1165 else
1166 WARN_ON(group0 && !gic_dist_security_disabled());
d98d0a99 1167 }
3708d52f 1168
91ef8442
DT
1169 /*
1170 * Some firmwares hand over to the kernel with the BPR changed from
1171 * its reset value (and with a value large enough to prevent
1172 * any pre-emptive interrupts from working at all). Writing a zero
1173 * to BPR restores is reset value.
1174 */
1175 gic_write_bpr1(0);
1176
d01d3274 1177 if (static_branch_likely(&supports_deactivate_key)) {
0b6a3da9
MZ
1178 /* EOI drops priority only (mode 1) */
1179 gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop);
1180 } else {
1181 /* EOI deactivates interrupt too (mode 0) */
1182 gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop_dir);
1183 }
3708d52f 1184
33625282
MZ
1185 /* Always whack Group0 before Group1 */
1186 if (group0) {
1187 switch(pribits) {
1188 case 8:
1189 case 7:
1190 write_gicreg(0, ICC_AP0R3_EL1);
1191 write_gicreg(0, ICC_AP0R2_EL1);
df561f66 1192 fallthrough;
33625282
MZ
1193 case 6:
1194 write_gicreg(0, ICC_AP0R1_EL1);
df561f66 1195 fallthrough;
33625282
MZ
1196 case 5:
1197 case 4:
1198 write_gicreg(0, ICC_AP0R0_EL1);
1199 }
1200
1201 isb();
1202 }
d6062a6d 1203
33625282 1204 switch(pribits) {
d6062a6d
MZ
1205 case 8:
1206 case 7:
d6062a6d 1207 write_gicreg(0, ICC_AP1R3_EL1);
d6062a6d 1208 write_gicreg(0, ICC_AP1R2_EL1);
df561f66 1209 fallthrough;
d6062a6d 1210 case 6:
d6062a6d 1211 write_gicreg(0, ICC_AP1R1_EL1);
df561f66 1212 fallthrough;
d6062a6d
MZ
1213 case 5:
1214 case 4:
d6062a6d
MZ
1215 write_gicreg(0, ICC_AP1R0_EL1);
1216 }
1217
1218 isb();
1219
3708d52f
SH
1220 /* ... and let's hit the road... */
1221 gic_write_grpen1(1);
eda0d04a
SD
1222
1223 /* Keep the RSS capability status in per_cpu variable */
1224 per_cpu(has_rss, cpu) = !!(gic_read_ctlr() & ICC_CTLR_EL1_RSS);
1225
1226 /* Check all the CPUs have capable of sending SGIs to other CPUs */
1227 for_each_online_cpu(i) {
1228 bool have_rss = per_cpu(has_rss, i) && per_cpu(has_rss, cpu);
1229
3c65cbb7 1230 need_rss |= MPIDR_RS(gic_cpu_to_affinity(i));
eda0d04a
SD
1231 if (need_rss && (!have_rss))
1232 pr_crit("CPU%d (%lx) can't SGI CPU%d (%lx), no RSS\n",
1233 cpu, (unsigned long)mpidr,
3c65cbb7 1234 i, (unsigned long)gic_cpu_to_affinity(i));
eda0d04a
SD
1235 }
1236
1237 /**
1238 * GIC spec says, when ICC_CTLR_EL1.RSS==1 and GICD_TYPER.RSS==0,
1239 * writing ICC_ASGI1R_EL1 register with RS != 0 is a CONSTRAINED
1240 * UNPREDICTABLE choice of :
1241 * - The write is ignored.
1242 * - The RS field is treated as 0.
1243 */
1244 if (need_rss && (!gic_data.has_rss))
1245 pr_crit_once("RSS is required but GICD doesn't support it\n");
3708d52f
SH
1246}
1247
f736d65d
MZ
1248static bool gicv3_nolpi;
1249
1250static int __init gicv3_nolpi_cfg(char *buf)
1251{
5e279739 1252 return kstrtobool(buf, &gicv3_nolpi);
f736d65d
MZ
1253}
1254early_param("irqchip.gicv3_nolpi", gicv3_nolpi_cfg);
1255
da33f31d
MZ
1256static int gic_dist_supports_lpis(void)
1257{
d38a71c5
MZ
1258 return (IS_ENABLED(CONFIG_ARM_GIC_V3_ITS) &&
1259 !!(readl_relaxed(gic_data.dist_base + GICD_TYPER) & GICD_TYPER_LPIS) &&
1260 !gicv3_nolpi);
da33f31d
MZ
1261}
1262
021f6537
MZ
1263static void gic_cpu_init(void)
1264{
1265 void __iomem *rbase;
1a60e1e6 1266 int i;
021f6537
MZ
1267
1268 /* Register ourselves with the rest of the world */
1269 if (gic_populate_rdist())
1270 return;
1271
a2c22510 1272 gic_enable_redist(true);
021f6537 1273
ad5a78d3
MZ
1274 WARN((gic_data.ppi_nr > 16 || GIC_ESPI_NR != 0) &&
1275 !(gic_read_ctlr() & ICC_CTLR_EL1_ExtRange),
1276 "Distributor has extended ranges, but CPU%d doesn't\n",
1277 smp_processor_id());
1278
021f6537
MZ
1279 rbase = gic_data_rdist_sgi_base();
1280
7c9b9730 1281 /* Configure SGIs/PPIs as non-secure Group-1 */
1a60e1e6
MZ
1282 for (i = 0; i < gic_data.ppi_nr + 16; i += 32)
1283 writel_relaxed(~0, rbase + GICR_IGROUPR0 + i / 8);
7c9b9730 1284
1a60e1e6 1285 gic_cpu_config(rbase, gic_data.ppi_nr + 16, gic_redist_wait_for_rwp);
021f6537 1286
3708d52f
SH
1287 /* initialise system registers */
1288 gic_cpu_sys_reg_init();
021f6537
MZ
1289}
1290
1291#ifdef CONFIG_SMP
6670a6d8 1292
eda0d04a
SD
1293#define MPIDR_TO_SGI_RS(mpidr) (MPIDR_RS(mpidr) << ICC_SGI1R_RS_SHIFT)
1294#define MPIDR_TO_SGI_CLUSTER_ID(mpidr) ((mpidr) & ~0xFUL)
1295
6670a6d8 1296static int gic_starting_cpu(unsigned int cpu)
021f6537 1297{
6670a6d8 1298 gic_cpu_init();
d38a71c5
MZ
1299
1300 if (gic_dist_supports_lpis())
1301 its_cpu_init();
1302
6670a6d8 1303 return 0;
021f6537
MZ
1304}
1305
021f6537 1306static u16 gic_compute_target_list(int *base_cpu, const struct cpumask *mask,
f6c86a41 1307 unsigned long cluster_id)
021f6537 1308{
727653d6 1309 int next_cpu, cpu = *base_cpu;
3c65cbb7 1310 unsigned long mpidr;
021f6537
MZ
1311 u16 tlist = 0;
1312
3c65cbb7
MZ
1313 mpidr = gic_cpu_to_affinity(cpu);
1314
021f6537 1315 while (cpu < nr_cpu_ids) {
021f6537
MZ
1316 tlist |= 1 << (mpidr & 0xf);
1317
727653d6
JM
1318 next_cpu = cpumask_next(cpu, mask);
1319 if (next_cpu >= nr_cpu_ids)
021f6537 1320 goto out;
727653d6 1321 cpu = next_cpu;
021f6537 1322
3c65cbb7 1323 mpidr = gic_cpu_to_affinity(cpu);
021f6537 1324
eda0d04a 1325 if (cluster_id != MPIDR_TO_SGI_CLUSTER_ID(mpidr)) {
021f6537
MZ
1326 cpu--;
1327 goto out;
1328 }
1329 }
1330out:
1331 *base_cpu = cpu;
1332 return tlist;
1333}
1334
7e580278
AP
1335#define MPIDR_TO_SGI_AFFINITY(cluster_id, level) \
1336 (MPIDR_AFFINITY_LEVEL(cluster_id, level) \
1337 << ICC_SGI1R_AFFINITY_## level ##_SHIFT)
1338
021f6537
MZ
1339static void gic_send_sgi(u64 cluster_id, u16 tlist, unsigned int irq)
1340{
1341 u64 val;
1342
7e580278
AP
1343 val = (MPIDR_TO_SGI_AFFINITY(cluster_id, 3) |
1344 MPIDR_TO_SGI_AFFINITY(cluster_id, 2) |
1345 irq << ICC_SGI1R_SGI_ID_SHIFT |
1346 MPIDR_TO_SGI_AFFINITY(cluster_id, 1) |
eda0d04a 1347 MPIDR_TO_SGI_RS(cluster_id) |
7e580278 1348 tlist << ICC_SGI1R_TARGET_LIST_SHIFT);
021f6537 1349
b6dd4d83 1350 pr_devel("CPU%d: ICC_SGI1R_EL1 %llx\n", smp_processor_id(), val);
021f6537
MZ
1351 gic_write_sgi1r(val);
1352}
1353
64b499d8 1354static void gic_ipi_send_mask(struct irq_data *d, const struct cpumask *mask)
021f6537
MZ
1355{
1356 int cpu;
1357
64b499d8 1358 if (WARN_ON(d->hwirq >= 16))
021f6537
MZ
1359 return;
1360
1361 /*
1362 * Ensure that stores to Normal memory are visible to the
1363 * other CPUs before issuing the IPI.
1364 */
80e4e1f4 1365 dsb(ishst);
021f6537 1366
f9b531fe 1367 for_each_cpu(cpu, mask) {
3c65cbb7 1368 u64 cluster_id = MPIDR_TO_SGI_CLUSTER_ID(gic_cpu_to_affinity(cpu));
021f6537
MZ
1369 u16 tlist;
1370
1371 tlist = gic_compute_target_list(&cpu, mask, cluster_id);
64b499d8 1372 gic_send_sgi(cluster_id, tlist, d->hwirq);
021f6537
MZ
1373 }
1374
1375 /* Force the above writes to ICC_SGI1R_EL1 to be executed */
1376 isb();
1377}
1378
8a94c1ab 1379static void __init gic_smp_init(void)
021f6537 1380{
64b499d8
MZ
1381 struct irq_fwspec sgi_fwspec = {
1382 .fwnode = gic_data.fwnode,
1383 .param_count = 1,
1384 };
1385 int base_sgi;
1386
6896bcd1 1387 cpuhp_setup_state_nocalls(CPUHP_AP_IRQ_GIC_STARTING,
73c1b41e
TG
1388 "irqchip/arm/gicv3:starting",
1389 gic_starting_cpu, NULL);
64b499d8
MZ
1390
1391 /* Register all 8 non-secure SGIs */
0e2213fe 1392 base_sgi = irq_domain_alloc_irqs(gic_data.domain, 8, NUMA_NO_NODE, &sgi_fwspec);
64b499d8
MZ
1393 if (WARN_ON(base_sgi <= 0))
1394 return;
1395
1396 set_smp_ipi_range(base_sgi, 8);
021f6537
MZ
1397}
1398
1399static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
1400 bool force)
1401{
65a30f8b 1402 unsigned int cpu;
e91b036e 1403 u32 offset, index;
021f6537
MZ
1404 void __iomem *reg;
1405 int enabled;
1406 u64 val;
1407
65a30f8b
SP
1408 if (force)
1409 cpu = cpumask_first(mask_val);
1410 else
1411 cpu = cpumask_any_and(mask_val, cpu_online_mask);
1412
866d7c1b
SP
1413 if (cpu >= nr_cpu_ids)
1414 return -EINVAL;
1415
021f6537
MZ
1416 if (gic_irq_in_rdist(d))
1417 return -EINVAL;
1418
1419 /* If interrupt was enabled, disable it first */
1420 enabled = gic_peek_irq(d, GICD_ISENABLER);
1421 if (enabled)
1422 gic_mask_irq(d);
1423
e91b036e
MZ
1424 offset = convert_offset_index(d, GICD_IROUTER, &index);
1425 reg = gic_dist_base(d) + offset + (index * 8);
3c65cbb7 1426 val = gic_cpu_to_affinity(cpu);
021f6537 1427
72c97126 1428 gic_write_irouter(val, reg);
021f6537
MZ
1429
1430 /*
1431 * If the interrupt was enabled, enabled it again. Otherwise,
1432 * just wait for the distributor to have digested our changes.
1433 */
1434 if (enabled)
1435 gic_unmask_irq(d);
021f6537 1436
956ae91a
MZ
1437 irq_data_update_effective_affinity(d, cpumask_of(cpu));
1438
0fc6fa29 1439 return IRQ_SET_MASK_OK_DONE;
021f6537
MZ
1440}
1441#else
1442#define gic_set_affinity NULL
64b499d8 1443#define gic_ipi_send_mask NULL
021f6537
MZ
1444#define gic_smp_init() do { } while(0)
1445#endif
1446
17f644e9
VS
1447static int gic_retrigger(struct irq_data *data)
1448{
1449 return !gic_irq_set_irqchip_state(data, IRQCHIP_STATE_PENDING, true);
1450}
1451
3708d52f
SH
1452#ifdef CONFIG_CPU_PM
1453static int gic_cpu_pm_notifier(struct notifier_block *self,
1454 unsigned long cmd, void *v)
1455{
1456 if (cmd == CPU_PM_EXIT) {
ccd9432a
SH
1457 if (gic_dist_security_disabled())
1458 gic_enable_redist(true);
3708d52f 1459 gic_cpu_sys_reg_init();
ccd9432a 1460 } else if (cmd == CPU_PM_ENTER && gic_dist_security_disabled()) {
3708d52f
SH
1461 gic_write_grpen1(0);
1462 gic_enable_redist(false);
1463 }
1464 return NOTIFY_OK;
1465}
1466
1467static struct notifier_block gic_cpu_pm_notifier_block = {
1468 .notifier_call = gic_cpu_pm_notifier,
1469};
1470
1471static void gic_cpu_pm_init(void)
1472{
1473 cpu_pm_register_notifier(&gic_cpu_pm_notifier_block);
1474}
1475
1476#else
1477static inline void gic_cpu_pm_init(void) { }
1478#endif /* CONFIG_CPU_PM */
1479
021f6537
MZ
1480static struct irq_chip gic_chip = {
1481 .name = "GICv3",
1482 .irq_mask = gic_mask_irq,
1483 .irq_unmask = gic_unmask_irq,
1484 .irq_eoi = gic_eoi_irq,
1485 .irq_set_type = gic_set_type,
1486 .irq_set_affinity = gic_set_affinity,
17f644e9 1487 .irq_retrigger = gic_retrigger,
b594c6e2
MZ
1488 .irq_get_irqchip_state = gic_irq_get_irqchip_state,
1489 .irq_set_irqchip_state = gic_irq_set_irqchip_state,
101b35f7
JT
1490 .irq_nmi_setup = gic_irq_nmi_setup,
1491 .irq_nmi_teardown = gic_irq_nmi_teardown,
64b499d8 1492 .ipi_send_mask = gic_ipi_send_mask,
4110b5cb
MZ
1493 .flags = IRQCHIP_SET_TYPE_MASKED |
1494 IRQCHIP_SKIP_SET_WAKE |
1495 IRQCHIP_MASK_ON_SUSPEND,
021f6537
MZ
1496};
1497
0b6a3da9
MZ
1498static struct irq_chip gic_eoimode1_chip = {
1499 .name = "GICv3",
1500 .irq_mask = gic_eoimode1_mask_irq,
1501 .irq_unmask = gic_unmask_irq,
1502 .irq_eoi = gic_eoimode1_eoi_irq,
1503 .irq_set_type = gic_set_type,
1504 .irq_set_affinity = gic_set_affinity,
17f644e9 1505 .irq_retrigger = gic_retrigger,
0b6a3da9
MZ
1506 .irq_get_irqchip_state = gic_irq_get_irqchip_state,
1507 .irq_set_irqchip_state = gic_irq_set_irqchip_state,
530bf353 1508 .irq_set_vcpu_affinity = gic_irq_set_vcpu_affinity,
101b35f7
JT
1509 .irq_nmi_setup = gic_irq_nmi_setup,
1510 .irq_nmi_teardown = gic_irq_nmi_teardown,
64b499d8 1511 .ipi_send_mask = gic_ipi_send_mask,
4110b5cb
MZ
1512 .flags = IRQCHIP_SET_TYPE_MASKED |
1513 IRQCHIP_SKIP_SET_WAKE |
1514 IRQCHIP_MASK_ON_SUSPEND,
0b6a3da9
MZ
1515};
1516
021f6537
MZ
1517static int gic_irq_domain_map(struct irq_domain *d, unsigned int irq,
1518 irq_hw_number_t hw)
1519{
0b6a3da9 1520 struct irq_chip *chip = &gic_chip;
1b57d91b 1521 struct irq_data *irqd = irq_desc_get_irq_data(irq_to_desc(irq));
0b6a3da9 1522
d01d3274 1523 if (static_branch_likely(&supports_deactivate_key))
0b6a3da9
MZ
1524 chip = &gic_eoimode1_chip;
1525
e91b036e 1526 switch (__get_intid_range(hw)) {
70a29c32 1527 case SGI_RANGE:
e91b036e 1528 case PPI_RANGE:
5f51f803 1529 case EPPI_RANGE:
021f6537 1530 irq_set_percpu_devid(irq);
0b6a3da9 1531 irq_domain_set_info(d, irq, hw, chip, d->host_data,
443acc4f 1532 handle_percpu_devid_irq, NULL, NULL);
e91b036e
MZ
1533 break;
1534
1535 case SPI_RANGE:
211bddd2 1536 case ESPI_RANGE:
0b6a3da9 1537 irq_domain_set_info(d, irq, hw, chip, d->host_data,
443acc4f 1538 handle_fasteoi_irq, NULL, NULL);
d17cab44 1539 irq_set_probe(irq);
1b57d91b 1540 irqd_set_single_target(irqd);
e91b036e
MZ
1541 break;
1542
1543 case LPI_RANGE:
da33f31d
MZ
1544 if (!gic_dist_supports_lpis())
1545 return -EPERM;
0b6a3da9 1546 irq_domain_set_info(d, irq, hw, chip, d->host_data,
da33f31d 1547 handle_fasteoi_irq, NULL, NULL);
e91b036e
MZ
1548 break;
1549
1550 default:
1551 return -EPERM;
da33f31d
MZ
1552 }
1553
1b57d91b
VS
1554 /* Prevents SW retriggers which mess up the ACK/EOI ordering */
1555 irqd_set_handle_enforce_irqctx(irqd);
021f6537
MZ
1556 return 0;
1557}
1558
f833f57f
MZ
1559static int gic_irq_domain_translate(struct irq_domain *d,
1560 struct irq_fwspec *fwspec,
1561 unsigned long *hwirq,
1562 unsigned int *type)
021f6537 1563{
64b499d8
MZ
1564 if (fwspec->param_count == 1 && fwspec->param[0] < 16) {
1565 *hwirq = fwspec->param[0];
1566 *type = IRQ_TYPE_EDGE_RISING;
1567 return 0;
1568 }
1569
f833f57f
MZ
1570 if (is_of_node(fwspec->fwnode)) {
1571 if (fwspec->param_count < 3)
1572 return -EINVAL;
021f6537 1573
db8c70ec
MZ
1574 switch (fwspec->param[0]) {
1575 case 0: /* SPI */
1576 *hwirq = fwspec->param[1] + 32;
1577 break;
1578 case 1: /* PPI */
1579 *hwirq = fwspec->param[1] + 16;
1580 break;
211bddd2
MZ
1581 case 2: /* ESPI */
1582 *hwirq = fwspec->param[1] + ESPI_BASE_INTID;
1583 break;
5f51f803
MZ
1584 case 3: /* EPPI */
1585 *hwirq = fwspec->param[1] + EPPI_BASE_INTID;
1586 break;
db8c70ec
MZ
1587 case GIC_IRQ_TYPE_LPI: /* LPI */
1588 *hwirq = fwspec->param[1];
1589 break;
5f51f803
MZ
1590 case GIC_IRQ_TYPE_PARTITION:
1591 *hwirq = fwspec->param[1];
1592 if (fwspec->param[1] >= 16)
1593 *hwirq += EPPI_BASE_INTID - 16;
1594 else
1595 *hwirq += 16;
1596 break;
db8c70ec
MZ
1597 default:
1598 return -EINVAL;
1599 }
f833f57f
MZ
1600
1601 *type = fwspec->param[2] & IRQ_TYPE_SENSE_MASK;
6ef6386e 1602
65da7d19
MZ
1603 /*
1604 * Make it clear that broken DTs are... broken.
a359f757 1605 * Partitioned PPIs are an unfortunate exception.
65da7d19
MZ
1606 */
1607 WARN_ON(*type == IRQ_TYPE_NONE &&
1608 fwspec->param[0] != GIC_IRQ_TYPE_PARTITION);
f833f57f 1609 return 0;
021f6537
MZ
1610 }
1611
ffa7d616
TN
1612 if (is_fwnode_irqchip(fwspec->fwnode)) {
1613 if(fwspec->param_count != 2)
1614 return -EINVAL;
1615
544808f7
AP
1616 if (fwspec->param[0] < 16) {
1617 pr_err(FW_BUG "Illegal GSI%d translation request\n",
1618 fwspec->param[0]);
1619 return -EINVAL;
1620 }
1621
ffa7d616
TN
1622 *hwirq = fwspec->param[0];
1623 *type = fwspec->param[1];
6ef6386e
MZ
1624
1625 WARN_ON(*type == IRQ_TYPE_NONE);
ffa7d616
TN
1626 return 0;
1627 }
1628
f833f57f 1629 return -EINVAL;
021f6537
MZ
1630}
1631
443acc4f
MZ
1632static int gic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
1633 unsigned int nr_irqs, void *arg)
1634{
1635 int i, ret;
1636 irq_hw_number_t hwirq;
1637 unsigned int type = IRQ_TYPE_NONE;
f833f57f 1638 struct irq_fwspec *fwspec = arg;
443acc4f 1639
f833f57f 1640 ret = gic_irq_domain_translate(domain, fwspec, &hwirq, &type);
443acc4f
MZ
1641 if (ret)
1642 return ret;
1643
63c16c6e
SP
1644 for (i = 0; i < nr_irqs; i++) {
1645 ret = gic_irq_domain_map(domain, virq + i, hwirq + i);
1646 if (ret)
1647 return ret;
1648 }
443acc4f
MZ
1649
1650 return 0;
1651}
1652
1653static void gic_irq_domain_free(struct irq_domain *domain, unsigned int virq,
1654 unsigned int nr_irqs)
1655{
1656 int i;
1657
1658 for (i = 0; i < nr_irqs; i++) {
1659 struct irq_data *d = irq_domain_get_irq_data(domain, virq + i);
1660 irq_set_handler(virq + i, NULL);
1661 irq_domain_reset_irq_data(d);
1662 }
1663}
1664
d753f849
JM
1665static bool fwspec_is_partitioned_ppi(struct irq_fwspec *fwspec,
1666 irq_hw_number_t hwirq)
1667{
1668 enum gic_intid_range range;
1669
1670 if (!gic_data.ppi_descs)
1671 return false;
1672
1673 if (!is_of_node(fwspec->fwnode))
1674 return false;
1675
1676 if (fwspec->param_count < 4 || !fwspec->param[3])
1677 return false;
1678
1679 range = __get_intid_range(hwirq);
1680 if (range != PPI_RANGE && range != EPPI_RANGE)
1681 return false;
1682
1683 return true;
1684}
1685
e3825ba1
MZ
1686static int gic_irq_domain_select(struct irq_domain *d,
1687 struct irq_fwspec *fwspec,
1688 enum irq_domain_bus_token bus_token)
1689{
d753f849
JM
1690 unsigned int type, ret, ppi_idx;
1691 irq_hw_number_t hwirq;
1692
e3825ba1
MZ
1693 /* Not for us */
1694 if (fwspec->fwnode != d->fwnode)
1695 return 0;
1696
1697 /* If this is not DT, then we have a single domain */
1698 if (!is_of_node(fwspec->fwnode))
1699 return 1;
1700
d753f849
JM
1701 ret = gic_irq_domain_translate(d, fwspec, &hwirq, &type);
1702 if (WARN_ON_ONCE(ret))
1703 return 0;
1704
1705 if (!fwspec_is_partitioned_ppi(fwspec, hwirq))
1706 return d == gic_data.domain;
1707
e3825ba1
MZ
1708 /*
1709 * If this is a PPI and we have a 4th (non-null) parameter,
1710 * then we need to match the partition domain.
1711 */
d753f849
JM
1712 ppi_idx = __gic_get_ppi_index(hwirq);
1713 return d == partition_get_domain(gic_data.ppi_descs[ppi_idx]);
e3825ba1
MZ
1714}
1715
021f6537 1716static const struct irq_domain_ops gic_irq_domain_ops = {
f833f57f 1717 .translate = gic_irq_domain_translate,
443acc4f
MZ
1718 .alloc = gic_irq_domain_alloc,
1719 .free = gic_irq_domain_free,
e3825ba1
MZ
1720 .select = gic_irq_domain_select,
1721};
1722
1723static int partition_domain_translate(struct irq_domain *d,
1724 struct irq_fwspec *fwspec,
1725 unsigned long *hwirq,
1726 unsigned int *type)
1727{
d753f849 1728 unsigned long ppi_intid;
e3825ba1 1729 struct device_node *np;
d753f849 1730 unsigned int ppi_idx;
e3825ba1
MZ
1731 int ret;
1732
52085d3f
MZ
1733 if (!gic_data.ppi_descs)
1734 return -ENOMEM;
1735
e3825ba1
MZ
1736 np = of_find_node_by_phandle(fwspec->param[3]);
1737 if (WARN_ON(!np))
1738 return -EINVAL;
1739
d753f849
JM
1740 ret = gic_irq_domain_translate(d, fwspec, &ppi_intid, type);
1741 if (WARN_ON_ONCE(ret))
1742 return 0;
1743
1744 ppi_idx = __gic_get_ppi_index(ppi_intid);
1745 ret = partition_translate_id(gic_data.ppi_descs[ppi_idx],
e3825ba1
MZ
1746 of_node_to_fwnode(np));
1747 if (ret < 0)
1748 return ret;
1749
1750 *hwirq = ret;
1751 *type = fwspec->param[2] & IRQ_TYPE_SENSE_MASK;
1752
1753 return 0;
1754}
1755
1756static const struct irq_domain_ops partition_domain_ops = {
1757 .translate = partition_domain_translate,
1758 .select = gic_irq_domain_select,
021f6537
MZ
1759};
1760
9c8114c2
SK
1761static bool gic_enable_quirk_msm8996(void *data)
1762{
1763 struct gic_chip_data *d = data;
1764
1765 d->flags |= FLAGS_WORKAROUND_GICR_WAKER_MSM8996;
1766
1767 return true;
1768}
1769
44bd78dd
DA
1770static bool gic_enable_quirk_mtk_gicr(void *data)
1771{
1772 struct gic_chip_data *d = data;
1773
1774 d->flags |= FLAGS_WORKAROUND_MTK_GICR_SAVE;
1775
1776 return true;
1777}
1778
d01fd161
MZ
1779static bool gic_enable_quirk_cavium_38539(void *data)
1780{
1781 struct gic_chip_data *d = data;
1782
1783 d->flags |= FLAGS_WORKAROUND_CAVIUM_ERRATUM_38539;
1784
1785 return true;
1786}
1787
7f2481b3
MZ
1788static bool gic_enable_quirk_hip06_07(void *data)
1789{
1790 struct gic_chip_data *d = data;
1791
1792 /*
1793 * HIP06 GICD_IIDR clashes with GIC-600 product number (despite
1794 * not being an actual ARM implementation). The saving grace is
1795 * that GIC-600 doesn't have ESPI, so nothing to do in that case.
1796 * HIP07 doesn't even have a proper IIDR, and still pretends to
1797 * have ESPI. In both cases, put them right.
1798 */
1799 if (d->rdists.gicd_typer & GICD_TYPER_ESPI) {
1800 /* Zero both ESPI and the RES0 field next to it... */
1801 d->rdists.gicd_typer &= ~GENMASK(9, 8);
1802 return true;
1803 }
1804
1805 return false;
1806}
1807
35727af2
SD
1808#define T241_CHIPN_MASK GENMASK_ULL(45, 44)
1809#define T241_CHIP_GICDA_OFFSET 0x1580000
1810#define SMCCC_SOC_ID_T241 0x036b0241
1811
1812static bool gic_enable_quirk_nvidia_t241(void *data)
1813{
1814 s32 soc_id = arm_smccc_get_soc_id_version();
1815 unsigned long chip_bmask = 0;
1816 phys_addr_t phys;
1817 u32 i;
1818
1819 /* Check JEP106 code for NVIDIA T241 chip (036b:0241) */
1820 if ((soc_id < 0) || (soc_id != SMCCC_SOC_ID_T241))
1821 return false;
1822
1823 /* Find the chips based on GICR regions PHYS addr */
1824 for (i = 0; i < gic_data.nr_redist_regions; i++) {
1825 chip_bmask |= BIT(FIELD_GET(T241_CHIPN_MASK,
1826 (u64)gic_data.redist_regions[i].phys_base));
1827 }
1828
1829 if (hweight32(chip_bmask) < 3)
1830 return false;
1831
1832 /* Setup GICD alias regions */
1833 for (i = 0; i < ARRAY_SIZE(t241_dist_base_alias); i++) {
1834 if (chip_bmask & BIT(i)) {
1835 phys = gic_data.dist_phys_base + T241_CHIP_GICDA_OFFSET;
1836 phys |= FIELD_PREP(T241_CHIPN_MASK, i);
1837 t241_dist_base_alias[i] = ioremap(phys, SZ_64K);
1838 WARN_ON_ONCE(!t241_dist_base_alias[i]);
1839 }
1840 }
1841 static_branch_enable(&gic_nvidia_t241_erratum);
1842 return true;
1843}
1844
b4d81fab 1845static bool gic_enable_quirk_asr8601(void *data)
1846{
1847 struct gic_chip_data *d = data;
1848
1849 d->flags |= FLAGS_WORKAROUND_ASR_ERRATUM_8601001;
1850
1851 return true;
1852}
1853
6fe5c68e
LP
1854static bool gic_enable_quirk_arm64_2941627(void *data)
1855{
1856 static_branch_enable(&gic_arm64_2941627_erratum);
1857 return true;
1858}
1859
3a0fff0f
LP
1860static bool rd_set_non_coherent(void *data)
1861{
1862 struct gic_chip_data *d = data;
1863
1864 d->rdists.flags |= RDIST_FLAGS_FORCE_NON_SHAREABLE;
1865 return true;
1866}
1867
7f2481b3
MZ
1868static const struct gic_quirk gic_quirks[] = {
1869 {
1870 .desc = "GICv3: Qualcomm MSM8996 broken firmware",
1871 .compatible = "qcom,msm8996-gic-v3",
1872 .init = gic_enable_quirk_msm8996,
1873 },
b4d81fab 1874 {
1875 .desc = "GICv3: ASR erratum 8601001",
1876 .compatible = "asr,asr8601-gic-v3",
1877 .init = gic_enable_quirk_asr8601,
1878 },
44bd78dd
DA
1879 {
1880 .desc = "GICv3: Mediatek Chromebook GICR save problem",
1881 .property = "mediatek,broken-save-restore-fw",
1882 .init = gic_enable_quirk_mtk_gicr,
1883 },
7f2481b3
MZ
1884 {
1885 .desc = "GICv3: HIP06 erratum 161010803",
1886 .iidr = 0x0204043b,
1887 .mask = 0xffffffff,
1888 .init = gic_enable_quirk_hip06_07,
1889 },
1890 {
1891 .desc = "GICv3: HIP07 erratum 161010803",
1892 .iidr = 0x00000000,
1893 .mask = 0xffffffff,
1894 .init = gic_enable_quirk_hip06_07,
1895 },
d01fd161
MZ
1896 {
1897 /*
1898 * Reserved register accesses generate a Synchronous
1899 * External Abort. This erratum applies to:
1900 * - ThunderX: CN88xx
1901 * - OCTEON TX: CN83xx, CN81xx
1902 * - OCTEON TX2: CN93xx, CN96xx, CN98xx, CNF95xx*
1903 */
1904 .desc = "GICv3: Cavium erratum 38539",
1905 .iidr = 0xa000034c,
1906 .mask = 0xe8f00fff,
1907 .init = gic_enable_quirk_cavium_38539,
1908 },
35727af2
SD
1909 {
1910 .desc = "GICv3: NVIDIA erratum T241-FABRIC-4",
1911 .iidr = 0x0402043b,
1912 .mask = 0xffffffff,
1913 .init = gic_enable_quirk_nvidia_t241,
1914 },
6fe5c68e
LP
1915 {
1916 /*
1917 * GIC-700: 2941627 workaround - IP variant [0,1]
1918 *
1919 */
1920 .desc = "GICv3: ARM64 erratum 2941627",
1921 .iidr = 0x0400043b,
1922 .mask = 0xff0e0fff,
1923 .init = gic_enable_quirk_arm64_2941627,
1924 },
1925 {
1926 /*
1927 * GIC-700: 2941627 workaround - IP variant [2]
1928 */
1929 .desc = "GICv3: ARM64 erratum 2941627",
1930 .iidr = 0x0402043b,
1931 .mask = 0xff0f0fff,
1932 .init = gic_enable_quirk_arm64_2941627,
1933 },
3a0fff0f
LP
1934 {
1935 .desc = "GICv3: non-coherent attribute",
1936 .property = "dma-noncoherent",
1937 .init = rd_set_non_coherent,
1938 },
7f2481b3
MZ
1939 {
1940 }
1941};
1942
d98d0a99
JT
1943static void gic_enable_nmi_support(void)
1944{
101b35f7
JT
1945 int i;
1946
81a43273
MZ
1947 if (!gic_prio_masking_enabled())
1948 return;
1949
44bd78dd
DA
1950 if (gic_data.flags & FLAGS_WORKAROUND_MTK_GICR_SAVE) {
1951 pr_warn("Skipping NMI enable due to firmware issues\n");
1952 return;
1953 }
1954
81a43273
MZ
1955 ppi_nmi_refs = kcalloc(gic_data.ppi_nr, sizeof(*ppi_nmi_refs), GFP_KERNEL);
1956 if (!ppi_nmi_refs)
1957 return;
1958
1959 for (i = 0; i < gic_data.ppi_nr; i++)
101b35f7
JT
1960 refcount_set(&ppi_nmi_refs[i], 0);
1961
4e594ad1 1962 pr_info("Pseudo-NMIs enabled using %s ICC_PMR_EL1 synchronisation\n",
8bf0a804 1963 gic_has_relaxed_pmr_sync() ? "relaxed" : "forced");
f2266504 1964
33678059
AE
1965 /*
1966 * How priority values are used by the GIC depends on two things:
1967 * the security state of the GIC (controlled by the GICD_CTRL.DS bit)
1968 * and if Group 0 interrupts can be delivered to Linux in the non-secure
1969 * world as FIQs (controlled by the SCR_EL3.FIQ bit). These affect the
29517170 1970 * ICC_PMR_EL1 register and the priority that software assigns to
33678059
AE
1971 * interrupts:
1972 *
1973 * GICD_CTRL.DS | SCR_EL3.FIQ | ICC_PMR_EL1 | Group 1 priority
1974 * -----------------------------------------------------------
1975 * 1 | - | unchanged | unchanged
1976 * -----------------------------------------------------------
1977 * 0 | 1 | non-secure | non-secure
1978 * -----------------------------------------------------------
1979 * 0 | 0 | unchanged | non-secure
1980 *
1981 * where non-secure means that the value is right-shifted by one and the
1982 * MSB bit set, to make it fit in the non-secure priority range.
1983 *
1984 * In the first two cases, where ICC_PMR_EL1 and the interrupt priority
1985 * are both either modified or unchanged, we can use the same set of
1986 * priorities.
1987 *
1988 * In the last case, where only the interrupt priorities are modified to
1989 * be in the non-secure range, we use a different PMR value to mask IRQs
1990 * and the rest of the values that we use remain unchanged.
1991 */
1992 if (gic_has_group0() && !gic_dist_security_disabled())
1993 static_branch_enable(&gic_nonsecure_priorities);
1994
d98d0a99 1995 static_branch_enable(&supports_pseudo_nmis);
101b35f7
JT
1996
1997 if (static_branch_likely(&supports_deactivate_key))
1998 gic_eoimode1_chip.flags |= IRQCHIP_SUPPORTS_NMI;
1999 else
2000 gic_chip.flags |= IRQCHIP_SUPPORTS_NMI;
d98d0a99
JT
2001}
2002
35727af2
SD
2003static int __init gic_init_bases(phys_addr_t dist_phys_base,
2004 void __iomem *dist_base,
db57d746
TN
2005 struct redist_region *rdist_regs,
2006 u32 nr_redist_regions,
2007 u64 redist_stride,
2008 struct fwnode_handle *handle)
021f6537 2009{
f5c1434c 2010 u32 typer;
021f6537 2011 int err;
021f6537 2012
0b6a3da9 2013 if (!is_hyp_mode_available())
d01d3274 2014 static_branch_disable(&supports_deactivate_key);
0b6a3da9 2015
d01d3274 2016 if (static_branch_likely(&supports_deactivate_key))
0b6a3da9
MZ
2017 pr_info("GIC: Using split EOI/Deactivate mode\n");
2018
e3825ba1 2019 gic_data.fwnode = handle;
35727af2 2020 gic_data.dist_phys_base = dist_phys_base;
021f6537 2021 gic_data.dist_base = dist_base;
f5c1434c
MZ
2022 gic_data.redist_regions = rdist_regs;
2023 gic_data.nr_redist_regions = nr_redist_regions;
021f6537
MZ
2024 gic_data.redist_stride = redist_stride;
2025
2026 /*
2027 * Find out how many interrupts are supported.
021f6537 2028 */
f5c1434c 2029 typer = readl_relaxed(gic_data.dist_base + GICD_TYPER);
a4f9edb2 2030 gic_data.rdists.gicd_typer = typer;
7f2481b3
MZ
2031
2032 gic_enable_quirks(readl_relaxed(gic_data.dist_base + GICD_IIDR),
2033 gic_quirks, &gic_data);
2034
211bddd2
MZ
2035 pr_info("%d SPIs implemented\n", GIC_LINE_NR - 32);
2036 pr_info("%d Extended SPIs implemented\n", GIC_ESPI_NR);
f2d83409 2037
d01fd161
MZ
2038 /*
2039 * ThunderX1 explodes on reading GICD_TYPER2, in violation of the
2040 * architecture spec (which says that reserved registers are RES0).
2041 */
2042 if (!(gic_data.flags & FLAGS_WORKAROUND_CAVIUM_ERRATUM_38539))
2043 gic_data.rdists.gicd_typer2 = readl_relaxed(gic_data.dist_base + GICD_TYPER2);
f2d83409 2044
db57d746
TN
2045 gic_data.domain = irq_domain_create_tree(handle, &gic_irq_domain_ops,
2046 &gic_data);
f5c1434c 2047 gic_data.rdists.rdist = alloc_percpu(typeof(*gic_data.rdists.rdist));
35727af2
SD
2048 if (!static_branch_unlikely(&gic_nvidia_t241_erratum)) {
2049 /* Disable GICv4.x features for the erratum T241-FABRIC-4 */
2050 gic_data.rdists.has_rvpeid = true;
2051 gic_data.rdists.has_vlpis = true;
2052 gic_data.rdists.has_direct_lpi = true;
2053 gic_data.rdists.has_vpend_valid_dirty = true;
2054 }
021f6537 2055
f5c1434c 2056 if (WARN_ON(!gic_data.domain) || WARN_ON(!gic_data.rdists.rdist)) {
021f6537
MZ
2057 err = -ENOMEM;
2058 goto out_free;
2059 }
2060
eeaa4b24 2061 irq_domain_update_bus_token(gic_data.domain, DOMAIN_BUS_WIRED);
2062
eda0d04a 2063 gic_data.has_rss = !!(typer & GICD_TYPER_RSS);
eda0d04a 2064
50528752
MZ
2065 if (typer & GICD_TYPER_MBIS) {
2066 err = mbi_init(handle, gic_data.domain);
2067 if (err)
2068 pr_err("Failed to initialize MBIs\n");
2069 }
2070
021f6537
MZ
2071 set_handle_irq(gic_handle_irq);
2072
1a60e1e6 2073 gic_update_rdist_properties();
0edc23ea 2074
021f6537
MZ
2075 gic_dist_init();
2076 gic_cpu_init();
64b499d8 2077 gic_smp_init();
3708d52f 2078 gic_cpu_pm_init();
021f6537 2079
d38a71c5
MZ
2080 if (gic_dist_supports_lpis()) {
2081 its_init(handle, &gic_data.rdists, gic_data.domain);
2082 its_cpu_init();
d23bc2bc 2083 its_lpi_memreserve_init();
90b4c555
ZZ
2084 } else {
2085 if (IS_ENABLED(CONFIG_ARM_GIC_V2M))
2086 gicv2m_init(handle, gic_data.domain);
d38a71c5
MZ
2087 }
2088
81a43273 2089 gic_enable_nmi_support();
d98d0a99 2090
021f6537
MZ
2091 return 0;
2092
2093out_free:
2094 if (gic_data.domain)
2095 irq_domain_remove(gic_data.domain);
f5c1434c 2096 free_percpu(gic_data.rdists.rdist);
db57d746
TN
2097 return err;
2098}
2099
2100static int __init gic_validate_dist_version(void __iomem *dist_base)
2101{
2102 u32 reg = readl_relaxed(dist_base + GICD_PIDR2) & GIC_PIDR2_ARCH_MASK;
2103
2104 if (reg != GIC_PIDR2_ARCH_GICv3 && reg != GIC_PIDR2_ARCH_GICv4)
2105 return -ENODEV;
2106
2107 return 0;
2108}
2109
e3825ba1 2110/* Create all possible partitions at boot time */
7beaa24b 2111static void __init gic_populate_ppi_partitions(struct device_node *gic_node)
e3825ba1
MZ
2112{
2113 struct device_node *parts_node, *child_part;
2114 int part_idx = 0, i;
2115 int nr_parts;
2116 struct partition_affinity *parts;
2117
00ee9a1c 2118 parts_node = of_get_child_by_name(gic_node, "ppi-partitions");
e3825ba1
MZ
2119 if (!parts_node)
2120 return;
2121
52085d3f
MZ
2122 gic_data.ppi_descs = kcalloc(gic_data.ppi_nr, sizeof(*gic_data.ppi_descs), GFP_KERNEL);
2123 if (!gic_data.ppi_descs)
ec8401a4 2124 goto out_put_node;
52085d3f 2125
e3825ba1
MZ
2126 nr_parts = of_get_child_count(parts_node);
2127
2128 if (!nr_parts)
00ee9a1c 2129 goto out_put_node;
e3825ba1 2130
6396bb22 2131 parts = kcalloc(nr_parts, sizeof(*parts), GFP_KERNEL);
e3825ba1 2132 if (WARN_ON(!parts))
00ee9a1c 2133 goto out_put_node;
e3825ba1
MZ
2134
2135 for_each_child_of_node(parts_node, child_part) {
2136 struct partition_affinity *part;
2137 int n;
2138
2139 part = &parts[part_idx];
2140
2141 part->partition_id = of_node_to_fwnode(child_part);
2142
2ef790dc
RH
2143 pr_info("GIC: PPI partition %pOFn[%d] { ",
2144 child_part, part_idx);
e3825ba1
MZ
2145
2146 n = of_property_count_elems_of_size(child_part, "affinity",
2147 sizeof(u32));
2148 WARN_ON(n <= 0);
2149
2150 for (i = 0; i < n; i++) {
2151 int err, cpu;
2152 u32 cpu_phandle;
2153 struct device_node *cpu_node;
2154
2155 err = of_property_read_u32_index(child_part, "affinity",
2156 i, &cpu_phandle);
2157 if (WARN_ON(err))
2158 continue;
2159
2160 cpu_node = of_find_node_by_phandle(cpu_phandle);
2161 if (WARN_ON(!cpu_node))
2162 continue;
2163
c08ec7da 2164 cpu = of_cpu_node_to_id(cpu_node);
fa1ad9d4
ML
2165 if (WARN_ON(cpu < 0)) {
2166 of_node_put(cpu_node);
e3825ba1 2167 continue;
fa1ad9d4 2168 }
e3825ba1 2169
e81f54c6 2170 pr_cont("%pOF[%d] ", cpu_node, cpu);
e3825ba1
MZ
2171
2172 cpumask_set_cpu(cpu, &part->mask);
fa1ad9d4 2173 of_node_put(cpu_node);
e3825ba1
MZ
2174 }
2175
2176 pr_cont("}\n");
2177 part_idx++;
2178 }
2179
52085d3f 2180 for (i = 0; i < gic_data.ppi_nr; i++) {
e3825ba1
MZ
2181 unsigned int irq;
2182 struct partition_desc *desc;
2183 struct irq_fwspec ppi_fwspec = {
2184 .fwnode = gic_data.fwnode,
2185 .param_count = 3,
2186 .param = {
65da7d19 2187 [0] = GIC_IRQ_TYPE_PARTITION,
e3825ba1
MZ
2188 [1] = i,
2189 [2] = IRQ_TYPE_NONE,
2190 },
2191 };
2192
2193 irq = irq_create_fwspec_mapping(&ppi_fwspec);
2194 if (WARN_ON(!irq))
2195 continue;
2196 desc = partition_create_desc(gic_data.fwnode, parts, nr_parts,
2197 irq, &partition_domain_ops);
2198 if (WARN_ON(!desc))
2199 continue;
2200
2201 gic_data.ppi_descs[i] = desc;
2202 }
00ee9a1c
JH
2203
2204out_put_node:
2205 of_node_put(parts_node);
e3825ba1
MZ
2206}
2207
1839e576
JG
2208static void __init gic_of_setup_kvm_info(struct device_node *node)
2209{
2210 int ret;
2211 struct resource r;
2212 u32 gicv_idx;
2213
2214 gic_v3_kvm_info.type = GIC_V3;
2215
2216 gic_v3_kvm_info.maint_irq = irq_of_parse_and_map(node, 0);
2217 if (!gic_v3_kvm_info.maint_irq)
2218 return;
2219
2220 if (of_property_read_u32(node, "#redistributor-regions",
2221 &gicv_idx))
2222 gicv_idx = 1;
2223
2224 gicv_idx += 3; /* Also skip GICD, GICC, GICH */
2225 ret = of_address_to_resource(node, gicv_idx, &r);
2226 if (!ret)
2227 gic_v3_kvm_info.vcpu = r;
2228
4bdf5025 2229 gic_v3_kvm_info.has_v4 = gic_data.rdists.has_vlpis;
3c40706d 2230 gic_v3_kvm_info.has_v4_1 = gic_data.rdists.has_rvpeid;
0e5cb777 2231 vgic_set_kvm_info(&gic_v3_kvm_info);
1839e576
JG
2232}
2233
4deb96e3
RM
2234static void gic_request_region(resource_size_t base, resource_size_t size,
2235 const char *name)
2236{
2237 if (!request_mem_region(base, size, name))
2238 pr_warn_once(FW_BUG "%s region %pa has overlapping address\n",
2239 name, &base);
2240}
2241
2242static void __iomem *gic_of_iomap(struct device_node *node, int idx,
2243 const char *name, struct resource *res)
2244{
2245 void __iomem *base;
2246 int ret;
2247
2248 ret = of_address_to_resource(node, idx, res);
2249 if (ret)
2250 return IOMEM_ERR_PTR(ret);
2251
2252 gic_request_region(res->start, resource_size(res), name);
2253 base = of_iomap(node, idx);
2254
2255 return base ?: IOMEM_ERR_PTR(-ENOMEM);
2256}
2257
db57d746
TN
2258static int __init gic_of_init(struct device_node *node, struct device_node *parent)
2259{
35727af2 2260 phys_addr_t dist_phys_base;
db57d746
TN
2261 void __iomem *dist_base;
2262 struct redist_region *rdist_regs;
4deb96e3 2263 struct resource res;
db57d746
TN
2264 u64 redist_stride;
2265 u32 nr_redist_regions;
2266 int err, i;
2267
4deb96e3 2268 dist_base = gic_of_iomap(node, 0, "GICD", &res);
2b2cd74a 2269 if (IS_ERR(dist_base)) {
e81f54c6 2270 pr_err("%pOF: unable to map gic dist registers\n", node);
2b2cd74a 2271 return PTR_ERR(dist_base);
db57d746
TN
2272 }
2273
35727af2
SD
2274 dist_phys_base = res.start;
2275
db57d746
TN
2276 err = gic_validate_dist_version(dist_base);
2277 if (err) {
e81f54c6 2278 pr_err("%pOF: no distributor detected, giving up\n", node);
db57d746
TN
2279 goto out_unmap_dist;
2280 }
2281
2282 if (of_property_read_u32(node, "#redistributor-regions", &nr_redist_regions))
2283 nr_redist_regions = 1;
2284
6396bb22
KC
2285 rdist_regs = kcalloc(nr_redist_regions, sizeof(*rdist_regs),
2286 GFP_KERNEL);
db57d746
TN
2287 if (!rdist_regs) {
2288 err = -ENOMEM;
2289 goto out_unmap_dist;
2290 }
2291
2292 for (i = 0; i < nr_redist_regions; i++) {
4deb96e3
RM
2293 rdist_regs[i].redist_base = gic_of_iomap(node, 1 + i, "GICR", &res);
2294 if (IS_ERR(rdist_regs[i].redist_base)) {
e81f54c6 2295 pr_err("%pOF: couldn't map region %d\n", node, i);
db57d746
TN
2296 err = -ENODEV;
2297 goto out_unmap_rdist;
2298 }
2299 rdist_regs[i].phys_base = res.start;
2300 }
2301
2302 if (of_property_read_u64(node, "redistributor-stride", &redist_stride))
2303 redist_stride = 0;
2304
f70fdb42
SK
2305 gic_enable_of_quirks(node, gic_quirks, &gic_data);
2306
35727af2
SD
2307 err = gic_init_bases(dist_phys_base, dist_base, rdist_regs,
2308 nr_redist_regions, redist_stride, &node->fwnode);
e3825ba1
MZ
2309 if (err)
2310 goto out_unmap_rdist;
2311
2312 gic_populate_ppi_partitions(node);
d33a3c8c 2313
d01d3274 2314 if (static_branch_likely(&supports_deactivate_key))
d33a3c8c 2315 gic_of_setup_kvm_info(node);
e3825ba1 2316 return 0;
db57d746 2317
021f6537 2318out_unmap_rdist:
f5c1434c 2319 for (i = 0; i < nr_redist_regions; i++)
2b2cd74a 2320 if (rdist_regs[i].redist_base && !IS_ERR(rdist_regs[i].redist_base))
f5c1434c
MZ
2321 iounmap(rdist_regs[i].redist_base);
2322 kfree(rdist_regs);
021f6537
MZ
2323out_unmap_dist:
2324 iounmap(dist_base);
2325 return err;
2326}
2327
2328IRQCHIP_DECLARE(gic_v3, "arm,gic-v3", gic_of_init);
ffa7d616
TN
2329
2330#ifdef CONFIG_ACPI
611f039f
JG
2331static struct
2332{
2333 void __iomem *dist_base;
2334 struct redist_region *redist_regs;
2335 u32 nr_redist_regions;
2336 bool single_redist;
926b5dfa 2337 int enabled_rdists;
1839e576
JG
2338 u32 maint_irq;
2339 int maint_irq_mode;
2340 phys_addr_t vcpu_base;
611f039f 2341} acpi_data __initdata;
b70fb7af
TN
2342
2343static void __init
2344gic_acpi_register_redist(phys_addr_t phys_base, void __iomem *redist_base)
2345{
2346 static int count = 0;
2347
611f039f
JG
2348 acpi_data.redist_regs[count].phys_base = phys_base;
2349 acpi_data.redist_regs[count].redist_base = redist_base;
2350 acpi_data.redist_regs[count].single_redist = acpi_data.single_redist;
b70fb7af
TN
2351 count++;
2352}
ffa7d616
TN
2353
2354static int __init
60574d1e 2355gic_acpi_parse_madt_redist(union acpi_subtable_headers *header,
ffa7d616
TN
2356 const unsigned long end)
2357{
2358 struct acpi_madt_generic_redistributor *redist =
2359 (struct acpi_madt_generic_redistributor *)header;
2360 void __iomem *redist_base;
ffa7d616
TN
2361
2362 redist_base = ioremap(redist->base_address, redist->length);
2363 if (!redist_base) {
2364 pr_err("Couldn't map GICR region @%llx\n", redist->base_address);
2365 return -ENOMEM;
2366 }
4deb96e3 2367 gic_request_region(redist->base_address, redist->length, "GICR");
ffa7d616 2368
b70fb7af 2369 gic_acpi_register_redist(redist->base_address, redist_base);
ffa7d616
TN
2370 return 0;
2371}
2372
b70fb7af 2373static int __init
60574d1e 2374gic_acpi_parse_madt_gicc(union acpi_subtable_headers *header,
b70fb7af
TN
2375 const unsigned long end)
2376{
2377 struct acpi_madt_generic_interrupt *gicc =
2378 (struct acpi_madt_generic_interrupt *)header;
611f039f 2379 u32 reg = readl_relaxed(acpi_data.dist_base + GICD_PIDR2) & GIC_PIDR2_ARCH_MASK;
b70fb7af
TN
2380 u32 size = reg == GIC_PIDR2_ARCH_GICv4 ? SZ_64K * 4 : SZ_64K * 2;
2381 void __iomem *redist_base;
2382
ebe2f871
SD
2383 /* GICC entry which has !ACPI_MADT_ENABLED is not unusable so skip */
2384 if (!(gicc->flags & ACPI_MADT_ENABLED))
2385 return 0;
2386
b70fb7af
TN
2387 redist_base = ioremap(gicc->gicr_base_address, size);
2388 if (!redist_base)
2389 return -ENOMEM;
4deb96e3 2390 gic_request_region(gicc->gicr_base_address, size, "GICR");
b70fb7af
TN
2391
2392 gic_acpi_register_redist(gicc->gicr_base_address, redist_base);
2393 return 0;
2394}
2395
2396static int __init gic_acpi_collect_gicr_base(void)
2397{
2398 acpi_tbl_entry_handler redist_parser;
2399 enum acpi_madt_type type;
2400
611f039f 2401 if (acpi_data.single_redist) {
b70fb7af
TN
2402 type = ACPI_MADT_TYPE_GENERIC_INTERRUPT;
2403 redist_parser = gic_acpi_parse_madt_gicc;
2404 } else {
2405 type = ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR;
2406 redist_parser = gic_acpi_parse_madt_redist;
2407 }
2408
2409 /* Collect redistributor base addresses in GICR entries */
2410 if (acpi_table_parse_madt(type, redist_parser, 0) > 0)
2411 return 0;
2412
2413 pr_info("No valid GICR entries exist\n");
2414 return -ENODEV;
2415}
2416
60574d1e 2417static int __init gic_acpi_match_gicr(union acpi_subtable_headers *header,
ffa7d616
TN
2418 const unsigned long end)
2419{
2420 /* Subtable presence means that redist exists, that's it */
2421 return 0;
2422}
2423
60574d1e 2424static int __init gic_acpi_match_gicc(union acpi_subtable_headers *header,
b70fb7af
TN
2425 const unsigned long end)
2426{
2427 struct acpi_madt_generic_interrupt *gicc =
2428 (struct acpi_madt_generic_interrupt *)header;
2429
2430 /*
2431 * If GICC is enabled and has valid gicr base address, then it means
2432 * GICR base is presented via GICC
2433 */
926b5dfa
MZ
2434 if ((gicc->flags & ACPI_MADT_ENABLED) && gicc->gicr_base_address) {
2435 acpi_data.enabled_rdists++;
b70fb7af 2436 return 0;
926b5dfa 2437 }
b70fb7af 2438
ebe2f871
SD
2439 /*
2440 * It's perfectly valid firmware can pass disabled GICC entry, driver
2441 * should not treat as errors, skip the entry instead of probe fail.
2442 */
2443 if (!(gicc->flags & ACPI_MADT_ENABLED))
2444 return 0;
2445
b70fb7af
TN
2446 return -ENODEV;
2447}
2448
2449static int __init gic_acpi_count_gicr_regions(void)
2450{
2451 int count;
2452
2453 /*
2454 * Count how many redistributor regions we have. It is not allowed
2455 * to mix redistributor description, GICR and GICC subtables have to be
2456 * mutually exclusive.
2457 */
2458 count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR,
2459 gic_acpi_match_gicr, 0);
2460 if (count > 0) {
611f039f 2461 acpi_data.single_redist = false;
b70fb7af
TN
2462 return count;
2463 }
2464
2465 count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT,
2466 gic_acpi_match_gicc, 0);
926b5dfa 2467 if (count > 0) {
611f039f 2468 acpi_data.single_redist = true;
926b5dfa
MZ
2469 count = acpi_data.enabled_rdists;
2470 }
b70fb7af
TN
2471
2472 return count;
2473}
2474
ffa7d616
TN
2475static bool __init acpi_validate_gic_table(struct acpi_subtable_header *header,
2476 struct acpi_probe_entry *ape)
2477{
2478 struct acpi_madt_generic_distributor *dist;
2479 int count;
2480
2481 dist = (struct acpi_madt_generic_distributor *)header;
2482 if (dist->version != ape->driver_data)
2483 return false;
2484
2485 /* We need to do that exercise anyway, the sooner the better */
b70fb7af 2486 count = gic_acpi_count_gicr_regions();
ffa7d616
TN
2487 if (count <= 0)
2488 return false;
2489
611f039f 2490 acpi_data.nr_redist_regions = count;
ffa7d616
TN
2491 return true;
2492}
2493
60574d1e 2494static int __init gic_acpi_parse_virt_madt_gicc(union acpi_subtable_headers *header,
1839e576
JG
2495 const unsigned long end)
2496{
2497 struct acpi_madt_generic_interrupt *gicc =
2498 (struct acpi_madt_generic_interrupt *)header;
2499 int maint_irq_mode;
2500 static int first_madt = true;
2501
2502 /* Skip unusable CPUs */
2503 if (!(gicc->flags & ACPI_MADT_ENABLED))
2504 return 0;
2505
2506 maint_irq_mode = (gicc->flags & ACPI_MADT_VGIC_IRQ_MODE) ?
2507 ACPI_EDGE_SENSITIVE : ACPI_LEVEL_SENSITIVE;
2508
2509 if (first_madt) {
2510 first_madt = false;
2511
2512 acpi_data.maint_irq = gicc->vgic_interrupt;
2513 acpi_data.maint_irq_mode = maint_irq_mode;
2514 acpi_data.vcpu_base = gicc->gicv_base_address;
2515
2516 return 0;
2517 }
2518
2519 /*
2520 * The maintenance interrupt and GICV should be the same for every CPU
2521 */
2522 if ((acpi_data.maint_irq != gicc->vgic_interrupt) ||
2523 (acpi_data.maint_irq_mode != maint_irq_mode) ||
2524 (acpi_data.vcpu_base != gicc->gicv_base_address))
2525 return -EINVAL;
2526
2527 return 0;
2528}
2529
2530static bool __init gic_acpi_collect_virt_info(void)
2531{
2532 int count;
2533
2534 count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT,
2535 gic_acpi_parse_virt_madt_gicc, 0);
2536
2537 return (count > 0);
2538}
2539
ffa7d616 2540#define ACPI_GICV3_DIST_MEM_SIZE (SZ_64K)
1839e576
JG
2541#define ACPI_GICV2_VCTRL_MEM_SIZE (SZ_4K)
2542#define ACPI_GICV2_VCPU_MEM_SIZE (SZ_8K)
2543
2544static void __init gic_acpi_setup_kvm_info(void)
2545{
2546 int irq;
2547
2548 if (!gic_acpi_collect_virt_info()) {
2549 pr_warn("Unable to get hardware information used for virtualization\n");
2550 return;
2551 }
2552
2553 gic_v3_kvm_info.type = GIC_V3;
2554
2555 irq = acpi_register_gsi(NULL, acpi_data.maint_irq,
2556 acpi_data.maint_irq_mode,
2557 ACPI_ACTIVE_HIGH);
2558 if (irq <= 0)
2559 return;
2560
2561 gic_v3_kvm_info.maint_irq = irq;
2562
2563 if (acpi_data.vcpu_base) {
2564 struct resource *vcpu = &gic_v3_kvm_info.vcpu;
2565
2566 vcpu->flags = IORESOURCE_MEM;
2567 vcpu->start = acpi_data.vcpu_base;
2568 vcpu->end = vcpu->start + ACPI_GICV2_VCPU_MEM_SIZE - 1;
2569 }
2570
4bdf5025 2571 gic_v3_kvm_info.has_v4 = gic_data.rdists.has_vlpis;
3c40706d 2572 gic_v3_kvm_info.has_v4_1 = gic_data.rdists.has_rvpeid;
0e5cb777 2573 vgic_set_kvm_info(&gic_v3_kvm_info);
1839e576 2574}
ffa7d616 2575
7327b16f
MZ
2576static struct fwnode_handle *gsi_domain_handle;
2577
2578static struct fwnode_handle *gic_v3_get_gsi_domain_id(u32 gsi)
2579{
2580 return gsi_domain_handle;
2581}
2582
ffa7d616 2583static int __init
aba3c7ed 2584gic_acpi_init(union acpi_subtable_headers *header, const unsigned long end)
ffa7d616
TN
2585{
2586 struct acpi_madt_generic_distributor *dist;
611f039f 2587 size_t size;
b70fb7af 2588 int i, err;
ffa7d616
TN
2589
2590 /* Get distributor base address */
2591 dist = (struct acpi_madt_generic_distributor *)header;
611f039f
JG
2592 acpi_data.dist_base = ioremap(dist->base_address,
2593 ACPI_GICV3_DIST_MEM_SIZE);
2594 if (!acpi_data.dist_base) {
ffa7d616
TN
2595 pr_err("Unable to map GICD registers\n");
2596 return -ENOMEM;
2597 }
4deb96e3 2598 gic_request_region(dist->base_address, ACPI_GICV3_DIST_MEM_SIZE, "GICD");
ffa7d616 2599
611f039f 2600 err = gic_validate_dist_version(acpi_data.dist_base);
ffa7d616 2601 if (err) {
71192a68 2602 pr_err("No distributor detected at @%p, giving up\n",
611f039f 2603 acpi_data.dist_base);
ffa7d616
TN
2604 goto out_dist_unmap;
2605 }
2606
611f039f
JG
2607 size = sizeof(*acpi_data.redist_regs) * acpi_data.nr_redist_regions;
2608 acpi_data.redist_regs = kzalloc(size, GFP_KERNEL);
2609 if (!acpi_data.redist_regs) {
ffa7d616
TN
2610 err = -ENOMEM;
2611 goto out_dist_unmap;
2612 }
2613
b70fb7af
TN
2614 err = gic_acpi_collect_gicr_base();
2615 if (err)
ffa7d616 2616 goto out_redist_unmap;
ffa7d616 2617
7327b16f
MZ
2618 gsi_domain_handle = irq_domain_alloc_fwnode(&dist->base_address);
2619 if (!gsi_domain_handle) {
ffa7d616
TN
2620 err = -ENOMEM;
2621 goto out_redist_unmap;
2622 }
2623
35727af2
SD
2624 err = gic_init_bases(dist->base_address, acpi_data.dist_base,
2625 acpi_data.redist_regs, acpi_data.nr_redist_regions,
2626 0, gsi_domain_handle);
ffa7d616
TN
2627 if (err)
2628 goto out_fwhandle_free;
2629
7327b16f 2630 acpi_set_irq_model(ACPI_IRQ_MODEL_GIC, gic_v3_get_gsi_domain_id);
d33a3c8c 2631
d01d3274 2632 if (static_branch_likely(&supports_deactivate_key))
d33a3c8c 2633 gic_acpi_setup_kvm_info();
1839e576 2634
ffa7d616
TN
2635 return 0;
2636
2637out_fwhandle_free:
7327b16f 2638 irq_domain_free_fwnode(gsi_domain_handle);
ffa7d616 2639out_redist_unmap:
611f039f
JG
2640 for (i = 0; i < acpi_data.nr_redist_regions; i++)
2641 if (acpi_data.redist_regs[i].redist_base)
2642 iounmap(acpi_data.redist_regs[i].redist_base);
2643 kfree(acpi_data.redist_regs);
ffa7d616 2644out_dist_unmap:
611f039f 2645 iounmap(acpi_data.dist_base);
ffa7d616
TN
2646 return err;
2647}
2648IRQCHIP_ACPI_DECLARE(gic_v3, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
2649 acpi_validate_gic_table, ACPI_MADT_GIC_VERSION_V3,
2650 gic_acpi_init);
2651IRQCHIP_ACPI_DECLARE(gic_v4, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
2652 acpi_validate_gic_table, ACPI_MADT_GIC_VERSION_V4,
2653 gic_acpi_init);
2654IRQCHIP_ACPI_DECLARE(gic_v3_or_v4, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
2655 acpi_validate_gic_table, ACPI_MADT_GIC_VERSION_NONE,
2656 gic_acpi_init);
2657#endif