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 */
9
10 #define pr_fmt(fmt) "irq-mips-gic: " fmt
11
12 #include <linux/bitmap.h>
13 #include <linux/clocksource.h>
14 #include <linux/cpuhotplug.h>
15 #include <linux/init.h>
16 #include <linux/interrupt.h>
17 #include <linux/irq.h>
18 #include <linux/irqchip.h>
19 #include <linux/irqdomain.h>
20 #include <linux/of_address.h>
21 #include <linux/percpu.h>
22 #include <linux/sched.h>
23 #include <linux/smp.h>
24
25 #include <asm/mips-cps.h>
26 #include <asm/setup.h>
27 #include <asm/traps.h>
28
29 #include <dt-bindings/interrupt-controller/mips-gic.h>
30
31 #define GIC_MAX_INTRS 256
32 #define GIC_MAX_LONGS BITS_TO_LONGS(GIC_MAX_INTRS)
33
34 /* Add 2 to convert GIC CPU pin to core interrupt */
35 #define GIC_CPU_PIN_OFFSET 2
36
37 /* Mapped interrupt to pin X, then GIC will generate the vector (X+1). */
38 #define GIC_PIN_TO_VEC_OFFSET 1
39
40 /* Convert between local/shared IRQ number and GIC HW IRQ number. */
41 #define GIC_LOCAL_HWIRQ_BASE 0
42 #define GIC_LOCAL_TO_HWIRQ(x) (GIC_LOCAL_HWIRQ_BASE + (x))
43 #define GIC_HWIRQ_TO_LOCAL(x) ((x) - GIC_LOCAL_HWIRQ_BASE)
44 #define GIC_SHARED_HWIRQ_BASE GIC_NUM_LOCAL_INTRS
45 #define GIC_SHARED_TO_HWIRQ(x) (GIC_SHARED_HWIRQ_BASE + (x))
46 #define GIC_HWIRQ_TO_SHARED(x) ((x) - GIC_SHARED_HWIRQ_BASE)
47
48 void __iomem *mips_gic_base;
49
50 static DEFINE_PER_CPU_READ_MOSTLY(unsigned long[GIC_MAX_LONGS], pcpu_masks);
51
52 static DEFINE_RAW_SPINLOCK(gic_lock);
53 static struct irq_domain *gic_irq_domain;
54 static int gic_shared_intrs;
55 static unsigned int gic_cpu_pin;
56 static unsigned int timer_cpu_pin;
57 static struct irq_chip gic_level_irq_controller, gic_edge_irq_controller;
58
59 #ifdef CONFIG_GENERIC_IRQ_IPI
60 static DECLARE_BITMAP(ipi_resrv, GIC_MAX_INTRS);
61 static DECLARE_BITMAP(ipi_available, GIC_MAX_INTRS);
62 #endif /* CONFIG_GENERIC_IRQ_IPI */
63
64 static struct gic_all_vpes_chip_data {
65 u32 map;
66 bool mask;
67 } gic_all_vpes_chip_data[GIC_NUM_LOCAL_INTRS];
68
gic_clear_pcpu_masks(unsigned int intr)69 static void gic_clear_pcpu_masks(unsigned int intr)
70 {
71 unsigned int i;
72
73 /* Clear the interrupt's bit in all pcpu_masks */
74 for_each_possible_cpu(i)
75 clear_bit(intr, per_cpu_ptr(pcpu_masks, i));
76 }
77
gic_local_irq_is_routable(int intr)78 static bool gic_local_irq_is_routable(int intr)
79 {
80 u32 vpe_ctl;
81
82 /* All local interrupts are routable in EIC mode. */
83 if (cpu_has_veic)
84 return true;
85
86 vpe_ctl = read_gic_vl_ctl();
87 switch (intr) {
88 case GIC_LOCAL_INT_TIMER:
89 return vpe_ctl & GIC_VX_CTL_TIMER_ROUTABLE;
90 case GIC_LOCAL_INT_PERFCTR:
91 return vpe_ctl & GIC_VX_CTL_PERFCNT_ROUTABLE;
92 case GIC_LOCAL_INT_FDC:
93 return vpe_ctl & GIC_VX_CTL_FDC_ROUTABLE;
94 case GIC_LOCAL_INT_SWINT0:
95 case GIC_LOCAL_INT_SWINT1:
96 return vpe_ctl & GIC_VX_CTL_SWINT_ROUTABLE;
97 default:
98 return true;
99 }
100 }
101
gic_bind_eic_interrupt(int irq,int set)102 static void gic_bind_eic_interrupt(int irq, int set)
103 {
104 /* Convert irq vector # to hw int # */
105 irq -= GIC_PIN_TO_VEC_OFFSET;
106
107 /* Set irq to use shadow set */
108 write_gic_vl_eic_shadow_set(irq, set);
109 }
110
gic_send_ipi(struct irq_data * d,unsigned int cpu)111 static void gic_send_ipi(struct irq_data *d, unsigned int cpu)
112 {
113 irq_hw_number_t hwirq = GIC_HWIRQ_TO_SHARED(irqd_to_hwirq(d));
114
115 write_gic_wedge(GIC_WEDGE_RW | hwirq);
116 }
117
gic_get_c0_compare_int(void)118 int gic_get_c0_compare_int(void)
119 {
120 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_TIMER))
121 return MIPS_CPU_IRQ_BASE + cp0_compare_irq;
122 return irq_create_mapping(gic_irq_domain,
123 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_TIMER));
124 }
125
gic_get_c0_perfcount_int(void)126 int gic_get_c0_perfcount_int(void)
127 {
128 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_PERFCTR)) {
129 /* Is the performance counter shared with the timer? */
130 if (cp0_perfcount_irq < 0)
131 return -1;
132 return MIPS_CPU_IRQ_BASE + cp0_perfcount_irq;
133 }
134 return irq_create_mapping(gic_irq_domain,
135 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_PERFCTR));
136 }
137
gic_get_c0_fdc_int(void)138 int gic_get_c0_fdc_int(void)
139 {
140 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_FDC)) {
141 /* Is the FDC IRQ even present? */
142 if (cp0_fdc_irq < 0)
143 return -1;
144 return MIPS_CPU_IRQ_BASE + cp0_fdc_irq;
145 }
146
147 return irq_create_mapping(gic_irq_domain,
148 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_FDC));
149 }
150
gic_handle_shared_int(bool chained)151 static void gic_handle_shared_int(bool chained)
152 {
153 unsigned int intr;
154 unsigned long *pcpu_mask;
155 DECLARE_BITMAP(pending, GIC_MAX_INTRS);
156
157 /* Get per-cpu bitmaps */
158 pcpu_mask = this_cpu_ptr(pcpu_masks);
159
160 if (mips_cm_is64)
161 __ioread64_copy(pending, addr_gic_pend(),
162 DIV_ROUND_UP(gic_shared_intrs, 64));
163 else
164 __ioread32_copy(pending, addr_gic_pend(),
165 DIV_ROUND_UP(gic_shared_intrs, 32));
166
167 bitmap_and(pending, pending, pcpu_mask, gic_shared_intrs);
168
169 for_each_set_bit(intr, pending, gic_shared_intrs) {
170 if (chained)
171 generic_handle_domain_irq(gic_irq_domain,
172 GIC_SHARED_TO_HWIRQ(intr));
173 else
174 do_domain_IRQ(gic_irq_domain,
175 GIC_SHARED_TO_HWIRQ(intr));
176 }
177 }
178
gic_mask_irq(struct irq_data * d)179 static void gic_mask_irq(struct irq_data *d)
180 {
181 unsigned int intr = GIC_HWIRQ_TO_SHARED(d->hwirq);
182
183 write_gic_rmask(intr);
184 gic_clear_pcpu_masks(intr);
185 }
186
gic_unmask_irq(struct irq_data * d)187 static void gic_unmask_irq(struct irq_data *d)
188 {
189 unsigned int intr = GIC_HWIRQ_TO_SHARED(d->hwirq);
190 unsigned int cpu;
191
192 write_gic_smask(intr);
193
194 gic_clear_pcpu_masks(intr);
195 cpu = cpumask_first(irq_data_get_effective_affinity_mask(d));
196 set_bit(intr, per_cpu_ptr(pcpu_masks, cpu));
197 }
198
gic_ack_irq(struct irq_data * d)199 static void gic_ack_irq(struct irq_data *d)
200 {
201 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
202
203 write_gic_wedge(irq);
204 }
205
gic_set_type(struct irq_data * d,unsigned int type)206 static int gic_set_type(struct irq_data *d, unsigned int type)
207 {
208 unsigned int irq, pol, trig, dual;
209 unsigned long flags;
210
211 irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
212
213 raw_spin_lock_irqsave(&gic_lock, flags);
214 switch (type & IRQ_TYPE_SENSE_MASK) {
215 case IRQ_TYPE_EDGE_FALLING:
216 pol = GIC_POL_FALLING_EDGE;
217 trig = GIC_TRIG_EDGE;
218 dual = GIC_DUAL_SINGLE;
219 break;
220 case IRQ_TYPE_EDGE_RISING:
221 pol = GIC_POL_RISING_EDGE;
222 trig = GIC_TRIG_EDGE;
223 dual = GIC_DUAL_SINGLE;
224 break;
225 case IRQ_TYPE_EDGE_BOTH:
226 pol = 0; /* Doesn't matter */
227 trig = GIC_TRIG_EDGE;
228 dual = GIC_DUAL_DUAL;
229 break;
230 case IRQ_TYPE_LEVEL_LOW:
231 pol = GIC_POL_ACTIVE_LOW;
232 trig = GIC_TRIG_LEVEL;
233 dual = GIC_DUAL_SINGLE;
234 break;
235 case IRQ_TYPE_LEVEL_HIGH:
236 default:
237 pol = GIC_POL_ACTIVE_HIGH;
238 trig = GIC_TRIG_LEVEL;
239 dual = GIC_DUAL_SINGLE;
240 break;
241 }
242
243 change_gic_pol(irq, pol);
244 change_gic_trig(irq, trig);
245 change_gic_dual(irq, dual);
246
247 if (trig == GIC_TRIG_EDGE)
248 irq_set_chip_handler_name_locked(d, &gic_edge_irq_controller,
249 handle_edge_irq, NULL);
250 else
251 irq_set_chip_handler_name_locked(d, &gic_level_irq_controller,
252 handle_level_irq, NULL);
253 raw_spin_unlock_irqrestore(&gic_lock, flags);
254
255 return 0;
256 }
257
258 #ifdef CONFIG_SMP
gic_set_affinity(struct irq_data * d,const struct cpumask * cpumask,bool force)259 static int gic_set_affinity(struct irq_data *d, const struct cpumask *cpumask,
260 bool force)
261 {
262 unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
263 unsigned long flags;
264 unsigned int cpu;
265
266 cpu = cpumask_first_and(cpumask, cpu_online_mask);
267 if (cpu >= NR_CPUS)
268 return -EINVAL;
269
270 /* Assumption : cpumask refers to a single CPU */
271 raw_spin_lock_irqsave(&gic_lock, flags);
272
273 /* Re-route this IRQ */
274 write_gic_map_vp(irq, BIT(mips_cm_vp_id(cpu)));
275
276 /* Update the pcpu_masks */
277 gic_clear_pcpu_masks(irq);
278 if (read_gic_mask(irq))
279 set_bit(irq, per_cpu_ptr(pcpu_masks, cpu));
280
281 irq_data_update_effective_affinity(d, cpumask_of(cpu));
282 raw_spin_unlock_irqrestore(&gic_lock, flags);
283
284 return IRQ_SET_MASK_OK;
285 }
286 #endif
287
288 static struct irq_chip gic_level_irq_controller = {
289 .name = "MIPS GIC",
290 .irq_mask = gic_mask_irq,
291 .irq_unmask = gic_unmask_irq,
292 .irq_set_type = gic_set_type,
293 #ifdef CONFIG_SMP
294 .irq_set_affinity = gic_set_affinity,
295 #endif
296 };
297
298 static struct irq_chip gic_edge_irq_controller = {
299 .name = "MIPS GIC",
300 .irq_ack = gic_ack_irq,
301 .irq_mask = gic_mask_irq,
302 .irq_unmask = gic_unmask_irq,
303 .irq_set_type = gic_set_type,
304 #ifdef CONFIG_SMP
305 .irq_set_affinity = gic_set_affinity,
306 #endif
307 .ipi_send_single = gic_send_ipi,
308 };
309
gic_handle_local_int(bool chained)310 static void gic_handle_local_int(bool chained)
311 {
312 unsigned long pending, masked;
313 unsigned int intr;
314
315 pending = read_gic_vl_pend();
316 masked = read_gic_vl_mask();
317
318 bitmap_and(&pending, &pending, &masked, GIC_NUM_LOCAL_INTRS);
319
320 for_each_set_bit(intr, &pending, GIC_NUM_LOCAL_INTRS) {
321 if (chained)
322 generic_handle_domain_irq(gic_irq_domain,
323 GIC_LOCAL_TO_HWIRQ(intr));
324 else
325 do_domain_IRQ(gic_irq_domain,
326 GIC_LOCAL_TO_HWIRQ(intr));
327 }
328 }
329
gic_mask_local_irq(struct irq_data * d)330 static void gic_mask_local_irq(struct irq_data *d)
331 {
332 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
333
334 write_gic_vl_rmask(BIT(intr));
335 }
336
gic_unmask_local_irq(struct irq_data * d)337 static void gic_unmask_local_irq(struct irq_data *d)
338 {
339 int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
340
341 write_gic_vl_smask(BIT(intr));
342 }
343
344 static struct irq_chip gic_local_irq_controller = {
345 .name = "MIPS GIC Local",
346 .irq_mask = gic_mask_local_irq,
347 .irq_unmask = gic_unmask_local_irq,
348 };
349
gic_mask_local_irq_all_vpes(struct irq_data * d)350 static void gic_mask_local_irq_all_vpes(struct irq_data *d)
351 {
352 struct gic_all_vpes_chip_data *cd;
353 unsigned long flags;
354 int intr, cpu;
355
356 intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
357 cd = irq_data_get_irq_chip_data(d);
358 cd->mask = false;
359
360 raw_spin_lock_irqsave(&gic_lock, flags);
361 for_each_online_cpu(cpu) {
362 write_gic_vl_other(mips_cm_vp_id(cpu));
363 write_gic_vo_rmask(BIT(intr));
364 }
365 raw_spin_unlock_irqrestore(&gic_lock, flags);
366 }
367
gic_unmask_local_irq_all_vpes(struct irq_data * d)368 static void gic_unmask_local_irq_all_vpes(struct irq_data *d)
369 {
370 struct gic_all_vpes_chip_data *cd;
371 unsigned long flags;
372 int intr, cpu;
373
374 intr = GIC_HWIRQ_TO_LOCAL(d->hwirq);
375 cd = irq_data_get_irq_chip_data(d);
376 cd->mask = true;
377
378 raw_spin_lock_irqsave(&gic_lock, flags);
379 for_each_online_cpu(cpu) {
380 write_gic_vl_other(mips_cm_vp_id(cpu));
381 write_gic_vo_smask(BIT(intr));
382 }
383 raw_spin_unlock_irqrestore(&gic_lock, flags);
384 }
385
gic_all_vpes_irq_cpu_online(void)386 static void gic_all_vpes_irq_cpu_online(void)
387 {
388 static const unsigned int local_intrs[] = {
389 GIC_LOCAL_INT_TIMER,
390 GIC_LOCAL_INT_PERFCTR,
391 GIC_LOCAL_INT_FDC,
392 };
393 unsigned long flags;
394 int i;
395
396 raw_spin_lock_irqsave(&gic_lock, flags);
397
398 for (i = 0; i < ARRAY_SIZE(local_intrs); i++) {
399 unsigned int intr = local_intrs[i];
400 struct gic_all_vpes_chip_data *cd;
401
402 if (!gic_local_irq_is_routable(intr))
403 continue;
404 cd = &gic_all_vpes_chip_data[intr];
405 write_gic_vl_map(mips_gic_vx_map_reg(intr), cd->map);
406 if (cd->mask)
407 write_gic_vl_smask(BIT(intr));
408 }
409
410 raw_spin_unlock_irqrestore(&gic_lock, flags);
411 }
412
413 static struct irq_chip gic_all_vpes_local_irq_controller = {
414 .name = "MIPS GIC Local",
415 .irq_mask = gic_mask_local_irq_all_vpes,
416 .irq_unmask = gic_unmask_local_irq_all_vpes,
417 };
418
__gic_irq_dispatch(void)419 static void __gic_irq_dispatch(void)
420 {
421 gic_handle_local_int(false);
422 gic_handle_shared_int(false);
423 }
424
gic_irq_dispatch(struct irq_desc * desc)425 static void gic_irq_dispatch(struct irq_desc *desc)
426 {
427 gic_handle_local_int(true);
428 gic_handle_shared_int(true);
429 }
430
gic_shared_irq_domain_map(struct irq_domain * d,unsigned int virq,irq_hw_number_t hw,unsigned int cpu)431 static int gic_shared_irq_domain_map(struct irq_domain *d, unsigned int virq,
432 irq_hw_number_t hw, unsigned int cpu)
433 {
434 int intr = GIC_HWIRQ_TO_SHARED(hw);
435 struct irq_data *data;
436 unsigned long flags;
437
438 data = irq_get_irq_data(virq);
439
440 raw_spin_lock_irqsave(&gic_lock, flags);
441 write_gic_map_pin(intr, GIC_MAP_PIN_MAP_TO_PIN | gic_cpu_pin);
442 write_gic_map_vp(intr, BIT(mips_cm_vp_id(cpu)));
443 irq_data_update_effective_affinity(data, cpumask_of(cpu));
444 raw_spin_unlock_irqrestore(&gic_lock, flags);
445
446 return 0;
447 }
448
gic_irq_domain_xlate(struct irq_domain * d,struct device_node * ctrlr,const u32 * intspec,unsigned int intsize,irq_hw_number_t * out_hwirq,unsigned int * out_type)449 static int gic_irq_domain_xlate(struct irq_domain *d, struct device_node *ctrlr,
450 const u32 *intspec, unsigned int intsize,
451 irq_hw_number_t *out_hwirq,
452 unsigned int *out_type)
453 {
454 if (intsize != 3)
455 return -EINVAL;
456
457 if (intspec[0] == GIC_SHARED)
458 *out_hwirq = GIC_SHARED_TO_HWIRQ(intspec[1]);
459 else if (intspec[0] == GIC_LOCAL)
460 *out_hwirq = GIC_LOCAL_TO_HWIRQ(intspec[1]);
461 else
462 return -EINVAL;
463 *out_type = intspec[2] & IRQ_TYPE_SENSE_MASK;
464
465 return 0;
466 }
467
gic_irq_domain_map(struct irq_domain * d,unsigned int virq,irq_hw_number_t hwirq)468 static int gic_irq_domain_map(struct irq_domain *d, unsigned int virq,
469 irq_hw_number_t hwirq)
470 {
471 struct gic_all_vpes_chip_data *cd;
472 unsigned long flags;
473 unsigned int intr;
474 int err, cpu;
475 u32 map;
476
477 if (hwirq >= GIC_SHARED_HWIRQ_BASE) {
478 #ifdef CONFIG_GENERIC_IRQ_IPI
479 /* verify that shared irqs don't conflict with an IPI irq */
480 if (test_bit(GIC_HWIRQ_TO_SHARED(hwirq), ipi_resrv))
481 return -EBUSY;
482 #endif /* CONFIG_GENERIC_IRQ_IPI */
483
484 err = irq_domain_set_hwirq_and_chip(d, virq, hwirq,
485 &gic_level_irq_controller,
486 NULL);
487 if (err)
488 return err;
489
490 irqd_set_single_target(irq_desc_get_irq_data(irq_to_desc(virq)));
491 return gic_shared_irq_domain_map(d, virq, hwirq, 0);
492 }
493
494 intr = GIC_HWIRQ_TO_LOCAL(hwirq);
495 map = GIC_MAP_PIN_MAP_TO_PIN | gic_cpu_pin;
496
497 /*
498 * If adding support for more per-cpu interrupts, keep the the
499 * array in gic_all_vpes_irq_cpu_online() in sync.
500 */
501 switch (intr) {
502 case GIC_LOCAL_INT_TIMER:
503 /* CONFIG_MIPS_CMP workaround (see __gic_init) */
504 map = GIC_MAP_PIN_MAP_TO_PIN | timer_cpu_pin;
505 fallthrough;
506 case GIC_LOCAL_INT_PERFCTR:
507 case GIC_LOCAL_INT_FDC:
508 /*
509 * HACK: These are all really percpu interrupts, but
510 * the rest of the MIPS kernel code does not use the
511 * percpu IRQ API for them.
512 */
513 cd = &gic_all_vpes_chip_data[intr];
514 cd->map = map;
515 err = irq_domain_set_hwirq_and_chip(d, virq, hwirq,
516 &gic_all_vpes_local_irq_controller,
517 cd);
518 if (err)
519 return err;
520
521 irq_set_handler(virq, handle_percpu_irq);
522 break;
523
524 default:
525 err = irq_domain_set_hwirq_and_chip(d, virq, hwirq,
526 &gic_local_irq_controller,
527 NULL);
528 if (err)
529 return err;
530
531 irq_set_handler(virq, handle_percpu_devid_irq);
532 irq_set_percpu_devid(virq);
533 break;
534 }
535
536 if (!gic_local_irq_is_routable(intr))
537 return -EPERM;
538
539 raw_spin_lock_irqsave(&gic_lock, flags);
540 for_each_online_cpu(cpu) {
541 write_gic_vl_other(mips_cm_vp_id(cpu));
542 write_gic_vo_map(mips_gic_vx_map_reg(intr), map);
543 }
544 raw_spin_unlock_irqrestore(&gic_lock, flags);
545
546 return 0;
547 }
548
gic_irq_domain_alloc(struct irq_domain * d,unsigned int virq,unsigned int nr_irqs,void * arg)549 static int gic_irq_domain_alloc(struct irq_domain *d, unsigned int virq,
550 unsigned int nr_irqs, void *arg)
551 {
552 struct irq_fwspec *fwspec = arg;
553 irq_hw_number_t hwirq;
554
555 if (fwspec->param[0] == GIC_SHARED)
556 hwirq = GIC_SHARED_TO_HWIRQ(fwspec->param[1]);
557 else
558 hwirq = GIC_LOCAL_TO_HWIRQ(fwspec->param[1]);
559
560 return gic_irq_domain_map(d, virq, hwirq);
561 }
562
gic_irq_domain_free(struct irq_domain * d,unsigned int virq,unsigned int nr_irqs)563 void gic_irq_domain_free(struct irq_domain *d, unsigned int virq,
564 unsigned int nr_irqs)
565 {
566 }
567
568 static const struct irq_domain_ops gic_irq_domain_ops = {
569 .xlate = gic_irq_domain_xlate,
570 .alloc = gic_irq_domain_alloc,
571 .free = gic_irq_domain_free,
572 .map = gic_irq_domain_map,
573 };
574
575 #ifdef CONFIG_GENERIC_IRQ_IPI
576
gic_ipi_domain_xlate(struct irq_domain * d,struct device_node * ctrlr,const u32 * intspec,unsigned int intsize,irq_hw_number_t * out_hwirq,unsigned int * out_type)577 static int gic_ipi_domain_xlate(struct irq_domain *d, struct device_node *ctrlr,
578 const u32 *intspec, unsigned int intsize,
579 irq_hw_number_t *out_hwirq,
580 unsigned int *out_type)
581 {
582 /*
583 * There's nothing to translate here. hwirq is dynamically allocated and
584 * the irq type is always edge triggered.
585 * */
586 *out_hwirq = 0;
587 *out_type = IRQ_TYPE_EDGE_RISING;
588
589 return 0;
590 }
591
gic_ipi_domain_alloc(struct irq_domain * d,unsigned int virq,unsigned int nr_irqs,void * arg)592 static int gic_ipi_domain_alloc(struct irq_domain *d, unsigned int virq,
593 unsigned int nr_irqs, void *arg)
594 {
595 struct cpumask *ipimask = arg;
596 irq_hw_number_t hwirq, base_hwirq;
597 int cpu, ret, i;
598
599 base_hwirq = find_first_bit(ipi_available, gic_shared_intrs);
600 if (base_hwirq == gic_shared_intrs)
601 return -ENOMEM;
602
603 /* check that we have enough space */
604 for (i = base_hwirq; i < nr_irqs; i++) {
605 if (!test_bit(i, ipi_available))
606 return -EBUSY;
607 }
608 bitmap_clear(ipi_available, base_hwirq, nr_irqs);
609
610 /* map the hwirq for each cpu consecutively */
611 i = 0;
612 for_each_cpu(cpu, ipimask) {
613 hwirq = GIC_SHARED_TO_HWIRQ(base_hwirq + i);
614
615 ret = irq_domain_set_hwirq_and_chip(d, virq + i, hwirq,
616 &gic_edge_irq_controller,
617 NULL);
618 if (ret)
619 goto error;
620
621 ret = irq_domain_set_hwirq_and_chip(d->parent, virq + i, hwirq,
622 &gic_edge_irq_controller,
623 NULL);
624 if (ret)
625 goto error;
626
627 ret = irq_set_irq_type(virq + i, IRQ_TYPE_EDGE_RISING);
628 if (ret)
629 goto error;
630
631 ret = gic_shared_irq_domain_map(d, virq + i, hwirq, cpu);
632 if (ret)
633 goto error;
634
635 i++;
636 }
637
638 return 0;
639 error:
640 bitmap_set(ipi_available, base_hwirq, nr_irqs);
641 return ret;
642 }
643
gic_ipi_domain_free(struct irq_domain * d,unsigned int virq,unsigned int nr_irqs)644 static void gic_ipi_domain_free(struct irq_domain *d, unsigned int virq,
645 unsigned int nr_irqs)
646 {
647 irq_hw_number_t base_hwirq;
648 struct irq_data *data;
649
650 data = irq_get_irq_data(virq);
651 if (!data)
652 return;
653
654 base_hwirq = GIC_HWIRQ_TO_SHARED(irqd_to_hwirq(data));
655 bitmap_set(ipi_available, base_hwirq, nr_irqs);
656 }
657
gic_ipi_domain_match(struct irq_domain * d,struct device_node * node,enum irq_domain_bus_token bus_token)658 static int gic_ipi_domain_match(struct irq_domain *d, struct device_node *node,
659 enum irq_domain_bus_token bus_token)
660 {
661 bool is_ipi;
662
663 switch (bus_token) {
664 case DOMAIN_BUS_IPI:
665 is_ipi = d->bus_token == bus_token;
666 return (!node || to_of_node(d->fwnode) == node) && is_ipi;
667 break;
668 default:
669 return 0;
670 }
671 }
672
673 static const struct irq_domain_ops gic_ipi_domain_ops = {
674 .xlate = gic_ipi_domain_xlate,
675 .alloc = gic_ipi_domain_alloc,
676 .free = gic_ipi_domain_free,
677 .match = gic_ipi_domain_match,
678 };
679
gic_register_ipi_domain(struct device_node * node)680 static int gic_register_ipi_domain(struct device_node *node)
681 {
682 struct irq_domain *gic_ipi_domain;
683 unsigned int v[2], num_ipis;
684
685 gic_ipi_domain = irq_domain_add_hierarchy(gic_irq_domain,
686 IRQ_DOMAIN_FLAG_IPI_PER_CPU,
687 GIC_NUM_LOCAL_INTRS + gic_shared_intrs,
688 node, &gic_ipi_domain_ops, NULL);
689 if (!gic_ipi_domain) {
690 pr_err("Failed to add IPI domain");
691 return -ENXIO;
692 }
693
694 irq_domain_update_bus_token(gic_ipi_domain, DOMAIN_BUS_IPI);
695
696 if (node &&
697 !of_property_read_u32_array(node, "mti,reserved-ipi-vectors", v, 2)) {
698 bitmap_set(ipi_resrv, v[0], v[1]);
699 } else {
700 /*
701 * Reserve 2 interrupts per possible CPU/VP for use as IPIs,
702 * meeting the requirements of arch/mips SMP.
703 */
704 num_ipis = 2 * num_possible_cpus();
705 bitmap_set(ipi_resrv, gic_shared_intrs - num_ipis, num_ipis);
706 }
707
708 bitmap_copy(ipi_available, ipi_resrv, GIC_MAX_INTRS);
709
710 return 0;
711 }
712
713 #else /* !CONFIG_GENERIC_IRQ_IPI */
714
gic_register_ipi_domain(struct device_node * node)715 static inline int gic_register_ipi_domain(struct device_node *node)
716 {
717 return 0;
718 }
719
720 #endif /* !CONFIG_GENERIC_IRQ_IPI */
721
gic_cpu_startup(unsigned int cpu)722 static int gic_cpu_startup(unsigned int cpu)
723 {
724 /* Enable or disable EIC */
725 change_gic_vl_ctl(GIC_VX_CTL_EIC,
726 cpu_has_veic ? GIC_VX_CTL_EIC : 0);
727
728 /* Clear all local IRQ masks (ie. disable all local interrupts) */
729 write_gic_vl_rmask(~0);
730
731 /* Enable desired interrupts */
732 gic_all_vpes_irq_cpu_online();
733
734 return 0;
735 }
736
gic_of_init(struct device_node * node,struct device_node * parent)737 static int __init gic_of_init(struct device_node *node,
738 struct device_node *parent)
739 {
740 unsigned int cpu_vec, i, gicconfig;
741 unsigned long reserved;
742 phys_addr_t gic_base;
743 struct resource res;
744 size_t gic_len;
745 int ret;
746
747 /* Find the first available CPU vector. */
748 i = 0;
749 reserved = (C_SW0 | C_SW1) >> __ffs(C_SW0);
750 while (!of_property_read_u32_index(node, "mti,reserved-cpu-vectors",
751 i++, &cpu_vec))
752 reserved |= BIT(cpu_vec);
753
754 cpu_vec = find_first_zero_bit(&reserved, hweight_long(ST0_IM));
755 if (cpu_vec == hweight_long(ST0_IM)) {
756 pr_err("No CPU vectors available\n");
757 return -ENODEV;
758 }
759
760 if (of_address_to_resource(node, 0, &res)) {
761 /*
762 * Probe the CM for the GIC base address if not specified
763 * in the device-tree.
764 */
765 if (mips_cm_present()) {
766 gic_base = read_gcr_gic_base() &
767 ~CM_GCR_GIC_BASE_GICEN;
768 gic_len = 0x20000;
769 pr_warn("Using inherited base address %pa\n",
770 &gic_base);
771 } else {
772 pr_err("Failed to get memory range\n");
773 return -ENODEV;
774 }
775 } else {
776 gic_base = res.start;
777 gic_len = resource_size(&res);
778 }
779
780 if (mips_cm_present()) {
781 write_gcr_gic_base(gic_base | CM_GCR_GIC_BASE_GICEN);
782 /* Ensure GIC region is enabled before trying to access it */
783 __sync();
784 }
785
786 mips_gic_base = ioremap(gic_base, gic_len);
787 if (!mips_gic_base) {
788 pr_err("Failed to ioremap gic_base\n");
789 return -ENOMEM;
790 }
791
792 gicconfig = read_gic_config();
793 gic_shared_intrs = gicconfig & GIC_CONFIG_NUMINTERRUPTS;
794 gic_shared_intrs >>= __ffs(GIC_CONFIG_NUMINTERRUPTS);
795 gic_shared_intrs = (gic_shared_intrs + 1) * 8;
796
797 if (cpu_has_veic) {
798 /* Always use vector 1 in EIC mode */
799 gic_cpu_pin = 0;
800 timer_cpu_pin = gic_cpu_pin;
801 set_vi_handler(gic_cpu_pin + GIC_PIN_TO_VEC_OFFSET,
802 __gic_irq_dispatch);
803 } else {
804 gic_cpu_pin = cpu_vec - GIC_CPU_PIN_OFFSET;
805 irq_set_chained_handler(MIPS_CPU_IRQ_BASE + cpu_vec,
806 gic_irq_dispatch);
807 /*
808 * With the CMP implementation of SMP (deprecated), other CPUs
809 * are started by the bootloader and put into a timer based
810 * waiting poll loop. We must not re-route those CPU's local
811 * timer interrupts as the wait instruction will never finish,
812 * so just handle whatever CPU interrupt it is routed to by
813 * default.
814 *
815 * This workaround should be removed when CMP support is
816 * dropped.
817 */
818 if (IS_ENABLED(CONFIG_MIPS_CMP) &&
819 gic_local_irq_is_routable(GIC_LOCAL_INT_TIMER)) {
820 timer_cpu_pin = read_gic_vl_timer_map() & GIC_MAP_PIN_MAP;
821 irq_set_chained_handler(MIPS_CPU_IRQ_BASE +
822 GIC_CPU_PIN_OFFSET +
823 timer_cpu_pin,
824 gic_irq_dispatch);
825 } else {
826 timer_cpu_pin = gic_cpu_pin;
827 }
828 }
829
830 gic_irq_domain = irq_domain_add_simple(node, GIC_NUM_LOCAL_INTRS +
831 gic_shared_intrs, 0,
832 &gic_irq_domain_ops, NULL);
833 if (!gic_irq_domain) {
834 pr_err("Failed to add IRQ domain");
835 return -ENXIO;
836 }
837
838 ret = gic_register_ipi_domain(node);
839 if (ret)
840 return ret;
841
842 board_bind_eic_interrupt = &gic_bind_eic_interrupt;
843
844 /* Setup defaults */
845 for (i = 0; i < gic_shared_intrs; i++) {
846 change_gic_pol(i, GIC_POL_ACTIVE_HIGH);
847 change_gic_trig(i, GIC_TRIG_LEVEL);
848 write_gic_rmask(i);
849 }
850
851 return cpuhp_setup_state(CPUHP_AP_IRQ_MIPS_GIC_STARTING,
852 "irqchip/mips/gic:starting",
853 gic_cpu_startup, NULL);
854 }
855 IRQCHIP_DECLARE(mips_gic, "mti,gic", gic_of_init);
856