blob: 9d7b1db791e4bb227a935142829597914de4ce9f [file] [log] [blame]
Steven J. Hill2299c492012-08-31 16:13:07 -05001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2008 Ralf Baechle (ralf@linux-mips.org)
7 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
8 */
Ralf Baechle39b8d522008-04-28 17:14:26 +01009#include <linux/bitmap.h>
Andrew Brestickerfb8f7be12014-10-20 12:03:55 -070010#include <linux/clocksource.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010011#include <linux/init.h>
Andrew Bresticker18743d22014-09-18 14:47:24 -070012#include <linux/interrupt.h>
Andrew Brestickerfb8f7be12014-10-20 12:03:55 -070013#include <linux/irq.h>
Andrew Bresticker4060bbe2014-10-20 12:03:53 -070014#include <linux/irqchip/mips-gic.h>
Andrew Bresticker18743d22014-09-18 14:47:24 -070015#include <linux/sched.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010016#include <linux/smp.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010017
Steven J. Hill98b67c32012-08-31 16:18:49 -050018#include <asm/setup.h>
19#include <asm/traps.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010020
Steven J. Hill28ea2152013-04-10 16:27:50 -050021unsigned int gic_frequency;
Steven J. Hillff867142013-04-10 16:27:04 -050022unsigned int gic_present;
Steven J. Hill98b67c32012-08-31 16:18:49 -050023
Jeffrey Deans822350b2014-07-17 09:20:53 +010024struct gic_pcpu_mask {
Andrew Brestickerfbd55242014-09-18 14:47:25 -070025 DECLARE_BITMAP(pcpu_mask, GIC_MAX_INTRS);
Jeffrey Deans822350b2014-07-17 09:20:53 +010026};
27
28struct gic_pending_regs {
Andrew Brestickerfbd55242014-09-18 14:47:25 -070029 DECLARE_BITMAP(pending, GIC_MAX_INTRS);
Jeffrey Deans822350b2014-07-17 09:20:53 +010030};
31
32struct gic_intrmask_regs {
Andrew Brestickerfbd55242014-09-18 14:47:25 -070033 DECLARE_BITMAP(intrmask, GIC_MAX_INTRS);
Jeffrey Deans822350b2014-07-17 09:20:53 +010034};
35
Andrew Bresticker5f68fea2014-10-20 12:03:52 -070036static void __iomem *gic_base;
Steven J. Hill0b271f52012-08-31 16:05:37 -050037static struct gic_pcpu_mask pcpu_masks[NR_CPUS];
Ralf Baechle39b8d522008-04-28 17:14:26 +010038static struct gic_pending_regs pending_regs[NR_CPUS];
39static struct gic_intrmask_regs intrmask_regs[NR_CPUS];
Andrew Bresticker95150ae2014-09-18 14:47:21 -070040static DEFINE_SPINLOCK(gic_lock);
Andrew Brestickerc49581a2014-09-18 14:47:23 -070041static struct irq_domain *gic_irq_domain;
Andrew Brestickerfbd55242014-09-18 14:47:25 -070042static int gic_shared_intrs;
Andrew Brestickere9de6882014-09-18 14:47:27 -070043static int gic_vpes;
Andrew Bresticker3263d082014-09-18 14:47:28 -070044static unsigned int gic_cpu_pin;
Andrew Bresticker4a6a3ea32014-09-18 14:47:26 -070045static struct irq_chip gic_level_irq_controller, gic_edge_irq_controller;
Ralf Baechle39b8d522008-04-28 17:14:26 +010046
Andrew Bresticker18743d22014-09-18 14:47:24 -070047static void __gic_irq_dispatch(void);
48
Andrew Bresticker5f68fea2014-10-20 12:03:52 -070049static inline unsigned int gic_read(unsigned int reg)
50{
51 return __raw_readl(gic_base + reg);
52}
53
54static inline void gic_write(unsigned int reg, unsigned int val)
55{
56 __raw_writel(val, gic_base + reg);
57}
58
59static inline void gic_update_bits(unsigned int reg, unsigned int mask,
60 unsigned int val)
61{
62 unsigned int regval;
63
64 regval = gic_read(reg);
65 regval &= ~mask;
66 regval |= val;
67 gic_write(reg, regval);
68}
69
70static inline void gic_reset_mask(unsigned int intr)
71{
72 gic_write(GIC_REG(SHARED, GIC_SH_RMASK) + GIC_INTR_OFS(intr),
73 1 << GIC_INTR_BIT(intr));
74}
75
76static inline void gic_set_mask(unsigned int intr)
77{
78 gic_write(GIC_REG(SHARED, GIC_SH_SMASK) + GIC_INTR_OFS(intr),
79 1 << GIC_INTR_BIT(intr));
80}
81
82static inline void gic_set_polarity(unsigned int intr, unsigned int pol)
83{
84 gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_POLARITY) +
85 GIC_INTR_OFS(intr), 1 << GIC_INTR_BIT(intr),
86 pol << GIC_INTR_BIT(intr));
87}
88
89static inline void gic_set_trigger(unsigned int intr, unsigned int trig)
90{
91 gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_TRIGGER) +
92 GIC_INTR_OFS(intr), 1 << GIC_INTR_BIT(intr),
93 trig << GIC_INTR_BIT(intr));
94}
95
96static inline void gic_set_dual_edge(unsigned int intr, unsigned int dual)
97{
98 gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_DUAL) + GIC_INTR_OFS(intr),
99 1 << GIC_INTR_BIT(intr),
100 dual << GIC_INTR_BIT(intr));
101}
102
103static inline void gic_map_to_pin(unsigned int intr, unsigned int pin)
104{
105 gic_write(GIC_REG(SHARED, GIC_SH_INTR_MAP_TO_PIN_BASE) +
106 GIC_SH_MAP_TO_PIN(intr), GIC_MAP_TO_PIN_MSK | pin);
107}
108
109static inline void gic_map_to_vpe(unsigned int intr, unsigned int vpe)
110{
111 gic_write(GIC_REG(SHARED, GIC_SH_INTR_MAP_TO_VPE_BASE) +
112 GIC_SH_MAP_TO_VPE_REG_OFF(intr, vpe),
113 GIC_SH_MAP_TO_VPE_REG_BIT(vpe));
114}
115
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500116#if defined(CONFIG_CSRC_GIC) || defined(CONFIG_CEVT_GIC)
Steven J. Hilldfa762e2013-04-10 16:28:36 -0500117cycle_t gic_read_count(void)
118{
119 unsigned int hi, hi2, lo;
120
121 do {
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700122 hi = gic_read(GIC_REG(SHARED, GIC_SH_COUNTER_63_32));
123 lo = gic_read(GIC_REG(SHARED, GIC_SH_COUNTER_31_00));
124 hi2 = gic_read(GIC_REG(SHARED, GIC_SH_COUNTER_63_32));
Steven J. Hilldfa762e2013-04-10 16:28:36 -0500125 } while (hi2 != hi);
126
127 return (((cycle_t) hi) << 32) + lo;
128}
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500129
Andrew Bresticker387904f2014-10-20 12:03:49 -0700130unsigned int gic_get_count_width(void)
131{
132 unsigned int bits, config;
133
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700134 config = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG));
Andrew Bresticker387904f2014-10-20 12:03:49 -0700135 bits = 32 + 4 * ((config & GIC_SH_CONFIG_COUNTBITS_MSK) >>
136 GIC_SH_CONFIG_COUNTBITS_SHF);
137
138 return bits;
139}
140
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500141void gic_write_compare(cycle_t cnt)
142{
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700143 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_HI),
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500144 (int)(cnt >> 32));
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700145 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_LO),
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500146 (int)(cnt & 0xffffffff));
147}
148
Paul Burton414408d02014-03-05 11:35:53 +0000149void gic_write_cpu_compare(cycle_t cnt, int cpu)
150{
151 unsigned long flags;
152
153 local_irq_save(flags);
154
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700155 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), cpu);
156 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_HI),
Paul Burton414408d02014-03-05 11:35:53 +0000157 (int)(cnt >> 32));
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700158 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_LO),
Paul Burton414408d02014-03-05 11:35:53 +0000159 (int)(cnt & 0xffffffff));
160
161 local_irq_restore(flags);
162}
163
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500164cycle_t gic_read_compare(void)
165{
166 unsigned int hi, lo;
167
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700168 hi = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_HI));
169 lo = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_LO));
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500170
171 return (((cycle_t) hi) << 32) + lo;
172}
Steven J. Hilldfa762e2013-04-10 16:28:36 -0500173#endif
174
Andrew Brestickere9de6882014-09-18 14:47:27 -0700175static bool gic_local_irq_is_routable(int intr)
176{
177 u32 vpe_ctl;
178
179 /* All local interrupts are routable in EIC mode. */
180 if (cpu_has_veic)
181 return true;
182
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700183 vpe_ctl = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_CTL));
Andrew Brestickere9de6882014-09-18 14:47:27 -0700184 switch (intr) {
185 case GIC_LOCAL_INT_TIMER:
186 return vpe_ctl & GIC_VPE_CTL_TIMER_RTBL_MSK;
187 case GIC_LOCAL_INT_PERFCTR:
188 return vpe_ctl & GIC_VPE_CTL_PERFCNT_RTBL_MSK;
189 case GIC_LOCAL_INT_FDC:
190 return vpe_ctl & GIC_VPE_CTL_FDC_RTBL_MSK;
191 case GIC_LOCAL_INT_SWINT0:
192 case GIC_LOCAL_INT_SWINT1:
193 return vpe_ctl & GIC_VPE_CTL_SWINT_RTBL_MSK;
194 default:
195 return true;
196 }
197}
198
Steven J. Hill98b67c32012-08-31 16:18:49 -0500199unsigned int gic_get_timer_pending(void)
200{
201 unsigned int vpe_pending;
202
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700203 vpe_pending = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_PEND));
Ralf Baechle635c99072014-10-21 14:12:49 +0200204 return vpe_pending & GIC_VPE_PEND_TIMER_MSK;
Steven J. Hill98b67c32012-08-31 16:18:49 -0500205}
206
Andrew Bresticker3263d082014-09-18 14:47:28 -0700207static void gic_bind_eic_interrupt(int irq, int set)
Steven J. Hill98b67c32012-08-31 16:18:49 -0500208{
209 /* Convert irq vector # to hw int # */
210 irq -= GIC_PIN_TO_VEC_OFFSET;
211
212 /* Set irq to use shadow set */
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700213 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_EIC_SHADOW_SET_BASE) +
214 GIC_VPE_EIC_SS(irq), set);
Steven J. Hill98b67c32012-08-31 16:18:49 -0500215}
216
Ralf Baechle39b8d522008-04-28 17:14:26 +0100217void gic_send_ipi(unsigned int intr)
218{
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700219 gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), 0x80000000 | intr);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100220}
221
Andrew Brestickere9de6882014-09-18 14:47:27 -0700222int gic_get_c0_compare_int(void)
223{
224 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_TIMER))
225 return MIPS_CPU_IRQ_BASE + cp0_compare_irq;
226 return irq_create_mapping(gic_irq_domain,
227 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_TIMER));
228}
229
230int gic_get_c0_perfcount_int(void)
231{
232 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_PERFCTR)) {
233 /* Is the erformance counter shared with the timer? */
234 if (cp0_perfcount_irq < 0)
235 return -1;
236 return MIPS_CPU_IRQ_BASE + cp0_perfcount_irq;
237 }
238 return irq_create_mapping(gic_irq_domain,
239 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_PERFCTR));
240}
241
Andrew Bresticker3263d082014-09-18 14:47:28 -0700242static unsigned int gic_get_int(void)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100243{
244 unsigned int i;
245 unsigned long *pending, *intrmask, *pcpu_mask;
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700246 unsigned long pending_reg, intrmask_reg;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100247
248 /* Get per-cpu bitmaps */
249 pending = pending_regs[smp_processor_id()].pending;
250 intrmask = intrmask_regs[smp_processor_id()].intrmask;
251 pcpu_mask = pcpu_masks[smp_processor_id()].pcpu_mask;
252
Andrew Bresticker824f3f72014-10-20 12:03:54 -0700253 pending_reg = GIC_REG(SHARED, GIC_SH_PEND);
254 intrmask_reg = GIC_REG(SHARED, GIC_SH_MASK);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100255
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700256 for (i = 0; i < BITS_TO_LONGS(gic_shared_intrs); i++) {
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700257 pending[i] = gic_read(pending_reg);
258 intrmask[i] = gic_read(intrmask_reg);
259 pending_reg += 0x4;
260 intrmask_reg += 0x4;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100261 }
262
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700263 bitmap_and(pending, pending, intrmask, gic_shared_intrs);
264 bitmap_and(pending, pending, pcpu_mask, gic_shared_intrs);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100265
Andrew Bresticker3263d082014-09-18 14:47:28 -0700266 return find_first_bit(pending, gic_shared_intrs);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100267}
268
Thomas Gleixner161d0492011-03-23 21:08:58 +0000269static void gic_mask_irq(struct irq_data *d)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100270{
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700271 gic_reset_mask(GIC_HWIRQ_TO_SHARED(d->hwirq));
Ralf Baechle39b8d522008-04-28 17:14:26 +0100272}
273
Thomas Gleixner161d0492011-03-23 21:08:58 +0000274static void gic_unmask_irq(struct irq_data *d)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100275{
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700276 gic_set_mask(GIC_HWIRQ_TO_SHARED(d->hwirq));
Ralf Baechle39b8d522008-04-28 17:14:26 +0100277}
278
Andrew Bresticker5561c9e2014-09-18 14:47:20 -0700279static void gic_ack_irq(struct irq_data *d)
280{
Andrew Brestickere9de6882014-09-18 14:47:27 -0700281 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700282
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700283 gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), irq);
Andrew Bresticker5561c9e2014-09-18 14:47:20 -0700284}
285
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700286static int gic_set_type(struct irq_data *d, unsigned int type)
287{
Andrew Brestickere9de6882014-09-18 14:47:27 -0700288 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700289 unsigned long flags;
290 bool is_edge;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100291
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700292 spin_lock_irqsave(&gic_lock, flags);
293 switch (type & IRQ_TYPE_SENSE_MASK) {
294 case IRQ_TYPE_EDGE_FALLING:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700295 gic_set_polarity(irq, GIC_POL_NEG);
296 gic_set_trigger(irq, GIC_TRIG_EDGE);
297 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700298 is_edge = true;
299 break;
300 case IRQ_TYPE_EDGE_RISING:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700301 gic_set_polarity(irq, GIC_POL_POS);
302 gic_set_trigger(irq, GIC_TRIG_EDGE);
303 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700304 is_edge = true;
305 break;
306 case IRQ_TYPE_EDGE_BOTH:
307 /* polarity is irrelevant in this case */
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700308 gic_set_trigger(irq, GIC_TRIG_EDGE);
309 gic_set_dual_edge(irq, GIC_TRIG_DUAL_ENABLE);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700310 is_edge = true;
311 break;
312 case IRQ_TYPE_LEVEL_LOW:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700313 gic_set_polarity(irq, GIC_POL_NEG);
314 gic_set_trigger(irq, GIC_TRIG_LEVEL);
315 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700316 is_edge = false;
317 break;
318 case IRQ_TYPE_LEVEL_HIGH:
319 default:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700320 gic_set_polarity(irq, GIC_POL_POS);
321 gic_set_trigger(irq, GIC_TRIG_LEVEL);
322 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700323 is_edge = false;
324 break;
325 }
326
327 if (is_edge) {
Andrew Bresticker4a6a3ea32014-09-18 14:47:26 -0700328 __irq_set_chip_handler_name_locked(d->irq,
329 &gic_edge_irq_controller,
330 handle_edge_irq, NULL);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700331 } else {
Andrew Bresticker4a6a3ea32014-09-18 14:47:26 -0700332 __irq_set_chip_handler_name_locked(d->irq,
333 &gic_level_irq_controller,
334 handle_level_irq, NULL);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700335 }
336 spin_unlock_irqrestore(&gic_lock, flags);
337
338 return 0;
339}
340
341#ifdef CONFIG_SMP
Thomas Gleixner161d0492011-03-23 21:08:58 +0000342static int gic_set_affinity(struct irq_data *d, const struct cpumask *cpumask,
343 bool force)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100344{
Andrew Brestickere9de6882014-09-18 14:47:27 -0700345 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100346 cpumask_t tmp = CPU_MASK_NONE;
347 unsigned long flags;
348 int i;
349
Rusty Russell0de26522008-12-13 21:20:26 +1030350 cpumask_and(&tmp, cpumask, cpu_online_mask);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100351 if (cpus_empty(tmp))
Andrew Bresticker14d160a2014-09-18 14:47:22 -0700352 return -EINVAL;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100353
354 /* Assumption : cpumask refers to a single CPU */
355 spin_lock_irqsave(&gic_lock, flags);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100356
Tony Wuc214c032013-06-21 10:13:08 +0000357 /* Re-route this IRQ */
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700358 gic_map_to_vpe(irq, first_cpu(tmp));
Ralf Baechle39b8d522008-04-28 17:14:26 +0100359
Tony Wuc214c032013-06-21 10:13:08 +0000360 /* Update the pcpu_masks */
361 for (i = 0; i < NR_CPUS; i++)
362 clear_bit(irq, pcpu_masks[i].pcpu_mask);
363 set_bit(irq, pcpu_masks[first_cpu(tmp)].pcpu_mask);
364
Thomas Gleixner161d0492011-03-23 21:08:58 +0000365 cpumask_copy(d->affinity, cpumask);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100366 spin_unlock_irqrestore(&gic_lock, flags);
367
Thomas Gleixner161d0492011-03-23 21:08:58 +0000368 return IRQ_SET_MASK_OK_NOCOPY;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100369}
370#endif
371
Andrew Bresticker4a6a3ea32014-09-18 14:47:26 -0700372static struct irq_chip gic_level_irq_controller = {
373 .name = "MIPS GIC",
374 .irq_mask = gic_mask_irq,
375 .irq_unmask = gic_unmask_irq,
376 .irq_set_type = gic_set_type,
377#ifdef CONFIG_SMP
378 .irq_set_affinity = gic_set_affinity,
379#endif
380};
381
382static struct irq_chip gic_edge_irq_controller = {
Thomas Gleixner161d0492011-03-23 21:08:58 +0000383 .name = "MIPS GIC",
Andrew Bresticker5561c9e2014-09-18 14:47:20 -0700384 .irq_ack = gic_ack_irq,
Thomas Gleixner161d0492011-03-23 21:08:58 +0000385 .irq_mask = gic_mask_irq,
Thomas Gleixner161d0492011-03-23 21:08:58 +0000386 .irq_unmask = gic_unmask_irq,
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700387 .irq_set_type = gic_set_type,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100388#ifdef CONFIG_SMP
Thomas Gleixner161d0492011-03-23 21:08:58 +0000389 .irq_set_affinity = gic_set_affinity,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100390#endif
391};
392
Andrew Brestickere9de6882014-09-18 14:47:27 -0700393static unsigned int gic_get_local_int(void)
394{
395 unsigned long pending, masked;
396
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700397 pending = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_PEND));
398 masked = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_MASK));
Andrew Brestickere9de6882014-09-18 14:47:27 -0700399
400 bitmap_and(&pending, &pending, &masked, GIC_NUM_LOCAL_INTRS);
401
402 return find_first_bit(&pending, GIC_NUM_LOCAL_INTRS);
403}
404
405static void gic_mask_local_irq(struct irq_data *d)
406{
407 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
408
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700409 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_RMASK), 1 << intr);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700410}
411
412static void gic_unmask_local_irq(struct irq_data *d)
413{
414 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
415
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700416 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_SMASK), 1 << intr);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700417}
418
419static struct irq_chip gic_local_irq_controller = {
420 .name = "MIPS GIC Local",
421 .irq_mask = gic_mask_local_irq,
422 .irq_unmask = gic_unmask_local_irq,
423};
424
425static void gic_mask_local_irq_all_vpes(struct irq_data *d)
426{
427 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
428 int i;
429 unsigned long flags;
430
431 spin_lock_irqsave(&gic_lock, flags);
432 for (i = 0; i < gic_vpes; i++) {
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700433 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i);
434 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_RMASK), 1 << intr);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700435 }
436 spin_unlock_irqrestore(&gic_lock, flags);
437}
438
439static void gic_unmask_local_irq_all_vpes(struct irq_data *d)
440{
441 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
442 int i;
443 unsigned long flags;
444
445 spin_lock_irqsave(&gic_lock, flags);
446 for (i = 0; i < gic_vpes; i++) {
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700447 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i);
448 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_SMASK), 1 << intr);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700449 }
450 spin_unlock_irqrestore(&gic_lock, flags);
451}
452
453static struct irq_chip gic_all_vpes_local_irq_controller = {
454 .name = "MIPS GIC Local",
455 .irq_mask = gic_mask_local_irq_all_vpes,
456 .irq_unmask = gic_unmask_local_irq_all_vpes,
457};
458
Andrew Bresticker18743d22014-09-18 14:47:24 -0700459static void __gic_irq_dispatch(void)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100460{
Andrew Bresticker18743d22014-09-18 14:47:24 -0700461 unsigned int intr, virq;
462
Andrew Brestickere9de6882014-09-18 14:47:27 -0700463 while ((intr = gic_get_local_int()) != GIC_NUM_LOCAL_INTRS) {
464 virq = irq_linear_revmap(gic_irq_domain,
465 GIC_LOCAL_TO_HWIRQ(intr));
466 do_IRQ(virq);
467 }
468
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700469 while ((intr = gic_get_int()) != gic_shared_intrs) {
Andrew Brestickere9de6882014-09-18 14:47:27 -0700470 virq = irq_linear_revmap(gic_irq_domain,
471 GIC_SHARED_TO_HWIRQ(intr));
Andrew Bresticker18743d22014-09-18 14:47:24 -0700472 do_IRQ(virq);
473 }
474}
475
476static void gic_irq_dispatch(unsigned int irq, struct irq_desc *desc)
477{
478 __gic_irq_dispatch();
479}
480
481#ifdef CONFIG_MIPS_GIC_IPI
482static int gic_resched_int_base;
483static int gic_call_int_base;
484
485unsigned int plat_ipi_resched_int_xlate(unsigned int cpu)
486{
487 return gic_resched_int_base + cpu;
488}
489
490unsigned int plat_ipi_call_int_xlate(unsigned int cpu)
491{
492 return gic_call_int_base + cpu;
493}
494
495static irqreturn_t ipi_resched_interrupt(int irq, void *dev_id)
496{
497 scheduler_ipi();
498
499 return IRQ_HANDLED;
500}
501
502static irqreturn_t ipi_call_interrupt(int irq, void *dev_id)
503{
504 smp_call_function_interrupt();
505
506 return IRQ_HANDLED;
507}
508
509static struct irqaction irq_resched = {
510 .handler = ipi_resched_interrupt,
511 .flags = IRQF_PERCPU,
512 .name = "IPI resched"
513};
514
515static struct irqaction irq_call = {
516 .handler = ipi_call_interrupt,
517 .flags = IRQF_PERCPU,
518 .name = "IPI call"
519};
520
521static __init void gic_ipi_init_one(unsigned int intr, int cpu,
522 struct irqaction *action)
523{
Andrew Brestickere9de6882014-09-18 14:47:27 -0700524 int virq = irq_create_mapping(gic_irq_domain,
525 GIC_SHARED_TO_HWIRQ(intr));
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700526 int i;
Steven J. Hill98b67c32012-08-31 16:18:49 -0500527
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700528 gic_map_to_vpe(intr, cpu);
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700529 for (i = 0; i < NR_CPUS; i++)
530 clear_bit(intr, pcpu_masks[i].pcpu_mask);
Jeffrey Deansb0a88ae2014-07-17 09:20:55 +0100531 set_bit(intr, pcpu_masks[cpu].pcpu_mask);
532
Andrew Bresticker18743d22014-09-18 14:47:24 -0700533 irq_set_irq_type(virq, IRQ_TYPE_EDGE_RISING);
534
535 irq_set_handler(virq, handle_percpu_irq);
536 setup_irq(virq, action);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100537}
538
Andrew Bresticker18743d22014-09-18 14:47:24 -0700539static __init void gic_ipi_init(void)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100540{
Andrew Bresticker18743d22014-09-18 14:47:24 -0700541 int i;
542
543 /* Use last 2 * NR_CPUS interrupts as IPIs */
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700544 gic_resched_int_base = gic_shared_intrs - nr_cpu_ids;
Andrew Bresticker18743d22014-09-18 14:47:24 -0700545 gic_call_int_base = gic_resched_int_base - nr_cpu_ids;
546
547 for (i = 0; i < nr_cpu_ids; i++) {
548 gic_ipi_init_one(gic_call_int_base + i, i, &irq_call);
549 gic_ipi_init_one(gic_resched_int_base + i, i, &irq_resched);
550 }
551}
552#else
553static inline void gic_ipi_init(void)
554{
555}
556#endif
557
Andrew Brestickere9de6882014-09-18 14:47:27 -0700558static void __init gic_basic_init(void)
Andrew Bresticker18743d22014-09-18 14:47:24 -0700559{
560 unsigned int i;
Steven J. Hill98b67c32012-08-31 16:18:49 -0500561
562 board_bind_eic_interrupt = &gic_bind_eic_interrupt;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100563
564 /* Setup defaults */
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700565 for (i = 0; i < gic_shared_intrs; i++) {
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700566 gic_set_polarity(i, GIC_POL_POS);
567 gic_set_trigger(i, GIC_TRIG_LEVEL);
568 gic_reset_mask(i);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100569 }
570
Andrew Brestickere9de6882014-09-18 14:47:27 -0700571 for (i = 0; i < gic_vpes; i++) {
572 unsigned int j;
573
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700574 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700575 for (j = 0; j < GIC_NUM_LOCAL_INTRS; j++) {
576 if (!gic_local_irq_is_routable(j))
577 continue;
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700578 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_RMASK), 1 << j);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700579 }
580 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100581}
582
Andrew Brestickere9de6882014-09-18 14:47:27 -0700583static int gic_local_irq_domain_map(struct irq_domain *d, unsigned int virq,
584 irq_hw_number_t hw)
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700585{
Andrew Brestickere9de6882014-09-18 14:47:27 -0700586 int intr = GIC_HWIRQ_TO_LOCAL(hw);
587 int ret = 0;
588 int i;
589 unsigned long flags;
590
591 if (!gic_local_irq_is_routable(intr))
592 return -EPERM;
593
594 /*
595 * HACK: These are all really percpu interrupts, but the rest
596 * of the MIPS kernel code does not use the percpu IRQ API for
597 * the CP0 timer and performance counter interrupts.
598 */
599 if (intr != GIC_LOCAL_INT_TIMER && intr != GIC_LOCAL_INT_PERFCTR) {
600 irq_set_chip_and_handler(virq,
601 &gic_local_irq_controller,
602 handle_percpu_devid_irq);
603 irq_set_percpu_devid(virq);
604 } else {
605 irq_set_chip_and_handler(virq,
606 &gic_all_vpes_local_irq_controller,
607 handle_percpu_irq);
608 }
609
610 spin_lock_irqsave(&gic_lock, flags);
611 for (i = 0; i < gic_vpes; i++) {
612 u32 val = GIC_MAP_TO_PIN_MSK | gic_cpu_pin;
613
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700614 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700615
616 switch (intr) {
617 case GIC_LOCAL_INT_WD:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700618 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_WD_MAP), val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700619 break;
620 case GIC_LOCAL_INT_COMPARE:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700621 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_MAP), val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700622 break;
623 case GIC_LOCAL_INT_TIMER:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700624 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_TIMER_MAP), val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700625 break;
626 case GIC_LOCAL_INT_PERFCTR:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700627 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_PERFCTR_MAP), val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700628 break;
629 case GIC_LOCAL_INT_SWINT0:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700630 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_SWINT0_MAP), val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700631 break;
632 case GIC_LOCAL_INT_SWINT1:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700633 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_SWINT1_MAP), val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700634 break;
635 case GIC_LOCAL_INT_FDC:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700636 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_FDC_MAP), val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700637 break;
638 default:
639 pr_err("Invalid local IRQ %d\n", intr);
640 ret = -EINVAL;
641 break;
642 }
643 }
644 spin_unlock_irqrestore(&gic_lock, flags);
645
646 return ret;
647}
648
649static int gic_shared_irq_domain_map(struct irq_domain *d, unsigned int virq,
650 irq_hw_number_t hw)
651{
652 int intr = GIC_HWIRQ_TO_SHARED(hw);
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700653 unsigned long flags;
654
Andrew Bresticker4a6a3ea32014-09-18 14:47:26 -0700655 irq_set_chip_and_handler(virq, &gic_level_irq_controller,
656 handle_level_irq);
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700657
658 spin_lock_irqsave(&gic_lock, flags);
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700659 gic_map_to_pin(intr, gic_cpu_pin);
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700660 /* Map to VPE 0 by default */
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700661 gic_map_to_vpe(intr, 0);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700662 set_bit(intr, pcpu_masks[0].pcpu_mask);
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700663 spin_unlock_irqrestore(&gic_lock, flags);
664
665 return 0;
666}
667
Andrew Brestickere9de6882014-09-18 14:47:27 -0700668static int gic_irq_domain_map(struct irq_domain *d, unsigned int virq,
669 irq_hw_number_t hw)
670{
671 if (GIC_HWIRQ_TO_LOCAL(hw) < GIC_NUM_LOCAL_INTRS)
672 return gic_local_irq_domain_map(d, virq, hw);
673 return gic_shared_irq_domain_map(d, virq, hw);
674}
675
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700676static struct irq_domain_ops gic_irq_domain_ops = {
677 .map = gic_irq_domain_map,
678 .xlate = irq_domain_xlate_twocell,
679};
680
Ralf Baechle39b8d522008-04-28 17:14:26 +0100681void __init gic_init(unsigned long gic_base_addr,
Andrew Bresticker18743d22014-09-18 14:47:24 -0700682 unsigned long gic_addrspace_size, unsigned int cpu_vec,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100683 unsigned int irqbase)
684{
685 unsigned int gicconfig;
686
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700687 gic_base = ioremap_nocache(gic_base_addr, gic_addrspace_size);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100688
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700689 gicconfig = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG));
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700690 gic_shared_intrs = (gicconfig & GIC_SH_CONFIG_NUMINTRS_MSK) >>
Ralf Baechle39b8d522008-04-28 17:14:26 +0100691 GIC_SH_CONFIG_NUMINTRS_SHF;
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700692 gic_shared_intrs = ((gic_shared_intrs + 1) * 8);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100693
Andrew Brestickere9de6882014-09-18 14:47:27 -0700694 gic_vpes = (gicconfig & GIC_SH_CONFIG_NUMVPES_MSK) >>
Ralf Baechle39b8d522008-04-28 17:14:26 +0100695 GIC_SH_CONFIG_NUMVPES_SHF;
Andrew Brestickere9de6882014-09-18 14:47:27 -0700696 gic_vpes = gic_vpes + 1;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100697
Andrew Bresticker18743d22014-09-18 14:47:24 -0700698 if (cpu_has_veic) {
699 /* Always use vector 1 in EIC mode */
700 gic_cpu_pin = 0;
701 set_vi_handler(gic_cpu_pin + GIC_PIN_TO_VEC_OFFSET,
702 __gic_irq_dispatch);
703 } else {
704 gic_cpu_pin = cpu_vec - GIC_CPU_PIN_OFFSET;
705 irq_set_chained_handler(MIPS_CPU_IRQ_BASE + cpu_vec,
706 gic_irq_dispatch);
707 }
708
Andrew Brestickere9de6882014-09-18 14:47:27 -0700709 gic_irq_domain = irq_domain_add_simple(NULL, GIC_NUM_LOCAL_INTRS +
710 gic_shared_intrs, irqbase,
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700711 &gic_irq_domain_ops, NULL);
712 if (!gic_irq_domain)
713 panic("Failed to add GIC IRQ domain");
Steven J. Hill0b271f52012-08-31 16:05:37 -0500714
Andrew Brestickere9de6882014-09-18 14:47:27 -0700715 gic_basic_init();
Andrew Bresticker18743d22014-09-18 14:47:24 -0700716
717 gic_ipi_init();
Ralf Baechle39b8d522008-04-28 17:14:26 +0100718}