genirq/debugfs: Use irq_print_chip() when provided by irqchip
[linux-block.git] / drivers / irqchip / irq-gic.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
f27ecacc 2/*
f27ecacc
RK
3 * Copyright (C) 2002 ARM Limited, All Rights Reserved.
4 *
f27ecacc
RK
5 * Interrupt architecture for the GIC:
6 *
7 * o There is one Interrupt Distributor, which receives interrupts
8 * from system devices and sends them to the Interrupt Controllers.
9 *
10 * o There is one CPU Interface per CPU, which sends interrupts sent
11 * by the Distributor, and interrupts generated locally, to the
b3a1bde4
CM
12 * associated CPU. The base address of the CPU interface is usually
13 * aliased so that the same address points to different chips depending
14 * on the CPU it is accessed from.
f27ecacc
RK
15 *
16 * Note that IRQs 0-31 are special - they are local to each CPU.
17 * As such, the enable set/clear, pending set/clear and active bit
18 * registers are banked per-cpu for these sources.
19 */
20#include <linux/init.h>
21#include <linux/kernel.h>
f37a53cc 22#include <linux/err.h>
7e1efcf5 23#include <linux/module.h>
f27ecacc
RK
24#include <linux/list.h>
25#include <linux/smp.h>
c0114709 26#include <linux/cpu.h>
254056f3 27#include <linux/cpu_pm.h>
dcb86e8c 28#include <linux/cpumask.h>
fced80c7 29#include <linux/io.h>
b3f7ed03
RH
30#include <linux/of.h>
31#include <linux/of_address.h>
32#include <linux/of_irq.h>
d60fc389 33#include <linux/acpi.h>
4294f8ba 34#include <linux/irqdomain.h>
292b293c
MZ
35#include <linux/interrupt.h>
36#include <linux/percpu.h>
37#include <linux/slab.h>
41a83e06 38#include <linux/irqchip.h>
de88cbb7 39#include <linux/irqchip/chained_irq.h>
520f7bd7 40#include <linux/irqchip/arm-gic.h>
f27ecacc 41
29e697b1 42#include <asm/cputype.h>
f27ecacc 43#include <asm/irq.h>
562e0027 44#include <asm/exception.h>
eb50439b 45#include <asm/smp_plat.h>
0b996fd3 46#include <asm/virt.h>
f27ecacc 47
d51d0af4 48#include "irq-gic-common.h"
f27ecacc 49
76e52dd0
MZ
50#ifdef CONFIG_ARM64
51#include <asm/cpufeature.h>
52
53static void gic_check_cpu_features(void)
54{
25fc11ae 55 WARN_TAINT_ONCE(this_cpu_has_cap(ARM64_HAS_SYSREG_GIC_CPUIF),
76e52dd0
MZ
56 TAINT_CPU_OUT_OF_SPEC,
57 "GICv3 system registers enabled, broken firmware!\n");
58}
59#else
60#define gic_check_cpu_features() do { } while(0)
61#endif
62
db0d4db2
MZ
63union gic_base {
64 void __iomem *common_base;
6859358e 65 void __percpu * __iomem *percpu_base;
db0d4db2
MZ
66};
67
68struct gic_chip_data {
58b89649 69 struct irq_chip chip;
db0d4db2
MZ
70 union gic_base dist_base;
71 union gic_base cpu_base;
f673b9b5
JH
72 void __iomem *raw_dist_base;
73 void __iomem *raw_cpu_base;
74 u32 percpu_offset;
9c8edddf 75#if defined(CONFIG_CPU_PM) || defined(CONFIG_ARM_GIC_PM)
db0d4db2 76 u32 saved_spi_enable[DIV_ROUND_UP(1020, 32)];
1c7d4dd4 77 u32 saved_spi_active[DIV_ROUND_UP(1020, 32)];
db0d4db2
MZ
78 u32 saved_spi_conf[DIV_ROUND_UP(1020, 16)];
79 u32 saved_spi_target[DIV_ROUND_UP(1020, 4)];
80 u32 __percpu *saved_ppi_enable;
1c7d4dd4 81 u32 __percpu *saved_ppi_active;
db0d4db2
MZ
82 u32 __percpu *saved_ppi_conf;
83#endif
75294957 84 struct irq_domain *domain;
db0d4db2 85 unsigned int gic_irqs;
db0d4db2
MZ
86};
87
04c8b0f8
MZ
88#ifdef CONFIG_BL_SWITCHER
89
90static DEFINE_RAW_SPINLOCK(cpu_map_lock);
91
92#define gic_lock_irqsave(f) \
93 raw_spin_lock_irqsave(&cpu_map_lock, (f))
94#define gic_unlock_irqrestore(f) \
95 raw_spin_unlock_irqrestore(&cpu_map_lock, (f))
96
97#define gic_lock() raw_spin_lock(&cpu_map_lock)
98#define gic_unlock() raw_spin_unlock(&cpu_map_lock)
99
100#else
101
102#define gic_lock_irqsave(f) do { (void)(f); } while(0)
103#define gic_unlock_irqrestore(f) do { (void)(f); } while(0)
104
105#define gic_lock() do { } while(0)
106#define gic_unlock() do { } while(0)
107
108#endif
f27ecacc 109
b78f2692
MZ
110static DEFINE_STATIC_KEY_FALSE(needs_rmw_access);
111
384a2902
NP
112/*
113 * The GIC mapping of CPU interfaces does not necessarily match
114 * the logical CPU numbering. Let's use a mapping as returned
115 * by the GIC itself.
116 */
117#define NR_GIC_CPU_IF 8
118static u8 gic_cpu_map[NR_GIC_CPU_IF] __read_mostly;
119
d01d3274 120static DEFINE_STATIC_KEY_TRUE(supports_deactivate_key);
0b996fd3 121
a27d21e0 122static struct gic_chip_data gic_data[CONFIG_ARM_GIC_MAX_NR] __read_mostly;
b3a1bde4 123
0e5cb777 124static struct gic_kvm_info gic_v2_kvm_info __initdata;
502d6df1 125
64a267e9
MZ
126static DEFINE_PER_CPU(u32, sgi_intid);
127
db0d4db2 128#ifdef CONFIG_GIC_NON_BANKED
8594c3b8 129static DEFINE_STATIC_KEY_FALSE(frankengic_key);
db0d4db2 130
8594c3b8 131static void enable_frankengic(void)
db0d4db2 132{
8594c3b8 133 static_branch_enable(&frankengic_key);
db0d4db2
MZ
134}
135
8594c3b8 136static inline void __iomem *__get_base(union gic_base *base)
db0d4db2 137{
8594c3b8
MZ
138 if (static_branch_unlikely(&frankengic_key))
139 return raw_cpu_read(*base->percpu_base);
db0d4db2 140
8594c3b8 141 return base->common_base;
db0d4db2
MZ
142}
143
8594c3b8
MZ
144#define gic_data_dist_base(d) __get_base(&(d)->dist_base)
145#define gic_data_cpu_base(d) __get_base(&(d)->cpu_base)
db0d4db2
MZ
146#else
147#define gic_data_dist_base(d) ((d)->dist_base.common_base)
148#define gic_data_cpu_base(d) ((d)->cpu_base.common_base)
8594c3b8 149#define enable_frankengic() do { } while(0)
db0d4db2
MZ
150#endif
151
7d1f4288 152static inline void __iomem *gic_dist_base(struct irq_data *d)
b3a1bde4 153{
7d1f4288 154 struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
db0d4db2 155 return gic_data_dist_base(gic_data);
b3a1bde4
CM
156}
157
7d1f4288 158static inline void __iomem *gic_cpu_base(struct irq_data *d)
b3a1bde4 159{
7d1f4288 160 struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
db0d4db2 161 return gic_data_cpu_base(gic_data);
b3a1bde4
CM
162}
163
7d1f4288 164static inline unsigned int gic_irq(struct irq_data *d)
b3a1bde4 165{
4294f8ba 166 return d->hwirq;
b3a1bde4
CM
167}
168
01f779f4
MZ
169static inline bool cascading_gic_irq(struct irq_data *d)
170{
171 void *data = irq_data_get_irq_handler_data(d);
172
173 /*
71466535
TG
174 * If handler_data is set, this is a cascading interrupt, and
175 * it cannot possibly be forwarded.
01f779f4 176 */
71466535 177 return data != NULL;
01f779f4
MZ
178}
179
f27ecacc
RK
180/*
181 * Routines to acknowledge, disable and enable interrupts
f27ecacc 182 */
56717807
MZ
183static void gic_poke_irq(struct irq_data *d, u32 offset)
184{
185 u32 mask = 1 << (gic_irq(d) % 32);
186 writel_relaxed(mask, gic_dist_base(d) + offset + (gic_irq(d) / 32) * 4);
187}
188
189static int gic_peek_irq(struct irq_data *d, u32 offset)
f27ecacc 190{
4294f8ba 191 u32 mask = 1 << (gic_irq(d) % 32);
56717807
MZ
192 return !!(readl_relaxed(gic_dist_base(d) + offset + (gic_irq(d) / 32) * 4) & mask);
193}
194
195static void gic_mask_irq(struct irq_data *d)
196{
56717807 197 gic_poke_irq(d, GIC_DIST_ENABLE_CLEAR);
f27ecacc
RK
198}
199
0b996fd3
MZ
200static void gic_eoimode1_mask_irq(struct irq_data *d)
201{
202 gic_mask_irq(d);
01f779f4
MZ
203 /*
204 * When masking a forwarded interrupt, make sure it is
205 * deactivated as well.
206 *
207 * This ensures that an interrupt that is getting
208 * disabled/masked will not get "stuck", because there is
209 * noone to deactivate it (guest is being terminated).
210 */
71466535 211 if (irqd_is_forwarded_to_vcpu(d))
01f779f4 212 gic_poke_irq(d, GIC_DIST_ACTIVE_CLEAR);
0b996fd3
MZ
213}
214
7d1f4288 215static void gic_unmask_irq(struct irq_data *d)
f27ecacc 216{
56717807 217 gic_poke_irq(d, GIC_DIST_ENABLE_SET);
f27ecacc
RK
218}
219
1a01753e
WD
220static void gic_eoi_irq(struct irq_data *d)
221{
64a267e9
MZ
222 u32 hwirq = gic_irq(d);
223
224 if (hwirq < 16)
225 hwirq = this_cpu_read(sgi_intid);
226
227 writel_relaxed(hwirq, gic_cpu_base(d) + GIC_CPU_EOI);
1a01753e
WD
228}
229
0b996fd3
MZ
230static void gic_eoimode1_eoi_irq(struct irq_data *d)
231{
64a267e9
MZ
232 u32 hwirq = gic_irq(d);
233
01f779f4 234 /* Do not deactivate an IRQ forwarded to a vcpu. */
71466535 235 if (irqd_is_forwarded_to_vcpu(d))
01f779f4
MZ
236 return;
237
64a267e9
MZ
238 if (hwirq < 16)
239 hwirq = this_cpu_read(sgi_intid);
240
241 writel_relaxed(hwirq, gic_cpu_base(d) + GIC_CPU_DEACTIVATE);
0b996fd3
MZ
242}
243
56717807
MZ
244static int gic_irq_set_irqchip_state(struct irq_data *d,
245 enum irqchip_irq_state which, bool val)
246{
247 u32 reg;
248
249 switch (which) {
250 case IRQCHIP_STATE_PENDING:
251 reg = val ? GIC_DIST_PENDING_SET : GIC_DIST_PENDING_CLEAR;
252 break;
253
254 case IRQCHIP_STATE_ACTIVE:
255 reg = val ? GIC_DIST_ACTIVE_SET : GIC_DIST_ACTIVE_CLEAR;
256 break;
257
258 case IRQCHIP_STATE_MASKED:
259 reg = val ? GIC_DIST_ENABLE_CLEAR : GIC_DIST_ENABLE_SET;
260 break;
261
262 default:
263 return -EINVAL;
264 }
265
266 gic_poke_irq(d, reg);
267 return 0;
268}
269
270static int gic_irq_get_irqchip_state(struct irq_data *d,
271 enum irqchip_irq_state which, bool *val)
272{
273 switch (which) {
274 case IRQCHIP_STATE_PENDING:
275 *val = gic_peek_irq(d, GIC_DIST_PENDING_SET);
276 break;
277
278 case IRQCHIP_STATE_ACTIVE:
279 *val = gic_peek_irq(d, GIC_DIST_ACTIVE_SET);
280 break;
281
282 case IRQCHIP_STATE_MASKED:
283 *val = !gic_peek_irq(d, GIC_DIST_ENABLE_SET);
284 break;
285
286 default:
287 return -EINVAL;
288 }
289
290 return 0;
291}
292
7d1f4288 293static int gic_set_type(struct irq_data *d, unsigned int type)
5c0c1f08 294{
7d1f4288
LB
295 void __iomem *base = gic_dist_base(d);
296 unsigned int gicirq = gic_irq(d);
13d22e2e 297 int ret;
5c0c1f08
RV
298
299 /* Interrupt configuration for SGIs can't be changed */
300 if (gicirq < 16)
8594c3b8 301 return type != IRQ_TYPE_EDGE_RISING ? -EINVAL : 0;
5c0c1f08 302
fb7e7deb
LD
303 /* SPIs have restrictions on the supported types */
304 if (gicirq >= 32 && type != IRQ_TYPE_LEVEL_HIGH &&
305 type != IRQ_TYPE_EDGE_RISING)
5c0c1f08
RV
306 return -EINVAL;
307
13d22e2e
MZ
308 ret = gic_configure_irq(gicirq, type, base + GIC_DIST_CONFIG, NULL);
309 if (ret && gicirq < 32) {
310 /* Misconfigured PPIs are usually not fatal */
311 pr_warn("GIC: PPI%d is secure or misconfigured\n", gicirq - 16);
312 ret = 0;
313 }
314
315 return ret;
d7ed36a4
SS
316}
317
01f779f4
MZ
318static int gic_irq_set_vcpu_affinity(struct irq_data *d, void *vcpu)
319{
320 /* Only interrupts on the primary GIC can be forwarded to a vcpu. */
64a267e9 321 if (cascading_gic_irq(d) || gic_irq(d) < 16)
01f779f4
MZ
322 return -EINVAL;
323
71466535
TG
324 if (vcpu)
325 irqd_set_forwarded_to_vcpu(d);
326 else
327 irqd_clr_forwarded_to_vcpu(d);
01f779f4
MZ
328 return 0;
329}
330
17f644e9
VS
331static int gic_retrigger(struct irq_data *data)
332{
333 return !gic_irq_set_irqchip_state(data, IRQCHIP_STATE_PENDING, true);
334}
335
8783dd3a 336static void __exception_irq_entry gic_handle_irq(struct pt_regs *regs)
562e0027
MZ
337{
338 u32 irqstat, irqnr;
339 struct gic_chip_data *gic = &gic_data[0];
340 void __iomem *cpu_base = gic_data_cpu_base(gic);
341
342 do {
343 irqstat = readl_relaxed(cpu_base + GIC_CPU_INTACK);
b8802f76 344 irqnr = irqstat & GICC_IAR_INT_ID_MASK;
562e0027 345
64a267e9
MZ
346 if (unlikely(irqnr >= 1020))
347 break;
348
349 if (static_branch_likely(&supports_deactivate_key))
562e0027 350 writel_relaxed(irqstat, cpu_base + GIC_CPU_EOI);
64a267e9
MZ
351 isb();
352
353 /*
354 * Ensure any shared data written by the CPU sending the IPI
355 * is read after we've read the ACK register on the GIC.
356 *
357 * Pairs with the write barrier in gic_ipi_send_mask
358 */
359 if (irqnr <= 15) {
360 smp_rmb();
361
f86c4fbd 362 /*
64a267e9
MZ
363 * The GIC encodes the source CPU in GICC_IAR,
364 * leading to the deactivation to fail if not
365 * written back as is to GICC_EOI. Stash the INTID
366 * away for gic_eoi_irq() to write back. This only
367 * works because we don't nest SGIs...
f86c4fbd 368 */
64a267e9 369 this_cpu_write(sgi_intid, irqstat);
562e0027 370 }
64a267e9 371
0953fb26 372 generic_handle_domain_irq(gic->domain, irqnr);
562e0027
MZ
373 } while (1);
374}
375
bd0b9ac4 376static void gic_handle_cascade_irq(struct irq_desc *desc)
b3a1bde4 377{
5b29264c
JL
378 struct gic_chip_data *chip_data = irq_desc_get_handler_data(desc);
379 struct irq_chip *chip = irq_desc_get_chip(desc);
046a6ee2 380 unsigned int gic_irq;
b3a1bde4 381 unsigned long status;
046a6ee2 382 int ret;
b3a1bde4 383
1a01753e 384 chained_irq_enter(chip, desc);
b3a1bde4 385
db0d4db2 386 status = readl_relaxed(gic_data_cpu_base(chip_data) + GIC_CPU_INTACK);
b3a1bde4 387
e5f81539
FK
388 gic_irq = (status & GICC_IAR_INT_ID_MASK);
389 if (gic_irq == GICC_INT_SPURIOUS)
b3a1bde4 390 goto out;
b3a1bde4 391
046a6ee2
MZ
392 isb();
393 ret = generic_handle_domain_irq(chip_data->domain, gic_irq);
394 if (unlikely(ret))
bd0b9ac4 395 handle_bad_irq(desc);
b3a1bde4 396 out:
1a01753e 397 chained_irq_exit(chip, desc);
b3a1bde4
CM
398}
399
73c4c37c 400static const struct irq_chip gic_chip = {
7d1f4288
LB
401 .irq_mask = gic_mask_irq,
402 .irq_unmask = gic_unmask_irq,
1a01753e 403 .irq_eoi = gic_eoi_irq,
7d1f4288 404 .irq_set_type = gic_set_type,
17f644e9 405 .irq_retrigger = gic_retrigger,
56717807
MZ
406 .irq_get_irqchip_state = gic_irq_get_irqchip_state,
407 .irq_set_irqchip_state = gic_irq_set_irqchip_state,
aec89ef7
SH
408 .flags = IRQCHIP_SET_TYPE_MASKED |
409 IRQCHIP_SKIP_SET_WAKE |
410 IRQCHIP_MASK_ON_SUSPEND,
f27ecacc
RK
411};
412
b3a1bde4
CM
413void __init gic_cascade_irq(unsigned int gic_nr, unsigned int irq)
414{
a27d21e0 415 BUG_ON(gic_nr >= CONFIG_ARM_GIC_MAX_NR);
4d83fcf8
TG
416 irq_set_chained_handler_and_data(irq, gic_handle_cascade_irq,
417 &gic_data[gic_nr]);
b3a1bde4
CM
418}
419
2bb31351
RK
420static u8 gic_get_cpumask(struct gic_chip_data *gic)
421{
422 void __iomem *base = gic_data_dist_base(gic);
423 u32 mask, i;
424
425 for (i = mask = 0; i < 32; i += 4) {
426 mask = readl_relaxed(base + GIC_DIST_TARGET + i);
427 mask |= mask >> 16;
428 mask |= mask >> 8;
429 if (mask)
430 break;
431 }
432
6e3aca44 433 if (!mask && num_possible_cpus() > 1)
2bb31351
RK
434 pr_crit("GIC CPU mask not found - kernel will fail to boot.\n");
435
436 return mask;
437}
438
c5e1035c
MZ
439static bool gic_check_gicv2(void __iomem *base)
440{
441 u32 val = readl_relaxed(base + GIC_CPU_IDENT);
442 return (val & 0xff0fff) == 0x02043B;
443}
444
4c2880b3 445static void gic_cpu_if_up(struct gic_chip_data *gic)
32289506 446{
4c2880b3 447 void __iomem *cpu_base = gic_data_cpu_base(gic);
32289506 448 u32 bypass = 0;
0b996fd3 449 u32 mode = 0;
c5e1035c 450 int i;
0b996fd3 451
d01d3274 452 if (gic == &gic_data[0] && static_branch_likely(&supports_deactivate_key))
0b996fd3 453 mode = GIC_CPU_CTRL_EOImodeNS;
32289506 454
c5e1035c
MZ
455 if (gic_check_gicv2(cpu_base))
456 for (i = 0; i < 4; i++)
457 writel_relaxed(0, cpu_base + GIC_CPU_ACTIVEPRIO + i * 4);
458
32289506
FK
459 /*
460 * Preserve bypass disable bits to be written back later
461 */
462 bypass = readl(cpu_base + GIC_CPU_CTRL);
463 bypass &= GICC_DIS_BYPASS_MASK;
464
0b996fd3 465 writel_relaxed(bypass | mode | GICC_ENABLE, cpu_base + GIC_CPU_CTRL);
32289506
FK
466}
467
468
cdbb813d 469static void gic_dist_init(struct gic_chip_data *gic)
f27ecacc 470{
75294957 471 unsigned int i;
267840f3 472 u32 cpumask;
4294f8ba 473 unsigned int gic_irqs = gic->gic_irqs;
db0d4db2 474 void __iomem *base = gic_data_dist_base(gic);
f27ecacc 475
e5f81539 476 writel_relaxed(GICD_DISABLE, base + GIC_DIST_CTRL);
f27ecacc 477
f27ecacc
RK
478 /*
479 * Set all global interrupts to this CPU only.
480 */
2bb31351
RK
481 cpumask = gic_get_cpumask(gic);
482 cpumask |= cpumask << 8;
483 cpumask |= cpumask << 16;
e6afec9b 484 for (i = 32; i < gic_irqs; i += 4)
6ac77e46 485 writel_relaxed(cpumask, base + GIC_DIST_TARGET + i * 4 / 4);
f27ecacc 486
d51d0af4 487 gic_dist_config(base, gic_irqs, NULL);
f27ecacc 488
e5f81539 489 writel_relaxed(GICD_ENABLE, base + GIC_DIST_CTRL);
f27ecacc
RK
490}
491
dc9722cc 492static int gic_cpu_init(struct gic_chip_data *gic)
f27ecacc 493{
db0d4db2
MZ
494 void __iomem *dist_base = gic_data_dist_base(gic);
495 void __iomem *base = gic_data_cpu_base(gic);
384a2902 496 unsigned int cpu_mask, cpu = smp_processor_id();
9395f6ea
RK
497 int i;
498
384a2902 499 /*
567e5a01
JH
500 * Setting up the CPU map is only relevant for the primary GIC
501 * because any nested/secondary GICs do not directly interface
502 * with the CPU(s).
384a2902 503 */
567e5a01
JH
504 if (gic == &gic_data[0]) {
505 /*
506 * Get what the GIC says our CPU mask is.
507 */
dc9722cc
JH
508 if (WARN_ON(cpu >= NR_GIC_CPU_IF))
509 return -EINVAL;
510
25fc11ae 511 gic_check_cpu_features();
567e5a01
JH
512 cpu_mask = gic_get_cpumask(gic);
513 gic_cpu_map[cpu] = cpu_mask;
384a2902 514
567e5a01
JH
515 /*
516 * Clear our mask from the other map entries in case they're
517 * still undefined.
518 */
519 for (i = 0; i < NR_GIC_CPU_IF; i++)
520 if (i != cpu)
521 gic_cpu_map[i] &= ~cpu_mask;
522 }
384a2902 523
1a60e1e6 524 gic_cpu_config(dist_base, 32, NULL);
9395f6ea 525
e5f81539 526 writel_relaxed(GICC_INT_PRI_THRESHOLD, base + GIC_CPU_PRIMASK);
4c2880b3 527 gic_cpu_if_up(gic);
dc9722cc
JH
528
529 return 0;
f27ecacc
RK
530}
531
4c2880b3 532int gic_cpu_if_down(unsigned int gic_nr)
10d9eb8a 533{
4c2880b3 534 void __iomem *cpu_base;
32289506
FK
535 u32 val = 0;
536
a27d21e0 537 if (gic_nr >= CONFIG_ARM_GIC_MAX_NR)
4c2880b3
JH
538 return -EINVAL;
539
540 cpu_base = gic_data_cpu_base(&gic_data[gic_nr]);
32289506
FK
541 val = readl(cpu_base + GIC_CPU_CTRL);
542 val &= ~GICC_ENABLE;
543 writel_relaxed(val, cpu_base + GIC_CPU_CTRL);
4c2880b3
JH
544
545 return 0;
10d9eb8a
NP
546}
547
9c8edddf 548#if defined(CONFIG_CPU_PM) || defined(CONFIG_ARM_GIC_PM)
254056f3
CC
549/*
550 * Saves the GIC distributor registers during suspend or idle. Must be called
551 * with interrupts disabled but before powering down the GIC. After calling
552 * this function, no interrupts will be delivered by the GIC, and another
553 * platform-specific wakeup source must be enabled.
554 */
cdbb813d 555void gic_dist_save(struct gic_chip_data *gic)
254056f3
CC
556{
557 unsigned int gic_irqs;
558 void __iomem *dist_base;
559 int i;
560
6e5b5924
JH
561 if (WARN_ON(!gic))
562 return;
254056f3 563
6e5b5924
JH
564 gic_irqs = gic->gic_irqs;
565 dist_base = gic_data_dist_base(gic);
254056f3
CC
566
567 if (!dist_base)
568 return;
569
570 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 16); i++)
6e5b5924 571 gic->saved_spi_conf[i] =
254056f3
CC
572 readl_relaxed(dist_base + GIC_DIST_CONFIG + i * 4);
573
574 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
6e5b5924 575 gic->saved_spi_target[i] =
254056f3
CC
576 readl_relaxed(dist_base + GIC_DIST_TARGET + i * 4);
577
578 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++)
6e5b5924 579 gic->saved_spi_enable[i] =
254056f3 580 readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
1c7d4dd4
MZ
581
582 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++)
6e5b5924 583 gic->saved_spi_active[i] =
1c7d4dd4 584 readl_relaxed(dist_base + GIC_DIST_ACTIVE_SET + i * 4);
254056f3
CC
585}
586
587/*
588 * Restores the GIC distributor registers during resume or when coming out of
589 * idle. Must be called before enabling interrupts. If a level interrupt
c5f48c0a
IM
590 * that occurred while the GIC was suspended is still present, it will be
591 * handled normally, but any edge interrupts that occurred will not be seen by
254056f3
CC
592 * the GIC and need to be handled by the platform-specific wakeup source.
593 */
cdbb813d 594void gic_dist_restore(struct gic_chip_data *gic)
254056f3
CC
595{
596 unsigned int gic_irqs;
597 unsigned int i;
598 void __iomem *dist_base;
599
6e5b5924
JH
600 if (WARN_ON(!gic))
601 return;
254056f3 602
6e5b5924
JH
603 gic_irqs = gic->gic_irqs;
604 dist_base = gic_data_dist_base(gic);
254056f3
CC
605
606 if (!dist_base)
607 return;
608
e5f81539 609 writel_relaxed(GICD_DISABLE, dist_base + GIC_DIST_CTRL);
254056f3
CC
610
611 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 16); i++)
6e5b5924 612 writel_relaxed(gic->saved_spi_conf[i],
254056f3
CC
613 dist_base + GIC_DIST_CONFIG + i * 4);
614
615 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
e5f81539 616 writel_relaxed(GICD_INT_DEF_PRI_X4,
254056f3
CC
617 dist_base + GIC_DIST_PRI + i * 4);
618
619 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
6e5b5924 620 writel_relaxed(gic->saved_spi_target[i],
254056f3
CC
621 dist_base + GIC_DIST_TARGET + i * 4);
622
92eda4ad
MZ
623 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++) {
624 writel_relaxed(GICD_INT_EN_CLR_X32,
625 dist_base + GIC_DIST_ENABLE_CLEAR + i * 4);
6e5b5924 626 writel_relaxed(gic->saved_spi_enable[i],
254056f3 627 dist_base + GIC_DIST_ENABLE_SET + i * 4);
92eda4ad 628 }
254056f3 629
1c7d4dd4
MZ
630 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++) {
631 writel_relaxed(GICD_INT_EN_CLR_X32,
632 dist_base + GIC_DIST_ACTIVE_CLEAR + i * 4);
6e5b5924 633 writel_relaxed(gic->saved_spi_active[i],
1c7d4dd4
MZ
634 dist_base + GIC_DIST_ACTIVE_SET + i * 4);
635 }
636
e5f81539 637 writel_relaxed(GICD_ENABLE, dist_base + GIC_DIST_CTRL);
254056f3
CC
638}
639
cdbb813d 640void gic_cpu_save(struct gic_chip_data *gic)
254056f3
CC
641{
642 int i;
643 u32 *ptr;
644 void __iomem *dist_base;
645 void __iomem *cpu_base;
646
6e5b5924
JH
647 if (WARN_ON(!gic))
648 return;
254056f3 649
6e5b5924
JH
650 dist_base = gic_data_dist_base(gic);
651 cpu_base = gic_data_cpu_base(gic);
254056f3
CC
652
653 if (!dist_base || !cpu_base)
654 return;
655
6e5b5924 656 ptr = raw_cpu_ptr(gic->saved_ppi_enable);
254056f3
CC
657 for (i = 0; i < DIV_ROUND_UP(32, 32); i++)
658 ptr[i] = readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
659
6e5b5924 660 ptr = raw_cpu_ptr(gic->saved_ppi_active);
1c7d4dd4
MZ
661 for (i = 0; i < DIV_ROUND_UP(32, 32); i++)
662 ptr[i] = readl_relaxed(dist_base + GIC_DIST_ACTIVE_SET + i * 4);
663
6e5b5924 664 ptr = raw_cpu_ptr(gic->saved_ppi_conf);
254056f3
CC
665 for (i = 0; i < DIV_ROUND_UP(32, 16); i++)
666 ptr[i] = readl_relaxed(dist_base + GIC_DIST_CONFIG + i * 4);
667
668}
669
cdbb813d 670void gic_cpu_restore(struct gic_chip_data *gic)
254056f3
CC
671{
672 int i;
673 u32 *ptr;
674 void __iomem *dist_base;
675 void __iomem *cpu_base;
676
6e5b5924
JH
677 if (WARN_ON(!gic))
678 return;
254056f3 679
6e5b5924
JH
680 dist_base = gic_data_dist_base(gic);
681 cpu_base = gic_data_cpu_base(gic);
254056f3
CC
682
683 if (!dist_base || !cpu_base)
684 return;
685
6e5b5924 686 ptr = raw_cpu_ptr(gic->saved_ppi_enable);
92eda4ad
MZ
687 for (i = 0; i < DIV_ROUND_UP(32, 32); i++) {
688 writel_relaxed(GICD_INT_EN_CLR_X32,
689 dist_base + GIC_DIST_ENABLE_CLEAR + i * 4);
254056f3 690 writel_relaxed(ptr[i], dist_base + GIC_DIST_ENABLE_SET + i * 4);
92eda4ad 691 }
254056f3 692
6e5b5924 693 ptr = raw_cpu_ptr(gic->saved_ppi_active);
1c7d4dd4
MZ
694 for (i = 0; i < DIV_ROUND_UP(32, 32); i++) {
695 writel_relaxed(GICD_INT_EN_CLR_X32,
696 dist_base + GIC_DIST_ACTIVE_CLEAR + i * 4);
697 writel_relaxed(ptr[i], dist_base + GIC_DIST_ACTIVE_SET + i * 4);
698 }
699
6e5b5924 700 ptr = raw_cpu_ptr(gic->saved_ppi_conf);
254056f3
CC
701 for (i = 0; i < DIV_ROUND_UP(32, 16); i++)
702 writel_relaxed(ptr[i], dist_base + GIC_DIST_CONFIG + i * 4);
703
704 for (i = 0; i < DIV_ROUND_UP(32, 4); i++)
e5f81539
FK
705 writel_relaxed(GICD_INT_DEF_PRI_X4,
706 dist_base + GIC_DIST_PRI + i * 4);
254056f3 707
e5f81539 708 writel_relaxed(GICC_INT_PRI_THRESHOLD, cpu_base + GIC_CPU_PRIMASK);
6e5b5924 709 gic_cpu_if_up(gic);
254056f3
CC
710}
711
712static int gic_notifier(struct notifier_block *self, unsigned long cmd, void *v)
713{
714 int i;
715
a27d21e0 716 for (i = 0; i < CONFIG_ARM_GIC_MAX_NR; i++) {
254056f3
CC
717 switch (cmd) {
718 case CPU_PM_ENTER:
6e5b5924 719 gic_cpu_save(&gic_data[i]);
254056f3
CC
720 break;
721 case CPU_PM_ENTER_FAILED:
722 case CPU_PM_EXIT:
6e5b5924 723 gic_cpu_restore(&gic_data[i]);
254056f3
CC
724 break;
725 case CPU_CLUSTER_PM_ENTER:
6e5b5924 726 gic_dist_save(&gic_data[i]);
254056f3
CC
727 break;
728 case CPU_CLUSTER_PM_ENTER_FAILED:
729 case CPU_CLUSTER_PM_EXIT:
6e5b5924 730 gic_dist_restore(&gic_data[i]);
254056f3
CC
731 break;
732 }
733 }
734
735 return NOTIFY_OK;
736}
737
738static struct notifier_block gic_notifier_block = {
739 .notifier_call = gic_notifier,
740};
741
cdbb813d 742static int gic_pm_init(struct gic_chip_data *gic)
254056f3
CC
743{
744 gic->saved_ppi_enable = __alloc_percpu(DIV_ROUND_UP(32, 32) * 4,
745 sizeof(u32));
dc9722cc
JH
746 if (WARN_ON(!gic->saved_ppi_enable))
747 return -ENOMEM;
254056f3 748
1c7d4dd4
MZ
749 gic->saved_ppi_active = __alloc_percpu(DIV_ROUND_UP(32, 32) * 4,
750 sizeof(u32));
dc9722cc
JH
751 if (WARN_ON(!gic->saved_ppi_active))
752 goto free_ppi_enable;
1c7d4dd4 753
254056f3
CC
754 gic->saved_ppi_conf = __alloc_percpu(DIV_ROUND_UP(32, 16) * 4,
755 sizeof(u32));
dc9722cc
JH
756 if (WARN_ON(!gic->saved_ppi_conf))
757 goto free_ppi_active;
254056f3 758
abdd7b91
MZ
759 if (gic == &gic_data[0])
760 cpu_pm_register_notifier(&gic_notifier_block);
dc9722cc
JH
761
762 return 0;
763
764free_ppi_active:
765 free_percpu(gic->saved_ppi_active);
766free_ppi_enable:
767 free_percpu(gic->saved_ppi_enable);
768
769 return -ENOMEM;
254056f3
CC
770}
771#else
cdbb813d 772static int gic_pm_init(struct gic_chip_data *gic)
254056f3 773{
dc9722cc 774 return 0;
254056f3
CC
775}
776#endif
777
b1cffebf 778#ifdef CONFIG_SMP
b78f2692
MZ
779static void rmw_writeb(u8 bval, void __iomem *addr)
780{
781 static DEFINE_RAW_SPINLOCK(rmw_lock);
782 unsigned long offset = (unsigned long)addr & 3UL;
783 unsigned long shift = offset * 8;
784 unsigned long flags;
785 u32 val;
786
787 raw_spin_lock_irqsave(&rmw_lock, flags);
788
789 addr -= offset;
790 val = readl_relaxed(addr);
791 val &= ~GENMASK(shift + 7, shift);
792 val |= bval << shift;
793 writel_relaxed(val, addr);
794
795 raw_spin_unlock_irqrestore(&rmw_lock, flags);
796}
797
7ec46b51
MZ
798static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
799 bool force)
800{
801 void __iomem *reg = gic_dist_base(d) + GIC_DIST_TARGET + gic_irq(d);
802 unsigned int cpu;
803
804 if (!force)
805 cpu = cpumask_any_and(mask_val, cpu_online_mask);
806 else
807 cpu = cpumask_first(mask_val);
808
809 if (cpu >= NR_GIC_CPU_IF || cpu >= nr_cpu_ids)
810 return -EINVAL;
811
b78f2692
MZ
812 if (static_branch_unlikely(&needs_rmw_access))
813 rmw_writeb(gic_cpu_map[cpu], reg);
814 else
815 writeb_relaxed(gic_cpu_map[cpu], reg);
7ec46b51
MZ
816 irq_data_update_effective_affinity(d, cpumask_of(cpu));
817
818 return IRQ_SET_MASK_OK_DONE;
819}
820
64a267e9 821static void gic_ipi_send_mask(struct irq_data *d, const struct cpumask *mask)
b1cffebf
RH
822{
823 int cpu;
1a6b69b6
NP
824 unsigned long flags, map = 0;
825
059e2320
MZ
826 if (unlikely(nr_cpu_ids == 1)) {
827 /* Only one CPU? let's do a self-IPI... */
64a267e9 828 writel_relaxed(2 << 24 | d->hwirq,
059e2320
MZ
829 gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
830 return;
831 }
832
04c8b0f8 833 gic_lock_irqsave(flags);
b1cffebf
RH
834
835 /* Convert our logical CPU mask into a physical one. */
836 for_each_cpu(cpu, mask)
91bdf0d0 837 map |= gic_cpu_map[cpu];
b1cffebf
RH
838
839 /*
840 * Ensure that stores to Normal memory are visible to the
8adbf57f 841 * other CPUs before they observe us issuing the IPI.
b1cffebf 842 */
8adbf57f 843 dmb(ishst);
b1cffebf
RH
844
845 /* this always happens on GIC0 */
64a267e9 846 writel_relaxed(map << 16 | d->hwirq, gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
1a6b69b6 847
04c8b0f8 848 gic_unlock_irqrestore(flags);
1a6b69b6 849}
7ec46b51
MZ
850
851static int gic_starting_cpu(unsigned int cpu)
852{
853 gic_cpu_init(&gic_data[0]);
854 return 0;
855}
856
857static __init void gic_smp_init(void)
858{
64a267e9
MZ
859 struct irq_fwspec sgi_fwspec = {
860 .fwnode = gic_data[0].domain->fwnode,
861 .param_count = 1,
862 };
863 int base_sgi;
864
7ec46b51
MZ
865 cpuhp_setup_state_nocalls(CPUHP_AP_IRQ_GIC_STARTING,
866 "irqchip/arm/gic:starting",
867 gic_starting_cpu, NULL);
64a267e9
MZ
868
869 base_sgi = __irq_domain_alloc_irqs(gic_data[0].domain, -1, 8,
870 NUMA_NO_NODE, &sgi_fwspec,
871 false, NULL);
872 if (WARN_ON(base_sgi <= 0))
873 return;
874
875 set_smp_ipi_range(base_sgi, 8);
7ec46b51
MZ
876}
877#else
878#define gic_smp_init() do { } while(0)
879#define gic_set_affinity NULL
64a267e9 880#define gic_ipi_send_mask NULL
1a6b69b6
NP
881#endif
882
883#ifdef CONFIG_BL_SWITCHER
14d2ca61
NP
884/*
885 * gic_send_sgi - send a SGI directly to given CPU interface number
886 *
887 * cpu_id: the ID for the destination CPU interface
888 * irq: the IPI number to send a SGI for
889 */
890void gic_send_sgi(unsigned int cpu_id, unsigned int irq)
891{
892 BUG_ON(cpu_id >= NR_GIC_CPU_IF);
893 cpu_id = 1 << cpu_id;
894 /* this always happens on GIC0 */
895 writel_relaxed((cpu_id << 16) | irq, gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
896}
897
ed96762e
NP
898/*
899 * gic_get_cpu_id - get the CPU interface ID for the specified CPU
900 *
901 * @cpu: the logical CPU number to get the GIC ID for.
902 *
903 * Return the CPU interface ID for the given logical CPU number,
904 * or -1 if the CPU number is too large or the interface ID is
905 * unknown (more than one bit set).
906 */
907int gic_get_cpu_id(unsigned int cpu)
908{
909 unsigned int cpu_bit;
910
911 if (cpu >= NR_GIC_CPU_IF)
912 return -1;
913 cpu_bit = gic_cpu_map[cpu];
914 if (cpu_bit & (cpu_bit - 1))
915 return -1;
916 return __ffs(cpu_bit);
917}
918
1a6b69b6
NP
919/*
920 * gic_migrate_target - migrate IRQs to another CPU interface
921 *
922 * @new_cpu_id: the CPU target ID to migrate IRQs to
923 *
924 * Migrate all peripheral interrupts with a target matching the current CPU
925 * to the interface corresponding to @new_cpu_id. The CPU interface mapping
926 * is also updated. Targets to other CPU interfaces are unchanged.
927 * This must be called with IRQs locally disabled.
928 */
929void gic_migrate_target(unsigned int new_cpu_id)
930{
931 unsigned int cur_cpu_id, gic_irqs, gic_nr = 0;
932 void __iomem *dist_base;
933 int i, ror_val, cpu = smp_processor_id();
934 u32 val, cur_target_mask, active_mask;
935
a27d21e0 936 BUG_ON(gic_nr >= CONFIG_ARM_GIC_MAX_NR);
1a6b69b6
NP
937
938 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
939 if (!dist_base)
940 return;
941 gic_irqs = gic_data[gic_nr].gic_irqs;
942
943 cur_cpu_id = __ffs(gic_cpu_map[cpu]);
944 cur_target_mask = 0x01010101 << cur_cpu_id;
945 ror_val = (cur_cpu_id - new_cpu_id) & 31;
946
04c8b0f8 947 gic_lock();
1a6b69b6
NP
948
949 /* Update the target interface for this logical CPU */
950 gic_cpu_map[cpu] = 1 << new_cpu_id;
951
952 /*
c5f48c0a 953 * Find all the peripheral interrupts targeting the current
1a6b69b6
NP
954 * CPU interface and migrate them to the new CPU interface.
955 * We skip DIST_TARGET 0 to 7 as they are read-only.
956 */
957 for (i = 8; i < DIV_ROUND_UP(gic_irqs, 4); i++) {
958 val = readl_relaxed(dist_base + GIC_DIST_TARGET + i * 4);
959 active_mask = val & cur_target_mask;
960 if (active_mask) {
961 val &= ~active_mask;
962 val |= ror32(active_mask, ror_val);
963 writel_relaxed(val, dist_base + GIC_DIST_TARGET + i*4);
964 }
965 }
966
04c8b0f8 967 gic_unlock();
1a6b69b6
NP
968
969 /*
970 * Now let's migrate and clear any potential SGIs that might be
971 * pending for us (cur_cpu_id). Since GIC_DIST_SGI_PENDING_SET
972 * is a banked register, we can only forward the SGI using
973 * GIC_DIST_SOFTINT. The original SGI source is lost but Linux
974 * doesn't use that information anyway.
975 *
976 * For the same reason we do not adjust SGI source information
977 * for previously sent SGIs by us to other CPUs either.
978 */
979 for (i = 0; i < 16; i += 4) {
980 int j;
981 val = readl_relaxed(dist_base + GIC_DIST_SGI_PENDING_SET + i);
982 if (!val)
983 continue;
984 writel_relaxed(val, dist_base + GIC_DIST_SGI_PENDING_CLEAR + i);
985 for (j = i; j < i + 4; j++) {
986 if (val & 0xff)
987 writel_relaxed((1 << (new_cpu_id + 16)) | j,
988 dist_base + GIC_DIST_SOFTINT);
989 val >>= 8;
990 }
991 }
b1cffebf 992}
eeb44658
NP
993
994/*
995 * gic_get_sgir_physaddr - get the physical address for the SGI register
996 *
42a590b0 997 * Return the physical address of the SGI register to be used
eeb44658
NP
998 * by some early assembly code when the kernel is not yet available.
999 */
1000static unsigned long gic_dist_physaddr;
1001
1002unsigned long gic_get_sgir_physaddr(void)
1003{
1004 if (!gic_dist_physaddr)
1005 return 0;
1006 return gic_dist_physaddr + GIC_DIST_SOFTINT;
1007}
1008
89c59cca 1009static void __init gic_init_physaddr(struct device_node *node)
eeb44658
NP
1010{
1011 struct resource res;
1012 if (of_address_to_resource(node, 0, &res) == 0) {
1013 gic_dist_physaddr = res.start;
1014 pr_info("GIC physical location is %#lx\n", gic_dist_physaddr);
1015 }
1016}
1017
1018#else
1019#define gic_init_physaddr(node) do { } while (0)
b1cffebf
RH
1020#endif
1021
75294957
GL
1022static int gic_irq_domain_map(struct irq_domain *d, unsigned int irq,
1023 irq_hw_number_t hw)
1024{
58b89649 1025 struct gic_chip_data *gic = d->host_data;
1b57d91b 1026 struct irq_data *irqd = irq_desc_get_irq_data(irq_to_desc(irq));
0b996fd3 1027
64a267e9 1028 switch (hw) {
6abbd698 1029 case 0 ... 31:
75294957 1030 irq_set_percpu_devid(irq);
58b89649 1031 irq_domain_set_info(d, irq, hw, &gic->chip, d->host_data,
9a1091ef 1032 handle_percpu_devid_irq, NULL, NULL);
64a267e9
MZ
1033 break;
1034 default:
58b89649 1035 irq_domain_set_info(d, irq, hw, &gic->chip, d->host_data,
9a1091ef 1036 handle_fasteoi_irq, NULL, NULL);
d17cab44 1037 irq_set_probe(irq);
1b57d91b 1038 irqd_set_single_target(irqd);
64a267e9 1039 break;
75294957 1040 }
1b57d91b
VS
1041
1042 /* Prevents SW retriggers which mess up the ACK/EOI ordering */
1043 irqd_set_handle_enforce_irqctx(irqd);
75294957
GL
1044 return 0;
1045}
1046
006e983b
S
1047static void gic_irq_domain_unmap(struct irq_domain *d, unsigned int irq)
1048{
006e983b
S
1049}
1050
f833f57f
MZ
1051static int gic_irq_domain_translate(struct irq_domain *d,
1052 struct irq_fwspec *fwspec,
1053 unsigned long *hwirq,
1054 unsigned int *type)
1055{
64a267e9
MZ
1056 if (fwspec->param_count == 1 && fwspec->param[0] < 16) {
1057 *hwirq = fwspec->param[0];
1058 *type = IRQ_TYPE_EDGE_RISING;
1059 return 0;
1060 }
1061
f833f57f
MZ
1062 if (is_of_node(fwspec->fwnode)) {
1063 if (fwspec->param_count < 3)
1064 return -EINVAL;
1065
64a267e9
MZ
1066 switch (fwspec->param[0]) {
1067 case 0: /* SPI */
1068 *hwirq = fwspec->param[1] + 32;
1069 break;
1070 case 1: /* PPI */
1071 *hwirq = fwspec->param[1] + 16;
1072 break;
1073 default:
1074 return -EINVAL;
1075 }
f833f57f
MZ
1076
1077 *type = fwspec->param[2] & IRQ_TYPE_SENSE_MASK;
83a86fbb
MZ
1078
1079 /* Make it clear that broken DTs are... broken */
1080 WARN_ON(*type == IRQ_TYPE_NONE);
f833f57f
MZ
1081 return 0;
1082 }
1083
75aba7b0 1084 if (is_fwnode_irqchip(fwspec->fwnode)) {
891ae769
MZ
1085 if(fwspec->param_count != 2)
1086 return -EINVAL;
1087
1088 *hwirq = fwspec->param[0];
1089 *type = fwspec->param[1];
83a86fbb
MZ
1090
1091 WARN_ON(*type == IRQ_TYPE_NONE);
891ae769
MZ
1092 return 0;
1093 }
1094
f833f57f
MZ
1095 return -EINVAL;
1096}
1097
9a1091ef
YC
1098static int gic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
1099 unsigned int nr_irqs, void *arg)
1100{
1101 int i, ret;
1102 irq_hw_number_t hwirq;
1103 unsigned int type = IRQ_TYPE_NONE;
f833f57f 1104 struct irq_fwspec *fwspec = arg;
9a1091ef 1105
f833f57f 1106 ret = gic_irq_domain_translate(domain, fwspec, &hwirq, &type);
9a1091ef
YC
1107 if (ret)
1108 return ret;
1109
456c59c3
SP
1110 for (i = 0; i < nr_irqs; i++) {
1111 ret = gic_irq_domain_map(domain, virq + i, hwirq + i);
1112 if (ret)
1113 return ret;
1114 }
9a1091ef
YC
1115
1116 return 0;
1117}
1118
1119static const struct irq_domain_ops gic_irq_domain_hierarchy_ops = {
f833f57f 1120 .translate = gic_irq_domain_translate,
9a1091ef
YC
1121 .alloc = gic_irq_domain_alloc,
1122 .free = irq_domain_free_irqs_top,
1123};
1124
6859358e 1125static const struct irq_domain_ops gic_irq_domain_ops = {
75294957 1126 .map = gic_irq_domain_map,
006e983b 1127 .unmap = gic_irq_domain_unmap,
4294f8ba
RH
1128};
1129
e95f3efd
MZ
1130static void gic_init_chip(struct gic_chip_data *gic, const char *name,
1131 bool use_eoimode1)
b580b899 1132{
58b89649 1133 /* Initialize irq_chip */
c2baa2f3 1134 gic->chip = gic_chip;
faea6455 1135 gic->chip.name = name;
c2baa2f3 1136
faea6455 1137 if (use_eoimode1) {
c2baa2f3
JH
1138 gic->chip.irq_mask = gic_eoimode1_mask_irq;
1139 gic->chip.irq_eoi = gic_eoimode1_eoi_irq;
1140 gic->chip.irq_set_vcpu_affinity = gic_irq_set_vcpu_affinity;
58b89649
LW
1141 }
1142
64a267e9 1143 if (gic == &gic_data[0]) {
7bf29d3a 1144 gic->chip.irq_set_affinity = gic_set_affinity;
64a267e9
MZ
1145 gic->chip.ipi_send_mask = gic_ipi_send_mask;
1146 }
faea6455
JH
1147}
1148
b41fdc4a 1149static int gic_init_bases(struct gic_chip_data *gic,
faea6455
JH
1150 struct fwnode_handle *handle)
1151{
b41fdc4a 1152 int gic_irqs, ret;
7bf29d3a 1153
f673b9b5 1154 if (IS_ENABLED(CONFIG_GIC_NON_BANKED) && gic->percpu_offset) {
dc9722cc 1155 /* Frankein-GIC without banked registers... */
db0d4db2
MZ
1156 unsigned int cpu;
1157
1158 gic->dist_base.percpu_base = alloc_percpu(void __iomem *);
1159 gic->cpu_base.percpu_base = alloc_percpu(void __iomem *);
1160 if (WARN_ON(!gic->dist_base.percpu_base ||
1161 !gic->cpu_base.percpu_base)) {
dc9722cc
JH
1162 ret = -ENOMEM;
1163 goto error;
db0d4db2
MZ
1164 }
1165
1166 for_each_possible_cpu(cpu) {
29e697b1
TF
1167 u32 mpidr = cpu_logical_map(cpu);
1168 u32 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0);
f673b9b5
JH
1169 unsigned long offset = gic->percpu_offset * core_id;
1170 *per_cpu_ptr(gic->dist_base.percpu_base, cpu) =
1171 gic->raw_dist_base + offset;
1172 *per_cpu_ptr(gic->cpu_base.percpu_base, cpu) =
1173 gic->raw_cpu_base + offset;
db0d4db2
MZ
1174 }
1175
8594c3b8 1176 enable_frankengic();
dc9722cc
JH
1177 } else {
1178 /* Normal, sane GIC... */
f673b9b5 1179 WARN(gic->percpu_offset,
db0d4db2 1180 "GIC_NON_BANKED not enabled, ignoring %08x offset!",
f673b9b5
JH
1181 gic->percpu_offset);
1182 gic->dist_base.common_base = gic->raw_dist_base;
1183 gic->cpu_base.common_base = gic->raw_cpu_base;
db0d4db2 1184 }
bef8f9ee 1185
4294f8ba
RH
1186 /*
1187 * Find out how many interrupts are supported.
1188 * The GIC only supports up to 1020 interrupt sources.
1189 */
db0d4db2 1190 gic_irqs = readl_relaxed(gic_data_dist_base(gic) + GIC_DIST_CTR) & 0x1f;
4294f8ba
RH
1191 gic_irqs = (gic_irqs + 1) * 32;
1192 if (gic_irqs > 1020)
1193 gic_irqs = 1020;
1194 gic->gic_irqs = gic_irqs;
1195
891ae769
MZ
1196 if (handle) { /* DT/ACPI */
1197 gic->domain = irq_domain_create_linear(handle, gic_irqs,
1198 &gic_irq_domain_hierarchy_ops,
1199 gic);
1200 } else { /* Legacy support */
9a1091ef
YC
1201 /*
1202 * For primary GICs, skip over SGIs.
b41fdc4a 1203 * No secondary GIC support whatsoever.
9a1091ef 1204 */
b41fdc4a 1205 int irq_base;
9a1091ef 1206
b41fdc4a 1207 gic_irqs -= 16; /* calculate # of irqs to allocate */
006e983b 1208
b41fdc4a 1209 irq_base = irq_alloc_descs(16, 16, gic_irqs,
006e983b 1210 numa_node_id());
287980e4 1211 if (irq_base < 0) {
b41fdc4a
MZ
1212 WARN(1, "Cannot allocate irq_descs @ IRQ16, assuming pre-allocated\n");
1213 irq_base = 16;
006e983b
S
1214 }
1215
891ae769 1216 gic->domain = irq_domain_add_legacy(NULL, gic_irqs, irq_base,
b41fdc4a 1217 16, &gic_irq_domain_ops, gic);
f37a53cc 1218 }
006e983b 1219
dc9722cc
JH
1220 if (WARN_ON(!gic->domain)) {
1221 ret = -ENODEV;
1222 goto error;
1223 }
bef8f9ee 1224
4294f8ba 1225 gic_dist_init(gic);
dc9722cc
JH
1226 ret = gic_cpu_init(gic);
1227 if (ret)
1228 goto error;
1229
1230 ret = gic_pm_init(gic);
1231 if (ret)
1232 goto error;
1233
1234 return 0;
1235
1236error:
f673b9b5 1237 if (IS_ENABLED(CONFIG_GIC_NON_BANKED) && gic->percpu_offset) {
dc9722cc
JH
1238 free_percpu(gic->dist_base.percpu_base);
1239 free_percpu(gic->cpu_base.percpu_base);
1240 }
1241
dc9722cc 1242 return ret;
b580b899
RK
1243}
1244
d6ce564c 1245static int __init __gic_init_bases(struct gic_chip_data *gic,
d6ce564c
JH
1246 struct fwnode_handle *handle)
1247{
faea6455
JH
1248 char *name;
1249 int i, ret;
d6ce564c
JH
1250
1251 if (WARN_ON(!gic || gic->domain))
1252 return -EINVAL;
1253
1254 if (gic == &gic_data[0]) {
1255 /*
1256 * Initialize the CPU interface map to all CPUs.
1257 * It will be refined as each CPU probes its ID.
1258 * This is only necessary for the primary GIC.
1259 */
1260 for (i = 0; i < NR_GIC_CPU_IF; i++)
1261 gic_cpu_map[i] = 0xff;
7ec46b51 1262
d6ce564c 1263 set_handle_irq(gic_handle_irq);
d01d3274 1264 if (static_branch_likely(&supports_deactivate_key))
d6ce564c
JH
1265 pr_info("GIC: Using split EOI/Deactivate mode\n");
1266 }
1267
d01d3274 1268 if (static_branch_likely(&supports_deactivate_key) && gic == &gic_data[0]) {
faea6455 1269 name = kasprintf(GFP_KERNEL, "GICv2");
e95f3efd 1270 gic_init_chip(gic, name, true);
faea6455
JH
1271 } else {
1272 name = kasprintf(GFP_KERNEL, "GIC-%d", (int)(gic-&gic_data[0]));
e95f3efd 1273 gic_init_chip(gic, name, false);
faea6455
JH
1274 }
1275
b41fdc4a 1276 ret = gic_init_bases(gic, handle);
faea6455
JH
1277 if (ret)
1278 kfree(name);
7ec46b51
MZ
1279 else if (gic == &gic_data[0])
1280 gic_smp_init();
faea6455
JH
1281
1282 return ret;
d6ce564c
JH
1283}
1284
b41fdc4a 1285void __init gic_init(void __iomem *dist_base, void __iomem *cpu_base)
4a6ac304 1286{
f673b9b5
JH
1287 struct gic_chip_data *gic;
1288
4a6ac304
MZ
1289 /*
1290 * Non-DT/ACPI systems won't run a hypervisor, so let's not
1291 * bother with these...
1292 */
d01d3274 1293 static_branch_disable(&supports_deactivate_key);
f673b9b5 1294
b41fdc4a 1295 gic = &gic_data[0];
f673b9b5
JH
1296 gic->raw_dist_base = dist_base;
1297 gic->raw_cpu_base = cpu_base;
1298
b41fdc4a 1299 __gic_init_bases(gic, NULL);
4a6ac304
MZ
1300}
1301
d6490461
JH
1302static void gic_teardown(struct gic_chip_data *gic)
1303{
1304 if (WARN_ON(!gic))
1305 return;
1306
1307 if (gic->raw_dist_base)
1308 iounmap(gic->raw_dist_base);
1309 if (gic->raw_cpu_base)
1310 iounmap(gic->raw_cpu_base);
4a6ac304
MZ
1311}
1312
b3f7ed03 1313#ifdef CONFIG_OF
46f101df 1314static int gic_cnt __initdata;
0962289b
MZ
1315static bool gicv2_force_probe;
1316
1317static int __init gicv2_force_probe_cfg(char *buf)
1318{
1319 return strtobool(buf, &gicv2_force_probe);
1320}
1321early_param("irqchip.gicv2_force_probe", gicv2_force_probe_cfg);
1322
12e14066
MZ
1323static bool gic_check_eoimode(struct device_node *node, void __iomem **base)
1324{
1325 struct resource cpuif_res;
1326
1327 of_address_to_resource(node, 1, &cpuif_res);
1328
1329 if (!is_hyp_mode_available())
1330 return false;
0962289b
MZ
1331 if (resource_size(&cpuif_res) < SZ_8K) {
1332 void __iomem *alt;
1333 /*
1334 * Check for a stupid firmware that only exposes the
1335 * first page of a GICv2.
1336 */
1337 if (!gic_check_gicv2(*base))
1338 return false;
1339
1340 if (!gicv2_force_probe) {
1341 pr_warn("GIC: GICv2 detected, but range too small and irqchip.gicv2_force_probe not set\n");
1342 return false;
1343 }
1344
1345 alt = ioremap(cpuif_res.start, SZ_8K);
1346 if (!alt)
1347 return false;
1348 if (!gic_check_gicv2(alt + SZ_4K)) {
1349 /*
1350 * The first page was that of a GICv2, and
1351 * the second was *something*. Let's trust it
1352 * to be a GICv2, and update the mapping.
1353 */
1354 pr_warn("GIC: GICv2 at %pa, but range is too small (broken DT?), assuming 8kB\n",
1355 &cpuif_res.start);
1356 iounmap(*base);
1357 *base = alt;
1358 return true;
1359 }
12e14066
MZ
1360
1361 /*
0962289b
MZ
1362 * We detected *two* initial GICv2 pages in a
1363 * row. Could be a GICv2 aliased over two 64kB
1364 * pages. Update the resource, map the iospace, and
1365 * pray.
1366 */
1367 iounmap(alt);
1368 alt = ioremap(cpuif_res.start, SZ_128K);
1369 if (!alt)
1370 return false;
1371 pr_warn("GIC: Aliased GICv2 at %pa, trying to find the canonical range over 128kB\n",
1372 &cpuif_res.start);
1373 cpuif_res.end = cpuif_res.start + SZ_128K -1;
1374 iounmap(*base);
1375 *base = alt;
1376 }
1377 if (resource_size(&cpuif_res) == SZ_128K) {
1378 /*
1379 * Verify that we have the first 4kB of a GICv2
12e14066
MZ
1380 * aliased over the first 64kB by checking the
1381 * GICC_IIDR register on both ends.
1382 */
0962289b
MZ
1383 if (!gic_check_gicv2(*base) ||
1384 !gic_check_gicv2(*base + 0xf000))
12e14066
MZ
1385 return false;
1386
1387 /*
1388 * Move the base up by 60kB, so that we have a 8kB
1389 * contiguous region, which allows us to use GICC_DIR
1390 * at its normal offset. Please pass me that bucket.
1391 */
1392 *base += 0xf000;
1393 cpuif_res.start += 0xf000;
fd5bed48 1394 pr_warn("GIC: Adjusting CPU interface base to %pa\n",
12e14066
MZ
1395 &cpuif_res.start);
1396 }
1397
1398 return true;
1399}
1400
b78f2692
MZ
1401static bool gic_enable_rmw_access(void *data)
1402{
1403 /*
1404 * The EMEV2 class of machines has a broken interconnect, and
1405 * locks up on accesses that are less than 32bit. So far, only
1406 * the affinity setting requires it.
1407 */
1408 if (of_machine_is_compatible("renesas,emev2")) {
1409 static_branch_enable(&needs_rmw_access);
1410 return true;
1411 }
1412
1413 return false;
1414}
1415
1416static const struct gic_quirk gic_quirks[] = {
1417 {
1418 .desc = "broken byte access",
1419 .compatible = "arm,pl390",
1420 .init = gic_enable_rmw_access,
1421 },
1422 { },
1423};
1424
9c8edddf 1425static int gic_of_setup(struct gic_chip_data *gic, struct device_node *node)
d6490461
JH
1426{
1427 if (!gic || !node)
1428 return -EINVAL;
1429
1430 gic->raw_dist_base = of_iomap(node, 0);
1431 if (WARN(!gic->raw_dist_base, "unable to map gic dist registers\n"))
1432 goto error;
1433
1434 gic->raw_cpu_base = of_iomap(node, 1);
1435 if (WARN(!gic->raw_cpu_base, "unable to map gic cpu registers\n"))
1436 goto error;
1437
1438 if (of_property_read_u32(node, "cpu-offset", &gic->percpu_offset))
1439 gic->percpu_offset = 0;
1440
b78f2692
MZ
1441 gic_enable_of_quirks(node, gic_quirks, gic);
1442
d6490461
JH
1443 return 0;
1444
1445error:
1446 gic_teardown(gic);
1447
1448 return -ENOMEM;
1449}
1450
9c8edddf
JH
1451int gic_of_init_child(struct device *dev, struct gic_chip_data **gic, int irq)
1452{
1453 int ret;
1454
1455 if (!dev || !dev->of_node || !gic || !irq)
1456 return -EINVAL;
1457
1458 *gic = devm_kzalloc(dev, sizeof(**gic), GFP_KERNEL);
1459 if (!*gic)
1460 return -ENOMEM;
1461
e95f3efd 1462 gic_init_chip(*gic, dev->of_node->name, false);
9c8edddf
JH
1463
1464 ret = gic_of_setup(*gic, dev->of_node);
1465 if (ret)
1466 return ret;
1467
b41fdc4a 1468 ret = gic_init_bases(*gic, &dev->of_node->fwnode);
9c8edddf
JH
1469 if (ret) {
1470 gic_teardown(*gic);
1471 return ret;
1472 }
1473
e95f3efd 1474 irq_domain_set_pm_device((*gic)->domain, dev);
9c8edddf
JH
1475 irq_set_chained_handler_and_data(irq, gic_handle_cascade_irq, *gic);
1476
1477 return 0;
1478}
1479
502d6df1
JG
1480static void __init gic_of_setup_kvm_info(struct device_node *node)
1481{
1482 int ret;
1483 struct resource *vctrl_res = &gic_v2_kvm_info.vctrl;
1484 struct resource *vcpu_res = &gic_v2_kvm_info.vcpu;
1485
1486 gic_v2_kvm_info.type = GIC_V2;
1487
1488 gic_v2_kvm_info.maint_irq = irq_of_parse_and_map(node, 0);
1489 if (!gic_v2_kvm_info.maint_irq)
1490 return;
1491
1492 ret = of_address_to_resource(node, 2, vctrl_res);
1493 if (ret)
1494 return;
1495
1496 ret = of_address_to_resource(node, 3, vcpu_res);
1497 if (ret)
1498 return;
1499
d01d3274 1500 if (static_branch_likely(&supports_deactivate_key))
0e5cb777 1501 vgic_set_kvm_info(&gic_v2_kvm_info);
502d6df1
JG
1502}
1503
8673c1d7 1504int __init
6859358e 1505gic_of_init(struct device_node *node, struct device_node *parent)
b3f7ed03 1506{
f673b9b5 1507 struct gic_chip_data *gic;
dc9722cc 1508 int irq, ret;
b3f7ed03
RH
1509
1510 if (WARN_ON(!node))
1511 return -ENODEV;
1512
f673b9b5
JH
1513 if (WARN_ON(gic_cnt >= CONFIG_ARM_GIC_MAX_NR))
1514 return -EINVAL;
1515
1516 gic = &gic_data[gic_cnt];
b3f7ed03 1517
d6490461
JH
1518 ret = gic_of_setup(gic, node);
1519 if (ret)
1520 return ret;
b3f7ed03 1521
0b996fd3
MZ
1522 /*
1523 * Disable split EOI/Deactivate if either HYP is not available
1524 * or the CPU interface is too small.
1525 */
f673b9b5 1526 if (gic_cnt == 0 && !gic_check_eoimode(node, &gic->raw_cpu_base))
d01d3274 1527 static_branch_disable(&supports_deactivate_key);
0b996fd3 1528
b41fdc4a 1529 ret = __gic_init_bases(gic, &node->fwnode);
dc9722cc 1530 if (ret) {
d6490461 1531 gic_teardown(gic);
dc9722cc
JH
1532 return ret;
1533 }
db0d4db2 1534
502d6df1 1535 if (!gic_cnt) {
eeb44658 1536 gic_init_physaddr(node);
502d6df1
JG
1537 gic_of_setup_kvm_info(node);
1538 }
b3f7ed03
RH
1539
1540 if (parent) {
1541 irq = irq_of_parse_and_map(node, 0);
1542 gic_cascade_irq(gic_cnt, irq);
1543 }
853a33ce
SS
1544
1545 if (IS_ENABLED(CONFIG_ARM_GIC_V2M))
0644b3da 1546 gicv2m_init(&node->fwnode, gic_data[gic_cnt].domain);
853a33ce 1547
b3f7ed03
RH
1548 gic_cnt++;
1549 return 0;
1550}
144cb088 1551IRQCHIP_DECLARE(gic_400, "arm,gic-400", gic_of_init);
fa6e2eec
LW
1552IRQCHIP_DECLARE(arm11mp_gic, "arm,arm11mp-gic", gic_of_init);
1553IRQCHIP_DECLARE(arm1176jzf_dc_gic, "arm,arm1176jzf-devchip-gic", gic_of_init);
81243e44
RH
1554IRQCHIP_DECLARE(cortex_a15_gic, "arm,cortex-a15-gic", gic_of_init);
1555IRQCHIP_DECLARE(cortex_a9_gic, "arm,cortex-a9-gic", gic_of_init);
a97e8027 1556IRQCHIP_DECLARE(cortex_a7_gic, "arm,cortex-a7-gic", gic_of_init);
81243e44
RH
1557IRQCHIP_DECLARE(msm_8660_qgic, "qcom,msm-8660-qgic", gic_of_init);
1558IRQCHIP_DECLARE(msm_qgic2, "qcom,msm-qgic2", gic_of_init);
8709b9eb 1559IRQCHIP_DECLARE(pl390, "arm,pl390", gic_of_init);
9c8edddf
JH
1560#else
1561int gic_of_init_child(struct device *dev, struct gic_chip_data **gic, int irq)
1562{
1563 return -ENOTSUPP;
1564}
b3f7ed03 1565#endif
d60fc389
TN
1566
1567#ifdef CONFIG_ACPI
bafa9193
JG
1568static struct
1569{
1570 phys_addr_t cpu_phys_base;
502d6df1
JG
1571 u32 maint_irq;
1572 int maint_irq_mode;
1573 phys_addr_t vctrl_base;
1574 phys_addr_t vcpu_base;
bafa9193 1575} acpi_data __initdata;
d60fc389
TN
1576
1577static int __init
60574d1e 1578gic_acpi_parse_madt_cpu(union acpi_subtable_headers *header,
d60fc389
TN
1579 const unsigned long end)
1580{
1581 struct acpi_madt_generic_interrupt *processor;
1582 phys_addr_t gic_cpu_base;
1583 static int cpu_base_assigned;
1584
1585 processor = (struct acpi_madt_generic_interrupt *)header;
1586
99e3e3ae 1587 if (BAD_MADT_GICC_ENTRY(processor, end))
d60fc389
TN
1588 return -EINVAL;
1589
1590 /*
1591 * There is no support for non-banked GICv1/2 register in ACPI spec.
1592 * All CPU interface addresses have to be the same.
1593 */
1594 gic_cpu_base = processor->base_address;
bafa9193 1595 if (cpu_base_assigned && gic_cpu_base != acpi_data.cpu_phys_base)
d60fc389
TN
1596 return -EINVAL;
1597
bafa9193 1598 acpi_data.cpu_phys_base = gic_cpu_base;
502d6df1
JG
1599 acpi_data.maint_irq = processor->vgic_interrupt;
1600 acpi_data.maint_irq_mode = (processor->flags & ACPI_MADT_VGIC_IRQ_MODE) ?
1601 ACPI_EDGE_SENSITIVE : ACPI_LEVEL_SENSITIVE;
1602 acpi_data.vctrl_base = processor->gich_base_address;
1603 acpi_data.vcpu_base = processor->gicv_base_address;
1604
d60fc389
TN
1605 cpu_base_assigned = 1;
1606 return 0;
1607}
1608
f26527b1 1609/* The things you have to do to just *count* something... */
60574d1e 1610static int __init acpi_dummy_func(union acpi_subtable_headers *header,
f26527b1 1611 const unsigned long end)
d60fc389 1612{
f26527b1
MZ
1613 return 0;
1614}
d60fc389 1615
f26527b1
MZ
1616static bool __init acpi_gic_redist_is_present(void)
1617{
1618 return acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR,
1619 acpi_dummy_func, 0) > 0;
1620}
d60fc389 1621
f26527b1
MZ
1622static bool __init gic_validate_dist(struct acpi_subtable_header *header,
1623 struct acpi_probe_entry *ape)
1624{
1625 struct acpi_madt_generic_distributor *dist;
1626 dist = (struct acpi_madt_generic_distributor *)header;
d60fc389 1627
f26527b1
MZ
1628 return (dist->version == ape->driver_data &&
1629 (dist->version != ACPI_MADT_GIC_VERSION_NONE ||
1630 !acpi_gic_redist_is_present()));
d60fc389
TN
1631}
1632
f26527b1
MZ
1633#define ACPI_GICV2_DIST_MEM_SIZE (SZ_4K)
1634#define ACPI_GIC_CPU_IF_MEM_SIZE (SZ_8K)
502d6df1
JG
1635#define ACPI_GICV2_VCTRL_MEM_SIZE (SZ_4K)
1636#define ACPI_GICV2_VCPU_MEM_SIZE (SZ_8K)
1637
1638static void __init gic_acpi_setup_kvm_info(void)
1639{
1640 int irq;
1641 struct resource *vctrl_res = &gic_v2_kvm_info.vctrl;
1642 struct resource *vcpu_res = &gic_v2_kvm_info.vcpu;
1643
1644 gic_v2_kvm_info.type = GIC_V2;
1645
1646 if (!acpi_data.vctrl_base)
1647 return;
1648
1649 vctrl_res->flags = IORESOURCE_MEM;
1650 vctrl_res->start = acpi_data.vctrl_base;
1651 vctrl_res->end = vctrl_res->start + ACPI_GICV2_VCTRL_MEM_SIZE - 1;
1652
1653 if (!acpi_data.vcpu_base)
1654 return;
1655
1656 vcpu_res->flags = IORESOURCE_MEM;
1657 vcpu_res->start = acpi_data.vcpu_base;
1658 vcpu_res->end = vcpu_res->start + ACPI_GICV2_VCPU_MEM_SIZE - 1;
1659
1660 irq = acpi_register_gsi(NULL, acpi_data.maint_irq,
1661 acpi_data.maint_irq_mode,
1662 ACPI_ACTIVE_HIGH);
1663 if (irq <= 0)
1664 return;
1665
1666 gic_v2_kvm_info.maint_irq = irq;
1667
0e5cb777 1668 vgic_set_kvm_info(&gic_v2_kvm_info);
502d6df1 1669}
f26527b1 1670
aba3c7ed 1671static int __init gic_v2_acpi_init(union acpi_subtable_headers *header,
f26527b1 1672 const unsigned long end)
d60fc389 1673{
f26527b1 1674 struct acpi_madt_generic_distributor *dist;
891ae769 1675 struct fwnode_handle *domain_handle;
f673b9b5 1676 struct gic_chip_data *gic = &gic_data[0];
dc9722cc 1677 int count, ret;
d60fc389
TN
1678
1679 /* Collect CPU base addresses */
f26527b1
MZ
1680 count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT,
1681 gic_acpi_parse_madt_cpu, 0);
d60fc389
TN
1682 if (count <= 0) {
1683 pr_err("No valid GICC entries exist\n");
1684 return -EINVAL;
1685 }
1686
7beaa24b 1687 gic->raw_cpu_base = ioremap(acpi_data.cpu_phys_base, ACPI_GIC_CPU_IF_MEM_SIZE);
f673b9b5 1688 if (!gic->raw_cpu_base) {
d60fc389
TN
1689 pr_err("Unable to map GICC registers\n");
1690 return -ENOMEM;
1691 }
1692
f26527b1 1693 dist = (struct acpi_madt_generic_distributor *)header;
f673b9b5
JH
1694 gic->raw_dist_base = ioremap(dist->base_address,
1695 ACPI_GICV2_DIST_MEM_SIZE);
1696 if (!gic->raw_dist_base) {
d60fc389 1697 pr_err("Unable to map GICD registers\n");
d6490461 1698 gic_teardown(gic);
d60fc389
TN
1699 return -ENOMEM;
1700 }
1701
0b996fd3
MZ
1702 /*
1703 * Disable split EOI/Deactivate if HYP is not available. ACPI
1704 * guarantees that we'll always have a GICv2, so the CPU
1705 * interface will always be the right size.
1706 */
1707 if (!is_hyp_mode_available())
d01d3274 1708 static_branch_disable(&supports_deactivate_key);
0b996fd3 1709
d60fc389 1710 /*
891ae769 1711 * Initialize GIC instance zero (no multi-GIC support).
d60fc389 1712 */
188a8471 1713 domain_handle = irq_domain_alloc_fwnode(&dist->base_address);
891ae769
MZ
1714 if (!domain_handle) {
1715 pr_err("Unable to allocate domain handle\n");
d6490461 1716 gic_teardown(gic);
891ae769
MZ
1717 return -ENOMEM;
1718 }
1719
b41fdc4a 1720 ret = __gic_init_bases(gic, domain_handle);
dc9722cc
JH
1721 if (ret) {
1722 pr_err("Failed to initialise GIC\n");
1723 irq_domain_free_fwnode(domain_handle);
d6490461 1724 gic_teardown(gic);
dc9722cc
JH
1725 return ret;
1726 }
d8f4f161 1727
891ae769 1728 acpi_set_irq_model(ACPI_IRQ_MODEL_GIC, domain_handle);
0644b3da
SS
1729
1730 if (IS_ENABLED(CONFIG_ARM_GIC_V2M))
1731 gicv2m_init(NULL, gic_data[0].domain);
1732
d01d3274 1733 if (static_branch_likely(&supports_deactivate_key))
d33a3c8c 1734 gic_acpi_setup_kvm_info();
502d6df1 1735
d60fc389
TN
1736 return 0;
1737}
f26527b1
MZ
1738IRQCHIP_ACPI_DECLARE(gic_v2, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
1739 gic_validate_dist, ACPI_MADT_GIC_VERSION_V2,
1740 gic_v2_acpi_init);
1741IRQCHIP_ACPI_DECLARE(gic_v2_maybe, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
1742 gic_validate_dist, ACPI_MADT_GIC_VERSION_NONE,
1743 gic_v2_acpi_init);
d60fc389 1744#endif