irqchip: mips-gic: Don't treat FDC IRQ as percpu devid
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / drivers / irqchip / irq-mips-gic.c
CommitLineData
2299c49d
SH
1/*
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 */
39b8d525 9#include <linux/bitmap.h>
fb8f7be1 10#include <linux/clocksource.h>
39b8d525 11#include <linux/init.h>
18743d27 12#include <linux/interrupt.h>
fb8f7be1 13#include <linux/irq.h>
4060bbe9 14#include <linux/irqchip/mips-gic.h>
a7057270 15#include <linux/of_address.h>
18743d27 16#include <linux/sched.h>
631330f5 17#include <linux/smp.h>
39b8d525 18
a7057270 19#include <asm/mips-cm.h>
98b67c37
SH
20#include <asm/setup.h>
21#include <asm/traps.h>
39b8d525 22
a7057270
AB
23#include <dt-bindings/interrupt-controller/mips-gic.h>
24
25#include "irqchip.h"
26
ff86714f 27unsigned int gic_present;
98b67c37 28
822350bc 29struct gic_pcpu_mask {
fbd55241 30 DECLARE_BITMAP(pcpu_mask, GIC_MAX_INTRS);
822350bc
JD
31};
32
5f68fea0 33static void __iomem *gic_base;
0b271f56 34static struct gic_pcpu_mask pcpu_masks[NR_CPUS];
95150ae8 35static DEFINE_SPINLOCK(gic_lock);
c49581a4 36static struct irq_domain *gic_irq_domain;
fbd55241 37static int gic_shared_intrs;
e9de688d 38static int gic_vpes;
3263d085 39static unsigned int gic_cpu_pin;
1b6af71a 40static unsigned int timer_cpu_pin;
4a6a3ea3 41static struct irq_chip gic_level_irq_controller, gic_edge_irq_controller;
39b8d525 42
18743d27
AB
43static void __gic_irq_dispatch(void);
44
5f68fea0
AB
45static inline unsigned int gic_read(unsigned int reg)
46{
47 return __raw_readl(gic_base + reg);
48}
49
50static inline void gic_write(unsigned int reg, unsigned int val)
51{
52 __raw_writel(val, gic_base + reg);
53}
54
55static inline void gic_update_bits(unsigned int reg, unsigned int mask,
56 unsigned int val)
57{
58 unsigned int regval;
59
60 regval = gic_read(reg);
61 regval &= ~mask;
62 regval |= val;
63 gic_write(reg, regval);
64}
65
66static inline void gic_reset_mask(unsigned int intr)
67{
68 gic_write(GIC_REG(SHARED, GIC_SH_RMASK) + GIC_INTR_OFS(intr),
69 1 << GIC_INTR_BIT(intr));
70}
71
72static inline void gic_set_mask(unsigned int intr)
73{
74 gic_write(GIC_REG(SHARED, GIC_SH_SMASK) + GIC_INTR_OFS(intr),
75 1 << GIC_INTR_BIT(intr));
76}
77
78static inline void gic_set_polarity(unsigned int intr, unsigned int pol)
79{
80 gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_POLARITY) +
81 GIC_INTR_OFS(intr), 1 << GIC_INTR_BIT(intr),
82 pol << GIC_INTR_BIT(intr));
83}
84
85static inline void gic_set_trigger(unsigned int intr, unsigned int trig)
86{
87 gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_TRIGGER) +
88 GIC_INTR_OFS(intr), 1 << GIC_INTR_BIT(intr),
89 trig << GIC_INTR_BIT(intr));
90}
91
92static inline void gic_set_dual_edge(unsigned int intr, unsigned int dual)
93{
94 gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_DUAL) + GIC_INTR_OFS(intr),
95 1 << GIC_INTR_BIT(intr),
96 dual << GIC_INTR_BIT(intr));
97}
98
99static inline void gic_map_to_pin(unsigned int intr, unsigned int pin)
100{
101 gic_write(GIC_REG(SHARED, GIC_SH_INTR_MAP_TO_PIN_BASE) +
102 GIC_SH_MAP_TO_PIN(intr), GIC_MAP_TO_PIN_MSK | pin);
103}
104
105static inline void gic_map_to_vpe(unsigned int intr, unsigned int vpe)
106{
107 gic_write(GIC_REG(SHARED, GIC_SH_INTR_MAP_TO_VPE_BASE) +
108 GIC_SH_MAP_TO_VPE_REG_OFF(intr, vpe),
109 GIC_SH_MAP_TO_VPE_REG_BIT(vpe));
110}
111
a331ce63 112#ifdef CONFIG_CLKSRC_MIPS_GIC
dfa762e1
SH
113cycle_t gic_read_count(void)
114{
115 unsigned int hi, hi2, lo;
116
117 do {
5f68fea0
AB
118 hi = gic_read(GIC_REG(SHARED, GIC_SH_COUNTER_63_32));
119 lo = gic_read(GIC_REG(SHARED, GIC_SH_COUNTER_31_00));
120 hi2 = gic_read(GIC_REG(SHARED, GIC_SH_COUNTER_63_32));
dfa762e1
SH
121 } while (hi2 != hi);
122
123 return (((cycle_t) hi) << 32) + lo;
124}
0ab2b7d0 125
387904ff
AB
126unsigned int gic_get_count_width(void)
127{
128 unsigned int bits, config;
129
5f68fea0 130 config = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG));
387904ff
AB
131 bits = 32 + 4 * ((config & GIC_SH_CONFIG_COUNTBITS_MSK) >>
132 GIC_SH_CONFIG_COUNTBITS_SHF);
133
134 return bits;
135}
136
0ab2b7d0
RG
137void gic_write_compare(cycle_t cnt)
138{
5f68fea0 139 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_HI),
0ab2b7d0 140 (int)(cnt >> 32));
5f68fea0 141 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_LO),
0ab2b7d0
RG
142 (int)(cnt & 0xffffffff));
143}
144
414408d0
PB
145void gic_write_cpu_compare(cycle_t cnt, int cpu)
146{
147 unsigned long flags;
148
149 local_irq_save(flags);
150
5f68fea0
AB
151 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), cpu);
152 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_HI),
414408d0 153 (int)(cnt >> 32));
5f68fea0 154 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_LO),
414408d0
PB
155 (int)(cnt & 0xffffffff));
156
157 local_irq_restore(flags);
158}
159
0ab2b7d0
RG
160cycle_t gic_read_compare(void)
161{
162 unsigned int hi, lo;
163
5f68fea0
AB
164 hi = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_HI));
165 lo = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_LO));
0ab2b7d0
RG
166
167 return (((cycle_t) hi) << 32) + lo;
168}
dfa762e1
SH
169#endif
170
e9de688d
AB
171static bool gic_local_irq_is_routable(int intr)
172{
173 u32 vpe_ctl;
174
175 /* All local interrupts are routable in EIC mode. */
176 if (cpu_has_veic)
177 return true;
178
5f68fea0 179 vpe_ctl = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_CTL));
e9de688d
AB
180 switch (intr) {
181 case GIC_LOCAL_INT_TIMER:
182 return vpe_ctl & GIC_VPE_CTL_TIMER_RTBL_MSK;
183 case GIC_LOCAL_INT_PERFCTR:
184 return vpe_ctl & GIC_VPE_CTL_PERFCNT_RTBL_MSK;
185 case GIC_LOCAL_INT_FDC:
186 return vpe_ctl & GIC_VPE_CTL_FDC_RTBL_MSK;
187 case GIC_LOCAL_INT_SWINT0:
188 case GIC_LOCAL_INT_SWINT1:
189 return vpe_ctl & GIC_VPE_CTL_SWINT_RTBL_MSK;
190 default:
191 return true;
192 }
193}
194
3263d085 195static void gic_bind_eic_interrupt(int irq, int set)
98b67c37
SH
196{
197 /* Convert irq vector # to hw int # */
198 irq -= GIC_PIN_TO_VEC_OFFSET;
199
200 /* Set irq to use shadow set */
5f68fea0
AB
201 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_EIC_SHADOW_SET_BASE) +
202 GIC_VPE_EIC_SS(irq), set);
98b67c37
SH
203}
204
39b8d525
RB
205void gic_send_ipi(unsigned int intr)
206{
53a7bc81 207 gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), GIC_SH_WEDGE_SET(intr));
39b8d525
RB
208}
209
e9de688d
AB
210int gic_get_c0_compare_int(void)
211{
212 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_TIMER))
213 return MIPS_CPU_IRQ_BASE + cp0_compare_irq;
214 return irq_create_mapping(gic_irq_domain,
215 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_TIMER));
216}
217
218int gic_get_c0_perfcount_int(void)
219{
220 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_PERFCTR)) {
7e3e6cb2 221 /* Is the performance counter shared with the timer? */
e9de688d
AB
222 if (cp0_perfcount_irq < 0)
223 return -1;
224 return MIPS_CPU_IRQ_BASE + cp0_perfcount_irq;
225 }
226 return irq_create_mapping(gic_irq_domain,
227 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_PERFCTR));
228}
229
d7eb4f2e 230static void gic_handle_shared_int(void)
39b8d525 231{
d7eb4f2e 232 unsigned int i, intr, virq;
8f5ee79c 233 unsigned long *pcpu_mask;
5f68fea0 234 unsigned long pending_reg, intrmask_reg;
8f5ee79c
AB
235 DECLARE_BITMAP(pending, GIC_MAX_INTRS);
236 DECLARE_BITMAP(intrmask, GIC_MAX_INTRS);
39b8d525
RB
237
238 /* Get per-cpu bitmaps */
39b8d525
RB
239 pcpu_mask = pcpu_masks[smp_processor_id()].pcpu_mask;
240
824f3f7f
AB
241 pending_reg = GIC_REG(SHARED, GIC_SH_PEND);
242 intrmask_reg = GIC_REG(SHARED, GIC_SH_MASK);
39b8d525 243
fbd55241 244 for (i = 0; i < BITS_TO_LONGS(gic_shared_intrs); i++) {
5f68fea0
AB
245 pending[i] = gic_read(pending_reg);
246 intrmask[i] = gic_read(intrmask_reg);
247 pending_reg += 0x4;
248 intrmask_reg += 0x4;
39b8d525
RB
249 }
250
fbd55241
AB
251 bitmap_and(pending, pending, intrmask, gic_shared_intrs);
252 bitmap_and(pending, pending, pcpu_mask, gic_shared_intrs);
39b8d525 253
d7eb4f2e
QY
254 intr = find_first_bit(pending, gic_shared_intrs);
255 while (intr != gic_shared_intrs) {
256 virq = irq_linear_revmap(gic_irq_domain,
257 GIC_SHARED_TO_HWIRQ(intr));
258 do_IRQ(virq);
259
260 /* go to next pending bit */
261 bitmap_clear(pending, intr, 1);
262 intr = find_first_bit(pending, gic_shared_intrs);
263 }
39b8d525
RB
264}
265
161d049e 266static void gic_mask_irq(struct irq_data *d)
39b8d525 267{
5f68fea0 268 gic_reset_mask(GIC_HWIRQ_TO_SHARED(d->hwirq));
39b8d525
RB
269}
270
161d049e 271static void gic_unmask_irq(struct irq_data *d)
39b8d525 272{
5f68fea0 273 gic_set_mask(GIC_HWIRQ_TO_SHARED(d->hwirq));
39b8d525
RB
274}
275
5561c9e4
AB
276static void gic_ack_irq(struct irq_data *d)
277{
e9de688d 278 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
c49581a4 279
53a7bc81 280 gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), GIC_SH_WEDGE_CLR(irq));
5561c9e4
AB
281}
282
95150ae8
AB
283static int gic_set_type(struct irq_data *d, unsigned int type)
284{
e9de688d 285 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
95150ae8
AB
286 unsigned long flags;
287 bool is_edge;
288
289 spin_lock_irqsave(&gic_lock, flags);
290 switch (type & IRQ_TYPE_SENSE_MASK) {
291 case IRQ_TYPE_EDGE_FALLING:
5f68fea0
AB
292 gic_set_polarity(irq, GIC_POL_NEG);
293 gic_set_trigger(irq, GIC_TRIG_EDGE);
294 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
95150ae8
AB
295 is_edge = true;
296 break;
297 case IRQ_TYPE_EDGE_RISING:
5f68fea0
AB
298 gic_set_polarity(irq, GIC_POL_POS);
299 gic_set_trigger(irq, GIC_TRIG_EDGE);
300 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
95150ae8
AB
301 is_edge = true;
302 break;
303 case IRQ_TYPE_EDGE_BOTH:
304 /* polarity is irrelevant in this case */
5f68fea0
AB
305 gic_set_trigger(irq, GIC_TRIG_EDGE);
306 gic_set_dual_edge(irq, GIC_TRIG_DUAL_ENABLE);
95150ae8
AB
307 is_edge = true;
308 break;
309 case IRQ_TYPE_LEVEL_LOW:
5f68fea0
AB
310 gic_set_polarity(irq, GIC_POL_NEG);
311 gic_set_trigger(irq, GIC_TRIG_LEVEL);
312 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
95150ae8
AB
313 is_edge = false;
314 break;
315 case IRQ_TYPE_LEVEL_HIGH:
316 default:
5f68fea0
AB
317 gic_set_polarity(irq, GIC_POL_POS);
318 gic_set_trigger(irq, GIC_TRIG_LEVEL);
319 gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE);
95150ae8
AB
320 is_edge = false;
321 break;
322 }
323
324 if (is_edge) {
4a6a3ea3
AB
325 __irq_set_chip_handler_name_locked(d->irq,
326 &gic_edge_irq_controller,
327 handle_edge_irq, NULL);
95150ae8 328 } else {
4a6a3ea3
AB
329 __irq_set_chip_handler_name_locked(d->irq,
330 &gic_level_irq_controller,
331 handle_level_irq, NULL);
95150ae8
AB
332 }
333 spin_unlock_irqrestore(&gic_lock, flags);
39b8d525 334
95150ae8
AB
335 return 0;
336}
337
338#ifdef CONFIG_SMP
161d049e
TG
339static int gic_set_affinity(struct irq_data *d, const struct cpumask *cpumask,
340 bool force)
39b8d525 341{
e9de688d 342 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
39b8d525
RB
343 cpumask_t tmp = CPU_MASK_NONE;
344 unsigned long flags;
345 int i;
346
0de26520 347 cpumask_and(&tmp, cpumask, cpu_online_mask);
39b8d525 348 if (cpus_empty(tmp))
14d160ab 349 return -EINVAL;
39b8d525
RB
350
351 /* Assumption : cpumask refers to a single CPU */
352 spin_lock_irqsave(&gic_lock, flags);
39b8d525 353
c214c035 354 /* Re-route this IRQ */
5f68fea0 355 gic_map_to_vpe(irq, first_cpu(tmp));
c214c035
TW
356
357 /* Update the pcpu_masks */
358 for (i = 0; i < NR_CPUS; i++)
359 clear_bit(irq, pcpu_masks[i].pcpu_mask);
360 set_bit(irq, pcpu_masks[first_cpu(tmp)].pcpu_mask);
39b8d525 361
161d049e 362 cpumask_copy(d->affinity, cpumask);
39b8d525
RB
363 spin_unlock_irqrestore(&gic_lock, flags);
364
161d049e 365 return IRQ_SET_MASK_OK_NOCOPY;
39b8d525
RB
366}
367#endif
368
4a6a3ea3
AB
369static struct irq_chip gic_level_irq_controller = {
370 .name = "MIPS GIC",
371 .irq_mask = gic_mask_irq,
372 .irq_unmask = gic_unmask_irq,
373 .irq_set_type = gic_set_type,
374#ifdef CONFIG_SMP
375 .irq_set_affinity = gic_set_affinity,
376#endif
377};
378
379static struct irq_chip gic_edge_irq_controller = {
161d049e 380 .name = "MIPS GIC",
5561c9e4 381 .irq_ack = gic_ack_irq,
161d049e 382 .irq_mask = gic_mask_irq,
161d049e 383 .irq_unmask = gic_unmask_irq,
95150ae8 384 .irq_set_type = gic_set_type,
39b8d525 385#ifdef CONFIG_SMP
161d049e 386 .irq_set_affinity = gic_set_affinity,
39b8d525
RB
387#endif
388};
389
d7eb4f2e 390static void gic_handle_local_int(void)
e9de688d
AB
391{
392 unsigned long pending, masked;
d7eb4f2e 393 unsigned int intr, virq;
e9de688d 394
5f68fea0
AB
395 pending = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_PEND));
396 masked = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_MASK));
e9de688d
AB
397
398 bitmap_and(&pending, &pending, &masked, GIC_NUM_LOCAL_INTRS);
399
d7eb4f2e
QY
400 intr = find_first_bit(&pending, GIC_NUM_LOCAL_INTRS);
401 while (intr != GIC_NUM_LOCAL_INTRS) {
402 virq = irq_linear_revmap(gic_irq_domain,
403 GIC_LOCAL_TO_HWIRQ(intr));
404 do_IRQ(virq);
405
406 /* go to next pending bit */
407 bitmap_clear(&pending, intr, 1);
408 intr = find_first_bit(&pending, GIC_NUM_LOCAL_INTRS);
409 }
e9de688d
AB
410}
411
412static void gic_mask_local_irq(struct irq_data *d)
413{
414 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
415
5f68fea0 416 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_RMASK), 1 << intr);
e9de688d
AB
417}
418
419static void gic_unmask_local_irq(struct irq_data *d)
420{
421 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
422
5f68fea0 423 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_SMASK), 1 << intr);
e9de688d
AB
424}
425
426static struct irq_chip gic_local_irq_controller = {
427 .name = "MIPS GIC Local",
428 .irq_mask = gic_mask_local_irq,
429 .irq_unmask = gic_unmask_local_irq,
430};
431
432static void gic_mask_local_irq_all_vpes(struct irq_data *d)
433{
434 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
435 int i;
436 unsigned long flags;
437
438 spin_lock_irqsave(&gic_lock, flags);
439 for (i = 0; i < gic_vpes; i++) {
5f68fea0
AB
440 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i);
441 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_RMASK), 1 << intr);
e9de688d
AB
442 }
443 spin_unlock_irqrestore(&gic_lock, flags);
444}
445
446static void gic_unmask_local_irq_all_vpes(struct irq_data *d)
447{
448 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
449 int i;
450 unsigned long flags;
451
452 spin_lock_irqsave(&gic_lock, flags);
453 for (i = 0; i < gic_vpes; i++) {
5f68fea0
AB
454 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i);
455 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_SMASK), 1 << intr);
e9de688d
AB
456 }
457 spin_unlock_irqrestore(&gic_lock, flags);
458}
459
460static struct irq_chip gic_all_vpes_local_irq_controller = {
461 .name = "MIPS GIC Local",
462 .irq_mask = gic_mask_local_irq_all_vpes,
463 .irq_unmask = gic_unmask_local_irq_all_vpes,
464};
465
18743d27 466static void __gic_irq_dispatch(void)
39b8d525 467{
d7eb4f2e
QY
468 gic_handle_local_int();
469 gic_handle_shared_int();
18743d27 470}
39b8d525 471
18743d27
AB
472static void gic_irq_dispatch(unsigned int irq, struct irq_desc *desc)
473{
474 __gic_irq_dispatch();
475}
476
477#ifdef CONFIG_MIPS_GIC_IPI
478static int gic_resched_int_base;
479static int gic_call_int_base;
480
481unsigned int plat_ipi_resched_int_xlate(unsigned int cpu)
482{
483 return gic_resched_int_base + cpu;
484}
39b8d525 485
18743d27
AB
486unsigned int plat_ipi_call_int_xlate(unsigned int cpu)
487{
488 return gic_call_int_base + cpu;
489}
39b8d525 490
18743d27
AB
491static irqreturn_t ipi_resched_interrupt(int irq, void *dev_id)
492{
493 scheduler_ipi();
494
495 return IRQ_HANDLED;
496}
497
498static irqreturn_t ipi_call_interrupt(int irq, void *dev_id)
499{
500 smp_call_function_interrupt();
501
502 return IRQ_HANDLED;
503}
b0a88ae5 504
18743d27
AB
505static struct irqaction irq_resched = {
506 .handler = ipi_resched_interrupt,
507 .flags = IRQF_PERCPU,
508 .name = "IPI resched"
509};
510
511static struct irqaction irq_call = {
512 .handler = ipi_call_interrupt,
513 .flags = IRQF_PERCPU,
514 .name = "IPI call"
515};
516
517static __init void gic_ipi_init_one(unsigned int intr, int cpu,
518 struct irqaction *action)
519{
e9de688d
AB
520 int virq = irq_create_mapping(gic_irq_domain,
521 GIC_SHARED_TO_HWIRQ(intr));
18743d27
AB
522 int i;
523
5f68fea0 524 gic_map_to_vpe(intr, cpu);
c49581a4
AB
525 for (i = 0; i < NR_CPUS; i++)
526 clear_bit(intr, pcpu_masks[i].pcpu_mask);
b0a88ae5
JD
527 set_bit(intr, pcpu_masks[cpu].pcpu_mask);
528
18743d27
AB
529 irq_set_irq_type(virq, IRQ_TYPE_EDGE_RISING);
530
531 irq_set_handler(virq, handle_percpu_irq);
532 setup_irq(virq, action);
39b8d525
RB
533}
534
18743d27 535static __init void gic_ipi_init(void)
39b8d525 536{
18743d27
AB
537 int i;
538
539 /* Use last 2 * NR_CPUS interrupts as IPIs */
fbd55241 540 gic_resched_int_base = gic_shared_intrs - nr_cpu_ids;
18743d27
AB
541 gic_call_int_base = gic_resched_int_base - nr_cpu_ids;
542
543 for (i = 0; i < nr_cpu_ids; i++) {
544 gic_ipi_init_one(gic_call_int_base + i, i, &irq_call);
545 gic_ipi_init_one(gic_resched_int_base + i, i, &irq_resched);
546 }
547}
548#else
549static inline void gic_ipi_init(void)
550{
551}
552#endif
553
e9de688d 554static void __init gic_basic_init(void)
18743d27
AB
555{
556 unsigned int i;
98b67c37
SH
557
558 board_bind_eic_interrupt = &gic_bind_eic_interrupt;
39b8d525
RB
559
560 /* Setup defaults */
fbd55241 561 for (i = 0; i < gic_shared_intrs; i++) {
5f68fea0
AB
562 gic_set_polarity(i, GIC_POL_POS);
563 gic_set_trigger(i, GIC_TRIG_LEVEL);
564 gic_reset_mask(i);
39b8d525
RB
565 }
566
e9de688d
AB
567 for (i = 0; i < gic_vpes; i++) {
568 unsigned int j;
569
5f68fea0 570 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i);
e9de688d
AB
571 for (j = 0; j < GIC_NUM_LOCAL_INTRS; j++) {
572 if (!gic_local_irq_is_routable(j))
573 continue;
5f68fea0 574 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_RMASK), 1 << j);
e9de688d
AB
575 }
576 }
39b8d525
RB
577}
578
e9de688d
AB
579static int gic_local_irq_domain_map(struct irq_domain *d, unsigned int virq,
580 irq_hw_number_t hw)
c49581a4 581{
e9de688d
AB
582 int intr = GIC_HWIRQ_TO_LOCAL(hw);
583 int ret = 0;
584 int i;
585 unsigned long flags;
586
587 if (!gic_local_irq_is_routable(intr))
588 return -EPERM;
589
590 /*
591 * HACK: These are all really percpu interrupts, but the rest
592 * of the MIPS kernel code does not use the percpu IRQ API for
593 * the CP0 timer and performance counter interrupts.
594 */
b720fd8b
JH
595 switch (intr) {
596 case GIC_LOCAL_INT_TIMER:
597 case GIC_LOCAL_INT_PERFCTR:
598 case GIC_LOCAL_INT_FDC:
599 irq_set_chip_and_handler(virq,
600 &gic_all_vpes_local_irq_controller,
601 handle_percpu_irq);
602 break;
603 default:
e9de688d
AB
604 irq_set_chip_and_handler(virq,
605 &gic_local_irq_controller,
606 handle_percpu_devid_irq);
607 irq_set_percpu_devid(virq);
b720fd8b 608 break;
e9de688d
AB
609 }
610
611 spin_lock_irqsave(&gic_lock, flags);
612 for (i = 0; i < gic_vpes; i++) {
613 u32 val = GIC_MAP_TO_PIN_MSK | gic_cpu_pin;
614
5f68fea0 615 gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i);
e9de688d
AB
616
617 switch (intr) {
618 case GIC_LOCAL_INT_WD:
5f68fea0 619 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_WD_MAP), val);
e9de688d
AB
620 break;
621 case GIC_LOCAL_INT_COMPARE:
5f68fea0 622 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_MAP), val);
e9de688d
AB
623 break;
624 case GIC_LOCAL_INT_TIMER:
1b6af71a
JH
625 /* CONFIG_MIPS_CMP workaround (see __gic_init) */
626 val = GIC_MAP_TO_PIN_MSK | timer_cpu_pin;
5f68fea0 627 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_TIMER_MAP), val);
e9de688d
AB
628 break;
629 case GIC_LOCAL_INT_PERFCTR:
5f68fea0 630 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_PERFCTR_MAP), val);
e9de688d
AB
631 break;
632 case GIC_LOCAL_INT_SWINT0:
5f68fea0 633 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_SWINT0_MAP), val);
e9de688d
AB
634 break;
635 case GIC_LOCAL_INT_SWINT1:
5f68fea0 636 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_SWINT1_MAP), val);
e9de688d
AB
637 break;
638 case GIC_LOCAL_INT_FDC:
5f68fea0 639 gic_write(GIC_REG(VPE_OTHER, GIC_VPE_FDC_MAP), val);
e9de688d
AB
640 break;
641 default:
642 pr_err("Invalid local IRQ %d\n", intr);
643 ret = -EINVAL;
644 break;
645 }
646 }
647 spin_unlock_irqrestore(&gic_lock, flags);
648
649 return ret;
650}
651
652static int gic_shared_irq_domain_map(struct irq_domain *d, unsigned int virq,
653 irq_hw_number_t hw)
654{
655 int intr = GIC_HWIRQ_TO_SHARED(hw);
c49581a4
AB
656 unsigned long flags;
657
4a6a3ea3
AB
658 irq_set_chip_and_handler(virq, &gic_level_irq_controller,
659 handle_level_irq);
c49581a4
AB
660
661 spin_lock_irqsave(&gic_lock, flags);
5f68fea0 662 gic_map_to_pin(intr, gic_cpu_pin);
c49581a4 663 /* Map to VPE 0 by default */
5f68fea0 664 gic_map_to_vpe(intr, 0);
e9de688d 665 set_bit(intr, pcpu_masks[0].pcpu_mask);
c49581a4
AB
666 spin_unlock_irqrestore(&gic_lock, flags);
667
668 return 0;
669}
670
e9de688d
AB
671static int gic_irq_domain_map(struct irq_domain *d, unsigned int virq,
672 irq_hw_number_t hw)
673{
674 if (GIC_HWIRQ_TO_LOCAL(hw) < GIC_NUM_LOCAL_INTRS)
675 return gic_local_irq_domain_map(d, virq, hw);
676 return gic_shared_irq_domain_map(d, virq, hw);
677}
678
a7057270
AB
679static int gic_irq_domain_xlate(struct irq_domain *d, struct device_node *ctrlr,
680 const u32 *intspec, unsigned int intsize,
681 irq_hw_number_t *out_hwirq,
682 unsigned int *out_type)
683{
684 if (intsize != 3)
685 return -EINVAL;
686
687 if (intspec[0] == GIC_SHARED)
688 *out_hwirq = GIC_SHARED_TO_HWIRQ(intspec[1]);
689 else if (intspec[0] == GIC_LOCAL)
690 *out_hwirq = GIC_LOCAL_TO_HWIRQ(intspec[1]);
691 else
692 return -EINVAL;
693 *out_type = intspec[2] & IRQ_TYPE_SENSE_MASK;
694
695 return 0;
696}
697
c49581a4
AB
698static struct irq_domain_ops gic_irq_domain_ops = {
699 .map = gic_irq_domain_map,
a7057270 700 .xlate = gic_irq_domain_xlate,
c49581a4
AB
701};
702
a7057270
AB
703static void __init __gic_init(unsigned long gic_base_addr,
704 unsigned long gic_addrspace_size,
705 unsigned int cpu_vec, unsigned int irqbase,
706 struct device_node *node)
39b8d525
RB
707{
708 unsigned int gicconfig;
709
5f68fea0 710 gic_base = ioremap_nocache(gic_base_addr, gic_addrspace_size);
39b8d525 711
5f68fea0 712 gicconfig = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG));
fbd55241 713 gic_shared_intrs = (gicconfig & GIC_SH_CONFIG_NUMINTRS_MSK) >>
39b8d525 714 GIC_SH_CONFIG_NUMINTRS_SHF;
fbd55241 715 gic_shared_intrs = ((gic_shared_intrs + 1) * 8);
39b8d525 716
e9de688d 717 gic_vpes = (gicconfig & GIC_SH_CONFIG_NUMVPES_MSK) >>
39b8d525 718 GIC_SH_CONFIG_NUMVPES_SHF;
e9de688d 719 gic_vpes = gic_vpes + 1;
39b8d525 720
18743d27
AB
721 if (cpu_has_veic) {
722 /* Always use vector 1 in EIC mode */
723 gic_cpu_pin = 0;
1b6af71a 724 timer_cpu_pin = gic_cpu_pin;
18743d27
AB
725 set_vi_handler(gic_cpu_pin + GIC_PIN_TO_VEC_OFFSET,
726 __gic_irq_dispatch);
727 } else {
728 gic_cpu_pin = cpu_vec - GIC_CPU_PIN_OFFSET;
729 irq_set_chained_handler(MIPS_CPU_IRQ_BASE + cpu_vec,
730 gic_irq_dispatch);
1b6af71a
JH
731 /*
732 * With the CMP implementation of SMP (deprecated), other CPUs
733 * are started by the bootloader and put into a timer based
734 * waiting poll loop. We must not re-route those CPU's local
735 * timer interrupts as the wait instruction will never finish,
736 * so just handle whatever CPU interrupt it is routed to by
737 * default.
738 *
739 * This workaround should be removed when CMP support is
740 * dropped.
741 */
742 if (IS_ENABLED(CONFIG_MIPS_CMP) &&
743 gic_local_irq_is_routable(GIC_LOCAL_INT_TIMER)) {
744 timer_cpu_pin = gic_read(GIC_REG(VPE_LOCAL,
745 GIC_VPE_TIMER_MAP)) &
746 GIC_MAP_MSK;
747 irq_set_chained_handler(MIPS_CPU_IRQ_BASE +
748 GIC_CPU_PIN_OFFSET +
749 timer_cpu_pin,
750 gic_irq_dispatch);
751 } else {
752 timer_cpu_pin = gic_cpu_pin;
753 }
18743d27
AB
754 }
755
a7057270 756 gic_irq_domain = irq_domain_add_simple(node, GIC_NUM_LOCAL_INTRS +
e9de688d 757 gic_shared_intrs, irqbase,
c49581a4
AB
758 &gic_irq_domain_ops, NULL);
759 if (!gic_irq_domain)
760 panic("Failed to add GIC IRQ domain");
0b271f56 761
e9de688d 762 gic_basic_init();
18743d27
AB
763
764 gic_ipi_init();
39b8d525 765}
a7057270
AB
766
767void __init gic_init(unsigned long gic_base_addr,
768 unsigned long gic_addrspace_size,
769 unsigned int cpu_vec, unsigned int irqbase)
770{
771 __gic_init(gic_base_addr, gic_addrspace_size, cpu_vec, irqbase, NULL);
772}
773
774static int __init gic_of_init(struct device_node *node,
775 struct device_node *parent)
776{
777 struct resource res;
778 unsigned int cpu_vec, i = 0, reserved = 0;
779 phys_addr_t gic_base;
780 size_t gic_len;
781
782 /* Find the first available CPU vector. */
783 while (!of_property_read_u32_index(node, "mti,reserved-cpu-vectors",
784 i++, &cpu_vec))
785 reserved |= BIT(cpu_vec);
786 for (cpu_vec = 2; cpu_vec < 8; cpu_vec++) {
787 if (!(reserved & BIT(cpu_vec)))
788 break;
789 }
790 if (cpu_vec == 8) {
791 pr_err("No CPU vectors available for GIC\n");
792 return -ENODEV;
793 }
794
795 if (of_address_to_resource(node, 0, &res)) {
796 /*
797 * Probe the CM for the GIC base address if not specified
798 * in the device-tree.
799 */
800 if (mips_cm_present()) {
801 gic_base = read_gcr_gic_base() &
802 ~CM_GCR_GIC_BASE_GICEN_MSK;
803 gic_len = 0x20000;
804 } else {
805 pr_err("Failed to get GIC memory range\n");
806 return -ENODEV;
807 }
808 } else {
809 gic_base = res.start;
810 gic_len = resource_size(&res);
811 }
812
813 if (mips_cm_present())
814 write_gcr_gic_base(gic_base | CM_GCR_GIC_BASE_GICEN_MSK);
815 gic_present = true;
816
817 __gic_init(gic_base, gic_len, cpu_vec, 0, node);
818
819 return 0;
820}
821IRQCHIP_DECLARE(mips_gic, "mti,gic", gic_of_init);