Merge tag 'linux-watchdog-5.3-rc1' of git://www.linux-watchdog.org/linux-watchdog
[linux-2.6-block.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>
021f6537
MZ
15#include <linux/of.h>
16#include <linux/of_address.h>
17#include <linux/of_irq.h>
18#include <linux/percpu.h>
101b35f7 19#include <linux/refcount.h>
021f6537
MZ
20#include <linux/slab.h>
21
41a83e06 22#include <linux/irqchip.h>
1839e576 23#include <linux/irqchip/arm-gic-common.h>
021f6537 24#include <linux/irqchip/arm-gic-v3.h>
e3825ba1 25#include <linux/irqchip/irq-partition-percpu.h>
021f6537
MZ
26
27#include <asm/cputype.h>
28#include <asm/exception.h>
29#include <asm/smp_plat.h>
0b6a3da9 30#include <asm/virt.h>
021f6537
MZ
31
32#include "irq-gic-common.h"
021f6537 33
f32c9266
JT
34#define GICD_INT_NMI_PRI (GICD_INT_DEF_PRI & ~0x80)
35
9c8114c2
SK
36#define FLAGS_WORKAROUND_GICR_WAKER_MSM8996 (1ULL << 0)
37
f5c1434c
MZ
38struct redist_region {
39 void __iomem *redist_base;
40 phys_addr_t phys_base;
b70fb7af 41 bool single_redist;
f5c1434c
MZ
42};
43
021f6537 44struct gic_chip_data {
e3825ba1 45 struct fwnode_handle *fwnode;
021f6537 46 void __iomem *dist_base;
f5c1434c
MZ
47 struct redist_region *redist_regions;
48 struct rdists rdists;
021f6537
MZ
49 struct irq_domain *domain;
50 u64 redist_stride;
f5c1434c 51 u32 nr_redist_regions;
9c8114c2 52 u64 flags;
eda0d04a 53 bool has_rss;
021f6537 54 unsigned int irq_nr;
e3825ba1 55 struct partition_desc *ppi_descs[16];
021f6537
MZ
56};
57
58static struct gic_chip_data gic_data __read_mostly;
d01d3274 59static DEFINE_STATIC_KEY_TRUE(supports_deactivate_key);
021f6537 60
d98d0a99
JT
61/*
62 * The behaviours of RPR and PMR registers differ depending on the value of
63 * SCR_EL3.FIQ, and the behaviour of non-secure priority registers of the
64 * distributor and redistributors depends on whether security is enabled in the
65 * GIC.
66 *
67 * When security is enabled, non-secure priority values from the (re)distributor
68 * are presented to the GIC CPUIF as follow:
69 * (GIC_(R)DIST_PRI[irq] >> 1) | 0x80;
70 *
71 * If SCR_EL3.FIQ == 1, the values writen to/read from PMR and RPR at non-secure
72 * EL1 are subject to a similar operation thus matching the priorities presented
73 * from the (re)distributor when security is enabled.
74 *
75 * see GICv3/GICv4 Architecture Specification (IHI0069D):
76 * - section 4.8.1 Non-secure accesses to register fields for Secure interrupt
77 * priorities.
78 * - Figure 4-7 Secure read of the priority field for a Non-secure Group 1
79 * interrupt.
80 *
81 * For now, we only support pseudo-NMIs if we have non-secure view of
82 * priorities.
83 */
84static DEFINE_STATIC_KEY_FALSE(supports_pseudo_nmis);
85
101b35f7
JT
86/* ppi_nmi_refs[n] == number of cpus having ppi[n + 16] set as NMI */
87static refcount_t ppi_nmi_refs[16];
88
1839e576 89static struct gic_kvm_info gic_v3_kvm_info;
eda0d04a 90static DEFINE_PER_CPU(bool, has_rss);
1839e576 91
eda0d04a 92#define MPIDR_RS(mpidr) (((mpidr) & 0xF0UL) >> 4)
f5c1434c
MZ
93#define gic_data_rdist() (this_cpu_ptr(gic_data.rdists.rdist))
94#define gic_data_rdist_rd_base() (gic_data_rdist()->rd_base)
021f6537
MZ
95#define gic_data_rdist_sgi_base() (gic_data_rdist_rd_base() + SZ_64K)
96
97/* Our default, arbitrary priority value. Linux only uses one anyway. */
98#define DEFAULT_PMR_VALUE 0xf0
99
100static inline unsigned int gic_irq(struct irq_data *d)
101{
102 return d->hwirq;
103}
104
105static inline int gic_irq_in_rdist(struct irq_data *d)
106{
107 return gic_irq(d) < 32;
108}
109
110static inline void __iomem *gic_dist_base(struct irq_data *d)
111{
112 if (gic_irq_in_rdist(d)) /* SGI+PPI -> SGI_base for this CPU */
113 return gic_data_rdist_sgi_base();
114
115 if (d->hwirq <= 1023) /* SPI -> dist_base */
116 return gic_data.dist_base;
117
021f6537
MZ
118 return NULL;
119}
120
121static void gic_do_wait_for_rwp(void __iomem *base)
122{
123 u32 count = 1000000; /* 1s! */
124
125 while (readl_relaxed(base + GICD_CTLR) & GICD_CTLR_RWP) {
126 count--;
127 if (!count) {
128 pr_err_ratelimited("RWP timeout, gone fishing\n");
129 return;
130 }
131 cpu_relax();
132 udelay(1);
133 };
134}
135
136/* Wait for completion of a distributor change */
137static void gic_dist_wait_for_rwp(void)
138{
139 gic_do_wait_for_rwp(gic_data.dist_base);
140}
141
142/* Wait for completion of a redistributor change */
143static void gic_redist_wait_for_rwp(void)
144{
145 gic_do_wait_for_rwp(gic_data_rdist_rd_base());
146}
147
7936e914 148#ifdef CONFIG_ARM64
6d4e11c5
RR
149
150static u64 __maybe_unused gic_read_iar(void)
151{
a4023f68 152 if (cpus_have_const_cap(ARM64_WORKAROUND_CAVIUM_23154))
6d4e11c5
RR
153 return gic_read_iar_cavium_thunderx();
154 else
155 return gic_read_iar_common();
156}
7936e914 157#endif
021f6537 158
a2c22510 159static void gic_enable_redist(bool enable)
021f6537
MZ
160{
161 void __iomem *rbase;
162 u32 count = 1000000; /* 1s! */
163 u32 val;
164
9c8114c2
SK
165 if (gic_data.flags & FLAGS_WORKAROUND_GICR_WAKER_MSM8996)
166 return;
167
021f6537
MZ
168 rbase = gic_data_rdist_rd_base();
169
021f6537 170 val = readl_relaxed(rbase + GICR_WAKER);
a2c22510
SH
171 if (enable)
172 /* Wake up this CPU redistributor */
173 val &= ~GICR_WAKER_ProcessorSleep;
174 else
175 val |= GICR_WAKER_ProcessorSleep;
021f6537
MZ
176 writel_relaxed(val, rbase + GICR_WAKER);
177
a2c22510
SH
178 if (!enable) { /* Check that GICR_WAKER is writeable */
179 val = readl_relaxed(rbase + GICR_WAKER);
180 if (!(val & GICR_WAKER_ProcessorSleep))
181 return; /* No PM support in this redistributor */
182 }
183
d102eb5c 184 while (--count) {
a2c22510 185 val = readl_relaxed(rbase + GICR_WAKER);
cf1d9d11 186 if (enable ^ (bool)(val & GICR_WAKER_ChildrenAsleep))
a2c22510 187 break;
021f6537
MZ
188 cpu_relax();
189 udelay(1);
190 };
a2c22510
SH
191 if (!count)
192 pr_err_ratelimited("redistributor failed to %s...\n",
193 enable ? "wakeup" : "sleep");
021f6537
MZ
194}
195
196/*
197 * Routines to disable, enable, EOI and route interrupts
198 */
b594c6e2
MZ
199static int gic_peek_irq(struct irq_data *d, u32 offset)
200{
201 u32 mask = 1 << (gic_irq(d) % 32);
202 void __iomem *base;
203
204 if (gic_irq_in_rdist(d))
205 base = gic_data_rdist_sgi_base();
206 else
207 base = gic_data.dist_base;
208
209 return !!(readl_relaxed(base + offset + (gic_irq(d) / 32) * 4) & mask);
210}
211
021f6537
MZ
212static void gic_poke_irq(struct irq_data *d, u32 offset)
213{
214 u32 mask = 1 << (gic_irq(d) % 32);
215 void (*rwp_wait)(void);
216 void __iomem *base;
217
218 if (gic_irq_in_rdist(d)) {
219 base = gic_data_rdist_sgi_base();
220 rwp_wait = gic_redist_wait_for_rwp;
221 } else {
222 base = gic_data.dist_base;
223 rwp_wait = gic_dist_wait_for_rwp;
224 }
225
226 writel_relaxed(mask, base + offset + (gic_irq(d) / 32) * 4);
227 rwp_wait();
228}
229
021f6537
MZ
230static void gic_mask_irq(struct irq_data *d)
231{
232 gic_poke_irq(d, GICD_ICENABLER);
233}
234
0b6a3da9
MZ
235static void gic_eoimode1_mask_irq(struct irq_data *d)
236{
237 gic_mask_irq(d);
530bf353
MZ
238 /*
239 * When masking a forwarded interrupt, make sure it is
240 * deactivated as well.
241 *
242 * This ensures that an interrupt that is getting
243 * disabled/masked will not get "stuck", because there is
244 * noone to deactivate it (guest is being terminated).
245 */
4df7f54d 246 if (irqd_is_forwarded_to_vcpu(d))
530bf353 247 gic_poke_irq(d, GICD_ICACTIVER);
0b6a3da9
MZ
248}
249
021f6537
MZ
250static void gic_unmask_irq(struct irq_data *d)
251{
252 gic_poke_irq(d, GICD_ISENABLER);
253}
254
d98d0a99
JT
255static inline bool gic_supports_nmi(void)
256{
257 return IS_ENABLED(CONFIG_ARM64_PSEUDO_NMI) &&
258 static_branch_likely(&supports_pseudo_nmis);
259}
260
b594c6e2
MZ
261static int gic_irq_set_irqchip_state(struct irq_data *d,
262 enum irqchip_irq_state which, bool val)
263{
264 u32 reg;
265
266 if (d->hwirq >= gic_data.irq_nr) /* PPI/SPI only */
267 return -EINVAL;
268
269 switch (which) {
270 case IRQCHIP_STATE_PENDING:
271 reg = val ? GICD_ISPENDR : GICD_ICPENDR;
272 break;
273
274 case IRQCHIP_STATE_ACTIVE:
275 reg = val ? GICD_ISACTIVER : GICD_ICACTIVER;
276 break;
277
278 case IRQCHIP_STATE_MASKED:
279 reg = val ? GICD_ICENABLER : GICD_ISENABLER;
280 break;
281
282 default:
283 return -EINVAL;
284 }
285
286 gic_poke_irq(d, reg);
287 return 0;
288}
289
290static int gic_irq_get_irqchip_state(struct irq_data *d,
291 enum irqchip_irq_state which, bool *val)
292{
293 if (d->hwirq >= gic_data.irq_nr) /* PPI/SPI only */
294 return -EINVAL;
295
296 switch (which) {
297 case IRQCHIP_STATE_PENDING:
298 *val = gic_peek_irq(d, GICD_ISPENDR);
299 break;
300
301 case IRQCHIP_STATE_ACTIVE:
302 *val = gic_peek_irq(d, GICD_ISACTIVER);
303 break;
304
305 case IRQCHIP_STATE_MASKED:
306 *val = !gic_peek_irq(d, GICD_ISENABLER);
307 break;
308
309 default:
310 return -EINVAL;
311 }
312
313 return 0;
314}
315
101b35f7
JT
316static void gic_irq_set_prio(struct irq_data *d, u8 prio)
317{
318 void __iomem *base = gic_dist_base(d);
319
320 writeb_relaxed(prio, base + GICD_IPRIORITYR + gic_irq(d));
321}
322
323static int gic_irq_nmi_setup(struct irq_data *d)
324{
325 struct irq_desc *desc = irq_to_desc(d->irq);
326
327 if (!gic_supports_nmi())
328 return -EINVAL;
329
330 if (gic_peek_irq(d, GICD_ISENABLER)) {
331 pr_err("Cannot set NMI property of enabled IRQ %u\n", d->irq);
332 return -EINVAL;
333 }
334
335 /*
336 * A secondary irq_chip should be in charge of LPI request,
337 * it should not be possible to get there
338 */
339 if (WARN_ON(gic_irq(d) >= 8192))
340 return -EINVAL;
341
342 /* desc lock should already be held */
343 if (gic_irq(d) < 32) {
344 /* Setting up PPI as NMI, only switch handler for first NMI */
345 if (!refcount_inc_not_zero(&ppi_nmi_refs[gic_irq(d) - 16])) {
346 refcount_set(&ppi_nmi_refs[gic_irq(d) - 16], 1);
347 desc->handle_irq = handle_percpu_devid_fasteoi_nmi;
348 }
349 } else {
350 desc->handle_irq = handle_fasteoi_nmi;
351 }
352
353 gic_irq_set_prio(d, GICD_INT_NMI_PRI);
354
355 return 0;
356}
357
358static void gic_irq_nmi_teardown(struct irq_data *d)
359{
360 struct irq_desc *desc = irq_to_desc(d->irq);
361
362 if (WARN_ON(!gic_supports_nmi()))
363 return;
364
365 if (gic_peek_irq(d, GICD_ISENABLER)) {
366 pr_err("Cannot set NMI property of enabled IRQ %u\n", d->irq);
367 return;
368 }
369
370 /*
371 * A secondary irq_chip should be in charge of LPI request,
372 * it should not be possible to get there
373 */
374 if (WARN_ON(gic_irq(d) >= 8192))
375 return;
376
377 /* desc lock should already be held */
378 if (gic_irq(d) < 32) {
379 /* Tearing down NMI, only switch handler for last NMI */
380 if (refcount_dec_and_test(&ppi_nmi_refs[gic_irq(d) - 16]))
381 desc->handle_irq = handle_percpu_devid_irq;
382 } else {
383 desc->handle_irq = handle_fasteoi_irq;
384 }
385
386 gic_irq_set_prio(d, GICD_INT_DEF_PRI);
387}
388
021f6537
MZ
389static void gic_eoi_irq(struct irq_data *d)
390{
391 gic_write_eoir(gic_irq(d));
392}
393
0b6a3da9
MZ
394static void gic_eoimode1_eoi_irq(struct irq_data *d)
395{
396 /*
530bf353
MZ
397 * No need to deactivate an LPI, or an interrupt that
398 * is is getting forwarded to a vcpu.
0b6a3da9 399 */
4df7f54d 400 if (gic_irq(d) >= 8192 || irqd_is_forwarded_to_vcpu(d))
0b6a3da9
MZ
401 return;
402 gic_write_dir(gic_irq(d));
403}
404
021f6537
MZ
405static int gic_set_type(struct irq_data *d, unsigned int type)
406{
407 unsigned int irq = gic_irq(d);
408 void (*rwp_wait)(void);
409 void __iomem *base;
410
411 /* Interrupt configuration for SGIs can't be changed */
412 if (irq < 16)
413 return -EINVAL;
414
fb7e7deb
LD
415 /* SPIs have restrictions on the supported types */
416 if (irq >= 32 && type != IRQ_TYPE_LEVEL_HIGH &&
417 type != IRQ_TYPE_EDGE_RISING)
021f6537
MZ
418 return -EINVAL;
419
420 if (gic_irq_in_rdist(d)) {
421 base = gic_data_rdist_sgi_base();
422 rwp_wait = gic_redist_wait_for_rwp;
423 } else {
424 base = gic_data.dist_base;
425 rwp_wait = gic_dist_wait_for_rwp;
426 }
427
fb7e7deb 428 return gic_configure_irq(irq, type, base, rwp_wait);
021f6537
MZ
429}
430
530bf353
MZ
431static int gic_irq_set_vcpu_affinity(struct irq_data *d, void *vcpu)
432{
4df7f54d
TG
433 if (vcpu)
434 irqd_set_forwarded_to_vcpu(d);
435 else
436 irqd_clr_forwarded_to_vcpu(d);
530bf353
MZ
437 return 0;
438}
439
f6c86a41 440static u64 gic_mpidr_to_affinity(unsigned long mpidr)
021f6537
MZ
441{
442 u64 aff;
443
f6c86a41 444 aff = ((u64)MPIDR_AFFINITY_LEVEL(mpidr, 3) << 32 |
021f6537
MZ
445 MPIDR_AFFINITY_LEVEL(mpidr, 2) << 16 |
446 MPIDR_AFFINITY_LEVEL(mpidr, 1) << 8 |
447 MPIDR_AFFINITY_LEVEL(mpidr, 0));
448
449 return aff;
450}
451
f32c9266
JT
452static void gic_deactivate_unhandled(u32 irqnr)
453{
454 if (static_branch_likely(&supports_deactivate_key)) {
455 if (irqnr < 8192)
456 gic_write_dir(irqnr);
457 } else {
458 gic_write_eoir(irqnr);
459 }
460}
461
462static inline void gic_handle_nmi(u32 irqnr, struct pt_regs *regs)
463{
17ce302f 464 bool irqs_enabled = interrupts_enabled(regs);
f32c9266
JT
465 int err;
466
17ce302f
JT
467 if (irqs_enabled)
468 nmi_enter();
469
f32c9266
JT
470 if (static_branch_likely(&supports_deactivate_key))
471 gic_write_eoir(irqnr);
472 /*
473 * Leave the PSR.I bit set to prevent other NMIs to be
474 * received while handling this one.
475 * PSR.I will be restored when we ERET to the
476 * interrupted context.
477 */
478 err = handle_domain_nmi(gic_data.domain, irqnr, regs);
479 if (err)
480 gic_deactivate_unhandled(irqnr);
17ce302f
JT
481
482 if (irqs_enabled)
483 nmi_exit();
f32c9266
JT
484}
485
021f6537
MZ
486static asmlinkage void __exception_irq_entry gic_handle_irq(struct pt_regs *regs)
487{
f6c86a41 488 u32 irqnr;
021f6537 489
342677d7 490 irqnr = gic_read_iar();
021f6537 491
f32c9266
JT
492 if (gic_supports_nmi() &&
493 unlikely(gic_read_rpr() == GICD_INT_NMI_PRI)) {
494 gic_handle_nmi(irqnr, regs);
495 return;
496 }
497
3f1f3234
JT
498 if (gic_prio_masking_enabled()) {
499 gic_pmr_mask_irqs();
500 gic_arch_enable_irqs();
501 }
502
342677d7
JT
503 if (likely(irqnr > 15 && irqnr < 1020) || irqnr >= 8192) {
504 int err;
0b6a3da9 505
342677d7
JT
506 if (static_branch_likely(&supports_deactivate_key))
507 gic_write_eoir(irqnr);
508 else
509 isb();
510
511 err = handle_domain_irq(gic_data.domain, irqnr, regs);
512 if (err) {
513 WARN_ONCE(true, "Unexpected interrupt received!\n");
f32c9266 514 gic_deactivate_unhandled(irqnr);
021f6537 515 }
342677d7
JT
516 return;
517 }
518 if (irqnr < 16) {
519 gic_write_eoir(irqnr);
520 if (static_branch_likely(&supports_deactivate_key))
521 gic_write_dir(irqnr);
021f6537 522#ifdef CONFIG_SMP
342677d7
JT
523 /*
524 * Unlike GICv2, we don't need an smp_rmb() here.
525 * The control dependency from gic_read_iar to
526 * the ISB in gic_write_eoir is enough to ensure
527 * that any shared data read by handle_IPI will
528 * be read after the ACK.
529 */
530 handle_IPI(irqnr, regs);
021f6537 531#else
342677d7 532 WARN_ONCE(true, "Unexpected SGI received!\n");
021f6537 533#endif
342677d7 534 }
021f6537
MZ
535}
536
b5cf6073
JT
537static u32 gic_get_pribits(void)
538{
539 u32 pribits;
540
541 pribits = gic_read_ctlr();
542 pribits &= ICC_CTLR_EL1_PRI_BITS_MASK;
543 pribits >>= ICC_CTLR_EL1_PRI_BITS_SHIFT;
544 pribits++;
545
546 return pribits;
547}
548
549static bool gic_has_group0(void)
550{
551 u32 val;
e7932188
JT
552 u32 old_pmr;
553
554 old_pmr = gic_read_pmr();
b5cf6073
JT
555
556 /*
557 * Let's find out if Group0 is under control of EL3 or not by
558 * setting the highest possible, non-zero priority in PMR.
559 *
560 * If SCR_EL3.FIQ is set, the priority gets shifted down in
561 * order for the CPU interface to set bit 7, and keep the
562 * actual priority in the non-secure range. In the process, it
563 * looses the least significant bit and the actual priority
564 * becomes 0x80. Reading it back returns 0, indicating that
565 * we're don't have access to Group0.
566 */
567 gic_write_pmr(BIT(8 - gic_get_pribits()));
568 val = gic_read_pmr();
569
e7932188
JT
570 gic_write_pmr(old_pmr);
571
b5cf6073
JT
572 return val != 0;
573}
574
021f6537
MZ
575static void __init gic_dist_init(void)
576{
577 unsigned int i;
578 u64 affinity;
579 void __iomem *base = gic_data.dist_base;
580
581 /* Disable the distributor */
582 writel_relaxed(0, base + GICD_CTLR);
583 gic_dist_wait_for_rwp();
584
7c9b9730
MZ
585 /*
586 * Configure SPIs as non-secure Group-1. This will only matter
587 * if the GIC only has a single security state. This will not
588 * do the right thing if the kernel is running in secure mode,
589 * but that's not the intended use case anyway.
590 */
591 for (i = 32; i < gic_data.irq_nr; i += 32)
592 writel_relaxed(~0, base + GICD_IGROUPR + i / 8);
593
021f6537
MZ
594 gic_dist_config(base, gic_data.irq_nr, gic_dist_wait_for_rwp);
595
596 /* Enable distributor with ARE, Group1 */
597 writel_relaxed(GICD_CTLR_ARE_NS | GICD_CTLR_ENABLE_G1A | GICD_CTLR_ENABLE_G1,
598 base + GICD_CTLR);
599
600 /*
601 * Set all global interrupts to the boot CPU only. ARE must be
602 * enabled.
603 */
604 affinity = gic_mpidr_to_affinity(cpu_logical_map(smp_processor_id()));
605 for (i = 32; i < gic_data.irq_nr; i++)
72c97126 606 gic_write_irouter(affinity, base + GICD_IROUTER + i * 8);
021f6537
MZ
607}
608
0d94ded2 609static int gic_iterate_rdists(int (*fn)(struct redist_region *, void __iomem *))
021f6537 610{
0d94ded2 611 int ret = -ENODEV;
021f6537
MZ
612 int i;
613
f5c1434c
MZ
614 for (i = 0; i < gic_data.nr_redist_regions; i++) {
615 void __iomem *ptr = gic_data.redist_regions[i].redist_base;
0d94ded2 616 u64 typer;
021f6537
MZ
617 u32 reg;
618
619 reg = readl_relaxed(ptr + GICR_PIDR2) & GIC_PIDR2_ARCH_MASK;
620 if (reg != GIC_PIDR2_ARCH_GICv3 &&
621 reg != GIC_PIDR2_ARCH_GICv4) { /* We're in trouble... */
622 pr_warn("No redistributor present @%p\n", ptr);
623 break;
624 }
625
626 do {
72c97126 627 typer = gic_read_typer(ptr + GICR_TYPER);
0d94ded2
MZ
628 ret = fn(gic_data.redist_regions + i, ptr);
629 if (!ret)
021f6537 630 return 0;
021f6537 631
b70fb7af
TN
632 if (gic_data.redist_regions[i].single_redist)
633 break;
634
021f6537
MZ
635 if (gic_data.redist_stride) {
636 ptr += gic_data.redist_stride;
637 } else {
638 ptr += SZ_64K * 2; /* Skip RD_base + SGI_base */
639 if (typer & GICR_TYPER_VLPIS)
640 ptr += SZ_64K * 2; /* Skip VLPI_base + reserved page */
641 }
642 } while (!(typer & GICR_TYPER_LAST));
643 }
644
0d94ded2
MZ
645 return ret ? -ENODEV : 0;
646}
647
648static int __gic_populate_rdist(struct redist_region *region, void __iomem *ptr)
649{
650 unsigned long mpidr = cpu_logical_map(smp_processor_id());
651 u64 typer;
652 u32 aff;
653
654 /*
655 * Convert affinity to a 32bit value that can be matched to
656 * GICR_TYPER bits [63:32].
657 */
658 aff = (MPIDR_AFFINITY_LEVEL(mpidr, 3) << 24 |
659 MPIDR_AFFINITY_LEVEL(mpidr, 2) << 16 |
660 MPIDR_AFFINITY_LEVEL(mpidr, 1) << 8 |
661 MPIDR_AFFINITY_LEVEL(mpidr, 0));
662
663 typer = gic_read_typer(ptr + GICR_TYPER);
664 if ((typer >> 32) == aff) {
665 u64 offset = ptr - region->redist_base;
666 gic_data_rdist_rd_base() = ptr;
667 gic_data_rdist()->phys_base = region->phys_base + offset;
668
669 pr_info("CPU%d: found redistributor %lx region %d:%pa\n",
670 smp_processor_id(), mpidr,
671 (int)(region - gic_data.redist_regions),
672 &gic_data_rdist()->phys_base);
673 return 0;
674 }
675
676 /* Try next one */
677 return 1;
678}
679
680static int gic_populate_rdist(void)
681{
682 if (gic_iterate_rdists(__gic_populate_rdist) == 0)
683 return 0;
684
021f6537 685 /* We couldn't even deal with ourselves... */
f6c86a41 686 WARN(true, "CPU%d: mpidr %lx has no re-distributor!\n",
0d94ded2
MZ
687 smp_processor_id(),
688 (unsigned long)cpu_logical_map(smp_processor_id()));
021f6537
MZ
689 return -ENODEV;
690}
691
0edc23ea
MZ
692static int __gic_update_vlpi_properties(struct redist_region *region,
693 void __iomem *ptr)
694{
695 u64 typer = gic_read_typer(ptr + GICR_TYPER);
696 gic_data.rdists.has_vlpis &= !!(typer & GICR_TYPER_VLPIS);
697 gic_data.rdists.has_direct_lpi &= !!(typer & GICR_TYPER_DirectLPIS);
698
699 return 1;
700}
701
702static void gic_update_vlpi_properties(void)
703{
704 gic_iterate_rdists(__gic_update_vlpi_properties);
705 pr_info("%sVLPI support, %sdirect LPI support\n",
706 !gic_data.rdists.has_vlpis ? "no " : "",
707 !gic_data.rdists.has_direct_lpi ? "no " : "");
708}
709
d98d0a99
JT
710/* Check whether it's single security state view */
711static inline bool gic_dist_security_disabled(void)
712{
713 return readl_relaxed(gic_data.dist_base + GICD_CTLR) & GICD_CTLR_DS;
714}
715
3708d52f
SH
716static void gic_cpu_sys_reg_init(void)
717{
eda0d04a
SD
718 int i, cpu = smp_processor_id();
719 u64 mpidr = cpu_logical_map(cpu);
720 u64 need_rss = MPIDR_RS(mpidr);
33625282 721 bool group0;
b5cf6073 722 u32 pribits;
eda0d04a 723
7cabd008
MZ
724 /*
725 * Need to check that the SRE bit has actually been set. If
726 * not, it means that SRE is disabled at EL2. We're going to
727 * die painfully, and there is nothing we can do about it.
728 *
729 * Kindly inform the luser.
730 */
731 if (!gic_enable_sre())
732 pr_err("GIC: unable to set SRE (disabled at EL2), panic ahead\n");
3708d52f 733
b5cf6073 734 pribits = gic_get_pribits();
33625282 735
b5cf6073 736 group0 = gic_has_group0();
33625282 737
3708d52f 738 /* Set priority mask register */
d98d0a99 739 if (!gic_prio_masking_enabled()) {
e7932188 740 write_gicreg(DEFAULT_PMR_VALUE, ICC_PMR_EL1);
d98d0a99
JT
741 } else {
742 /*
743 * Mismatch configuration with boot CPU, the system is likely
744 * to die as interrupt masking will not work properly on all
745 * CPUs
746 */
747 WARN_ON(gic_supports_nmi() && group0 &&
748 !gic_dist_security_disabled());
749 }
3708d52f 750
91ef8442
DT
751 /*
752 * Some firmwares hand over to the kernel with the BPR changed from
753 * its reset value (and with a value large enough to prevent
754 * any pre-emptive interrupts from working at all). Writing a zero
755 * to BPR restores is reset value.
756 */
757 gic_write_bpr1(0);
758
d01d3274 759 if (static_branch_likely(&supports_deactivate_key)) {
0b6a3da9
MZ
760 /* EOI drops priority only (mode 1) */
761 gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop);
762 } else {
763 /* EOI deactivates interrupt too (mode 0) */
764 gic_write_ctlr(ICC_CTLR_EL1_EOImode_drop_dir);
765 }
3708d52f 766
33625282
MZ
767 /* Always whack Group0 before Group1 */
768 if (group0) {
769 switch(pribits) {
770 case 8:
771 case 7:
772 write_gicreg(0, ICC_AP0R3_EL1);
773 write_gicreg(0, ICC_AP0R2_EL1);
774 case 6:
775 write_gicreg(0, ICC_AP0R1_EL1);
776 case 5:
777 case 4:
778 write_gicreg(0, ICC_AP0R0_EL1);
779 }
780
781 isb();
782 }
d6062a6d 783
33625282 784 switch(pribits) {
d6062a6d
MZ
785 case 8:
786 case 7:
d6062a6d 787 write_gicreg(0, ICC_AP1R3_EL1);
d6062a6d
MZ
788 write_gicreg(0, ICC_AP1R2_EL1);
789 case 6:
d6062a6d
MZ
790 write_gicreg(0, ICC_AP1R1_EL1);
791 case 5:
792 case 4:
d6062a6d
MZ
793 write_gicreg(0, ICC_AP1R0_EL1);
794 }
795
796 isb();
797
3708d52f
SH
798 /* ... and let's hit the road... */
799 gic_write_grpen1(1);
eda0d04a
SD
800
801 /* Keep the RSS capability status in per_cpu variable */
802 per_cpu(has_rss, cpu) = !!(gic_read_ctlr() & ICC_CTLR_EL1_RSS);
803
804 /* Check all the CPUs have capable of sending SGIs to other CPUs */
805 for_each_online_cpu(i) {
806 bool have_rss = per_cpu(has_rss, i) && per_cpu(has_rss, cpu);
807
808 need_rss |= MPIDR_RS(cpu_logical_map(i));
809 if (need_rss && (!have_rss))
810 pr_crit("CPU%d (%lx) can't SGI CPU%d (%lx), no RSS\n",
811 cpu, (unsigned long)mpidr,
812 i, (unsigned long)cpu_logical_map(i));
813 }
814
815 /**
816 * GIC spec says, when ICC_CTLR_EL1.RSS==1 and GICD_TYPER.RSS==0,
817 * writing ICC_ASGI1R_EL1 register with RS != 0 is a CONSTRAINED
818 * UNPREDICTABLE choice of :
819 * - The write is ignored.
820 * - The RS field is treated as 0.
821 */
822 if (need_rss && (!gic_data.has_rss))
823 pr_crit_once("RSS is required but GICD doesn't support it\n");
3708d52f
SH
824}
825
f736d65d
MZ
826static bool gicv3_nolpi;
827
828static int __init gicv3_nolpi_cfg(char *buf)
829{
830 return strtobool(buf, &gicv3_nolpi);
831}
832early_param("irqchip.gicv3_nolpi", gicv3_nolpi_cfg);
833
da33f31d
MZ
834static int gic_dist_supports_lpis(void)
835{
d38a71c5
MZ
836 return (IS_ENABLED(CONFIG_ARM_GIC_V3_ITS) &&
837 !!(readl_relaxed(gic_data.dist_base + GICD_TYPER) & GICD_TYPER_LPIS) &&
838 !gicv3_nolpi);
da33f31d
MZ
839}
840
021f6537
MZ
841static void gic_cpu_init(void)
842{
843 void __iomem *rbase;
844
845 /* Register ourselves with the rest of the world */
846 if (gic_populate_rdist())
847 return;
848
a2c22510 849 gic_enable_redist(true);
021f6537
MZ
850
851 rbase = gic_data_rdist_sgi_base();
852
7c9b9730
MZ
853 /* Configure SGIs/PPIs as non-secure Group-1 */
854 writel_relaxed(~0, rbase + GICR_IGROUPR0);
855
021f6537
MZ
856 gic_cpu_config(rbase, gic_redist_wait_for_rwp);
857
3708d52f
SH
858 /* initialise system registers */
859 gic_cpu_sys_reg_init();
021f6537
MZ
860}
861
862#ifdef CONFIG_SMP
6670a6d8 863
eda0d04a
SD
864#define MPIDR_TO_SGI_RS(mpidr) (MPIDR_RS(mpidr) << ICC_SGI1R_RS_SHIFT)
865#define MPIDR_TO_SGI_CLUSTER_ID(mpidr) ((mpidr) & ~0xFUL)
866
6670a6d8 867static int gic_starting_cpu(unsigned int cpu)
021f6537 868{
6670a6d8 869 gic_cpu_init();
d38a71c5
MZ
870
871 if (gic_dist_supports_lpis())
872 its_cpu_init();
873
6670a6d8 874 return 0;
021f6537
MZ
875}
876
021f6537 877static u16 gic_compute_target_list(int *base_cpu, const struct cpumask *mask,
f6c86a41 878 unsigned long cluster_id)
021f6537 879{
727653d6 880 int next_cpu, cpu = *base_cpu;
f6c86a41 881 unsigned long mpidr = cpu_logical_map(cpu);
021f6537
MZ
882 u16 tlist = 0;
883
884 while (cpu < nr_cpu_ids) {
021f6537
MZ
885 tlist |= 1 << (mpidr & 0xf);
886
727653d6
JM
887 next_cpu = cpumask_next(cpu, mask);
888 if (next_cpu >= nr_cpu_ids)
021f6537 889 goto out;
727653d6 890 cpu = next_cpu;
021f6537
MZ
891
892 mpidr = cpu_logical_map(cpu);
893
eda0d04a 894 if (cluster_id != MPIDR_TO_SGI_CLUSTER_ID(mpidr)) {
021f6537
MZ
895 cpu--;
896 goto out;
897 }
898 }
899out:
900 *base_cpu = cpu;
901 return tlist;
902}
903
7e580278
AP
904#define MPIDR_TO_SGI_AFFINITY(cluster_id, level) \
905 (MPIDR_AFFINITY_LEVEL(cluster_id, level) \
906 << ICC_SGI1R_AFFINITY_## level ##_SHIFT)
907
021f6537
MZ
908static void gic_send_sgi(u64 cluster_id, u16 tlist, unsigned int irq)
909{
910 u64 val;
911
7e580278
AP
912 val = (MPIDR_TO_SGI_AFFINITY(cluster_id, 3) |
913 MPIDR_TO_SGI_AFFINITY(cluster_id, 2) |
914 irq << ICC_SGI1R_SGI_ID_SHIFT |
915 MPIDR_TO_SGI_AFFINITY(cluster_id, 1) |
eda0d04a 916 MPIDR_TO_SGI_RS(cluster_id) |
7e580278 917 tlist << ICC_SGI1R_TARGET_LIST_SHIFT);
021f6537 918
b6dd4d83 919 pr_devel("CPU%d: ICC_SGI1R_EL1 %llx\n", smp_processor_id(), val);
021f6537
MZ
920 gic_write_sgi1r(val);
921}
922
923static void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)
924{
925 int cpu;
926
927 if (WARN_ON(irq >= 16))
928 return;
929
930 /*
931 * Ensure that stores to Normal memory are visible to the
932 * other CPUs before issuing the IPI.
933 */
21ec30c0 934 wmb();
021f6537 935
f9b531fe 936 for_each_cpu(cpu, mask) {
eda0d04a 937 u64 cluster_id = MPIDR_TO_SGI_CLUSTER_ID(cpu_logical_map(cpu));
021f6537
MZ
938 u16 tlist;
939
940 tlist = gic_compute_target_list(&cpu, mask, cluster_id);
941 gic_send_sgi(cluster_id, tlist, irq);
942 }
943
944 /* Force the above writes to ICC_SGI1R_EL1 to be executed */
945 isb();
946}
947
948static void gic_smp_init(void)
949{
950 set_smp_cross_call(gic_raise_softirq);
6896bcd1 951 cpuhp_setup_state_nocalls(CPUHP_AP_IRQ_GIC_STARTING,
73c1b41e
TG
952 "irqchip/arm/gicv3:starting",
953 gic_starting_cpu, NULL);
021f6537
MZ
954}
955
956static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
957 bool force)
958{
65a30f8b 959 unsigned int cpu;
021f6537
MZ
960 void __iomem *reg;
961 int enabled;
962 u64 val;
963
65a30f8b
SP
964 if (force)
965 cpu = cpumask_first(mask_val);
966 else
967 cpu = cpumask_any_and(mask_val, cpu_online_mask);
968
866d7c1b
SP
969 if (cpu >= nr_cpu_ids)
970 return -EINVAL;
971
021f6537
MZ
972 if (gic_irq_in_rdist(d))
973 return -EINVAL;
974
975 /* If interrupt was enabled, disable it first */
976 enabled = gic_peek_irq(d, GICD_ISENABLER);
977 if (enabled)
978 gic_mask_irq(d);
979
980 reg = gic_dist_base(d) + GICD_IROUTER + (gic_irq(d) * 8);
981 val = gic_mpidr_to_affinity(cpu_logical_map(cpu));
982
72c97126 983 gic_write_irouter(val, reg);
021f6537
MZ
984
985 /*
986 * If the interrupt was enabled, enabled it again. Otherwise,
987 * just wait for the distributor to have digested our changes.
988 */
989 if (enabled)
990 gic_unmask_irq(d);
991 else
992 gic_dist_wait_for_rwp();
993
956ae91a
MZ
994 irq_data_update_effective_affinity(d, cpumask_of(cpu));
995
0fc6fa29 996 return IRQ_SET_MASK_OK_DONE;
021f6537
MZ
997}
998#else
999#define gic_set_affinity NULL
1000#define gic_smp_init() do { } while(0)
1001#endif
1002
3708d52f
SH
1003#ifdef CONFIG_CPU_PM
1004static int gic_cpu_pm_notifier(struct notifier_block *self,
1005 unsigned long cmd, void *v)
1006{
1007 if (cmd == CPU_PM_EXIT) {
ccd9432a
SH
1008 if (gic_dist_security_disabled())
1009 gic_enable_redist(true);
3708d52f 1010 gic_cpu_sys_reg_init();
ccd9432a 1011 } else if (cmd == CPU_PM_ENTER && gic_dist_security_disabled()) {
3708d52f
SH
1012 gic_write_grpen1(0);
1013 gic_enable_redist(false);
1014 }
1015 return NOTIFY_OK;
1016}
1017
1018static struct notifier_block gic_cpu_pm_notifier_block = {
1019 .notifier_call = gic_cpu_pm_notifier,
1020};
1021
1022static void gic_cpu_pm_init(void)
1023{
1024 cpu_pm_register_notifier(&gic_cpu_pm_notifier_block);
1025}
1026
1027#else
1028static inline void gic_cpu_pm_init(void) { }
1029#endif /* CONFIG_CPU_PM */
1030
021f6537
MZ
1031static struct irq_chip gic_chip = {
1032 .name = "GICv3",
1033 .irq_mask = gic_mask_irq,
1034 .irq_unmask = gic_unmask_irq,
1035 .irq_eoi = gic_eoi_irq,
1036 .irq_set_type = gic_set_type,
1037 .irq_set_affinity = gic_set_affinity,
b594c6e2
MZ
1038 .irq_get_irqchip_state = gic_irq_get_irqchip_state,
1039 .irq_set_irqchip_state = gic_irq_set_irqchip_state,
101b35f7
JT
1040 .irq_nmi_setup = gic_irq_nmi_setup,
1041 .irq_nmi_teardown = gic_irq_nmi_teardown,
4110b5cb
MZ
1042 .flags = IRQCHIP_SET_TYPE_MASKED |
1043 IRQCHIP_SKIP_SET_WAKE |
1044 IRQCHIP_MASK_ON_SUSPEND,
021f6537
MZ
1045};
1046
0b6a3da9
MZ
1047static struct irq_chip gic_eoimode1_chip = {
1048 .name = "GICv3",
1049 .irq_mask = gic_eoimode1_mask_irq,
1050 .irq_unmask = gic_unmask_irq,
1051 .irq_eoi = gic_eoimode1_eoi_irq,
1052 .irq_set_type = gic_set_type,
1053 .irq_set_affinity = gic_set_affinity,
1054 .irq_get_irqchip_state = gic_irq_get_irqchip_state,
1055 .irq_set_irqchip_state = gic_irq_set_irqchip_state,
530bf353 1056 .irq_set_vcpu_affinity = gic_irq_set_vcpu_affinity,
101b35f7
JT
1057 .irq_nmi_setup = gic_irq_nmi_setup,
1058 .irq_nmi_teardown = gic_irq_nmi_teardown,
4110b5cb
MZ
1059 .flags = IRQCHIP_SET_TYPE_MASKED |
1060 IRQCHIP_SKIP_SET_WAKE |
1061 IRQCHIP_MASK_ON_SUSPEND,
0b6a3da9
MZ
1062};
1063
a4f9edb2 1064#define GIC_ID_NR (1U << GICD_TYPER_ID_BITS(gic_data.rdists.gicd_typer))
da33f31d 1065
021f6537
MZ
1066static int gic_irq_domain_map(struct irq_domain *d, unsigned int irq,
1067 irq_hw_number_t hw)
1068{
0b6a3da9
MZ
1069 struct irq_chip *chip = &gic_chip;
1070
d01d3274 1071 if (static_branch_likely(&supports_deactivate_key))
0b6a3da9
MZ
1072 chip = &gic_eoimode1_chip;
1073
021f6537
MZ
1074 /* SGIs are private to the core kernel */
1075 if (hw < 16)
1076 return -EPERM;
da33f31d
MZ
1077 /* Nothing here */
1078 if (hw >= gic_data.irq_nr && hw < 8192)
1079 return -EPERM;
1080 /* Off limits */
1081 if (hw >= GIC_ID_NR)
1082 return -EPERM;
1083
021f6537
MZ
1084 /* PPIs */
1085 if (hw < 32) {
1086 irq_set_percpu_devid(irq);
0b6a3da9 1087 irq_domain_set_info(d, irq, hw, chip, d->host_data,
443acc4f 1088 handle_percpu_devid_irq, NULL, NULL);
d17cab44 1089 irq_set_status_flags(irq, IRQ_NOAUTOEN);
021f6537
MZ
1090 }
1091 /* SPIs */
1092 if (hw >= 32 && hw < gic_data.irq_nr) {
0b6a3da9 1093 irq_domain_set_info(d, irq, hw, chip, d->host_data,
443acc4f 1094 handle_fasteoi_irq, NULL, NULL);
d17cab44 1095 irq_set_probe(irq);
956ae91a 1096 irqd_set_single_target(irq_desc_get_irq_data(irq_to_desc(irq)));
021f6537 1097 }
da33f31d
MZ
1098 /* LPIs */
1099 if (hw >= 8192 && hw < GIC_ID_NR) {
1100 if (!gic_dist_supports_lpis())
1101 return -EPERM;
0b6a3da9 1102 irq_domain_set_info(d, irq, hw, chip, d->host_data,
da33f31d 1103 handle_fasteoi_irq, NULL, NULL);
da33f31d
MZ
1104 }
1105
021f6537
MZ
1106 return 0;
1107}
1108
65da7d19
MZ
1109#define GIC_IRQ_TYPE_PARTITION (GIC_IRQ_TYPE_LPI + 1)
1110
f833f57f
MZ
1111static int gic_irq_domain_translate(struct irq_domain *d,
1112 struct irq_fwspec *fwspec,
1113 unsigned long *hwirq,
1114 unsigned int *type)
021f6537 1115{
f833f57f
MZ
1116 if (is_of_node(fwspec->fwnode)) {
1117 if (fwspec->param_count < 3)
1118 return -EINVAL;
021f6537 1119
db8c70ec
MZ
1120 switch (fwspec->param[0]) {
1121 case 0: /* SPI */
1122 *hwirq = fwspec->param[1] + 32;
1123 break;
1124 case 1: /* PPI */
65da7d19 1125 case GIC_IRQ_TYPE_PARTITION:
db8c70ec
MZ
1126 *hwirq = fwspec->param[1] + 16;
1127 break;
1128 case GIC_IRQ_TYPE_LPI: /* LPI */
1129 *hwirq = fwspec->param[1];
1130 break;
1131 default:
1132 return -EINVAL;
1133 }
f833f57f
MZ
1134
1135 *type = fwspec->param[2] & IRQ_TYPE_SENSE_MASK;
6ef6386e 1136
65da7d19
MZ
1137 /*
1138 * Make it clear that broken DTs are... broken.
1139 * Partitionned PPIs are an unfortunate exception.
1140 */
1141 WARN_ON(*type == IRQ_TYPE_NONE &&
1142 fwspec->param[0] != GIC_IRQ_TYPE_PARTITION);
f833f57f 1143 return 0;
021f6537
MZ
1144 }
1145
ffa7d616
TN
1146 if (is_fwnode_irqchip(fwspec->fwnode)) {
1147 if(fwspec->param_count != 2)
1148 return -EINVAL;
1149
1150 *hwirq = fwspec->param[0];
1151 *type = fwspec->param[1];
6ef6386e
MZ
1152
1153 WARN_ON(*type == IRQ_TYPE_NONE);
ffa7d616
TN
1154 return 0;
1155 }
1156
f833f57f 1157 return -EINVAL;
021f6537
MZ
1158}
1159
443acc4f
MZ
1160static int gic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
1161 unsigned int nr_irqs, void *arg)
1162{
1163 int i, ret;
1164 irq_hw_number_t hwirq;
1165 unsigned int type = IRQ_TYPE_NONE;
f833f57f 1166 struct irq_fwspec *fwspec = arg;
443acc4f 1167
f833f57f 1168 ret = gic_irq_domain_translate(domain, fwspec, &hwirq, &type);
443acc4f
MZ
1169 if (ret)
1170 return ret;
1171
63c16c6e
SP
1172 for (i = 0; i < nr_irqs; i++) {
1173 ret = gic_irq_domain_map(domain, virq + i, hwirq + i);
1174 if (ret)
1175 return ret;
1176 }
443acc4f
MZ
1177
1178 return 0;
1179}
1180
1181static void gic_irq_domain_free(struct irq_domain *domain, unsigned int virq,
1182 unsigned int nr_irqs)
1183{
1184 int i;
1185
1186 for (i = 0; i < nr_irqs; i++) {
1187 struct irq_data *d = irq_domain_get_irq_data(domain, virq + i);
1188 irq_set_handler(virq + i, NULL);
1189 irq_domain_reset_irq_data(d);
1190 }
1191}
1192
e3825ba1
MZ
1193static int gic_irq_domain_select(struct irq_domain *d,
1194 struct irq_fwspec *fwspec,
1195 enum irq_domain_bus_token bus_token)
1196{
1197 /* Not for us */
1198 if (fwspec->fwnode != d->fwnode)
1199 return 0;
1200
1201 /* If this is not DT, then we have a single domain */
1202 if (!is_of_node(fwspec->fwnode))
1203 return 1;
1204
1205 /*
1206 * If this is a PPI and we have a 4th (non-null) parameter,
1207 * then we need to match the partition domain.
1208 */
1209 if (fwspec->param_count >= 4 &&
1210 fwspec->param[0] == 1 && fwspec->param[3] != 0)
1211 return d == partition_get_domain(gic_data.ppi_descs[fwspec->param[1]]);
1212
1213 return d == gic_data.domain;
1214}
1215
021f6537 1216static const struct irq_domain_ops gic_irq_domain_ops = {
f833f57f 1217 .translate = gic_irq_domain_translate,
443acc4f
MZ
1218 .alloc = gic_irq_domain_alloc,
1219 .free = gic_irq_domain_free,
e3825ba1
MZ
1220 .select = gic_irq_domain_select,
1221};
1222
1223static int partition_domain_translate(struct irq_domain *d,
1224 struct irq_fwspec *fwspec,
1225 unsigned long *hwirq,
1226 unsigned int *type)
1227{
1228 struct device_node *np;
1229 int ret;
1230
1231 np = of_find_node_by_phandle(fwspec->param[3]);
1232 if (WARN_ON(!np))
1233 return -EINVAL;
1234
1235 ret = partition_translate_id(gic_data.ppi_descs[fwspec->param[1]],
1236 of_node_to_fwnode(np));
1237 if (ret < 0)
1238 return ret;
1239
1240 *hwirq = ret;
1241 *type = fwspec->param[2] & IRQ_TYPE_SENSE_MASK;
1242
1243 return 0;
1244}
1245
1246static const struct irq_domain_ops partition_domain_ops = {
1247 .translate = partition_domain_translate,
1248 .select = gic_irq_domain_select,
021f6537
MZ
1249};
1250
9c8114c2
SK
1251static bool gic_enable_quirk_msm8996(void *data)
1252{
1253 struct gic_chip_data *d = data;
1254
1255 d->flags |= FLAGS_WORKAROUND_GICR_WAKER_MSM8996;
1256
1257 return true;
1258}
1259
d98d0a99
JT
1260static void gic_enable_nmi_support(void)
1261{
101b35f7
JT
1262 int i;
1263
1264 for (i = 0; i < 16; i++)
1265 refcount_set(&ppi_nmi_refs[i], 0);
1266
d98d0a99 1267 static_branch_enable(&supports_pseudo_nmis);
101b35f7
JT
1268
1269 if (static_branch_likely(&supports_deactivate_key))
1270 gic_eoimode1_chip.flags |= IRQCHIP_SUPPORTS_NMI;
1271 else
1272 gic_chip.flags |= IRQCHIP_SUPPORTS_NMI;
d98d0a99
JT
1273}
1274
db57d746
TN
1275static int __init gic_init_bases(void __iomem *dist_base,
1276 struct redist_region *rdist_regs,
1277 u32 nr_redist_regions,
1278 u64 redist_stride,
1279 struct fwnode_handle *handle)
021f6537 1280{
f5c1434c 1281 u32 typer;
021f6537
MZ
1282 int gic_irqs;
1283 int err;
021f6537 1284
0b6a3da9 1285 if (!is_hyp_mode_available())
d01d3274 1286 static_branch_disable(&supports_deactivate_key);
0b6a3da9 1287
d01d3274 1288 if (static_branch_likely(&supports_deactivate_key))
0b6a3da9
MZ
1289 pr_info("GIC: Using split EOI/Deactivate mode\n");
1290
e3825ba1 1291 gic_data.fwnode = handle;
021f6537 1292 gic_data.dist_base = dist_base;
f5c1434c
MZ
1293 gic_data.redist_regions = rdist_regs;
1294 gic_data.nr_redist_regions = nr_redist_regions;
021f6537
MZ
1295 gic_data.redist_stride = redist_stride;
1296
1297 /*
1298 * Find out how many interrupts are supported.
1299 * The GIC only supports up to 1020 interrupt sources (SGI+PPI+SPI)
1300 */
f5c1434c 1301 typer = readl_relaxed(gic_data.dist_base + GICD_TYPER);
a4f9edb2 1302 gic_data.rdists.gicd_typer = typer;
f5c1434c 1303 gic_irqs = GICD_TYPER_IRQS(typer);
021f6537
MZ
1304 if (gic_irqs > 1020)
1305 gic_irqs = 1020;
1306 gic_data.irq_nr = gic_irqs;
1307
db57d746
TN
1308 gic_data.domain = irq_domain_create_tree(handle, &gic_irq_domain_ops,
1309 &gic_data);
b2425b51 1310 irq_domain_update_bus_token(gic_data.domain, DOMAIN_BUS_WIRED);
f5c1434c 1311 gic_data.rdists.rdist = alloc_percpu(typeof(*gic_data.rdists.rdist));
0edc23ea
MZ
1312 gic_data.rdists.has_vlpis = true;
1313 gic_data.rdists.has_direct_lpi = true;
021f6537 1314
f5c1434c 1315 if (WARN_ON(!gic_data.domain) || WARN_ON(!gic_data.rdists.rdist)) {
021f6537
MZ
1316 err = -ENOMEM;
1317 goto out_free;
1318 }
1319
eda0d04a
SD
1320 gic_data.has_rss = !!(typer & GICD_TYPER_RSS);
1321 pr_info("Distributor has %sRange Selector support\n",
1322 gic_data.has_rss ? "" : "no ");
1323
50528752
MZ
1324 if (typer & GICD_TYPER_MBIS) {
1325 err = mbi_init(handle, gic_data.domain);
1326 if (err)
1327 pr_err("Failed to initialize MBIs\n");
1328 }
1329
021f6537
MZ
1330 set_handle_irq(gic_handle_irq);
1331
0edc23ea
MZ
1332 gic_update_vlpi_properties();
1333
021f6537
MZ
1334 gic_smp_init();
1335 gic_dist_init();
1336 gic_cpu_init();
3708d52f 1337 gic_cpu_pm_init();
021f6537 1338
d38a71c5
MZ
1339 if (gic_dist_supports_lpis()) {
1340 its_init(handle, &gic_data.rdists, gic_data.domain);
1341 its_cpu_init();
90b4c555
ZZ
1342 } else {
1343 if (IS_ENABLED(CONFIG_ARM_GIC_V2M))
1344 gicv2m_init(handle, gic_data.domain);
d38a71c5
MZ
1345 }
1346
d98d0a99
JT
1347 if (gic_prio_masking_enabled()) {
1348 if (!gic_has_group0() || gic_dist_security_disabled())
1349 gic_enable_nmi_support();
1350 else
1351 pr_warn("SCR_EL3.FIQ is cleared, cannot enable use of pseudo-NMIs\n");
1352 }
1353
021f6537
MZ
1354 return 0;
1355
1356out_free:
1357 if (gic_data.domain)
1358 irq_domain_remove(gic_data.domain);
f5c1434c 1359 free_percpu(gic_data.rdists.rdist);
db57d746
TN
1360 return err;
1361}
1362
1363static int __init gic_validate_dist_version(void __iomem *dist_base)
1364{
1365 u32 reg = readl_relaxed(dist_base + GICD_PIDR2) & GIC_PIDR2_ARCH_MASK;
1366
1367 if (reg != GIC_PIDR2_ARCH_GICv3 && reg != GIC_PIDR2_ARCH_GICv4)
1368 return -ENODEV;
1369
1370 return 0;
1371}
1372
e3825ba1 1373/* Create all possible partitions at boot time */
7beaa24b 1374static void __init gic_populate_ppi_partitions(struct device_node *gic_node)
e3825ba1
MZ
1375{
1376 struct device_node *parts_node, *child_part;
1377 int part_idx = 0, i;
1378 int nr_parts;
1379 struct partition_affinity *parts;
1380
00ee9a1c 1381 parts_node = of_get_child_by_name(gic_node, "ppi-partitions");
e3825ba1
MZ
1382 if (!parts_node)
1383 return;
1384
1385 nr_parts = of_get_child_count(parts_node);
1386
1387 if (!nr_parts)
00ee9a1c 1388 goto out_put_node;
e3825ba1 1389
6396bb22 1390 parts = kcalloc(nr_parts, sizeof(*parts), GFP_KERNEL);
e3825ba1 1391 if (WARN_ON(!parts))
00ee9a1c 1392 goto out_put_node;
e3825ba1
MZ
1393
1394 for_each_child_of_node(parts_node, child_part) {
1395 struct partition_affinity *part;
1396 int n;
1397
1398 part = &parts[part_idx];
1399
1400 part->partition_id = of_node_to_fwnode(child_part);
1401
2ef790dc
RH
1402 pr_info("GIC: PPI partition %pOFn[%d] { ",
1403 child_part, part_idx);
e3825ba1
MZ
1404
1405 n = of_property_count_elems_of_size(child_part, "affinity",
1406 sizeof(u32));
1407 WARN_ON(n <= 0);
1408
1409 for (i = 0; i < n; i++) {
1410 int err, cpu;
1411 u32 cpu_phandle;
1412 struct device_node *cpu_node;
1413
1414 err = of_property_read_u32_index(child_part, "affinity",
1415 i, &cpu_phandle);
1416 if (WARN_ON(err))
1417 continue;
1418
1419 cpu_node = of_find_node_by_phandle(cpu_phandle);
1420 if (WARN_ON(!cpu_node))
1421 continue;
1422
c08ec7da
SP
1423 cpu = of_cpu_node_to_id(cpu_node);
1424 if (WARN_ON(cpu < 0))
e3825ba1
MZ
1425 continue;
1426
e81f54c6 1427 pr_cont("%pOF[%d] ", cpu_node, cpu);
e3825ba1
MZ
1428
1429 cpumask_set_cpu(cpu, &part->mask);
1430 }
1431
1432 pr_cont("}\n");
1433 part_idx++;
1434 }
1435
1436 for (i = 0; i < 16; i++) {
1437 unsigned int irq;
1438 struct partition_desc *desc;
1439 struct irq_fwspec ppi_fwspec = {
1440 .fwnode = gic_data.fwnode,
1441 .param_count = 3,
1442 .param = {
65da7d19 1443 [0] = GIC_IRQ_TYPE_PARTITION,
e3825ba1
MZ
1444 [1] = i,
1445 [2] = IRQ_TYPE_NONE,
1446 },
1447 };
1448
1449 irq = irq_create_fwspec_mapping(&ppi_fwspec);
1450 if (WARN_ON(!irq))
1451 continue;
1452 desc = partition_create_desc(gic_data.fwnode, parts, nr_parts,
1453 irq, &partition_domain_ops);
1454 if (WARN_ON(!desc))
1455 continue;
1456
1457 gic_data.ppi_descs[i] = desc;
1458 }
00ee9a1c
JH
1459
1460out_put_node:
1461 of_node_put(parts_node);
e3825ba1
MZ
1462}
1463
1839e576
JG
1464static void __init gic_of_setup_kvm_info(struct device_node *node)
1465{
1466 int ret;
1467 struct resource r;
1468 u32 gicv_idx;
1469
1470 gic_v3_kvm_info.type = GIC_V3;
1471
1472 gic_v3_kvm_info.maint_irq = irq_of_parse_and_map(node, 0);
1473 if (!gic_v3_kvm_info.maint_irq)
1474 return;
1475
1476 if (of_property_read_u32(node, "#redistributor-regions",
1477 &gicv_idx))
1478 gicv_idx = 1;
1479
1480 gicv_idx += 3; /* Also skip GICD, GICC, GICH */
1481 ret = of_address_to_resource(node, gicv_idx, &r);
1482 if (!ret)
1483 gic_v3_kvm_info.vcpu = r;
1484
4bdf5025 1485 gic_v3_kvm_info.has_v4 = gic_data.rdists.has_vlpis;
1839e576
JG
1486 gic_set_kvm_info(&gic_v3_kvm_info);
1487}
1488
f70fdb42 1489static const struct gic_quirk gic_quirks[] = {
9c8114c2
SK
1490 {
1491 .desc = "GICv3: Qualcomm MSM8996 broken firmware",
1492 .compatible = "qcom,msm8996-gic-v3",
1493 .init = gic_enable_quirk_msm8996,
1494 },
f70fdb42
SK
1495 {
1496 }
1497};
1498
db57d746
TN
1499static int __init gic_of_init(struct device_node *node, struct device_node *parent)
1500{
1501 void __iomem *dist_base;
1502 struct redist_region *rdist_regs;
1503 u64 redist_stride;
1504 u32 nr_redist_regions;
1505 int err, i;
1506
1507 dist_base = of_iomap(node, 0);
1508 if (!dist_base) {
e81f54c6 1509 pr_err("%pOF: unable to map gic dist registers\n", node);
db57d746
TN
1510 return -ENXIO;
1511 }
1512
1513 err = gic_validate_dist_version(dist_base);
1514 if (err) {
e81f54c6 1515 pr_err("%pOF: no distributor detected, giving up\n", node);
db57d746
TN
1516 goto out_unmap_dist;
1517 }
1518
1519 if (of_property_read_u32(node, "#redistributor-regions", &nr_redist_regions))
1520 nr_redist_regions = 1;
1521
6396bb22
KC
1522 rdist_regs = kcalloc(nr_redist_regions, sizeof(*rdist_regs),
1523 GFP_KERNEL);
db57d746
TN
1524 if (!rdist_regs) {
1525 err = -ENOMEM;
1526 goto out_unmap_dist;
1527 }
1528
1529 for (i = 0; i < nr_redist_regions; i++) {
1530 struct resource res;
1531 int ret;
1532
1533 ret = of_address_to_resource(node, 1 + i, &res);
1534 rdist_regs[i].redist_base = of_iomap(node, 1 + i);
1535 if (ret || !rdist_regs[i].redist_base) {
e81f54c6 1536 pr_err("%pOF: couldn't map region %d\n", node, i);
db57d746
TN
1537 err = -ENODEV;
1538 goto out_unmap_rdist;
1539 }
1540 rdist_regs[i].phys_base = res.start;
1541 }
1542
1543 if (of_property_read_u64(node, "redistributor-stride", &redist_stride))
1544 redist_stride = 0;
1545
f70fdb42
SK
1546 gic_enable_of_quirks(node, gic_quirks, &gic_data);
1547
db57d746
TN
1548 err = gic_init_bases(dist_base, rdist_regs, nr_redist_regions,
1549 redist_stride, &node->fwnode);
e3825ba1
MZ
1550 if (err)
1551 goto out_unmap_rdist;
1552
1553 gic_populate_ppi_partitions(node);
d33a3c8c 1554
d01d3274 1555 if (static_branch_likely(&supports_deactivate_key))
d33a3c8c 1556 gic_of_setup_kvm_info(node);
e3825ba1 1557 return 0;
db57d746 1558
021f6537 1559out_unmap_rdist:
f5c1434c
MZ
1560 for (i = 0; i < nr_redist_regions; i++)
1561 if (rdist_regs[i].redist_base)
1562 iounmap(rdist_regs[i].redist_base);
1563 kfree(rdist_regs);
021f6537
MZ
1564out_unmap_dist:
1565 iounmap(dist_base);
1566 return err;
1567}
1568
1569IRQCHIP_DECLARE(gic_v3, "arm,gic-v3", gic_of_init);
ffa7d616
TN
1570
1571#ifdef CONFIG_ACPI
611f039f
JG
1572static struct
1573{
1574 void __iomem *dist_base;
1575 struct redist_region *redist_regs;
1576 u32 nr_redist_regions;
1577 bool single_redist;
1839e576
JG
1578 u32 maint_irq;
1579 int maint_irq_mode;
1580 phys_addr_t vcpu_base;
611f039f 1581} acpi_data __initdata;
b70fb7af
TN
1582
1583static void __init
1584gic_acpi_register_redist(phys_addr_t phys_base, void __iomem *redist_base)
1585{
1586 static int count = 0;
1587
611f039f
JG
1588 acpi_data.redist_regs[count].phys_base = phys_base;
1589 acpi_data.redist_regs[count].redist_base = redist_base;
1590 acpi_data.redist_regs[count].single_redist = acpi_data.single_redist;
b70fb7af
TN
1591 count++;
1592}
ffa7d616
TN
1593
1594static int __init
60574d1e 1595gic_acpi_parse_madt_redist(union acpi_subtable_headers *header,
ffa7d616
TN
1596 const unsigned long end)
1597{
1598 struct acpi_madt_generic_redistributor *redist =
1599 (struct acpi_madt_generic_redistributor *)header;
1600 void __iomem *redist_base;
ffa7d616
TN
1601
1602 redist_base = ioremap(redist->base_address, redist->length);
1603 if (!redist_base) {
1604 pr_err("Couldn't map GICR region @%llx\n", redist->base_address);
1605 return -ENOMEM;
1606 }
1607
b70fb7af 1608 gic_acpi_register_redist(redist->base_address, redist_base);
ffa7d616
TN
1609 return 0;
1610}
1611
b70fb7af 1612static int __init
60574d1e 1613gic_acpi_parse_madt_gicc(union acpi_subtable_headers *header,
b70fb7af
TN
1614 const unsigned long end)
1615{
1616 struct acpi_madt_generic_interrupt *gicc =
1617 (struct acpi_madt_generic_interrupt *)header;
611f039f 1618 u32 reg = readl_relaxed(acpi_data.dist_base + GICD_PIDR2) & GIC_PIDR2_ARCH_MASK;
b70fb7af
TN
1619 u32 size = reg == GIC_PIDR2_ARCH_GICv4 ? SZ_64K * 4 : SZ_64K * 2;
1620 void __iomem *redist_base;
1621
ebe2f871
SD
1622 /* GICC entry which has !ACPI_MADT_ENABLED is not unusable so skip */
1623 if (!(gicc->flags & ACPI_MADT_ENABLED))
1624 return 0;
1625
b70fb7af
TN
1626 redist_base = ioremap(gicc->gicr_base_address, size);
1627 if (!redist_base)
1628 return -ENOMEM;
1629
1630 gic_acpi_register_redist(gicc->gicr_base_address, redist_base);
1631 return 0;
1632}
1633
1634static int __init gic_acpi_collect_gicr_base(void)
1635{
1636 acpi_tbl_entry_handler redist_parser;
1637 enum acpi_madt_type type;
1638
611f039f 1639 if (acpi_data.single_redist) {
b70fb7af
TN
1640 type = ACPI_MADT_TYPE_GENERIC_INTERRUPT;
1641 redist_parser = gic_acpi_parse_madt_gicc;
1642 } else {
1643 type = ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR;
1644 redist_parser = gic_acpi_parse_madt_redist;
1645 }
1646
1647 /* Collect redistributor base addresses in GICR entries */
1648 if (acpi_table_parse_madt(type, redist_parser, 0) > 0)
1649 return 0;
1650
1651 pr_info("No valid GICR entries exist\n");
1652 return -ENODEV;
1653}
1654
60574d1e 1655static int __init gic_acpi_match_gicr(union acpi_subtable_headers *header,
ffa7d616
TN
1656 const unsigned long end)
1657{
1658 /* Subtable presence means that redist exists, that's it */
1659 return 0;
1660}
1661
60574d1e 1662static int __init gic_acpi_match_gicc(union acpi_subtable_headers *header,
b70fb7af
TN
1663 const unsigned long end)
1664{
1665 struct acpi_madt_generic_interrupt *gicc =
1666 (struct acpi_madt_generic_interrupt *)header;
1667
1668 /*
1669 * If GICC is enabled and has valid gicr base address, then it means
1670 * GICR base is presented via GICC
1671 */
1672 if ((gicc->flags & ACPI_MADT_ENABLED) && gicc->gicr_base_address)
1673 return 0;
1674
ebe2f871
SD
1675 /*
1676 * It's perfectly valid firmware can pass disabled GICC entry, driver
1677 * should not treat as errors, skip the entry instead of probe fail.
1678 */
1679 if (!(gicc->flags & ACPI_MADT_ENABLED))
1680 return 0;
1681
b70fb7af
TN
1682 return -ENODEV;
1683}
1684
1685static int __init gic_acpi_count_gicr_regions(void)
1686{
1687 int count;
1688
1689 /*
1690 * Count how many redistributor regions we have. It is not allowed
1691 * to mix redistributor description, GICR and GICC subtables have to be
1692 * mutually exclusive.
1693 */
1694 count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR,
1695 gic_acpi_match_gicr, 0);
1696 if (count > 0) {
611f039f 1697 acpi_data.single_redist = false;
b70fb7af
TN
1698 return count;
1699 }
1700
1701 count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT,
1702 gic_acpi_match_gicc, 0);
1703 if (count > 0)
611f039f 1704 acpi_data.single_redist = true;
b70fb7af
TN
1705
1706 return count;
1707}
1708
ffa7d616
TN
1709static bool __init acpi_validate_gic_table(struct acpi_subtable_header *header,
1710 struct acpi_probe_entry *ape)
1711{
1712 struct acpi_madt_generic_distributor *dist;
1713 int count;
1714
1715 dist = (struct acpi_madt_generic_distributor *)header;
1716 if (dist->version != ape->driver_data)
1717 return false;
1718
1719 /* We need to do that exercise anyway, the sooner the better */
b70fb7af 1720 count = gic_acpi_count_gicr_regions();
ffa7d616
TN
1721 if (count <= 0)
1722 return false;
1723
611f039f 1724 acpi_data.nr_redist_regions = count;
ffa7d616
TN
1725 return true;
1726}
1727
60574d1e 1728static int __init gic_acpi_parse_virt_madt_gicc(union acpi_subtable_headers *header,
1839e576
JG
1729 const unsigned long end)
1730{
1731 struct acpi_madt_generic_interrupt *gicc =
1732 (struct acpi_madt_generic_interrupt *)header;
1733 int maint_irq_mode;
1734 static int first_madt = true;
1735
1736 /* Skip unusable CPUs */
1737 if (!(gicc->flags & ACPI_MADT_ENABLED))
1738 return 0;
1739
1740 maint_irq_mode = (gicc->flags & ACPI_MADT_VGIC_IRQ_MODE) ?
1741 ACPI_EDGE_SENSITIVE : ACPI_LEVEL_SENSITIVE;
1742
1743 if (first_madt) {
1744 first_madt = false;
1745
1746 acpi_data.maint_irq = gicc->vgic_interrupt;
1747 acpi_data.maint_irq_mode = maint_irq_mode;
1748 acpi_data.vcpu_base = gicc->gicv_base_address;
1749
1750 return 0;
1751 }
1752
1753 /*
1754 * The maintenance interrupt and GICV should be the same for every CPU
1755 */
1756 if ((acpi_data.maint_irq != gicc->vgic_interrupt) ||
1757 (acpi_data.maint_irq_mode != maint_irq_mode) ||
1758 (acpi_data.vcpu_base != gicc->gicv_base_address))
1759 return -EINVAL;
1760
1761 return 0;
1762}
1763
1764static bool __init gic_acpi_collect_virt_info(void)
1765{
1766 int count;
1767
1768 count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT,
1769 gic_acpi_parse_virt_madt_gicc, 0);
1770
1771 return (count > 0);
1772}
1773
ffa7d616 1774#define ACPI_GICV3_DIST_MEM_SIZE (SZ_64K)
1839e576
JG
1775#define ACPI_GICV2_VCTRL_MEM_SIZE (SZ_4K)
1776#define ACPI_GICV2_VCPU_MEM_SIZE (SZ_8K)
1777
1778static void __init gic_acpi_setup_kvm_info(void)
1779{
1780 int irq;
1781
1782 if (!gic_acpi_collect_virt_info()) {
1783 pr_warn("Unable to get hardware information used for virtualization\n");
1784 return;
1785 }
1786
1787 gic_v3_kvm_info.type = GIC_V3;
1788
1789 irq = acpi_register_gsi(NULL, acpi_data.maint_irq,
1790 acpi_data.maint_irq_mode,
1791 ACPI_ACTIVE_HIGH);
1792 if (irq <= 0)
1793 return;
1794
1795 gic_v3_kvm_info.maint_irq = irq;
1796
1797 if (acpi_data.vcpu_base) {
1798 struct resource *vcpu = &gic_v3_kvm_info.vcpu;
1799
1800 vcpu->flags = IORESOURCE_MEM;
1801 vcpu->start = acpi_data.vcpu_base;
1802 vcpu->end = vcpu->start + ACPI_GICV2_VCPU_MEM_SIZE - 1;
1803 }
1804
4bdf5025 1805 gic_v3_kvm_info.has_v4 = gic_data.rdists.has_vlpis;
1839e576
JG
1806 gic_set_kvm_info(&gic_v3_kvm_info);
1807}
ffa7d616
TN
1808
1809static int __init
1810gic_acpi_init(struct acpi_subtable_header *header, const unsigned long end)
1811{
1812 struct acpi_madt_generic_distributor *dist;
1813 struct fwnode_handle *domain_handle;
611f039f 1814 size_t size;
b70fb7af 1815 int i, err;
ffa7d616
TN
1816
1817 /* Get distributor base address */
1818 dist = (struct acpi_madt_generic_distributor *)header;
611f039f
JG
1819 acpi_data.dist_base = ioremap(dist->base_address,
1820 ACPI_GICV3_DIST_MEM_SIZE);
1821 if (!acpi_data.dist_base) {
ffa7d616
TN
1822 pr_err("Unable to map GICD registers\n");
1823 return -ENOMEM;
1824 }
1825
611f039f 1826 err = gic_validate_dist_version(acpi_data.dist_base);
ffa7d616 1827 if (err) {
71192a68 1828 pr_err("No distributor detected at @%p, giving up\n",
611f039f 1829 acpi_data.dist_base);
ffa7d616
TN
1830 goto out_dist_unmap;
1831 }
1832
611f039f
JG
1833 size = sizeof(*acpi_data.redist_regs) * acpi_data.nr_redist_regions;
1834 acpi_data.redist_regs = kzalloc(size, GFP_KERNEL);
1835 if (!acpi_data.redist_regs) {
ffa7d616
TN
1836 err = -ENOMEM;
1837 goto out_dist_unmap;
1838 }
1839
b70fb7af
TN
1840 err = gic_acpi_collect_gicr_base();
1841 if (err)
ffa7d616 1842 goto out_redist_unmap;
ffa7d616 1843
611f039f 1844 domain_handle = irq_domain_alloc_fwnode(acpi_data.dist_base);
ffa7d616
TN
1845 if (!domain_handle) {
1846 err = -ENOMEM;
1847 goto out_redist_unmap;
1848 }
1849
611f039f
JG
1850 err = gic_init_bases(acpi_data.dist_base, acpi_data.redist_regs,
1851 acpi_data.nr_redist_regions, 0, domain_handle);
ffa7d616
TN
1852 if (err)
1853 goto out_fwhandle_free;
1854
1855 acpi_set_irq_model(ACPI_IRQ_MODEL_GIC, domain_handle);
d33a3c8c 1856
d01d3274 1857 if (static_branch_likely(&supports_deactivate_key))
d33a3c8c 1858 gic_acpi_setup_kvm_info();
1839e576 1859
ffa7d616
TN
1860 return 0;
1861
1862out_fwhandle_free:
1863 irq_domain_free_fwnode(domain_handle);
1864out_redist_unmap:
611f039f
JG
1865 for (i = 0; i < acpi_data.nr_redist_regions; i++)
1866 if (acpi_data.redist_regs[i].redist_base)
1867 iounmap(acpi_data.redist_regs[i].redist_base);
1868 kfree(acpi_data.redist_regs);
ffa7d616 1869out_dist_unmap:
611f039f 1870 iounmap(acpi_data.dist_base);
ffa7d616
TN
1871 return err;
1872}
1873IRQCHIP_ACPI_DECLARE(gic_v3, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
1874 acpi_validate_gic_table, ACPI_MADT_GIC_VERSION_V3,
1875 gic_acpi_init);
1876IRQCHIP_ACPI_DECLARE(gic_v4, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
1877 acpi_validate_gic_table, ACPI_MADT_GIC_VERSION_V4,
1878 gic_acpi_init);
1879IRQCHIP_ACPI_DECLARE(gic_v3_or_v4, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
1880 acpi_validate_gic_table, ACPI_MADT_GIC_VERSION_NONE,
1881 gic_acpi_init);
1882#endif