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
6 * Copyright (C) 2008 Ralf Baechle (ralf@linux-mips.org)
7 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
9 #include <linux/bitmap.h>
10 #include <linux/clocksource.h>
11 #include <linux/init.h>
12 #include <linux/interrupt.h>
13 #include <linux/irq.h>
14 #include <linux/irqchip/mips-gic.h>
15 #include <linux/of_address.h>
16 #include <linux/sched.h>
17 #include <linux/smp.h>
19 #include <asm/mips-cm.h>
20 #include <asm/setup.h>
21 #include <asm/traps.h>
23 #include <dt-bindings/interrupt-controller/mips-gic.h>
27 unsigned int gic_present
;
29 struct gic_pcpu_mask
{
30 DECLARE_BITMAP(pcpu_mask
, GIC_MAX_INTRS
);
33 static void __iomem
*gic_base
;
34 static struct gic_pcpu_mask pcpu_masks
[NR_CPUS
];
35 static DEFINE_SPINLOCK(gic_lock
);
36 static struct irq_domain
*gic_irq_domain
;
37 static int gic_shared_intrs
;
39 static unsigned int gic_cpu_pin
;
40 static unsigned int timer_cpu_pin
;
41 static struct irq_chip gic_level_irq_controller
, gic_edge_irq_controller
;
43 static void __gic_irq_dispatch(void);
45 static inline unsigned int gic_read(unsigned int reg
)
47 return __raw_readl(gic_base
+ reg
);
50 static inline void gic_write(unsigned int reg
, unsigned int val
)
52 __raw_writel(val
, gic_base
+ reg
);
55 static inline void gic_update_bits(unsigned int reg
, unsigned int mask
,
60 regval
= gic_read(reg
);
63 gic_write(reg
, regval
);
66 static inline void gic_reset_mask(unsigned int intr
)
68 gic_write(GIC_REG(SHARED
, GIC_SH_RMASK
) + GIC_INTR_OFS(intr
),
69 1 << GIC_INTR_BIT(intr
));
72 static inline void gic_set_mask(unsigned int intr
)
74 gic_write(GIC_REG(SHARED
, GIC_SH_SMASK
) + GIC_INTR_OFS(intr
),
75 1 << GIC_INTR_BIT(intr
));
78 static inline void gic_set_polarity(unsigned int intr
, unsigned int pol
)
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
));
85 static inline void gic_set_trigger(unsigned int intr
, unsigned int trig
)
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
));
92 static inline void gic_set_dual_edge(unsigned int intr
, unsigned int dual
)
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
));
99 static inline void gic_map_to_pin(unsigned int intr
, unsigned int pin
)
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
);
105 static inline void gic_map_to_vpe(unsigned int intr
, unsigned int vpe
)
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
));
112 #ifdef CONFIG_CLKSRC_MIPS_GIC
113 cycle_t
gic_read_count(void)
115 unsigned int hi
, hi2
, lo
;
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
));
123 return (((cycle_t
) hi
) << 32) + lo
;
126 unsigned int gic_get_count_width(void)
128 unsigned int bits
, config
;
130 config
= gic_read(GIC_REG(SHARED
, GIC_SH_CONFIG
));
131 bits
= 32 + 4 * ((config
& GIC_SH_CONFIG_COUNTBITS_MSK
) >>
132 GIC_SH_CONFIG_COUNTBITS_SHF
);
137 void gic_write_compare(cycle_t cnt
)
139 gic_write(GIC_REG(VPE_LOCAL
, GIC_VPE_COMPARE_HI
),
141 gic_write(GIC_REG(VPE_LOCAL
, GIC_VPE_COMPARE_LO
),
142 (int)(cnt
& 0xffffffff));
145 void gic_write_cpu_compare(cycle_t cnt
, int cpu
)
149 local_irq_save(flags
);
151 gic_write(GIC_REG(VPE_LOCAL
, GIC_VPE_OTHER_ADDR
), cpu
);
152 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_COMPARE_HI
),
154 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_COMPARE_LO
),
155 (int)(cnt
& 0xffffffff));
157 local_irq_restore(flags
);
160 cycle_t
gic_read_compare(void)
164 hi
= gic_read(GIC_REG(VPE_LOCAL
, GIC_VPE_COMPARE_HI
));
165 lo
= gic_read(GIC_REG(VPE_LOCAL
, GIC_VPE_COMPARE_LO
));
167 return (((cycle_t
) hi
) << 32) + lo
;
171 static bool gic_local_irq_is_routable(int intr
)
175 /* All local interrupts are routable in EIC mode. */
179 vpe_ctl
= gic_read(GIC_REG(VPE_LOCAL
, GIC_VPE_CTL
));
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
;
195 static void gic_bind_eic_interrupt(int irq
, int set
)
197 /* Convert irq vector # to hw int # */
198 irq
-= GIC_PIN_TO_VEC_OFFSET
;
200 /* Set irq to use shadow set */
201 gic_write(GIC_REG(VPE_LOCAL
, GIC_VPE_EIC_SHADOW_SET_BASE
) +
202 GIC_VPE_EIC_SS(irq
), set
);
205 void gic_send_ipi(unsigned int intr
)
207 gic_write(GIC_REG(SHARED
, GIC_SH_WEDGE
), GIC_SH_WEDGE_SET(intr
));
210 int gic_get_c0_compare_int(void)
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
));
218 int gic_get_c0_perfcount_int(void)
220 if (!gic_local_irq_is_routable(GIC_LOCAL_INT_PERFCTR
)) {
221 /* Is the erformance counter shared with the timer? */
222 if (cp0_perfcount_irq
< 0)
224 return MIPS_CPU_IRQ_BASE
+ cp0_perfcount_irq
;
226 return irq_create_mapping(gic_irq_domain
,
227 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_PERFCTR
));
230 static void gic_handle_shared_int(void)
232 unsigned int i
, intr
, virq
;
233 unsigned long *pcpu_mask
;
234 unsigned long pending_reg
, intrmask_reg
;
235 DECLARE_BITMAP(pending
, GIC_MAX_INTRS
);
236 DECLARE_BITMAP(intrmask
, GIC_MAX_INTRS
);
238 /* Get per-cpu bitmaps */
239 pcpu_mask
= pcpu_masks
[smp_processor_id()].pcpu_mask
;
241 pending_reg
= GIC_REG(SHARED
, GIC_SH_PEND
);
242 intrmask_reg
= GIC_REG(SHARED
, GIC_SH_MASK
);
244 for (i
= 0; i
< BITS_TO_LONGS(gic_shared_intrs
); i
++) {
245 pending
[i
] = gic_read(pending_reg
);
246 intrmask
[i
] = gic_read(intrmask_reg
);
251 bitmap_and(pending
, pending
, intrmask
, gic_shared_intrs
);
252 bitmap_and(pending
, pending
, pcpu_mask
, gic_shared_intrs
);
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
));
260 /* go to next pending bit */
261 bitmap_clear(pending
, intr
, 1);
262 intr
= find_first_bit(pending
, gic_shared_intrs
);
266 static void gic_mask_irq(struct irq_data
*d
)
268 gic_reset_mask(GIC_HWIRQ_TO_SHARED(d
->hwirq
));
271 static void gic_unmask_irq(struct irq_data
*d
)
273 gic_set_mask(GIC_HWIRQ_TO_SHARED(d
->hwirq
));
276 static void gic_ack_irq(struct irq_data
*d
)
278 unsigned int irq
= GIC_HWIRQ_TO_SHARED(d
->hwirq
);
280 gic_write(GIC_REG(SHARED
, GIC_SH_WEDGE
), GIC_SH_WEDGE_CLR(irq
));
283 static int gic_set_type(struct irq_data
*d
, unsigned int type
)
285 unsigned int irq
= GIC_HWIRQ_TO_SHARED(d
->hwirq
);
289 spin_lock_irqsave(&gic_lock
, flags
);
290 switch (type
& IRQ_TYPE_SENSE_MASK
) {
291 case IRQ_TYPE_EDGE_FALLING
:
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
);
297 case IRQ_TYPE_EDGE_RISING
:
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
);
303 case IRQ_TYPE_EDGE_BOTH
:
304 /* polarity is irrelevant in this case */
305 gic_set_trigger(irq
, GIC_TRIG_EDGE
);
306 gic_set_dual_edge(irq
, GIC_TRIG_DUAL_ENABLE
);
309 case IRQ_TYPE_LEVEL_LOW
:
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
);
315 case IRQ_TYPE_LEVEL_HIGH
:
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
);
325 __irq_set_chip_handler_name_locked(d
->irq
,
326 &gic_edge_irq_controller
,
327 handle_edge_irq
, NULL
);
329 __irq_set_chip_handler_name_locked(d
->irq
,
330 &gic_level_irq_controller
,
331 handle_level_irq
, NULL
);
333 spin_unlock_irqrestore(&gic_lock
, flags
);
339 static int gic_set_affinity(struct irq_data
*d
, const struct cpumask
*cpumask
,
342 unsigned int irq
= GIC_HWIRQ_TO_SHARED(d
->hwirq
);
343 cpumask_t tmp
= CPU_MASK_NONE
;
347 cpumask_and(&tmp
, cpumask
, cpu_online_mask
);
351 /* Assumption : cpumask refers to a single CPU */
352 spin_lock_irqsave(&gic_lock
, flags
);
354 /* Re-route this IRQ */
355 gic_map_to_vpe(irq
, first_cpu(tmp
));
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
);
362 cpumask_copy(d
->affinity
, cpumask
);
363 spin_unlock_irqrestore(&gic_lock
, flags
);
365 return IRQ_SET_MASK_OK_NOCOPY
;
369 static struct irq_chip gic_level_irq_controller
= {
371 .irq_mask
= gic_mask_irq
,
372 .irq_unmask
= gic_unmask_irq
,
373 .irq_set_type
= gic_set_type
,
375 .irq_set_affinity
= gic_set_affinity
,
379 static struct irq_chip gic_edge_irq_controller
= {
381 .irq_ack
= gic_ack_irq
,
382 .irq_mask
= gic_mask_irq
,
383 .irq_unmask
= gic_unmask_irq
,
384 .irq_set_type
= gic_set_type
,
386 .irq_set_affinity
= gic_set_affinity
,
390 static void gic_handle_local_int(void)
392 unsigned long pending
, masked
;
393 unsigned int intr
, virq
;
395 pending
= gic_read(GIC_REG(VPE_LOCAL
, GIC_VPE_PEND
));
396 masked
= gic_read(GIC_REG(VPE_LOCAL
, GIC_VPE_MASK
));
398 bitmap_and(&pending
, &pending
, &masked
, GIC_NUM_LOCAL_INTRS
);
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
));
406 /* go to next pending bit */
407 bitmap_clear(&pending
, intr
, 1);
408 intr
= find_first_bit(&pending
, GIC_NUM_LOCAL_INTRS
);
412 static void gic_mask_local_irq(struct irq_data
*d
)
414 int intr
= GIC_HWIRQ_TO_LOCAL(d
->hwirq
);
416 gic_write(GIC_REG(VPE_LOCAL
, GIC_VPE_RMASK
), 1 << intr
);
419 static void gic_unmask_local_irq(struct irq_data
*d
)
421 int intr
= GIC_HWIRQ_TO_LOCAL(d
->hwirq
);
423 gic_write(GIC_REG(VPE_LOCAL
, GIC_VPE_SMASK
), 1 << intr
);
426 static 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
,
432 static void gic_mask_local_irq_all_vpes(struct irq_data
*d
)
434 int intr
= GIC_HWIRQ_TO_LOCAL(d
->hwirq
);
438 spin_lock_irqsave(&gic_lock
, flags
);
439 for (i
= 0; i
< gic_vpes
; i
++) {
440 gic_write(GIC_REG(VPE_LOCAL
, GIC_VPE_OTHER_ADDR
), i
);
441 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_RMASK
), 1 << intr
);
443 spin_unlock_irqrestore(&gic_lock
, flags
);
446 static void gic_unmask_local_irq_all_vpes(struct irq_data
*d
)
448 int intr
= GIC_HWIRQ_TO_LOCAL(d
->hwirq
);
452 spin_lock_irqsave(&gic_lock
, flags
);
453 for (i
= 0; i
< gic_vpes
; i
++) {
454 gic_write(GIC_REG(VPE_LOCAL
, GIC_VPE_OTHER_ADDR
), i
);
455 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_SMASK
), 1 << intr
);
457 spin_unlock_irqrestore(&gic_lock
, flags
);
460 static 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
,
466 static void __gic_irq_dispatch(void)
468 gic_handle_local_int();
469 gic_handle_shared_int();
472 static void gic_irq_dispatch(unsigned int irq
, struct irq_desc
*desc
)
474 __gic_irq_dispatch();
477 #ifdef CONFIG_MIPS_GIC_IPI
478 static int gic_resched_int_base
;
479 static int gic_call_int_base
;
481 unsigned int plat_ipi_resched_int_xlate(unsigned int cpu
)
483 return gic_resched_int_base
+ cpu
;
486 unsigned int plat_ipi_call_int_xlate(unsigned int cpu
)
488 return gic_call_int_base
+ cpu
;
491 static irqreturn_t
ipi_resched_interrupt(int irq
, void *dev_id
)
498 static irqreturn_t
ipi_call_interrupt(int irq
, void *dev_id
)
500 smp_call_function_interrupt();
505 static struct irqaction irq_resched
= {
506 .handler
= ipi_resched_interrupt
,
507 .flags
= IRQF_PERCPU
,
508 .name
= "IPI resched"
511 static struct irqaction irq_call
= {
512 .handler
= ipi_call_interrupt
,
513 .flags
= IRQF_PERCPU
,
517 static __init
void gic_ipi_init_one(unsigned int intr
, int cpu
,
518 struct irqaction
*action
)
520 int virq
= irq_create_mapping(gic_irq_domain
,
521 GIC_SHARED_TO_HWIRQ(intr
));
524 gic_map_to_vpe(intr
, cpu
);
525 for (i
= 0; i
< NR_CPUS
; i
++)
526 clear_bit(intr
, pcpu_masks
[i
].pcpu_mask
);
527 set_bit(intr
, pcpu_masks
[cpu
].pcpu_mask
);
529 irq_set_irq_type(virq
, IRQ_TYPE_EDGE_RISING
);
531 irq_set_handler(virq
, handle_percpu_irq
);
532 setup_irq(virq
, action
);
535 static __init
void gic_ipi_init(void)
539 /* Use last 2 * NR_CPUS interrupts as IPIs */
540 gic_resched_int_base
= gic_shared_intrs
- nr_cpu_ids
;
541 gic_call_int_base
= gic_resched_int_base
- nr_cpu_ids
;
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
);
549 static inline void gic_ipi_init(void)
554 static void __init
gic_basic_init(void)
558 board_bind_eic_interrupt
= &gic_bind_eic_interrupt
;
561 for (i
= 0; i
< gic_shared_intrs
; i
++) {
562 gic_set_polarity(i
, GIC_POL_POS
);
563 gic_set_trigger(i
, GIC_TRIG_LEVEL
);
567 for (i
= 0; i
< gic_vpes
; i
++) {
570 gic_write(GIC_REG(VPE_LOCAL
, GIC_VPE_OTHER_ADDR
), i
);
571 for (j
= 0; j
< GIC_NUM_LOCAL_INTRS
; j
++) {
572 if (!gic_local_irq_is_routable(j
))
574 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_RMASK
), 1 << j
);
579 static int gic_local_irq_domain_map(struct irq_domain
*d
, unsigned int virq
,
582 int intr
= GIC_HWIRQ_TO_LOCAL(hw
);
587 if (!gic_local_irq_is_routable(intr
))
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.
595 if (intr
!= GIC_LOCAL_INT_TIMER
&& intr
!= GIC_LOCAL_INT_PERFCTR
) {
596 irq_set_chip_and_handler(virq
,
597 &gic_local_irq_controller
,
598 handle_percpu_devid_irq
);
599 irq_set_percpu_devid(virq
);
601 irq_set_chip_and_handler(virq
,
602 &gic_all_vpes_local_irq_controller
,
606 spin_lock_irqsave(&gic_lock
, flags
);
607 for (i
= 0; i
< gic_vpes
; i
++) {
608 u32 val
= GIC_MAP_TO_PIN_MSK
| gic_cpu_pin
;
610 gic_write(GIC_REG(VPE_LOCAL
, GIC_VPE_OTHER_ADDR
), i
);
613 case GIC_LOCAL_INT_WD
:
614 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_WD_MAP
), val
);
616 case GIC_LOCAL_INT_COMPARE
:
617 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_COMPARE_MAP
), val
);
619 case GIC_LOCAL_INT_TIMER
:
620 /* CONFIG_MIPS_CMP workaround (see __gic_init) */
621 val
= GIC_MAP_TO_PIN_MSK
| timer_cpu_pin
;
622 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_TIMER_MAP
), val
);
624 case GIC_LOCAL_INT_PERFCTR
:
625 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_PERFCTR_MAP
), val
);
627 case GIC_LOCAL_INT_SWINT0
:
628 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_SWINT0_MAP
), val
);
630 case GIC_LOCAL_INT_SWINT1
:
631 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_SWINT1_MAP
), val
);
633 case GIC_LOCAL_INT_FDC
:
634 gic_write(GIC_REG(VPE_OTHER
, GIC_VPE_FDC_MAP
), val
);
637 pr_err("Invalid local IRQ %d\n", intr
);
642 spin_unlock_irqrestore(&gic_lock
, flags
);
647 static int gic_shared_irq_domain_map(struct irq_domain
*d
, unsigned int virq
,
650 int intr
= GIC_HWIRQ_TO_SHARED(hw
);
653 irq_set_chip_and_handler(virq
, &gic_level_irq_controller
,
656 spin_lock_irqsave(&gic_lock
, flags
);
657 gic_map_to_pin(intr
, gic_cpu_pin
);
658 /* Map to VPE 0 by default */
659 gic_map_to_vpe(intr
, 0);
660 set_bit(intr
, pcpu_masks
[0].pcpu_mask
);
661 spin_unlock_irqrestore(&gic_lock
, flags
);
666 static int gic_irq_domain_map(struct irq_domain
*d
, unsigned int virq
,
669 if (GIC_HWIRQ_TO_LOCAL(hw
) < GIC_NUM_LOCAL_INTRS
)
670 return gic_local_irq_domain_map(d
, virq
, hw
);
671 return gic_shared_irq_domain_map(d
, virq
, hw
);
674 static int gic_irq_domain_xlate(struct irq_domain
*d
, struct device_node
*ctrlr
,
675 const u32
*intspec
, unsigned int intsize
,
676 irq_hw_number_t
*out_hwirq
,
677 unsigned int *out_type
)
682 if (intspec
[0] == GIC_SHARED
)
683 *out_hwirq
= GIC_SHARED_TO_HWIRQ(intspec
[1]);
684 else if (intspec
[0] == GIC_LOCAL
)
685 *out_hwirq
= GIC_LOCAL_TO_HWIRQ(intspec
[1]);
688 *out_type
= intspec
[2] & IRQ_TYPE_SENSE_MASK
;
693 static struct irq_domain_ops gic_irq_domain_ops
= {
694 .map
= gic_irq_domain_map
,
695 .xlate
= gic_irq_domain_xlate
,
698 static void __init
__gic_init(unsigned long gic_base_addr
,
699 unsigned long gic_addrspace_size
,
700 unsigned int cpu_vec
, unsigned int irqbase
,
701 struct device_node
*node
)
703 unsigned int gicconfig
;
705 gic_base
= ioremap_nocache(gic_base_addr
, gic_addrspace_size
);
707 gicconfig
= gic_read(GIC_REG(SHARED
, GIC_SH_CONFIG
));
708 gic_shared_intrs
= (gicconfig
& GIC_SH_CONFIG_NUMINTRS_MSK
) >>
709 GIC_SH_CONFIG_NUMINTRS_SHF
;
710 gic_shared_intrs
= ((gic_shared_intrs
+ 1) * 8);
712 gic_vpes
= (gicconfig
& GIC_SH_CONFIG_NUMVPES_MSK
) >>
713 GIC_SH_CONFIG_NUMVPES_SHF
;
714 gic_vpes
= gic_vpes
+ 1;
717 /* Always use vector 1 in EIC mode */
719 timer_cpu_pin
= gic_cpu_pin
;
720 set_vi_handler(gic_cpu_pin
+ GIC_PIN_TO_VEC_OFFSET
,
723 gic_cpu_pin
= cpu_vec
- GIC_CPU_PIN_OFFSET
;
724 irq_set_chained_handler(MIPS_CPU_IRQ_BASE
+ cpu_vec
,
727 * With the CMP implementation of SMP (deprecated), other CPUs
728 * are started by the bootloader and put into a timer based
729 * waiting poll loop. We must not re-route those CPU's local
730 * timer interrupts as the wait instruction will never finish,
731 * so just handle whatever CPU interrupt it is routed to by
734 * This workaround should be removed when CMP support is
737 if (IS_ENABLED(CONFIG_MIPS_CMP
) &&
738 gic_local_irq_is_routable(GIC_LOCAL_INT_TIMER
)) {
739 timer_cpu_pin
= gic_read(GIC_REG(VPE_LOCAL
,
740 GIC_VPE_TIMER_MAP
)) &
742 irq_set_chained_handler(MIPS_CPU_IRQ_BASE
+
747 timer_cpu_pin
= gic_cpu_pin
;
751 gic_irq_domain
= irq_domain_add_simple(node
, GIC_NUM_LOCAL_INTRS
+
752 gic_shared_intrs
, irqbase
,
753 &gic_irq_domain_ops
, NULL
);
755 panic("Failed to add GIC IRQ domain");
762 void __init
gic_init(unsigned long gic_base_addr
,
763 unsigned long gic_addrspace_size
,
764 unsigned int cpu_vec
, unsigned int irqbase
)
766 __gic_init(gic_base_addr
, gic_addrspace_size
, cpu_vec
, irqbase
, NULL
);
769 static int __init
gic_of_init(struct device_node
*node
,
770 struct device_node
*parent
)
773 unsigned int cpu_vec
, i
= 0, reserved
= 0;
774 phys_addr_t gic_base
;
777 /* Find the first available CPU vector. */
778 while (!of_property_read_u32_index(node
, "mti,reserved-cpu-vectors",
780 reserved
|= BIT(cpu_vec
);
781 for (cpu_vec
= 2; cpu_vec
< 8; cpu_vec
++) {
782 if (!(reserved
& BIT(cpu_vec
)))
786 pr_err("No CPU vectors available for GIC\n");
790 if (of_address_to_resource(node
, 0, &res
)) {
792 * Probe the CM for the GIC base address if not specified
793 * in the device-tree.
795 if (mips_cm_present()) {
796 gic_base
= read_gcr_gic_base() &
797 ~CM_GCR_GIC_BASE_GICEN_MSK
;
800 pr_err("Failed to get GIC memory range\n");
804 gic_base
= res
.start
;
805 gic_len
= resource_size(&res
);
808 if (mips_cm_present())
809 write_gcr_gic_base(gic_base
| CM_GCR_GIC_BASE_GICEN_MSK
);
812 __gic_init(gic_base
, gic_len
, cpu_vec
, 0, node
);
816 IRQCHIP_DECLARE(mips_gic
, "mti,gic", gic_of_init
);