genirq: Remove irq argument from irq flow handlers
[deliverable/linux.git] / drivers / irqchip / irq-gic.c
CommitLineData
f27ecacc 1/*
f27ecacc
RK
2 * Copyright (C) 2002 ARM Limited, All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Interrupt architecture for the GIC:
9 *
10 * o There is one Interrupt Distributor, which receives interrupts
11 * from system devices and sends them to the Interrupt Controllers.
12 *
13 * o There is one CPU Interface per CPU, which sends interrupts sent
14 * by the Distributor, and interrupts generated locally, to the
b3a1bde4
CM
15 * associated CPU. The base address of the CPU interface is usually
16 * aliased so that the same address points to different chips depending
17 * on the CPU it is accessed from.
f27ecacc
RK
18 *
19 * Note that IRQs 0-31 are special - they are local to each CPU.
20 * As such, the enable set/clear, pending set/clear and active bit
21 * registers are banked per-cpu for these sources.
22 */
23#include <linux/init.h>
24#include <linux/kernel.h>
f37a53cc 25#include <linux/err.h>
7e1efcf5 26#include <linux/module.h>
f27ecacc
RK
27#include <linux/list.h>
28#include <linux/smp.h>
c0114709 29#include <linux/cpu.h>
254056f3 30#include <linux/cpu_pm.h>
dcb86e8c 31#include <linux/cpumask.h>
fced80c7 32#include <linux/io.h>
b3f7ed03
RH
33#include <linux/of.h>
34#include <linux/of_address.h>
35#include <linux/of_irq.h>
d60fc389 36#include <linux/acpi.h>
4294f8ba 37#include <linux/irqdomain.h>
292b293c
MZ
38#include <linux/interrupt.h>
39#include <linux/percpu.h>
40#include <linux/slab.h>
41a83e06 41#include <linux/irqchip.h>
de88cbb7 42#include <linux/irqchip/chained_irq.h>
520f7bd7 43#include <linux/irqchip/arm-gic.h>
d60fc389 44#include <linux/irqchip/arm-gic-acpi.h>
f27ecacc 45
29e697b1 46#include <asm/cputype.h>
f27ecacc 47#include <asm/irq.h>
562e0027 48#include <asm/exception.h>
eb50439b 49#include <asm/smp_plat.h>
0b996fd3 50#include <asm/virt.h>
f27ecacc 51
d51d0af4 52#include "irq-gic-common.h"
f27ecacc 53
db0d4db2
MZ
54union gic_base {
55 void __iomem *common_base;
6859358e 56 void __percpu * __iomem *percpu_base;
db0d4db2
MZ
57};
58
59struct gic_chip_data {
db0d4db2
MZ
60 union gic_base dist_base;
61 union gic_base cpu_base;
62#ifdef CONFIG_CPU_PM
63 u32 saved_spi_enable[DIV_ROUND_UP(1020, 32)];
64 u32 saved_spi_conf[DIV_ROUND_UP(1020, 16)];
65 u32 saved_spi_target[DIV_ROUND_UP(1020, 4)];
66 u32 __percpu *saved_ppi_enable;
67 u32 __percpu *saved_ppi_conf;
68#endif
75294957 69 struct irq_domain *domain;
db0d4db2
MZ
70 unsigned int gic_irqs;
71#ifdef CONFIG_GIC_NON_BANKED
72 void __iomem *(*get_base)(union gic_base *);
73#endif
74};
75
bd31b859 76static DEFINE_RAW_SPINLOCK(irq_controller_lock);
f27ecacc 77
384a2902
NP
78/*
79 * The GIC mapping of CPU interfaces does not necessarily match
80 * the logical CPU numbering. Let's use a mapping as returned
81 * by the GIC itself.
82 */
83#define NR_GIC_CPU_IF 8
84static u8 gic_cpu_map[NR_GIC_CPU_IF] __read_mostly;
85
0b996fd3
MZ
86static struct static_key supports_deactivate = STATIC_KEY_INIT_TRUE;
87
b3a1bde4
CM
88#ifndef MAX_GIC_NR
89#define MAX_GIC_NR 1
90#endif
91
bef8f9ee 92static struct gic_chip_data gic_data[MAX_GIC_NR] __read_mostly;
b3a1bde4 93
db0d4db2
MZ
94#ifdef CONFIG_GIC_NON_BANKED
95static void __iomem *gic_get_percpu_base(union gic_base *base)
96{
513d1a28 97 return raw_cpu_read(*base->percpu_base);
db0d4db2
MZ
98}
99
100static void __iomem *gic_get_common_base(union gic_base *base)
101{
102 return base->common_base;
103}
104
105static inline void __iomem *gic_data_dist_base(struct gic_chip_data *data)
106{
107 return data->get_base(&data->dist_base);
108}
109
110static inline void __iomem *gic_data_cpu_base(struct gic_chip_data *data)
111{
112 return data->get_base(&data->cpu_base);
113}
114
115static inline void gic_set_base_accessor(struct gic_chip_data *data,
116 void __iomem *(*f)(union gic_base *))
117{
118 data->get_base = f;
119}
120#else
121#define gic_data_dist_base(d) ((d)->dist_base.common_base)
122#define gic_data_cpu_base(d) ((d)->cpu_base.common_base)
46f101df 123#define gic_set_base_accessor(d, f)
db0d4db2
MZ
124#endif
125
7d1f4288 126static inline void __iomem *gic_dist_base(struct irq_data *d)
b3a1bde4 127{
7d1f4288 128 struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
db0d4db2 129 return gic_data_dist_base(gic_data);
b3a1bde4
CM
130}
131
7d1f4288 132static inline void __iomem *gic_cpu_base(struct irq_data *d)
b3a1bde4 133{
7d1f4288 134 struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
db0d4db2 135 return gic_data_cpu_base(gic_data);
b3a1bde4
CM
136}
137
7d1f4288 138static inline unsigned int gic_irq(struct irq_data *d)
b3a1bde4 139{
4294f8ba 140 return d->hwirq;
b3a1bde4
CM
141}
142
01f779f4
MZ
143static inline bool cascading_gic_irq(struct irq_data *d)
144{
145 void *data = irq_data_get_irq_handler_data(d);
146
147 /*
71466535
TG
148 * If handler_data is set, this is a cascading interrupt, and
149 * it cannot possibly be forwarded.
01f779f4 150 */
71466535 151 return data != NULL;
01f779f4
MZ
152}
153
f27ecacc
RK
154/*
155 * Routines to acknowledge, disable and enable interrupts
f27ecacc 156 */
56717807
MZ
157static void gic_poke_irq(struct irq_data *d, u32 offset)
158{
159 u32 mask = 1 << (gic_irq(d) % 32);
160 writel_relaxed(mask, gic_dist_base(d) + offset + (gic_irq(d) / 32) * 4);
161}
162
163static int gic_peek_irq(struct irq_data *d, u32 offset)
f27ecacc 164{
4294f8ba 165 u32 mask = 1 << (gic_irq(d) % 32);
56717807
MZ
166 return !!(readl_relaxed(gic_dist_base(d) + offset + (gic_irq(d) / 32) * 4) & mask);
167}
168
169static void gic_mask_irq(struct irq_data *d)
170{
56717807 171 gic_poke_irq(d, GIC_DIST_ENABLE_CLEAR);
f27ecacc
RK
172}
173
0b996fd3
MZ
174static void gic_eoimode1_mask_irq(struct irq_data *d)
175{
176 gic_mask_irq(d);
01f779f4
MZ
177 /*
178 * When masking a forwarded interrupt, make sure it is
179 * deactivated as well.
180 *
181 * This ensures that an interrupt that is getting
182 * disabled/masked will not get "stuck", because there is
183 * noone to deactivate it (guest is being terminated).
184 */
71466535 185 if (irqd_is_forwarded_to_vcpu(d))
01f779f4 186 gic_poke_irq(d, GIC_DIST_ACTIVE_CLEAR);
0b996fd3
MZ
187}
188
7d1f4288 189static void gic_unmask_irq(struct irq_data *d)
f27ecacc 190{
56717807 191 gic_poke_irq(d, GIC_DIST_ENABLE_SET);
f27ecacc
RK
192}
193
1a01753e
WD
194static void gic_eoi_irq(struct irq_data *d)
195{
6ac77e46 196 writel_relaxed(gic_irq(d), gic_cpu_base(d) + GIC_CPU_EOI);
1a01753e
WD
197}
198
0b996fd3
MZ
199static void gic_eoimode1_eoi_irq(struct irq_data *d)
200{
01f779f4 201 /* Do not deactivate an IRQ forwarded to a vcpu. */
71466535 202 if (irqd_is_forwarded_to_vcpu(d))
01f779f4
MZ
203 return;
204
0b996fd3
MZ
205 writel_relaxed(gic_irq(d), gic_cpu_base(d) + GIC_CPU_DEACTIVATE);
206}
207
56717807
MZ
208static int gic_irq_set_irqchip_state(struct irq_data *d,
209 enum irqchip_irq_state which, bool val)
210{
211 u32 reg;
212
213 switch (which) {
214 case IRQCHIP_STATE_PENDING:
215 reg = val ? GIC_DIST_PENDING_SET : GIC_DIST_PENDING_CLEAR;
216 break;
217
218 case IRQCHIP_STATE_ACTIVE:
219 reg = val ? GIC_DIST_ACTIVE_SET : GIC_DIST_ACTIVE_CLEAR;
220 break;
221
222 case IRQCHIP_STATE_MASKED:
223 reg = val ? GIC_DIST_ENABLE_CLEAR : GIC_DIST_ENABLE_SET;
224 break;
225
226 default:
227 return -EINVAL;
228 }
229
230 gic_poke_irq(d, reg);
231 return 0;
232}
233
234static int gic_irq_get_irqchip_state(struct irq_data *d,
235 enum irqchip_irq_state which, bool *val)
236{
237 switch (which) {
238 case IRQCHIP_STATE_PENDING:
239 *val = gic_peek_irq(d, GIC_DIST_PENDING_SET);
240 break;
241
242 case IRQCHIP_STATE_ACTIVE:
243 *val = gic_peek_irq(d, GIC_DIST_ACTIVE_SET);
244 break;
245
246 case IRQCHIP_STATE_MASKED:
247 *val = !gic_peek_irq(d, GIC_DIST_ENABLE_SET);
248 break;
249
250 default:
251 return -EINVAL;
252 }
253
254 return 0;
255}
256
7d1f4288 257static int gic_set_type(struct irq_data *d, unsigned int type)
5c0c1f08 258{
7d1f4288
LB
259 void __iomem *base = gic_dist_base(d);
260 unsigned int gicirq = gic_irq(d);
5c0c1f08
RV
261
262 /* Interrupt configuration for SGIs can't be changed */
263 if (gicirq < 16)
264 return -EINVAL;
265
fb7e7deb
LD
266 /* SPIs have restrictions on the supported types */
267 if (gicirq >= 32 && type != IRQ_TYPE_LEVEL_HIGH &&
268 type != IRQ_TYPE_EDGE_RISING)
5c0c1f08
RV
269 return -EINVAL;
270
1dcc73d7 271 return gic_configure_irq(gicirq, type, base, NULL);
d7ed36a4
SS
272}
273
01f779f4
MZ
274static int gic_irq_set_vcpu_affinity(struct irq_data *d, void *vcpu)
275{
276 /* Only interrupts on the primary GIC can be forwarded to a vcpu. */
277 if (cascading_gic_irq(d))
278 return -EINVAL;
279
71466535
TG
280 if (vcpu)
281 irqd_set_forwarded_to_vcpu(d);
282 else
283 irqd_clr_forwarded_to_vcpu(d);
01f779f4
MZ
284 return 0;
285}
286
a06f5466 287#ifdef CONFIG_SMP
c191789c
RK
288static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
289 bool force)
f27ecacc 290{
7d1f4288 291 void __iomem *reg = gic_dist_base(d) + GIC_DIST_TARGET + (gic_irq(d) & ~3);
ffde1de6 292 unsigned int cpu, shift = (gic_irq(d) % 4) * 8;
c191789c 293 u32 val, mask, bit;
cf613871 294 unsigned long flags;
f27ecacc 295
ffde1de6
TG
296 if (!force)
297 cpu = cpumask_any_and(mask_val, cpu_online_mask);
298 else
299 cpu = cpumask_first(mask_val);
300
384a2902 301 if (cpu >= NR_GIC_CPU_IF || cpu >= nr_cpu_ids)
87507500 302 return -EINVAL;
c191789c 303
cf613871 304 raw_spin_lock_irqsave(&irq_controller_lock, flags);
c191789c 305 mask = 0xff << shift;
384a2902 306 bit = gic_cpu_map[cpu] << shift;
6ac77e46
SS
307 val = readl_relaxed(reg) & ~mask;
308 writel_relaxed(val | bit, reg);
cf613871 309 raw_spin_unlock_irqrestore(&irq_controller_lock, flags);
d5dedd45 310
5dfc54e0 311 return IRQ_SET_MASK_OK;
f27ecacc 312}
a06f5466 313#endif
f27ecacc 314
8783dd3a 315static void __exception_irq_entry gic_handle_irq(struct pt_regs *regs)
562e0027
MZ
316{
317 u32 irqstat, irqnr;
318 struct gic_chip_data *gic = &gic_data[0];
319 void __iomem *cpu_base = gic_data_cpu_base(gic);
320
321 do {
322 irqstat = readl_relaxed(cpu_base + GIC_CPU_INTACK);
b8802f76 323 irqnr = irqstat & GICC_IAR_INT_ID_MASK;
562e0027
MZ
324
325 if (likely(irqnr > 15 && irqnr < 1021)) {
0b996fd3
MZ
326 if (static_key_true(&supports_deactivate))
327 writel_relaxed(irqstat, cpu_base + GIC_CPU_EOI);
60031b4e 328 handle_domain_irq(gic->domain, irqnr, regs);
562e0027
MZ
329 continue;
330 }
331 if (irqnr < 16) {
332 writel_relaxed(irqstat, cpu_base + GIC_CPU_EOI);
0b996fd3
MZ
333 if (static_key_true(&supports_deactivate))
334 writel_relaxed(irqstat, cpu_base + GIC_CPU_DEACTIVATE);
562e0027
MZ
335#ifdef CONFIG_SMP
336 handle_IPI(irqnr, regs);
337#endif
338 continue;
339 }
340 break;
341 } while (1);
342}
343
bd0b9ac4 344static void gic_handle_cascade_irq(struct irq_desc *desc)
b3a1bde4 345{
5b29264c
JL
346 struct gic_chip_data *chip_data = irq_desc_get_handler_data(desc);
347 struct irq_chip *chip = irq_desc_get_chip(desc);
0f347bb9 348 unsigned int cascade_irq, gic_irq;
b3a1bde4
CM
349 unsigned long status;
350
1a01753e 351 chained_irq_enter(chip, desc);
b3a1bde4 352
bd31b859 353 raw_spin_lock(&irq_controller_lock);
db0d4db2 354 status = readl_relaxed(gic_data_cpu_base(chip_data) + GIC_CPU_INTACK);
bd31b859 355 raw_spin_unlock(&irq_controller_lock);
b3a1bde4 356
e5f81539
FK
357 gic_irq = (status & GICC_IAR_INT_ID_MASK);
358 if (gic_irq == GICC_INT_SPURIOUS)
b3a1bde4 359 goto out;
b3a1bde4 360
75294957
GL
361 cascade_irq = irq_find_mapping(chip_data->domain, gic_irq);
362 if (unlikely(gic_irq < 32 || gic_irq > 1020))
bd0b9ac4 363 handle_bad_irq(desc);
0f347bb9
RK
364 else
365 generic_handle_irq(cascade_irq);
b3a1bde4
CM
366
367 out:
1a01753e 368 chained_irq_exit(chip, desc);
b3a1bde4
CM
369}
370
38c677cb 371static struct irq_chip gic_chip = {
7d1f4288 372 .name = "GIC",
7d1f4288
LB
373 .irq_mask = gic_mask_irq,
374 .irq_unmask = gic_unmask_irq,
1a01753e 375 .irq_eoi = gic_eoi_irq,
7d1f4288 376 .irq_set_type = gic_set_type,
f27ecacc 377#ifdef CONFIG_SMP
c191789c 378 .irq_set_affinity = gic_set_affinity,
f27ecacc 379#endif
56717807
MZ
380 .irq_get_irqchip_state = gic_irq_get_irqchip_state,
381 .irq_set_irqchip_state = gic_irq_set_irqchip_state,
aec89ef7
SH
382 .flags = IRQCHIP_SET_TYPE_MASKED |
383 IRQCHIP_SKIP_SET_WAKE |
384 IRQCHIP_MASK_ON_SUSPEND,
f27ecacc
RK
385};
386
0b996fd3
MZ
387static struct irq_chip gic_eoimode1_chip = {
388 .name = "GICv2",
389 .irq_mask = gic_eoimode1_mask_irq,
390 .irq_unmask = gic_unmask_irq,
391 .irq_eoi = gic_eoimode1_eoi_irq,
392 .irq_set_type = gic_set_type,
393#ifdef CONFIG_SMP
394 .irq_set_affinity = gic_set_affinity,
395#endif
396 .irq_get_irqchip_state = gic_irq_get_irqchip_state,
397 .irq_set_irqchip_state = gic_irq_set_irqchip_state,
01f779f4 398 .irq_set_vcpu_affinity = gic_irq_set_vcpu_affinity,
0b996fd3
MZ
399 .flags = IRQCHIP_SET_TYPE_MASKED |
400 IRQCHIP_SKIP_SET_WAKE |
401 IRQCHIP_MASK_ON_SUSPEND,
402};
403
b3a1bde4
CM
404void __init gic_cascade_irq(unsigned int gic_nr, unsigned int irq)
405{
406 if (gic_nr >= MAX_GIC_NR)
407 BUG();
4d83fcf8
TG
408 irq_set_chained_handler_and_data(irq, gic_handle_cascade_irq,
409 &gic_data[gic_nr]);
b3a1bde4
CM
410}
411
2bb31351
RK
412static u8 gic_get_cpumask(struct gic_chip_data *gic)
413{
414 void __iomem *base = gic_data_dist_base(gic);
415 u32 mask, i;
416
417 for (i = mask = 0; i < 32; i += 4) {
418 mask = readl_relaxed(base + GIC_DIST_TARGET + i);
419 mask |= mask >> 16;
420 mask |= mask >> 8;
421 if (mask)
422 break;
423 }
424
6e3aca44 425 if (!mask && num_possible_cpus() > 1)
2bb31351
RK
426 pr_crit("GIC CPU mask not found - kernel will fail to boot.\n");
427
428 return mask;
429}
430
4c2880b3 431static void gic_cpu_if_up(struct gic_chip_data *gic)
32289506 432{
4c2880b3 433 void __iomem *cpu_base = gic_data_cpu_base(gic);
32289506 434 u32 bypass = 0;
0b996fd3
MZ
435 u32 mode = 0;
436
437 if (static_key_true(&supports_deactivate))
438 mode = GIC_CPU_CTRL_EOImodeNS;
32289506
FK
439
440 /*
441 * Preserve bypass disable bits to be written back later
442 */
443 bypass = readl(cpu_base + GIC_CPU_CTRL);
444 bypass &= GICC_DIS_BYPASS_MASK;
445
0b996fd3 446 writel_relaxed(bypass | mode | GICC_ENABLE, cpu_base + GIC_CPU_CTRL);
32289506
FK
447}
448
449
4294f8ba 450static void __init gic_dist_init(struct gic_chip_data *gic)
f27ecacc 451{
75294957 452 unsigned int i;
267840f3 453 u32 cpumask;
4294f8ba 454 unsigned int gic_irqs = gic->gic_irqs;
db0d4db2 455 void __iomem *base = gic_data_dist_base(gic);
f27ecacc 456
e5f81539 457 writel_relaxed(GICD_DISABLE, base + GIC_DIST_CTRL);
f27ecacc 458
f27ecacc
RK
459 /*
460 * Set all global interrupts to this CPU only.
461 */
2bb31351
RK
462 cpumask = gic_get_cpumask(gic);
463 cpumask |= cpumask << 8;
464 cpumask |= cpumask << 16;
e6afec9b 465 for (i = 32; i < gic_irqs; i += 4)
6ac77e46 466 writel_relaxed(cpumask, base + GIC_DIST_TARGET + i * 4 / 4);
f27ecacc 467
d51d0af4 468 gic_dist_config(base, gic_irqs, NULL);
f27ecacc 469
e5f81539 470 writel_relaxed(GICD_ENABLE, base + GIC_DIST_CTRL);
f27ecacc
RK
471}
472
8c37bb3a 473static void gic_cpu_init(struct gic_chip_data *gic)
f27ecacc 474{
db0d4db2
MZ
475 void __iomem *dist_base = gic_data_dist_base(gic);
476 void __iomem *base = gic_data_cpu_base(gic);
384a2902 477 unsigned int cpu_mask, cpu = smp_processor_id();
9395f6ea
RK
478 int i;
479
384a2902 480 /*
567e5a01
JH
481 * Setting up the CPU map is only relevant for the primary GIC
482 * because any nested/secondary GICs do not directly interface
483 * with the CPU(s).
384a2902 484 */
567e5a01
JH
485 if (gic == &gic_data[0]) {
486 /*
487 * Get what the GIC says our CPU mask is.
488 */
489 BUG_ON(cpu >= NR_GIC_CPU_IF);
490 cpu_mask = gic_get_cpumask(gic);
491 gic_cpu_map[cpu] = cpu_mask;
384a2902 492
567e5a01
JH
493 /*
494 * Clear our mask from the other map entries in case they're
495 * still undefined.
496 */
497 for (i = 0; i < NR_GIC_CPU_IF; i++)
498 if (i != cpu)
499 gic_cpu_map[i] &= ~cpu_mask;
500 }
384a2902 501
d51d0af4 502 gic_cpu_config(dist_base, NULL);
9395f6ea 503
e5f81539 504 writel_relaxed(GICC_INT_PRI_THRESHOLD, base + GIC_CPU_PRIMASK);
4c2880b3 505 gic_cpu_if_up(gic);
f27ecacc
RK
506}
507
4c2880b3 508int gic_cpu_if_down(unsigned int gic_nr)
10d9eb8a 509{
4c2880b3 510 void __iomem *cpu_base;
32289506
FK
511 u32 val = 0;
512
4c2880b3
JH
513 if (gic_nr >= MAX_GIC_NR)
514 return -EINVAL;
515
516 cpu_base = gic_data_cpu_base(&gic_data[gic_nr]);
32289506
FK
517 val = readl(cpu_base + GIC_CPU_CTRL);
518 val &= ~GICC_ENABLE;
519 writel_relaxed(val, cpu_base + GIC_CPU_CTRL);
4c2880b3
JH
520
521 return 0;
10d9eb8a
NP
522}
523
254056f3
CC
524#ifdef CONFIG_CPU_PM
525/*
526 * Saves the GIC distributor registers during suspend or idle. Must be called
527 * with interrupts disabled but before powering down the GIC. After calling
528 * this function, no interrupts will be delivered by the GIC, and another
529 * platform-specific wakeup source must be enabled.
530 */
531static void gic_dist_save(unsigned int gic_nr)
532{
533 unsigned int gic_irqs;
534 void __iomem *dist_base;
535 int i;
536
537 if (gic_nr >= MAX_GIC_NR)
538 BUG();
539
540 gic_irqs = gic_data[gic_nr].gic_irqs;
db0d4db2 541 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
254056f3
CC
542
543 if (!dist_base)
544 return;
545
546 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 16); i++)
547 gic_data[gic_nr].saved_spi_conf[i] =
548 readl_relaxed(dist_base + GIC_DIST_CONFIG + i * 4);
549
550 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
551 gic_data[gic_nr].saved_spi_target[i] =
552 readl_relaxed(dist_base + GIC_DIST_TARGET + i * 4);
553
554 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++)
555 gic_data[gic_nr].saved_spi_enable[i] =
556 readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
557}
558
559/*
560 * Restores the GIC distributor registers during resume or when coming out of
561 * idle. Must be called before enabling interrupts. If a level interrupt
562 * that occured while the GIC was suspended is still present, it will be
563 * handled normally, but any edge interrupts that occured will not be seen by
564 * the GIC and need to be handled by the platform-specific wakeup source.
565 */
566static void gic_dist_restore(unsigned int gic_nr)
567{
568 unsigned int gic_irqs;
569 unsigned int i;
570 void __iomem *dist_base;
571
572 if (gic_nr >= MAX_GIC_NR)
573 BUG();
574
575 gic_irqs = gic_data[gic_nr].gic_irqs;
db0d4db2 576 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
254056f3
CC
577
578 if (!dist_base)
579 return;
580
e5f81539 581 writel_relaxed(GICD_DISABLE, dist_base + GIC_DIST_CTRL);
254056f3
CC
582
583 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 16); i++)
584 writel_relaxed(gic_data[gic_nr].saved_spi_conf[i],
585 dist_base + GIC_DIST_CONFIG + i * 4);
586
587 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
e5f81539 588 writel_relaxed(GICD_INT_DEF_PRI_X4,
254056f3
CC
589 dist_base + GIC_DIST_PRI + i * 4);
590
591 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
592 writel_relaxed(gic_data[gic_nr].saved_spi_target[i],
593 dist_base + GIC_DIST_TARGET + i * 4);
594
595 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++)
596 writel_relaxed(gic_data[gic_nr].saved_spi_enable[i],
597 dist_base + GIC_DIST_ENABLE_SET + i * 4);
598
e5f81539 599 writel_relaxed(GICD_ENABLE, dist_base + GIC_DIST_CTRL);
254056f3
CC
600}
601
602static void gic_cpu_save(unsigned int gic_nr)
603{
604 int i;
605 u32 *ptr;
606 void __iomem *dist_base;
607 void __iomem *cpu_base;
608
609 if (gic_nr >= MAX_GIC_NR)
610 BUG();
611
db0d4db2
MZ
612 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
613 cpu_base = gic_data_cpu_base(&gic_data[gic_nr]);
254056f3
CC
614
615 if (!dist_base || !cpu_base)
616 return;
617
532d0d06 618 ptr = raw_cpu_ptr(gic_data[gic_nr].saved_ppi_enable);
254056f3
CC
619 for (i = 0; i < DIV_ROUND_UP(32, 32); i++)
620 ptr[i] = readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
621
532d0d06 622 ptr = raw_cpu_ptr(gic_data[gic_nr].saved_ppi_conf);
254056f3
CC
623 for (i = 0; i < DIV_ROUND_UP(32, 16); i++)
624 ptr[i] = readl_relaxed(dist_base + GIC_DIST_CONFIG + i * 4);
625
626}
627
628static void gic_cpu_restore(unsigned int gic_nr)
629{
630 int i;
631 u32 *ptr;
632 void __iomem *dist_base;
633 void __iomem *cpu_base;
634
635 if (gic_nr >= MAX_GIC_NR)
636 BUG();
637
db0d4db2
MZ
638 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
639 cpu_base = gic_data_cpu_base(&gic_data[gic_nr]);
254056f3
CC
640
641 if (!dist_base || !cpu_base)
642 return;
643
532d0d06 644 ptr = raw_cpu_ptr(gic_data[gic_nr].saved_ppi_enable);
254056f3
CC
645 for (i = 0; i < DIV_ROUND_UP(32, 32); i++)
646 writel_relaxed(ptr[i], dist_base + GIC_DIST_ENABLE_SET + i * 4);
647
532d0d06 648 ptr = raw_cpu_ptr(gic_data[gic_nr].saved_ppi_conf);
254056f3
CC
649 for (i = 0; i < DIV_ROUND_UP(32, 16); i++)
650 writel_relaxed(ptr[i], dist_base + GIC_DIST_CONFIG + i * 4);
651
652 for (i = 0; i < DIV_ROUND_UP(32, 4); i++)
e5f81539
FK
653 writel_relaxed(GICD_INT_DEF_PRI_X4,
654 dist_base + GIC_DIST_PRI + i * 4);
254056f3 655
e5f81539 656 writel_relaxed(GICC_INT_PRI_THRESHOLD, cpu_base + GIC_CPU_PRIMASK);
4c2880b3 657 gic_cpu_if_up(&gic_data[gic_nr]);
254056f3
CC
658}
659
660static int gic_notifier(struct notifier_block *self, unsigned long cmd, void *v)
661{
662 int i;
663
664 for (i = 0; i < MAX_GIC_NR; i++) {
db0d4db2
MZ
665#ifdef CONFIG_GIC_NON_BANKED
666 /* Skip over unused GICs */
667 if (!gic_data[i].get_base)
668 continue;
669#endif
254056f3
CC
670 switch (cmd) {
671 case CPU_PM_ENTER:
672 gic_cpu_save(i);
673 break;
674 case CPU_PM_ENTER_FAILED:
675 case CPU_PM_EXIT:
676 gic_cpu_restore(i);
677 break;
678 case CPU_CLUSTER_PM_ENTER:
679 gic_dist_save(i);
680 break;
681 case CPU_CLUSTER_PM_ENTER_FAILED:
682 case CPU_CLUSTER_PM_EXIT:
683 gic_dist_restore(i);
684 break;
685 }
686 }
687
688 return NOTIFY_OK;
689}
690
691static struct notifier_block gic_notifier_block = {
692 .notifier_call = gic_notifier,
693};
694
695static void __init gic_pm_init(struct gic_chip_data *gic)
696{
697 gic->saved_ppi_enable = __alloc_percpu(DIV_ROUND_UP(32, 32) * 4,
698 sizeof(u32));
699 BUG_ON(!gic->saved_ppi_enable);
700
701 gic->saved_ppi_conf = __alloc_percpu(DIV_ROUND_UP(32, 16) * 4,
702 sizeof(u32));
703 BUG_ON(!gic->saved_ppi_conf);
704
abdd7b91
MZ
705 if (gic == &gic_data[0])
706 cpu_pm_register_notifier(&gic_notifier_block);
254056f3
CC
707}
708#else
709static void __init gic_pm_init(struct gic_chip_data *gic)
710{
711}
712#endif
713
b1cffebf 714#ifdef CONFIG_SMP
6859358e 715static void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)
b1cffebf
RH
716{
717 int cpu;
1a6b69b6
NP
718 unsigned long flags, map = 0;
719
720 raw_spin_lock_irqsave(&irq_controller_lock, flags);
b1cffebf
RH
721
722 /* Convert our logical CPU mask into a physical one. */
723 for_each_cpu(cpu, mask)
91bdf0d0 724 map |= gic_cpu_map[cpu];
b1cffebf
RH
725
726 /*
727 * Ensure that stores to Normal memory are visible to the
8adbf57f 728 * other CPUs before they observe us issuing the IPI.
b1cffebf 729 */
8adbf57f 730 dmb(ishst);
b1cffebf
RH
731
732 /* this always happens on GIC0 */
733 writel_relaxed(map << 16 | irq, gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
1a6b69b6
NP
734
735 raw_spin_unlock_irqrestore(&irq_controller_lock, flags);
736}
737#endif
738
739#ifdef CONFIG_BL_SWITCHER
14d2ca61
NP
740/*
741 * gic_send_sgi - send a SGI directly to given CPU interface number
742 *
743 * cpu_id: the ID for the destination CPU interface
744 * irq: the IPI number to send a SGI for
745 */
746void gic_send_sgi(unsigned int cpu_id, unsigned int irq)
747{
748 BUG_ON(cpu_id >= NR_GIC_CPU_IF);
749 cpu_id = 1 << cpu_id;
750 /* this always happens on GIC0 */
751 writel_relaxed((cpu_id << 16) | irq, gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
752}
753
ed96762e
NP
754/*
755 * gic_get_cpu_id - get the CPU interface ID for the specified CPU
756 *
757 * @cpu: the logical CPU number to get the GIC ID for.
758 *
759 * Return the CPU interface ID for the given logical CPU number,
760 * or -1 if the CPU number is too large or the interface ID is
761 * unknown (more than one bit set).
762 */
763int gic_get_cpu_id(unsigned int cpu)
764{
765 unsigned int cpu_bit;
766
767 if (cpu >= NR_GIC_CPU_IF)
768 return -1;
769 cpu_bit = gic_cpu_map[cpu];
770 if (cpu_bit & (cpu_bit - 1))
771 return -1;
772 return __ffs(cpu_bit);
773}
774
1a6b69b6
NP
775/*
776 * gic_migrate_target - migrate IRQs to another CPU interface
777 *
778 * @new_cpu_id: the CPU target ID to migrate IRQs to
779 *
780 * Migrate all peripheral interrupts with a target matching the current CPU
781 * to the interface corresponding to @new_cpu_id. The CPU interface mapping
782 * is also updated. Targets to other CPU interfaces are unchanged.
783 * This must be called with IRQs locally disabled.
784 */
785void gic_migrate_target(unsigned int new_cpu_id)
786{
787 unsigned int cur_cpu_id, gic_irqs, gic_nr = 0;
788 void __iomem *dist_base;
789 int i, ror_val, cpu = smp_processor_id();
790 u32 val, cur_target_mask, active_mask;
791
792 if (gic_nr >= MAX_GIC_NR)
793 BUG();
794
795 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
796 if (!dist_base)
797 return;
798 gic_irqs = gic_data[gic_nr].gic_irqs;
799
800 cur_cpu_id = __ffs(gic_cpu_map[cpu]);
801 cur_target_mask = 0x01010101 << cur_cpu_id;
802 ror_val = (cur_cpu_id - new_cpu_id) & 31;
803
804 raw_spin_lock(&irq_controller_lock);
805
806 /* Update the target interface for this logical CPU */
807 gic_cpu_map[cpu] = 1 << new_cpu_id;
808
809 /*
810 * Find all the peripheral interrupts targetting the current
811 * CPU interface and migrate them to the new CPU interface.
812 * We skip DIST_TARGET 0 to 7 as they are read-only.
813 */
814 for (i = 8; i < DIV_ROUND_UP(gic_irqs, 4); i++) {
815 val = readl_relaxed(dist_base + GIC_DIST_TARGET + i * 4);
816 active_mask = val & cur_target_mask;
817 if (active_mask) {
818 val &= ~active_mask;
819 val |= ror32(active_mask, ror_val);
820 writel_relaxed(val, dist_base + GIC_DIST_TARGET + i*4);
821 }
822 }
823
824 raw_spin_unlock(&irq_controller_lock);
825
826 /*
827 * Now let's migrate and clear any potential SGIs that might be
828 * pending for us (cur_cpu_id). Since GIC_DIST_SGI_PENDING_SET
829 * is a banked register, we can only forward the SGI using
830 * GIC_DIST_SOFTINT. The original SGI source is lost but Linux
831 * doesn't use that information anyway.
832 *
833 * For the same reason we do not adjust SGI source information
834 * for previously sent SGIs by us to other CPUs either.
835 */
836 for (i = 0; i < 16; i += 4) {
837 int j;
838 val = readl_relaxed(dist_base + GIC_DIST_SGI_PENDING_SET + i);
839 if (!val)
840 continue;
841 writel_relaxed(val, dist_base + GIC_DIST_SGI_PENDING_CLEAR + i);
842 for (j = i; j < i + 4; j++) {
843 if (val & 0xff)
844 writel_relaxed((1 << (new_cpu_id + 16)) | j,
845 dist_base + GIC_DIST_SOFTINT);
846 val >>= 8;
847 }
848 }
b1cffebf 849}
eeb44658
NP
850
851/*
852 * gic_get_sgir_physaddr - get the physical address for the SGI register
853 *
854 * REturn the physical address of the SGI register to be used
855 * by some early assembly code when the kernel is not yet available.
856 */
857static unsigned long gic_dist_physaddr;
858
859unsigned long gic_get_sgir_physaddr(void)
860{
861 if (!gic_dist_physaddr)
862 return 0;
863 return gic_dist_physaddr + GIC_DIST_SOFTINT;
864}
865
866void __init gic_init_physaddr(struct device_node *node)
867{
868 struct resource res;
869 if (of_address_to_resource(node, 0, &res) == 0) {
870 gic_dist_physaddr = res.start;
871 pr_info("GIC physical location is %#lx\n", gic_dist_physaddr);
872 }
873}
874
875#else
876#define gic_init_physaddr(node) do { } while (0)
b1cffebf
RH
877#endif
878
75294957
GL
879static int gic_irq_domain_map(struct irq_domain *d, unsigned int irq,
880 irq_hw_number_t hw)
881{
0b996fd3
MZ
882 struct irq_chip *chip = &gic_chip;
883
884 if (static_key_true(&supports_deactivate)) {
885 if (d->host_data == (void *)&gic_data[0])
886 chip = &gic_eoimode1_chip;
887 }
888
75294957
GL
889 if (hw < 32) {
890 irq_set_percpu_devid(irq);
0b996fd3 891 irq_domain_set_info(d, irq, hw, chip, d->host_data,
9a1091ef 892 handle_percpu_devid_irq, NULL, NULL);
75294957
GL
893 set_irq_flags(irq, IRQF_VALID | IRQF_NOAUTOEN);
894 } else {
0b996fd3 895 irq_domain_set_info(d, irq, hw, chip, d->host_data,
9a1091ef 896 handle_fasteoi_irq, NULL, NULL);
75294957
GL
897 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
898 }
75294957
GL
899 return 0;
900}
901
006e983b
S
902static void gic_irq_domain_unmap(struct irq_domain *d, unsigned int irq)
903{
006e983b
S
904}
905
7bb69bad
GL
906static int gic_irq_domain_xlate(struct irq_domain *d,
907 struct device_node *controller,
908 const u32 *intspec, unsigned int intsize,
909 unsigned long *out_hwirq, unsigned int *out_type)
b3f7ed03 910{
006e983b
S
911 unsigned long ret = 0;
912
b3f7ed03
RH
913 if (d->of_node != controller)
914 return -EINVAL;
915 if (intsize < 3)
916 return -EINVAL;
917
918 /* Get the interrupt number and add 16 to skip over SGIs */
919 *out_hwirq = intspec[1] + 16;
920
921 /* For SPIs, we need to add 16 more to get the GIC irq ID number */
a5561c3e
MZ
922 if (!intspec[0])
923 *out_hwirq += 16;
b3f7ed03
RH
924
925 *out_type = intspec[2] & IRQ_TYPE_SENSE_MASK;
006e983b
S
926
927 return ret;
b3f7ed03 928}
b3f7ed03 929
c0114709 930#ifdef CONFIG_SMP
8c37bb3a
PG
931static int gic_secondary_init(struct notifier_block *nfb, unsigned long action,
932 void *hcpu)
c0114709 933{
8b6fd652 934 if (action == CPU_STARTING || action == CPU_STARTING_FROZEN)
c0114709
CM
935 gic_cpu_init(&gic_data[0]);
936 return NOTIFY_OK;
937}
938
939/*
940 * Notifier for enabling the GIC CPU interface. Set an arbitrarily high
941 * priority because the GIC needs to be up before the ARM generic timers.
942 */
8c37bb3a 943static struct notifier_block gic_cpu_notifier = {
c0114709
CM
944 .notifier_call = gic_secondary_init,
945 .priority = 100,
946};
947#endif
948
9a1091ef
YC
949static int gic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
950 unsigned int nr_irqs, void *arg)
951{
952 int i, ret;
953 irq_hw_number_t hwirq;
954 unsigned int type = IRQ_TYPE_NONE;
955 struct of_phandle_args *irq_data = arg;
956
957 ret = gic_irq_domain_xlate(domain, irq_data->np, irq_data->args,
958 irq_data->args_count, &hwirq, &type);
959 if (ret)
960 return ret;
961
962 for (i = 0; i < nr_irqs; i++)
963 gic_irq_domain_map(domain, virq + i, hwirq + i);
964
965 return 0;
966}
967
968static const struct irq_domain_ops gic_irq_domain_hierarchy_ops = {
969 .xlate = gic_irq_domain_xlate,
970 .alloc = gic_irq_domain_alloc,
971 .free = irq_domain_free_irqs_top,
972};
973
6859358e 974static const struct irq_domain_ops gic_irq_domain_ops = {
75294957 975 .map = gic_irq_domain_map,
006e983b 976 .unmap = gic_irq_domain_unmap,
7bb69bad 977 .xlate = gic_irq_domain_xlate,
4294f8ba
RH
978};
979
4a6ac304 980static void __init __gic_init_bases(unsigned int gic_nr, int irq_start,
db0d4db2 981 void __iomem *dist_base, void __iomem *cpu_base,
75294957 982 u32 percpu_offset, struct device_node *node)
b580b899 983{
75294957 984 irq_hw_number_t hwirq_base;
bef8f9ee 985 struct gic_chip_data *gic;
384a2902 986 int gic_irqs, irq_base, i;
bef8f9ee
RK
987
988 BUG_ON(gic_nr >= MAX_GIC_NR);
989
990 gic = &gic_data[gic_nr];
db0d4db2
MZ
991#ifdef CONFIG_GIC_NON_BANKED
992 if (percpu_offset) { /* Frankein-GIC without banked registers... */
993 unsigned int cpu;
994
995 gic->dist_base.percpu_base = alloc_percpu(void __iomem *);
996 gic->cpu_base.percpu_base = alloc_percpu(void __iomem *);
997 if (WARN_ON(!gic->dist_base.percpu_base ||
998 !gic->cpu_base.percpu_base)) {
999 free_percpu(gic->dist_base.percpu_base);
1000 free_percpu(gic->cpu_base.percpu_base);
1001 return;
1002 }
1003
1004 for_each_possible_cpu(cpu) {
29e697b1
TF
1005 u32 mpidr = cpu_logical_map(cpu);
1006 u32 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0);
1007 unsigned long offset = percpu_offset * core_id;
db0d4db2
MZ
1008 *per_cpu_ptr(gic->dist_base.percpu_base, cpu) = dist_base + offset;
1009 *per_cpu_ptr(gic->cpu_base.percpu_base, cpu) = cpu_base + offset;
1010 }
1011
1012 gic_set_base_accessor(gic, gic_get_percpu_base);
1013 } else
1014#endif
1015 { /* Normal, sane GIC... */
1016 WARN(percpu_offset,
1017 "GIC_NON_BANKED not enabled, ignoring %08x offset!",
1018 percpu_offset);
1019 gic->dist_base.common_base = dist_base;
1020 gic->cpu_base.common_base = cpu_base;
1021 gic_set_base_accessor(gic, gic_get_common_base);
1022 }
bef8f9ee 1023
4294f8ba
RH
1024 /*
1025 * Find out how many interrupts are supported.
1026 * The GIC only supports up to 1020 interrupt sources.
1027 */
db0d4db2 1028 gic_irqs = readl_relaxed(gic_data_dist_base(gic) + GIC_DIST_CTR) & 0x1f;
4294f8ba
RH
1029 gic_irqs = (gic_irqs + 1) * 32;
1030 if (gic_irqs > 1020)
1031 gic_irqs = 1020;
1032 gic->gic_irqs = gic_irqs;
1033
9a1091ef 1034 if (node) { /* DT case */
a5561c3e
MZ
1035 gic->domain = irq_domain_add_linear(node, gic_irqs,
1036 &gic_irq_domain_hierarchy_ops,
1037 gic);
9a1091ef
YC
1038 } else { /* Non-DT case */
1039 /*
1040 * For primary GICs, skip over SGIs.
1041 * For secondary GICs, skip over PPIs, too.
1042 */
1043 if (gic_nr == 0 && (irq_start & 31) > 0) {
1044 hwirq_base = 16;
1045 if (irq_start != -1)
1046 irq_start = (irq_start & ~31) + 16;
1047 } else {
1048 hwirq_base = 32;
1049 }
1050
1051 gic_irqs -= hwirq_base; /* calculate # of irqs to allocate */
006e983b 1052
006e983b
S
1053 irq_base = irq_alloc_descs(irq_start, 16, gic_irqs,
1054 numa_node_id());
1055 if (IS_ERR_VALUE(irq_base)) {
1056 WARN(1, "Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated\n",
1057 irq_start);
1058 irq_base = irq_start;
1059 }
1060
1061 gic->domain = irq_domain_add_legacy(node, gic_irqs, irq_base,
1062 hwirq_base, &gic_irq_domain_ops, gic);
f37a53cc 1063 }
006e983b 1064
75294957
GL
1065 if (WARN_ON(!gic->domain))
1066 return;
bef8f9ee 1067
08332dff 1068 if (gic_nr == 0) {
567e5a01
JH
1069 /*
1070 * Initialize the CPU interface map to all CPUs.
1071 * It will be refined as each CPU probes its ID.
1072 * This is only necessary for the primary GIC.
1073 */
1074 for (i = 0; i < NR_GIC_CPU_IF; i++)
1075 gic_cpu_map[i] = 0xff;
b1cffebf 1076#ifdef CONFIG_SMP
08332dff
MR
1077 set_smp_cross_call(gic_raise_softirq);
1078 register_cpu_notifier(&gic_cpu_notifier);
b1cffebf 1079#endif
08332dff 1080 set_handle_irq(gic_handle_irq);
0b996fd3
MZ
1081 if (static_key_true(&supports_deactivate))
1082 pr_info("GIC: Using split EOI/Deactivate mode\n");
08332dff 1083 }
cfed7d60 1084
4294f8ba 1085 gic_dist_init(gic);
bef8f9ee 1086 gic_cpu_init(gic);
254056f3 1087 gic_pm_init(gic);
b580b899
RK
1088}
1089
4a6ac304
MZ
1090void __init gic_init_bases(unsigned int gic_nr, int irq_start,
1091 void __iomem *dist_base, void __iomem *cpu_base,
1092 u32 percpu_offset, struct device_node *node)
1093{
1094 /*
1095 * Non-DT/ACPI systems won't run a hypervisor, so let's not
1096 * bother with these...
1097 */
1098 static_key_slow_dec(&supports_deactivate);
1099 __gic_init_bases(gic_nr, irq_start, dist_base, cpu_base,
1100 percpu_offset, node);
1101}
1102
b3f7ed03 1103#ifdef CONFIG_OF
46f101df 1104static int gic_cnt __initdata;
b3f7ed03 1105
12e14066
MZ
1106static bool gic_check_eoimode(struct device_node *node, void __iomem **base)
1107{
1108 struct resource cpuif_res;
1109
1110 of_address_to_resource(node, 1, &cpuif_res);
1111
1112 if (!is_hyp_mode_available())
1113 return false;
1114 if (resource_size(&cpuif_res) < SZ_8K)
1115 return false;
1116 if (resource_size(&cpuif_res) == SZ_128K) {
1117 u32 val_low, val_high;
1118
1119 /*
1120 * Verify that we have the first 4kB of a GIC400
1121 * aliased over the first 64kB by checking the
1122 * GICC_IIDR register on both ends.
1123 */
1124 val_low = readl_relaxed(*base + GIC_CPU_IDENT);
1125 val_high = readl_relaxed(*base + GIC_CPU_IDENT + 0xf000);
1126 if ((val_low & 0xffff0fff) != 0x0202043B ||
1127 val_low != val_high)
1128 return false;
1129
1130 /*
1131 * Move the base up by 60kB, so that we have a 8kB
1132 * contiguous region, which allows us to use GICC_DIR
1133 * at its normal offset. Please pass me that bucket.
1134 */
1135 *base += 0xf000;
1136 cpuif_res.start += 0xf000;
1137 pr_warn("GIC: Adjusting CPU interface base to %pa",
1138 &cpuif_res.start);
1139 }
1140
1141 return true;
1142}
1143
6859358e
SB
1144static int __init
1145gic_of_init(struct device_node *node, struct device_node *parent)
b3f7ed03
RH
1146{
1147 void __iomem *cpu_base;
1148 void __iomem *dist_base;
db0d4db2 1149 u32 percpu_offset;
b3f7ed03 1150 int irq;
b3f7ed03
RH
1151
1152 if (WARN_ON(!node))
1153 return -ENODEV;
1154
1155 dist_base = of_iomap(node, 0);
1156 WARN(!dist_base, "unable to map gic dist registers\n");
1157
1158 cpu_base = of_iomap(node, 1);
1159 WARN(!cpu_base, "unable to map gic cpu registers\n");
1160
0b996fd3
MZ
1161 /*
1162 * Disable split EOI/Deactivate if either HYP is not available
1163 * or the CPU interface is too small.
1164 */
12e14066 1165 if (gic_cnt == 0 && !gic_check_eoimode(node, &cpu_base))
0b996fd3
MZ
1166 static_key_slow_dec(&supports_deactivate);
1167
db0d4db2
MZ
1168 if (of_property_read_u32(node, "cpu-offset", &percpu_offset))
1169 percpu_offset = 0;
1170
4a6ac304 1171 __gic_init_bases(gic_cnt, -1, dist_base, cpu_base, percpu_offset, node);
eeb44658
NP
1172 if (!gic_cnt)
1173 gic_init_physaddr(node);
b3f7ed03
RH
1174
1175 if (parent) {
1176 irq = irq_of_parse_and_map(node, 0);
1177 gic_cascade_irq(gic_cnt, irq);
1178 }
853a33ce
SS
1179
1180 if (IS_ENABLED(CONFIG_ARM_GIC_V2M))
1181 gicv2m_of_init(node, gic_data[gic_cnt].domain);
1182
b3f7ed03
RH
1183 gic_cnt++;
1184 return 0;
1185}
144cb088 1186IRQCHIP_DECLARE(gic_400, "arm,gic-400", gic_of_init);
fa6e2eec
LW
1187IRQCHIP_DECLARE(arm11mp_gic, "arm,arm11mp-gic", gic_of_init);
1188IRQCHIP_DECLARE(arm1176jzf_dc_gic, "arm,arm1176jzf-devchip-gic", gic_of_init);
81243e44
RH
1189IRQCHIP_DECLARE(cortex_a15_gic, "arm,cortex-a15-gic", gic_of_init);
1190IRQCHIP_DECLARE(cortex_a9_gic, "arm,cortex-a9-gic", gic_of_init);
a97e8027 1191IRQCHIP_DECLARE(cortex_a7_gic, "arm,cortex-a7-gic", gic_of_init);
81243e44
RH
1192IRQCHIP_DECLARE(msm_8660_qgic, "qcom,msm-8660-qgic", gic_of_init);
1193IRQCHIP_DECLARE(msm_qgic2, "qcom,msm-qgic2", gic_of_init);
1194
b3f7ed03 1195#endif
d60fc389
TN
1196
1197#ifdef CONFIG_ACPI
1198static phys_addr_t dist_phy_base, cpu_phy_base __initdata;
1199
1200static int __init
1201gic_acpi_parse_madt_cpu(struct acpi_subtable_header *header,
1202 const unsigned long end)
1203{
1204 struct acpi_madt_generic_interrupt *processor;
1205 phys_addr_t gic_cpu_base;
1206 static int cpu_base_assigned;
1207
1208 processor = (struct acpi_madt_generic_interrupt *)header;
1209
99e3e3ae 1210 if (BAD_MADT_GICC_ENTRY(processor, end))
d60fc389
TN
1211 return -EINVAL;
1212
1213 /*
1214 * There is no support for non-banked GICv1/2 register in ACPI spec.
1215 * All CPU interface addresses have to be the same.
1216 */
1217 gic_cpu_base = processor->base_address;
1218 if (cpu_base_assigned && gic_cpu_base != cpu_phy_base)
1219 return -EINVAL;
1220
1221 cpu_phy_base = gic_cpu_base;
1222 cpu_base_assigned = 1;
1223 return 0;
1224}
1225
1226static int __init
1227gic_acpi_parse_madt_distributor(struct acpi_subtable_header *header,
1228 const unsigned long end)
1229{
1230 struct acpi_madt_generic_distributor *dist;
1231
1232 dist = (struct acpi_madt_generic_distributor *)header;
1233
1234 if (BAD_MADT_ENTRY(dist, end))
1235 return -EINVAL;
1236
1237 dist_phy_base = dist->base_address;
1238 return 0;
1239}
1240
1241int __init
1242gic_v2_acpi_init(struct acpi_table_header *table)
1243{
1244 void __iomem *cpu_base, *dist_base;
1245 int count;
1246
1247 /* Collect CPU base addresses */
1248 count = acpi_parse_entries(ACPI_SIG_MADT,
1249 sizeof(struct acpi_table_madt),
1250 gic_acpi_parse_madt_cpu, table,
1251 ACPI_MADT_TYPE_GENERIC_INTERRUPT, 0);
1252 if (count <= 0) {
1253 pr_err("No valid GICC entries exist\n");
1254 return -EINVAL;
1255 }
1256
1257 /*
1258 * Find distributor base address. We expect one distributor entry since
1259 * ACPI 5.1 spec neither support multi-GIC instances nor GIC cascade.
1260 */
1261 count = acpi_parse_entries(ACPI_SIG_MADT,
1262 sizeof(struct acpi_table_madt),
1263 gic_acpi_parse_madt_distributor, table,
1264 ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR, 0);
1265 if (count <= 0) {
1266 pr_err("No valid GICD entries exist\n");
1267 return -EINVAL;
1268 } else if (count > 1) {
1269 pr_err("More than one GICD entry detected\n");
1270 return -EINVAL;
1271 }
1272
1273 cpu_base = ioremap(cpu_phy_base, ACPI_GIC_CPU_IF_MEM_SIZE);
1274 if (!cpu_base) {
1275 pr_err("Unable to map GICC registers\n");
1276 return -ENOMEM;
1277 }
1278
1279 dist_base = ioremap(dist_phy_base, ACPI_GICV2_DIST_MEM_SIZE);
1280 if (!dist_base) {
1281 pr_err("Unable to map GICD registers\n");
1282 iounmap(cpu_base);
1283 return -ENOMEM;
1284 }
1285
0b996fd3
MZ
1286 /*
1287 * Disable split EOI/Deactivate if HYP is not available. ACPI
1288 * guarantees that we'll always have a GICv2, so the CPU
1289 * interface will always be the right size.
1290 */
1291 if (!is_hyp_mode_available())
1292 static_key_slow_dec(&supports_deactivate);
1293
d60fc389
TN
1294 /*
1295 * Initialize zero GIC instance (no multi-GIC support). Also, set GIC
1296 * as default IRQ domain to allow for GSI registration and GSI to IRQ
1297 * number translation (see acpi_register_gsi() and acpi_gsi_to_irq()).
1298 */
4a6ac304 1299 __gic_init_bases(0, -1, dist_base, cpu_base, 0, NULL);
d60fc389 1300 irq_set_default_host(gic_data[0].domain);
d8f4f161
LP
1301
1302 acpi_irq_model = ACPI_IRQ_MODEL_GIC;
d60fc389
TN
1303 return 0;
1304}
1305#endif
This page took 0.706941 seconds and 5 git commands to generate.