Steven J. Hill | 2299c49 | 2012-08-31 16:13:07 -0500 | [diff] [blame] | 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 | */ |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 9 | #include <linux/bitmap.h> |
Andrew Bresticker | fb8f7be1 | 2014-10-20 12:03:55 -0700 | [diff] [blame] | 10 | #include <linux/clocksource.h> |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 11 | #include <linux/init.h> |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 12 | #include <linux/interrupt.h> |
Andrew Bresticker | fb8f7be1 | 2014-10-20 12:03:55 -0700 | [diff] [blame] | 13 | #include <linux/irq.h> |
Andrew Bresticker | 4060bbe | 2014-10-20 12:03:53 -0700 | [diff] [blame] | 14 | #include <linux/irqchip/mips-gic.h> |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 15 | #include <linux/sched.h> |
Ralf Baechle | 631330f | 2009-06-19 14:05:26 +0100 | [diff] [blame] | 16 | #include <linux/smp.h> |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 17 | |
Steven J. Hill | 98b67c3 | 2012-08-31 16:18:49 -0500 | [diff] [blame] | 18 | #include <asm/setup.h> |
| 19 | #include <asm/traps.h> |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 20 | |
Steven J. Hill | 28ea215 | 2013-04-10 16:27:50 -0500 | [diff] [blame] | 21 | unsigned int gic_frequency; |
Steven J. Hill | ff86714 | 2013-04-10 16:27:04 -0500 | [diff] [blame] | 22 | unsigned int gic_present; |
Steven J. Hill | 98b67c3 | 2012-08-31 16:18:49 -0500 | [diff] [blame] | 23 | |
Jeffrey Deans | 822350b | 2014-07-17 09:20:53 +0100 | [diff] [blame] | 24 | struct gic_pcpu_mask { |
Andrew Bresticker | fbd5524 | 2014-09-18 14:47:25 -0700 | [diff] [blame] | 25 | DECLARE_BITMAP(pcpu_mask, GIC_MAX_INTRS); |
Jeffrey Deans | 822350b | 2014-07-17 09:20:53 +0100 | [diff] [blame] | 26 | }; |
| 27 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 28 | static void __iomem *gic_base; |
Steven J. Hill | 0b271f5 | 2012-08-31 16:05:37 -0500 | [diff] [blame] | 29 | static struct gic_pcpu_mask pcpu_masks[NR_CPUS]; |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 30 | static DEFINE_SPINLOCK(gic_lock); |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 31 | static struct irq_domain *gic_irq_domain; |
Andrew Bresticker | fbd5524 | 2014-09-18 14:47:25 -0700 | [diff] [blame] | 32 | static int gic_shared_intrs; |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 33 | static int gic_vpes; |
Andrew Bresticker | 3263d08 | 2014-09-18 14:47:28 -0700 | [diff] [blame] | 34 | static unsigned int gic_cpu_pin; |
Andrew Bresticker | 4a6a3ea3 | 2014-09-18 14:47:26 -0700 | [diff] [blame] | 35 | static struct irq_chip gic_level_irq_controller, gic_edge_irq_controller; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 36 | |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 37 | static void __gic_irq_dispatch(void); |
| 38 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 39 | static inline unsigned int gic_read(unsigned int reg) |
| 40 | { |
| 41 | return __raw_readl(gic_base + reg); |
| 42 | } |
| 43 | |
| 44 | static inline void gic_write(unsigned int reg, unsigned int val) |
| 45 | { |
| 46 | __raw_writel(val, gic_base + reg); |
| 47 | } |
| 48 | |
| 49 | static inline void gic_update_bits(unsigned int reg, unsigned int mask, |
| 50 | unsigned int val) |
| 51 | { |
| 52 | unsigned int regval; |
| 53 | |
| 54 | regval = gic_read(reg); |
| 55 | regval &= ~mask; |
| 56 | regval |= val; |
| 57 | gic_write(reg, regval); |
| 58 | } |
| 59 | |
| 60 | static inline void gic_reset_mask(unsigned int intr) |
| 61 | { |
| 62 | gic_write(GIC_REG(SHARED, GIC_SH_RMASK) + GIC_INTR_OFS(intr), |
| 63 | 1 << GIC_INTR_BIT(intr)); |
| 64 | } |
| 65 | |
| 66 | static inline void gic_set_mask(unsigned int intr) |
| 67 | { |
| 68 | gic_write(GIC_REG(SHARED, GIC_SH_SMASK) + GIC_INTR_OFS(intr), |
| 69 | 1 << GIC_INTR_BIT(intr)); |
| 70 | } |
| 71 | |
| 72 | static inline void gic_set_polarity(unsigned int intr, unsigned int pol) |
| 73 | { |
| 74 | gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_POLARITY) + |
| 75 | GIC_INTR_OFS(intr), 1 << GIC_INTR_BIT(intr), |
| 76 | pol << GIC_INTR_BIT(intr)); |
| 77 | } |
| 78 | |
| 79 | static inline void gic_set_trigger(unsigned int intr, unsigned int trig) |
| 80 | { |
| 81 | gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_TRIGGER) + |
| 82 | GIC_INTR_OFS(intr), 1 << GIC_INTR_BIT(intr), |
| 83 | trig << GIC_INTR_BIT(intr)); |
| 84 | } |
| 85 | |
| 86 | static inline void gic_set_dual_edge(unsigned int intr, unsigned int dual) |
| 87 | { |
| 88 | gic_update_bits(GIC_REG(SHARED, GIC_SH_SET_DUAL) + GIC_INTR_OFS(intr), |
| 89 | 1 << GIC_INTR_BIT(intr), |
| 90 | dual << GIC_INTR_BIT(intr)); |
| 91 | } |
| 92 | |
| 93 | static inline void gic_map_to_pin(unsigned int intr, unsigned int pin) |
| 94 | { |
| 95 | gic_write(GIC_REG(SHARED, GIC_SH_INTR_MAP_TO_PIN_BASE) + |
| 96 | GIC_SH_MAP_TO_PIN(intr), GIC_MAP_TO_PIN_MSK | pin); |
| 97 | } |
| 98 | |
| 99 | static inline void gic_map_to_vpe(unsigned int intr, unsigned int vpe) |
| 100 | { |
| 101 | gic_write(GIC_REG(SHARED, GIC_SH_INTR_MAP_TO_VPE_BASE) + |
| 102 | GIC_SH_MAP_TO_VPE_REG_OFF(intr, vpe), |
| 103 | GIC_SH_MAP_TO_VPE_REG_BIT(vpe)); |
| 104 | } |
| 105 | |
Andrew Bresticker | a331ce6 | 2014-10-20 12:03:59 -0700 | [diff] [blame^] | 106 | #ifdef CONFIG_CLKSRC_MIPS_GIC |
Steven J. Hill | dfa762e | 2013-04-10 16:28:36 -0500 | [diff] [blame] | 107 | cycle_t gic_read_count(void) |
| 108 | { |
| 109 | unsigned int hi, hi2, lo; |
| 110 | |
| 111 | do { |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 112 | hi = gic_read(GIC_REG(SHARED, GIC_SH_COUNTER_63_32)); |
| 113 | lo = gic_read(GIC_REG(SHARED, GIC_SH_COUNTER_31_00)); |
| 114 | hi2 = gic_read(GIC_REG(SHARED, GIC_SH_COUNTER_63_32)); |
Steven J. Hill | dfa762e | 2013-04-10 16:28:36 -0500 | [diff] [blame] | 115 | } while (hi2 != hi); |
| 116 | |
| 117 | return (((cycle_t) hi) << 32) + lo; |
| 118 | } |
Raghu Gandham | 0ab2b7d | 2013-04-10 16:30:12 -0500 | [diff] [blame] | 119 | |
Andrew Bresticker | 387904f | 2014-10-20 12:03:49 -0700 | [diff] [blame] | 120 | unsigned int gic_get_count_width(void) |
| 121 | { |
| 122 | unsigned int bits, config; |
| 123 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 124 | config = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG)); |
Andrew Bresticker | 387904f | 2014-10-20 12:03:49 -0700 | [diff] [blame] | 125 | bits = 32 + 4 * ((config & GIC_SH_CONFIG_COUNTBITS_MSK) >> |
| 126 | GIC_SH_CONFIG_COUNTBITS_SHF); |
| 127 | |
| 128 | return bits; |
| 129 | } |
| 130 | |
Raghu Gandham | 0ab2b7d | 2013-04-10 16:30:12 -0500 | [diff] [blame] | 131 | void gic_write_compare(cycle_t cnt) |
| 132 | { |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 133 | gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_HI), |
Raghu Gandham | 0ab2b7d | 2013-04-10 16:30:12 -0500 | [diff] [blame] | 134 | (int)(cnt >> 32)); |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 135 | gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_LO), |
Raghu Gandham | 0ab2b7d | 2013-04-10 16:30:12 -0500 | [diff] [blame] | 136 | (int)(cnt & 0xffffffff)); |
| 137 | } |
| 138 | |
Paul Burton | 414408d0 | 2014-03-05 11:35:53 +0000 | [diff] [blame] | 139 | void gic_write_cpu_compare(cycle_t cnt, int cpu) |
| 140 | { |
| 141 | unsigned long flags; |
| 142 | |
| 143 | local_irq_save(flags); |
| 144 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 145 | gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), cpu); |
| 146 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_HI), |
Paul Burton | 414408d0 | 2014-03-05 11:35:53 +0000 | [diff] [blame] | 147 | (int)(cnt >> 32)); |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 148 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_LO), |
Paul Burton | 414408d0 | 2014-03-05 11:35:53 +0000 | [diff] [blame] | 149 | (int)(cnt & 0xffffffff)); |
| 150 | |
| 151 | local_irq_restore(flags); |
| 152 | } |
| 153 | |
Raghu Gandham | 0ab2b7d | 2013-04-10 16:30:12 -0500 | [diff] [blame] | 154 | cycle_t gic_read_compare(void) |
| 155 | { |
| 156 | unsigned int hi, lo; |
| 157 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 158 | hi = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_HI)); |
| 159 | lo = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_COMPARE_LO)); |
Raghu Gandham | 0ab2b7d | 2013-04-10 16:30:12 -0500 | [diff] [blame] | 160 | |
| 161 | return (((cycle_t) hi) << 32) + lo; |
| 162 | } |
Steven J. Hill | dfa762e | 2013-04-10 16:28:36 -0500 | [diff] [blame] | 163 | #endif |
| 164 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 165 | static bool gic_local_irq_is_routable(int intr) |
| 166 | { |
| 167 | u32 vpe_ctl; |
| 168 | |
| 169 | /* All local interrupts are routable in EIC mode. */ |
| 170 | if (cpu_has_veic) |
| 171 | return true; |
| 172 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 173 | vpe_ctl = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_CTL)); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 174 | switch (intr) { |
| 175 | case GIC_LOCAL_INT_TIMER: |
| 176 | return vpe_ctl & GIC_VPE_CTL_TIMER_RTBL_MSK; |
| 177 | case GIC_LOCAL_INT_PERFCTR: |
| 178 | return vpe_ctl & GIC_VPE_CTL_PERFCNT_RTBL_MSK; |
| 179 | case GIC_LOCAL_INT_FDC: |
| 180 | return vpe_ctl & GIC_VPE_CTL_FDC_RTBL_MSK; |
| 181 | case GIC_LOCAL_INT_SWINT0: |
| 182 | case GIC_LOCAL_INT_SWINT1: |
| 183 | return vpe_ctl & GIC_VPE_CTL_SWINT_RTBL_MSK; |
| 184 | default: |
| 185 | return true; |
| 186 | } |
| 187 | } |
| 188 | |
Steven J. Hill | 98b67c3 | 2012-08-31 16:18:49 -0500 | [diff] [blame] | 189 | unsigned int gic_get_timer_pending(void) |
| 190 | { |
| 191 | unsigned int vpe_pending; |
| 192 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 193 | vpe_pending = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_PEND)); |
Ralf Baechle | 635c9907 | 2014-10-21 14:12:49 +0200 | [diff] [blame] | 194 | return vpe_pending & GIC_VPE_PEND_TIMER_MSK; |
Steven J. Hill | 98b67c3 | 2012-08-31 16:18:49 -0500 | [diff] [blame] | 195 | } |
| 196 | |
Andrew Bresticker | 3263d08 | 2014-09-18 14:47:28 -0700 | [diff] [blame] | 197 | static void gic_bind_eic_interrupt(int irq, int set) |
Steven J. Hill | 98b67c3 | 2012-08-31 16:18:49 -0500 | [diff] [blame] | 198 | { |
| 199 | /* Convert irq vector # to hw int # */ |
| 200 | irq -= GIC_PIN_TO_VEC_OFFSET; |
| 201 | |
| 202 | /* Set irq to use shadow set */ |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 203 | gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_EIC_SHADOW_SET_BASE) + |
| 204 | GIC_VPE_EIC_SS(irq), set); |
Steven J. Hill | 98b67c3 | 2012-08-31 16:18:49 -0500 | [diff] [blame] | 205 | } |
| 206 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 207 | void gic_send_ipi(unsigned int intr) |
| 208 | { |
Andrew Bresticker | 53a7bc8 | 2014-10-20 12:03:57 -0700 | [diff] [blame] | 209 | gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), GIC_SH_WEDGE_SET(intr)); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 210 | } |
| 211 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 212 | int gic_get_c0_compare_int(void) |
| 213 | { |
| 214 | if (!gic_local_irq_is_routable(GIC_LOCAL_INT_TIMER)) |
| 215 | return MIPS_CPU_IRQ_BASE + cp0_compare_irq; |
| 216 | return irq_create_mapping(gic_irq_domain, |
| 217 | GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_TIMER)); |
| 218 | } |
| 219 | |
| 220 | int gic_get_c0_perfcount_int(void) |
| 221 | { |
| 222 | if (!gic_local_irq_is_routable(GIC_LOCAL_INT_PERFCTR)) { |
| 223 | /* Is the erformance counter shared with the timer? */ |
| 224 | if (cp0_perfcount_irq < 0) |
| 225 | return -1; |
| 226 | return MIPS_CPU_IRQ_BASE + cp0_perfcount_irq; |
| 227 | } |
| 228 | return irq_create_mapping(gic_irq_domain, |
| 229 | GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_PERFCTR)); |
| 230 | } |
| 231 | |
Andrew Bresticker | 3263d08 | 2014-09-18 14:47:28 -0700 | [diff] [blame] | 232 | static unsigned int gic_get_int(void) |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 233 | { |
| 234 | unsigned int i; |
Andrew Bresticker | 8f5ee79 | 2014-10-20 12:03:56 -0700 | [diff] [blame] | 235 | unsigned long *pcpu_mask; |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 236 | unsigned long pending_reg, intrmask_reg; |
Andrew Bresticker | 8f5ee79 | 2014-10-20 12:03:56 -0700 | [diff] [blame] | 237 | DECLARE_BITMAP(pending, GIC_MAX_INTRS); |
| 238 | DECLARE_BITMAP(intrmask, GIC_MAX_INTRS); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 239 | |
| 240 | /* Get per-cpu bitmaps */ |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 241 | pcpu_mask = pcpu_masks[smp_processor_id()].pcpu_mask; |
| 242 | |
Andrew Bresticker | 824f3f7 | 2014-10-20 12:03:54 -0700 | [diff] [blame] | 243 | pending_reg = GIC_REG(SHARED, GIC_SH_PEND); |
| 244 | intrmask_reg = GIC_REG(SHARED, GIC_SH_MASK); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 245 | |
Andrew Bresticker | fbd5524 | 2014-09-18 14:47:25 -0700 | [diff] [blame] | 246 | for (i = 0; i < BITS_TO_LONGS(gic_shared_intrs); i++) { |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 247 | pending[i] = gic_read(pending_reg); |
| 248 | intrmask[i] = gic_read(intrmask_reg); |
| 249 | pending_reg += 0x4; |
| 250 | intrmask_reg += 0x4; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 251 | } |
| 252 | |
Andrew Bresticker | fbd5524 | 2014-09-18 14:47:25 -0700 | [diff] [blame] | 253 | bitmap_and(pending, pending, intrmask, gic_shared_intrs); |
| 254 | bitmap_and(pending, pending, pcpu_mask, gic_shared_intrs); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 255 | |
Andrew Bresticker | 3263d08 | 2014-09-18 14:47:28 -0700 | [diff] [blame] | 256 | return find_first_bit(pending, gic_shared_intrs); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 257 | } |
| 258 | |
Thomas Gleixner | 161d049 | 2011-03-23 21:08:58 +0000 | [diff] [blame] | 259 | static void gic_mask_irq(struct irq_data *d) |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 260 | { |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 261 | gic_reset_mask(GIC_HWIRQ_TO_SHARED(d->hwirq)); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 262 | } |
| 263 | |
Thomas Gleixner | 161d049 | 2011-03-23 21:08:58 +0000 | [diff] [blame] | 264 | static void gic_unmask_irq(struct irq_data *d) |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 265 | { |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 266 | gic_set_mask(GIC_HWIRQ_TO_SHARED(d->hwirq)); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 267 | } |
| 268 | |
Andrew Bresticker | 5561c9e | 2014-09-18 14:47:20 -0700 | [diff] [blame] | 269 | static void gic_ack_irq(struct irq_data *d) |
| 270 | { |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 271 | unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq); |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 272 | |
Andrew Bresticker | 53a7bc8 | 2014-10-20 12:03:57 -0700 | [diff] [blame] | 273 | gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), GIC_SH_WEDGE_CLR(irq)); |
Andrew Bresticker | 5561c9e | 2014-09-18 14:47:20 -0700 | [diff] [blame] | 274 | } |
| 275 | |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 276 | static int gic_set_type(struct irq_data *d, unsigned int type) |
| 277 | { |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 278 | unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq); |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 279 | unsigned long flags; |
| 280 | bool is_edge; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 281 | |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 282 | spin_lock_irqsave(&gic_lock, flags); |
| 283 | switch (type & IRQ_TYPE_SENSE_MASK) { |
| 284 | case IRQ_TYPE_EDGE_FALLING: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 285 | gic_set_polarity(irq, GIC_POL_NEG); |
| 286 | gic_set_trigger(irq, GIC_TRIG_EDGE); |
| 287 | gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE); |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 288 | is_edge = true; |
| 289 | break; |
| 290 | case IRQ_TYPE_EDGE_RISING: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 291 | gic_set_polarity(irq, GIC_POL_POS); |
| 292 | gic_set_trigger(irq, GIC_TRIG_EDGE); |
| 293 | gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE); |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 294 | is_edge = true; |
| 295 | break; |
| 296 | case IRQ_TYPE_EDGE_BOTH: |
| 297 | /* polarity is irrelevant in this case */ |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 298 | gic_set_trigger(irq, GIC_TRIG_EDGE); |
| 299 | gic_set_dual_edge(irq, GIC_TRIG_DUAL_ENABLE); |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 300 | is_edge = true; |
| 301 | break; |
| 302 | case IRQ_TYPE_LEVEL_LOW: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 303 | gic_set_polarity(irq, GIC_POL_NEG); |
| 304 | gic_set_trigger(irq, GIC_TRIG_LEVEL); |
| 305 | gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE); |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 306 | is_edge = false; |
| 307 | break; |
| 308 | case IRQ_TYPE_LEVEL_HIGH: |
| 309 | default: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 310 | gic_set_polarity(irq, GIC_POL_POS); |
| 311 | gic_set_trigger(irq, GIC_TRIG_LEVEL); |
| 312 | gic_set_dual_edge(irq, GIC_TRIG_DUAL_DISABLE); |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 313 | is_edge = false; |
| 314 | break; |
| 315 | } |
| 316 | |
| 317 | if (is_edge) { |
Andrew Bresticker | 4a6a3ea3 | 2014-09-18 14:47:26 -0700 | [diff] [blame] | 318 | __irq_set_chip_handler_name_locked(d->irq, |
| 319 | &gic_edge_irq_controller, |
| 320 | handle_edge_irq, NULL); |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 321 | } else { |
Andrew Bresticker | 4a6a3ea3 | 2014-09-18 14:47:26 -0700 | [diff] [blame] | 322 | __irq_set_chip_handler_name_locked(d->irq, |
| 323 | &gic_level_irq_controller, |
| 324 | handle_level_irq, NULL); |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 325 | } |
| 326 | spin_unlock_irqrestore(&gic_lock, flags); |
| 327 | |
| 328 | return 0; |
| 329 | } |
| 330 | |
| 331 | #ifdef CONFIG_SMP |
Thomas Gleixner | 161d049 | 2011-03-23 21:08:58 +0000 | [diff] [blame] | 332 | static int gic_set_affinity(struct irq_data *d, const struct cpumask *cpumask, |
| 333 | bool force) |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 334 | { |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 335 | unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 336 | cpumask_t tmp = CPU_MASK_NONE; |
| 337 | unsigned long flags; |
| 338 | int i; |
| 339 | |
Rusty Russell | 0de2652 | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 340 | cpumask_and(&tmp, cpumask, cpu_online_mask); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 341 | if (cpus_empty(tmp)) |
Andrew Bresticker | 14d160a | 2014-09-18 14:47:22 -0700 | [diff] [blame] | 342 | return -EINVAL; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 343 | |
| 344 | /* Assumption : cpumask refers to a single CPU */ |
| 345 | spin_lock_irqsave(&gic_lock, flags); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 346 | |
Tony Wu | c214c03 | 2013-06-21 10:13:08 +0000 | [diff] [blame] | 347 | /* Re-route this IRQ */ |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 348 | gic_map_to_vpe(irq, first_cpu(tmp)); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 349 | |
Tony Wu | c214c03 | 2013-06-21 10:13:08 +0000 | [diff] [blame] | 350 | /* Update the pcpu_masks */ |
| 351 | for (i = 0; i < NR_CPUS; i++) |
| 352 | clear_bit(irq, pcpu_masks[i].pcpu_mask); |
| 353 | set_bit(irq, pcpu_masks[first_cpu(tmp)].pcpu_mask); |
| 354 | |
Thomas Gleixner | 161d049 | 2011-03-23 21:08:58 +0000 | [diff] [blame] | 355 | cpumask_copy(d->affinity, cpumask); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 356 | spin_unlock_irqrestore(&gic_lock, flags); |
| 357 | |
Thomas Gleixner | 161d049 | 2011-03-23 21:08:58 +0000 | [diff] [blame] | 358 | return IRQ_SET_MASK_OK_NOCOPY; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 359 | } |
| 360 | #endif |
| 361 | |
Andrew Bresticker | 4a6a3ea3 | 2014-09-18 14:47:26 -0700 | [diff] [blame] | 362 | static struct irq_chip gic_level_irq_controller = { |
| 363 | .name = "MIPS GIC", |
| 364 | .irq_mask = gic_mask_irq, |
| 365 | .irq_unmask = gic_unmask_irq, |
| 366 | .irq_set_type = gic_set_type, |
| 367 | #ifdef CONFIG_SMP |
| 368 | .irq_set_affinity = gic_set_affinity, |
| 369 | #endif |
| 370 | }; |
| 371 | |
| 372 | static struct irq_chip gic_edge_irq_controller = { |
Thomas Gleixner | 161d049 | 2011-03-23 21:08:58 +0000 | [diff] [blame] | 373 | .name = "MIPS GIC", |
Andrew Bresticker | 5561c9e | 2014-09-18 14:47:20 -0700 | [diff] [blame] | 374 | .irq_ack = gic_ack_irq, |
Thomas Gleixner | 161d049 | 2011-03-23 21:08:58 +0000 | [diff] [blame] | 375 | .irq_mask = gic_mask_irq, |
Thomas Gleixner | 161d049 | 2011-03-23 21:08:58 +0000 | [diff] [blame] | 376 | .irq_unmask = gic_unmask_irq, |
Andrew Bresticker | 95150ae | 2014-09-18 14:47:21 -0700 | [diff] [blame] | 377 | .irq_set_type = gic_set_type, |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 378 | #ifdef CONFIG_SMP |
Thomas Gleixner | 161d049 | 2011-03-23 21:08:58 +0000 | [diff] [blame] | 379 | .irq_set_affinity = gic_set_affinity, |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 380 | #endif |
| 381 | }; |
| 382 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 383 | static unsigned int gic_get_local_int(void) |
| 384 | { |
| 385 | unsigned long pending, masked; |
| 386 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 387 | pending = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_PEND)); |
| 388 | masked = gic_read(GIC_REG(VPE_LOCAL, GIC_VPE_MASK)); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 389 | |
| 390 | bitmap_and(&pending, &pending, &masked, GIC_NUM_LOCAL_INTRS); |
| 391 | |
| 392 | return find_first_bit(&pending, GIC_NUM_LOCAL_INTRS); |
| 393 | } |
| 394 | |
| 395 | static void gic_mask_local_irq(struct irq_data *d) |
| 396 | { |
| 397 | int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq); |
| 398 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 399 | gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_RMASK), 1 << intr); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | static void gic_unmask_local_irq(struct irq_data *d) |
| 403 | { |
| 404 | int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq); |
| 405 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 406 | gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_SMASK), 1 << intr); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | static struct irq_chip gic_local_irq_controller = { |
| 410 | .name = "MIPS GIC Local", |
| 411 | .irq_mask = gic_mask_local_irq, |
| 412 | .irq_unmask = gic_unmask_local_irq, |
| 413 | }; |
| 414 | |
| 415 | static void gic_mask_local_irq_all_vpes(struct irq_data *d) |
| 416 | { |
| 417 | int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq); |
| 418 | int i; |
| 419 | unsigned long flags; |
| 420 | |
| 421 | spin_lock_irqsave(&gic_lock, flags); |
| 422 | for (i = 0; i < gic_vpes; i++) { |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 423 | gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i); |
| 424 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_RMASK), 1 << intr); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 425 | } |
| 426 | spin_unlock_irqrestore(&gic_lock, flags); |
| 427 | } |
| 428 | |
| 429 | static void gic_unmask_local_irq_all_vpes(struct irq_data *d) |
| 430 | { |
| 431 | int intr = GIC_HWIRQ_TO_LOCAL(d->hwirq); |
| 432 | int i; |
| 433 | unsigned long flags; |
| 434 | |
| 435 | spin_lock_irqsave(&gic_lock, flags); |
| 436 | for (i = 0; i < gic_vpes; i++) { |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 437 | gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i); |
| 438 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_SMASK), 1 << intr); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 439 | } |
| 440 | spin_unlock_irqrestore(&gic_lock, flags); |
| 441 | } |
| 442 | |
| 443 | static struct irq_chip gic_all_vpes_local_irq_controller = { |
| 444 | .name = "MIPS GIC Local", |
| 445 | .irq_mask = gic_mask_local_irq_all_vpes, |
| 446 | .irq_unmask = gic_unmask_local_irq_all_vpes, |
| 447 | }; |
| 448 | |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 449 | static void __gic_irq_dispatch(void) |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 450 | { |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 451 | unsigned int intr, virq; |
| 452 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 453 | while ((intr = gic_get_local_int()) != GIC_NUM_LOCAL_INTRS) { |
| 454 | virq = irq_linear_revmap(gic_irq_domain, |
| 455 | GIC_LOCAL_TO_HWIRQ(intr)); |
| 456 | do_IRQ(virq); |
| 457 | } |
| 458 | |
Andrew Bresticker | fbd5524 | 2014-09-18 14:47:25 -0700 | [diff] [blame] | 459 | while ((intr = gic_get_int()) != gic_shared_intrs) { |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 460 | virq = irq_linear_revmap(gic_irq_domain, |
| 461 | GIC_SHARED_TO_HWIRQ(intr)); |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 462 | do_IRQ(virq); |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | static void gic_irq_dispatch(unsigned int irq, struct irq_desc *desc) |
| 467 | { |
| 468 | __gic_irq_dispatch(); |
| 469 | } |
| 470 | |
| 471 | #ifdef CONFIG_MIPS_GIC_IPI |
| 472 | static int gic_resched_int_base; |
| 473 | static int gic_call_int_base; |
| 474 | |
| 475 | unsigned int plat_ipi_resched_int_xlate(unsigned int cpu) |
| 476 | { |
| 477 | return gic_resched_int_base + cpu; |
| 478 | } |
| 479 | |
| 480 | unsigned int plat_ipi_call_int_xlate(unsigned int cpu) |
| 481 | { |
| 482 | return gic_call_int_base + cpu; |
| 483 | } |
| 484 | |
| 485 | static irqreturn_t ipi_resched_interrupt(int irq, void *dev_id) |
| 486 | { |
| 487 | scheduler_ipi(); |
| 488 | |
| 489 | return IRQ_HANDLED; |
| 490 | } |
| 491 | |
| 492 | static irqreturn_t ipi_call_interrupt(int irq, void *dev_id) |
| 493 | { |
| 494 | smp_call_function_interrupt(); |
| 495 | |
| 496 | return IRQ_HANDLED; |
| 497 | } |
| 498 | |
| 499 | static struct irqaction irq_resched = { |
| 500 | .handler = ipi_resched_interrupt, |
| 501 | .flags = IRQF_PERCPU, |
| 502 | .name = "IPI resched" |
| 503 | }; |
| 504 | |
| 505 | static struct irqaction irq_call = { |
| 506 | .handler = ipi_call_interrupt, |
| 507 | .flags = IRQF_PERCPU, |
| 508 | .name = "IPI call" |
| 509 | }; |
| 510 | |
| 511 | static __init void gic_ipi_init_one(unsigned int intr, int cpu, |
| 512 | struct irqaction *action) |
| 513 | { |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 514 | int virq = irq_create_mapping(gic_irq_domain, |
| 515 | GIC_SHARED_TO_HWIRQ(intr)); |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 516 | int i; |
Steven J. Hill | 98b67c3 | 2012-08-31 16:18:49 -0500 | [diff] [blame] | 517 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 518 | gic_map_to_vpe(intr, cpu); |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 519 | for (i = 0; i < NR_CPUS; i++) |
| 520 | clear_bit(intr, pcpu_masks[i].pcpu_mask); |
Jeffrey Deans | b0a88ae | 2014-07-17 09:20:55 +0100 | [diff] [blame] | 521 | set_bit(intr, pcpu_masks[cpu].pcpu_mask); |
| 522 | |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 523 | irq_set_irq_type(virq, IRQ_TYPE_EDGE_RISING); |
| 524 | |
| 525 | irq_set_handler(virq, handle_percpu_irq); |
| 526 | setup_irq(virq, action); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 527 | } |
| 528 | |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 529 | static __init void gic_ipi_init(void) |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 530 | { |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 531 | int i; |
| 532 | |
| 533 | /* Use last 2 * NR_CPUS interrupts as IPIs */ |
Andrew Bresticker | fbd5524 | 2014-09-18 14:47:25 -0700 | [diff] [blame] | 534 | gic_resched_int_base = gic_shared_intrs - nr_cpu_ids; |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 535 | gic_call_int_base = gic_resched_int_base - nr_cpu_ids; |
| 536 | |
| 537 | for (i = 0; i < nr_cpu_ids; i++) { |
| 538 | gic_ipi_init_one(gic_call_int_base + i, i, &irq_call); |
| 539 | gic_ipi_init_one(gic_resched_int_base + i, i, &irq_resched); |
| 540 | } |
| 541 | } |
| 542 | #else |
| 543 | static inline void gic_ipi_init(void) |
| 544 | { |
| 545 | } |
| 546 | #endif |
| 547 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 548 | static void __init gic_basic_init(void) |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 549 | { |
| 550 | unsigned int i; |
Steven J. Hill | 98b67c3 | 2012-08-31 16:18:49 -0500 | [diff] [blame] | 551 | |
| 552 | board_bind_eic_interrupt = &gic_bind_eic_interrupt; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 553 | |
| 554 | /* Setup defaults */ |
Andrew Bresticker | fbd5524 | 2014-09-18 14:47:25 -0700 | [diff] [blame] | 555 | for (i = 0; i < gic_shared_intrs; i++) { |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 556 | gic_set_polarity(i, GIC_POL_POS); |
| 557 | gic_set_trigger(i, GIC_TRIG_LEVEL); |
| 558 | gic_reset_mask(i); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 559 | } |
| 560 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 561 | for (i = 0; i < gic_vpes; i++) { |
| 562 | unsigned int j; |
| 563 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 564 | gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 565 | for (j = 0; j < GIC_NUM_LOCAL_INTRS; j++) { |
| 566 | if (!gic_local_irq_is_routable(j)) |
| 567 | continue; |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 568 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_RMASK), 1 << j); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 569 | } |
| 570 | } |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 571 | } |
| 572 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 573 | static int gic_local_irq_domain_map(struct irq_domain *d, unsigned int virq, |
| 574 | irq_hw_number_t hw) |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 575 | { |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 576 | int intr = GIC_HWIRQ_TO_LOCAL(hw); |
| 577 | int ret = 0; |
| 578 | int i; |
| 579 | unsigned long flags; |
| 580 | |
| 581 | if (!gic_local_irq_is_routable(intr)) |
| 582 | return -EPERM; |
| 583 | |
| 584 | /* |
| 585 | * HACK: These are all really percpu interrupts, but the rest |
| 586 | * of the MIPS kernel code does not use the percpu IRQ API for |
| 587 | * the CP0 timer and performance counter interrupts. |
| 588 | */ |
| 589 | if (intr != GIC_LOCAL_INT_TIMER && intr != GIC_LOCAL_INT_PERFCTR) { |
| 590 | irq_set_chip_and_handler(virq, |
| 591 | &gic_local_irq_controller, |
| 592 | handle_percpu_devid_irq); |
| 593 | irq_set_percpu_devid(virq); |
| 594 | } else { |
| 595 | irq_set_chip_and_handler(virq, |
| 596 | &gic_all_vpes_local_irq_controller, |
| 597 | handle_percpu_irq); |
| 598 | } |
| 599 | |
| 600 | spin_lock_irqsave(&gic_lock, flags); |
| 601 | for (i = 0; i < gic_vpes; i++) { |
| 602 | u32 val = GIC_MAP_TO_PIN_MSK | gic_cpu_pin; |
| 603 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 604 | gic_write(GIC_REG(VPE_LOCAL, GIC_VPE_OTHER_ADDR), i); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 605 | |
| 606 | switch (intr) { |
| 607 | case GIC_LOCAL_INT_WD: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 608 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_WD_MAP), val); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 609 | break; |
| 610 | case GIC_LOCAL_INT_COMPARE: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 611 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_COMPARE_MAP), val); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 612 | break; |
| 613 | case GIC_LOCAL_INT_TIMER: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 614 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_TIMER_MAP), val); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 615 | break; |
| 616 | case GIC_LOCAL_INT_PERFCTR: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 617 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_PERFCTR_MAP), val); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 618 | break; |
| 619 | case GIC_LOCAL_INT_SWINT0: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 620 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_SWINT0_MAP), val); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 621 | break; |
| 622 | case GIC_LOCAL_INT_SWINT1: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 623 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_SWINT1_MAP), val); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 624 | break; |
| 625 | case GIC_LOCAL_INT_FDC: |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 626 | gic_write(GIC_REG(VPE_OTHER, GIC_VPE_FDC_MAP), val); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 627 | break; |
| 628 | default: |
| 629 | pr_err("Invalid local IRQ %d\n", intr); |
| 630 | ret = -EINVAL; |
| 631 | break; |
| 632 | } |
| 633 | } |
| 634 | spin_unlock_irqrestore(&gic_lock, flags); |
| 635 | |
| 636 | return ret; |
| 637 | } |
| 638 | |
| 639 | static int gic_shared_irq_domain_map(struct irq_domain *d, unsigned int virq, |
| 640 | irq_hw_number_t hw) |
| 641 | { |
| 642 | int intr = GIC_HWIRQ_TO_SHARED(hw); |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 643 | unsigned long flags; |
| 644 | |
Andrew Bresticker | 4a6a3ea3 | 2014-09-18 14:47:26 -0700 | [diff] [blame] | 645 | irq_set_chip_and_handler(virq, &gic_level_irq_controller, |
| 646 | handle_level_irq); |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 647 | |
| 648 | spin_lock_irqsave(&gic_lock, flags); |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 649 | gic_map_to_pin(intr, gic_cpu_pin); |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 650 | /* Map to VPE 0 by default */ |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 651 | gic_map_to_vpe(intr, 0); |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 652 | set_bit(intr, pcpu_masks[0].pcpu_mask); |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 653 | spin_unlock_irqrestore(&gic_lock, flags); |
| 654 | |
| 655 | return 0; |
| 656 | } |
| 657 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 658 | static int gic_irq_domain_map(struct irq_domain *d, unsigned int virq, |
| 659 | irq_hw_number_t hw) |
| 660 | { |
| 661 | if (GIC_HWIRQ_TO_LOCAL(hw) < GIC_NUM_LOCAL_INTRS) |
| 662 | return gic_local_irq_domain_map(d, virq, hw); |
| 663 | return gic_shared_irq_domain_map(d, virq, hw); |
| 664 | } |
| 665 | |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 666 | static struct irq_domain_ops gic_irq_domain_ops = { |
| 667 | .map = gic_irq_domain_map, |
| 668 | .xlate = irq_domain_xlate_twocell, |
| 669 | }; |
| 670 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 671 | void __init gic_init(unsigned long gic_base_addr, |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 672 | unsigned long gic_addrspace_size, unsigned int cpu_vec, |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 673 | unsigned int irqbase) |
| 674 | { |
| 675 | unsigned int gicconfig; |
| 676 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 677 | gic_base = ioremap_nocache(gic_base_addr, gic_addrspace_size); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 678 | |
Andrew Bresticker | 5f68fea | 2014-10-20 12:03:52 -0700 | [diff] [blame] | 679 | gicconfig = gic_read(GIC_REG(SHARED, GIC_SH_CONFIG)); |
Andrew Bresticker | fbd5524 | 2014-09-18 14:47:25 -0700 | [diff] [blame] | 680 | gic_shared_intrs = (gicconfig & GIC_SH_CONFIG_NUMINTRS_MSK) >> |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 681 | GIC_SH_CONFIG_NUMINTRS_SHF; |
Andrew Bresticker | fbd5524 | 2014-09-18 14:47:25 -0700 | [diff] [blame] | 682 | gic_shared_intrs = ((gic_shared_intrs + 1) * 8); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 683 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 684 | gic_vpes = (gicconfig & GIC_SH_CONFIG_NUMVPES_MSK) >> |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 685 | GIC_SH_CONFIG_NUMVPES_SHF; |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 686 | gic_vpes = gic_vpes + 1; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 687 | |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 688 | if (cpu_has_veic) { |
| 689 | /* Always use vector 1 in EIC mode */ |
| 690 | gic_cpu_pin = 0; |
| 691 | set_vi_handler(gic_cpu_pin + GIC_PIN_TO_VEC_OFFSET, |
| 692 | __gic_irq_dispatch); |
| 693 | } else { |
| 694 | gic_cpu_pin = cpu_vec - GIC_CPU_PIN_OFFSET; |
| 695 | irq_set_chained_handler(MIPS_CPU_IRQ_BASE + cpu_vec, |
| 696 | gic_irq_dispatch); |
| 697 | } |
| 698 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 699 | gic_irq_domain = irq_domain_add_simple(NULL, GIC_NUM_LOCAL_INTRS + |
| 700 | gic_shared_intrs, irqbase, |
Andrew Bresticker | c49581a | 2014-09-18 14:47:23 -0700 | [diff] [blame] | 701 | &gic_irq_domain_ops, NULL); |
| 702 | if (!gic_irq_domain) |
| 703 | panic("Failed to add GIC IRQ domain"); |
Steven J. Hill | 0b271f5 | 2012-08-31 16:05:37 -0500 | [diff] [blame] | 704 | |
Andrew Bresticker | e9de688 | 2014-09-18 14:47:27 -0700 | [diff] [blame] | 705 | gic_basic_init(); |
Andrew Bresticker | 18743d2 | 2014-09-18 14:47:24 -0700 | [diff] [blame] | 706 | |
| 707 | gic_ipi_init(); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 708 | } |