Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1 | /* |
| 2 | * arch/powerpc/kernel/mpic.c |
| 3 | * |
| 4 | * Driver for interrupt controllers following the OpenPIC standard, the |
| 5 | * common implementation beeing IBM's MPIC. This driver also can deal |
| 6 | * with various broken implementations of this HW. |
| 7 | * |
| 8 | * Copyright (C) 2004 Benjamin Herrenschmidt, IBM Corp. |
| 9 | * |
| 10 | * This file is subject to the terms and conditions of the GNU General Public |
| 11 | * License. See the file COPYING in the main directory of this archive |
| 12 | * for more details. |
| 13 | */ |
| 14 | |
| 15 | #undef DEBUG |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 16 | #undef DEBUG_IPI |
| 17 | #undef DEBUG_IRQ |
| 18 | #undef DEBUG_LOW |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 19 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 20 | #include <linux/types.h> |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/irq.h> |
| 24 | #include <linux/smp.h> |
| 25 | #include <linux/interrupt.h> |
| 26 | #include <linux/bootmem.h> |
| 27 | #include <linux/spinlock.h> |
| 28 | #include <linux/pci.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 30 | |
| 31 | #include <asm/ptrace.h> |
| 32 | #include <asm/signal.h> |
| 33 | #include <asm/io.h> |
| 34 | #include <asm/pgtable.h> |
| 35 | #include <asm/irq.h> |
| 36 | #include <asm/machdep.h> |
| 37 | #include <asm/mpic.h> |
| 38 | #include <asm/smp.h> |
| 39 | |
Michael Ellerman | a7de7c7 | 2007-05-08 12:58:36 +1000 | [diff] [blame] | 40 | #include "mpic.h" |
| 41 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 42 | #ifdef DEBUG |
| 43 | #define DBG(fmt...) printk(fmt) |
| 44 | #else |
| 45 | #define DBG(fmt...) |
| 46 | #endif |
| 47 | |
| 48 | static struct mpic *mpics; |
| 49 | static struct mpic *mpic_primary; |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 50 | static DEFINE_RAW_SPINLOCK(mpic_lock); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 51 | |
Paul Mackerras | c0c0d99 | 2005-10-01 13:49:08 +1000 | [diff] [blame] | 52 | #ifdef CONFIG_PPC32 /* XXX for now */ |
Andy Whitcroft | e40c7f0 | 2005-11-29 19:25:54 +0000 | [diff] [blame] | 53 | #ifdef CONFIG_IRQ_ALL_CPUS |
| 54 | #define distribute_irqs (1) |
| 55 | #else |
| 56 | #define distribute_irqs (0) |
| 57 | #endif |
Paul Mackerras | c0c0d99 | 2005-10-01 13:49:08 +1000 | [diff] [blame] | 58 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 59 | |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 60 | #ifdef CONFIG_MPIC_WEIRD |
| 61 | static u32 mpic_infos[][MPIC_IDX_END] = { |
| 62 | [0] = { /* Original OpenPIC compatible MPIC */ |
| 63 | MPIC_GREG_BASE, |
| 64 | MPIC_GREG_FEATURE_0, |
| 65 | MPIC_GREG_GLOBAL_CONF_0, |
| 66 | MPIC_GREG_VENDOR_ID, |
| 67 | MPIC_GREG_IPI_VECTOR_PRI_0, |
| 68 | MPIC_GREG_IPI_STRIDE, |
| 69 | MPIC_GREG_SPURIOUS, |
| 70 | MPIC_GREG_TIMER_FREQ, |
| 71 | |
| 72 | MPIC_TIMER_BASE, |
| 73 | MPIC_TIMER_STRIDE, |
| 74 | MPIC_TIMER_CURRENT_CNT, |
| 75 | MPIC_TIMER_BASE_CNT, |
| 76 | MPIC_TIMER_VECTOR_PRI, |
| 77 | MPIC_TIMER_DESTINATION, |
| 78 | |
| 79 | MPIC_CPU_BASE, |
| 80 | MPIC_CPU_STRIDE, |
| 81 | MPIC_CPU_IPI_DISPATCH_0, |
| 82 | MPIC_CPU_IPI_DISPATCH_STRIDE, |
| 83 | MPIC_CPU_CURRENT_TASK_PRI, |
| 84 | MPIC_CPU_WHOAMI, |
| 85 | MPIC_CPU_INTACK, |
| 86 | MPIC_CPU_EOI, |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 87 | MPIC_CPU_MCACK, |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 88 | |
| 89 | MPIC_IRQ_BASE, |
| 90 | MPIC_IRQ_STRIDE, |
| 91 | MPIC_IRQ_VECTOR_PRI, |
| 92 | MPIC_VECPRI_VECTOR_MASK, |
| 93 | MPIC_VECPRI_POLARITY_POSITIVE, |
| 94 | MPIC_VECPRI_POLARITY_NEGATIVE, |
| 95 | MPIC_VECPRI_SENSE_LEVEL, |
| 96 | MPIC_VECPRI_SENSE_EDGE, |
| 97 | MPIC_VECPRI_POLARITY_MASK, |
| 98 | MPIC_VECPRI_SENSE_MASK, |
| 99 | MPIC_IRQ_DESTINATION |
| 100 | }, |
| 101 | [1] = { /* Tsi108/109 PIC */ |
| 102 | TSI108_GREG_BASE, |
| 103 | TSI108_GREG_FEATURE_0, |
| 104 | TSI108_GREG_GLOBAL_CONF_0, |
| 105 | TSI108_GREG_VENDOR_ID, |
| 106 | TSI108_GREG_IPI_VECTOR_PRI_0, |
| 107 | TSI108_GREG_IPI_STRIDE, |
| 108 | TSI108_GREG_SPURIOUS, |
| 109 | TSI108_GREG_TIMER_FREQ, |
| 110 | |
| 111 | TSI108_TIMER_BASE, |
| 112 | TSI108_TIMER_STRIDE, |
| 113 | TSI108_TIMER_CURRENT_CNT, |
| 114 | TSI108_TIMER_BASE_CNT, |
| 115 | TSI108_TIMER_VECTOR_PRI, |
| 116 | TSI108_TIMER_DESTINATION, |
| 117 | |
| 118 | TSI108_CPU_BASE, |
| 119 | TSI108_CPU_STRIDE, |
| 120 | TSI108_CPU_IPI_DISPATCH_0, |
| 121 | TSI108_CPU_IPI_DISPATCH_STRIDE, |
| 122 | TSI108_CPU_CURRENT_TASK_PRI, |
| 123 | TSI108_CPU_WHOAMI, |
| 124 | TSI108_CPU_INTACK, |
| 125 | TSI108_CPU_EOI, |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 126 | TSI108_CPU_MCACK, |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 127 | |
| 128 | TSI108_IRQ_BASE, |
| 129 | TSI108_IRQ_STRIDE, |
| 130 | TSI108_IRQ_VECTOR_PRI, |
| 131 | TSI108_VECPRI_VECTOR_MASK, |
| 132 | TSI108_VECPRI_POLARITY_POSITIVE, |
| 133 | TSI108_VECPRI_POLARITY_NEGATIVE, |
| 134 | TSI108_VECPRI_SENSE_LEVEL, |
| 135 | TSI108_VECPRI_SENSE_EDGE, |
| 136 | TSI108_VECPRI_POLARITY_MASK, |
| 137 | TSI108_VECPRI_SENSE_MASK, |
| 138 | TSI108_IRQ_DESTINATION |
| 139 | }, |
| 140 | }; |
| 141 | |
| 142 | #define MPIC_INFO(name) mpic->hw_set[MPIC_IDX_##name] |
| 143 | |
| 144 | #else /* CONFIG_MPIC_WEIRD */ |
| 145 | |
| 146 | #define MPIC_INFO(name) MPIC_##name |
| 147 | |
| 148 | #endif /* CONFIG_MPIC_WEIRD */ |
| 149 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 150 | /* |
| 151 | * Register accessor functions |
| 152 | */ |
| 153 | |
| 154 | |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 155 | static inline u32 _mpic_read(enum mpic_reg_type type, |
| 156 | struct mpic_reg_bank *rb, |
| 157 | unsigned int reg) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 158 | { |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 159 | switch(type) { |
| 160 | #ifdef CONFIG_PPC_DCR |
| 161 | case mpic_access_dcr: |
Michael Ellerman | 83f34df | 2007-10-15 19:34:36 +1000 | [diff] [blame] | 162 | return dcr_read(rb->dhost, reg); |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 163 | #endif |
| 164 | case mpic_access_mmio_be: |
| 165 | return in_be32(rb->base + (reg >> 2)); |
| 166 | case mpic_access_mmio_le: |
| 167 | default: |
| 168 | return in_le32(rb->base + (reg >> 2)); |
| 169 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 170 | } |
| 171 | |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 172 | static inline void _mpic_write(enum mpic_reg_type type, |
| 173 | struct mpic_reg_bank *rb, |
| 174 | unsigned int reg, u32 value) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 175 | { |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 176 | switch(type) { |
| 177 | #ifdef CONFIG_PPC_DCR |
| 178 | case mpic_access_dcr: |
Johannes Berg | d9d1063 | 2008-02-21 20:39:01 +1100 | [diff] [blame] | 179 | dcr_write(rb->dhost, reg, value); |
| 180 | break; |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 181 | #endif |
| 182 | case mpic_access_mmio_be: |
Johannes Berg | d9d1063 | 2008-02-21 20:39:01 +1100 | [diff] [blame] | 183 | out_be32(rb->base + (reg >> 2), value); |
| 184 | break; |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 185 | case mpic_access_mmio_le: |
| 186 | default: |
Johannes Berg | d9d1063 | 2008-02-21 20:39:01 +1100 | [diff] [blame] | 187 | out_le32(rb->base + (reg >> 2), value); |
| 188 | break; |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 189 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | static inline u32 _mpic_ipi_read(struct mpic *mpic, unsigned int ipi) |
| 193 | { |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 194 | enum mpic_reg_type type = mpic->reg_type; |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 195 | unsigned int offset = MPIC_INFO(GREG_IPI_VECTOR_PRI_0) + |
| 196 | (ipi * MPIC_INFO(GREG_IPI_STRIDE)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 197 | |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 198 | if ((mpic->flags & MPIC_BROKEN_IPI) && type == mpic_access_mmio_le) |
| 199 | type = mpic_access_mmio_be; |
| 200 | return _mpic_read(type, &mpic->gregs, offset); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | static inline void _mpic_ipi_write(struct mpic *mpic, unsigned int ipi, u32 value) |
| 204 | { |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 205 | unsigned int offset = MPIC_INFO(GREG_IPI_VECTOR_PRI_0) + |
| 206 | (ipi * MPIC_INFO(GREG_IPI_STRIDE)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 207 | |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 208 | _mpic_write(mpic->reg_type, &mpic->gregs, offset, value); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | static inline u32 _mpic_cpu_read(struct mpic *mpic, unsigned int reg) |
| 212 | { |
| 213 | unsigned int cpu = 0; |
| 214 | |
| 215 | if (mpic->flags & MPIC_PRIMARY) |
| 216 | cpu = hard_smp_processor_id(); |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 217 | return _mpic_read(mpic->reg_type, &mpic->cpuregs[cpu], reg); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | static inline void _mpic_cpu_write(struct mpic *mpic, unsigned int reg, u32 value) |
| 221 | { |
| 222 | unsigned int cpu = 0; |
| 223 | |
| 224 | if (mpic->flags & MPIC_PRIMARY) |
| 225 | cpu = hard_smp_processor_id(); |
| 226 | |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 227 | _mpic_write(mpic->reg_type, &mpic->cpuregs[cpu], reg, value); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | static inline u32 _mpic_irq_read(struct mpic *mpic, unsigned int src_no, unsigned int reg) |
| 231 | { |
| 232 | unsigned int isu = src_no >> mpic->isu_shift; |
| 233 | unsigned int idx = src_no & mpic->isu_mask; |
Michael Ellerman | 11a6b29 | 2009-07-05 16:08:52 +0000 | [diff] [blame] | 234 | unsigned int val; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 235 | |
Michael Ellerman | 11a6b29 | 2009-07-05 16:08:52 +0000 | [diff] [blame] | 236 | val = _mpic_read(mpic->reg_type, &mpic->isus[isu], |
| 237 | reg + (idx * MPIC_INFO(IRQ_STRIDE))); |
Olof Johansson | 0d72ba9 | 2007-09-08 05:13:19 +1000 | [diff] [blame] | 238 | #ifdef CONFIG_MPIC_BROKEN_REGREAD |
| 239 | if (reg == 0) |
Michael Ellerman | 11a6b29 | 2009-07-05 16:08:52 +0000 | [diff] [blame] | 240 | val = (val & (MPIC_VECPRI_MASK | MPIC_VECPRI_ACTIVITY)) | |
| 241 | mpic->isu_reg0_shadow[src_no]; |
Olof Johansson | 0d72ba9 | 2007-09-08 05:13:19 +1000 | [diff] [blame] | 242 | #endif |
Michael Ellerman | 11a6b29 | 2009-07-05 16:08:52 +0000 | [diff] [blame] | 243 | return val; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | static inline void _mpic_irq_write(struct mpic *mpic, unsigned int src_no, |
| 247 | unsigned int reg, u32 value) |
| 248 | { |
| 249 | unsigned int isu = src_no >> mpic->isu_shift; |
| 250 | unsigned int idx = src_no & mpic->isu_mask; |
| 251 | |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 252 | _mpic_write(mpic->reg_type, &mpic->isus[isu], |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 253 | reg + (idx * MPIC_INFO(IRQ_STRIDE)), value); |
Olof Johansson | 0d72ba9 | 2007-09-08 05:13:19 +1000 | [diff] [blame] | 254 | |
| 255 | #ifdef CONFIG_MPIC_BROKEN_REGREAD |
| 256 | if (reg == 0) |
Michael Ellerman | 11a6b29 | 2009-07-05 16:08:52 +0000 | [diff] [blame] | 257 | mpic->isu_reg0_shadow[src_no] = |
| 258 | value & ~(MPIC_VECPRI_MASK | MPIC_VECPRI_ACTIVITY); |
Olof Johansson | 0d72ba9 | 2007-09-08 05:13:19 +1000 | [diff] [blame] | 259 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 260 | } |
| 261 | |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 262 | #define mpic_read(b,r) _mpic_read(mpic->reg_type,&(b),(r)) |
| 263 | #define mpic_write(b,r,v) _mpic_write(mpic->reg_type,&(b),(r),(v)) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 264 | #define mpic_ipi_read(i) _mpic_ipi_read(mpic,(i)) |
| 265 | #define mpic_ipi_write(i,v) _mpic_ipi_write(mpic,(i),(v)) |
| 266 | #define mpic_cpu_read(i) _mpic_cpu_read(mpic,(i)) |
| 267 | #define mpic_cpu_write(i,v) _mpic_cpu_write(mpic,(i),(v)) |
| 268 | #define mpic_irq_read(s,r) _mpic_irq_read(mpic,(s),(r)) |
| 269 | #define mpic_irq_write(s,r,v) _mpic_irq_write(mpic,(s),(r),(v)) |
| 270 | |
| 271 | |
| 272 | /* |
| 273 | * Low level utility functions |
| 274 | */ |
| 275 | |
| 276 | |
Becky Bruce | c51a3fdc | 2008-01-14 20:56:18 -0600 | [diff] [blame] | 277 | static void _mpic_map_mmio(struct mpic *mpic, phys_addr_t phys_addr, |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 278 | struct mpic_reg_bank *rb, unsigned int offset, |
| 279 | unsigned int size) |
| 280 | { |
| 281 | rb->base = ioremap(phys_addr + offset, size); |
| 282 | BUG_ON(rb->base == NULL); |
| 283 | } |
| 284 | |
| 285 | #ifdef CONFIG_PPC_DCR |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 286 | static void _mpic_map_dcr(struct mpic *mpic, struct device_node *node, |
| 287 | struct mpic_reg_bank *rb, |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 288 | unsigned int offset, unsigned int size) |
| 289 | { |
Michael Ellerman | 0411a5e | 2007-09-17 16:05:01 +1000 | [diff] [blame] | 290 | const u32 *dbasep; |
| 291 | |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 292 | dbasep = of_get_property(node, "dcr-reg", NULL); |
Michael Ellerman | 0411a5e | 2007-09-17 16:05:01 +1000 | [diff] [blame] | 293 | |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 294 | rb->dhost = dcr_map(node, *dbasep + offset, size); |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 295 | BUG_ON(!DCR_MAP_OK(rb->dhost)); |
| 296 | } |
| 297 | |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 298 | static inline void mpic_map(struct mpic *mpic, struct device_node *node, |
| 299 | phys_addr_t phys_addr, struct mpic_reg_bank *rb, |
| 300 | unsigned int offset, unsigned int size) |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 301 | { |
| 302 | if (mpic->flags & MPIC_USES_DCR) |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 303 | _mpic_map_dcr(mpic, node, rb, offset, size); |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 304 | else |
| 305 | _mpic_map_mmio(mpic, phys_addr, rb, offset, size); |
| 306 | } |
| 307 | #else /* CONFIG_PPC_DCR */ |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 308 | #define mpic_map(m,n,p,b,o,s) _mpic_map_mmio(m,p,b,o,s) |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 309 | #endif /* !CONFIG_PPC_DCR */ |
| 310 | |
| 311 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 312 | |
| 313 | /* Check if we have one of those nice broken MPICs with a flipped endian on |
| 314 | * reads from IPI registers |
| 315 | */ |
| 316 | static void __init mpic_test_broken_ipi(struct mpic *mpic) |
| 317 | { |
| 318 | u32 r; |
| 319 | |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 320 | mpic_write(mpic->gregs, MPIC_INFO(GREG_IPI_VECTOR_PRI_0), MPIC_VECPRI_MASK); |
| 321 | r = mpic_read(mpic->gregs, MPIC_INFO(GREG_IPI_VECTOR_PRI_0)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 322 | |
| 323 | if (r == le32_to_cpu(MPIC_VECPRI_MASK)) { |
| 324 | printk(KERN_INFO "mpic: Detected reversed IPI registers\n"); |
| 325 | mpic->flags |= MPIC_BROKEN_IPI; |
| 326 | } |
| 327 | } |
| 328 | |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 329 | #ifdef CONFIG_MPIC_U3_HT_IRQS |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 330 | |
| 331 | /* Test if an interrupt is sourced from HyperTransport (used on broken U3s) |
| 332 | * to force the edge setting on the MPIC and do the ack workaround. |
| 333 | */ |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 334 | static inline int mpic_is_ht_interrupt(struct mpic *mpic, unsigned int source) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 335 | { |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 336 | if (source >= 128 || !mpic->fixups) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 337 | return 0; |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 338 | return mpic->fixups[source].base != NULL; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 339 | } |
| 340 | |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 341 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 342 | static inline void mpic_ht_end_irq(struct mpic *mpic, unsigned int source) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 343 | { |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 344 | struct mpic_irq_fixup *fixup = &mpic->fixups[source]; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 345 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 346 | if (fixup->applebase) { |
| 347 | unsigned int soff = (fixup->index >> 3) & ~3; |
| 348 | unsigned int mask = 1U << (fixup->index & 0x1f); |
| 349 | writel(mask, fixup->applebase + soff); |
| 350 | } else { |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 351 | raw_spin_lock(&mpic->fixup_lock); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 352 | writeb(0x11 + 2 * fixup->index, fixup->base + 2); |
| 353 | writel(fixup->data, fixup->base + 4); |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 354 | raw_spin_unlock(&mpic->fixup_lock); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 355 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 356 | } |
| 357 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 358 | static void mpic_startup_ht_interrupt(struct mpic *mpic, unsigned int source, |
| 359 | unsigned int irqflags) |
| 360 | { |
| 361 | struct mpic_irq_fixup *fixup = &mpic->fixups[source]; |
| 362 | unsigned long flags; |
| 363 | u32 tmp; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 364 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 365 | if (fixup->base == NULL) |
| 366 | return; |
| 367 | |
Benjamin Herrenschmidt | 06fe98e | 2006-07-10 04:44:43 -0700 | [diff] [blame] | 368 | DBG("startup_ht_interrupt(0x%x, 0x%x) index: %d\n", |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 369 | source, irqflags, fixup->index); |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 370 | raw_spin_lock_irqsave(&mpic->fixup_lock, flags); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 371 | /* Enable and configure */ |
| 372 | writeb(0x10 + 2 * fixup->index, fixup->base + 2); |
| 373 | tmp = readl(fixup->base + 4); |
| 374 | tmp &= ~(0x23U); |
| 375 | if (irqflags & IRQ_LEVEL) |
| 376 | tmp |= 0x22; |
| 377 | writel(tmp, fixup->base + 4); |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 378 | raw_spin_unlock_irqrestore(&mpic->fixup_lock, flags); |
Johannes Berg | 3669e93 | 2007-05-02 16:33:41 +1000 | [diff] [blame] | 379 | |
| 380 | #ifdef CONFIG_PM |
| 381 | /* use the lowest bit inverted to the actual HW, |
| 382 | * set if this fixup was enabled, clear otherwise */ |
| 383 | mpic->save_data[source].fixup_data = tmp | 1; |
| 384 | #endif |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | static void mpic_shutdown_ht_interrupt(struct mpic *mpic, unsigned int source, |
| 388 | unsigned int irqflags) |
| 389 | { |
| 390 | struct mpic_irq_fixup *fixup = &mpic->fixups[source]; |
| 391 | unsigned long flags; |
| 392 | u32 tmp; |
| 393 | |
| 394 | if (fixup->base == NULL) |
| 395 | return; |
| 396 | |
Benjamin Herrenschmidt | 06fe98e | 2006-07-10 04:44:43 -0700 | [diff] [blame] | 397 | DBG("shutdown_ht_interrupt(0x%x, 0x%x)\n", source, irqflags); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 398 | |
| 399 | /* Disable */ |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 400 | raw_spin_lock_irqsave(&mpic->fixup_lock, flags); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 401 | writeb(0x10 + 2 * fixup->index, fixup->base + 2); |
| 402 | tmp = readl(fixup->base + 4); |
Segher Boessenkool | 72b1381 | 2006-02-17 11:25:42 +0100 | [diff] [blame] | 403 | tmp |= 1; |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 404 | writel(tmp, fixup->base + 4); |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 405 | raw_spin_unlock_irqrestore(&mpic->fixup_lock, flags); |
Johannes Berg | 3669e93 | 2007-05-02 16:33:41 +1000 | [diff] [blame] | 406 | |
| 407 | #ifdef CONFIG_PM |
| 408 | /* use the lowest bit inverted to the actual HW, |
| 409 | * set if this fixup was enabled, clear otherwise */ |
| 410 | mpic->save_data[source].fixup_data = tmp & ~1; |
| 411 | #endif |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 412 | } |
| 413 | |
Michael Ellerman | 812fd1f | 2007-05-08 12:58:36 +1000 | [diff] [blame] | 414 | #ifdef CONFIG_PCI_MSI |
| 415 | static void __init mpic_scan_ht_msi(struct mpic *mpic, u8 __iomem *devbase, |
| 416 | unsigned int devfn) |
| 417 | { |
| 418 | u8 __iomem *base; |
| 419 | u8 pos, flags; |
| 420 | u64 addr = 0; |
| 421 | |
| 422 | for (pos = readb(devbase + PCI_CAPABILITY_LIST); pos != 0; |
| 423 | pos = readb(devbase + pos + PCI_CAP_LIST_NEXT)) { |
| 424 | u8 id = readb(devbase + pos + PCI_CAP_LIST_ID); |
| 425 | if (id == PCI_CAP_ID_HT) { |
| 426 | id = readb(devbase + pos + 3); |
| 427 | if ((id & HT_5BIT_CAP_MASK) == HT_CAPTYPE_MSI_MAPPING) |
| 428 | break; |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | if (pos == 0) |
| 433 | return; |
| 434 | |
| 435 | base = devbase + pos; |
| 436 | |
| 437 | flags = readb(base + HT_MSI_FLAGS); |
| 438 | if (!(flags & HT_MSI_FLAGS_FIXED)) { |
| 439 | addr = readl(base + HT_MSI_ADDR_LO) & HT_MSI_ADDR_LO_MASK; |
| 440 | addr = addr | ((u64)readl(base + HT_MSI_ADDR_HI) << 32); |
| 441 | } |
| 442 | |
Ingo Molnar | fe33332 | 2009-01-06 14:26:03 +0000 | [diff] [blame] | 443 | printk(KERN_DEBUG "mpic: - HT:%02x.%x %s MSI mapping found @ 0x%llx\n", |
Michael Ellerman | 812fd1f | 2007-05-08 12:58:36 +1000 | [diff] [blame] | 444 | PCI_SLOT(devfn), PCI_FUNC(devfn), |
| 445 | flags & HT_MSI_FLAGS_ENABLE ? "enabled" : "disabled", addr); |
| 446 | |
| 447 | if (!(flags & HT_MSI_FLAGS_ENABLE)) |
| 448 | writeb(flags | HT_MSI_FLAGS_ENABLE, base + HT_MSI_FLAGS); |
| 449 | } |
| 450 | #else |
| 451 | static void __init mpic_scan_ht_msi(struct mpic *mpic, u8 __iomem *devbase, |
| 452 | unsigned int devfn) |
| 453 | { |
| 454 | return; |
| 455 | } |
| 456 | #endif |
| 457 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 458 | static void __init mpic_scan_ht_pic(struct mpic *mpic, u8 __iomem *devbase, |
| 459 | unsigned int devfn, u32 vdid) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 460 | { |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 461 | int i, irq, n; |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 462 | u8 __iomem *base; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 463 | u32 tmp; |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 464 | u8 pos; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 465 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 466 | for (pos = readb(devbase + PCI_CAPABILITY_LIST); pos != 0; |
| 467 | pos = readb(devbase + pos + PCI_CAP_LIST_NEXT)) { |
| 468 | u8 id = readb(devbase + pos + PCI_CAP_LIST_ID); |
Brice Goglin | 46ff346 | 2006-08-31 01:55:24 -0400 | [diff] [blame] | 469 | if (id == PCI_CAP_ID_HT) { |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 470 | id = readb(devbase + pos + 3); |
Michael Ellerman | beb7cc8 | 2006-11-22 18:26:22 +1100 | [diff] [blame] | 471 | if ((id & HT_5BIT_CAP_MASK) == HT_CAPTYPE_IRQ) |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 472 | break; |
| 473 | } |
| 474 | } |
| 475 | if (pos == 0) |
| 476 | return; |
| 477 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 478 | base = devbase + pos; |
| 479 | writeb(0x01, base + 2); |
| 480 | n = (readl(base + 4) >> 16) & 0xff; |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 481 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 482 | printk(KERN_INFO "mpic: - HT:%02x.%x [0x%02x] vendor %04x device %04x" |
| 483 | " has %d irqs\n", |
| 484 | devfn >> 3, devfn & 0x7, pos, vdid & 0xffff, vdid >> 16, n + 1); |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 485 | |
| 486 | for (i = 0; i <= n; i++) { |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 487 | writeb(0x10 + 2 * i, base + 2); |
| 488 | tmp = readl(base + 4); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 489 | irq = (tmp >> 16) & 0xff; |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 490 | DBG("HT PIC index 0x%x, irq 0x%x, tmp: %08x\n", i, irq, tmp); |
| 491 | /* mask it , will be unmasked later */ |
| 492 | tmp |= 0x1; |
| 493 | writel(tmp, base + 4); |
| 494 | mpic->fixups[irq].index = i; |
| 495 | mpic->fixups[irq].base = base; |
| 496 | /* Apple HT PIC has a non-standard way of doing EOIs */ |
| 497 | if ((vdid & 0xffff) == 0x106b) |
| 498 | mpic->fixups[irq].applebase = devbase + 0x60; |
| 499 | else |
| 500 | mpic->fixups[irq].applebase = NULL; |
| 501 | writeb(0x11 + 2 * i, base + 2); |
| 502 | mpic->fixups[irq].data = readl(base + 4) | 0x80000000; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 503 | } |
| 504 | } |
| 505 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 506 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 507 | static void __init mpic_scan_ht_pics(struct mpic *mpic) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 508 | { |
| 509 | unsigned int devfn; |
| 510 | u8 __iomem *cfgspace; |
| 511 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 512 | printk(KERN_INFO "mpic: Setting up HT PICs workarounds for U3/U4\n"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 513 | |
| 514 | /* Allocate fixups array */ |
Anton Vorontsov | ea96025 | 2009-07-01 10:59:57 +0000 | [diff] [blame] | 515 | mpic->fixups = kzalloc(128 * sizeof(*mpic->fixups), GFP_KERNEL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 516 | BUG_ON(mpic->fixups == NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 517 | |
| 518 | /* Init spinlock */ |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 519 | raw_spin_lock_init(&mpic->fixup_lock); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 520 | |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 521 | /* Map U3 config space. We assume all IO-APICs are on the primary bus |
| 522 | * so we only need to map 64kB. |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 523 | */ |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 524 | cfgspace = ioremap(0xf2000000, 0x10000); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 525 | BUG_ON(cfgspace == NULL); |
| 526 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 527 | /* Now we scan all slots. We do a very quick scan, we read the header |
| 528 | * type, vendor ID and device ID only, that's plenty enough |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 529 | */ |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 530 | for (devfn = 0; devfn < 0x100; devfn++) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 531 | u8 __iomem *devbase = cfgspace + (devfn << 8); |
| 532 | u8 hdr_type = readb(devbase + PCI_HEADER_TYPE); |
| 533 | u32 l = readl(devbase + PCI_VENDOR_ID); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 534 | u16 s; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 535 | |
| 536 | DBG("devfn %x, l: %x\n", devfn, l); |
| 537 | |
| 538 | /* If no device, skip */ |
| 539 | if (l == 0xffffffff || l == 0x00000000 || |
| 540 | l == 0x0000ffff || l == 0xffff0000) |
| 541 | goto next; |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 542 | /* Check if is supports capability lists */ |
| 543 | s = readw(devbase + PCI_STATUS); |
| 544 | if (!(s & PCI_STATUS_CAP_LIST)) |
| 545 | goto next; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 546 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 547 | mpic_scan_ht_pic(mpic, devbase, devfn, l); |
Michael Ellerman | 812fd1f | 2007-05-08 12:58:36 +1000 | [diff] [blame] | 548 | mpic_scan_ht_msi(mpic, devbase, devfn); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 549 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 550 | next: |
| 551 | /* next device, if function 0 */ |
Segher Boessenkool | c4b22f2 | 2005-12-13 18:04:29 +1100 | [diff] [blame] | 552 | if (PCI_FUNC(devfn) == 0 && (hdr_type & 0x80) == 0) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 553 | devfn += 7; |
| 554 | } |
| 555 | } |
| 556 | |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 557 | #else /* CONFIG_MPIC_U3_HT_IRQS */ |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 558 | |
| 559 | static inline int mpic_is_ht_interrupt(struct mpic *mpic, unsigned int source) |
| 560 | { |
| 561 | return 0; |
| 562 | } |
| 563 | |
| 564 | static void __init mpic_scan_ht_pics(struct mpic *mpic) |
| 565 | { |
| 566 | } |
| 567 | |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 568 | #endif /* CONFIG_MPIC_U3_HT_IRQS */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 569 | |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 570 | #ifdef CONFIG_SMP |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 571 | static int irq_choose_cpu(const struct cpumask *mask) |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 572 | { |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 573 | int cpuid; |
| 574 | |
Yang Li | 38e1313 | 2009-12-16 20:18:11 +0000 | [diff] [blame] | 575 | if (cpumask_equal(mask, cpu_all_mask)) { |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 576 | static int irq_rover = 0; |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 577 | static DEFINE_RAW_SPINLOCK(irq_rover_lock); |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 578 | unsigned long flags; |
| 579 | |
| 580 | /* Round-robin distribution... */ |
| 581 | do_round_robin: |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 582 | raw_spin_lock_irqsave(&irq_rover_lock, flags); |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 583 | |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 584 | irq_rover = cpumask_next(irq_rover, cpu_online_mask); |
| 585 | if (irq_rover >= nr_cpu_ids) |
| 586 | irq_rover = cpumask_first(cpu_online_mask); |
| 587 | |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 588 | cpuid = irq_rover; |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 589 | |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 590 | raw_spin_unlock_irqrestore(&irq_rover_lock, flags); |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 591 | } else { |
Yang Li | 38e1313 | 2009-12-16 20:18:11 +0000 | [diff] [blame] | 592 | cpuid = cpumask_first_and(mask, cpu_online_mask); |
| 593 | if (cpuid >= nr_cpu_ids) |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 594 | goto do_round_robin; |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 595 | } |
| 596 | |
Kumar Gala | 7a0d794 | 2008-12-02 13:37:01 -0600 | [diff] [blame] | 597 | return get_hard_smp_processor_id(cpuid); |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 598 | } |
| 599 | #else |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 600 | static int irq_choose_cpu(const struct cpumask *mask) |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 601 | { |
| 602 | return hard_smp_processor_id(); |
| 603 | } |
| 604 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 605 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 606 | #define mpic_irq_to_hw(virq) ((unsigned int)irq_map[virq].hwirq) |
| 607 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 608 | /* Find an mpic associated with a given linux interrupt */ |
Tony Breeds | d69a78d | 2009-04-07 18:26:54 +0000 | [diff] [blame] | 609 | static struct mpic *mpic_find(unsigned int irq) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 610 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 611 | if (irq < NUM_ISA_INTERRUPTS) |
| 612 | return NULL; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 613 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 614 | return get_irq_chip_data(irq); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 615 | } |
| 616 | |
Tony Breeds | d69a78d | 2009-04-07 18:26:54 +0000 | [diff] [blame] | 617 | /* Determine if the linux irq is an IPI */ |
| 618 | static unsigned int mpic_is_ipi(struct mpic *mpic, unsigned int irq) |
| 619 | { |
| 620 | unsigned int src = mpic_irq_to_hw(irq); |
| 621 | |
| 622 | return (src >= mpic->ipi_vecs[0] && src <= mpic->ipi_vecs[3]); |
| 623 | } |
| 624 | |
| 625 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 626 | /* Convert a cpu mask from logical to physical cpu numbers. */ |
| 627 | static inline u32 mpic_physmask(u32 cpumask) |
| 628 | { |
| 629 | int i; |
| 630 | u32 mask = 0; |
| 631 | |
| 632 | for (i = 0; i < NR_CPUS; ++i, cpumask >>= 1) |
| 633 | mask |= (cpumask & 1) << get_hard_smp_processor_id(i); |
| 634 | return mask; |
| 635 | } |
| 636 | |
| 637 | #ifdef CONFIG_SMP |
| 638 | /* Get the mpic structure from the IPI number */ |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 639 | static inline struct mpic * mpic_from_ipi(struct irq_data *d) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 640 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 641 | return irq_data_get_irq_chip_data(d); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 642 | } |
| 643 | #endif |
| 644 | |
| 645 | /* Get the mpic structure from the irq number */ |
| 646 | static inline struct mpic * mpic_from_irq(unsigned int irq) |
| 647 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 648 | return get_irq_chip_data(irq); |
| 649 | } |
| 650 | |
| 651 | /* Get the mpic structure from the irq data */ |
| 652 | static inline struct mpic * mpic_from_irq_data(struct irq_data *d) |
| 653 | { |
| 654 | return irq_data_get_irq_chip_data(d); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | /* Send an EOI */ |
| 658 | static inline void mpic_eoi(struct mpic *mpic) |
| 659 | { |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 660 | mpic_cpu_write(MPIC_INFO(CPU_EOI), 0); |
| 661 | (void)mpic_cpu_read(MPIC_INFO(CPU_WHOAMI)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 662 | } |
| 663 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 664 | /* |
| 665 | * Linux descriptor level callbacks |
| 666 | */ |
| 667 | |
| 668 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 669 | void mpic_unmask_irq(struct irq_data *d) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 670 | { |
| 671 | unsigned int loops = 100000; |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 672 | struct mpic *mpic = mpic_from_irq_data(d); |
| 673 | unsigned int src = mpic_irq_to_hw(d->irq); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 674 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 675 | DBG("%p: %s: enable_irq: %d (src %d)\n", mpic, mpic->name, d->irq, src); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 676 | |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 677 | mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), |
| 678 | mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & |
Benjamin Herrenschmidt | e535664 | 2005-11-18 17:18:15 +1100 | [diff] [blame] | 679 | ~MPIC_VECPRI_MASK); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 680 | /* make sure mask gets to controller before we return to user */ |
| 681 | do { |
| 682 | if (!loops--) { |
Scott Wood | 8bfc5e3 | 2011-01-17 12:10:41 +0000 | [diff] [blame] | 683 | printk(KERN_ERR "%s: timeout on hwirq %u\n", |
| 684 | __func__, src); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 685 | break; |
| 686 | } |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 687 | } while(mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & MPIC_VECPRI_MASK); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 688 | } |
| 689 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 690 | void mpic_mask_irq(struct irq_data *d) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 691 | { |
| 692 | unsigned int loops = 100000; |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 693 | struct mpic *mpic = mpic_from_irq_data(d); |
| 694 | unsigned int src = mpic_irq_to_hw(d->irq); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 695 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 696 | DBG("%s: disable_irq: %d (src %d)\n", mpic->name, d->irq, src); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 697 | |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 698 | mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), |
| 699 | mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) | |
Benjamin Herrenschmidt | e535664 | 2005-11-18 17:18:15 +1100 | [diff] [blame] | 700 | MPIC_VECPRI_MASK); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 701 | |
| 702 | /* make sure mask gets to controller before we return to user */ |
| 703 | do { |
| 704 | if (!loops--) { |
Scott Wood | 8bfc5e3 | 2011-01-17 12:10:41 +0000 | [diff] [blame] | 705 | printk(KERN_ERR "%s: timeout on hwirq %u\n", |
| 706 | __func__, src); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 707 | break; |
| 708 | } |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 709 | } while(!(mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & MPIC_VECPRI_MASK)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 710 | } |
| 711 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 712 | void mpic_end_irq(struct irq_data *d) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 713 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 714 | struct mpic *mpic = mpic_from_irq_data(d); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 715 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 716 | #ifdef DEBUG_IRQ |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 717 | DBG("%s: end_irq: %d\n", mpic->name, d->irq); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 718 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 719 | /* We always EOI on end_irq() even for edge interrupts since that |
| 720 | * should only lower the priority, the MPIC should have properly |
| 721 | * latched another edge interrupt coming in anyway |
| 722 | */ |
| 723 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 724 | mpic_eoi(mpic); |
| 725 | } |
| 726 | |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 727 | #ifdef CONFIG_MPIC_U3_HT_IRQS |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 728 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 729 | static void mpic_unmask_ht_irq(struct irq_data *d) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 730 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 731 | struct mpic *mpic = mpic_from_irq_data(d); |
| 732 | unsigned int src = mpic_irq_to_hw(d->irq); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 733 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 734 | mpic_unmask_irq(d); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 735 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 736 | if (irq_to_desc(d->irq)->status & IRQ_LEVEL) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 737 | mpic_ht_end_irq(mpic, src); |
| 738 | } |
| 739 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 740 | static unsigned int mpic_startup_ht_irq(struct irq_data *d) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 741 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 742 | struct mpic *mpic = mpic_from_irq_data(d); |
| 743 | unsigned int src = mpic_irq_to_hw(d->irq); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 744 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 745 | mpic_unmask_irq(d); |
| 746 | mpic_startup_ht_interrupt(mpic, src, irq_to_desc(d->irq)->status); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 747 | |
| 748 | return 0; |
| 749 | } |
| 750 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 751 | static void mpic_shutdown_ht_irq(struct irq_data *d) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 752 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 753 | struct mpic *mpic = mpic_from_irq_data(d); |
| 754 | unsigned int src = mpic_irq_to_hw(d->irq); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 755 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 756 | mpic_shutdown_ht_interrupt(mpic, src, irq_to_desc(d->irq)->status); |
| 757 | mpic_mask_irq(d); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 758 | } |
| 759 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 760 | static void mpic_end_ht_irq(struct irq_data *d) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 761 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 762 | struct mpic *mpic = mpic_from_irq_data(d); |
| 763 | unsigned int src = mpic_irq_to_hw(d->irq); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 764 | |
| 765 | #ifdef DEBUG_IRQ |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 766 | DBG("%s: end_irq: %d\n", mpic->name, d->irq); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 767 | #endif |
| 768 | /* We always EOI on end_irq() even for edge interrupts since that |
| 769 | * should only lower the priority, the MPIC should have properly |
| 770 | * latched another edge interrupt coming in anyway |
| 771 | */ |
| 772 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 773 | if (irq_to_desc(d->irq)->status & IRQ_LEVEL) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 774 | mpic_ht_end_irq(mpic, src); |
| 775 | mpic_eoi(mpic); |
| 776 | } |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 777 | #endif /* !CONFIG_MPIC_U3_HT_IRQS */ |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 778 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 779 | #ifdef CONFIG_SMP |
| 780 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 781 | static void mpic_unmask_ipi(struct irq_data *d) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 782 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 783 | struct mpic *mpic = mpic_from_ipi(d); |
| 784 | unsigned int src = mpic_irq_to_hw(d->irq) - mpic->ipi_vecs[0]; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 785 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 786 | DBG("%s: enable_ipi: %d (ipi %d)\n", mpic->name, d->irq, src); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 787 | mpic_ipi_write(src, mpic_ipi_read(src) & ~MPIC_VECPRI_MASK); |
| 788 | } |
| 789 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 790 | static void mpic_mask_ipi(struct irq_data *d) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 791 | { |
| 792 | /* NEVER disable an IPI... that's just plain wrong! */ |
| 793 | } |
| 794 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 795 | static void mpic_end_ipi(struct irq_data *d) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 796 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 797 | struct mpic *mpic = mpic_from_ipi(d); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 798 | |
| 799 | /* |
| 800 | * IPIs are marked IRQ_PER_CPU. This has the side effect of |
| 801 | * preventing the IRQ_PENDING/IRQ_INPROGRESS logic from |
| 802 | * applying to them. We EOI them late to avoid re-entering. |
Thomas Gleixner | 6714465 | 2006-07-01 19:29:22 -0700 | [diff] [blame] | 803 | * We mark IPI's with IRQF_DISABLED as they must run with |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 804 | * irqs disabled. |
| 805 | */ |
| 806 | mpic_eoi(mpic); |
| 807 | } |
| 808 | |
| 809 | #endif /* CONFIG_SMP */ |
| 810 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 811 | int mpic_set_affinity(struct irq_data *d, const struct cpumask *cpumask, |
| 812 | bool force) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 813 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 814 | struct mpic *mpic = mpic_from_irq_data(d); |
| 815 | unsigned int src = mpic_irq_to_hw(d->irq); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 816 | |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 817 | if (mpic->flags & MPIC_SINGLE_DEST_CPU) { |
Yang Li | 38e1313 | 2009-12-16 20:18:11 +0000 | [diff] [blame] | 818 | int cpuid = irq_choose_cpu(cpumask); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 819 | |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 820 | mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 1 << cpuid); |
| 821 | } else { |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 822 | cpumask_var_t tmp; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 823 | |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 824 | alloc_cpumask_var(&tmp, GFP_KERNEL); |
| 825 | |
| 826 | cpumask_and(tmp, cpumask, cpu_online_mask); |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 827 | |
| 828 | mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 829 | mpic_physmask(cpumask_bits(tmp)[0])); |
| 830 | |
| 831 | free_cpumask_var(tmp); |
Kumar Gala | 3c10c9c | 2008-10-28 18:01:39 +0000 | [diff] [blame] | 832 | } |
Yinghai Lu | d5dedd4 | 2009-04-27 17:59:21 -0700 | [diff] [blame] | 833 | |
| 834 | return 0; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 835 | } |
| 836 | |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 837 | static unsigned int mpic_type_to_vecpri(struct mpic *mpic, unsigned int type) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 838 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 839 | /* Now convert sense value */ |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 840 | switch(type & IRQ_TYPE_SENSE_MASK) { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 841 | case IRQ_TYPE_EDGE_RISING: |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 842 | return MPIC_INFO(VECPRI_SENSE_EDGE) | |
| 843 | MPIC_INFO(VECPRI_POLARITY_POSITIVE); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 844 | case IRQ_TYPE_EDGE_FALLING: |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 845 | case IRQ_TYPE_EDGE_BOTH: |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 846 | return MPIC_INFO(VECPRI_SENSE_EDGE) | |
| 847 | MPIC_INFO(VECPRI_POLARITY_NEGATIVE); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 848 | case IRQ_TYPE_LEVEL_HIGH: |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 849 | return MPIC_INFO(VECPRI_SENSE_LEVEL) | |
| 850 | MPIC_INFO(VECPRI_POLARITY_POSITIVE); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 851 | case IRQ_TYPE_LEVEL_LOW: |
| 852 | default: |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 853 | return MPIC_INFO(VECPRI_SENSE_LEVEL) | |
| 854 | MPIC_INFO(VECPRI_POLARITY_NEGATIVE); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 855 | } |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 856 | } |
| 857 | |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 858 | int mpic_set_irq_type(struct irq_data *d, unsigned int flow_type) |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 859 | { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 860 | struct mpic *mpic = mpic_from_irq_data(d); |
| 861 | unsigned int src = mpic_irq_to_hw(d->irq); |
| 862 | struct irq_desc *desc = irq_to_desc(d->irq); |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 863 | unsigned int vecpri, vold, vnew; |
| 864 | |
Benjamin Herrenschmidt | 06fe98e | 2006-07-10 04:44:43 -0700 | [diff] [blame] | 865 | DBG("mpic: set_irq_type(mpic:@%p,virq:%d,src:0x%x,type:0x%x)\n", |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 866 | mpic, d->irq, src, flow_type); |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 867 | |
| 868 | if (src >= mpic->irq_count) |
| 869 | return -EINVAL; |
| 870 | |
| 871 | if (flow_type == IRQ_TYPE_NONE) |
| 872 | if (mpic->senses && src < mpic->senses_count) |
| 873 | flow_type = mpic->senses[src]; |
| 874 | if (flow_type == IRQ_TYPE_NONE) |
| 875 | flow_type = IRQ_TYPE_LEVEL_LOW; |
| 876 | |
| 877 | desc->status &= ~(IRQ_TYPE_SENSE_MASK | IRQ_LEVEL); |
| 878 | desc->status |= flow_type & IRQ_TYPE_SENSE_MASK; |
| 879 | if (flow_type & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) |
| 880 | desc->status |= IRQ_LEVEL; |
| 881 | |
| 882 | if (mpic_is_ht_interrupt(mpic, src)) |
| 883 | vecpri = MPIC_VECPRI_POLARITY_POSITIVE | |
| 884 | MPIC_VECPRI_SENSE_EDGE; |
| 885 | else |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 886 | vecpri = mpic_type_to_vecpri(mpic, flow_type); |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 887 | |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 888 | vold = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)); |
| 889 | vnew = vold & ~(MPIC_INFO(VECPRI_POLARITY_MASK) | |
| 890 | MPIC_INFO(VECPRI_SENSE_MASK)); |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 891 | vnew |= vecpri; |
| 892 | if (vold != vnew) |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 893 | mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vnew); |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 894 | |
| 895 | return 0; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 896 | } |
| 897 | |
Olof Johansson | 38958dd | 2007-12-12 17:44:46 +1100 | [diff] [blame] | 898 | void mpic_set_vector(unsigned int virq, unsigned int vector) |
| 899 | { |
| 900 | struct mpic *mpic = mpic_from_irq(virq); |
| 901 | unsigned int src = mpic_irq_to_hw(virq); |
| 902 | unsigned int vecpri; |
| 903 | |
| 904 | DBG("mpic: set_vector(mpic:@%p,virq:%d,src:%d,vector:0x%x)\n", |
| 905 | mpic, virq, src, vector); |
| 906 | |
| 907 | if (src >= mpic->irq_count) |
| 908 | return; |
| 909 | |
| 910 | vecpri = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)); |
| 911 | vecpri = vecpri & ~MPIC_INFO(VECPRI_VECTOR_MASK); |
| 912 | vecpri |= vector; |
| 913 | mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vecpri); |
| 914 | } |
| 915 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 916 | static struct irq_chip mpic_irq_chip = { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 917 | .irq_mask = mpic_mask_irq, |
| 918 | .irq_unmask = mpic_unmask_irq, |
| 919 | .irq_eoi = mpic_end_irq, |
| 920 | .irq_set_type = mpic_set_irq_type, |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 921 | }; |
| 922 | |
| 923 | #ifdef CONFIG_SMP |
| 924 | static struct irq_chip mpic_ipi_chip = { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 925 | .irq_mask = mpic_mask_ipi, |
| 926 | .irq_unmask = mpic_unmask_ipi, |
| 927 | .irq_eoi = mpic_end_ipi, |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 928 | }; |
| 929 | #endif /* CONFIG_SMP */ |
| 930 | |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 931 | #ifdef CONFIG_MPIC_U3_HT_IRQS |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 932 | static struct irq_chip mpic_irq_ht_chip = { |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 933 | .irq_startup = mpic_startup_ht_irq, |
| 934 | .irq_shutdown = mpic_shutdown_ht_irq, |
| 935 | .irq_mask = mpic_mask_irq, |
| 936 | .irq_unmask = mpic_unmask_ht_irq, |
| 937 | .irq_eoi = mpic_end_ht_irq, |
| 938 | .irq_set_type = mpic_set_irq_type, |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 939 | }; |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 940 | #endif /* CONFIG_MPIC_U3_HT_IRQS */ |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 941 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 942 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 943 | static int mpic_host_match(struct irq_host *h, struct device_node *node) |
| 944 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 945 | /* Exact match, unless mpic node is NULL */ |
Michael Ellerman | 52964f8 | 2007-08-28 18:47:54 +1000 | [diff] [blame] | 946 | return h->of_node == NULL || h->of_node == node; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 947 | } |
| 948 | |
| 949 | static int mpic_host_map(struct irq_host *h, unsigned int virq, |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 950 | irq_hw_number_t hw) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 951 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 952 | struct mpic *mpic = h->host_data; |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 953 | struct irq_chip *chip; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 954 | |
Benjamin Herrenschmidt | 06fe98e | 2006-07-10 04:44:43 -0700 | [diff] [blame] | 955 | DBG("mpic: map virq %d, hwirq 0x%lx\n", virq, hw); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 956 | |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 957 | if (hw == mpic->spurious_vec) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 958 | return -EINVAL; |
Benjamin Herrenschmidt | 7fd7218 | 2007-07-21 09:55:21 +1000 | [diff] [blame] | 959 | if (mpic->protected && test_bit(hw, mpic->protected)) |
| 960 | return -EINVAL; |
Benjamin Herrenschmidt | 06fe98e | 2006-07-10 04:44:43 -0700 | [diff] [blame] | 961 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 962 | #ifdef CONFIG_SMP |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 963 | else if (hw >= mpic->ipi_vecs[0]) { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 964 | WARN_ON(!(mpic->flags & MPIC_PRIMARY)); |
| 965 | |
Benjamin Herrenschmidt | 06fe98e | 2006-07-10 04:44:43 -0700 | [diff] [blame] | 966 | DBG("mpic: mapping as IPI\n"); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 967 | set_irq_chip_data(virq, mpic); |
| 968 | set_irq_chip_and_handler(virq, &mpic->hc_ipi, |
| 969 | handle_percpu_irq); |
| 970 | return 0; |
| 971 | } |
| 972 | #endif /* CONFIG_SMP */ |
| 973 | |
| 974 | if (hw >= mpic->irq_count) |
| 975 | return -EINVAL; |
| 976 | |
Michael Ellerman | a7de7c7 | 2007-05-08 12:58:36 +1000 | [diff] [blame] | 977 | mpic_msi_reserve_hwirq(mpic, hw); |
| 978 | |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 979 | /* Default chip */ |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 980 | chip = &mpic->hc_irq; |
| 981 | |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 982 | #ifdef CONFIG_MPIC_U3_HT_IRQS |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 983 | /* Check for HT interrupts, override vecpri */ |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 984 | if (mpic_is_ht_interrupt(mpic, hw)) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 985 | chip = &mpic->hc_ht_irq; |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 986 | #endif /* CONFIG_MPIC_U3_HT_IRQS */ |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 987 | |
Benjamin Herrenschmidt | 06fe98e | 2006-07-10 04:44:43 -0700 | [diff] [blame] | 988 | DBG("mpic: mapping to irq chip @%p\n", chip); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 989 | |
| 990 | set_irq_chip_data(virq, mpic); |
| 991 | set_irq_chip_and_handler(virq, chip, handle_fasteoi_irq); |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 992 | |
| 993 | /* Set default irq type */ |
| 994 | set_irq_type(virq, IRQ_TYPE_NONE); |
| 995 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 996 | return 0; |
| 997 | } |
| 998 | |
| 999 | static int mpic_host_xlate(struct irq_host *h, struct device_node *ct, |
Roman Fietze | 40d50cf | 2009-12-08 02:39:50 +0000 | [diff] [blame] | 1000 | const u32 *intspec, unsigned int intsize, |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1001 | irq_hw_number_t *out_hwirq, unsigned int *out_flags) |
| 1002 | |
| 1003 | { |
| 1004 | static unsigned char map_mpic_senses[4] = { |
| 1005 | IRQ_TYPE_EDGE_RISING, |
| 1006 | IRQ_TYPE_LEVEL_LOW, |
| 1007 | IRQ_TYPE_LEVEL_HIGH, |
| 1008 | IRQ_TYPE_EDGE_FALLING, |
| 1009 | }; |
| 1010 | |
| 1011 | *out_hwirq = intspec[0]; |
Benjamin Herrenschmidt | 06fe98e | 2006-07-10 04:44:43 -0700 | [diff] [blame] | 1012 | if (intsize > 1) { |
| 1013 | u32 mask = 0x3; |
| 1014 | |
| 1015 | /* Apple invented a new race of encoding on machines with |
| 1016 | * an HT APIC. They encode, among others, the index within |
| 1017 | * the HT APIC. We don't care about it here since thankfully, |
| 1018 | * it appears that they have the APIC already properly |
| 1019 | * configured, and thus our current fixup code that reads the |
| 1020 | * APIC config works fine. However, we still need to mask out |
| 1021 | * bits in the specifier to make sure we only get bit 0 which |
| 1022 | * is the level/edge bit (the only sense bit exposed by Apple), |
| 1023 | * as their bit 1 means something else. |
| 1024 | */ |
| 1025 | if (machine_is(powermac)) |
| 1026 | mask = 0x1; |
| 1027 | *out_flags = map_mpic_senses[intspec[1] & mask]; |
| 1028 | } else |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1029 | *out_flags = IRQ_TYPE_NONE; |
| 1030 | |
Benjamin Herrenschmidt | 06fe98e | 2006-07-10 04:44:43 -0700 | [diff] [blame] | 1031 | DBG("mpic: xlate (%d cells: 0x%08x 0x%08x) to line 0x%lx sense 0x%x\n", |
| 1032 | intsize, intspec[0], intspec[1], *out_hwirq, *out_flags); |
| 1033 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1034 | return 0; |
| 1035 | } |
| 1036 | |
| 1037 | static struct irq_host_ops mpic_host_ops = { |
| 1038 | .match = mpic_host_match, |
| 1039 | .map = mpic_host_map, |
| 1040 | .xlate = mpic_host_xlate, |
| 1041 | }; |
| 1042 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1043 | /* |
| 1044 | * Exported functions |
| 1045 | */ |
| 1046 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1047 | struct mpic * __init mpic_alloc(struct device_node *node, |
Benjamin Herrenschmidt | a959ff5 | 2006-11-11 17:24:56 +1100 | [diff] [blame] | 1048 | phys_addr_t phys_addr, |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1049 | unsigned int flags, |
| 1050 | unsigned int isu_size, |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1051 | unsigned int irq_count, |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1052 | const char *name) |
| 1053 | { |
| 1054 | struct mpic *mpic; |
Johannes Berg | d9d1063 | 2008-02-21 20:39:01 +1100 | [diff] [blame] | 1055 | u32 greg_feature; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1056 | const char *vers; |
| 1057 | int i; |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 1058 | int intvec_top; |
Benjamin Herrenschmidt | a959ff5 | 2006-11-11 17:24:56 +1100 | [diff] [blame] | 1059 | u64 paddr = phys_addr; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1060 | |
Kumar Gala | 85355bb | 2009-06-18 22:01:20 +0000 | [diff] [blame] | 1061 | mpic = kzalloc(sizeof(struct mpic), GFP_KERNEL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1062 | if (mpic == NULL) |
| 1063 | return NULL; |
Kumar Gala | 85355bb | 2009-06-18 22:01:20 +0000 | [diff] [blame] | 1064 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1065 | mpic->name = name; |
| 1066 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 1067 | mpic->hc_irq = mpic_irq_chip; |
Thomas Gleixner | b27df67 | 2009-11-18 23:44:21 +0000 | [diff] [blame] | 1068 | mpic->hc_irq.name = name; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1069 | if (flags & MPIC_PRIMARY) |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 1070 | mpic->hc_irq.irq_set_affinity = mpic_set_affinity; |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 1071 | #ifdef CONFIG_MPIC_U3_HT_IRQS |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 1072 | mpic->hc_ht_irq = mpic_irq_ht_chip; |
Thomas Gleixner | b27df67 | 2009-11-18 23:44:21 +0000 | [diff] [blame] | 1073 | mpic->hc_ht_irq.name = name; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 1074 | if (flags & MPIC_PRIMARY) |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 1075 | mpic->hc_ht_irq.irq_set_affinity = mpic_set_affinity; |
Michael Ellerman | 6cfef5b | 2007-04-23 18:47:08 +1000 | [diff] [blame] | 1076 | #endif /* CONFIG_MPIC_U3_HT_IRQS */ |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 1077 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1078 | #ifdef CONFIG_SMP |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 1079 | mpic->hc_ipi = mpic_ipi_chip; |
Thomas Gleixner | b27df67 | 2009-11-18 23:44:21 +0000 | [diff] [blame] | 1080 | mpic->hc_ipi.name = name; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1081 | #endif /* CONFIG_SMP */ |
| 1082 | |
| 1083 | mpic->flags = flags; |
| 1084 | mpic->isu_size = isu_size; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1085 | mpic->irq_count = irq_count; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1086 | mpic->num_sources = 0; /* so far */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1087 | |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 1088 | if (flags & MPIC_LARGE_VECTORS) |
| 1089 | intvec_top = 2047; |
| 1090 | else |
| 1091 | intvec_top = 255; |
| 1092 | |
| 1093 | mpic->timer_vecs[0] = intvec_top - 8; |
| 1094 | mpic->timer_vecs[1] = intvec_top - 7; |
| 1095 | mpic->timer_vecs[2] = intvec_top - 6; |
| 1096 | mpic->timer_vecs[3] = intvec_top - 5; |
| 1097 | mpic->ipi_vecs[0] = intvec_top - 4; |
| 1098 | mpic->ipi_vecs[1] = intvec_top - 3; |
| 1099 | mpic->ipi_vecs[2] = intvec_top - 2; |
| 1100 | mpic->ipi_vecs[3] = intvec_top - 1; |
| 1101 | mpic->spurious_vec = intvec_top; |
| 1102 | |
Benjamin Herrenschmidt | a959ff5 | 2006-11-11 17:24:56 +1100 | [diff] [blame] | 1103 | /* Check for "big-endian" in device-tree */ |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 1104 | if (node && of_get_property(node, "big-endian", NULL) != NULL) |
Benjamin Herrenschmidt | a959ff5 | 2006-11-11 17:24:56 +1100 | [diff] [blame] | 1105 | mpic->flags |= MPIC_BIG_ENDIAN; |
| 1106 | |
Benjamin Herrenschmidt | 7fd7218 | 2007-07-21 09:55:21 +1000 | [diff] [blame] | 1107 | /* Look for protected sources */ |
| 1108 | if (node) { |
Johannes Berg | d9d1063 | 2008-02-21 20:39:01 +1100 | [diff] [blame] | 1109 | int psize; |
| 1110 | unsigned int bits, mapsize; |
Benjamin Herrenschmidt | 7fd7218 | 2007-07-21 09:55:21 +1000 | [diff] [blame] | 1111 | const u32 *psrc = |
| 1112 | of_get_property(node, "protected-sources", &psize); |
| 1113 | if (psrc) { |
| 1114 | psize /= 4; |
| 1115 | bits = intvec_top + 1; |
| 1116 | mapsize = BITS_TO_LONGS(bits) * sizeof(unsigned long); |
Anton Vorontsov | ea96025 | 2009-07-01 10:59:57 +0000 | [diff] [blame] | 1117 | mpic->protected = kzalloc(mapsize, GFP_KERNEL); |
Benjamin Herrenschmidt | 7fd7218 | 2007-07-21 09:55:21 +1000 | [diff] [blame] | 1118 | BUG_ON(mpic->protected == NULL); |
Benjamin Herrenschmidt | 7fd7218 | 2007-07-21 09:55:21 +1000 | [diff] [blame] | 1119 | for (i = 0; i < psize; i++) { |
| 1120 | if (psrc[i] > intvec_top) |
| 1121 | continue; |
| 1122 | __set_bit(psrc[i], mpic->protected); |
| 1123 | } |
| 1124 | } |
| 1125 | } |
Benjamin Herrenschmidt | a959ff5 | 2006-11-11 17:24:56 +1100 | [diff] [blame] | 1126 | |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1127 | #ifdef CONFIG_MPIC_WEIRD |
| 1128 | mpic->hw_set = mpic_infos[MPIC_GET_REGSET(flags)]; |
| 1129 | #endif |
| 1130 | |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 1131 | /* default register type */ |
| 1132 | mpic->reg_type = (flags & MPIC_BIG_ENDIAN) ? |
| 1133 | mpic_access_mmio_be : mpic_access_mmio_le; |
| 1134 | |
Benjamin Herrenschmidt | a959ff5 | 2006-11-11 17:24:56 +1100 | [diff] [blame] | 1135 | /* If no physical address is passed in, a device-node is mandatory */ |
| 1136 | BUG_ON(paddr == 0 && node == NULL); |
| 1137 | |
| 1138 | /* If no physical address passed in, check if it's dcr based */ |
Michael Ellerman | 0411a5e | 2007-09-17 16:05:01 +1000 | [diff] [blame] | 1139 | if (paddr == 0 && of_get_property(node, "dcr-reg", NULL) != NULL) { |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 1140 | #ifdef CONFIG_PPC_DCR |
Michael Ellerman | 0411a5e | 2007-09-17 16:05:01 +1000 | [diff] [blame] | 1141 | mpic->flags |= MPIC_USES_DCR; |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 1142 | mpic->reg_type = mpic_access_dcr; |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 1143 | #else |
Michael Ellerman | 0411a5e | 2007-09-17 16:05:01 +1000 | [diff] [blame] | 1144 | BUG(); |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 1145 | #endif /* CONFIG_PPC_DCR */ |
Michael Ellerman | 0411a5e | 2007-09-17 16:05:01 +1000 | [diff] [blame] | 1146 | } |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 1147 | |
Benjamin Herrenschmidt | a959ff5 | 2006-11-11 17:24:56 +1100 | [diff] [blame] | 1148 | /* If the MPIC is not DCR based, and no physical address was passed |
| 1149 | * in, try to obtain one |
| 1150 | */ |
| 1151 | if (paddr == 0 && !(mpic->flags & MPIC_USES_DCR)) { |
Johannes Berg | d9d1063 | 2008-02-21 20:39:01 +1100 | [diff] [blame] | 1152 | const u32 *reg = of_get_property(node, "reg", NULL); |
Benjamin Herrenschmidt | a959ff5 | 2006-11-11 17:24:56 +1100 | [diff] [blame] | 1153 | BUG_ON(reg == NULL); |
| 1154 | paddr = of_translate_address(node, reg); |
| 1155 | BUG_ON(paddr == OF_BAD_ADDR); |
| 1156 | } |
| 1157 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1158 | /* Map the global registers */ |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 1159 | mpic_map(mpic, node, paddr, &mpic->gregs, MPIC_INFO(GREG_BASE), 0x1000); |
| 1160 | mpic_map(mpic, node, paddr, &mpic->tmregs, MPIC_INFO(TIMER_BASE), 0x1000); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1161 | |
| 1162 | /* Reset */ |
| 1163 | if (flags & MPIC_WANTS_RESET) { |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1164 | mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0), |
| 1165 | mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0)) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1166 | | MPIC_GREG_GCONF_RESET); |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1167 | while( mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0)) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1168 | & MPIC_GREG_GCONF_RESET) |
| 1169 | mb(); |
| 1170 | } |
| 1171 | |
Kumar Gala | d91e4ea | 2009-01-07 15:53:29 -0600 | [diff] [blame] | 1172 | /* CoreInt */ |
| 1173 | if (flags & MPIC_ENABLE_COREINT) |
| 1174 | mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0), |
| 1175 | mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0)) |
| 1176 | | MPIC_GREG_GCONF_COREINT); |
| 1177 | |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 1178 | if (flags & MPIC_ENABLE_MCK) |
| 1179 | mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0), |
| 1180 | mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0)) |
| 1181 | | MPIC_GREG_GCONF_MCK); |
| 1182 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1183 | /* Read feature register, calculate num CPUs and, for non-ISU |
| 1184 | * MPICs, num sources as well. On ISU MPICs, sources are counted |
| 1185 | * as ISUs are added |
| 1186 | */ |
Johannes Berg | d9d1063 | 2008-02-21 20:39:01 +1100 | [diff] [blame] | 1187 | greg_feature = mpic_read(mpic->gregs, MPIC_INFO(GREG_FEATURE_0)); |
| 1188 | mpic->num_cpus = ((greg_feature & MPIC_GREG_FEATURE_LAST_CPU_MASK) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1189 | >> MPIC_GREG_FEATURE_LAST_CPU_SHIFT) + 1; |
Anton Vorontsov | 5073e7e | 2008-05-24 04:40:00 +1000 | [diff] [blame] | 1190 | if (isu_size == 0) { |
Kumar Gala | 475ca39 | 2008-05-22 06:59:23 +1000 | [diff] [blame] | 1191 | if (flags & MPIC_BROKEN_FRR_NIRQS) |
| 1192 | mpic->num_sources = mpic->irq_count; |
| 1193 | else |
| 1194 | mpic->num_sources = |
| 1195 | ((greg_feature & MPIC_GREG_FEATURE_LAST_SRC_MASK) |
| 1196 | >> MPIC_GREG_FEATURE_LAST_SRC_SHIFT) + 1; |
Anton Vorontsov | 5073e7e | 2008-05-24 04:40:00 +1000 | [diff] [blame] | 1197 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1198 | |
| 1199 | /* Map the per-CPU registers */ |
| 1200 | for (i = 0; i < mpic->num_cpus; i++) { |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 1201 | mpic_map(mpic, node, paddr, &mpic->cpuregs[i], |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 1202 | MPIC_INFO(CPU_BASE) + i * MPIC_INFO(CPU_STRIDE), |
| 1203 | 0x1000); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1204 | } |
| 1205 | |
| 1206 | /* Initialize main ISU if none provided */ |
| 1207 | if (mpic->isu_size == 0) { |
| 1208 | mpic->isu_size = mpic->num_sources; |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 1209 | mpic_map(mpic, node, paddr, &mpic->isus[0], |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 1210 | MPIC_INFO(IRQ_BASE), MPIC_INFO(IRQ_STRIDE) * mpic->isu_size); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1211 | } |
| 1212 | mpic->isu_shift = 1 + __ilog2(mpic->isu_size - 1); |
| 1213 | mpic->isu_mask = (1 << mpic->isu_shift) - 1; |
| 1214 | |
Kumar Gala | 31207da | 2009-05-08 12:08:20 +0000 | [diff] [blame] | 1215 | mpic->irqhost = irq_alloc_host(node, IRQ_HOST_MAP_LINEAR, |
| 1216 | isu_size ? isu_size : mpic->num_sources, |
| 1217 | &mpic_host_ops, |
| 1218 | flags & MPIC_LARGE_VECTORS ? 2048 : 256); |
| 1219 | if (mpic->irqhost == NULL) |
| 1220 | return NULL; |
| 1221 | |
| 1222 | mpic->irqhost->host_data = mpic; |
| 1223 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1224 | /* Display version */ |
Johannes Berg | d9d1063 | 2008-02-21 20:39:01 +1100 | [diff] [blame] | 1225 | switch (greg_feature & MPIC_GREG_FEATURE_VERSION_MASK) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1226 | case 1: |
| 1227 | vers = "1.0"; |
| 1228 | break; |
| 1229 | case 2: |
| 1230 | vers = "1.2"; |
| 1231 | break; |
| 1232 | case 3: |
| 1233 | vers = "1.3"; |
| 1234 | break; |
| 1235 | default: |
| 1236 | vers = "<unknown>"; |
| 1237 | break; |
| 1238 | } |
Benjamin Herrenschmidt | a959ff5 | 2006-11-11 17:24:56 +1100 | [diff] [blame] | 1239 | printk(KERN_INFO "mpic: Setting up MPIC \"%s\" version %s at %llx," |
| 1240 | " max %d CPUs\n", |
| 1241 | name, vers, (unsigned long long)paddr, mpic->num_cpus); |
| 1242 | printk(KERN_INFO "mpic: ISU size: %d, shift: %d, mask: %x\n", |
| 1243 | mpic->isu_size, mpic->isu_shift, mpic->isu_mask); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1244 | |
| 1245 | mpic->next = mpics; |
| 1246 | mpics = mpic; |
| 1247 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1248 | if (flags & MPIC_PRIMARY) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1249 | mpic_primary = mpic; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1250 | irq_set_default_host(mpic->irqhost); |
| 1251 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1252 | |
| 1253 | return mpic; |
| 1254 | } |
| 1255 | |
| 1256 | void __init mpic_assign_isu(struct mpic *mpic, unsigned int isu_num, |
Benjamin Herrenschmidt | a959ff5 | 2006-11-11 17:24:56 +1100 | [diff] [blame] | 1257 | phys_addr_t paddr) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1258 | { |
| 1259 | unsigned int isu_first = isu_num * mpic->isu_size; |
| 1260 | |
| 1261 | BUG_ON(isu_num >= MPIC_MAX_ISU); |
| 1262 | |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 1263 | mpic_map(mpic, mpic->irqhost->of_node, |
| 1264 | paddr, &mpic->isus[isu_num], 0, |
Benjamin Herrenschmidt | fbf0274 | 2006-11-11 17:24:55 +1100 | [diff] [blame] | 1265 | MPIC_INFO(IRQ_STRIDE) * mpic->isu_size); |
Benjamin Herrenschmidt | 5a2642f | 2009-06-22 16:47:59 +0000 | [diff] [blame] | 1266 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1267 | if ((isu_first + mpic->isu_size) > mpic->num_sources) |
| 1268 | mpic->num_sources = isu_first + mpic->isu_size; |
| 1269 | } |
| 1270 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1271 | void __init mpic_set_default_senses(struct mpic *mpic, u8 *senses, int count) |
| 1272 | { |
| 1273 | mpic->senses = senses; |
| 1274 | mpic->senses_count = count; |
| 1275 | } |
| 1276 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1277 | void __init mpic_init(struct mpic *mpic) |
| 1278 | { |
| 1279 | int i; |
Arnd Bergmann | cc353c3 | 2008-11-28 09:51:23 +0000 | [diff] [blame] | 1280 | int cpu; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1281 | |
| 1282 | BUG_ON(mpic->num_sources == 0); |
| 1283 | |
| 1284 | printk(KERN_INFO "mpic: Initializing for %d sources\n", mpic->num_sources); |
| 1285 | |
| 1286 | /* Set current processor priority to max */ |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1287 | mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1288 | |
| 1289 | /* Initialize timers: just disable them all */ |
| 1290 | for (i = 0; i < 4; i++) { |
| 1291 | mpic_write(mpic->tmregs, |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1292 | i * MPIC_INFO(TIMER_STRIDE) + |
| 1293 | MPIC_INFO(TIMER_DESTINATION), 0); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1294 | mpic_write(mpic->tmregs, |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1295 | i * MPIC_INFO(TIMER_STRIDE) + |
| 1296 | MPIC_INFO(TIMER_VECTOR_PRI), |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1297 | MPIC_VECPRI_MASK | |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 1298 | (mpic->timer_vecs[0] + i)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1299 | } |
| 1300 | |
| 1301 | /* Initialize IPIs to our reserved vectors and mark them disabled for now */ |
| 1302 | mpic_test_broken_ipi(mpic); |
| 1303 | for (i = 0; i < 4; i++) { |
| 1304 | mpic_ipi_write(i, |
| 1305 | MPIC_VECPRI_MASK | |
| 1306 | (10 << MPIC_VECPRI_PRIORITY_SHIFT) | |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 1307 | (mpic->ipi_vecs[0] + i)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1308 | } |
| 1309 | |
| 1310 | /* Initialize interrupt sources */ |
| 1311 | if (mpic->irq_count == 0) |
| 1312 | mpic->irq_count = mpic->num_sources; |
| 1313 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 1314 | /* Do the HT PIC fixups on U3 broken mpic */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1315 | DBG("MPIC flags: %x\n", mpic->flags); |
Michael Ellerman | 05af7bd | 2007-05-08 12:58:37 +1000 | [diff] [blame] | 1316 | if ((mpic->flags & MPIC_U3_HT_IRQS) && (mpic->flags & MPIC_PRIMARY)) { |
Johannes Berg | 3669e93 | 2007-05-02 16:33:41 +1000 | [diff] [blame] | 1317 | mpic_scan_ht_pics(mpic); |
Michael Ellerman | 05af7bd | 2007-05-08 12:58:37 +1000 | [diff] [blame] | 1318 | mpic_u3msi_init(mpic); |
| 1319 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1320 | |
Olof Johansson | 38958dd | 2007-12-12 17:44:46 +1100 | [diff] [blame] | 1321 | mpic_pasemi_msi_init(mpic); |
| 1322 | |
Arnd Bergmann | cc353c3 | 2008-11-28 09:51:23 +0000 | [diff] [blame] | 1323 | if (mpic->flags & MPIC_PRIMARY) |
| 1324 | cpu = hard_smp_processor_id(); |
| 1325 | else |
| 1326 | cpu = 0; |
| 1327 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1328 | for (i = 0; i < mpic->num_sources; i++) { |
| 1329 | /* start with vector = source number, and masked */ |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 1330 | u32 vecpri = MPIC_VECPRI_MASK | i | |
| 1331 | (8 << MPIC_VECPRI_PRIORITY_SHIFT); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1332 | |
Benjamin Herrenschmidt | 7fd7218 | 2007-07-21 09:55:21 +1000 | [diff] [blame] | 1333 | /* check if protected */ |
| 1334 | if (mpic->protected && test_bit(i, mpic->protected)) |
| 1335 | continue; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1336 | /* init hw */ |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1337 | mpic_irq_write(i, MPIC_INFO(IRQ_VECTOR_PRI), vecpri); |
Arnd Bergmann | cc353c3 | 2008-11-28 09:51:23 +0000 | [diff] [blame] | 1338 | mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION), 1 << cpu); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1339 | } |
| 1340 | |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 1341 | /* Init spurious vector */ |
| 1342 | mpic_write(mpic->gregs, MPIC_INFO(GREG_SPURIOUS), mpic->spurious_vec); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1343 | |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1344 | /* Disable 8259 passthrough, if supported */ |
| 1345 | if (!(mpic->flags & MPIC_NO_PTHROU_DIS)) |
| 1346 | mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0), |
| 1347 | mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0)) |
| 1348 | | MPIC_GREG_GCONF_8259_PTHROU_DIS); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1349 | |
Olof Johansson | d87bf3b | 2007-12-27 22:16:29 -0600 | [diff] [blame] | 1350 | if (mpic->flags & MPIC_NO_BIAS) |
| 1351 | mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0), |
| 1352 | mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0)) |
| 1353 | | MPIC_GREG_GCONF_NO_BIAS); |
| 1354 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1355 | /* Set current processor priority to 0 */ |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1356 | mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0); |
Johannes Berg | 3669e93 | 2007-05-02 16:33:41 +1000 | [diff] [blame] | 1357 | |
| 1358 | #ifdef CONFIG_PM |
| 1359 | /* allocate memory to save mpic state */ |
Anton Vorontsov | ea96025 | 2009-07-01 10:59:57 +0000 | [diff] [blame] | 1360 | mpic->save_data = kmalloc(mpic->num_sources * sizeof(*mpic->save_data), |
| 1361 | GFP_KERNEL); |
Johannes Berg | 3669e93 | 2007-05-02 16:33:41 +1000 | [diff] [blame] | 1362 | BUG_ON(mpic->save_data == NULL); |
| 1363 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1364 | } |
| 1365 | |
Mark A. Greer | 868ea0c | 2006-06-20 14:15:36 -0700 | [diff] [blame] | 1366 | void __init mpic_set_clk_ratio(struct mpic *mpic, u32 clock_ratio) |
| 1367 | { |
| 1368 | u32 v; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1369 | |
Mark A. Greer | 868ea0c | 2006-06-20 14:15:36 -0700 | [diff] [blame] | 1370 | v = mpic_read(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1); |
| 1371 | v &= ~MPIC_GREG_GLOBAL_CONF_1_CLK_RATIO_MASK; |
| 1372 | v |= MPIC_GREG_GLOBAL_CONF_1_CLK_RATIO(clock_ratio); |
| 1373 | mpic_write(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1, v); |
| 1374 | } |
| 1375 | |
| 1376 | void __init mpic_set_serial_int(struct mpic *mpic, int enable) |
| 1377 | { |
Benjamin Herrenschmidt | ba1826e | 2006-07-05 15:36:15 +1000 | [diff] [blame] | 1378 | unsigned long flags; |
Mark A. Greer | 868ea0c | 2006-06-20 14:15:36 -0700 | [diff] [blame] | 1379 | u32 v; |
| 1380 | |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 1381 | raw_spin_lock_irqsave(&mpic_lock, flags); |
Mark A. Greer | 868ea0c | 2006-06-20 14:15:36 -0700 | [diff] [blame] | 1382 | v = mpic_read(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1); |
| 1383 | if (enable) |
| 1384 | v |= MPIC_GREG_GLOBAL_CONF_1_SIE; |
| 1385 | else |
| 1386 | v &= ~MPIC_GREG_GLOBAL_CONF_1_SIE; |
| 1387 | mpic_write(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1, v); |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 1388 | raw_spin_unlock_irqrestore(&mpic_lock, flags); |
Mark A. Greer | 868ea0c | 2006-06-20 14:15:36 -0700 | [diff] [blame] | 1389 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1390 | |
| 1391 | void mpic_irq_set_priority(unsigned int irq, unsigned int pri) |
| 1392 | { |
Tony Breeds | d69a78d | 2009-04-07 18:26:54 +0000 | [diff] [blame] | 1393 | struct mpic *mpic = mpic_find(irq); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1394 | unsigned int src = mpic_irq_to_hw(irq); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1395 | unsigned long flags; |
| 1396 | u32 reg; |
| 1397 | |
Stephen Rothwell | 06a901c | 2008-05-21 16:24:31 +1000 | [diff] [blame] | 1398 | if (!mpic) |
| 1399 | return; |
| 1400 | |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 1401 | raw_spin_lock_irqsave(&mpic_lock, flags); |
Tony Breeds | d69a78d | 2009-04-07 18:26:54 +0000 | [diff] [blame] | 1402 | if (mpic_is_ipi(mpic, irq)) { |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 1403 | reg = mpic_ipi_read(src - mpic->ipi_vecs[0]) & |
Benjamin Herrenschmidt | e535664 | 2005-11-18 17:18:15 +1100 | [diff] [blame] | 1404 | ~MPIC_VECPRI_PRIORITY_MASK; |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 1405 | mpic_ipi_write(src - mpic->ipi_vecs[0], |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1406 | reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT)); |
| 1407 | } else { |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1408 | reg = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) |
Benjamin Herrenschmidt | e535664 | 2005-11-18 17:18:15 +1100 | [diff] [blame] | 1409 | & ~MPIC_VECPRI_PRIORITY_MASK; |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1410 | mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1411 | reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT)); |
| 1412 | } |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 1413 | raw_spin_unlock_irqrestore(&mpic_lock, flags); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1414 | } |
| 1415 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1416 | void mpic_setup_this_cpu(void) |
| 1417 | { |
| 1418 | #ifdef CONFIG_SMP |
| 1419 | struct mpic *mpic = mpic_primary; |
| 1420 | unsigned long flags; |
| 1421 | u32 msk = 1 << hard_smp_processor_id(); |
| 1422 | unsigned int i; |
| 1423 | |
| 1424 | BUG_ON(mpic == NULL); |
| 1425 | |
| 1426 | DBG("%s: setup_this_cpu(%d)\n", mpic->name, hard_smp_processor_id()); |
| 1427 | |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 1428 | raw_spin_lock_irqsave(&mpic_lock, flags); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1429 | |
| 1430 | /* let the mpic know we want intrs. default affinity is 0xffffffff |
| 1431 | * until changed via /proc. That's how it's done on x86. If we want |
| 1432 | * it differently, then we should make sure we also change the default |
Ingo Molnar | a53da52 | 2006-06-29 02:24:38 -0700 | [diff] [blame] | 1433 | * values of irq_desc[].affinity in irq.c. |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1434 | */ |
| 1435 | if (distribute_irqs) { |
| 1436 | for (i = 0; i < mpic->num_sources ; i++) |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1437 | mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION), |
| 1438 | mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) | msk); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1439 | } |
| 1440 | |
| 1441 | /* Set current processor priority to 0 */ |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1442 | mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1443 | |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 1444 | raw_spin_unlock_irqrestore(&mpic_lock, flags); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1445 | #endif /* CONFIG_SMP */ |
| 1446 | } |
| 1447 | |
| 1448 | int mpic_cpu_get_priority(void) |
| 1449 | { |
| 1450 | struct mpic *mpic = mpic_primary; |
| 1451 | |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1452 | return mpic_cpu_read(MPIC_INFO(CPU_CURRENT_TASK_PRI)); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1453 | } |
| 1454 | |
| 1455 | void mpic_cpu_set_priority(int prio) |
| 1456 | { |
| 1457 | struct mpic *mpic = mpic_primary; |
| 1458 | |
| 1459 | prio &= MPIC_CPU_TASKPRI_MASK; |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1460 | mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), prio); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1461 | } |
| 1462 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1463 | void mpic_teardown_this_cpu(int secondary) |
| 1464 | { |
| 1465 | struct mpic *mpic = mpic_primary; |
| 1466 | unsigned long flags; |
| 1467 | u32 msk = 1 << hard_smp_processor_id(); |
| 1468 | unsigned int i; |
| 1469 | |
| 1470 | BUG_ON(mpic == NULL); |
| 1471 | |
| 1472 | DBG("%s: teardown_this_cpu(%d)\n", mpic->name, hard_smp_processor_id()); |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 1473 | raw_spin_lock_irqsave(&mpic_lock, flags); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1474 | |
| 1475 | /* let the mpic know we don't want intrs. */ |
| 1476 | for (i = 0; i < mpic->num_sources ; i++) |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1477 | mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION), |
| 1478 | mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) & ~msk); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1479 | |
| 1480 | /* Set current processor priority to max */ |
Zang Roy-r61911 | 7233593 | 2006-08-25 14:16:30 +1000 | [diff] [blame] | 1481 | mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf); |
Valentine Barshak | 7132799 | 2008-04-03 23:09:43 +0400 | [diff] [blame] | 1482 | /* We need to EOI the IPI since not all platforms reset the MPIC |
| 1483 | * on boot and new interrupts wouldn't get delivered otherwise. |
| 1484 | */ |
| 1485 | mpic_eoi(mpic); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1486 | |
Thomas Gleixner | 203041a | 2010-02-18 02:23:18 +0000 | [diff] [blame] | 1487 | raw_spin_unlock_irqrestore(&mpic_lock, flags); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1488 | } |
| 1489 | |
| 1490 | |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 1491 | static unsigned int _mpic_get_one_irq(struct mpic *mpic, int reg) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1492 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1493 | u32 src; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1494 | |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 1495 | src = mpic_cpu_read(reg) & MPIC_INFO(VECPRI_VECTOR_MASK); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 1496 | #ifdef DEBUG_LOW |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 1497 | DBG("%s: get_one_irq(reg 0x%x): %d\n", mpic->name, reg, src); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 1498 | #endif |
Josh Boyer | 5cddd2e | 2007-05-01 06:38:11 +1000 | [diff] [blame] | 1499 | if (unlikely(src == mpic->spurious_vec)) { |
| 1500 | if (mpic->flags & MPIC_SPV_EOI) |
| 1501 | mpic_eoi(mpic); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1502 | return NO_IRQ; |
Josh Boyer | 5cddd2e | 2007-05-01 06:38:11 +1000 | [diff] [blame] | 1503 | } |
Benjamin Herrenschmidt | 7fd7218 | 2007-07-21 09:55:21 +1000 | [diff] [blame] | 1504 | if (unlikely(mpic->protected && test_bit(src, mpic->protected))) { |
| 1505 | if (printk_ratelimit()) |
| 1506 | printk(KERN_WARNING "%s: Got protected source %d !\n", |
| 1507 | mpic->name, (int)src); |
| 1508 | mpic_eoi(mpic); |
| 1509 | return NO_IRQ; |
| 1510 | } |
| 1511 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1512 | return irq_linear_revmap(mpic->irqhost, src); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1513 | } |
| 1514 | |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 1515 | unsigned int mpic_get_one_irq(struct mpic *mpic) |
| 1516 | { |
| 1517 | return _mpic_get_one_irq(mpic, MPIC_INFO(CPU_INTACK)); |
| 1518 | } |
| 1519 | |
Olaf Hering | 35a84c2 | 2006-10-07 22:08:26 +1000 | [diff] [blame] | 1520 | unsigned int mpic_get_irq(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1521 | { |
| 1522 | struct mpic *mpic = mpic_primary; |
| 1523 | |
| 1524 | BUG_ON(mpic == NULL); |
| 1525 | |
Olaf Hering | 35a84c2 | 2006-10-07 22:08:26 +1000 | [diff] [blame] | 1526 | return mpic_get_one_irq(mpic); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1527 | } |
| 1528 | |
Kumar Gala | d91e4ea | 2009-01-07 15:53:29 -0600 | [diff] [blame] | 1529 | unsigned int mpic_get_coreint_irq(void) |
| 1530 | { |
| 1531 | #ifdef CONFIG_BOOKE |
| 1532 | struct mpic *mpic = mpic_primary; |
| 1533 | u32 src; |
| 1534 | |
| 1535 | BUG_ON(mpic == NULL); |
| 1536 | |
| 1537 | src = mfspr(SPRN_EPR); |
| 1538 | |
| 1539 | if (unlikely(src == mpic->spurious_vec)) { |
| 1540 | if (mpic->flags & MPIC_SPV_EOI) |
| 1541 | mpic_eoi(mpic); |
| 1542 | return NO_IRQ; |
| 1543 | } |
| 1544 | if (unlikely(mpic->protected && test_bit(src, mpic->protected))) { |
| 1545 | if (printk_ratelimit()) |
| 1546 | printk(KERN_WARNING "%s: Got protected source %d !\n", |
| 1547 | mpic->name, (int)src); |
| 1548 | return NO_IRQ; |
| 1549 | } |
| 1550 | |
| 1551 | return irq_linear_revmap(mpic->irqhost, src); |
| 1552 | #else |
| 1553 | return NO_IRQ; |
| 1554 | #endif |
| 1555 | } |
| 1556 | |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 1557 | unsigned int mpic_get_mcirq(void) |
| 1558 | { |
| 1559 | struct mpic *mpic = mpic_primary; |
| 1560 | |
| 1561 | BUG_ON(mpic == NULL); |
| 1562 | |
| 1563 | return _mpic_get_one_irq(mpic, MPIC_INFO(CPU_MCACK)); |
| 1564 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1565 | |
| 1566 | #ifdef CONFIG_SMP |
| 1567 | void mpic_request_ipis(void) |
| 1568 | { |
| 1569 | struct mpic *mpic = mpic_primary; |
Milton Miller | 78608dd | 2008-10-10 01:56:50 +0000 | [diff] [blame] | 1570 | int i; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1571 | BUG_ON(mpic == NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1572 | |
Frans Pop | 8354be9 | 2010-02-06 07:47:20 +0000 | [diff] [blame] | 1573 | printk(KERN_INFO "mpic: requesting IPIs...\n"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1574 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1575 | for (i = 0; i < 4; i++) { |
| 1576 | unsigned int vipi = irq_create_mapping(mpic->irqhost, |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 1577 | mpic->ipi_vecs[0] + i); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1578 | if (vipi == NO_IRQ) { |
Milton Miller | 78608dd | 2008-10-10 01:56:50 +0000 | [diff] [blame] | 1579 | printk(KERN_ERR "Failed to map %s\n", smp_ipi_name[i]); |
| 1580 | continue; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1581 | } |
Milton Miller | 78608dd | 2008-10-10 01:56:50 +0000 | [diff] [blame] | 1582 | smp_request_message_ipi(vipi, i); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 1583 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1584 | } |
Paul Mackerras | a9c5926 | 2005-10-20 17:09:51 +1000 | [diff] [blame] | 1585 | |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 1586 | static void mpic_send_ipi(unsigned int ipi_no, const struct cpumask *cpu_mask) |
| 1587 | { |
| 1588 | struct mpic *mpic = mpic_primary; |
| 1589 | |
| 1590 | BUG_ON(mpic == NULL); |
| 1591 | |
| 1592 | #ifdef DEBUG_IPI |
| 1593 | DBG("%s: send_ipi(ipi_no: %d)\n", mpic->name, ipi_no); |
| 1594 | #endif |
| 1595 | |
| 1596 | mpic_cpu_write(MPIC_INFO(CPU_IPI_DISPATCH_0) + |
| 1597 | ipi_no * MPIC_INFO(CPU_IPI_DISPATCH_STRIDE), |
| 1598 | mpic_physmask(cpumask_bits(cpu_mask)[0])); |
| 1599 | } |
| 1600 | |
Paul Mackerras | a9c5926 | 2005-10-20 17:09:51 +1000 | [diff] [blame] | 1601 | void smp_mpic_message_pass(int target, int msg) |
| 1602 | { |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 1603 | cpumask_var_t tmp; |
| 1604 | |
Paul Mackerras | a9c5926 | 2005-10-20 17:09:51 +1000 | [diff] [blame] | 1605 | /* make sure we're sending something that translates to an IPI */ |
| 1606 | if ((unsigned int)msg > 3) { |
| 1607 | printk("SMP %d: smp_message_pass: unknown msg %d\n", |
| 1608 | smp_processor_id(), msg); |
| 1609 | return; |
| 1610 | } |
| 1611 | switch (target) { |
| 1612 | case MSG_ALL: |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 1613 | mpic_send_ipi(msg, cpu_online_mask); |
Paul Mackerras | a9c5926 | 2005-10-20 17:09:51 +1000 | [diff] [blame] | 1614 | break; |
| 1615 | case MSG_ALL_BUT_SELF: |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 1616 | alloc_cpumask_var(&tmp, GFP_NOWAIT); |
| 1617 | cpumask_andnot(tmp, cpu_online_mask, |
| 1618 | cpumask_of(smp_processor_id())); |
| 1619 | mpic_send_ipi(msg, tmp); |
| 1620 | free_cpumask_var(tmp); |
Paul Mackerras | a9c5926 | 2005-10-20 17:09:51 +1000 | [diff] [blame] | 1621 | break; |
| 1622 | default: |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 1623 | mpic_send_ipi(msg, cpumask_of(target)); |
Paul Mackerras | a9c5926 | 2005-10-20 17:09:51 +1000 | [diff] [blame] | 1624 | break; |
| 1625 | } |
| 1626 | } |
Michael Ellerman | 775aeff | 2007-02-08 18:34:04 +1100 | [diff] [blame] | 1627 | |
| 1628 | int __init smp_mpic_probe(void) |
| 1629 | { |
| 1630 | int nr_cpus; |
| 1631 | |
| 1632 | DBG("smp_mpic_probe()...\n"); |
| 1633 | |
Benjamin Herrenschmidt | 2ef613cb | 2010-05-06 18:01:46 +1000 | [diff] [blame] | 1634 | nr_cpus = cpumask_weight(cpu_possible_mask); |
Michael Ellerman | 775aeff | 2007-02-08 18:34:04 +1100 | [diff] [blame] | 1635 | |
| 1636 | DBG("nr_cpus: %d\n", nr_cpus); |
| 1637 | |
| 1638 | if (nr_cpus > 1) |
| 1639 | mpic_request_ipis(); |
| 1640 | |
| 1641 | return nr_cpus; |
| 1642 | } |
| 1643 | |
| 1644 | void __devinit smp_mpic_setup_cpu(int cpu) |
| 1645 | { |
| 1646 | mpic_setup_this_cpu(); |
| 1647 | } |
Matthew McClintock | 66953eb | 2010-06-29 09:42:26 +0000 | [diff] [blame] | 1648 | |
| 1649 | void mpic_reset_core(int cpu) |
| 1650 | { |
| 1651 | struct mpic *mpic = mpic_primary; |
| 1652 | u32 pir; |
| 1653 | int cpuid = get_hard_smp_processor_id(cpu); |
| 1654 | |
| 1655 | /* Set target bit for core reset */ |
| 1656 | pir = mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT)); |
| 1657 | pir |= (1 << cpuid); |
| 1658 | mpic_write(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT), pir); |
| 1659 | mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT)); |
| 1660 | |
| 1661 | /* Restore target bit after reset complete */ |
| 1662 | pir &= ~(1 << cpuid); |
| 1663 | mpic_write(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT), pir); |
| 1664 | mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT)); |
| 1665 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1666 | #endif /* CONFIG_SMP */ |
Johannes Berg | 3669e93 | 2007-05-02 16:33:41 +1000 | [diff] [blame] | 1667 | |
| 1668 | #ifdef CONFIG_PM |
| 1669 | static int mpic_suspend(struct sys_device *dev, pm_message_t state) |
| 1670 | { |
| 1671 | struct mpic *mpic = container_of(dev, struct mpic, sysdev); |
| 1672 | int i; |
| 1673 | |
| 1674 | for (i = 0; i < mpic->num_sources; i++) { |
| 1675 | mpic->save_data[i].vecprio = |
| 1676 | mpic_irq_read(i, MPIC_INFO(IRQ_VECTOR_PRI)); |
| 1677 | mpic->save_data[i].dest = |
| 1678 | mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)); |
| 1679 | } |
| 1680 | |
| 1681 | return 0; |
| 1682 | } |
| 1683 | |
| 1684 | static int mpic_resume(struct sys_device *dev) |
| 1685 | { |
| 1686 | struct mpic *mpic = container_of(dev, struct mpic, sysdev); |
| 1687 | int i; |
| 1688 | |
| 1689 | for (i = 0; i < mpic->num_sources; i++) { |
| 1690 | mpic_irq_write(i, MPIC_INFO(IRQ_VECTOR_PRI), |
| 1691 | mpic->save_data[i].vecprio); |
| 1692 | mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION), |
| 1693 | mpic->save_data[i].dest); |
| 1694 | |
| 1695 | #ifdef CONFIG_MPIC_U3_HT_IRQS |
Alastair Bridgewater | 7c9d936 | 2010-06-12 15:36:48 +0000 | [diff] [blame] | 1696 | if (mpic->fixups) { |
Johannes Berg | 3669e93 | 2007-05-02 16:33:41 +1000 | [diff] [blame] | 1697 | struct mpic_irq_fixup *fixup = &mpic->fixups[i]; |
| 1698 | |
| 1699 | if (fixup->base) { |
| 1700 | /* we use the lowest bit in an inverted meaning */ |
| 1701 | if ((mpic->save_data[i].fixup_data & 1) == 0) |
| 1702 | continue; |
| 1703 | |
| 1704 | /* Enable and configure */ |
| 1705 | writeb(0x10 + 2 * fixup->index, fixup->base + 2); |
| 1706 | |
| 1707 | writel(mpic->save_data[i].fixup_data & ~1, |
| 1708 | fixup->base + 4); |
| 1709 | } |
| 1710 | } |
| 1711 | #endif |
| 1712 | } /* end for loop */ |
| 1713 | |
| 1714 | return 0; |
| 1715 | } |
| 1716 | #endif |
| 1717 | |
| 1718 | static struct sysdev_class mpic_sysclass = { |
| 1719 | #ifdef CONFIG_PM |
| 1720 | .resume = mpic_resume, |
| 1721 | .suspend = mpic_suspend, |
| 1722 | #endif |
Kay Sievers | af5ca3f | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 1723 | .name = "mpic", |
Johannes Berg | 3669e93 | 2007-05-02 16:33:41 +1000 | [diff] [blame] | 1724 | }; |
| 1725 | |
| 1726 | static int mpic_init_sys(void) |
| 1727 | { |
| 1728 | struct mpic *mpic = mpics; |
| 1729 | int error, id = 0; |
| 1730 | |
| 1731 | error = sysdev_class_register(&mpic_sysclass); |
| 1732 | |
| 1733 | while (mpic && !error) { |
| 1734 | mpic->sysdev.cls = &mpic_sysclass; |
| 1735 | mpic->sysdev.id = id++; |
| 1736 | error = sysdev_register(&mpic->sysdev); |
| 1737 | mpic = mpic->next; |
| 1738 | } |
| 1739 | return error; |
| 1740 | } |
| 1741 | |
| 1742 | device_initcall(mpic_init_sys); |