blob: abf696b49dd73bea04826e0229241cbd36578907 [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>
Joel Porquet41a83e02015-07-07 17:11:46 -040014#include <linux/irqchip.h>
Andrew Bresticker4060bbe2014-10-20 12:03:53 -070015#include <linux/irqchip/mips-gic.h>
Andrew Brestickera7057272014-11-12 11:43:38 -080016#include <linux/of_address.h>
Andrew Bresticker18743d22014-09-18 14:47:24 -070017#include <linux/sched.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010018#include <linux/smp.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010019
Andrew Brestickera7057272014-11-12 11:43:38 -080020#include <asm/mips-cm.h>
Steven J. Hill98b67c32012-08-31 16:18:49 -050021#include <asm/setup.h>
22#include <asm/traps.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010023
Andrew Brestickera7057272014-11-12 11:43:38 -080024#include <dt-bindings/interrupt-controller/mips-gic.h>
25
Steven J. Hillff867142013-04-10 16:27:04 -050026unsigned int gic_present;
Steven J. Hill98b67c32012-08-31 16:18:49 -050027
Jeffrey Deans822350b2014-07-17 09:20:53 +010028struct gic_pcpu_mask {
Andrew Brestickerfbd55242014-09-18 14:47:25 -070029 DECLARE_BITMAP(pcpu_mask, GIC_MAX_INTRS);
Jeffrey Deans822350b2014-07-17 09:20:53 +010030};
31
Qais Yousef2af70a92015-12-08 13:20:23 +000032struct gic_irq_spec {
33 enum {
34 GIC_DEVICE,
35 GIC_IPI
36 } type;
37
38 union {
39 struct cpumask *ipimask;
40 unsigned int hwirq;
41 };
42};
43
Alex Smithc0a9f722015-10-12 10:40:43 +010044static unsigned long __gic_base_addr;
Qais Yousef2af70a92015-12-08 13:20:23 +000045
Andrew Bresticker5f68fea2014-10-20 12:03:52 -070046static void __iomem *gic_base;
Steven J. Hill0b271f52012-08-31 16:05:37 -050047static struct gic_pcpu_mask pcpu_masks[NR_CPUS];
Andrew Bresticker95150ae2014-09-18 14:47:21 -070048static DEFINE_SPINLOCK(gic_lock);
Andrew Brestickerc49581a2014-09-18 14:47:23 -070049static struct irq_domain *gic_irq_domain;
Qais Yousefc98c18222015-12-08 13:20:24 +000050static struct irq_domain *gic_dev_domain;
Qais Yousef2af70a92015-12-08 13:20:23 +000051static struct irq_domain *gic_ipi_domain;
Andrew Brestickerfbd55242014-09-18 14:47:25 -070052static int gic_shared_intrs;
Andrew Brestickere9de6882014-09-18 14:47:27 -070053static int gic_vpes;
Andrew Bresticker3263d082014-09-18 14:47:28 -070054static unsigned int gic_cpu_pin;
James Hogan1b6af712015-01-19 15:38:24 +000055static unsigned int timer_cpu_pin;
Andrew Bresticker4a6a3ea32014-09-18 14:47:26 -070056static struct irq_chip gic_level_irq_controller, gic_edge_irq_controller;
Qais Yousef2af70a92015-12-08 13:20:23 +000057DECLARE_BITMAP(ipi_resrv, GIC_MAX_INTRS);
Paul Burton994f3162017-04-20 10:07:34 +010058DECLARE_BITMAP(ipi_available, GIC_MAX_INTRS);
Ralf Baechle39b8d522008-04-28 17:14:26 +010059
Andrew Bresticker18743d22014-09-18 14:47:24 -070060static void __gic_irq_dispatch(void);
61
Markos Chandrasc3f57f02015-07-14 10:26:09 +010062static inline u32 gic_read32(unsigned int reg)
Andrew Bresticker5f68fea2014-10-20 12:03:52 -070063{
64 return __raw_readl(gic_base + reg);
65}
66
Markos Chandrasc3f57f02015-07-14 10:26:09 +010067static inline u64 gic_read64(unsigned int reg)
Andrew Bresticker5f68fea2014-10-20 12:03:52 -070068{
Markos Chandrasc3f57f02015-07-14 10:26:09 +010069 return __raw_readq(gic_base + reg);
Andrew Bresticker5f68fea2014-10-20 12:03:52 -070070}
71
Markos Chandrasc3f57f02015-07-14 10:26:09 +010072static inline unsigned long gic_read(unsigned int reg)
Andrew Bresticker5f68fea2014-10-20 12:03:52 -070073{
Markos Chandrasc3f57f02015-07-14 10:26:09 +010074 if (!mips_cm_is64)
75 return gic_read32(reg);
76 else
77 return gic_read64(reg);
78}
79
80static inline void gic_write32(unsigned int reg, u32 val)
81{
82 return __raw_writel(val, gic_base + reg);
83}
84
85static inline void gic_write64(unsigned int reg, u64 val)
86{
87 return __raw_writeq(val, gic_base + reg);
88}
89
90static inline void gic_write(unsigned int reg, unsigned long val)
91{
92 if (!mips_cm_is64)
93 return gic_write32(reg, (u32)val);
94 else
95 return gic_write64(reg, (u64)val);
96}
97
98static inline void gic_update_bits(unsigned int reg, unsigned long mask,
99 unsigned long val)
100{
101 unsigned long regval;
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700102
103 regval = gic_read(reg);
104 regval &= ~mask;
105 regval |= val;
106 gic_write(reg, regval);
107}
108
109static inline void gic_reset_mask(unsigned int intr)
110{
111 gic_write(GIC_REG(SHARED, GIC_SH_RMASK) + GIC_INTR_OFS(intr),
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100112 1ul << GIC_INTR_BIT(intr));
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700113}
114
115static inline void gic_set_mask(unsigned int intr)
116{
117 gic_write(GIC_REG(SHARED, GIC_SH_SMASK) + GIC_INTR_OFS(intr),
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100118 1ul << GIC_INTR_BIT(intr));
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700119}
120
121static inline void gic_set_polarity(unsigned int intr, unsigned int pol)
122{
123 gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_POLARITY) +
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100124 GIC_INTR_OFS(intr), 1ul << GIC_INTR_BIT(intr),
125 (unsigned long)pol << GIC_INTR_BIT(intr));
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700126}
127
128static inline void gic_set_trigger(unsigned int intr, unsigned int trig)
129{
130 gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_TRIGGER) +
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100131 GIC_INTR_OFS(intr), 1ul << GIC_INTR_BIT(intr),
132 (unsigned long)trig << GIC_INTR_BIT(intr));
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700133}
134
135static inline void gic_set_dual_edge(unsigned int intr, unsigned int dual)
136{
137 gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_DUAL) + GIC_INTR_OFS(intr),
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100138 1ul << GIC_INTR_BIT(intr),
139 (unsigned long)dual << GIC_INTR_BIT(intr));
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700140}
141
142static inline void gic_map_to_pin(unsigned int intr, unsigned int pin)
143{
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100144 gic_write32(GIC_REG(SHARED, GIC_SH_INTR_MAP_TO_PIN_BASE) +
145 GIC_SH_MAP_TO_PIN(intr), GIC_MAP_TO_PIN_MSK | pin);
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700146}
147
148static inline void gic_map_to_vpe(unsigned int intr, unsigned int vpe)
149{
150 gic_write(GIC_REG(SHARED, GIC_SH_INTR_MAP_TO_VPE_BASE) +
151 GIC_SH_MAP_TO_VPE_REG_OFF(intr, vpe),
152 GIC_SH_MAP_TO_VPE_REG_BIT(vpe));
153}
154
Andrew Brestickera331ce62014-10-20 12:03:59 -0700155#ifdef CONFIG_CLKSRC_MIPS_GIC
Steven J. Hilldfa762e2013-04-10 16:28:36 -0500156cycle_t gic_read_count(void)
157{
158 unsigned int hi, hi2, lo;
159
Markos Chandras6f50c832015-07-09 10:40:49 +0100160 if (mips_cm_is64)
161 return (cycle_t)gic_read(GIC_REG(SHARED, GIC_SH_COUNTER));
162
Steven J. Hilldfa762e2013-04-10 16:28:36 -0500163 do {
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100164 hi = gic_read32(GIC_REG(SHARED, GIC_SH_COUNTER_63_32));
165 lo = gic_read32(GIC_REG(SHARED, GIC_SH_COUNTER_31_00));
166 hi2 = gic_read32(GIC_REG(SHARED, GIC_SH_COUNTER_63_32));
Steven J. Hilldfa762e2013-04-10 16:28:36 -0500167 } while (hi2 != hi);
168
169 return (((cycle_t) hi) << 32) + lo;
170}
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500171
Andrew Bresticker387904f2014-10-20 12:03:49 -0700172unsigned int gic_get_count_width(void)
173{
174 unsigned int bits, config;
175
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700176 config = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG));
Andrew Bresticker387904f2014-10-20 12:03:49 -0700177 bits = 32 + 4 * ((config & GIC_SH_CONFIG_COUNTBITS_MSK) >>
178 GIC_SH_CONFIG_COUNTBITS_SHF);
179
180 return bits;
181}
182
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500183void gic_write_compare(cycle_t cnt)
184{
Markos Chandras6f50c832015-07-09 10:40:49 +0100185 if (mips_cm_is64) {
186 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE), cnt);
187 } else {
188 gic_write32(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_HI),
189 (int)(cnt >> 32));
190 gic_write32(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_LO),
191 (int)(cnt & 0xffffffff));
192 }
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500193}
194
Paul Burton414408d02014-03-05 11:35:53 +0000195void gic_write_cpu_compare(cycle_t cnt, int cpu)
196{
197 unsigned long flags;
198
199 local_irq_save(flags);
200
Paul Burtond46812b2016-02-03 03:15:27 +0000201 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), mips_cm_vp_id(cpu));
Markos Chandras6f50c832015-07-09 10:40:49 +0100202
203 if (mips_cm_is64) {
204 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE), cnt);
205 } else {
206 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_HI),
207 (int)(cnt >> 32));
208 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_LO),
209 (int)(cnt & 0xffffffff));
210 }
Paul Burton414408d02014-03-05 11:35:53 +0000211
212 local_irq_restore(flags);
213}
214
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500215cycle_t gic_read_compare(void)
216{
217 unsigned int hi, lo;
218
Markos Chandras6f50c832015-07-09 10:40:49 +0100219 if (mips_cm_is64)
220 return (cycle_t)gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE));
221
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100222 hi = gic_read32(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_HI));
223 lo = gic_read32(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_LO));
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500224
225 return (((cycle_t) hi) << 32) + lo;
226}
Markos Chandras8fa4b932015-03-23 12:32:01 +0000227
228void gic_start_count(void)
229{
230 u32 gicconfig;
231
232 /* Start the counter */
233 gicconfig = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG));
234 gicconfig &= ~(1 << GIC_SH_CONFIG_COUNTSTOP_SHF);
235 gic_write(GIC_REG(SHARED, GIC_SH_CONFIG), gicconfig);
236}
237
238void gic_stop_count(void)
239{
240 u32 gicconfig;
241
242 /* Stop the counter */
243 gicconfig = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG));
244 gicconfig |= 1 << GIC_SH_CONFIG_COUNTSTOP_SHF;
245 gic_write(GIC_REG(SHARED, GIC_SH_CONFIG), gicconfig);
246}
247
Steven J. Hilldfa762e2013-04-10 16:28:36 -0500248#endif
249
Paul Burton835d2b42016-02-03 03:15:28 +0000250unsigned gic_read_local_vp_id(void)
251{
252 unsigned long ident;
253
254 ident = gic_read(GIC_REG(VPE_LOCAL, GIC_VP_IDENT));
255 return ident & GIC_VP_IDENT_VCNUM_MSK;
256}
257
Andrew Brestickere9de6882014-09-18 14:47:27 -0700258static bool gic_local_irq_is_routable(int intr)
259{
260 u32 vpe_ctl;
261
262 /* All local interrupts are routable in EIC mode. */
263 if (cpu_has_veic)
264 return true;
265
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100266 vpe_ctl = gic_read32(GIC_REG(VPE_LOCAL, GIC_VPE_CTL));
Andrew Brestickere9de6882014-09-18 14:47:27 -0700267 switch (intr) {
268 case GIC_LOCAL_INT_TIMER:
269 return vpe_ctl & GIC_VPE_CTL_TIMER_RTBL_MSK;
270 case GIC_LOCAL_INT_PERFCTR:
271 return vpe_ctl & GIC_VPE_CTL_PERFCNT_RTBL_MSK;
272 case GIC_LOCAL_INT_FDC:
273 return vpe_ctl & GIC_VPE_CTL_FDC_RTBL_MSK;
274 case GIC_LOCAL_INT_SWINT0:
275 case GIC_LOCAL_INT_SWINT1:
276 return vpe_ctl & GIC_VPE_CTL_SWINT_RTBL_MSK;
277 default:
278 return true;
279 }
280}
281
Andrew Bresticker3263d082014-09-18 14:47:28 -0700282static void gic_bind_eic_interrupt(int irq, int set)
Steven J. Hill98b67c32012-08-31 16:18:49 -0500283{
284 /* Convert irq vector # to hw int # */
285 irq -= GIC_PIN_TO_VEC_OFFSET;
286
287 /* Set irq to use shadow set */
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700288 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_EIC_SHADOW_SET_BASE) +
289 GIC_VPE_EIC_SS(irq), set);
Steven J. Hill98b67c32012-08-31 16:18:49 -0500290}
291
Qais Yousefbb11cff2015-12-08 13:20:28 +0000292static void gic_send_ipi(struct irq_data *d, unsigned int cpu)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100293{
Qais Yousefbb11cff2015-12-08 13:20:28 +0000294 irq_hw_number_t hwirq = GIC_HWIRQ_TO_SHARED(irqd_to_hwirq(d));
295
296 gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), GIC_SH_WEDGE_SET(hwirq));
Ralf Baechle39b8d522008-04-28 17:14:26 +0100297}
298
Andrew Brestickere9de6882014-09-18 14:47:27 -0700299int gic_get_c0_compare_int(void)
300{
301 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_TIMER))
302 return MIPS_CPU_IRQ_BASE + cp0_compare_irq;
303 return irq_create_mapping(gic_irq_domain,
304 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_TIMER));
305}
306
307int gic_get_c0_perfcount_int(void)
308{
309 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_PERFCTR)) {
James Hogan7e3e6cb2015-01-27 21:45:50 +0000310 /* Is the performance counter shared with the timer? */
Andrew Brestickere9de6882014-09-18 14:47:27 -0700311 if (cp0_perfcount_irq < 0)
312 return -1;
313 return MIPS_CPU_IRQ_BASE + cp0_perfcount_irq;
314 }
315 return irq_create_mapping(gic_irq_domain,
316 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_PERFCTR));
317}
318
James Hogan6429e2b2015-01-29 11:14:09 +0000319int gic_get_c0_fdc_int(void)
320{
321 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_FDC)) {
322 /* Is the FDC IRQ even present? */
323 if (cp0_fdc_irq < 0)
324 return -1;
325 return MIPS_CPU_IRQ_BASE + cp0_fdc_irq;
326 }
327
James Hogan6429e2b2015-01-29 11:14:09 +0000328 return irq_create_mapping(gic_irq_domain,
329 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_FDC));
330}
331
Alex Smithc0a9f722015-10-12 10:40:43 +0100332int gic_get_usm_range(struct resource *gic_usm_res)
333{
334 if (!gic_present)
335 return -1;
336
337 gic_usm_res->start = __gic_base_addr + USM_VISIBLE_SECTION_OFS;
338 gic_usm_res->end = gic_usm_res->start + (USM_VISIBLE_SECTION_SIZE - 1);
339
340 return 0;
341}
342
Rabin Vincent1b3ed362015-06-12 10:01:56 +0200343static void gic_handle_shared_int(bool chained)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100344{
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100345 unsigned int i, intr, virq, gic_reg_step = mips_cm_is64 ? 8 : 4;
Andrew Bresticker8f5ee792014-10-20 12:03:56 -0700346 unsigned long *pcpu_mask;
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700347 unsigned long pending_reg, intrmask_reg;
Andrew Bresticker8f5ee792014-10-20 12:03:56 -0700348 DECLARE_BITMAP(pending, GIC_MAX_INTRS);
349 DECLARE_BITMAP(intrmask, GIC_MAX_INTRS);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100350
351 /* Get per-cpu bitmaps */
Ralf Baechle39b8d522008-04-28 17:14:26 +0100352 pcpu_mask = pcpu_masks[smp_processor_id()].pcpu_mask;
353
Andrew Bresticker824f3f72014-10-20 12:03:54 -0700354 pending_reg = GIC_REG(SHARED, GIC_SH_PEND);
355 intrmask_reg = GIC_REG(SHARED, GIC_SH_MASK);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100356
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700357 for (i = 0; i < BITS_TO_LONGS(gic_shared_intrs); i++) {
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700358 pending[i] = gic_read(pending_reg);
359 intrmask[i] = gic_read(intrmask_reg);
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100360 pending_reg += gic_reg_step;
361 intrmask_reg += gic_reg_step;
Paul Burtond77d5ac2015-09-22 11:29:11 -0700362
Masahiro Yamada97f26452016-08-03 13:45:50 -0700363 if (!IS_ENABLED(CONFIG_64BIT) || mips_cm_is64)
Paul Burtond77d5ac2015-09-22 11:29:11 -0700364 continue;
365
366 pending[i] |= (u64)gic_read(pending_reg) << 32;
367 intrmask[i] |= (u64)gic_read(intrmask_reg) << 32;
368 pending_reg += gic_reg_step;
369 intrmask_reg += gic_reg_step;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100370 }
371
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700372 bitmap_and(pending, pending, intrmask, gic_shared_intrs);
373 bitmap_and(pending, pending, pcpu_mask, gic_shared_intrs);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100374
Paul Burtoncae750b2016-08-19 18:11:19 +0100375 for_each_set_bit(intr, pending, gic_shared_intrs) {
Qais Yousefd7eb4f22015-01-19 11:51:29 +0000376 virq = irq_linear_revmap(gic_irq_domain,
377 GIC_SHARED_TO_HWIRQ(intr));
Rabin Vincent1b3ed362015-06-12 10:01:56 +0200378 if (chained)
379 generic_handle_irq(virq);
380 else
381 do_IRQ(virq);
Qais Yousefd7eb4f22015-01-19 11:51:29 +0000382 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100383}
384
Thomas Gleixner161d0492011-03-23 21:08:58 +0000385static void gic_mask_irq(struct irq_data *d)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100386{
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700387 gic_reset_mask(GIC_HWIRQ_TO_SHARED(d->hwirq));
Ralf Baechle39b8d522008-04-28 17:14:26 +0100388}
389
Thomas Gleixner161d0492011-03-23 21:08:58 +0000390static void gic_unmask_irq(struct irq_data *d)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100391{
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700392 gic_set_mask(GIC_HWIRQ_TO_SHARED(d->hwirq));
Ralf Baechle39b8d522008-04-28 17:14:26 +0100393}
394
Andrew Bresticker5561c9e2014-09-18 14:47:20 -0700395static void gic_ack_irq(struct irq_data *d)
396{
Andrew Brestickere9de6882014-09-18 14:47:27 -0700397 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700398
Andrew Bresticker53a7bc82014-10-20 12:03:57 -0700399 gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), GIC_SH_WEDGE_CLR(irq));
Andrew Bresticker5561c9e2014-09-18 14:47:20 -0700400}
401
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700402static int gic_set_type(struct irq_data *d, unsigned int type)
403{
Andrew Brestickere9de6882014-09-18 14:47:27 -0700404 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700405 unsigned long flags;
406 bool is_edge;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100407
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700408 spin_lock_irqsave(&gic_lock, flags);
409 switch (type & IRQ_TYPE_SENSE_MASK) {
410 case IRQ_TYPE_EDGE_FALLING:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700411 gic_set_polarity(irq, GIC_POL_NEG);
412 gic_set_trigger(irq, GIC_TRIG_EDGE);
413 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700414 is_edge = true;
415 break;
416 case IRQ_TYPE_EDGE_RISING:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700417 gic_set_polarity(irq, GIC_POL_POS);
418 gic_set_trigger(irq, GIC_TRIG_EDGE);
419 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700420 is_edge = true;
421 break;
422 case IRQ_TYPE_EDGE_BOTH:
423 /* polarity is irrelevant in this case */
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700424 gic_set_trigger(irq, GIC_TRIG_EDGE);
425 gic_set_dual_edge(irq, GIC_TRIG_DUAL_ENABLE);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700426 is_edge = true;
427 break;
428 case IRQ_TYPE_LEVEL_LOW:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700429 gic_set_polarity(irq, GIC_POL_NEG);
430 gic_set_trigger(irq, GIC_TRIG_LEVEL);
431 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700432 is_edge = false;
433 break;
434 case IRQ_TYPE_LEVEL_HIGH:
435 default:
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700436 gic_set_polarity(irq, GIC_POL_POS);
437 gic_set_trigger(irq, GIC_TRIG_LEVEL);
438 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700439 is_edge = false;
440 break;
441 }
442
Thomas Gleixnera595fc52015-06-23 14:41:25 +0200443 if (is_edge)
444 irq_set_chip_handler_name_locked(d, &gic_edge_irq_controller,
445 handle_edge_irq, NULL);
446 else
447 irq_set_chip_handler_name_locked(d, &gic_level_irq_controller,
448 handle_level_irq, NULL);
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700449 spin_unlock_irqrestore(&gic_lock, flags);
450
451 return 0;
452}
453
454#ifdef CONFIG_SMP
Thomas Gleixner161d0492011-03-23 21:08:58 +0000455static int gic_set_affinity(struct irq_data *d, const struct cpumask *cpumask,
456 bool force)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100457{
Andrew Brestickere9de6882014-09-18 14:47:27 -0700458 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100459 cpumask_t tmp = CPU_MASK_NONE;
460 unsigned long flags;
461 int i;
462
Rusty Russell0de26522008-12-13 21:20:26 +1030463 cpumask_and(&tmp, cpumask, cpu_online_mask);
Rusty Russellf9b531f2015-03-05 10:49:16 +1030464 if (cpumask_empty(&tmp))
Andrew Bresticker14d160a2014-09-18 14:47:22 -0700465 return -EINVAL;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100466
467 /* Assumption : cpumask refers to a single CPU */
468 spin_lock_irqsave(&gic_lock, flags);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100469
Tony Wuc214c032013-06-21 10:13:08 +0000470 /* Re-route this IRQ */
Paul Burtonab41f6c2015-09-22 11:29:10 -0700471 gic_map_to_vpe(irq, mips_cm_vp_id(cpumask_first(&tmp)));
Ralf Baechle39b8d522008-04-28 17:14:26 +0100472
Tony Wuc214c032013-06-21 10:13:08 +0000473 /* Update the pcpu_masks */
Paul Burton91951f92016-04-21 11:31:54 +0100474 for (i = 0; i < min(gic_vpes, NR_CPUS); i++)
Tony Wuc214c032013-06-21 10:13:08 +0000475 clear_bit(irq, pcpu_masks[i].pcpu_mask);
Rusty Russellf9b531f2015-03-05 10:49:16 +1030476 set_bit(irq, pcpu_masks[cpumask_first(&tmp)].pcpu_mask);
Tony Wuc214c032013-06-21 10:13:08 +0000477
Jiang Liu72f86db2015-06-01 16:05:38 +0800478 cpumask_copy(irq_data_get_affinity_mask(d), cpumask);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100479 spin_unlock_irqrestore(&gic_lock, flags);
480
Thomas Gleixner161d0492011-03-23 21:08:58 +0000481 return IRQ_SET_MASK_OK_NOCOPY;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100482}
483#endif
484
Andrew Bresticker4a6a3ea32014-09-18 14:47:26 -0700485static struct irq_chip gic_level_irq_controller = {
486 .name = "MIPS GIC",
487 .irq_mask = gic_mask_irq,
488 .irq_unmask = gic_unmask_irq,
489 .irq_set_type = gic_set_type,
490#ifdef CONFIG_SMP
491 .irq_set_affinity = gic_set_affinity,
492#endif
493};
494
495static struct irq_chip gic_edge_irq_controller = {
Thomas Gleixner161d0492011-03-23 21:08:58 +0000496 .name = "MIPS GIC",
Andrew Bresticker5561c9e2014-09-18 14:47:20 -0700497 .irq_ack = gic_ack_irq,
Thomas Gleixner161d0492011-03-23 21:08:58 +0000498 .irq_mask = gic_mask_irq,
Thomas Gleixner161d0492011-03-23 21:08:58 +0000499 .irq_unmask = gic_unmask_irq,
Andrew Bresticker95150ae2014-09-18 14:47:21 -0700500 .irq_set_type = gic_set_type,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100501#ifdef CONFIG_SMP
Thomas Gleixner161d0492011-03-23 21:08:58 +0000502 .irq_set_affinity = gic_set_affinity,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100503#endif
Qais Yousefbb11cff2015-12-08 13:20:28 +0000504 .ipi_send_single = gic_send_ipi,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100505};
506
Rabin Vincent1b3ed362015-06-12 10:01:56 +0200507static void gic_handle_local_int(bool chained)
Andrew Brestickere9de6882014-09-18 14:47:27 -0700508{
509 unsigned long pending, masked;
Qais Yousefd7eb4f22015-01-19 11:51:29 +0000510 unsigned int intr, virq;
Andrew Brestickere9de6882014-09-18 14:47:27 -0700511
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100512 pending = gic_read32(GIC_REG(VPE_LOCAL, GIC_VPE_PEND));
513 masked = gic_read32(GIC_REG(VPE_LOCAL, GIC_VPE_MASK));
Andrew Brestickere9de6882014-09-18 14:47:27 -0700514
515 bitmap_and(&pending, &pending, &masked, GIC_NUM_LOCAL_INTRS);
516
Paul Burton0f4ed152016-09-13 17:54:27 +0100517 for_each_set_bit(intr, &pending, GIC_NUM_LOCAL_INTRS) {
Qais Yousefd7eb4f22015-01-19 11:51:29 +0000518 virq = irq_linear_revmap(gic_irq_domain,
519 GIC_LOCAL_TO_HWIRQ(intr));
Rabin Vincent1b3ed362015-06-12 10:01:56 +0200520 if (chained)
521 generic_handle_irq(virq);
522 else
523 do_IRQ(virq);
Qais Yousefd7eb4f22015-01-19 11:51:29 +0000524 }
Andrew Brestickere9de6882014-09-18 14:47:27 -0700525}
526
527static void gic_mask_local_irq(struct irq_data *d)
528{
529 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
530
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100531 gic_write32(GIC_REG(VPE_LOCAL, GIC_VPE_RMASK), 1 << intr);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700532}
533
534static void gic_unmask_local_irq(struct irq_data *d)
535{
536 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
537
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100538 gic_write32(GIC_REG(VPE_LOCAL, GIC_VPE_SMASK), 1 << intr);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700539}
540
541static struct irq_chip gic_local_irq_controller = {
542 .name = "MIPS GIC Local",
543 .irq_mask = gic_mask_local_irq,
544 .irq_unmask = gic_unmask_local_irq,
545};
546
547static void gic_mask_local_irq_all_vpes(struct irq_data *d)
548{
549 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
550 int i;
551 unsigned long flags;
552
553 spin_lock_irqsave(&gic_lock, flags);
554 for (i = 0; i < gic_vpes; i++) {
Paul Burtond46812b2016-02-03 03:15:27 +0000555 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR),
556 mips_cm_vp_id(i));
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100557 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_RMASK), 1 << intr);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700558 }
559 spin_unlock_irqrestore(&gic_lock, flags);
560}
561
562static void gic_unmask_local_irq_all_vpes(struct irq_data *d)
563{
564 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
565 int i;
566 unsigned long flags;
567
568 spin_lock_irqsave(&gic_lock, flags);
569 for (i = 0; i < gic_vpes; i++) {
Paul Burtond46812b2016-02-03 03:15:27 +0000570 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR),
571 mips_cm_vp_id(i));
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100572 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_SMASK), 1 << intr);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700573 }
574 spin_unlock_irqrestore(&gic_lock, flags);
575}
576
577static struct irq_chip gic_all_vpes_local_irq_controller = {
578 .name = "MIPS GIC Local",
579 .irq_mask = gic_mask_local_irq_all_vpes,
580 .irq_unmask = gic_unmask_local_irq_all_vpes,
581};
582
Andrew Bresticker18743d22014-09-18 14:47:24 -0700583static void __gic_irq_dispatch(void)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100584{
Rabin Vincent1b3ed362015-06-12 10:01:56 +0200585 gic_handle_local_int(false);
586 gic_handle_shared_int(false);
Andrew Bresticker18743d22014-09-18 14:47:24 -0700587}
588
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200589static void gic_irq_dispatch(struct irq_desc *desc)
Andrew Bresticker18743d22014-09-18 14:47:24 -0700590{
Rabin Vincent1b3ed362015-06-12 10:01:56 +0200591 gic_handle_local_int(true);
592 gic_handle_shared_int(true);
Andrew Bresticker18743d22014-09-18 14:47:24 -0700593}
594
Andrew Brestickere9de6882014-09-18 14:47:27 -0700595static void __init gic_basic_init(void)
Andrew Bresticker18743d22014-09-18 14:47:24 -0700596{
597 unsigned int i;
Steven J. Hill98b67c32012-08-31 16:18:49 -0500598
599 board_bind_eic_interrupt = &gic_bind_eic_interrupt;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100600
601 /* Setup defaults */
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700602 for (i = 0; i < gic_shared_intrs; i++) {
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700603 gic_set_polarity(i, GIC_POL_POS);
604 gic_set_trigger(i, GIC_TRIG_LEVEL);
605 gic_reset_mask(i);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100606 }
607
Andrew Brestickere9de6882014-09-18 14:47:27 -0700608 for (i = 0; i < gic_vpes; i++) {
609 unsigned int j;
610
Paul Burtond46812b2016-02-03 03:15:27 +0000611 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR),
612 mips_cm_vp_id(i));
Andrew Brestickere9de6882014-09-18 14:47:27 -0700613 for (j = 0; j < GIC_NUM_LOCAL_INTRS; j++) {
614 if (!gic_local_irq_is_routable(j))
615 continue;
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100616 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_RMASK), 1 << j);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700617 }
618 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100619}
620
Andrew Brestickere9de6882014-09-18 14:47:27 -0700621static int gic_local_irq_domain_map(struct irq_domain *d, unsigned int virq,
622 irq_hw_number_t hw)
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700623{
Andrew Brestickere9de6882014-09-18 14:47:27 -0700624 int intr = GIC_HWIRQ_TO_LOCAL(hw);
625 int ret = 0;
626 int i;
627 unsigned long flags;
628
629 if (!gic_local_irq_is_routable(intr))
630 return -EPERM;
631
Andrew Brestickere9de6882014-09-18 14:47:27 -0700632 spin_lock_irqsave(&gic_lock, flags);
633 for (i = 0; i < gic_vpes; i++) {
634 u32 val = GIC_MAP_TO_PIN_MSK | gic_cpu_pin;
635
Paul Burtond46812b2016-02-03 03:15:27 +0000636 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR),
637 mips_cm_vp_id(i));
Andrew Brestickere9de6882014-09-18 14:47:27 -0700638
639 switch (intr) {
640 case GIC_LOCAL_INT_WD:
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100641 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_WD_MAP), val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700642 break;
643 case GIC_LOCAL_INT_COMPARE:
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100644 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_MAP),
645 val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700646 break;
647 case GIC_LOCAL_INT_TIMER:
James Hogan1b6af712015-01-19 15:38:24 +0000648 /* CONFIG_MIPS_CMP workaround (see __gic_init) */
649 val = GIC_MAP_TO_PIN_MSK | timer_cpu_pin;
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100650 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_TIMER_MAP),
651 val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700652 break;
653 case GIC_LOCAL_INT_PERFCTR:
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100654 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_PERFCTR_MAP),
655 val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700656 break;
657 case GIC_LOCAL_INT_SWINT0:
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100658 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_SWINT0_MAP),
659 val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700660 break;
661 case GIC_LOCAL_INT_SWINT1:
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100662 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_SWINT1_MAP),
663 val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700664 break;
665 case GIC_LOCAL_INT_FDC:
Markos Chandrasc3f57f02015-07-14 10:26:09 +0100666 gic_write32(GIC_REG(VPE_OTHER, GIC_VPE_FDC_MAP), val);
Andrew Brestickere9de6882014-09-18 14:47:27 -0700667 break;
668 default:
669 pr_err("Invalid local IRQ %d\n", intr);
670 ret = -EINVAL;
671 break;
672 }
673 }
674 spin_unlock_irqrestore(&gic_lock, flags);
675
676 return ret;
677}
678
679static int gic_shared_irq_domain_map(struct irq_domain *d, unsigned int virq,
Qais Yousef2af70a92015-12-08 13:20:23 +0000680 irq_hw_number_t hw, unsigned int vpe)
Andrew Brestickere9de6882014-09-18 14:47:27 -0700681{
682 int intr = GIC_HWIRQ_TO_SHARED(hw);
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700683 unsigned long flags;
Qais Yousef78930f02015-12-08 13:20:26 +0000684 int i;
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700685
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700686 spin_lock_irqsave(&gic_lock, flags);
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700687 gic_map_to_pin(intr, gic_cpu_pin);
Paul Burton99ec8a32016-07-05 14:25:59 +0100688 gic_map_to_vpe(intr, mips_cm_vp_id(vpe));
Paul Burton91951f92016-04-21 11:31:54 +0100689 for (i = 0; i < min(gic_vpes, NR_CPUS); i++)
Qais Yousef78930f02015-12-08 13:20:26 +0000690 clear_bit(intr, pcpu_masks[i].pcpu_mask);
Qais Yousef2af70a92015-12-08 13:20:23 +0000691 set_bit(intr, pcpu_masks[vpe].pcpu_mask);
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700692 spin_unlock_irqrestore(&gic_lock, flags);
693
694 return 0;
695}
696
Paul Burtone875bd62016-09-13 17:53:35 +0100697static int gic_setup_dev_chip(struct irq_domain *d, unsigned int virq,
698 unsigned int hwirq)
Andrew Brestickere9de6882014-09-18 14:47:27 -0700699{
Paul Burtone875bd62016-09-13 17:53:35 +0100700 struct irq_chip *chip;
701 int err;
Paul Burton6a33fa22016-08-19 18:07:14 +0100702
Paul Burtone875bd62016-09-13 17:53:35 +0100703 if (hwirq >= GIC_SHARED_HWIRQ_BASE) {
704 err = irq_domain_set_hwirq_and_chip(d, virq, hwirq,
705 &gic_level_irq_controller,
706 NULL);
707 } else {
708 switch (GIC_HWIRQ_TO_LOCAL(hwirq)) {
709 case GIC_LOCAL_INT_TIMER:
710 case GIC_LOCAL_INT_PERFCTR:
711 case GIC_LOCAL_INT_FDC:
712 /*
713 * HACK: These are all really percpu interrupts, but
714 * the rest of the MIPS kernel code does not use the
715 * percpu IRQ API for them.
716 */
717 chip = &gic_all_vpes_local_irq_controller;
718 irq_set_handler(virq, handle_percpu_irq);
719 break;
Paul Burton6a33fa22016-08-19 18:07:14 +0100720
Paul Burtone875bd62016-09-13 17:53:35 +0100721 default:
722 chip = &gic_local_irq_controller;
723 irq_set_handler(virq, handle_percpu_devid_irq);
724 irq_set_percpu_devid(virq);
725 break;
726 }
727
728 err = irq_domain_set_hwirq_and_chip(d, virq, hwirq,
729 chip, NULL);
730 }
731
732 return err;
Andrew Brestickere9de6882014-09-18 14:47:27 -0700733}
734
Qais Yousef2af70a92015-12-08 13:20:23 +0000735static int gic_irq_domain_alloc(struct irq_domain *d, unsigned int virq,
736 unsigned int nr_irqs, void *arg)
737{
738 struct gic_irq_spec *spec = arg;
739 irq_hw_number_t hwirq, base_hwirq;
740 int cpu, ret, i;
741
742 if (spec->type == GIC_DEVICE) {
Paul Burtone875bd62016-09-13 17:53:35 +0100743 /* verify that shared irqs don't conflict with an IPI irq */
744 if ((spec->hwirq >= GIC_SHARED_HWIRQ_BASE) &&
745 test_bit(GIC_HWIRQ_TO_SHARED(spec->hwirq), ipi_resrv))
Qais Yousef2af70a92015-12-08 13:20:23 +0000746 return -EBUSY;
Harvey Hunt4b2312b2016-05-23 12:05:52 +0100747
Paul Burtone875bd62016-09-13 17:53:35 +0100748 return gic_setup_dev_chip(d, virq, spec->hwirq);
Qais Yousef2af70a92015-12-08 13:20:23 +0000749 } else {
Paul Burton994f3162017-04-20 10:07:34 +0100750 base_hwirq = find_first_bit(ipi_available, gic_shared_intrs);
Qais Yousef2af70a92015-12-08 13:20:23 +0000751 if (base_hwirq == gic_shared_intrs) {
752 return -ENOMEM;
753 }
754
755 /* check that we have enough space */
756 for (i = base_hwirq; i < nr_irqs; i++) {
Paul Burton994f3162017-04-20 10:07:34 +0100757 if (!test_bit(i, ipi_available))
Qais Yousef2af70a92015-12-08 13:20:23 +0000758 return -EBUSY;
759 }
Paul Burton994f3162017-04-20 10:07:34 +0100760 bitmap_clear(ipi_available, base_hwirq, nr_irqs);
Qais Yousef2af70a92015-12-08 13:20:23 +0000761
762 /* map the hwirq for each cpu consecutively */
763 i = 0;
764 for_each_cpu(cpu, spec->ipimask) {
765 hwirq = GIC_SHARED_TO_HWIRQ(base_hwirq + i);
766
767 ret = irq_domain_set_hwirq_and_chip(d, virq + i, hwirq,
Paul Burton6a33fa22016-08-19 18:07:14 +0100768 &gic_level_irq_controller,
Qais Yousef2af70a92015-12-08 13:20:23 +0000769 NULL);
770 if (ret)
771 goto error;
772
Paul Burton6a33fa22016-08-19 18:07:14 +0100773 irq_set_handler(virq + i, handle_level_irq);
774
Qais Yousef2af70a92015-12-08 13:20:23 +0000775 ret = gic_shared_irq_domain_map(d, virq + i, hwirq, cpu);
776 if (ret)
777 goto error;
778
779 i++;
780 }
781
782 /*
783 * tell the parent about the base hwirq we allocated so it can
784 * set its own domain data
785 */
786 spec->hwirq = base_hwirq;
787 }
788
789 return 0;
790error:
Paul Burton994f3162017-04-20 10:07:34 +0100791 bitmap_set(ipi_available, base_hwirq, nr_irqs);
Qais Yousef2af70a92015-12-08 13:20:23 +0000792 return ret;
793}
794
795void gic_irq_domain_free(struct irq_domain *d, unsigned int virq,
796 unsigned int nr_irqs)
797{
798 irq_hw_number_t base_hwirq;
799 struct irq_data *data;
800
801 data = irq_get_irq_data(virq);
802 if (!data)
803 return;
804
805 base_hwirq = GIC_HWIRQ_TO_SHARED(irqd_to_hwirq(data));
Paul Burton994f3162017-04-20 10:07:34 +0100806 bitmap_set(ipi_available, base_hwirq, nr_irqs);
Qais Yousef2af70a92015-12-08 13:20:23 +0000807}
808
Qais Yousefc98c18222015-12-08 13:20:24 +0000809int gic_irq_domain_match(struct irq_domain *d, struct device_node *node,
810 enum irq_domain_bus_token bus_token)
811{
812 /* this domain should'nt be accessed directly */
813 return 0;
814}
815
Krzysztof Kozlowski96009732015-04-27 21:54:24 +0900816static const struct irq_domain_ops gic_irq_domain_ops = {
Qais Yousef2af70a92015-12-08 13:20:23 +0000817 .alloc = gic_irq_domain_alloc,
818 .free = gic_irq_domain_free,
Qais Yousefc98c18222015-12-08 13:20:24 +0000819 .match = gic_irq_domain_match,
820};
821
822static int gic_dev_domain_xlate(struct irq_domain *d, struct device_node *ctrlr,
823 const u32 *intspec, unsigned int intsize,
824 irq_hw_number_t *out_hwirq,
825 unsigned int *out_type)
826{
827 if (intsize != 3)
828 return -EINVAL;
829
830 if (intspec[0] == GIC_SHARED)
831 *out_hwirq = GIC_SHARED_TO_HWIRQ(intspec[1]);
832 else if (intspec[0] == GIC_LOCAL)
833 *out_hwirq = GIC_LOCAL_TO_HWIRQ(intspec[1]);
834 else
835 return -EINVAL;
836 *out_type = intspec[2] & IRQ_TYPE_SENSE_MASK;
837
838 return 0;
839}
840
841static int gic_dev_domain_alloc(struct irq_domain *d, unsigned int virq,
842 unsigned int nr_irqs, void *arg)
843{
844 struct irq_fwspec *fwspec = arg;
845 struct gic_irq_spec spec = {
846 .type = GIC_DEVICE,
Qais Yousefc98c18222015-12-08 13:20:24 +0000847 };
848 int i, ret;
Qais Yousefc98c18222015-12-08 13:20:24 +0000849
Paul Burtone875bd62016-09-13 17:53:35 +0100850 if (fwspec->param[0] == GIC_SHARED)
851 spec.hwirq = GIC_SHARED_TO_HWIRQ(fwspec->param[1]);
852 else
853 spec.hwirq = GIC_LOCAL_TO_HWIRQ(fwspec->param[1]);
854
855 ret = irq_domain_alloc_irqs_parent(d, virq, nr_irqs, &spec);
856 if (ret)
857 return ret;
Qais Yousefc98c18222015-12-08 13:20:24 +0000858
859 for (i = 0; i < nr_irqs; i++) {
Paul Burtone875bd62016-09-13 17:53:35 +0100860 ret = gic_setup_dev_chip(d, virq + i, spec.hwirq + i);
Qais Yousefc98c18222015-12-08 13:20:24 +0000861 if (ret)
Harvey Hunt4b2312b2016-05-23 12:05:52 +0100862 goto error;
Qais Yousefc98c18222015-12-08 13:20:24 +0000863 }
864
865 return 0;
Harvey Hunt4b2312b2016-05-23 12:05:52 +0100866
867error:
868 irq_domain_free_irqs_parent(d, virq, nr_irqs);
869 return ret;
Qais Yousefc98c18222015-12-08 13:20:24 +0000870}
871
872void gic_dev_domain_free(struct irq_domain *d, unsigned int virq,
873 unsigned int nr_irqs)
874{
875 /* no real allocation is done for dev irqs, so no need to free anything */
876 return;
877}
878
Paul Burton25649702016-08-19 18:07:15 +0100879static void gic_dev_domain_activate(struct irq_domain *domain,
880 struct irq_data *d)
881{
Paul Burtone875bd62016-09-13 17:53:35 +0100882 if (GIC_HWIRQ_TO_LOCAL(d->hwirq) < GIC_NUM_LOCAL_INTRS)
883 gic_local_irq_domain_map(domain, d->irq, d->hwirq);
884 else
885 gic_shared_irq_domain_map(domain, d->irq, d->hwirq, 0);
Paul Burton25649702016-08-19 18:07:15 +0100886}
887
Qais Yousefc98c18222015-12-08 13:20:24 +0000888static struct irq_domain_ops gic_dev_domain_ops = {
889 .xlate = gic_dev_domain_xlate,
890 .alloc = gic_dev_domain_alloc,
891 .free = gic_dev_domain_free,
Paul Burton25649702016-08-19 18:07:15 +0100892 .activate = gic_dev_domain_activate,
Qais Yousef2af70a92015-12-08 13:20:23 +0000893};
894
895static int gic_ipi_domain_xlate(struct irq_domain *d, struct device_node *ctrlr,
896 const u32 *intspec, unsigned int intsize,
897 irq_hw_number_t *out_hwirq,
898 unsigned int *out_type)
899{
900 /*
901 * There's nothing to translate here. hwirq is dynamically allocated and
902 * the irq type is always edge triggered.
903 * */
904 *out_hwirq = 0;
905 *out_type = IRQ_TYPE_EDGE_RISING;
906
907 return 0;
908}
909
910static int gic_ipi_domain_alloc(struct irq_domain *d, unsigned int virq,
911 unsigned int nr_irqs, void *arg)
912{
913 struct cpumask *ipimask = arg;
914 struct gic_irq_spec spec = {
915 .type = GIC_IPI,
916 .ipimask = ipimask
917 };
918 int ret, i;
919
920 ret = irq_domain_alloc_irqs_parent(d, virq, nr_irqs, &spec);
921 if (ret)
922 return ret;
923
924 /* the parent should have set spec.hwirq to the base_hwirq it allocated */
925 for (i = 0; i < nr_irqs; i++) {
926 ret = irq_domain_set_hwirq_and_chip(d, virq + i,
927 GIC_SHARED_TO_HWIRQ(spec.hwirq + i),
928 &gic_edge_irq_controller,
929 NULL);
930 if (ret)
931 goto error;
932
933 ret = irq_set_irq_type(virq + i, IRQ_TYPE_EDGE_RISING);
934 if (ret)
935 goto error;
936 }
937
938 return 0;
939error:
940 irq_domain_free_irqs_parent(d, virq, nr_irqs);
941 return ret;
942}
943
944void gic_ipi_domain_free(struct irq_domain *d, unsigned int virq,
945 unsigned int nr_irqs)
946{
947 irq_domain_free_irqs_parent(d, virq, nr_irqs);
948}
949
950int gic_ipi_domain_match(struct irq_domain *d, struct device_node *node,
951 enum irq_domain_bus_token bus_token)
952{
953 bool is_ipi;
954
955 switch (bus_token) {
956 case DOMAIN_BUS_IPI:
957 is_ipi = d->bus_token == bus_token;
Paul Burton547aefc2016-07-05 14:26:00 +0100958 return (!node || to_of_node(d->fwnode) == node) && is_ipi;
Qais Yousef2af70a92015-12-08 13:20:23 +0000959 break;
960 default:
961 return 0;
962 }
963}
964
965static struct irq_domain_ops gic_ipi_domain_ops = {
966 .xlate = gic_ipi_domain_xlate,
967 .alloc = gic_ipi_domain_alloc,
968 .free = gic_ipi_domain_free,
969 .match = gic_ipi_domain_match,
Andrew Brestickerc49581a2014-09-18 14:47:23 -0700970};
971
Andrew Brestickera7057272014-11-12 11:43:38 -0800972static void __init __gic_init(unsigned long gic_base_addr,
973 unsigned long gic_addrspace_size,
974 unsigned int cpu_vec, unsigned int irqbase,
975 struct device_node *node)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100976{
Paul Burtonba01cf02016-05-17 15:31:06 +0100977 unsigned int gicconfig, cpu;
Qais Yousef16a80832015-12-08 13:20:30 +0000978 unsigned int v[2];
Ralf Baechle39b8d522008-04-28 17:14:26 +0100979
Alex Smithc0a9f722015-10-12 10:40:43 +0100980 __gic_base_addr = gic_base_addr;
981
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700982 gic_base = ioremap_nocache(gic_base_addr, gic_addrspace_size);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100983
Andrew Bresticker5f68fea2014-10-20 12:03:52 -0700984 gicconfig = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG));
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700985 gic_shared_intrs = (gicconfig & GIC_SH_CONFIG_NUMINTRS_MSK) >>
Ralf Baechle39b8d522008-04-28 17:14:26 +0100986 GIC_SH_CONFIG_NUMINTRS_SHF;
Andrew Brestickerfbd55242014-09-18 14:47:25 -0700987 gic_shared_intrs = ((gic_shared_intrs + 1) * 8);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100988
Andrew Brestickere9de6882014-09-18 14:47:27 -0700989 gic_vpes = (gicconfig & GIC_SH_CONFIG_NUMVPES_MSK) >>
Ralf Baechle39b8d522008-04-28 17:14:26 +0100990 GIC_SH_CONFIG_NUMVPES_SHF;
Andrew Brestickere9de6882014-09-18 14:47:27 -0700991 gic_vpes = gic_vpes + 1;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100992
Andrew Bresticker18743d22014-09-18 14:47:24 -0700993 if (cpu_has_veic) {
Paul Burtonba01cf02016-05-17 15:31:06 +0100994 /* Set EIC mode for all VPEs */
995 for_each_present_cpu(cpu) {
996 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR),
997 mips_cm_vp_id(cpu));
998 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_CTL),
999 GIC_VPE_CTL_EIC_MODE_MSK);
1000 }
1001
Andrew Bresticker18743d22014-09-18 14:47:24 -07001002 /* Always use vector 1 in EIC mode */
1003 gic_cpu_pin = 0;
James Hogan1b6af712015-01-19 15:38:24 +00001004 timer_cpu_pin = gic_cpu_pin;
Andrew Bresticker18743d22014-09-18 14:47:24 -07001005 set_vi_handler(gic_cpu_pin + GIC_PIN_TO_VEC_OFFSET,
1006 __gic_irq_dispatch);
1007 } else {
1008 gic_cpu_pin = cpu_vec - GIC_CPU_PIN_OFFSET;
1009 irq_set_chained_handler(MIPS_CPU_IRQ_BASE + cpu_vec,
1010 gic_irq_dispatch);
James Hogan1b6af712015-01-19 15:38:24 +00001011 /*
1012 * With the CMP implementation of SMP (deprecated), other CPUs
1013 * are started by the bootloader and put into a timer based
1014 * waiting poll loop. We must not re-route those CPU's local
1015 * timer interrupts as the wait instruction will never finish,
1016 * so just handle whatever CPU interrupt it is routed to by
1017 * default.
1018 *
1019 * This workaround should be removed when CMP support is
1020 * dropped.
1021 */
1022 if (IS_ENABLED(CONFIG_MIPS_CMP) &&
1023 gic_local_irq_is_routable(GIC_LOCAL_INT_TIMER)) {
Markos Chandrasc3f57f02015-07-14 10:26:09 +01001024 timer_cpu_pin = gic_read32(GIC_REG(VPE_LOCAL,
James Hogan1b6af712015-01-19 15:38:24 +00001025 GIC_VPE_TIMER_MAP)) &
1026 GIC_MAP_MSK;
1027 irq_set_chained_handler(MIPS_CPU_IRQ_BASE +
1028 GIC_CPU_PIN_OFFSET +
1029 timer_cpu_pin,
1030 gic_irq_dispatch);
1031 } else {
1032 timer_cpu_pin = gic_cpu_pin;
1033 }
Andrew Bresticker18743d22014-09-18 14:47:24 -07001034 }
1035
Andrew Brestickera7057272014-11-12 11:43:38 -08001036 gic_irq_domain = irq_domain_add_simple(node, GIC_NUM_LOCAL_INTRS +
Andrew Brestickere9de6882014-09-18 14:47:27 -07001037 gic_shared_intrs, irqbase,
Andrew Brestickerc49581a2014-09-18 14:47:23 -07001038 &gic_irq_domain_ops, NULL);
1039 if (!gic_irq_domain)
1040 panic("Failed to add GIC IRQ domain");
Harvey Hunt21c57fd2016-05-23 12:07:37 +01001041 gic_irq_domain->name = "mips-gic-irq";
Steven J. Hill0b271f52012-08-31 16:05:37 -05001042
Qais Yousefc98c18222015-12-08 13:20:24 +00001043 gic_dev_domain = irq_domain_add_hierarchy(gic_irq_domain, 0,
1044 GIC_NUM_LOCAL_INTRS + gic_shared_intrs,
1045 node, &gic_dev_domain_ops, NULL);
1046 if (!gic_dev_domain)
1047 panic("Failed to add GIC DEV domain");
Harvey Hunt21c57fd2016-05-23 12:07:37 +01001048 gic_dev_domain->name = "mips-gic-dev";
Qais Yousefc98c18222015-12-08 13:20:24 +00001049
Qais Yousef2af70a92015-12-08 13:20:23 +00001050 gic_ipi_domain = irq_domain_add_hierarchy(gic_irq_domain,
1051 IRQ_DOMAIN_FLAG_IPI_PER_CPU,
1052 GIC_NUM_LOCAL_INTRS + gic_shared_intrs,
1053 node, &gic_ipi_domain_ops, NULL);
1054 if (!gic_ipi_domain)
1055 panic("Failed to add GIC IPI domain");
1056
Harvey Hunt21c57fd2016-05-23 12:07:37 +01001057 gic_ipi_domain->name = "mips-gic-ipi";
Qais Yousef2af70a92015-12-08 13:20:23 +00001058 gic_ipi_domain->bus_token = DOMAIN_BUS_IPI;
1059
Qais Yousef16a80832015-12-08 13:20:30 +00001060 if (node &&
1061 !of_property_read_u32_array(node, "mti,reserved-ipi-vectors", v, 2)) {
1062 bitmap_set(ipi_resrv, v[0], v[1]);
1063 } else {
1064 /* Make the last 2 * gic_vpes available for IPIs */
1065 bitmap_set(ipi_resrv,
1066 gic_shared_intrs - 2 * gic_vpes,
1067 2 * gic_vpes);
1068 }
Qais Yousef2af70a92015-12-08 13:20:23 +00001069
Paul Burton994f3162017-04-20 10:07:34 +01001070 bitmap_copy(ipi_available, ipi_resrv, GIC_MAX_INTRS);
Andrew Brestickere9de6882014-09-18 14:47:27 -07001071 gic_basic_init();
Ralf Baechle39b8d522008-04-28 17:14:26 +01001072}
Andrew Brestickera7057272014-11-12 11:43:38 -08001073
1074void __init gic_init(unsigned long gic_base_addr,
1075 unsigned long gic_addrspace_size,
1076 unsigned int cpu_vec, unsigned int irqbase)
1077{
1078 __gic_init(gic_base_addr, gic_addrspace_size, cpu_vec, irqbase, NULL);
1079}
1080
1081static int __init gic_of_init(struct device_node *node,
1082 struct device_node *parent)
1083{
1084 struct resource res;
1085 unsigned int cpu_vec, i = 0, reserved = 0;
1086 phys_addr_t gic_base;
1087 size_t gic_len;
1088
1089 /* Find the first available CPU vector. */
1090 while (!of_property_read_u32_index(node, "mti,reserved-cpu-vectors",
1091 i++, &cpu_vec))
1092 reserved |= BIT(cpu_vec);
1093 for (cpu_vec = 2; cpu_vec < 8; cpu_vec++) {
1094 if (!(reserved & BIT(cpu_vec)))
1095 break;
1096 }
1097 if (cpu_vec == 8) {
1098 pr_err("No CPU vectors available for GIC\n");
1099 return -ENODEV;
1100 }
1101
1102 if (of_address_to_resource(node, 0, &res)) {
1103 /*
1104 * Probe the CM for the GIC base address if not specified
1105 * in the device-tree.
1106 */
1107 if (mips_cm_present()) {
1108 gic_base = read_gcr_gic_base() &
1109 ~CM_GCR_GIC_BASE_GICEN_MSK;
1110 gic_len = 0x20000;
1111 } else {
1112 pr_err("Failed to get GIC memory range\n");
1113 return -ENODEV;
1114 }
1115 } else {
1116 gic_base = res.start;
1117 gic_len = resource_size(&res);
1118 }
1119
James Hogan31562132017-08-12 21:36:09 -07001120 if (mips_cm_present()) {
Andrew Brestickera7057272014-11-12 11:43:38 -08001121 write_gcr_gic_base(gic_base | CM_GCR_GIC_BASE_GICEN_MSK);
James Hogan31562132017-08-12 21:36:09 -07001122 /* Ensure GIC region is enabled before trying to access it */
1123 __sync();
1124 }
Andrew Brestickera7057272014-11-12 11:43:38 -08001125 gic_present = true;
1126
1127 __gic_init(gic_base, gic_len, cpu_vec, 0, node);
1128
1129 return 0;
1130}
1131IRQCHIP_DECLARE(mips_gic, "mti,gic", gic_of_init);