blob: 8b9cf64630406e53552fe052ca10172370e5a88d [file] [log] [blame]
Marc St-Jean35832e22007-06-14 15:54:47 -06001/*
Anoop P A92592c92011-01-25 13:50:10 +05302 * Copyright 2010 PMC-Sierra, Inc, derived from irq_cpu.c
Marc St-Jean35832e22007-06-14 15:54:47 -06003 *
Anoop P A92592c92011-01-25 13:50:10 +05304 * This file define the irq handler for MSP CIC subsystem interrupts.
Marc St-Jean35832e22007-06-14 15:54:47 -06005 *
Ralf Baechle70342282013-01-22 12:59:30 +01006 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
Marc St-Jean35832e22007-06-14 15:54:47 -06008 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 */
11
12#include <linux/init.h>
13#include <linux/interrupt.h>
14#include <linux/kernel.h>
15#include <linux/bitops.h>
David Howellsca4d3e672010-10-07 14:08:54 +010016#include <linux/irq.h>
Marc St-Jean35832e22007-06-14 15:54:47 -060017
Anoop P A92592c92011-01-25 13:50:10 +053018#include <asm/mipsregs.h>
Marc St-Jean35832e22007-06-14 15:54:47 -060019
20#include <msp_cic_int.h>
21#include <msp_regs.h>
22
23/*
Anoop P A92592c92011-01-25 13:50:10 +053024 * External API
Marc St-Jean35832e22007-06-14 15:54:47 -060025 */
Anoop P A92592c92011-01-25 13:50:10 +053026extern void msp_per_irq_init(void);
27extern void msp_per_irq_dispatch(void);
Marc St-Jean35832e22007-06-14 15:54:47 -060028
Marc St-Jean35832e22007-06-14 15:54:47 -060029
30/*
Anoop P A92592c92011-01-25 13:50:10 +053031 * Convenience Macro. Should be somewhere generic.
Marc St-Jean35832e22007-06-14 15:54:47 -060032 */
Anoop P A92592c92011-01-25 13:50:10 +053033#define get_current_vpe() \
34 ((read_c0_tcbind() >> TCBIND_CURVPE_SHIFT) & TCBIND_CURVPE)
35
36#ifdef CONFIG_SMP
37
38#define LOCK_VPE(flags, mtflags) \
39do { \
40 local_irq_save(flags); \
41 mtflags = dmt(); \
42} while (0)
43
44#define UNLOCK_VPE(flags, mtflags) \
45do { \
46 emt(mtflags); \
47 local_irq_restore(flags);\
48} while (0)
49
50#define LOCK_CORE(flags, mtflags) \
51do { \
52 local_irq_save(flags); \
53 mtflags = dvpe(); \
54} while (0)
55
56#define UNLOCK_CORE(flags, mtflags) \
57do { \
58 evpe(mtflags); \
59 local_irq_restore(flags);\
60} while (0)
61
62#else
63
64#define LOCK_VPE(flags, mtflags)
65#define UNLOCK_VPE(flags, mtflags)
66#endif
67
68/* ensure writes to cic are completed */
69static inline void cic_wmb(void)
Marc St-Jean35832e22007-06-14 15:54:47 -060070{
Anoop P A92592c92011-01-25 13:50:10 +053071 const volatile void __iomem *cic_mem = CIC_VPE0_MSK_REG;
72 volatile u32 dummy_read;
73
74 wmb();
75 dummy_read = __raw_readl(cic_mem);
76 dummy_read++;
77}
78
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000079static void unmask_cic_irq(struct irq_data *d)
Anoop P A92592c92011-01-25 13:50:10 +053080{
81 volatile u32 *cic_msk_reg = CIC_VPE0_MSK_REG;
82 int vpe;
83#ifdef CONFIG_SMP
84 unsigned int mtflags;
85 unsigned long flags;
Marc St-Jean35832e22007-06-14 15:54:47 -060086
87 /*
Anoop P A92592c92011-01-25 13:50:10 +053088 * Make sure we have IRQ affinity. It may have changed while
89 * we were processing the IRQ.
90 */
Jiang Liu5c159422015-07-13 20:45:59 +000091 if (!cpumask_test_cpu(smp_processor_id(),
92 irq_data_get_affinity_mask(d)))
Anoop P A92592c92011-01-25 13:50:10 +053093 return;
94#endif
Marc St-Jean35832e22007-06-14 15:54:47 -060095
Anoop P A92592c92011-01-25 13:50:10 +053096 vpe = get_current_vpe();
97 LOCK_VPE(flags, mtflags);
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000098 cic_msk_reg[vpe] |= (1 << (d->irq - MSP_CIC_INTBASE));
Anoop P A92592c92011-01-25 13:50:10 +053099 UNLOCK_VPE(flags, mtflags);
100 cic_wmb();
Marc St-Jean35832e22007-06-14 15:54:47 -0600101}
102
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000103static void mask_cic_irq(struct irq_data *d)
Anoop P A92592c92011-01-25 13:50:10 +0530104{
105 volatile u32 *cic_msk_reg = CIC_VPE0_MSK_REG;
106 int vpe = get_current_vpe();
107#ifdef CONFIG_SMP
108 unsigned long flags, mtflags;
109#endif
110 LOCK_VPE(flags, mtflags);
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000111 cic_msk_reg[vpe] &= ~(1 << (d->irq - MSP_CIC_INTBASE));
Anoop P A92592c92011-01-25 13:50:10 +0530112 UNLOCK_VPE(flags, mtflags);
113 cic_wmb();
114}
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000115static void msp_cic_irq_ack(struct irq_data *d)
Anoop P A92592c92011-01-25 13:50:10 +0530116{
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000117 mask_cic_irq(d);
Anoop P A92592c92011-01-25 13:50:10 +0530118 /*
119 * Only really necessary for 18, 16-14 and sometimes 3:0
120 * (since these can be edge sensitive) but it doesn't
121 * hurt for the others
122 */
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000123 *CIC_STS_REG = (1 << (d->irq - MSP_CIC_INTBASE));
Anoop P A92592c92011-01-25 13:50:10 +0530124}
125
Ralf Baechleb633648c52014-05-23 16:29:44 +0200126/* Note: Limiting to VSMP. */
Anoop P A92592c92011-01-25 13:50:10 +0530127
128#ifdef CONFIG_MIPS_MT_SMP
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000129static int msp_cic_irq_set_affinity(struct irq_data *d,
130 const struct cpumask *cpumask, bool force)
Anoop P A92592c92011-01-25 13:50:10 +0530131{
132 int cpu;
133 unsigned long flags;
134 unsigned int mtflags;
Stefan Hengelein6fa88d92014-10-19 20:04:26 +0200135 unsigned long imask = (1 << (d->irq - MSP_CIC_INTBASE));
Anoop P A92592c92011-01-25 13:50:10 +0530136 volatile u32 *cic_mask = (volatile u32 *)CIC_VPE0_MSK_REG;
137
138 /* timer balancing should be disabled in kernel code */
Stefan Hengelein6fa88d92014-10-19 20:04:26 +0200139 BUG_ON(d->irq == MSP_INT_VPE0_TIMER || d->irq == MSP_INT_VPE1_TIMER);
Anoop P A92592c92011-01-25 13:50:10 +0530140
141 LOCK_CORE(flags, mtflags);
142 /* enable if any of each VPE's TCs require this IRQ */
143 for_each_online_cpu(cpu) {
144 if (cpumask_test_cpu(cpu, cpumask))
145 cic_mask[cpu] |= imask;
146 else
147 cic_mask[cpu] &= ~imask;
148
149 }
150
151 UNLOCK_CORE(flags, mtflags);
152 return 0;
153
154}
155#endif
156
Marc St-Jean35832e22007-06-14 15:54:47 -0600157static struct irq_chip msp_cic_irq_controller = {
158 .name = "MSP_CIC",
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000159 .irq_mask = mask_cic_irq,
160 .irq_mask_ack = msp_cic_irq_ack,
161 .irq_unmask = unmask_cic_irq,
162 .irq_ack = msp_cic_irq_ack,
Anoop P A92592c92011-01-25 13:50:10 +0530163#ifdef CONFIG_MIPS_MT_SMP
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000164 .irq_set_affinity = msp_cic_irq_set_affinity,
Anoop P A92592c92011-01-25 13:50:10 +0530165#endif
Marc St-Jean35832e22007-06-14 15:54:47 -0600166};
167
Marc St-Jean35832e22007-06-14 15:54:47 -0600168void __init msp_cic_irq_init(void)
169{
170 int i;
Marc St-Jean35832e22007-06-14 15:54:47 -0600171 /* Mask/clear interrupts. */
172 *CIC_VPE0_MSK_REG = 0x00000000;
Anoop P A92592c92011-01-25 13:50:10 +0530173 *CIC_VPE1_MSK_REG = 0x00000000;
Ralf Baechle70342282013-01-22 12:59:30 +0100174 *CIC_STS_REG = 0xFFFFFFFF;
Marc St-Jean35832e22007-06-14 15:54:47 -0600175 /*
Anoop P A92592c92011-01-25 13:50:10 +0530176 * The MSP7120 RG and EVBD boards use IRQ[6:4] for PCI.
177 * These inputs map to EXT_INT_POL[6:4] inside the CIC.
178 * They are to be active low, level sensitive.
179 */
Marc St-Jean35832e22007-06-14 15:54:47 -0600180 *CIC_EXT_CFG_REG &= 0xFFFF8F8F;
Marc St-Jean35832e22007-06-14 15:54:47 -0600181
182 /* initialize all the IRQ descriptors */
Anoop P A92592c92011-01-25 13:50:10 +0530183 for (i = MSP_CIC_INTBASE ; i < MSP_CIC_INTBASE + 32 ; i++) {
Thomas Gleixnere4ec7982011-03-27 15:19:28 +0200184 irq_set_chip_and_handler(i, &msp_cic_irq_controller,
Marc St-Jean35832e22007-06-14 15:54:47 -0600185 handle_level_irq);
Anoop P A92592c92011-01-25 13:50:10 +0530186 }
187
188 /* Initialize the PER interrupt sub-system */
189 msp_per_irq_init();
Marc St-Jean35832e22007-06-14 15:54:47 -0600190}
191
Anoop P A92592c92011-01-25 13:50:10 +0530192/* CIC masked by CIC vector processing before dispatch called */
Marc St-Jean35832e22007-06-14 15:54:47 -0600193void msp_cic_irq_dispatch(void)
194{
Anoop P A92592c92011-01-25 13:50:10 +0530195 volatile u32 *cic_msk_reg = (volatile u32 *)CIC_VPE0_MSK_REG;
196 u32 cic_mask;
197 u32 pending;
198 int cic_status = *CIC_STS_REG;
199 cic_mask = cic_msk_reg[get_current_vpe()];
200 pending = cic_status & cic_mask;
201 if (pending & (1 << (MSP_INT_VPE0_TIMER - MSP_CIC_INTBASE))) {
Marc St-Jean35832e22007-06-14 15:54:47 -0600202 do_IRQ(MSP_INT_VPE0_TIMER);
Anoop P A92592c92011-01-25 13:50:10 +0530203 } else if (pending & (1 << (MSP_INT_VPE1_TIMER - MSP_CIC_INTBASE))) {
204 do_IRQ(MSP_INT_VPE1_TIMER);
205 } else if (pending & (1 << (MSP_INT_PER - MSP_CIC_INTBASE))) {
206 msp_per_irq_dispatch();
207 } else if (pending) {
208 do_IRQ(ffs(pending) + MSP_CIC_INTBASE - 1);
209 } else{
210 spurious_interrupt();
Anoop P A92592c92011-01-25 13:50:10 +0530211 }
Marc St-Jean35832e22007-06-14 15:54:47 -0600212}