Merge remote-tracking branch 'lsk/v3.10/topic/arm64-usb' into linux-linaro-lsk
[firefly-linux-kernel-4.4.55.git] / drivers / irqchip / irq-gic.c
1 /*
2  *  linux/arch/arm/common/gic.c
3  *
4  *  Copyright (C) 2002 ARM Limited, All Rights Reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * Interrupt architecture for the GIC:
11  *
12  * o There is one Interrupt Distributor, which receives interrupts
13  *   from system devices and sends them to the Interrupt Controllers.
14  *
15  * o There is one CPU Interface per CPU, which sends interrupts sent
16  *   by the Distributor, and interrupts generated locally, to the
17  *   associated CPU. The base address of the CPU interface is usually
18  *   aliased so that the same address points to different chips depending
19  *   on the CPU it is accessed from.
20  *
21  * Note that IRQs 0-31 are special - they are local to each CPU.
22  * As such, the enable set/clear, pending set/clear and active bit
23  * registers are banked per-cpu for these sources.
24  */
25 #include <linux/init.h>
26 #include <linux/kernel.h>
27 #include <linux/err.h>
28 #include <linux/module.h>
29 #include <linux/list.h>
30 #include <linux/smp.h>
31 #include <linux/cpu.h>
32 #include <linux/cpu_pm.h>
33 #include <linux/cpumask.h>
34 #include <linux/io.h>
35 #include <linux/of.h>
36 #include <linux/of_address.h>
37 #include <linux/of_irq.h>
38 #include <linux/irqdomain.h>
39 #include <linux/interrupt.h>
40 #include <linux/percpu.h>
41 #include <linux/slab.h>
42 #include <linux/irqchip/chained_irq.h>
43 #include <linux/irqchip/arm-gic.h>
44 #include <trace/events/arm-ipi.h>
45
46 #include <asm/irq.h>
47 #include <asm/exception.h>
48 #include <asm/smp_plat.h>
49
50 #include "irqchip.h"
51
52 union gic_base {
53         void __iomem *common_base;
54         void __percpu __iomem **percpu_base;
55 };
56
57 struct gic_chip_data {
58         union gic_base dist_base;
59         union gic_base cpu_base;
60 #ifdef CONFIG_CPU_PM
61         u32 saved_spi_enable[DIV_ROUND_UP(1020, 32)];
62         u32 saved_spi_conf[DIV_ROUND_UP(1020, 16)];
63         u32 saved_spi_target[DIV_ROUND_UP(1020, 4)];
64         u32 __percpu *saved_ppi_enable;
65         u32 __percpu *saved_ppi_conf;
66 #endif
67         struct irq_domain *domain;
68         unsigned int gic_irqs;
69 #ifdef CONFIG_GIC_NON_BANKED
70         void __iomem *(*get_base)(union gic_base *);
71 #endif
72 };
73
74 static DEFINE_RAW_SPINLOCK(irq_controller_lock);
75
76 /*
77  * The GIC mapping of CPU interfaces does not necessarily match
78  * the logical CPU numbering.  Let's use a mapping as returned
79  * by the GIC itself.
80  */
81 #define NR_GIC_CPU_IF 8
82 static u8 gic_cpu_map[NR_GIC_CPU_IF] __read_mostly;
83
84 /*
85  * Supported arch specific GIC irq extension.
86  * Default make them NULL.
87  */
88 struct irq_chip gic_arch_extn = {
89         .irq_eoi        = NULL,
90         .irq_mask       = NULL,
91         .irq_unmask     = NULL,
92         .irq_retrigger  = NULL,
93         .irq_set_type   = NULL,
94         .irq_set_wake   = NULL,
95 };
96
97 #ifndef MAX_GIC_NR
98 #define MAX_GIC_NR      1
99 #endif
100
101 static struct gic_chip_data gic_data[MAX_GIC_NR] __read_mostly;
102
103 #ifdef CONFIG_GIC_NON_BANKED
104 static void __iomem *gic_get_percpu_base(union gic_base *base)
105 {
106         return *__this_cpu_ptr(base->percpu_base);
107 }
108
109 static void __iomem *gic_get_common_base(union gic_base *base)
110 {
111         return base->common_base;
112 }
113
114 static inline void __iomem *gic_data_dist_base(struct gic_chip_data *data)
115 {
116         return data->get_base(&data->dist_base);
117 }
118
119 static inline void __iomem *gic_data_cpu_base(struct gic_chip_data *data)
120 {
121         return data->get_base(&data->cpu_base);
122 }
123
124 static inline void gic_set_base_accessor(struct gic_chip_data *data,
125                                          void __iomem *(*f)(union gic_base *))
126 {
127         data->get_base = f;
128 }
129 #else
130 #define gic_data_dist_base(d)   ((d)->dist_base.common_base)
131 #define gic_data_cpu_base(d)    ((d)->cpu_base.common_base)
132 #define gic_set_base_accessor(d, f)
133 #endif
134
135 static inline void __iomem *gic_dist_base(struct irq_data *d)
136 {
137         struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
138         return gic_data_dist_base(gic_data);
139 }
140
141 static inline void __iomem *gic_cpu_base(struct irq_data *d)
142 {
143         struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
144         return gic_data_cpu_base(gic_data);
145 }
146
147 static inline unsigned int gic_irq(struct irq_data *d)
148 {
149         return d->hwirq;
150 }
151
152 /*
153  * Routines to acknowledge, disable and enable interrupts
154  */
155 static void gic_mask_irq(struct irq_data *d)
156 {
157         u32 mask = 1 << (gic_irq(d) % 32);
158
159         raw_spin_lock(&irq_controller_lock);
160         writel_relaxed(mask, gic_dist_base(d) + GIC_DIST_ENABLE_CLEAR + (gic_irq(d) / 32) * 4);
161         if (gic_arch_extn.irq_mask)
162                 gic_arch_extn.irq_mask(d);
163         raw_spin_unlock(&irq_controller_lock);
164 }
165
166 static void gic_unmask_irq(struct irq_data *d)
167 {
168         u32 mask = 1 << (gic_irq(d) % 32);
169
170         raw_spin_lock(&irq_controller_lock);
171         if (gic_arch_extn.irq_unmask)
172                 gic_arch_extn.irq_unmask(d);
173         writel_relaxed(mask, gic_dist_base(d) + GIC_DIST_ENABLE_SET + (gic_irq(d) / 32) * 4);
174         raw_spin_unlock(&irq_controller_lock);
175 }
176
177 static void gic_eoi_irq(struct irq_data *d)
178 {
179         if (gic_arch_extn.irq_eoi) {
180                 raw_spin_lock(&irq_controller_lock);
181                 gic_arch_extn.irq_eoi(d);
182                 raw_spin_unlock(&irq_controller_lock);
183         }
184
185         writel_relaxed(gic_irq(d), gic_cpu_base(d) + GIC_CPU_EOI);
186 }
187
188 static int gic_set_type(struct irq_data *d, unsigned int type)
189 {
190         void __iomem *base = gic_dist_base(d);
191         unsigned int gicirq = gic_irq(d);
192         u32 enablemask = 1 << (gicirq % 32);
193         u32 enableoff = (gicirq / 32) * 4;
194         u32 confmask = 0x2 << ((gicirq % 16) * 2);
195         u32 confoff = (gicirq / 16) * 4;
196         bool enabled = false;
197         u32 val;
198
199         /* Interrupt configuration for SGIs can't be changed */
200         if (gicirq < 16)
201                 return -EINVAL;
202
203         if (type != IRQ_TYPE_LEVEL_HIGH && type != IRQ_TYPE_EDGE_RISING)
204                 return -EINVAL;
205
206         raw_spin_lock(&irq_controller_lock);
207
208         if (gic_arch_extn.irq_set_type)
209                 gic_arch_extn.irq_set_type(d, type);
210
211         val = readl_relaxed(base + GIC_DIST_CONFIG + confoff);
212         if (type == IRQ_TYPE_LEVEL_HIGH)
213                 val &= ~confmask;
214         else if (type == IRQ_TYPE_EDGE_RISING)
215                 val |= confmask;
216
217         /*
218          * As recommended by the spec, disable the interrupt before changing
219          * the configuration
220          */
221         if (readl_relaxed(base + GIC_DIST_ENABLE_SET + enableoff) & enablemask) {
222                 writel_relaxed(enablemask, base + GIC_DIST_ENABLE_CLEAR + enableoff);
223                 enabled = true;
224         }
225
226         writel_relaxed(val, base + GIC_DIST_CONFIG + confoff);
227
228         if (enabled)
229                 writel_relaxed(enablemask, base + GIC_DIST_ENABLE_SET + enableoff);
230
231         raw_spin_unlock(&irq_controller_lock);
232
233         return 0;
234 }
235
236 static int gic_retrigger(struct irq_data *d)
237 {
238         if (gic_arch_extn.irq_retrigger)
239                 return gic_arch_extn.irq_retrigger(d);
240
241         /* the genirq layer expects 0 if we can't retrigger in hardware */
242         return 0;
243 }
244
245 #ifdef CONFIG_SMP
246 static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
247                             bool force)
248 {
249         void __iomem *reg = gic_dist_base(d) + GIC_DIST_TARGET + (gic_irq(d) & ~3);
250         unsigned int shift = (gic_irq(d) % 4) * 8;
251         unsigned int cpu = cpumask_any_and(mask_val, cpu_online_mask);
252         u32 val, mask, bit;
253
254         if (cpu >= NR_GIC_CPU_IF || cpu >= nr_cpu_ids)
255                 return -EINVAL;
256
257         raw_spin_lock(&irq_controller_lock);
258         mask = 0xff << shift;
259         bit = gic_cpu_map[cpu] << shift;
260         val = readl_relaxed(reg) & ~mask;
261         writel_relaxed(val | bit, reg);
262         raw_spin_unlock(&irq_controller_lock);
263
264         return IRQ_SET_MASK_OK;
265 }
266 #endif
267
268 #ifdef CONFIG_PM
269 static int gic_set_wake(struct irq_data *d, unsigned int on)
270 {
271         int ret = -ENXIO;
272
273         if (gic_arch_extn.irq_set_wake)
274                 ret = gic_arch_extn.irq_set_wake(d, on);
275
276         return ret;
277 }
278
279 #else
280 #define gic_set_wake    NULL
281 #endif
282
283 static asmlinkage void __exception_irq_entry gic_handle_irq(struct pt_regs *regs)
284 {
285         u32 irqstat, irqnr;
286         struct gic_chip_data *gic = &gic_data[0];
287         void __iomem *cpu_base = gic_data_cpu_base(gic);
288
289         do {
290                 irqstat = readl_relaxed(cpu_base + GIC_CPU_INTACK);
291                 irqnr = irqstat & ~0x1c00;
292
293                 if (likely(irqnr > 15 && irqnr < 1021)) {
294                         irqnr = irq_find_mapping(gic->domain, irqnr);
295                         handle_IRQ(irqnr, regs);
296                         continue;
297                 }
298                 if (irqnr < 16) {
299                         writel_relaxed(irqstat, cpu_base + GIC_CPU_EOI);
300 #ifdef CONFIG_SMP
301                         handle_IPI(irqnr, regs);
302 #endif
303                         continue;
304                 }
305                 break;
306         } while (1);
307 }
308
309 static void gic_handle_cascade_irq(unsigned int irq, struct irq_desc *desc)
310 {
311         struct gic_chip_data *chip_data = irq_get_handler_data(irq);
312         struct irq_chip *chip = irq_get_chip(irq);
313         unsigned int cascade_irq, gic_irq;
314         unsigned long status;
315
316         chained_irq_enter(chip, desc);
317
318         raw_spin_lock(&irq_controller_lock);
319         status = readl_relaxed(gic_data_cpu_base(chip_data) + GIC_CPU_INTACK);
320         raw_spin_unlock(&irq_controller_lock);
321
322         gic_irq = (status & 0x3ff);
323         if (gic_irq == 1023)
324                 goto out;
325
326         cascade_irq = irq_find_mapping(chip_data->domain, gic_irq);
327         if (unlikely(gic_irq < 32 || gic_irq > 1020))
328                 handle_bad_irq(cascade_irq, desc);
329         else
330                 generic_handle_irq(cascade_irq);
331
332  out:
333         chained_irq_exit(chip, desc);
334 }
335
336 static struct irq_chip gic_chip = {
337         .name                   = "GIC",
338         .irq_mask               = gic_mask_irq,
339         .irq_unmask             = gic_unmask_irq,
340         .irq_eoi                = gic_eoi_irq,
341         .irq_set_type           = gic_set_type,
342         .irq_retrigger          = gic_retrigger,
343 #ifdef CONFIG_SMP
344         .irq_set_affinity       = gic_set_affinity,
345 #endif
346         .irq_set_wake           = gic_set_wake,
347 };
348
349 void __init gic_cascade_irq(unsigned int gic_nr, unsigned int irq)
350 {
351         if (gic_nr >= MAX_GIC_NR)
352                 BUG();
353         if (irq_set_handler_data(irq, &gic_data[gic_nr]) != 0)
354                 BUG();
355         irq_set_chained_handler(irq, gic_handle_cascade_irq);
356 }
357
358 static u8 gic_get_cpumask(struct gic_chip_data *gic)
359 {
360         void __iomem *base = gic_data_dist_base(gic);
361         u32 mask, i;
362
363         for (i = mask = 0; i < 32; i += 4) {
364                 mask = readl_relaxed(base + GIC_DIST_TARGET + i);
365                 mask |= mask >> 16;
366                 mask |= mask >> 8;
367                 if (mask)
368                         break;
369         }
370
371         if (!mask)
372                 pr_crit("GIC CPU mask not found - kernel will fail to boot.\n");
373
374         return mask;
375 }
376
377 static void __init gic_dist_init(struct gic_chip_data *gic)
378 {
379         unsigned int i;
380         u32 cpumask;
381         unsigned int gic_irqs = gic->gic_irqs;
382         void __iomem *base = gic_data_dist_base(gic);
383
384         writel_relaxed(0, base + GIC_DIST_CTRL);
385
386         /*
387          * Set all global interrupts to be level triggered, active low.
388          */
389         for (i = 32; i < gic_irqs; i += 16)
390                 writel_relaxed(0, base + GIC_DIST_CONFIG + i * 4 / 16);
391
392         /*
393          * Set all global interrupts to this CPU only.
394          */
395         cpumask = gic_get_cpumask(gic);
396         cpumask |= cpumask << 8;
397         cpumask |= cpumask << 16;
398         for (i = 32; i < gic_irqs; i += 4)
399                 writel_relaxed(cpumask, base + GIC_DIST_TARGET + i * 4 / 4);
400
401         /*
402          * Set priority on all global interrupts.
403          */
404         for (i = 32; i < gic_irqs; i += 4)
405                 writel_relaxed(0xa0a0a0a0, base + GIC_DIST_PRI + i * 4 / 4);
406
407         /*
408          * Disable all interrupts.  Leave the PPI and SGIs alone
409          * as these enables are banked registers.
410          */
411         for (i = 32; i < gic_irqs; i += 32)
412                 writel_relaxed(0xffffffff, base + GIC_DIST_ENABLE_CLEAR + i * 4 / 32);
413
414         writel_relaxed(1, base + GIC_DIST_CTRL);
415 }
416
417 static void __cpuinit gic_cpu_init(struct gic_chip_data *gic)
418 {
419         void __iomem *dist_base = gic_data_dist_base(gic);
420         void __iomem *base = gic_data_cpu_base(gic);
421         unsigned int cpu_mask, cpu = smp_processor_id();
422         int i;
423
424         /*
425          * Get what the GIC says our CPU mask is.
426          */
427         BUG_ON(cpu >= NR_GIC_CPU_IF);
428         cpu_mask = gic_get_cpumask(gic);
429         gic_cpu_map[cpu] = cpu_mask;
430
431         /*
432          * Clear our mask from the other map entries in case they're
433          * still undefined.
434          */
435         for (i = 0; i < NR_GIC_CPU_IF; i++)
436                 if (i != cpu)
437                         gic_cpu_map[i] &= ~cpu_mask;
438
439         /*
440          * Deal with the banked PPI and SGI interrupts - disable all
441          * PPI interrupts, ensure all SGI interrupts are enabled.
442          */
443         writel_relaxed(0xffff0000, dist_base + GIC_DIST_ENABLE_CLEAR);
444         writel_relaxed(0x0000ffff, dist_base + GIC_DIST_ENABLE_SET);
445
446         /*
447          * Set priority on PPI and SGI interrupts
448          */
449         for (i = 0; i < 32; i += 4)
450                 writel_relaxed(0xa0a0a0a0, dist_base + GIC_DIST_PRI + i * 4 / 4);
451
452         writel_relaxed(0xf0, base + GIC_CPU_PRIMASK);
453         writel_relaxed(1, base + GIC_CPU_CTRL);
454 }
455
456 void gic_cpu_if_down(void)
457 {
458         void __iomem *cpu_base = gic_data_cpu_base(&gic_data[0]);
459         writel_relaxed(0, cpu_base + GIC_CPU_CTRL);
460 }
461
462 #ifdef CONFIG_CPU_PM
463 /*
464  * Saves the GIC distributor registers during suspend or idle.  Must be called
465  * with interrupts disabled but before powering down the GIC.  After calling
466  * this function, no interrupts will be delivered by the GIC, and another
467  * platform-specific wakeup source must be enabled.
468  */
469 static void gic_dist_save(unsigned int gic_nr)
470 {
471         unsigned int gic_irqs;
472         void __iomem *dist_base;
473         int i;
474
475         if (gic_nr >= MAX_GIC_NR)
476                 BUG();
477
478         gic_irqs = gic_data[gic_nr].gic_irqs;
479         dist_base = gic_data_dist_base(&gic_data[gic_nr]);
480
481         if (!dist_base)
482                 return;
483
484         for (i = 0; i < DIV_ROUND_UP(gic_irqs, 16); i++)
485                 gic_data[gic_nr].saved_spi_conf[i] =
486                         readl_relaxed(dist_base + GIC_DIST_CONFIG + i * 4);
487
488         for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
489                 gic_data[gic_nr].saved_spi_target[i] =
490                         readl_relaxed(dist_base + GIC_DIST_TARGET + i * 4);
491
492         for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++)
493                 gic_data[gic_nr].saved_spi_enable[i] =
494                         readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
495 }
496
497 /*
498  * Restores the GIC distributor registers during resume or when coming out of
499  * idle.  Must be called before enabling interrupts.  If a level interrupt
500  * that occured while the GIC was suspended is still present, it will be
501  * handled normally, but any edge interrupts that occured will not be seen by
502  * the GIC and need to be handled by the platform-specific wakeup source.
503  */
504 static void gic_dist_restore(unsigned int gic_nr)
505 {
506         unsigned int gic_irqs;
507         unsigned int i;
508         void __iomem *dist_base;
509
510         if (gic_nr >= MAX_GIC_NR)
511                 BUG();
512
513         gic_irqs = gic_data[gic_nr].gic_irqs;
514         dist_base = gic_data_dist_base(&gic_data[gic_nr]);
515
516         if (!dist_base)
517                 return;
518
519         writel_relaxed(0, dist_base + GIC_DIST_CTRL);
520
521         for (i = 0; i < DIV_ROUND_UP(gic_irqs, 16); i++)
522                 writel_relaxed(gic_data[gic_nr].saved_spi_conf[i],
523                         dist_base + GIC_DIST_CONFIG + i * 4);
524
525         for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
526                 writel_relaxed(0xa0a0a0a0,
527                         dist_base + GIC_DIST_PRI + i * 4);
528
529         for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
530                 writel_relaxed(gic_data[gic_nr].saved_spi_target[i],
531                         dist_base + GIC_DIST_TARGET + i * 4);
532
533         for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++)
534                 writel_relaxed(gic_data[gic_nr].saved_spi_enable[i],
535                         dist_base + GIC_DIST_ENABLE_SET + i * 4);
536
537         writel_relaxed(1, dist_base + GIC_DIST_CTRL);
538 }
539
540 static void gic_cpu_save(unsigned int gic_nr)
541 {
542         int i;
543         u32 *ptr;
544         void __iomem *dist_base;
545         void __iomem *cpu_base;
546
547         if (gic_nr >= MAX_GIC_NR)
548                 BUG();
549
550         dist_base = gic_data_dist_base(&gic_data[gic_nr]);
551         cpu_base = gic_data_cpu_base(&gic_data[gic_nr]);
552
553         if (!dist_base || !cpu_base)
554                 return;
555
556         ptr = __this_cpu_ptr(gic_data[gic_nr].saved_ppi_enable);
557         for (i = 0; i < DIV_ROUND_UP(32, 32); i++)
558                 ptr[i] = readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
559
560         ptr = __this_cpu_ptr(gic_data[gic_nr].saved_ppi_conf);
561         for (i = 0; i < DIV_ROUND_UP(32, 16); i++)
562                 ptr[i] = readl_relaxed(dist_base + GIC_DIST_CONFIG + i * 4);
563
564 }
565
566 static void gic_cpu_restore(unsigned int gic_nr)
567 {
568         int i;
569         u32 *ptr;
570         void __iomem *dist_base;
571         void __iomem *cpu_base;
572
573         if (gic_nr >= MAX_GIC_NR)
574                 BUG();
575
576         dist_base = gic_data_dist_base(&gic_data[gic_nr]);
577         cpu_base = gic_data_cpu_base(&gic_data[gic_nr]);
578
579         if (!dist_base || !cpu_base)
580                 return;
581
582         ptr = __this_cpu_ptr(gic_data[gic_nr].saved_ppi_enable);
583         for (i = 0; i < DIV_ROUND_UP(32, 32); i++)
584                 writel_relaxed(ptr[i], dist_base + GIC_DIST_ENABLE_SET + i * 4);
585
586         ptr = __this_cpu_ptr(gic_data[gic_nr].saved_ppi_conf);
587         for (i = 0; i < DIV_ROUND_UP(32, 16); i++)
588                 writel_relaxed(ptr[i], dist_base + GIC_DIST_CONFIG + i * 4);
589
590         for (i = 0; i < DIV_ROUND_UP(32, 4); i++)
591                 writel_relaxed(0xa0a0a0a0, dist_base + GIC_DIST_PRI + i * 4);
592
593         writel_relaxed(0xf0, cpu_base + GIC_CPU_PRIMASK);
594         writel_relaxed(1, cpu_base + GIC_CPU_CTRL);
595 }
596
597 static int gic_notifier(struct notifier_block *self, unsigned long cmd, void *v)
598 {
599         int i;
600
601         for (i = 0; i < MAX_GIC_NR; i++) {
602 #ifdef CONFIG_GIC_NON_BANKED
603                 /* Skip over unused GICs */
604                 if (!gic_data[i].get_base)
605                         continue;
606 #endif
607                 switch (cmd) {
608                 case CPU_PM_ENTER:
609                         gic_cpu_save(i);
610                         break;
611                 case CPU_PM_ENTER_FAILED:
612                 case CPU_PM_EXIT:
613                         gic_cpu_restore(i);
614                         break;
615                 case CPU_CLUSTER_PM_ENTER:
616                         gic_dist_save(i);
617                         break;
618                 case CPU_CLUSTER_PM_ENTER_FAILED:
619                 case CPU_CLUSTER_PM_EXIT:
620                         gic_dist_restore(i);
621                         break;
622                 }
623         }
624
625         return NOTIFY_OK;
626 }
627
628 static struct notifier_block gic_notifier_block = {
629         .notifier_call = gic_notifier,
630 };
631
632 static void __init gic_pm_init(struct gic_chip_data *gic)
633 {
634         gic->saved_ppi_enable = __alloc_percpu(DIV_ROUND_UP(32, 32) * 4,
635                 sizeof(u32));
636         BUG_ON(!gic->saved_ppi_enable);
637
638         gic->saved_ppi_conf = __alloc_percpu(DIV_ROUND_UP(32, 16) * 4,
639                 sizeof(u32));
640         BUG_ON(!gic->saved_ppi_conf);
641
642         if (gic == &gic_data[0])
643                 cpu_pm_register_notifier(&gic_notifier_block);
644 }
645 #else
646 static void __init gic_pm_init(struct gic_chip_data *gic)
647 {
648 }
649 #endif
650
651 #ifdef CONFIG_SMP
652 void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)
653 {
654         int cpu;
655         unsigned long flags, map = 0;
656
657         raw_spin_lock_irqsave(&irq_controller_lock, flags);
658
659         /* Convert our logical CPU mask into a physical one. */
660         for_each_cpu(cpu, mask) {
661                 trace_arm_ipi_send(irq, cpu);
662                 map |= gic_cpu_map[cpu];
663         }
664
665         /*
666          * Ensure that stores to Normal memory are visible to the
667          * other CPUs before issuing the IPI.
668          */
669         dsb();
670
671         /* this always happens on GIC0 */
672         writel_relaxed(map << 16 | irq, gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
673
674         raw_spin_unlock_irqrestore(&irq_controller_lock, flags);
675 }
676 #endif
677
678 #ifdef CONFIG_BL_SWITCHER
679 /*
680  * gic_send_sgi - send a SGI directly to given CPU interface number
681  *
682  * cpu_id: the ID for the destination CPU interface
683  * irq: the IPI number to send a SGI for
684  */
685 void gic_send_sgi(unsigned int cpu_id, unsigned int irq)
686 {
687         BUG_ON(cpu_id >= NR_GIC_CPU_IF);
688         cpu_id = 1 << cpu_id;
689         /* this always happens on GIC0 */
690         writel_relaxed((cpu_id << 16) | irq, gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
691 }
692
693 /*
694  * gic_get_cpu_id - get the CPU interface ID for the specified CPU
695  *
696  * @cpu: the logical CPU number to get the GIC ID for.
697  *
698  * Return the CPU interface ID for the given logical CPU number,
699  * or -1 if the CPU number is too large or the interface ID is
700  * unknown (more than one bit set).
701  */
702 int gic_get_cpu_id(unsigned int cpu)
703 {
704         unsigned int cpu_bit;
705
706         if (cpu >= NR_GIC_CPU_IF)
707                 return -1;
708         cpu_bit = gic_cpu_map[cpu];
709         if (cpu_bit & (cpu_bit - 1))
710                return -1;
711         return __ffs(cpu_bit);
712 }
713
714 /*
715  * gic_migrate_target - migrate IRQs to another PU interface
716  *
717  * @new_cpu_id: the CPU target ID to migrate IRQs to
718  *
719  * Migrate all peripheral interrupts with a target matching the current CPU
720  * to the interface corresponding to @new_cpu_id.  The CPU interface mapping
721  * is also updated.  Targets to other CPU interfaces are unchanged.
722  * This must be called with IRQs locally disabled.
723  */
724 void gic_migrate_target(unsigned int new_cpu_id)
725 {
726         unsigned int old_cpu_id, gic_irqs, gic_nr = 0;
727         void __iomem *dist_base;
728         int i, ror_val, cpu = smp_processor_id();
729         u32 val, old_mask, active_mask;
730
731         if (gic_nr >= MAX_GIC_NR)
732                 BUG();
733
734         dist_base = gic_data_dist_base(&gic_data[gic_nr]);
735         if (!dist_base)
736                 return;
737         gic_irqs = gic_data[gic_nr].gic_irqs;
738
739         old_cpu_id = __ffs(gic_cpu_map[cpu]);
740         old_mask = 0x01010101 << old_cpu_id;
741         ror_val = (old_cpu_id - new_cpu_id) & 31;
742
743         raw_spin_lock(&irq_controller_lock);
744
745         gic_cpu_map[cpu] = 1 << new_cpu_id;
746
747         for (i = 8; i < DIV_ROUND_UP(gic_irqs, 4); i++) {
748                 val = readl_relaxed(dist_base + GIC_DIST_TARGET + i * 4);
749                 active_mask = val & old_mask;
750                 if (active_mask) {
751                         val &= ~active_mask;
752                         val |= ror32(active_mask, ror_val);
753                         writel_relaxed(val, dist_base + GIC_DIST_TARGET + i * 4);
754                 }
755         }
756
757         raw_spin_unlock(&irq_controller_lock);
758
759         /*
760          * Now let's migrate and clear any potential SGIs that might be
761          * pending for us (old_cpu_id).  Since GIC_DIST_SGI_PENDING_SET
762          * is a banked register, we can only forward the SGI using
763          * GIC_DIST_SOFTINT.  The original SGI source is lost but Linux
764          * doesn't use that information anyway.
765          *
766          * For the same reason we do not adjust SGI source information
767          * for previously sent SGIs by us to other CPUs either.
768          */
769         for (i = 0; i < 16; i += 4) {
770                 int j;
771                 val = readl_relaxed(dist_base + GIC_DIST_SGI_PENDING_SET + i);
772                 if (!val)
773                         continue;
774                 writel_relaxed(val, dist_base + GIC_DIST_SGI_PENDING_CLEAR + i);
775                 for (j = i; j < i + 4; j++) {
776                         if (val & 0xff)
777                                 writel_relaxed((1 << (new_cpu_id + 16)) | j,
778                                                 dist_base + GIC_DIST_SOFTINT);
779                         val >>= 8;
780                 }
781         }
782 }
783
784 /*
785  * gic_get_sgir_physaddr - get the physical address for the SGI register
786  *
787  * REturn the physical address of the SGI register to be used
788  * by some early assembly code when the kernel is not yet available.
789  */
790 static unsigned long gic_dist_physaddr;
791
792 unsigned long gic_get_sgir_physaddr(void)
793 {
794         if (!gic_dist_physaddr)
795                 return 0;
796         return gic_dist_physaddr + GIC_DIST_SOFTINT;
797 }
798
799 void __init gic_init_physaddr(struct device_node *node)
800 {
801         struct resource res;
802         if (of_address_to_resource(node, 0, &res) == 0) {
803                 gic_dist_physaddr = res.start;
804                 pr_info("GIC physical location is %#lx\n", gic_dist_physaddr);
805         }
806 }
807
808 #else
809 #define gic_init_physaddr(node)  do { } while(0)
810 #endif
811
812 static int gic_irq_domain_map(struct irq_domain *d, unsigned int irq,
813                                 irq_hw_number_t hw)
814 {
815         if (hw < 32) {
816                 irq_set_percpu_devid(irq);
817                 irq_set_chip_and_handler(irq, &gic_chip,
818                                          handle_percpu_devid_irq);
819                 set_irq_flags(irq, IRQF_VALID | IRQF_NOAUTOEN);
820         } else {
821                 irq_set_chip_and_handler(irq, &gic_chip,
822                                          handle_fasteoi_irq);
823                 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
824         }
825         irq_set_chip_data(irq, d->host_data);
826         return 0;
827 }
828
829 static int gic_irq_domain_xlate(struct irq_domain *d,
830                                 struct device_node *controller,
831                                 const u32 *intspec, unsigned int intsize,
832                                 unsigned long *out_hwirq, unsigned int *out_type)
833 {
834         if (d->of_node != controller)
835                 return -EINVAL;
836         if (intsize < 3)
837                 return -EINVAL;
838
839         /* Get the interrupt number and add 16 to skip over SGIs */
840         *out_hwirq = intspec[1] + 16;
841
842         /* For SPIs, we need to add 16 more to get the GIC irq ID number */
843         if (!intspec[0])
844                 *out_hwirq += 16;
845
846         *out_type = intspec[2] & IRQ_TYPE_SENSE_MASK;
847         return 0;
848 }
849
850 #ifdef CONFIG_SMP
851 static int __cpuinit gic_secondary_init(struct notifier_block *nfb,
852                                         unsigned long action, void *hcpu)
853 {
854         if (action == CPU_STARTING || action == CPU_STARTING_FROZEN)
855                 gic_cpu_init(&gic_data[0]);
856         return NOTIFY_OK;
857 }
858
859 /*
860  * Notifier for enabling the GIC CPU interface. Set an arbitrarily high
861  * priority because the GIC needs to be up before the ARM generic timers.
862  */
863 static struct notifier_block __cpuinitdata gic_cpu_notifier = {
864         .notifier_call = gic_secondary_init,
865         .priority = 100,
866 };
867 #endif
868
869 const struct irq_domain_ops gic_irq_domain_ops = {
870         .map = gic_irq_domain_map,
871         .xlate = gic_irq_domain_xlate,
872 };
873
874 void __init gic_init_bases(unsigned int gic_nr, int irq_start,
875                            void __iomem *dist_base, void __iomem *cpu_base,
876                            u32 percpu_offset, struct device_node *node)
877 {
878         irq_hw_number_t hwirq_base;
879         struct gic_chip_data *gic;
880         int gic_irqs, irq_base, i;
881
882         BUG_ON(gic_nr >= MAX_GIC_NR);
883
884         gic = &gic_data[gic_nr];
885 #ifdef CONFIG_GIC_NON_BANKED
886         if (percpu_offset) { /* Frankein-GIC without banked registers... */
887                 unsigned int cpu;
888
889                 gic->dist_base.percpu_base = alloc_percpu(void __iomem *);
890                 gic->cpu_base.percpu_base = alloc_percpu(void __iomem *);
891                 if (WARN_ON(!gic->dist_base.percpu_base ||
892                             !gic->cpu_base.percpu_base)) {
893                         free_percpu(gic->dist_base.percpu_base);
894                         free_percpu(gic->cpu_base.percpu_base);
895                         return;
896                 }
897
898                 for_each_possible_cpu(cpu) {
899                         unsigned long offset = percpu_offset * cpu_logical_map(cpu);
900                         *per_cpu_ptr(gic->dist_base.percpu_base, cpu) = dist_base + offset;
901                         *per_cpu_ptr(gic->cpu_base.percpu_base, cpu) = cpu_base + offset;
902                 }
903
904                 gic_set_base_accessor(gic, gic_get_percpu_base);
905         } else
906 #endif
907         {                       /* Normal, sane GIC... */
908                 WARN(percpu_offset,
909                      "GIC_NON_BANKED not enabled, ignoring %08x offset!",
910                      percpu_offset);
911                 gic->dist_base.common_base = dist_base;
912                 gic->cpu_base.common_base = cpu_base;
913                 gic_set_base_accessor(gic, gic_get_common_base);
914         }
915
916         /*
917          * Initialize the CPU interface map to all CPUs.
918          * It will be refined as each CPU probes its ID.
919          */
920         for (i = 0; i < NR_GIC_CPU_IF; i++)
921                 gic_cpu_map[i] = 0xff;
922
923         /*
924          * For primary GICs, skip over SGIs.
925          * For secondary GICs, skip over PPIs, too.
926          */
927         if (gic_nr == 0 && (irq_start & 31) > 0) {
928                 hwirq_base = 16;
929                 if (irq_start != -1)
930                         irq_start = (irq_start & ~31) + 16;
931         } else {
932                 hwirq_base = 32;
933         }
934
935         /*
936          * Find out how many interrupts are supported.
937          * The GIC only supports up to 1020 interrupt sources.
938          */
939         gic_irqs = readl_relaxed(gic_data_dist_base(gic) + GIC_DIST_CTR) & 0x1f;
940         gic_irqs = (gic_irqs + 1) * 32;
941         if (gic_irqs > 1020)
942                 gic_irqs = 1020;
943         gic->gic_irqs = gic_irqs;
944
945         gic_irqs -= hwirq_base; /* calculate # of irqs to allocate */
946         irq_base = irq_alloc_descs(irq_start, 16, gic_irqs, numa_node_id());
947         if (IS_ERR_VALUE(irq_base)) {
948                 WARN(1, "Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated\n",
949                      irq_start);
950                 irq_base = irq_start;
951         }
952         gic->domain = irq_domain_add_legacy(node, gic_irqs, irq_base,
953                                     hwirq_base, &gic_irq_domain_ops, gic);
954         if (WARN_ON(!gic->domain))
955                 return;
956
957 #ifdef CONFIG_SMP
958         set_smp_cross_call(gic_raise_softirq);
959         register_cpu_notifier(&gic_cpu_notifier);
960 #endif
961
962         set_handle_irq(gic_handle_irq);
963
964         gic_chip.flags |= gic_arch_extn.flags;
965         gic_dist_init(gic);
966         gic_cpu_init(gic);
967         gic_pm_init(gic);
968 }
969
970 #ifdef CONFIG_OF
971 static int gic_cnt __initdata;
972
973 int __init gic_of_init(struct device_node *node, struct device_node *parent)
974 {
975         void __iomem *cpu_base;
976         void __iomem *dist_base;
977         u32 percpu_offset;
978         int irq;
979
980         if (WARN_ON(!node))
981                 return -ENODEV;
982
983         dist_base = of_iomap(node, 0);
984         WARN(!dist_base, "unable to map gic dist registers\n");
985
986         cpu_base = of_iomap(node, 1);
987         WARN(!cpu_base, "unable to map gic cpu registers\n");
988
989         if (of_property_read_u32(node, "cpu-offset", &percpu_offset))
990                 percpu_offset = 0;
991
992         gic_init_bases(gic_cnt, -1, dist_base, cpu_base, percpu_offset, node);
993         if (!gic_cnt)
994                 gic_init_physaddr(node);
995
996         if (parent) {
997                 irq = irq_of_parse_and_map(node, 0);
998                 gic_cascade_irq(gic_cnt, irq);
999         }
1000         gic_cnt++;
1001         return 0;
1002 }
1003 IRQCHIP_DECLARE(cortex_a15_gic, "arm,cortex-a15-gic", gic_of_init);
1004 IRQCHIP_DECLARE(cortex_a9_gic, "arm,cortex-a9-gic", gic_of_init);
1005 IRQCHIP_DECLARE(msm_8660_qgic, "qcom,msm-8660-qgic", gic_of_init);
1006 IRQCHIP_DECLARE(msm_qgic2, "qcom,msm-qgic2", gic_of_init);
1007
1008 #endif