blob: b211719469608382751d051ea53009f4b6d01b46 [file] [log] [blame]
Russell Kingf27ecac2005-08-18 21:31:00 +01001/*
Russell Kingf27ecac2005-08-18 21:31:00 +01002 * 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
Catalin Marinasb3a1bde2007-02-14 19:14:56 +010015 * 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.
Russell Kingf27ecac2005-08-18 21:31:00 +010018 *
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>
Rob Herringf37a53c2011-10-21 17:14:27 -050025#include <linux/err.h>
Arnd Bergmann7e1efcf2011-11-01 00:28:37 +010026#include <linux/module.h>
Russell Kingf27ecac2005-08-18 21:31:00 +010027#include <linux/list.h>
28#include <linux/smp.h>
Catalin Marinasc0114702013-01-14 18:05:37 +000029#include <linux/cpu.h>
Colin Cross254056f2011-02-10 12:54:10 -080030#include <linux/cpu_pm.h>
Catalin Marinasdcb86e82005-08-31 21:45:14 +010031#include <linux/cpumask.h>
Russell Kingfced80c2008-09-06 12:10:45 +010032#include <linux/io.h>
Rob Herringb3f7ed02011-09-28 21:27:52 -050033#include <linux/of.h>
34#include <linux/of_address.h>
35#include <linux/of_irq.h>
Rob Herring4294f8b2011-09-28 21:25:31 -050036#include <linux/irqdomain.h>
Marc Zyngier292b2932011-07-20 16:24:14 +010037#include <linux/interrupt.h>
38#include <linux/percpu.h>
39#include <linux/slab.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000040#include <linux/irqchip/chained_irq.h>
Rob Herring520f7bd2012-12-27 13:10:24 -060041#include <linux/irqchip/arm-gic.h>
Russell Kingf27ecac2005-08-18 21:31:00 +010042
43#include <asm/irq.h>
Marc Zyngier562e0022011-09-06 09:56:17 +010044#include <asm/exception.h>
Will Deaconeb504392012-01-20 12:01:12 +010045#include <asm/smp_plat.h>
Russell Kingf27ecac2005-08-18 21:31:00 +010046
Marc Zyngiera6c2e912014-06-30 16:01:30 +010047#include "irq-gic-common.h"
Rob Herring81243e42012-11-20 21:21:40 -060048#include "irqchip.h"
Russell Kingf27ecac2005-08-18 21:31:00 +010049
Marc Zyngierdb0d4db2011-11-12 16:09:49 +000050union gic_base {
51 void __iomem *common_base;
Stephen Boyd7c284952014-03-04 17:02:01 -080052 void __percpu * __iomem *percpu_base;
Marc Zyngierdb0d4db2011-11-12 16:09:49 +000053};
54
55struct gic_chip_data {
Marc Zyngierdb0d4db2011-11-12 16:09:49 +000056 union gic_base dist_base;
57 union gic_base cpu_base;
58#ifdef CONFIG_CPU_PM
59 u32 saved_spi_enable[DIV_ROUND_UP(1020, 32)];
60 u32 saved_spi_conf[DIV_ROUND_UP(1020, 16)];
61 u32 saved_spi_target[DIV_ROUND_UP(1020, 4)];
62 u32 __percpu *saved_ppi_enable;
63 u32 __percpu *saved_ppi_conf;
64#endif
Grant Likely75294952012-02-14 14:06:57 -070065 struct irq_domain *domain;
Marc Zyngierdb0d4db2011-11-12 16:09:49 +000066 unsigned int gic_irqs;
67#ifdef CONFIG_GIC_NON_BANKED
68 void __iomem *(*get_base)(union gic_base *);
69#endif
70};
71
Thomas Gleixnerbd31b852009-07-03 08:44:46 -050072static DEFINE_RAW_SPINLOCK(irq_controller_lock);
Russell Kingf27ecac2005-08-18 21:31:00 +010073
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +010074/*
Nicolas Pitre384a2902012-04-11 18:55:48 -040075 * The GIC mapping of CPU interfaces does not necessarily match
76 * the logical CPU numbering. Let's use a mapping as returned
77 * by the GIC itself.
78 */
79#define NR_GIC_CPU_IF 8
80static u8 gic_cpu_map[NR_GIC_CPU_IF] __read_mostly;
81
82/*
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +010083 * Supported arch specific GIC irq extension.
84 * Default make them NULL.
85 */
86struct irq_chip gic_arch_extn = {
Will Deacon1a017532011-02-09 12:01:12 +000087 .irq_eoi = NULL,
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +010088 .irq_mask = NULL,
89 .irq_unmask = NULL,
90 .irq_retrigger = NULL,
91 .irq_set_type = NULL,
92 .irq_set_wake = NULL,
93};
94
Catalin Marinasb3a1bde2007-02-14 19:14:56 +010095#ifndef MAX_GIC_NR
96#define MAX_GIC_NR 1
97#endif
98
Russell Kingbef8f9e2010-12-04 16:50:58 +000099static struct gic_chip_data gic_data[MAX_GIC_NR] __read_mostly;
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100100
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000101#ifdef CONFIG_GIC_NON_BANKED
102static void __iomem *gic_get_percpu_base(union gic_base *base)
103{
104 return *__this_cpu_ptr(base->percpu_base);
105}
106
107static void __iomem *gic_get_common_base(union gic_base *base)
108{
109 return base->common_base;
110}
111
112static inline void __iomem *gic_data_dist_base(struct gic_chip_data *data)
113{
114 return data->get_base(&data->dist_base);
115}
116
117static inline void __iomem *gic_data_cpu_base(struct gic_chip_data *data)
118{
119 return data->get_base(&data->cpu_base);
120}
121
122static inline void gic_set_base_accessor(struct gic_chip_data *data,
123 void __iomem *(*f)(union gic_base *))
124{
125 data->get_base = f;
126}
127#else
128#define gic_data_dist_base(d) ((d)->dist_base.common_base)
129#define gic_data_cpu_base(d) ((d)->cpu_base.common_base)
Sachin Kamat46f101d2013-03-13 15:05:15 +0530130#define gic_set_base_accessor(d, f)
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000131#endif
132
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100133static inline void __iomem *gic_dist_base(struct irq_data *d)
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100134{
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100135 struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000136 return gic_data_dist_base(gic_data);
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100137}
138
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100139static inline void __iomem *gic_cpu_base(struct irq_data *d)
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100140{
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100141 struct gic_chip_data *gic_data = irq_data_get_irq_chip_data(d);
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000142 return gic_data_cpu_base(gic_data);
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100143}
144
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100145static inline unsigned int gic_irq(struct irq_data *d)
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100146{
Rob Herring4294f8b2011-09-28 21:25:31 -0500147 return d->hwirq;
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100148}
149
Russell Kingf27ecac2005-08-18 21:31:00 +0100150/*
151 * Routines to acknowledge, disable and enable interrupts
Russell Kingf27ecac2005-08-18 21:31:00 +0100152 */
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100153static void gic_mask_irq(struct irq_data *d)
Russell Kingf27ecac2005-08-18 21:31:00 +0100154{
Rob Herring4294f8b2011-09-28 21:25:31 -0500155 u32 mask = 1 << (gic_irq(d) % 32);
Thomas Gleixnerc4bfa282006-07-01 22:32:14 +0100156
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500157 raw_spin_lock(&irq_controller_lock);
Santosh Shilimkar6ac77e42011-03-28 19:27:46 +0530158 writel_relaxed(mask, gic_dist_base(d) + GIC_DIST_ENABLE_CLEAR + (gic_irq(d) / 32) * 4);
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +0100159 if (gic_arch_extn.irq_mask)
160 gic_arch_extn.irq_mask(d);
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500161 raw_spin_unlock(&irq_controller_lock);
Russell Kingf27ecac2005-08-18 21:31:00 +0100162}
163
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100164static void gic_unmask_irq(struct irq_data *d)
Russell Kingf27ecac2005-08-18 21:31:00 +0100165{
Rob Herring4294f8b2011-09-28 21:25:31 -0500166 u32 mask = 1 << (gic_irq(d) % 32);
Thomas Gleixnerc4bfa282006-07-01 22:32:14 +0100167
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500168 raw_spin_lock(&irq_controller_lock);
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +0100169 if (gic_arch_extn.irq_unmask)
170 gic_arch_extn.irq_unmask(d);
Santosh Shilimkar6ac77e42011-03-28 19:27:46 +0530171 writel_relaxed(mask, gic_dist_base(d) + GIC_DIST_ENABLE_SET + (gic_irq(d) / 32) * 4);
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500172 raw_spin_unlock(&irq_controller_lock);
Russell Kingf27ecac2005-08-18 21:31:00 +0100173}
174
Will Deacon1a017532011-02-09 12:01:12 +0000175static void gic_eoi_irq(struct irq_data *d)
176{
177 if (gic_arch_extn.irq_eoi) {
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500178 raw_spin_lock(&irq_controller_lock);
Will Deacon1a017532011-02-09 12:01:12 +0000179 gic_arch_extn.irq_eoi(d);
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500180 raw_spin_unlock(&irq_controller_lock);
Will Deacon1a017532011-02-09 12:01:12 +0000181 }
182
Santosh Shilimkar6ac77e42011-03-28 19:27:46 +0530183 writel_relaxed(gic_irq(d), gic_cpu_base(d) + GIC_CPU_EOI);
Will Deacon1a017532011-02-09 12:01:12 +0000184}
185
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100186static int gic_set_type(struct irq_data *d, unsigned int type)
Rabin Vincent5c0c1f02010-05-28 04:37:38 +0100187{
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100188 void __iomem *base = gic_dist_base(d);
189 unsigned int gicirq = gic_irq(d);
Rabin Vincent5c0c1f02010-05-28 04:37:38 +0100190
191 /* Interrupt configuration for SGIs can't be changed */
192 if (gicirq < 16)
193 return -EINVAL;
194
195 if (type != IRQ_TYPE_LEVEL_HIGH && type != IRQ_TYPE_EDGE_RISING)
196 return -EINVAL;
197
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500198 raw_spin_lock(&irq_controller_lock);
Rabin Vincent5c0c1f02010-05-28 04:37:38 +0100199
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +0100200 if (gic_arch_extn.irq_set_type)
201 gic_arch_extn.irq_set_type(d, type);
202
Marc Zyngiera6c2e912014-06-30 16:01:30 +0100203 gic_configure_irq(gicirq, type, base, NULL);
Rabin Vincent5c0c1f02010-05-28 04:37:38 +0100204
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500205 raw_spin_unlock(&irq_controller_lock);
Rabin Vincent5c0c1f02010-05-28 04:37:38 +0100206
207 return 0;
208}
209
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +0100210static int gic_retrigger(struct irq_data *d)
211{
212 if (gic_arch_extn.irq_retrigger)
213 return gic_arch_extn.irq_retrigger(d);
214
Abhijeet Dharmapurikarbad9a432013-03-19 16:05:49 -0700215 /* the genirq layer expects 0 if we can't retrigger in hardware */
216 return 0;
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +0100217}
218
Catalin Marinasa06f5462005-09-30 16:07:05 +0100219#ifdef CONFIG_SMP
Russell Kingc1917892011-01-23 12:12:01 +0000220static int gic_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
221 bool force)
Russell Kingf27ecac2005-08-18 21:31:00 +0100222{
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100223 void __iomem *reg = gic_dist_base(d) + GIC_DIST_TARGET + (gic_irq(d) & ~3);
Rob Herring4294f8b2011-09-28 21:25:31 -0500224 unsigned int shift = (gic_irq(d) % 4) * 8;
Russell King5dfc54e2011-07-21 15:00:57 +0100225 unsigned int cpu = cpumask_any_and(mask_val, cpu_online_mask);
Russell Kingc1917892011-01-23 12:12:01 +0000226 u32 val, mask, bit;
227
Nicolas Pitre384a2902012-04-11 18:55:48 -0400228 if (cpu >= NR_GIC_CPU_IF || cpu >= nr_cpu_ids)
Russell Kingc1917892011-01-23 12:12:01 +0000229 return -EINVAL;
230
Nicolas Pitre176c78d2012-04-12 01:40:31 -0400231 raw_spin_lock(&irq_controller_lock);
Russell Kingc1917892011-01-23 12:12:01 +0000232 mask = 0xff << shift;
Nicolas Pitre384a2902012-04-11 18:55:48 -0400233 bit = gic_cpu_map[cpu] << shift;
Santosh Shilimkar6ac77e42011-03-28 19:27:46 +0530234 val = readl_relaxed(reg) & ~mask;
235 writel_relaxed(val | bit, reg);
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500236 raw_spin_unlock(&irq_controller_lock);
Yinghai Lud5dedd42009-04-27 17:59:21 -0700237
Russell King5dfc54e2011-07-21 15:00:57 +0100238 return IRQ_SET_MASK_OK;
Russell Kingf27ecac2005-08-18 21:31:00 +0100239}
Catalin Marinasa06f5462005-09-30 16:07:05 +0100240#endif
Russell Kingf27ecac2005-08-18 21:31:00 +0100241
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +0100242#ifdef CONFIG_PM
243static int gic_set_wake(struct irq_data *d, unsigned int on)
244{
245 int ret = -ENXIO;
246
247 if (gic_arch_extn.irq_set_wake)
248 ret = gic_arch_extn.irq_set_wake(d, on);
249
250 return ret;
251}
252
253#else
254#define gic_set_wake NULL
255#endif
256
Stephen Boydc0627e32014-03-04 16:40:30 -0800257static void __exception_irq_entry gic_handle_irq(struct pt_regs *regs)
Marc Zyngier562e0022011-09-06 09:56:17 +0100258{
259 u32 irqstat, irqnr;
260 struct gic_chip_data *gic = &gic_data[0];
261 void __iomem *cpu_base = gic_data_cpu_base(gic);
262
263 do {
264 irqstat = readl_relaxed(cpu_base + GIC_CPU_INTACK);
Haojian Zhuang03c2fd42014-05-11 16:05:58 +0800265 irqnr = irqstat & GICC_IAR_INT_ID_MASK;
Marc Zyngier562e0022011-09-06 09:56:17 +0100266
267 if (likely(irqnr > 15 && irqnr < 1021)) {
Grant Likely75294952012-02-14 14:06:57 -0700268 irqnr = irq_find_mapping(gic->domain, irqnr);
Marc Zyngier562e0022011-09-06 09:56:17 +0100269 handle_IRQ(irqnr, regs);
270 continue;
271 }
272 if (irqnr < 16) {
273 writel_relaxed(irqstat, cpu_base + GIC_CPU_EOI);
274#ifdef CONFIG_SMP
275 handle_IPI(irqnr, regs);
276#endif
277 continue;
278 }
279 break;
280 } while (1);
281}
282
Russell King0f347bb2007-05-17 10:11:34 +0100283static void gic_handle_cascade_irq(unsigned int irq, struct irq_desc *desc)
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100284{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100285 struct gic_chip_data *chip_data = irq_get_handler_data(irq);
286 struct irq_chip *chip = irq_get_chip(irq);
Russell King0f347bb2007-05-17 10:11:34 +0100287 unsigned int cascade_irq, gic_irq;
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100288 unsigned long status;
289
Will Deacon1a017532011-02-09 12:01:12 +0000290 chained_irq_enter(chip, desc);
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100291
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500292 raw_spin_lock(&irq_controller_lock);
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000293 status = readl_relaxed(gic_data_cpu_base(chip_data) + GIC_CPU_INTACK);
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500294 raw_spin_unlock(&irq_controller_lock);
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100295
Russell King0f347bb2007-05-17 10:11:34 +0100296 gic_irq = (status & 0x3ff);
297 if (gic_irq == 1023)
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100298 goto out;
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100299
Grant Likely75294952012-02-14 14:06:57 -0700300 cascade_irq = irq_find_mapping(chip_data->domain, gic_irq);
301 if (unlikely(gic_irq < 32 || gic_irq > 1020))
Catalin Marinasaec00952013-01-14 17:53:39 +0000302 handle_bad_irq(cascade_irq, desc);
Russell King0f347bb2007-05-17 10:11:34 +0100303 else
304 generic_handle_irq(cascade_irq);
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100305
306 out:
Will Deacon1a017532011-02-09 12:01:12 +0000307 chained_irq_exit(chip, desc);
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100308}
309
David Brownell38c677c2006-08-01 22:26:25 +0100310static struct irq_chip gic_chip = {
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100311 .name = "GIC",
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100312 .irq_mask = gic_mask_irq,
313 .irq_unmask = gic_unmask_irq,
Will Deacon1a017532011-02-09 12:01:12 +0000314 .irq_eoi = gic_eoi_irq,
Lennert Buytenhek7d1f4282010-11-29 10:18:20 +0100315 .irq_set_type = gic_set_type,
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +0100316 .irq_retrigger = gic_retrigger,
Russell Kingf27ecac2005-08-18 21:31:00 +0100317#ifdef CONFIG_SMP
Russell Kingc1917892011-01-23 12:12:01 +0000318 .irq_set_affinity = gic_set_affinity,
Russell Kingf27ecac2005-08-18 21:31:00 +0100319#endif
Santosh Shilimkard7ed36a2011-03-02 08:03:22 +0100320 .irq_set_wake = gic_set_wake,
Russell Kingf27ecac2005-08-18 21:31:00 +0100321};
322
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100323void __init gic_cascade_irq(unsigned int gic_nr, unsigned int irq)
324{
325 if (gic_nr >= MAX_GIC_NR)
326 BUG();
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100327 if (irq_set_handler_data(irq, &gic_data[gic_nr]) != 0)
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100328 BUG();
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100329 irq_set_chained_handler(irq, gic_handle_cascade_irq);
Catalin Marinasb3a1bde2007-02-14 19:14:56 +0100330}
331
Russell King2bb31352013-01-30 23:49:57 +0000332static u8 gic_get_cpumask(struct gic_chip_data *gic)
333{
334 void __iomem *base = gic_data_dist_base(gic);
335 u32 mask, i;
336
337 for (i = mask = 0; i < 32; i += 4) {
338 mask = readl_relaxed(base + GIC_DIST_TARGET + i);
339 mask |= mask >> 16;
340 mask |= mask >> 8;
341 if (mask)
342 break;
343 }
344
345 if (!mask)
346 pr_crit("GIC CPU mask not found - kernel will fail to boot.\n");
347
348 return mask;
349}
350
Rob Herring4294f8b2011-09-28 21:25:31 -0500351static void __init gic_dist_init(struct gic_chip_data *gic)
Russell Kingf27ecac2005-08-18 21:31:00 +0100352{
Grant Likely75294952012-02-14 14:06:57 -0700353 unsigned int i;
Will Deacon267840f2011-08-23 22:20:03 +0100354 u32 cpumask;
Rob Herring4294f8b2011-09-28 21:25:31 -0500355 unsigned int gic_irqs = gic->gic_irqs;
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000356 void __iomem *base = gic_data_dist_base(gic);
Russell Kingf27ecac2005-08-18 21:31:00 +0100357
Santosh Shilimkar6ac77e42011-03-28 19:27:46 +0530358 writel_relaxed(0, base + GIC_DIST_CTRL);
Russell Kingf27ecac2005-08-18 21:31:00 +0100359
360 /*
Russell Kingf27ecac2005-08-18 21:31:00 +0100361 * Set all global interrupts to this CPU only.
362 */
Russell King2bb31352013-01-30 23:49:57 +0000363 cpumask = gic_get_cpumask(gic);
364 cpumask |= cpumask << 8;
365 cpumask |= cpumask << 16;
Pawel Molle6afec92010-11-26 13:45:43 +0100366 for (i = 32; i < gic_irqs; i += 4)
Santosh Shilimkar6ac77e42011-03-28 19:27:46 +0530367 writel_relaxed(cpumask, base + GIC_DIST_TARGET + i * 4 / 4);
Russell Kingf27ecac2005-08-18 21:31:00 +0100368
Marc Zyngiera6c2e912014-06-30 16:01:30 +0100369 gic_dist_config(base, gic_irqs, NULL);
Russell Kingf27ecac2005-08-18 21:31:00 +0100370
Santosh Shilimkar6ac77e42011-03-28 19:27:46 +0530371 writel_relaxed(1, base + GIC_DIST_CTRL);
Russell Kingf27ecac2005-08-18 21:31:00 +0100372}
373
Russell Kingbef8f9e2010-12-04 16:50:58 +0000374static void __cpuinit gic_cpu_init(struct gic_chip_data *gic)
Russell Kingf27ecac2005-08-18 21:31:00 +0100375{
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000376 void __iomem *dist_base = gic_data_dist_base(gic);
377 void __iomem *base = gic_data_cpu_base(gic);
Nicolas Pitre384a2902012-04-11 18:55:48 -0400378 unsigned int cpu_mask, cpu = smp_processor_id();
Russell King9395f6e2010-11-11 23:10:30 +0000379 int i;
380
Russell King9395f6e2010-11-11 23:10:30 +0000381 /*
Nicolas Pitre384a2902012-04-11 18:55:48 -0400382 * Get what the GIC says our CPU mask is.
383 */
384 BUG_ON(cpu >= NR_GIC_CPU_IF);
Russell King2bb31352013-01-30 23:49:57 +0000385 cpu_mask = gic_get_cpumask(gic);
Nicolas Pitre384a2902012-04-11 18:55:48 -0400386 gic_cpu_map[cpu] = cpu_mask;
387
388 /*
389 * Clear our mask from the other map entries in case they're
390 * still undefined.
391 */
392 for (i = 0; i < NR_GIC_CPU_IF; i++)
393 if (i != cpu)
394 gic_cpu_map[i] &= ~cpu_mask;
395
Marc Zyngiera6c2e912014-06-30 16:01:30 +0100396 gic_cpu_config(dist_base, NULL);
Russell King9395f6e2010-11-11 23:10:30 +0000397
Santosh Shilimkar6ac77e42011-03-28 19:27:46 +0530398 writel_relaxed(0xf0, base + GIC_CPU_PRIMASK);
399 writel_relaxed(1, base + GIC_CPU_CTRL);
Russell Kingf27ecac2005-08-18 21:31:00 +0100400}
401
Nicolas Pitre0f4e18f2013-03-19 23:59:04 -0400402void gic_cpu_if_down(void)
403{
404 void __iomem *cpu_base = gic_data_cpu_base(&gic_data[0]);
405 writel_relaxed(0, cpu_base + GIC_CPU_CTRL);
406}
407
Colin Cross254056f2011-02-10 12:54:10 -0800408#ifdef CONFIG_CPU_PM
409/*
410 * Saves the GIC distributor registers during suspend or idle. Must be called
411 * with interrupts disabled but before powering down the GIC. After calling
412 * this function, no interrupts will be delivered by the GIC, and another
413 * platform-specific wakeup source must be enabled.
414 */
415static void gic_dist_save(unsigned int gic_nr)
416{
417 unsigned int gic_irqs;
418 void __iomem *dist_base;
419 int i;
420
421 if (gic_nr >= MAX_GIC_NR)
422 BUG();
423
424 gic_irqs = gic_data[gic_nr].gic_irqs;
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000425 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
Colin Cross254056f2011-02-10 12:54:10 -0800426
427 if (!dist_base)
428 return;
429
430 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 16); i++)
431 gic_data[gic_nr].saved_spi_conf[i] =
432 readl_relaxed(dist_base + GIC_DIST_CONFIG + i * 4);
433
434 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
435 gic_data[gic_nr].saved_spi_target[i] =
436 readl_relaxed(dist_base + GIC_DIST_TARGET + i * 4);
437
438 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++)
439 gic_data[gic_nr].saved_spi_enable[i] =
440 readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
441}
442
443/*
444 * Restores the GIC distributor registers during resume or when coming out of
445 * idle. Must be called before enabling interrupts. If a level interrupt
446 * that occured while the GIC was suspended is still present, it will be
447 * handled normally, but any edge interrupts that occured will not be seen by
448 * the GIC and need to be handled by the platform-specific wakeup source.
449 */
450static void gic_dist_restore(unsigned int gic_nr)
451{
452 unsigned int gic_irqs;
453 unsigned int i;
454 void __iomem *dist_base;
455
456 if (gic_nr >= MAX_GIC_NR)
457 BUG();
458
459 gic_irqs = gic_data[gic_nr].gic_irqs;
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000460 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
Colin Cross254056f2011-02-10 12:54:10 -0800461
462 if (!dist_base)
463 return;
464
465 writel_relaxed(0, dist_base + GIC_DIST_CTRL);
466
467 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 16); i++)
468 writel_relaxed(gic_data[gic_nr].saved_spi_conf[i],
469 dist_base + GIC_DIST_CONFIG + i * 4);
470
471 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
472 writel_relaxed(0xa0a0a0a0,
473 dist_base + GIC_DIST_PRI + i * 4);
474
475 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 4); i++)
476 writel_relaxed(gic_data[gic_nr].saved_spi_target[i],
477 dist_base + GIC_DIST_TARGET + i * 4);
478
479 for (i = 0; i < DIV_ROUND_UP(gic_irqs, 32); i++)
480 writel_relaxed(gic_data[gic_nr].saved_spi_enable[i],
481 dist_base + GIC_DIST_ENABLE_SET + i * 4);
482
483 writel_relaxed(1, dist_base + GIC_DIST_CTRL);
484}
485
486static void gic_cpu_save(unsigned int gic_nr)
487{
488 int i;
489 u32 *ptr;
490 void __iomem *dist_base;
491 void __iomem *cpu_base;
492
493 if (gic_nr >= MAX_GIC_NR)
494 BUG();
495
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000496 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
497 cpu_base = gic_data_cpu_base(&gic_data[gic_nr]);
Colin Cross254056f2011-02-10 12:54:10 -0800498
499 if (!dist_base || !cpu_base)
500 return;
501
502 ptr = __this_cpu_ptr(gic_data[gic_nr].saved_ppi_enable);
503 for (i = 0; i < DIV_ROUND_UP(32, 32); i++)
504 ptr[i] = readl_relaxed(dist_base + GIC_DIST_ENABLE_SET + i * 4);
505
506 ptr = __this_cpu_ptr(gic_data[gic_nr].saved_ppi_conf);
507 for (i = 0; i < DIV_ROUND_UP(32, 16); i++)
508 ptr[i] = readl_relaxed(dist_base + GIC_DIST_CONFIG + i * 4);
509
510}
511
512static void gic_cpu_restore(unsigned int gic_nr)
513{
514 int i;
515 u32 *ptr;
516 void __iomem *dist_base;
517 void __iomem *cpu_base;
518
519 if (gic_nr >= MAX_GIC_NR)
520 BUG();
521
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000522 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
523 cpu_base = gic_data_cpu_base(&gic_data[gic_nr]);
Colin Cross254056f2011-02-10 12:54:10 -0800524
525 if (!dist_base || !cpu_base)
526 return;
527
528 ptr = __this_cpu_ptr(gic_data[gic_nr].saved_ppi_enable);
529 for (i = 0; i < DIV_ROUND_UP(32, 32); i++)
530 writel_relaxed(ptr[i], dist_base + GIC_DIST_ENABLE_SET + i * 4);
531
532 ptr = __this_cpu_ptr(gic_data[gic_nr].saved_ppi_conf);
533 for (i = 0; i < DIV_ROUND_UP(32, 16); i++)
534 writel_relaxed(ptr[i], dist_base + GIC_DIST_CONFIG + i * 4);
535
536 for (i = 0; i < DIV_ROUND_UP(32, 4); i++)
537 writel_relaxed(0xa0a0a0a0, dist_base + GIC_DIST_PRI + i * 4);
538
539 writel_relaxed(0xf0, cpu_base + GIC_CPU_PRIMASK);
540 writel_relaxed(1, cpu_base + GIC_CPU_CTRL);
541}
542
543static int gic_notifier(struct notifier_block *self, unsigned long cmd, void *v)
544{
545 int i;
546
547 for (i = 0; i < MAX_GIC_NR; i++) {
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000548#ifdef CONFIG_GIC_NON_BANKED
549 /* Skip over unused GICs */
550 if (!gic_data[i].get_base)
551 continue;
552#endif
Colin Cross254056f2011-02-10 12:54:10 -0800553 switch (cmd) {
554 case CPU_PM_ENTER:
555 gic_cpu_save(i);
556 break;
557 case CPU_PM_ENTER_FAILED:
558 case CPU_PM_EXIT:
559 gic_cpu_restore(i);
560 break;
561 case CPU_CLUSTER_PM_ENTER:
562 gic_dist_save(i);
563 break;
564 case CPU_CLUSTER_PM_ENTER_FAILED:
565 case CPU_CLUSTER_PM_EXIT:
566 gic_dist_restore(i);
567 break;
568 }
569 }
570
571 return NOTIFY_OK;
572}
573
574static struct notifier_block gic_notifier_block = {
575 .notifier_call = gic_notifier,
576};
577
578static void __init gic_pm_init(struct gic_chip_data *gic)
579{
580 gic->saved_ppi_enable = __alloc_percpu(DIV_ROUND_UP(32, 32) * 4,
581 sizeof(u32));
582 BUG_ON(!gic->saved_ppi_enable);
583
584 gic->saved_ppi_conf = __alloc_percpu(DIV_ROUND_UP(32, 16) * 4,
585 sizeof(u32));
586 BUG_ON(!gic->saved_ppi_conf);
587
Marc Zyngierabdd7b92011-11-25 17:58:19 +0100588 if (gic == &gic_data[0])
589 cpu_pm_register_notifier(&gic_notifier_block);
Colin Cross254056f2011-02-10 12:54:10 -0800590}
591#else
592static void __init gic_pm_init(struct gic_chip_data *gic)
593{
594}
595#endif
596
Rob Herringb1cffeb2012-11-26 15:05:48 -0600597#ifdef CONFIG_SMP
Stephen Boyd7c284952014-03-04 17:02:01 -0800598static void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)
Rob Herringb1cffeb2012-11-26 15:05:48 -0600599{
600 int cpu;
Nicolas Pitre176c78d2012-04-12 01:40:31 -0400601 unsigned long flags, map = 0;
602
603 raw_spin_lock_irqsave(&irq_controller_lock, flags);
Rob Herringb1cffeb2012-11-26 15:05:48 -0600604
605 /* Convert our logical CPU mask into a physical one. */
606 for_each_cpu(cpu, mask)
Javi Merino91bdf0d2013-02-19 13:52:22 +0000607 map |= gic_cpu_map[cpu];
Rob Herringb1cffeb2012-11-26 15:05:48 -0600608
609 /*
610 * Ensure that stores to Normal memory are visible to the
Will Deacon32fd0492014-02-20 17:42:07 +0000611 * other CPUs before they observe us issuing the IPI.
Rob Herringb1cffeb2012-11-26 15:05:48 -0600612 */
Will Deacon32fd0492014-02-20 17:42:07 +0000613 dmb(ishst);
Rob Herringb1cffeb2012-11-26 15:05:48 -0600614
615 /* this always happens on GIC0 */
616 writel_relaxed(map << 16 | irq, gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
Nicolas Pitre176c78d2012-04-12 01:40:31 -0400617
618 raw_spin_unlock_irqrestore(&irq_controller_lock, flags);
619}
620#endif
621
622#ifdef CONFIG_BL_SWITCHER
623/*
Nicolas Pitre43eafb42012-11-28 18:48:19 -0500624 * gic_send_sgi - send a SGI directly to given CPU interface number
625 *
626 * cpu_id: the ID for the destination CPU interface
627 * irq: the IPI number to send a SGI for
628 */
629void gic_send_sgi(unsigned int cpu_id, unsigned int irq)
630{
631 BUG_ON(cpu_id >= NR_GIC_CPU_IF);
632 cpu_id = 1 << cpu_id;
633 /* this always happens on GIC0 */
634 writel_relaxed((cpu_id << 16) | irq, gic_data_dist_base(&gic_data[0]) + GIC_DIST_SOFTINT);
635}
636
637/*
Christoffer Dall0284d572014-10-02 09:29:59 +0200638 * gic_get_cpu_id - get the CPU interface ID for the specified CPU
639 *
640 * @cpu: the logical CPU number to get the GIC ID for.
641 *
642 * Return the CPU interface ID for the given logical CPU number,
643 * or -1 if the CPU number is too large or the interface ID is
644 * unknown (more than one bit set).
645 */
646int gic_get_cpu_id(unsigned int cpu)
647{
648 unsigned int cpu_bit;
649
650 if (cpu >= NR_GIC_CPU_IF)
651 return -1;
652 cpu_bit = gic_cpu_map[cpu];
653 if (cpu_bit & (cpu_bit - 1))
654 return -1;
655 return __ffs(cpu_bit);
656}
657
658/*
Nicolas Pitre176c78d2012-04-12 01:40:31 -0400659 * gic_migrate_target - migrate IRQs to another CPU interface
660 *
661 * @new_cpu_id: the CPU target ID to migrate IRQs to
662 *
663 * Migrate all peripheral interrupts with a target matching the current CPU
664 * to the interface corresponding to @new_cpu_id. The CPU interface mapping
665 * is also updated. Targets to other CPU interfaces are unchanged.
666 * This must be called with IRQs locally disabled.
667 */
668void gic_migrate_target(unsigned int new_cpu_id)
669{
670 unsigned int cur_cpu_id, gic_irqs, gic_nr = 0;
671 void __iomem *dist_base;
672 int i, ror_val, cpu = smp_processor_id();
673 u32 val, cur_target_mask, active_mask;
674
675 if (gic_nr >= MAX_GIC_NR)
676 BUG();
677
678 dist_base = gic_data_dist_base(&gic_data[gic_nr]);
679 if (!dist_base)
680 return;
681 gic_irqs = gic_data[gic_nr].gic_irqs;
682
683 cur_cpu_id = __ffs(gic_cpu_map[cpu]);
684 cur_target_mask = 0x01010101 << cur_cpu_id;
685 ror_val = (cur_cpu_id - new_cpu_id) & 31;
686
687 raw_spin_lock(&irq_controller_lock);
688
689 /* Update the target interface for this logical CPU */
690 gic_cpu_map[cpu] = 1 << new_cpu_id;
691
692 /*
693 * Find all the peripheral interrupts targetting the current
694 * CPU interface and migrate them to the new CPU interface.
695 * We skip DIST_TARGET 0 to 7 as they are read-only.
696 */
697 for (i = 8; i < DIV_ROUND_UP(gic_irqs, 4); i++) {
698 val = readl_relaxed(dist_base + GIC_DIST_TARGET + i * 4);
699 active_mask = val & cur_target_mask;
700 if (active_mask) {
701 val &= ~active_mask;
702 val |= ror32(active_mask, ror_val);
703 writel_relaxed(val, dist_base + GIC_DIST_TARGET + i*4);
704 }
705 }
706
707 raw_spin_unlock(&irq_controller_lock);
708
709 /*
710 * Now let's migrate and clear any potential SGIs that might be
711 * pending for us (cur_cpu_id). Since GIC_DIST_SGI_PENDING_SET
712 * is a banked register, we can only forward the SGI using
713 * GIC_DIST_SOFTINT. The original SGI source is lost but Linux
714 * doesn't use that information anyway.
715 *
716 * For the same reason we do not adjust SGI source information
717 * for previously sent SGIs by us to other CPUs either.
718 */
719 for (i = 0; i < 16; i += 4) {
720 int j;
721 val = readl_relaxed(dist_base + GIC_DIST_SGI_PENDING_SET + i);
722 if (!val)
723 continue;
724 writel_relaxed(val, dist_base + GIC_DIST_SGI_PENDING_CLEAR + i);
725 for (j = i; j < i + 4; j++) {
726 if (val & 0xff)
727 writel_relaxed((1 << (new_cpu_id + 16)) | j,
728 dist_base + GIC_DIST_SOFTINT);
729 val >>= 8;
730 }
731 }
Rob Herringb1cffeb2012-11-26 15:05:48 -0600732}
Nicolas Pitref4bf1bf2012-11-28 18:17:25 -0500733
734/*
735 * gic_get_sgir_physaddr - get the physical address for the SGI register
736 *
737 * REturn the physical address of the SGI register to be used
738 * by some early assembly code when the kernel is not yet available.
739 */
740static unsigned long gic_dist_physaddr;
741
742unsigned long gic_get_sgir_physaddr(void)
743{
744 if (!gic_dist_physaddr)
745 return 0;
746 return gic_dist_physaddr + GIC_DIST_SOFTINT;
747}
748
749void __init gic_init_physaddr(struct device_node *node)
750{
751 struct resource res;
752 if (of_address_to_resource(node, 0, &res) == 0) {
753 gic_dist_physaddr = res.start;
754 pr_info("GIC physical location is %#lx\n", gic_dist_physaddr);
755 }
756}
757
758#else
759#define gic_init_physaddr(node) do { } while (0)
Rob Herringb1cffeb2012-11-26 15:05:48 -0600760#endif
761
Grant Likely75294952012-02-14 14:06:57 -0700762static int gic_irq_domain_map(struct irq_domain *d, unsigned int irq,
763 irq_hw_number_t hw)
764{
765 if (hw < 32) {
766 irq_set_percpu_devid(irq);
767 irq_set_chip_and_handler(irq, &gic_chip,
768 handle_percpu_devid_irq);
769 set_irq_flags(irq, IRQF_VALID | IRQF_NOAUTOEN);
770 } else {
771 irq_set_chip_and_handler(irq, &gic_chip,
772 handle_fasteoi_irq);
773 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
Sricharan Rbd09b642013-12-03 15:57:22 +0530774
775 gic_routable_irq_domain_ops->map(d, irq, hw);
Grant Likely75294952012-02-14 14:06:57 -0700776 }
777 irq_set_chip_data(irq, d->host_data);
778 return 0;
779}
780
Sricharan Rbd09b642013-12-03 15:57:22 +0530781static void gic_irq_domain_unmap(struct irq_domain *d, unsigned int irq)
782{
783 gic_routable_irq_domain_ops->unmap(d, irq);
784}
785
Grant Likely7bb69ba2012-02-14 14:06:48 -0700786static int gic_irq_domain_xlate(struct irq_domain *d,
787 struct device_node *controller,
788 const u32 *intspec, unsigned int intsize,
789 unsigned long *out_hwirq, unsigned int *out_type)
Rob Herringb3f7ed02011-09-28 21:27:52 -0500790{
Sricharan Rbd09b642013-12-03 15:57:22 +0530791 unsigned long ret = 0;
792
Rob Herringb3f7ed02011-09-28 21:27:52 -0500793 if (d->of_node != controller)
794 return -EINVAL;
795 if (intsize < 3)
796 return -EINVAL;
797
798 /* Get the interrupt number and add 16 to skip over SGIs */
799 *out_hwirq = intspec[1] + 16;
800
801 /* For SPIs, we need to add 16 more to get the GIC irq ID number */
Sricharan Rbd09b642013-12-03 15:57:22 +0530802 if (!intspec[0]) {
803 ret = gic_routable_irq_domain_ops->xlate(d, controller,
804 intspec,
805 intsize,
806 out_hwirq,
807 out_type);
808
809 if (IS_ERR_VALUE(ret))
810 return ret;
811 }
Rob Herringb3f7ed02011-09-28 21:27:52 -0500812
813 *out_type = intspec[2] & IRQ_TYPE_SENSE_MASK;
Sricharan Rbd09b642013-12-03 15:57:22 +0530814
815 return ret;
Rob Herringb3f7ed02011-09-28 21:27:52 -0500816}
Rob Herringb3f7ed02011-09-28 21:27:52 -0500817
Catalin Marinasc0114702013-01-14 18:05:37 +0000818#ifdef CONFIG_SMP
819static int __cpuinit gic_secondary_init(struct notifier_block *nfb,
820 unsigned long action, void *hcpu)
821{
Shawn Guo8b6fd652013-06-12 19:30:27 +0800822 if (action == CPU_STARTING || action == CPU_STARTING_FROZEN)
Catalin Marinasc0114702013-01-14 18:05:37 +0000823 gic_cpu_init(&gic_data[0]);
824 return NOTIFY_OK;
825}
826
827/*
828 * Notifier for enabling the GIC CPU interface. Set an arbitrarily high
829 * priority because the GIC needs to be up before the ARM generic timers.
830 */
831static struct notifier_block __cpuinitdata gic_cpu_notifier = {
832 .notifier_call = gic_secondary_init,
833 .priority = 100,
834};
835#endif
836
Stephen Boyd7c284952014-03-04 17:02:01 -0800837static const struct irq_domain_ops gic_irq_domain_ops = {
Grant Likely75294952012-02-14 14:06:57 -0700838 .map = gic_irq_domain_map,
Sricharan Rbd09b642013-12-03 15:57:22 +0530839 .unmap = gic_irq_domain_unmap,
Grant Likely7bb69ba2012-02-14 14:06:48 -0700840 .xlate = gic_irq_domain_xlate,
Rob Herring4294f8b2011-09-28 21:25:31 -0500841};
842
Sricharan Rbd09b642013-12-03 15:57:22 +0530843/* Default functions for routable irq domain */
844static int gic_routable_irq_domain_map(struct irq_domain *d, unsigned int irq,
845 irq_hw_number_t hw)
846{
847 return 0;
848}
849
850static void gic_routable_irq_domain_unmap(struct irq_domain *d,
851 unsigned int irq)
852{
853}
854
855static int gic_routable_irq_domain_xlate(struct irq_domain *d,
856 struct device_node *controller,
857 const u32 *intspec, unsigned int intsize,
858 unsigned long *out_hwirq,
859 unsigned int *out_type)
860{
861 *out_hwirq += 16;
862 return 0;
863}
864
865const struct irq_domain_ops gic_default_routable_irq_domain_ops = {
866 .map = gic_routable_irq_domain_map,
867 .unmap = gic_routable_irq_domain_unmap,
868 .xlate = gic_routable_irq_domain_xlate,
869};
870
871const struct irq_domain_ops *gic_routable_irq_domain_ops =
872 &gic_default_routable_irq_domain_ops;
873
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000874void __init gic_init_bases(unsigned int gic_nr, int irq_start,
875 void __iomem *dist_base, void __iomem *cpu_base,
Grant Likely75294952012-02-14 14:06:57 -0700876 u32 percpu_offset, struct device_node *node)
Russell Kingb580b892010-12-04 15:55:14 +0000877{
Grant Likely75294952012-02-14 14:06:57 -0700878 irq_hw_number_t hwirq_base;
Russell Kingbef8f9e2010-12-04 16:50:58 +0000879 struct gic_chip_data *gic;
Nicolas Pitre384a2902012-04-11 18:55:48 -0400880 int gic_irqs, irq_base, i;
Sricharan Rbd09b642013-12-03 15:57:22 +0530881 int nr_routable_irqs;
Russell Kingbef8f9e2010-12-04 16:50:58 +0000882
883 BUG_ON(gic_nr >= MAX_GIC_NR);
884
885 gic = &gic_data[gic_nr];
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000886#ifdef CONFIG_GIC_NON_BANKED
887 if (percpu_offset) { /* Frankein-GIC without banked registers... */
888 unsigned int cpu;
889
890 gic->dist_base.percpu_base = alloc_percpu(void __iomem *);
891 gic->cpu_base.percpu_base = alloc_percpu(void __iomem *);
892 if (WARN_ON(!gic->dist_base.percpu_base ||
893 !gic->cpu_base.percpu_base)) {
894 free_percpu(gic->dist_base.percpu_base);
895 free_percpu(gic->cpu_base.percpu_base);
896 return;
897 }
898
899 for_each_possible_cpu(cpu) {
900 unsigned long offset = percpu_offset * cpu_logical_map(cpu);
901 *per_cpu_ptr(gic->dist_base.percpu_base, cpu) = dist_base + offset;
902 *per_cpu_ptr(gic->cpu_base.percpu_base, cpu) = cpu_base + offset;
903 }
904
905 gic_set_base_accessor(gic, gic_get_percpu_base);
906 } else
907#endif
908 { /* Normal, sane GIC... */
909 WARN(percpu_offset,
910 "GIC_NON_BANKED not enabled, ignoring %08x offset!",
911 percpu_offset);
912 gic->dist_base.common_base = dist_base;
913 gic->cpu_base.common_base = cpu_base;
914 gic_set_base_accessor(gic, gic_get_common_base);
915 }
Russell Kingbef8f9e2010-12-04 16:50:58 +0000916
Rob Herring4294f8b2011-09-28 21:25:31 -0500917 /*
Nicolas Pitre384a2902012-04-11 18:55:48 -0400918 * Initialize the CPU interface map to all CPUs.
919 * It will be refined as each CPU probes its ID.
920 */
921 for (i = 0; i < NR_GIC_CPU_IF; i++)
922 gic_cpu_map[i] = 0xff;
923
924 /*
Rob Herring4294f8b2011-09-28 21:25:31 -0500925 * For primary GICs, skip over SGIs.
926 * For secondary GICs, skip over PPIs, too.
927 */
Will Deacone0b823e2012-02-03 14:52:14 +0100928 if (gic_nr == 0 && (irq_start & 31) > 0) {
Linus Torvalds12679a22012-03-29 16:53:48 -0700929 hwirq_base = 16;
Will Deacone0b823e2012-02-03 14:52:14 +0100930 if (irq_start != -1)
931 irq_start = (irq_start & ~31) + 16;
932 } else {
Linus Torvalds12679a22012-03-29 16:53:48 -0700933 hwirq_base = 32;
Will Deaconfe41db72011-11-25 19:23:36 +0100934 }
Rob Herring4294f8b2011-09-28 21:25:31 -0500935
936 /*
937 * Find out how many interrupts are supported.
938 * The GIC only supports up to 1020 interrupt sources.
939 */
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000940 gic_irqs = readl_relaxed(gic_data_dist_base(gic) + GIC_DIST_CTR) & 0x1f;
Rob Herring4294f8b2011-09-28 21:25:31 -0500941 gic_irqs = (gic_irqs + 1) * 32;
942 if (gic_irqs > 1020)
943 gic_irqs = 1020;
944 gic->gic_irqs = gic_irqs;
945
Grant Likely75294952012-02-14 14:06:57 -0700946 gic_irqs -= hwirq_base; /* calculate # of irqs to allocate */
Sricharan Rbd09b642013-12-03 15:57:22 +0530947
948 if (of_property_read_u32(node, "arm,routable-irqs",
949 &nr_routable_irqs)) {
950 irq_base = irq_alloc_descs(irq_start, 16, gic_irqs,
951 numa_node_id());
952 if (IS_ERR_VALUE(irq_base)) {
953 WARN(1, "Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated\n",
954 irq_start);
955 irq_base = irq_start;
956 }
957
958 gic->domain = irq_domain_add_legacy(node, gic_irqs, irq_base,
959 hwirq_base, &gic_irq_domain_ops, gic);
960 } else {
961 gic->domain = irq_domain_add_linear(node, nr_routable_irqs,
962 &gic_irq_domain_ops,
963 gic);
Rob Herringf37a53c2011-10-21 17:14:27 -0500964 }
Sricharan Rbd09b642013-12-03 15:57:22 +0530965
Grant Likely75294952012-02-14 14:06:57 -0700966 if (WARN_ON(!gic->domain))
967 return;
Russell Kingbef8f9e2010-12-04 16:50:58 +0000968
Mark Rutland893fe6d2013-11-28 14:21:40 +0000969 if (gic_nr == 0) {
Rob Herringb1cffeb2012-11-26 15:05:48 -0600970#ifdef CONFIG_SMP
Mark Rutland893fe6d2013-11-28 14:21:40 +0000971 set_smp_cross_call(gic_raise_softirq);
972 register_cpu_notifier(&gic_cpu_notifier);
Rob Herringb1cffeb2012-11-26 15:05:48 -0600973#endif
Mark Rutland893fe6d2013-11-28 14:21:40 +0000974 set_handle_irq(gic_handle_irq);
975 }
Rob Herringcfed7d62012-11-03 12:59:51 -0500976
Colin Cross9c128452011-06-13 00:45:59 +0000977 gic_chip.flags |= gic_arch_extn.flags;
Rob Herring4294f8b2011-09-28 21:25:31 -0500978 gic_dist_init(gic);
Russell Kingbef8f9e2010-12-04 16:50:58 +0000979 gic_cpu_init(gic);
Colin Cross254056f2011-02-10 12:54:10 -0800980 gic_pm_init(gic);
Russell Kingb580b892010-12-04 15:55:14 +0000981}
982
Rob Herringb3f7ed02011-09-28 21:27:52 -0500983#ifdef CONFIG_OF
Sachin Kamat46f101d2013-03-13 15:05:15 +0530984static int gic_cnt __initdata;
Rob Herringb3f7ed02011-09-28 21:27:52 -0500985
Stephen Boyd7c284952014-03-04 17:02:01 -0800986static int __init
987gic_of_init(struct device_node *node, struct device_node *parent)
Rob Herringb3f7ed02011-09-28 21:27:52 -0500988{
989 void __iomem *cpu_base;
990 void __iomem *dist_base;
Marc Zyngierdb0d4db2011-11-12 16:09:49 +0000991 u32 percpu_offset;
Rob Herringb3f7ed02011-09-28 21:27:52 -0500992 int irq;
Rob Herringb3f7ed02011-09-28 21:27:52 -0500993
994 if (WARN_ON(!node))
995 return -ENODEV;
996
997 dist_base = of_iomap(node, 0);
998 WARN(!dist_base, "unable to map gic dist registers\n");
999
1000 cpu_base = of_iomap(node, 1);
1001 WARN(!cpu_base, "unable to map gic cpu registers\n");
1002
Marc Zyngierdb0d4db2011-11-12 16:09:49 +00001003 if (of_property_read_u32(node, "cpu-offset", &percpu_offset))
1004 percpu_offset = 0;
1005
Grant Likely75294952012-02-14 14:06:57 -07001006 gic_init_bases(gic_cnt, -1, dist_base, cpu_base, percpu_offset, node);
Nicolas Pitref4bf1bf2012-11-28 18:17:25 -05001007 if (!gic_cnt)
1008 gic_init_physaddr(node);
Rob Herringb3f7ed02011-09-28 21:27:52 -05001009
1010 if (parent) {
1011 irq = irq_of_parse_and_map(node, 0);
1012 gic_cascade_irq(gic_cnt, irq);
1013 }
1014 gic_cnt++;
1015 return 0;
1016}
Suravee Suthikulpanit9d918ba2014-07-15 00:03:03 +02001017IRQCHIP_DECLARE(gic_400, "arm,gic-400", gic_of_init);
Rob Herring81243e42012-11-20 21:21:40 -06001018IRQCHIP_DECLARE(cortex_a15_gic, "arm,cortex-a15-gic", gic_of_init);
1019IRQCHIP_DECLARE(cortex_a9_gic, "arm,cortex-a9-gic", gic_of_init);
Matthias Brugger765a2fa2014-07-03 13:58:52 +02001020IRQCHIP_DECLARE(cortex_a7_gic, "arm,cortex-a7-gic", gic_of_init);
Rob Herring81243e42012-11-20 21:21:40 -06001021IRQCHIP_DECLARE(msm_8660_qgic, "qcom,msm-8660-qgic", gic_of_init);
1022IRQCHIP_DECLARE(msm_qgic2, "qcom,msm-qgic2", gic_of_init);
1023
Rob Herringb3f7ed02011-09-28 21:27:52 -05001024#endif