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