1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#include <linux/init.h>
21#include <linux/kernel.h>
22#include <linux/err.h>
23#include <linux/module.h>
24#include <linux/list.h>
25#include <linux/smp.h>
26#include <linux/cpu.h>
27#include <linux/cpu_pm.h>
28#include <linux/cpumask.h>
29#include <linux/io.h>
30#include <linux/of.h>
31#include <linux/of_address.h>
32#include <linux/of_irq.h>
33#include <linux/acpi.h>
34#include <linux/irqdomain.h>
35#include <linux/interrupt.h>
36#include <linux/percpu.h>
37#include <linux/slab.h>
38#include <linux/irqchip.h>
39#include <linux/irqchip/chained_irq.h>
40#include <linux/irqchip/arm-gic.h>
41
42#include <asm/cputype.h>
43#include <asm/irq.h>
44#include <asm/exception.h>
45#include <asm/smp_plat.h>
46#include <asm/virt.h>
47
48#include "irq-gic-common.h"
49
50#ifdef CONFIG_ARM64
51#include <asm/cpufeature.h>
52
53static void gic_check_cpu_features(void)
54{
55 WARN_TAINT_ONCE(this_cpu_has_cap(ARM64_HAS_SYSREG_GIC_CPUIF),
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
63union gic_base {
64 void __iomem *common_base;
65 void __percpu * __iomem *percpu_base;
66};
67
68struct gic_chip_data {
69 struct irq_chip chip;
70 union gic_base dist_base;
71 union gic_base cpu_base;
72 void __iomem *raw_dist_base;
73 void __iomem *raw_cpu_base;
74 u32 percpu_offset;
75#if defined(CONFIG_CPU_PM) || defined(CONFIG_ARM_GIC_PM)
76 u32 saved_spi_enable[DIV_ROUND_UP(1020, 32)];
77 u32 saved_spi_active[DIV_ROUND_UP(1020, 32)];
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;
81 u32 __percpu *saved_ppi_active;
82 u32 __percpu *saved_ppi_conf;
83#endif
84 struct irq_domain *domain;
85 unsigned int gic_irqs;
86};
87
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
109
110
111
112
113
114
115#define NR_GIC_CPU_IF 8
116static u8 gic_cpu_map[NR_GIC_CPU_IF] __read_mostly;
117
118static DEFINE_STATIC_KEY_TRUE(supports_deactivate_key);
119
120static struct gic_chip_data gic_data[CONFIG_ARM_GIC_MAX_NR] __read_mostly;
121
122static struct gic_kvm_info gic_v2_kvm_info;
123
124static DEFINE_PER_CPU(u32, sgi_intid);
125
126#ifdef CONFIG_GIC_NON_BANKED
127static DEFINE_STATIC_KEY_FALSE(frankengic_key);
128
129static void enable_frankengic(void)
130{
131 static_branch_enable(&frankengic_key);
132}
133
134static inline void __iomem *__get_base(union gic_base *base)
135{
136 if (static_branch_unlikely(&frankengic_key))
137 return raw_cpu_read(*base->percpu_base);
138
139 return base->common_base;
140}
141
142#define gic_data_dist_base(d) __get_base(&(d)->dist_base)
143#define gic_data_cpu_base(d) __get_base(&(d)->cpu_base)
144#else
145#define gic_data_dist_base(d) ((d)->dist_base.common_base)
146#define gic_data_cpu_base(d) ((d)->cpu_base.common_base)
147#define enable_frankengic() do { } while(0)
148#endif
149
150static inline void __iomem *gic_dist_base(struct irq_data *d)
151{
152 struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
153 return gic_data_dist_base(gic_data);
154}
155
156static inline void __iomem *gic_cpu_base(struct irq_data *d)
157{
158 struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
159 return gic_data_cpu_base(gic_data);
160}
161
162static inline unsigned int gic_irq(struct irq_data *d)
163{
164 return d->hwirq;
165}
166
167static inline bool cascading_gic_irq(struct irq_data *d)
168{
169 void *data = irq_data_get_irq_handler_data(d);
170
171
172
173
174
175 return data != NULL;
176}
177
178
179
180
181static void gic_poke_irq(struct irq_data *d, u32 offset)
182{
183 u32 mask = 1 << (gic_irq(d) % 32);
184 writel_relaxed(mask, gic_dist_base(d) + offset + (gic_irq(d) / 32) * 4);
185}
186
187static int gic_peek_irq(struct irq_data *d, u32 offset)
188{
189 u32 mask = 1 << (gic_irq(d) % 32);
190 return !!(readl_relaxed(gic_dist_base(d) + offset + (gic_irq(d) / 32) * 4) & mask);
191}
192
193static void gic_mask_irq(struct irq_data *d)
194{
195 gic_poke_irq(d, GIC_DIST_ENABLE_CLEAR);
196}
197
198static void gic_eoimode1_mask_irq(struct irq_data *d)
199{
200 gic_mask_irq(d);
201
202
203
204
205
206
207
208
209 if (irqd_is_forwarded_to_vcpu(d))
210 gic_poke_irq(d, GIC_DIST_ACTIVE_CLEAR);
211}
212
213static void gic_unmask_irq(struct irq_data *d)
214{
215 gic_poke_irq(d, GIC_DIST_ENABLE_SET);
216}
217
218static void gic_eoi_irq(struct irq_data *d)
219{
220 u32 hwirq = gic_irq(d);
221
222 if (hwirq < 16)
223 hwirq = this_cpu_read(sgi_intid);
224
225 writel_relaxed(hwirq, gic_cpu_base(d) + GIC_CPU_EOI);
226}
227
228static void gic_eoimode1_eoi_irq(struct irq_data *d)
229{
230 u32 hwirq = gic_irq(d);
231
232
233 if (irqd_is_forwarded_to_vcpu(d))
234 return;
235
236 if (hwirq < 16)
237 hwirq = this_cpu_read(sgi_intid);
238
239 writel_relaxed(hwirq, gic_cpu_base(d) + GIC_CPU_DEACTIVATE);
240}
241
242static int gic_irq_set_irqchip_state(struct irq_data *d,
243 enum irqchip_irq_state which, bool val)
244{
245 u32 reg;
246
247 switch (which) {
248 case IRQCHIP_STATE_PENDING:
249 reg = val ? GIC_DIST_PENDING_SET : GIC_DIST_PENDING_CLEAR;
250 break;
251
252 case IRQCHIP_STATE_ACTIVE:
253 reg = val ? GIC_DIST_ACTIVE_SET : GIC_DIST_ACTIVE_CLEAR;
254 break;
255
256 case IRQCHIP_STATE_MASKED:
257 reg = val ? GIC_DIST_ENABLE_CLEAR : GIC_DIST_ENABLE_SET;
258 break;
259
260 default:
261 return -EINVAL;
262 }
263
264 gic_poke_irq(d, reg);
265 return 0;
266}
267
268static int gic_irq_get_irqchip_state(struct irq_data *d,
269 enum irqchip_irq_state which, bool *val)
270{
271 switch (which) {
272 case IRQCHIP_STATE_PENDING:
273 *val = gic_peek_irq(d, GIC_DIST_PENDING_SET);
274 break;
275
276 case IRQCHIP_STATE_ACTIVE:
277 *val = gic_peek_irq(d, GIC_DIST_ACTIVE_SET);
278 break;
279
280 case IRQCHIP_STATE_MASKED:
281 *val = !gic_peek_irq(d, GIC_DIST_ENABLE_SET);
282 break;
283
284 default:
285 return -EINVAL;
286 }
287
288 return 0;
289}
290
291static int gic_set_type(struct irq_data *d, unsigned int type)
292{
293 void __iomem *base = gic_dist_base(d);
294 unsigned int gicirq = gic_irq(d);
295 int ret;
296
297
298 if (gicirq < 16)
299 return type != IRQ_TYPE_EDGE_RISING ? -EINVAL : 0;
300
301
302 if (gicirq >= 32 && type != IRQ_TYPE_LEVEL_HIGH &&
303 type != IRQ_TYPE_EDGE_RISING)
304 return -EINVAL;
305
306 ret = gic_configure_irq(gicirq, type, base + GIC_DIST_CONFIG, NULL);
307 if (ret && gicirq < 32) {
308
309 pr_warn("GIC: PPI%d is secure or misconfigured\n", gicirq - 16);
310 ret = 0;
311 }
312
313 return ret;
314}
315
316static int gic_irq_set_vcpu_affinity(struct irq_data *d, void *vcpu)
317{
318
319 if (cascading_gic_irq(d) || gic_irq(d) < 16)
320 return -EINVAL;
321
322 if (vcpu)
323 irqd_set_forwarded_to_vcpu(d);
324 else
325 irqd_clr_forwarded_to_vcpu(d);
326 return 0;
327}
328
329static int gic_retrigger(struct irq_data *data)
330{
331 return !gic_irq_set_irqchip_state(data, IRQCHIP_STATE_PENDING, true);
332}
333
334static void __exception_irq_entry gic_handle_irq(struct pt_regs *regs)
335{
336 u32 irqstat, irqnr;
337 struct gic_chip_data *gic = &gic_data[0];
338 void __iomem *cpu_base = gic_data_cpu_base(gic);
339
340 do {
341 irqstat = readl_relaxed(cpu_base + GIC_CPU_INTACK);
342 irqnr = irqstat & GICC_IAR_INT_ID_MASK;
343
344 if (unlikely(irqnr >= 1020))
345 break;
346
347 if (static_branch_likely(&supports_deactivate_key))
348 writel_relaxed(irqstat, cpu_base + GIC_CPU_EOI);
349 isb();
350
351
352
353
354
355
356
357 if (irqnr <= 15) {
358 smp_rmb();
359
360
361
362
363
364
365
366
367 this_cpu_write(sgi_intid, irqstat);
368 }
369
370 handle_domain_irq(gic->domain, irqnr, regs);
371 } while (1);
372}
373
374static void gic_handle_cascade_irq(struct irq_desc *desc)
375{
376 struct gic_chip_data *chip_data = irq_desc_get_handler_data(desc);
377 struct irq_chip *chip = irq_desc_get_chip(desc);
378 unsigned int cascade_irq, gic_irq;
379 unsigned long status;
380
381 chained_irq_enter(chip, desc);
382
383 status = readl_relaxed(gic_data_cpu_base(chip_data) + GIC_CPU_INTACK);
384
385 gic_irq = (status & GICC_IAR_INT_ID_MASK);
386 if (gic_irq == GICC_INT_SPURIOUS)
387 goto out;
388
389 cascade_irq = irq_find_mapping(chip_data->domain, gic_irq);
390 if (unlikely(gic_irq < 32 || gic_irq > 1020)) {
391 handle_bad_irq(desc);
392 } else {
393 isb();
394 generic_handle_irq(cascade_irq);
395 }
396
397 out:
398 chained_irq_exit(chip, desc);
399}
400
401static const struct irq_chip gic_chip = {
402 .irq_mask = gic_mask_irq,
403 .irq_unmask = gic_unmask_irq,
404 .irq_eoi = gic_eoi_irq,
405 .irq_set_type = gic_set_type,
406 .irq_retrigger = gic_retrigger,
407 .irq_get_irqchip_state = gic_irq_get_irqchip_state,
408 .irq_set_irqchip_state = gic_irq_set_irqchip_state,
409 .flags = IRQCHIP_SET_TYPE_MASKED |
410 IRQCHIP_SKIP_SET_WAKE |
411 IRQCHIP_MASK_ON_SUSPEND,
412};
413
414void __init gic_cascade_irq(unsigned int gic_nr, unsigned int irq)
415{
416 BUG_ON(gic_nr >= CONFIG_ARM_GIC_MAX_NR);
417 irq_set_chained_handler_and_data(irq, gic_handle_cascade_irq,
418 &gic_data[gic_nr]);
419}
420
421static u8 gic_get_cpumask(struct gic_chip_data *gic)
422{
423 void __iomem *base = gic_data_dist_base(gic);
424 u32 mask, i;
425
426 for (i = mask = 0; i < 32; i += 4) {
427 mask = readl_relaxed(base + GIC_DIST_TARGET + i);
428 mask |= mask >> 16;
429 mask |= mask >> 8;
430 if (mask)
431 break;
432 }
433
434 if (!mask && num_possible_cpus() > 1)
435 pr_crit("GIC CPU mask not found - kernel will fail to boot.\n");
436
437 return mask;
438}
439
440static bool gic_check_gicv2(void __iomem *base)
441{
442 u32 val = readl_relaxed(base + GIC_CPU_IDENT);
443 return (val & 0xff0fff) == 0x02043B;
444}
445
446static void gic_cpu_if_up(struct gic_chip_data *gic)
447{
448 void __iomem *cpu_base = gic_data_cpu_base(gic);
449 u32 bypass = 0;
450 u32 mode = 0;
451 int i;
452
453 if (gic == &gic_data[0] && static_branch_likely(&supports_deactivate_key))
454 mode = GIC_CPU_CTRL_EOImodeNS;
455
456 if (gic_check_gicv2(cpu_base))
457 for (i = 0; i < 4; i++)
458 writel_relaxed(0, cpu_base + GIC_CPU_ACTIVEPRIO + i * 4);
459
460
461
462
463 bypass = readl(cpu_base + GIC_CPU_CTRL);
464 bypass &= GICC_DIS_BYPASS_MASK;
465
466 writel_relaxed(bypass | mode | GICC_ENABLE, cpu_base + GIC_CPU_CTRL);
467}
468
469
470static void gic_dist_init(struct gic_chip_data *gic)
471{
472 unsigned int i;
473 u32 cpumask;
474 unsigned int gic_irqs = gic->gic_irqs;
475 void __iomem *base = gic_data_dist_base(gic);
476
477 writel_relaxed(GICD_DISABLE, base + GIC_DIST_CTRL);
478
479
480
481
482 cpumask = gic_get_cpumask(gic);
483 cpumask |= cpumask << 8;
484 cpumask |= cpumask << 16;
485 for (i = 32; i < gic_irqs; i += 4)
486 writel_relaxed(cpumask, base + GIC_DIST_TARGET + i * 4 / 4);
487
488 gic_dist_config(base, gic_irqs, NULL);
489
490 writel_relaxed(GICD_ENABLE, base + GIC_DIST_CTRL);
491}
492
493static int gic_cpu_init(struct gic_chip_data *gic)
494{
495 void __iomem *dist_base = gic_data_dist_base(gic);
496 void __iomem *base = gic_data_cpu_base(gic);
497 unsigned int cpu_mask, cpu = smp_processor_id();
498 int i;
499
500
501
502
503
504
505 if (gic == &gic_data[0]) {
506
507
508
509 if (WARN_ON(cpu >= NR_GIC_CPU_IF))
510 return -EINVAL;
511
512 gic_check_cpu_features();
513 cpu_mask = gic_get_cpumask(gic);
514 gic_cpu_map[cpu] = cpu_mask;
515
516
517
518
519
520 for (i = 0; i < NR_GIC_CPU_IF; i++)
521 if (i != cpu)
522 gic_cpu_map[i] &= ~cpu_mask;
523 }
524
525 gic_cpu_config(dist_base, 32, NULL);
526
527 writel_relaxed(GICC_INT_PRI_THRESHOLD, base + GIC_CPU_PRIMASK);
528 gic_cpu_if_up(gic);
529
530 return 0;
531}
532
533int gic_cpu_if_down(unsigned int gic_nr)
534{
535 void __iomem *cpu_base;
536 u32 val = 0;
537
538 if (gic_nr >= CONFIG_ARM_GIC_MAX_NR)
539 return -EINVAL;
540
541 cpu_base = gic_data_cpu_base(&gic_data[gic_nr]);
542 val = readl(cpu_base + GIC_CPU_CTRL);
543 val &= ~GICC_ENABLE;
544 writel_relaxed(val, cpu_base + GIC_CPU_CTRL);
545
546 return 0;
547}
548
549#if defined(CONFIG_CPU_PM) || defined(CONFIG_ARM_GIC_PM)
550
551
552
553
554
555
556void gic_dist_save(struct gic_chip_data *gic)
557{
558 unsigned int gic_irqs;
559 void __iomem *dist_base;
560 int i;
561
562 if (WARN_ON(!gic))
563 return;
564
565 gic_irqs = gic->gic_irqs;
566 dist_base = gic_data_dist_base(gic);
567
568 if (!dist_base)
569 return;
570
571 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 16); i++)
572 gic->saved_spi_conf[i] =
573 readl_relaxed(dist_base + GIC_DIST_CONFIG + i * 4);
574
575 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
576 gic->saved_spi_target[i] =
577 readl_relaxed(dist_base + GIC_DIST_TARGET + i * 4);
578
579 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++)
580 gic->saved_spi_enable[i] =
581 readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
582
583 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++)
584 gic->saved_spi_active[i] =
585 readl_relaxed(dist_base + GIC_DIST_ACTIVE_SET + i * 4);
586}
587
588
589
590
591
592
593
594
595void gic_dist_restore(struct gic_chip_data *gic)
596{
597 unsigned int gic_irqs;
598 unsigned int i;
599 void __iomem *dist_base;
600
601 if (WARN_ON(!gic))
602 return;
603
604 gic_irqs = gic->gic_irqs;
605 dist_base = gic_data_dist_base(gic);
606
607 if (!dist_base)
608 return;
609
610 writel_relaxed(GICD_DISABLE, dist_base + GIC_DIST_CTRL);
611
612 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 16); i++)
613 writel_relaxed(gic->saved_spi_conf[i],
614 dist_base + GIC_DIST_CONFIG + i * 4);
615
616 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
617 writel_relaxed(GICD_INT_DEF_PRI_X4,
618 dist_base + GIC_DIST_PRI + i * 4);
619
620 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
621 writel_relaxed(gic->saved_spi_target[i],
622 dist_base + GIC_DIST_TARGET + i * 4);
623
624 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++) {
625 writel_relaxed(GICD_INT_EN_CLR_X32,
626 dist_base + GIC_DIST_ENABLE_CLEAR + i * 4);
627 writel_relaxed(gic->saved_spi_enable[i],
628 dist_base + GIC_DIST_ENABLE_SET + i * 4);
629 }
630
631 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++) {
632 writel_relaxed(GICD_INT_EN_CLR_X32,
633 dist_base + GIC_DIST_ACTIVE_CLEAR + i * 4);
634 writel_relaxed(gic->saved_spi_active[i],
635 dist_base + GIC_DIST_ACTIVE_SET + i * 4);
636 }
637
638 writel_relaxed(GICD_ENABLE, dist_base + GIC_DIST_CTRL);
639}
640
641void gic_cpu_save(struct gic_chip_data *gic)
642{
643 int i;
644 u32 *ptr;
645 void __iomem *dist_base;
646 void __iomem *cpu_base;
647
648 if (WARN_ON(!gic))
649 return;
650
651 dist_base = gic_data_dist_base(gic);
652 cpu_base = gic_data_cpu_base(gic);
653
654 if (!dist_base || !cpu_base)
655 return;
656
657 ptr = raw_cpu_ptr(gic->saved_ppi_enable);
658 for (i = 0; i < DIV_ROUND_UP(32, 32); i++)
659 ptr[i] = readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
660
661 ptr = raw_cpu_ptr(gic->saved_ppi_active);
662 for (i = 0; i < DIV_ROUND_UP(32, 32); i++)
663 ptr[i] = readl_relaxed(dist_base + GIC_DIST_ACTIVE_SET + i * 4);
664
665 ptr = raw_cpu_ptr(gic->saved_ppi_conf);
666 for (i = 0; i < DIV_ROUND_UP(32, 16); i++)
667 ptr[i] = readl_relaxed(dist_base + GIC_DIST_CONFIG + i * 4);
668
669}
670
671void gic_cpu_restore(struct gic_chip_data *gic)
672{
673 int i;
674 u32 *ptr;
675 void __iomem *dist_base;
676 void __iomem *cpu_base;
677
678 if (WARN_ON(!gic))
679 return;
680
681 dist_base = gic_data_dist_base(gic);
682 cpu_base = gic_data_cpu_base(gic);
683
684 if (!dist_base || !cpu_base)
685 return;
686
687 ptr = raw_cpu_ptr(gic->saved_ppi_enable);
688 for (i = 0; i < DIV_ROUND_UP(32, 32); i++) {
689 writel_relaxed(GICD_INT_EN_CLR_X32,
690 dist_base + GIC_DIST_ENABLE_CLEAR + i * 4);
691 writel_relaxed(ptr[i], dist_base + GIC_DIST_ENABLE_SET + i * 4);
692 }
693
694 ptr = raw_cpu_ptr(gic->saved_ppi_active);
695 for (i = 0; i < DIV_ROUND_UP(32, 32); i++) {
696 writel_relaxed(GICD_INT_EN_CLR_X32,
697 dist_base + GIC_DIST_ACTIVE_CLEAR + i * 4);
698 writel_relaxed(ptr[i], dist_base + GIC_DIST_ACTIVE_SET + i * 4);
699 }
700
701 ptr = raw_cpu_ptr(gic->saved_ppi_conf);
702 for (i = 0; i < DIV_ROUND_UP(32, 16); i++)
703 writel_relaxed(ptr[i], dist_base + GIC_DIST_CONFIG + i * 4);
704
705 for (i = 0; i < DIV_ROUND_UP(32, 4); i++)
706 writel_relaxed(GICD_INT_DEF_PRI_X4,
707 dist_base + GIC_DIST_PRI + i * 4);
708
709 writel_relaxed(GICC_INT_PRI_THRESHOLD, cpu_base + GIC_CPU_PRIMASK);
710 gic_cpu_if_up(gic);
711}
712
713static int gic_notifier(struct notifier_block *self, unsigned long cmd, void *v)
714{
715 int i;
716
717 for (i = 0; i < CONFIG_ARM_GIC_MAX_NR; i++) {
718 switch (cmd) {
719 case CPU_PM_ENTER:
720 gic_cpu_save(&gic_data[i]);
721 break;
722 case CPU_PM_ENTER_FAILED:
723 case CPU_PM_EXIT:
724 gic_cpu_restore(&gic_data[i]);
725 break;
726 case CPU_CLUSTER_PM_ENTER:
727 gic_dist_save(&gic_data[i]);
728 break;
729 case CPU_CLUSTER_PM_ENTER_FAILED:
730 case CPU_CLUSTER_PM_EXIT:
731 gic_dist_restore(&gic_data[i]);
732 break;
733 }
734 }
735
736 return NOTIFY_OK;
737}
738
739static struct notifier_block gic_notifier_block = {
740 .notifier_call = gic_notifier,
741};
742
743static int gic_pm_init(struct gic_chip_data *gic)
744{
745 gic->saved_ppi_enable = __alloc_percpu(DIV_ROUND_UP(32, 32) * 4,
746 sizeof(u32));
747 if (WARN_ON(!gic->saved_ppi_enable))
748 return -ENOMEM;
749
750 gic->saved_ppi_active = __alloc_percpu(DIV_ROUND_UP(32, 32) * 4,
751 sizeof(u32));
752 if (WARN_ON(!gic->saved_ppi_active))
753 goto free_ppi_enable;
754
755 gic->saved_ppi_conf = __alloc_percpu(DIV_ROUND_UP(32, 16) * 4,
756 sizeof(u32));
757 if (WARN_ON(!gic->saved_ppi_conf))
758 goto free_ppi_active;
759
760 if (gic == &gic_data[0])
761 cpu_pm_register_notifier(&gic_notifier_block);
762
763 return 0;
764
765free_ppi_active:
766 free_percpu(gic->saved_ppi_active);
767free_ppi_enable:
768 free_percpu(gic->saved_ppi_enable);
769
770 return -ENOMEM;
771}
772#else
773static int gic_pm_init(struct gic_chip_data *gic)
774{
775 return 0;
776}
777#endif
778
779#ifdef CONFIG_SMP
780static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
781 bool force)
782{
783 void __iomem *reg = gic_dist_base(d) + GIC_DIST_TARGET + gic_irq(d);
784 unsigned int cpu;
785
786 if (!force)
787 cpu = cpumask_any_and(mask_val, cpu_online_mask);
788 else
789 cpu = cpumask_first(mask_val);
790
791 if (cpu >= NR_GIC_CPU_IF || cpu >= nr_cpu_ids)
792 return -EINVAL;
793
794 writeb_relaxed(gic_cpu_map[cpu], reg);
795 irq_data_update_effective_affinity(d, cpumask_of(cpu));
796
797 return IRQ_SET_MASK_OK_DONE;
798}
799
800static void gic_ipi_send_mask(struct irq_data *d, const struct cpumask *mask)
801{
802 int cpu;
803 unsigned long flags, map = 0;
804
805 if (unlikely(nr_cpu_ids == 1)) {
806
807 writel_relaxed(2 << 24 | d->hwirq,
808 gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
809 return;
810 }
811
812 gic_lock_irqsave(flags);
813
814
815 for_each_cpu(cpu, mask)
816 map |= gic_cpu_map[cpu];
817
818
819
820
821
822 dmb(ishst);
823
824
825 writel_relaxed(map << 16 | d->hwirq, gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
826
827 gic_unlock_irqrestore(flags);
828}
829
830static int gic_starting_cpu(unsigned int cpu)
831{
832 gic_cpu_init(&gic_data[0]);
833 return 0;
834}
835
836static __init void gic_smp_init(void)
837{
838 struct irq_fwspec sgi_fwspec = {
839 .fwnode = gic_data[0].domain->fwnode,
840 .param_count = 1,
841 };
842 int base_sgi;
843
844 cpuhp_setup_state_nocalls(CPUHP_AP_IRQ_GIC_STARTING,
845 "irqchip/arm/gic:starting",
846 gic_starting_cpu, NULL);
847
848 base_sgi = __irq_domain_alloc_irqs(gic_data[0].domain, -1, 8,
849 NUMA_NO_NODE, &sgi_fwspec,
850 false, NULL);
851 if (WARN_ON(base_sgi <= 0))
852 return;
853
854 set_smp_ipi_range(base_sgi, 8);
855}
856#else
857#define gic_smp_init() do { } while(0)
858#define gic_set_affinity NULL
859#define gic_ipi_send_mask NULL
860#endif
861
862#ifdef CONFIG_BL_SWITCHER
863
864
865
866
867
868
869void gic_send_sgi(unsigned int cpu_id, unsigned int irq)
870{
871 BUG_ON(cpu_id >= NR_GIC_CPU_IF);
872 cpu_id = 1 << cpu_id;
873
874 writel_relaxed((cpu_id << 16) | irq, gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
875}
876
877
878
879
880
881
882
883
884
885
886int gic_get_cpu_id(unsigned int cpu)
887{
888 unsigned int cpu_bit;
889
890 if (cpu >= NR_GIC_CPU_IF)
891 return -1;
892 cpu_bit = gic_cpu_map[cpu];
893 if (cpu_bit & (cpu_bit - 1))
894 return -1;
895 return __ffs(cpu_bit);
896}
897
898
899
900
901
902
903
904
905
906
907
908void gic_migrate_target(unsigned int new_cpu_id)
909{
910 unsigned int cur_cpu_id, gic_irqs, gic_nr = 0;
911 void __iomem *dist_base;
912 int i, ror_val, cpu = smp_processor_id();
913 u32 val, cur_target_mask, active_mask;
914
915 BUG_ON(gic_nr >= CONFIG_ARM_GIC_MAX_NR);
916
917 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
918 if (!dist_base)
919 return;
920 gic_irqs = gic_data[gic_nr].gic_irqs;
921
922 cur_cpu_id = __ffs(gic_cpu_map[cpu]);
923 cur_target_mask = 0x01010101 << cur_cpu_id;
924 ror_val = (cur_cpu_id - new_cpu_id) & 31;
925
926 gic_lock();
927
928
929 gic_cpu_map[cpu] = 1 << new_cpu_id;
930
931
932
933
934
935
936 for (i = 8; i < DIV_ROUND_UP(gic_irqs, 4); i++) {
937 val = readl_relaxed(dist_base + GIC_DIST_TARGET + i * 4);
938 active_mask = val & cur_target_mask;
939 if (active_mask) {
940 val &= ~active_mask;
941 val |= ror32(active_mask, ror_val);
942 writel_relaxed(val, dist_base + GIC_DIST_TARGET + i*4);
943 }
944 }
945
946 gic_unlock();
947
948
949
950
951
952
953
954
955
956
957
958 for (i = 0; i < 16; i += 4) {
959 int j;
960 val = readl_relaxed(dist_base + GIC_DIST_SGI_PENDING_SET + i);
961 if (!val)
962 continue;
963 writel_relaxed(val, dist_base + GIC_DIST_SGI_PENDING_CLEAR + i);
964 for (j = i; j < i + 4; j++) {
965 if (val & 0xff)
966 writel_relaxed((1 << (new_cpu_id + 16)) | j,
967 dist_base + GIC_DIST_SOFTINT);
968 val >>= 8;
969 }
970 }
971}
972
973
974
975
976
977
978
979static unsigned long gic_dist_physaddr;
980
981unsigned long gic_get_sgir_physaddr(void)
982{
983 if (!gic_dist_physaddr)
984 return 0;
985 return gic_dist_physaddr + GIC_DIST_SOFTINT;
986}
987
988static void __init gic_init_physaddr(struct device_node *node)
989{
990 struct resource res;
991 if (of_address_to_resource(node, 0, &res) == 0) {
992 gic_dist_physaddr = res.start;
993 pr_info("GIC physical location is %#lx\n", gic_dist_physaddr);
994 }
995}
996
997#else
998#define gic_init_physaddr(node) do { } while (0)
999#endif
1000
1001static int gic_irq_domain_map(struct irq_domain *d, unsigned int irq,
1002 irq_hw_number_t hw)
1003{
1004 struct gic_chip_data *gic = d->host_data;
1005 struct irq_data *irqd = irq_desc_get_irq_data(irq_to_desc(irq));
1006
1007 switch (hw) {
1008 case 0 ... 31:
1009 irq_set_percpu_devid(irq);
1010 irq_domain_set_info(d, irq, hw, &gic->chip, d->host_data,
1011 handle_percpu_devid_irq, NULL, NULL);
1012 break;
1013 default:
1014 irq_domain_set_info(d, irq, hw, &gic->chip, d->host_data,
1015 handle_fasteoi_irq, NULL, NULL);
1016 irq_set_probe(irq);
1017 irqd_set_single_target(irqd);
1018 break;
1019 }
1020
1021
1022 irqd_set_handle_enforce_irqctx(irqd);
1023 return 0;
1024}
1025
1026static void gic_irq_domain_unmap(struct irq_domain *d, unsigned int irq)
1027{
1028}
1029
1030static int gic_irq_domain_translate(struct irq_domain *d,
1031 struct irq_fwspec *fwspec,
1032 unsigned long *hwirq,
1033 unsigned int *type)
1034{
1035 if (fwspec->param_count == 1 && fwspec->param[0] < 16) {
1036 *hwirq = fwspec->param[0];
1037 *type = IRQ_TYPE_EDGE_RISING;
1038 return 0;
1039 }
1040
1041 if (is_of_node(fwspec->fwnode)) {
1042 if (fwspec->param_count < 3)
1043 return -EINVAL;
1044
1045 switch (fwspec->param[0]) {
1046 case 0:
1047 *hwirq = fwspec->param[1] + 32;
1048 break;
1049 case 1:
1050 *hwirq = fwspec->param[1] + 16;
1051 break;
1052 default:
1053 return -EINVAL;
1054 }
1055
1056 *type = fwspec->param[2] & IRQ_TYPE_SENSE_MASK;
1057
1058
1059 WARN_ON(*type == IRQ_TYPE_NONE);
1060 return 0;
1061 }
1062
1063 if (is_fwnode_irqchip(fwspec->fwnode)) {
1064 if(fwspec->param_count != 2)
1065 return -EINVAL;
1066
1067 *hwirq = fwspec->param[0];
1068 *type = fwspec->param[1];
1069
1070 WARN_ON(*type == IRQ_TYPE_NONE);
1071 return 0;
1072 }
1073
1074 return -EINVAL;
1075}
1076
1077static int gic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
1078 unsigned int nr_irqs, void *arg)
1079{
1080 int i, ret;
1081 irq_hw_number_t hwirq;
1082 unsigned int type = IRQ_TYPE_NONE;
1083 struct irq_fwspec *fwspec = arg;
1084
1085 ret = gic_irq_domain_translate(domain, fwspec, &hwirq, &type);
1086 if (ret)
1087 return ret;
1088
1089 for (i = 0; i < nr_irqs; i++) {
1090 ret = gic_irq_domain_map(domain, virq + i, hwirq + i);
1091 if (ret)
1092 return ret;
1093 }
1094
1095 return 0;
1096}
1097
1098static const struct irq_domain_ops gic_irq_domain_hierarchy_ops = {
1099 .translate = gic_irq_domain_translate,
1100 .alloc = gic_irq_domain_alloc,
1101 .free = irq_domain_free_irqs_top,
1102};
1103
1104static const struct irq_domain_ops gic_irq_domain_ops = {
1105 .map = gic_irq_domain_map,
1106 .unmap = gic_irq_domain_unmap,
1107};
1108
1109static void gic_init_chip(struct gic_chip_data *gic, struct device *dev,
1110 const char *name, bool use_eoimode1)
1111{
1112
1113 gic->chip = gic_chip;
1114 gic->chip.name = name;
1115 gic->chip.parent_device = dev;
1116
1117 if (use_eoimode1) {
1118 gic->chip.irq_mask = gic_eoimode1_mask_irq;
1119 gic->chip.irq_eoi = gic_eoimode1_eoi_irq;
1120 gic->chip.irq_set_vcpu_affinity = gic_irq_set_vcpu_affinity;
1121 }
1122
1123 if (gic == &gic_data[0]) {
1124 gic->chip.irq_set_affinity = gic_set_affinity;
1125 gic->chip.ipi_send_mask = gic_ipi_send_mask;
1126 }
1127}
1128
1129static int gic_init_bases(struct gic_chip_data *gic,
1130 struct fwnode_handle *handle)
1131{
1132 int gic_irqs, ret;
1133
1134 if (IS_ENABLED(CONFIG_GIC_NON_BANKED) && gic->percpu_offset) {
1135
1136 unsigned int cpu;
1137
1138 gic->dist_base.percpu_base = alloc_percpu(void __iomem *);
1139 gic->cpu_base.percpu_base = alloc_percpu(void __iomem *);
1140 if (WARN_ON(!gic->dist_base.percpu_base ||
1141 !gic->cpu_base.percpu_base)) {
1142 ret = -ENOMEM;
1143 goto error;
1144 }
1145
1146 for_each_possible_cpu(cpu) {
1147 u32 mpidr = cpu_logical_map(cpu);
1148 u32 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0);
1149 unsigned long offset = gic->percpu_offset * core_id;
1150 *per_cpu_ptr(gic->dist_base.percpu_base, cpu) =
1151 gic->raw_dist_base + offset;
1152 *per_cpu_ptr(gic->cpu_base.percpu_base, cpu) =
1153 gic->raw_cpu_base + offset;
1154 }
1155
1156 enable_frankengic();
1157 } else {
1158
1159 WARN(gic->percpu_offset,
1160 "GIC_NON_BANKED not enabled, ignoring %08x offset!",
1161 gic->percpu_offset);
1162 gic->dist_base.common_base = gic->raw_dist_base;
1163 gic->cpu_base.common_base = gic->raw_cpu_base;
1164 }
1165
1166
1167
1168
1169
1170 gic_irqs = readl_relaxed(gic_data_dist_base(gic) + GIC_DIST_CTR) & 0x1f;
1171 gic_irqs = (gic_irqs + 1) * 32;
1172 if (gic_irqs > 1020)
1173 gic_irqs = 1020;
1174 gic->gic_irqs = gic_irqs;
1175
1176 if (handle) {
1177 gic->domain = irq_domain_create_linear(handle, gic_irqs,
1178 &gic_irq_domain_hierarchy_ops,
1179 gic);
1180 } else {
1181
1182
1183
1184
1185 int irq_base;
1186
1187 gic_irqs -= 16;
1188
1189 irq_base = irq_alloc_descs(16, 16, gic_irqs,
1190 numa_node_id());
1191 if (irq_base < 0) {
1192 WARN(1, "Cannot allocate irq_descs @ IRQ16, assuming pre-allocated\n");
1193 irq_base = 16;
1194 }
1195
1196 gic->domain = irq_domain_add_legacy(NULL, gic_irqs, irq_base,
1197 16, &gic_irq_domain_ops, gic);
1198 }
1199
1200 if (WARN_ON(!gic->domain)) {
1201 ret = -ENODEV;
1202 goto error;
1203 }
1204
1205 gic_dist_init(gic);
1206 ret = gic_cpu_init(gic);
1207 if (ret)
1208 goto error;
1209
1210 ret = gic_pm_init(gic);
1211 if (ret)
1212 goto error;
1213
1214 return 0;
1215
1216error:
1217 if (IS_ENABLED(CONFIG_GIC_NON_BANKED) && gic->percpu_offset) {
1218 free_percpu(gic->dist_base.percpu_base);
1219 free_percpu(gic->cpu_base.percpu_base);
1220 }
1221
1222 return ret;
1223}
1224
1225static int __init __gic_init_bases(struct gic_chip_data *gic,
1226 struct fwnode_handle *handle)
1227{
1228 char *name;
1229 int i, ret;
1230
1231 if (WARN_ON(!gic || gic->domain))
1232 return -EINVAL;
1233
1234 if (gic == &gic_data[0]) {
1235
1236
1237
1238
1239
1240 for (i = 0; i < NR_GIC_CPU_IF; i++)
1241 gic_cpu_map[i] = 0xff;
1242
1243 set_handle_irq(gic_handle_irq);
1244 if (static_branch_likely(&supports_deactivate_key))
1245 pr_info("GIC: Using split EOI/Deactivate mode\n");
1246 }
1247
1248 if (static_branch_likely(&supports_deactivate_key) && gic == &gic_data[0]) {
1249 name = kasprintf(GFP_KERNEL, "GICv2");
1250 gic_init_chip(gic, NULL, name, true);
1251 } else {
1252 name = kasprintf(GFP_KERNEL, "GIC-%d", (int)(gic-&gic_data[0]));
1253 gic_init_chip(gic, NULL, name, false);
1254 }
1255
1256 ret = gic_init_bases(gic, handle);
1257 if (ret)
1258 kfree(name);
1259 else if (gic == &gic_data[0])
1260 gic_smp_init();
1261
1262 return ret;
1263}
1264
1265void __init gic_init(void __iomem *dist_base, void __iomem *cpu_base)
1266{
1267 struct gic_chip_data *gic;
1268
1269
1270
1271
1272
1273 static_branch_disable(&supports_deactivate_key);
1274
1275 gic = &gic_data[0];
1276 gic->raw_dist_base = dist_base;
1277 gic->raw_cpu_base = cpu_base;
1278
1279 __gic_init_bases(gic, NULL);
1280}
1281
1282static void gic_teardown(struct gic_chip_data *gic)
1283{
1284 if (WARN_ON(!gic))
1285 return;
1286
1287 if (gic->raw_dist_base)
1288 iounmap(gic->raw_dist_base);
1289 if (gic->raw_cpu_base)
1290 iounmap(gic->raw_cpu_base);
1291}
1292
1293#ifdef CONFIG_OF
1294static int gic_cnt __initdata;
1295static bool gicv2_force_probe;
1296
1297static int __init gicv2_force_probe_cfg(char *buf)
1298{
1299 return strtobool(buf, &gicv2_force_probe);
1300}
1301early_param("irqchip.gicv2_force_probe", gicv2_force_probe_cfg);
1302
1303static bool gic_check_eoimode(struct device_node *node, void __iomem **base)
1304{
1305 struct resource cpuif_res;
1306
1307 of_address_to_resource(node, 1, &cpuif_res);
1308
1309 if (!is_hyp_mode_available())
1310 return false;
1311 if (resource_size(&cpuif_res) < SZ_8K) {
1312 void __iomem *alt;
1313
1314
1315
1316
1317 if (!gic_check_gicv2(*base))
1318 return false;
1319
1320 if (!gicv2_force_probe) {
1321 pr_warn("GIC: GICv2 detected, but range too small and irqchip.gicv2_force_probe not set\n");
1322 return false;
1323 }
1324
1325 alt = ioremap(cpuif_res.start, SZ_8K);
1326 if (!alt)
1327 return false;
1328 if (!gic_check_gicv2(alt + SZ_4K)) {
1329
1330
1331
1332
1333
1334 pr_warn("GIC: GICv2 at %pa, but range is too small (broken DT?), assuming 8kB\n",
1335 &cpuif_res.start);
1336 iounmap(*base);
1337 *base = alt;
1338 return true;
1339 }
1340
1341
1342
1343
1344
1345
1346
1347 iounmap(alt);
1348 alt = ioremap(cpuif_res.start, SZ_128K);
1349 if (!alt)
1350 return false;
1351 pr_warn("GIC: Aliased GICv2 at %pa, trying to find the canonical range over 128kB\n",
1352 &cpuif_res.start);
1353 cpuif_res.end = cpuif_res.start + SZ_128K -1;
1354 iounmap(*base);
1355 *base = alt;
1356 }
1357 if (resource_size(&cpuif_res) == SZ_128K) {
1358
1359
1360
1361
1362
1363 if (!gic_check_gicv2(*base) ||
1364 !gic_check_gicv2(*base + 0xf000))
1365 return false;
1366
1367
1368
1369
1370
1371
1372 *base += 0xf000;
1373 cpuif_res.start += 0xf000;
1374 pr_warn("GIC: Adjusting CPU interface base to %pa\n",
1375 &cpuif_res.start);
1376 }
1377
1378 return true;
1379}
1380
1381static int gic_of_setup(struct gic_chip_data *gic, struct device_node *node)
1382{
1383 if (!gic || !node)
1384 return -EINVAL;
1385
1386 gic->raw_dist_base = of_iomap(node, 0);
1387 if (WARN(!gic->raw_dist_base, "unable to map gic dist registers\n"))
1388 goto error;
1389
1390 gic->raw_cpu_base = of_iomap(node, 1);
1391 if (WARN(!gic->raw_cpu_base, "unable to map gic cpu registers\n"))
1392 goto error;
1393
1394 if (of_property_read_u32(node, "cpu-offset", &gic->percpu_offset))
1395 gic->percpu_offset = 0;
1396
1397 return 0;
1398
1399error:
1400 gic_teardown(gic);
1401
1402 return -ENOMEM;
1403}
1404
1405int gic_of_init_child(struct device *dev, struct gic_chip_data **gic, int irq)
1406{
1407 int ret;
1408
1409 if (!dev || !dev->of_node || !gic || !irq)
1410 return -EINVAL;
1411
1412 *gic = devm_kzalloc(dev, sizeof(**gic), GFP_KERNEL);
1413 if (!*gic)
1414 return -ENOMEM;
1415
1416 gic_init_chip(*gic, dev, dev->of_node->name, false);
1417
1418 ret = gic_of_setup(*gic, dev->of_node);
1419 if (ret)
1420 return ret;
1421
1422 ret = gic_init_bases(*gic, &dev->of_node->fwnode);
1423 if (ret) {
1424 gic_teardown(*gic);
1425 return ret;
1426 }
1427
1428 irq_set_chained_handler_and_data(irq, gic_handle_cascade_irq, *gic);
1429
1430 return 0;
1431}
1432
1433static void __init gic_of_setup_kvm_info(struct device_node *node)
1434{
1435 int ret;
1436 struct resource *vctrl_res = &gic_v2_kvm_info.vctrl;
1437 struct resource *vcpu_res = &gic_v2_kvm_info.vcpu;
1438
1439 gic_v2_kvm_info.type = GIC_V2;
1440
1441 gic_v2_kvm_info.maint_irq = irq_of_parse_and_map(node, 0);
1442 if (!gic_v2_kvm_info.maint_irq)
1443 return;
1444
1445 ret = of_address_to_resource(node, 2, vctrl_res);
1446 if (ret)
1447 return;
1448
1449 ret = of_address_to_resource(node, 3, vcpu_res);
1450 if (ret)
1451 return;
1452
1453 if (static_branch_likely(&supports_deactivate_key))
1454 gic_set_kvm_info(&gic_v2_kvm_info);
1455}
1456
1457int __init
1458gic_of_init(struct device_node *node, struct device_node *parent)
1459{
1460 struct gic_chip_data *gic;
1461 int irq, ret;
1462
1463 if (WARN_ON(!node))
1464 return -ENODEV;
1465
1466 if (WARN_ON(gic_cnt >= CONFIG_ARM_GIC_MAX_NR))
1467 return -EINVAL;
1468
1469 gic = &gic_data[gic_cnt];
1470
1471 ret = gic_of_setup(gic, node);
1472 if (ret)
1473 return ret;
1474
1475
1476
1477
1478
1479 if (gic_cnt == 0 && !gic_check_eoimode(node, &gic->raw_cpu_base))
1480 static_branch_disable(&supports_deactivate_key);
1481
1482 ret = __gic_init_bases(gic, &node->fwnode);
1483 if (ret) {
1484 gic_teardown(gic);
1485 return ret;
1486 }
1487
1488 if (!gic_cnt) {
1489 gic_init_physaddr(node);
1490 gic_of_setup_kvm_info(node);
1491 }
1492
1493 if (parent) {
1494 irq = irq_of_parse_and_map(node, 0);
1495 gic_cascade_irq(gic_cnt, irq);
1496 }
1497
1498 if (IS_ENABLED(CONFIG_ARM_GIC_V2M))
1499 gicv2m_init(&node->fwnode, gic_data[gic_cnt].domain);
1500
1501 gic_cnt++;
1502 return 0;
1503}
1504IRQCHIP_DECLARE(gic_400, "arm,gic-400", gic_of_init);
1505IRQCHIP_DECLARE(arm11mp_gic, "arm,arm11mp-gic", gic_of_init);
1506IRQCHIP_DECLARE(arm1176jzf_dc_gic, "arm,arm1176jzf-devchip-gic", gic_of_init);
1507IRQCHIP_DECLARE(cortex_a15_gic, "arm,cortex-a15-gic", gic_of_init);
1508IRQCHIP_DECLARE(cortex_a9_gic, "arm,cortex-a9-gic", gic_of_init);
1509IRQCHIP_DECLARE(cortex_a7_gic, "arm,cortex-a7-gic", gic_of_init);
1510IRQCHIP_DECLARE(msm_8660_qgic, "qcom,msm-8660-qgic", gic_of_init);
1511IRQCHIP_DECLARE(msm_qgic2, "qcom,msm-qgic2", gic_of_init);
1512IRQCHIP_DECLARE(pl390, "arm,pl390", gic_of_init);
1513#else
1514int gic_of_init_child(struct device *dev, struct gic_chip_data **gic, int irq)
1515{
1516 return -ENOTSUPP;
1517}
1518#endif
1519
1520#ifdef CONFIG_ACPI
1521static struct
1522{
1523 phys_addr_t cpu_phys_base;
1524 u32 maint_irq;
1525 int maint_irq_mode;
1526 phys_addr_t vctrl_base;
1527 phys_addr_t vcpu_base;
1528} acpi_data __initdata;
1529
1530static int __init
1531gic_acpi_parse_madt_cpu(union acpi_subtable_headers *header,
1532 const unsigned long end)
1533{
1534 struct acpi_madt_generic_interrupt *processor;
1535 phys_addr_t gic_cpu_base;
1536 static int cpu_base_assigned;
1537
1538 processor = (struct acpi_madt_generic_interrupt *)header;
1539
1540 if (BAD_MADT_GICC_ENTRY(processor, end))
1541 return -EINVAL;
1542
1543
1544
1545
1546
1547 gic_cpu_base = processor->base_address;
1548 if (cpu_base_assigned && gic_cpu_base != acpi_data.cpu_phys_base)
1549 return -EINVAL;
1550
1551 acpi_data.cpu_phys_base = gic_cpu_base;
1552 acpi_data.maint_irq = processor->vgic_interrupt;
1553 acpi_data.maint_irq_mode = (processor->flags & ACPI_MADT_VGIC_IRQ_MODE) ?
1554 ACPI_EDGE_SENSITIVE : ACPI_LEVEL_SENSITIVE;
1555 acpi_data.vctrl_base = processor->gich_base_address;
1556 acpi_data.vcpu_base = processor->gicv_base_address;
1557
1558 cpu_base_assigned = 1;
1559 return 0;
1560}
1561
1562
1563static int __init acpi_dummy_func(union acpi_subtable_headers *header,
1564 const unsigned long end)
1565{
1566 return 0;
1567}
1568
1569static bool __init acpi_gic_redist_is_present(void)
1570{
1571 return acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR,
1572 acpi_dummy_func, 0) > 0;
1573}
1574
1575static bool __init gic_validate_dist(struct acpi_subtable_header *header,
1576 struct acpi_probe_entry *ape)
1577{
1578 struct acpi_madt_generic_distributor *dist;
1579 dist = (struct acpi_madt_generic_distributor *)header;
1580
1581 return (dist->version == ape->driver_data &&
1582 (dist->version != ACPI_MADT_GIC_VERSION_NONE ||
1583 !acpi_gic_redist_is_present()));
1584}
1585
1586#define ACPI_GICV2_DIST_MEM_SIZE (SZ_4K)
1587#define ACPI_GIC_CPU_IF_MEM_SIZE (SZ_8K)
1588#define ACPI_GICV2_VCTRL_MEM_SIZE (SZ_4K)
1589#define ACPI_GICV2_VCPU_MEM_SIZE (SZ_8K)
1590
1591static void __init gic_acpi_setup_kvm_info(void)
1592{
1593 int irq;
1594 struct resource *vctrl_res = &gic_v2_kvm_info.vctrl;
1595 struct resource *vcpu_res = &gic_v2_kvm_info.vcpu;
1596
1597 gic_v2_kvm_info.type = GIC_V2;
1598
1599 if (!acpi_data.vctrl_base)
1600 return;
1601
1602 vctrl_res->flags = IORESOURCE_MEM;
1603 vctrl_res->start = acpi_data.vctrl_base;
1604 vctrl_res->end = vctrl_res->start + ACPI_GICV2_VCTRL_MEM_SIZE - 1;
1605
1606 if (!acpi_data.vcpu_base)
1607 return;
1608
1609 vcpu_res->flags = IORESOURCE_MEM;
1610 vcpu_res->start = acpi_data.vcpu_base;
1611 vcpu_res->end = vcpu_res->start + ACPI_GICV2_VCPU_MEM_SIZE - 1;
1612
1613 irq = acpi_register_gsi(NULL, acpi_data.maint_irq,
1614 acpi_data.maint_irq_mode,
1615 ACPI_ACTIVE_HIGH);
1616 if (irq <= 0)
1617 return;
1618
1619 gic_v2_kvm_info.maint_irq = irq;
1620
1621 gic_set_kvm_info(&gic_v2_kvm_info);
1622}
1623
1624static int __init gic_v2_acpi_init(union acpi_subtable_headers *header,
1625 const unsigned long end)
1626{
1627 struct acpi_madt_generic_distributor *dist;
1628 struct fwnode_handle *domain_handle;
1629 struct gic_chip_data *gic = &gic_data[0];
1630 int count, ret;
1631
1632
1633 count = acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_INTERRUPT,
1634 gic_acpi_parse_madt_cpu, 0);
1635 if (count <= 0) {
1636 pr_err("No valid GICC entries exist\n");
1637 return -EINVAL;
1638 }
1639
1640 gic->raw_cpu_base = ioremap(acpi_data.cpu_phys_base, ACPI_GIC_CPU_IF_MEM_SIZE);
1641 if (!gic->raw_cpu_base) {
1642 pr_err("Unable to map GICC registers\n");
1643 return -ENOMEM;
1644 }
1645
1646 dist = (struct acpi_madt_generic_distributor *)header;
1647 gic->raw_dist_base = ioremap(dist->base_address,
1648 ACPI_GICV2_DIST_MEM_SIZE);
1649 if (!gic->raw_dist_base) {
1650 pr_err("Unable to map GICD registers\n");
1651 gic_teardown(gic);
1652 return -ENOMEM;
1653 }
1654
1655
1656
1657
1658
1659
1660 if (!is_hyp_mode_available())
1661 static_branch_disable(&supports_deactivate_key);
1662
1663
1664
1665
1666 domain_handle = irq_domain_alloc_fwnode(&dist->base_address);
1667 if (!domain_handle) {
1668 pr_err("Unable to allocate domain handle\n");
1669 gic_teardown(gic);
1670 return -ENOMEM;
1671 }
1672
1673 ret = __gic_init_bases(gic, domain_handle);
1674 if (ret) {
1675 pr_err("Failed to initialise GIC\n");
1676 irq_domain_free_fwnode(domain_handle);
1677 gic_teardown(gic);
1678 return ret;
1679 }
1680
1681 acpi_set_irq_model(ACPI_IRQ_MODEL_GIC, domain_handle);
1682
1683 if (IS_ENABLED(CONFIG_ARM_GIC_V2M))
1684 gicv2m_init(NULL, gic_data[0].domain);
1685
1686 if (static_branch_likely(&supports_deactivate_key))
1687 gic_acpi_setup_kvm_info();
1688
1689 return 0;
1690}
1691IRQCHIP_ACPI_DECLARE(gic_v2, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
1692 gic_validate_dist, ACPI_MADT_GIC_VERSION_V2,
1693 gic_v2_acpi_init);
1694IRQCHIP_ACPI_DECLARE(gic_v2_maybe, ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
1695 gic_validate_dist, ACPI_MADT_GIC_VERSION_NONE,
1696 gic_v2_acpi_init);
1697#endif
1698