David Gibson | 007e8f5 | 2005-10-28 15:35:50 +1000 | [diff] [blame] | 1 | /* |
| 2 | * arch/powerpc/platforms/pseries/xics.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright 2000 IBM Corporation. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | */ |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/types.h> |
| 13 | #include <linux/threads.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/irq.h> |
| 16 | #include <linux/smp.h> |
| 17 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/radix-tree.h> |
| 20 | #include <linux/cpu.h> |
Andre Detsch | 8435b02 | 2009-11-04 13:03:19 -0200 | [diff] [blame] | 21 | #include <linux/msi.h> |
Milton Miller | 188bddd | 2008-10-10 01:56:33 +0000 | [diff] [blame] | 22 | #include <linux/of.h> |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 23 | #include <linux/percpu.h> |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 24 | |
Michael Ellerman | 57cfb81 | 2006-03-21 20:45:59 +1100 | [diff] [blame] | 25 | #include <asm/firmware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/io.h> |
| 27 | #include <asm/pgtable.h> |
| 28 | #include <asm/smp.h> |
| 29 | #include <asm/rtas.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/hvcall.h> |
| 31 | #include <asm/machdep.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
David Gibson | 007e8f5 | 2005-10-28 15:35:50 +1000 | [diff] [blame] | 33 | #include "xics.h" |
Anton Blanchard | b9377ff | 2006-07-19 08:01:28 +1000 | [diff] [blame] | 34 | #include "plpar_wrappers.h" |
David Gibson | 007e8f5 | 2005-10-28 15:35:50 +1000 | [diff] [blame] | 35 | |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 36 | static struct irq_host *xics_host; |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #define XICS_IPI 2 |
| 39 | #define XICS_IRQ_SPURIOUS 0 |
| 40 | |
| 41 | /* Want a priority other than 0. Various HW issues require this. */ |
| 42 | #define DEFAULT_PRIORITY 5 |
| 43 | |
David Gibson | 007e8f5 | 2005-10-28 15:35:50 +1000 | [diff] [blame] | 44 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | * Mark IPIs as higher priority so we can take them inside interrupts that |
Thomas Gleixner | 6714465 | 2006-07-01 19:29:22 -0700 | [diff] [blame] | 46 | * arent marked IRQF_DISABLED |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | */ |
| 48 | #define IPI_PRIORITY 4 |
| 49 | |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 50 | /* The least favored priority */ |
| 51 | #define LOWEST_PRIORITY 0xFF |
| 52 | |
| 53 | /* The number of priorities defined above */ |
| 54 | #define MAX_NUM_PRIORITIES 3 |
| 55 | |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 56 | static unsigned int default_server = 0xFF; |
| 57 | static unsigned int default_distrib_server = 0; |
| 58 | static unsigned int interrupt_server_size = 8; |
| 59 | |
| 60 | /* RTAS service tokens */ |
| 61 | static int ibm_get_xive; |
| 62 | static int ibm_set_xive; |
| 63 | static int ibm_int_on; |
| 64 | static int ibm_int_off; |
| 65 | |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 66 | struct xics_cppr { |
| 67 | unsigned char stack[MAX_NUM_PRIORITIES]; |
| 68 | int index; |
| 69 | }; |
| 70 | |
| 71 | static DEFINE_PER_CPU(struct xics_cppr, xics_cppr); |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 72 | |
| 73 | /* Direct hardware low level accessors */ |
| 74 | |
| 75 | /* The part of the interrupt presentation layer that we care about */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | struct xics_ipl { |
| 77 | union { |
| 78 | u32 word; |
| 79 | u8 bytes[4]; |
| 80 | } xirr_poll; |
| 81 | union { |
| 82 | u32 word; |
| 83 | u8 bytes[4]; |
| 84 | } xirr; |
| 85 | u32 dummy; |
| 86 | union { |
| 87 | u32 word; |
| 88 | u8 bytes[4]; |
| 89 | } qirr; |
| 90 | }; |
| 91 | |
| 92 | static struct xics_ipl __iomem *xics_per_cpu[NR_CPUS]; |
| 93 | |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 94 | static inline unsigned int direct_xirr_info_get(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 96 | int cpu = smp_processor_id(); |
| 97 | |
| 98 | return in_be32(&xics_per_cpu[cpu]->xirr.word); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Milton Miller | 9dc2d44 | 2008-10-10 01:56:32 +0000 | [diff] [blame] | 101 | static inline void direct_xirr_info_set(unsigned int value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 103 | int cpu = smp_processor_id(); |
| 104 | |
| 105 | out_be32(&xics_per_cpu[cpu]->xirr.word, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } |
| 107 | |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 108 | static inline void direct_cppr_info(u8 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 110 | int cpu = smp_processor_id(); |
| 111 | |
| 112 | out_8(&xics_per_cpu[cpu]->xirr.bytes[0], value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 115 | static inline void direct_qirr_info(int n_cpu, u8 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { |
| 117 | out_8(&xics_per_cpu[n_cpu]->qirr.bytes[0], value); |
| 118 | } |
| 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 121 | /* LPAR low level accessors */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Mark Nelson | f09b7b2 | 2010-01-31 20:12:58 +0000 | [diff] [blame] | 123 | static inline unsigned int lpar_xirr_info_get(unsigned char cppr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
| 125 | unsigned long lpar_rc; |
David Gibson | 007e8f5 | 2005-10-28 15:35:50 +1000 | [diff] [blame] | 126 | unsigned long return_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Mark Nelson | f09b7b2 | 2010-01-31 20:12:58 +0000 | [diff] [blame] | 128 | lpar_rc = plpar_xirr(&return_value, cppr); |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 129 | if (lpar_rc != H_SUCCESS) |
Frans Pop | 8354be9 | 2010-02-06 07:47:20 +0000 | [diff] [blame] | 130 | panic(" bad return code xirr - rc = %lx\n", lpar_rc); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 131 | return (unsigned int)return_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Milton Miller | 9dc2d44 | 2008-10-10 01:56:32 +0000 | [diff] [blame] | 134 | static inline void lpar_xirr_info_set(unsigned int value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | { |
| 136 | unsigned long lpar_rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Milton Miller | 9dc2d44 | 2008-10-10 01:56:32 +0000 | [diff] [blame] | 138 | lpar_rc = plpar_eoi(value); |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 139 | if (lpar_rc != H_SUCCESS) |
Milton Miller | 9dc2d44 | 2008-10-10 01:56:32 +0000 | [diff] [blame] | 140 | panic("bad return code EOI - rc = %ld, value=%x\n", lpar_rc, |
| 141 | value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 144 | static inline void lpar_cppr_info(u8 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { |
| 146 | unsigned long lpar_rc; |
| 147 | |
| 148 | lpar_rc = plpar_cppr(value); |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 149 | if (lpar_rc != H_SUCCESS) |
David Gibson | 007e8f5 | 2005-10-28 15:35:50 +1000 | [diff] [blame] | 150 | panic("bad return code cppr - rc = %lx\n", lpar_rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 153 | static inline void lpar_qirr_info(int n_cpu , u8 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
| 155 | unsigned long lpar_rc; |
| 156 | |
| 157 | lpar_rc = plpar_ipi(get_hard_smp_processor_id(n_cpu), value); |
Segher Boessenkool | 706c8c9 | 2006-03-30 14:49:40 +0200 | [diff] [blame] | 158 | if (lpar_rc != H_SUCCESS) |
David Gibson | 007e8f5 | 2005-10-28 15:35:50 +1000 | [diff] [blame] | 159 | panic("bad return code qirr - rc = %lx\n", lpar_rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 163 | /* Interface to generic irq subsystem */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
| 165 | #ifdef CONFIG_SMP |
Anton Blanchard | 64fe220 | 2010-04-26 15:32:38 +0000 | [diff] [blame] | 166 | /* |
| 167 | * For the moment we only implement delivery to all cpus or one cpu. |
| 168 | * |
| 169 | * If the requested affinity is cpu_all_mask, we set global affinity. |
| 170 | * If not we set it to the first cpu in the mask, even if multiple cpus |
| 171 | * are set. This is so things like irqbalance (which set core and package |
| 172 | * wide affinities) do the right thing. |
| 173 | */ |
| 174 | static int get_irq_server(unsigned int virq, const struct cpumask *cpumask, |
Anton Blanchard | 92cb369 | 2010-01-04 15:26:33 +0000 | [diff] [blame] | 175 | unsigned int strict_check) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
| 178 | if (!distribute_irqs) |
| 179 | return default_server; |
| 180 | |
Nishanth Aravamudan | f56029b | 2010-10-01 11:26:18 +0000 | [diff] [blame] | 181 | if (!cpumask_subset(cpu_possible_mask, cpumask)) { |
Anton Blanchard | 64fe220 | 2010-04-26 15:32:38 +0000 | [diff] [blame] | 182 | int server = cpumask_first_and(cpu_online_mask, cpumask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Anton Blanchard | 64fe220 | 2010-04-26 15:32:38 +0000 | [diff] [blame] | 184 | if (server < nr_cpu_ids) |
Mohan Kumar M | 7ccb4a6 | 2007-06-13 00:51:57 +1000 | [diff] [blame] | 185 | return get_hard_smp_processor_id(server); |
| 186 | |
| 187 | if (strict_check) |
| 188 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | } |
| 190 | |
Anton Blanchard | 64fe220 | 2010-04-26 15:32:38 +0000 | [diff] [blame] | 191 | /* |
| 192 | * Workaround issue with some versions of JS20 firmware that |
| 193 | * deliver interrupts to cpus which haven't been started. This |
| 194 | * happens when using the maxcpus= boot option. |
| 195 | */ |
| 196 | if (cpumask_equal(cpu_online_mask, cpu_present_mask)) |
Mohan Kumar M | 7ccb4a6 | 2007-06-13 00:51:57 +1000 | [diff] [blame] | 197 | return default_distrib_server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Mohan Kumar M | 7ccb4a6 | 2007-06-13 00:51:57 +1000 | [diff] [blame] | 199 | return default_server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | #else |
Benjamin Herrenschmidt | bf647fa | 2010-02-01 13:32:41 +1100 | [diff] [blame] | 202 | #define get_irq_server(virq, cpumask, strict_check) (default_server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | #endif |
| 204 | |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 205 | static void xics_unmask_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 207 | unsigned int hwirq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | int call_status; |
Mohan Kumar M | 7ccb4a6 | 2007-06-13 00:51:57 +1000 | [diff] [blame] | 209 | int server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 211 | pr_devel("xics: unmask virq %d\n", d->irq); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 212 | |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 213 | hwirq = (unsigned int)irq_map[d->irq].hwirq; |
| 214 | pr_devel(" -> map to hwirq 0x%x\n", hwirq); |
| 215 | if (hwirq == XICS_IPI || hwirq == XICS_IRQ_SPURIOUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | return; |
| 217 | |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 218 | server = get_irq_server(d->irq, d->affinity, 0); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 219 | |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 220 | call_status = rtas_call(ibm_set_xive, 3, 1, NULL, hwirq, server, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | DEFAULT_PRIORITY); |
| 222 | if (call_status != 0) { |
Milton Miller | 2172fe8 | 2008-10-10 01:56:39 +0000 | [diff] [blame] | 223 | printk(KERN_ERR |
| 224 | "%s: ibm_set_xive irq %u server %x returned %d\n", |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 225 | __func__, hwirq, server, call_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return; |
| 227 | } |
| 228 | |
| 229 | /* Now unmask the interrupt (often a no-op) */ |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 230 | call_status = rtas_call(ibm_int_on, 1, 1, NULL, hwirq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | if (call_status != 0) { |
Milton Miller | 2172fe8 | 2008-10-10 01:56:39 +0000 | [diff] [blame] | 232 | printk(KERN_ERR "%s: ibm_int_on irq=%u returned %d\n", |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 233 | __func__, hwirq, call_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | return; |
| 235 | } |
| 236 | } |
| 237 | |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 238 | static unsigned int xics_startup(struct irq_data *d) |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 239 | { |
Andre Detsch | 8435b02 | 2009-11-04 13:03:19 -0200 | [diff] [blame] | 240 | /* |
| 241 | * The generic MSI code returns with the interrupt disabled on the |
| 242 | * card, using the MSI mask bits. Firmware doesn't appear to unmask |
| 243 | * at that level, so we do it here by hand. |
| 244 | */ |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 245 | if (d->msi_desc) |
| 246 | unmask_msi_irq(d); |
Andre Detsch | 8435b02 | 2009-11-04 13:03:19 -0200 | [diff] [blame] | 247 | |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 248 | /* unmask it */ |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 249 | xics_unmask_irq(d); |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 250 | return 0; |
| 251 | } |
| 252 | |
Milton Miller | 4f1fc48 | 2011-03-21 11:38:02 +0000 | [diff] [blame] | 253 | static void xics_mask_real_irq(unsigned int hwirq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | { |
| 255 | int call_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Milton Miller | 4f1fc48 | 2011-03-21 11:38:02 +0000 | [diff] [blame] | 257 | if (hwirq == XICS_IPI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | return; |
| 259 | |
Milton Miller | 4f1fc48 | 2011-03-21 11:38:02 +0000 | [diff] [blame] | 260 | call_status = rtas_call(ibm_int_off, 1, 1, NULL, hwirq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | if (call_status != 0) { |
Milton Miller | 2172fe8 | 2008-10-10 01:56:39 +0000 | [diff] [blame] | 262 | printk(KERN_ERR "%s: ibm_int_off irq=%u returned %d\n", |
Milton Miller | 4f1fc48 | 2011-03-21 11:38:02 +0000 | [diff] [blame] | 263 | __func__, hwirq, call_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | return; |
| 265 | } |
| 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | /* Have to set XIVE to 0xff to be able to remove a slot */ |
Milton Miller | 4f1fc48 | 2011-03-21 11:38:02 +0000 | [diff] [blame] | 268 | call_status = rtas_call(ibm_set_xive, 3, 1, NULL, hwirq, |
Michal Ostrowski | 673aeb7 | 2006-12-20 07:29:40 -0600 | [diff] [blame] | 269 | default_server, 0xff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | if (call_status != 0) { |
Milton Miller | 2172fe8 | 2008-10-10 01:56:39 +0000 | [diff] [blame] | 271 | printk(KERN_ERR "%s: ibm_set_xive(0xff) irq=%u returned %d\n", |
Milton Miller | 4f1fc48 | 2011-03-21 11:38:02 +0000 | [diff] [blame] | 272 | __func__, hwirq, call_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | return; |
| 274 | } |
| 275 | } |
| 276 | |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 277 | static void xics_mask_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | { |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 279 | unsigned int hwirq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 281 | pr_devel("xics: mask virq %d\n", d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 283 | hwirq = (unsigned int)irq_map[d->irq].hwirq; |
| 284 | if (hwirq == XICS_IPI || hwirq == XICS_IRQ_SPURIOUS) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 285 | return; |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 286 | xics_mask_real_irq(hwirq); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 287 | } |
| 288 | |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 289 | static void xics_mask_unknown_vec(unsigned int vec) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 290 | { |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 291 | printk(KERN_ERR "Interrupt %u (real) is invalid, disabling it.\n", vec); |
Milton Miller | 4f1fc48 | 2011-03-21 11:38:02 +0000 | [diff] [blame] | 292 | xics_mask_real_irq(vec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | } |
| 294 | |
Milton Miller | 8767e9b | 2008-10-10 01:56:23 +0000 | [diff] [blame] | 295 | static inline unsigned int xics_xirr_vector(unsigned int xirr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | { |
Milton Miller | 8767e9b | 2008-10-10 01:56:23 +0000 | [diff] [blame] | 297 | /* |
| 298 | * The top byte is the old cppr, to be restored on EOI. |
| 299 | * The remaining 24 bits are the vector. |
| 300 | */ |
| 301 | return xirr & 0x00ffffff; |
| 302 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 304 | static void push_cppr(unsigned int vec) |
| 305 | { |
| 306 | struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr); |
| 307 | |
| 308 | if (WARN_ON(os_cppr->index >= MAX_NUM_PRIORITIES - 1)) |
| 309 | return; |
| 310 | |
| 311 | if (vec == XICS_IPI) |
| 312 | os_cppr->stack[++os_cppr->index] = IPI_PRIORITY; |
| 313 | else |
| 314 | os_cppr->stack[++os_cppr->index] = DEFAULT_PRIORITY; |
| 315 | } |
| 316 | |
Olaf Hering | 35a84c2 | 2006-10-07 22:08:26 +1000 | [diff] [blame] | 317 | static unsigned int xics_get_irq_direct(void) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 318 | { |
Milton Miller | 8767e9b | 2008-10-10 01:56:23 +0000 | [diff] [blame] | 319 | unsigned int xirr = direct_xirr_info_get(); |
| 320 | unsigned int vec = xics_xirr_vector(xirr); |
| 321 | unsigned int irq; |
| 322 | |
| 323 | if (vec == XICS_IRQ_SPURIOUS) |
| 324 | return NO_IRQ; |
| 325 | |
| 326 | irq = irq_radix_revmap_lookup(xics_host, vec); |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 327 | if (likely(irq != NO_IRQ)) { |
| 328 | push_cppr(vec); |
Milton Miller | 8767e9b | 2008-10-10 01:56:23 +0000 | [diff] [blame] | 329 | return irq; |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 330 | } |
Milton Miller | 8767e9b | 2008-10-10 01:56:23 +0000 | [diff] [blame] | 331 | |
| 332 | /* We don't have a linux mapping, so have rtas mask it. */ |
| 333 | xics_mask_unknown_vec(vec); |
| 334 | |
| 335 | /* We might learn about it later, so EOI it */ |
| 336 | direct_xirr_info_set(xirr); |
| 337 | return NO_IRQ; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 338 | } |
| 339 | |
Olaf Hering | 35a84c2 | 2006-10-07 22:08:26 +1000 | [diff] [blame] | 340 | static unsigned int xics_get_irq_lpar(void) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 341 | { |
Mark Nelson | f09b7b2 | 2010-01-31 20:12:58 +0000 | [diff] [blame] | 342 | struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr); |
| 343 | unsigned int xirr = lpar_xirr_info_get(os_cppr->stack[os_cppr->index]); |
Milton Miller | 8767e9b | 2008-10-10 01:56:23 +0000 | [diff] [blame] | 344 | unsigned int vec = xics_xirr_vector(xirr); |
| 345 | unsigned int irq; |
| 346 | |
| 347 | if (vec == XICS_IRQ_SPURIOUS) |
| 348 | return NO_IRQ; |
| 349 | |
| 350 | irq = irq_radix_revmap_lookup(xics_host, vec); |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 351 | if (likely(irq != NO_IRQ)) { |
| 352 | push_cppr(vec); |
Milton Miller | 8767e9b | 2008-10-10 01:56:23 +0000 | [diff] [blame] | 353 | return irq; |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 354 | } |
Milton Miller | 8767e9b | 2008-10-10 01:56:23 +0000 | [diff] [blame] | 355 | |
| 356 | /* We don't have a linux mapping, so have RTAS mask it. */ |
| 357 | xics_mask_unknown_vec(vec); |
| 358 | |
| 359 | /* We might learn about it later, so EOI it */ |
| 360 | lpar_xirr_info_set(xirr); |
| 361 | return NO_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | } |
| 363 | |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 364 | static unsigned char pop_cppr(void) |
| 365 | { |
| 366 | struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr); |
| 367 | |
| 368 | if (WARN_ON(os_cppr->index < 1)) |
| 369 | return LOWEST_PRIORITY; |
| 370 | |
| 371 | return os_cppr->stack[--os_cppr->index]; |
| 372 | } |
| 373 | |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 374 | static void xics_eoi_direct(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | { |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 376 | unsigned int hwirq = (unsigned int)irq_map[d->irq].hwirq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 378 | iosync(); |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 379 | direct_xirr_info_set((pop_cppr() << 24) | hwirq); |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 380 | } |
| 381 | |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 382 | static void xics_eoi_lpar(struct irq_data *d) |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 383 | { |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 384 | unsigned int hwirq = (unsigned int)irq_map[d->irq].hwirq; |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 385 | |
| 386 | iosync(); |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 387 | lpar_xirr_info_set((pop_cppr() << 24) | hwirq); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 388 | } |
| 389 | |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 390 | static int |
| 391 | xics_set_affinity(struct irq_data *d, const struct cpumask *cpumask, bool force) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 392 | { |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 393 | unsigned int hwirq; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 394 | int status; |
| 395 | int xics_status[2]; |
Mohan Kumar M | 7ccb4a6 | 2007-06-13 00:51:57 +1000 | [diff] [blame] | 396 | int irq_server; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 397 | |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 398 | hwirq = (unsigned int)irq_map[d->irq].hwirq; |
| 399 | if (hwirq == XICS_IPI || hwirq == XICS_IRQ_SPURIOUS) |
Yinghai Lu | d5dedd4 | 2009-04-27 17:59:21 -0700 | [diff] [blame] | 400 | return -1; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 401 | |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 402 | status = rtas_call(ibm_get_xive, 1, 3, xics_status, hwirq); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 403 | |
| 404 | if (status) { |
Milton Miller | 2172fe8 | 2008-10-10 01:56:39 +0000 | [diff] [blame] | 405 | printk(KERN_ERR "%s: ibm,get-xive irq=%u returns %d\n", |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 406 | __func__, hwirq, status); |
Yinghai Lu | d5dedd4 | 2009-04-27 17:59:21 -0700 | [diff] [blame] | 407 | return -1; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 408 | } |
| 409 | |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 410 | irq_server = get_irq_server(d->irq, cpumask, 1); |
Mohan Kumar M | 7ccb4a6 | 2007-06-13 00:51:57 +1000 | [diff] [blame] | 411 | if (irq_server == -1) { |
| 412 | char cpulist[128]; |
| 413 | cpumask_scnprintf(cpulist, sizeof(cpulist), cpumask); |
Milton Miller | 2172fe8 | 2008-10-10 01:56:39 +0000 | [diff] [blame] | 414 | printk(KERN_WARNING |
| 415 | "%s: No online cpus in the mask %s for irq %d\n", |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 416 | __func__, cpulist, d->irq); |
Yinghai Lu | d5dedd4 | 2009-04-27 17:59:21 -0700 | [diff] [blame] | 417 | return -1; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | status = rtas_call(ibm_set_xive, 3, 1, NULL, |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 421 | hwirq, irq_server, xics_status[1]); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 422 | |
| 423 | if (status) { |
Milton Miller | 2172fe8 | 2008-10-10 01:56:39 +0000 | [diff] [blame] | 424 | printk(KERN_ERR "%s: ibm,set-xive irq=%u returns %d\n", |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 425 | __func__, hwirq, status); |
Yinghai Lu | d5dedd4 | 2009-04-27 17:59:21 -0700 | [diff] [blame] | 426 | return -1; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 427 | } |
Yinghai Lu | d5dedd4 | 2009-04-27 17:59:21 -0700 | [diff] [blame] | 428 | |
| 429 | return 0; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | static struct irq_chip xics_pic_direct = { |
Anton Blanchard | fc380c0 | 2010-01-31 20:33:41 +0000 | [diff] [blame] | 433 | .name = "XICS", |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 434 | .irq_startup = xics_startup, |
| 435 | .irq_mask = xics_mask_irq, |
| 436 | .irq_unmask = xics_unmask_irq, |
| 437 | .irq_eoi = xics_eoi_direct, |
| 438 | .irq_set_affinity = xics_set_affinity |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 439 | }; |
| 440 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 441 | static struct irq_chip xics_pic_lpar = { |
Anton Blanchard | fc380c0 | 2010-01-31 20:33:41 +0000 | [diff] [blame] | 442 | .name = "XICS", |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 443 | .irq_startup = xics_startup, |
| 444 | .irq_mask = xics_mask_irq, |
| 445 | .irq_unmask = xics_unmask_irq, |
| 446 | .irq_eoi = xics_eoi_lpar, |
| 447 | .irq_set_affinity = xics_set_affinity |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 448 | }; |
| 449 | |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 450 | |
| 451 | /* Interface to arch irq controller subsystem layer */ |
| 452 | |
Michael Ellerman | 1af9fa8 | 2008-04-01 17:42:27 +1100 | [diff] [blame] | 453 | /* Points to the irq_chip we're actually using */ |
| 454 | static struct irq_chip *xics_irq_chip; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 455 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 456 | static int xics_host_match(struct irq_host *h, struct device_node *node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 458 | /* IBM machines have interrupt parents of various funky types for things |
| 459 | * like vdevices, events, etc... The trick we use here is to match |
| 460 | * everything here except the legacy 8259 which is compatible "chrp,iic" |
Paul Mackerras | 6c80a21 | 2005-05-06 16:28:56 +1000 | [diff] [blame] | 461 | */ |
Stephen Rothwell | 55b61fe | 2007-05-03 17:26:52 +1000 | [diff] [blame] | 462 | return !of_device_is_compatible(node, "chrp,iic"); |
Paul Mackerras | 6c80a21 | 2005-05-06 16:28:56 +1000 | [diff] [blame] | 463 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
Michael Ellerman | 1af9fa8 | 2008-04-01 17:42:27 +1100 | [diff] [blame] | 465 | static int xics_host_map(struct irq_host *h, unsigned int virq, |
| 466 | irq_hw_number_t hw) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 467 | { |
Michael Ellerman | b69e9e9 | 2009-06-17 18:13:53 +0000 | [diff] [blame] | 468 | pr_devel("xics: map virq %d, hwirq 0x%lx\n", virq, hw); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 469 | |
Sebastien Dugue | 967e012 | 2008-09-04 22:37:07 +1000 | [diff] [blame] | 470 | /* Insert the interrupt mapping into the radix tree for fast lookup */ |
| 471 | irq_radix_revmap_insert(xics_host, virq, hw); |
| 472 | |
Thomas Gleixner | 98488db | 2011-03-25 15:43:57 +0100 | [diff] [blame] | 473 | irq_set_status_flags(virq, IRQ_LEVEL); |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 474 | irq_set_chip_and_handler(virq, xics_irq_chip, handle_fasteoi_irq); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 475 | return 0; |
| 476 | } |
| 477 | |
| 478 | static int xics_host_xlate(struct irq_host *h, struct device_node *ct, |
Roman Fietze | 40d50cf | 2009-12-08 02:39:50 +0000 | [diff] [blame] | 479 | const u32 *intspec, unsigned int intsize, |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 480 | irq_hw_number_t *out_hwirq, unsigned int *out_flags) |
| 481 | |
| 482 | { |
| 483 | /* Current xics implementation translates everything |
| 484 | * to level. It is not technically right for MSIs but this |
| 485 | * is irrelevant at this point. We might get smarter in the future |
| 486 | */ |
| 487 | *out_hwirq = intspec[0]; |
| 488 | *out_flags = IRQ_TYPE_LEVEL_LOW; |
| 489 | |
| 490 | return 0; |
| 491 | } |
| 492 | |
Michael Ellerman | 1af9fa8 | 2008-04-01 17:42:27 +1100 | [diff] [blame] | 493 | static struct irq_host_ops xics_host_ops = { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 494 | .match = xics_host_match, |
Michael Ellerman | 1af9fa8 | 2008-04-01 17:42:27 +1100 | [diff] [blame] | 495 | .map = xics_host_map, |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 496 | .xlate = xics_host_xlate, |
| 497 | }; |
| 498 | |
| 499 | static void __init xics_init_host(void) |
| 500 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 501 | if (firmware_has_feature(FW_FEATURE_LPAR)) |
Michael Ellerman | 1af9fa8 | 2008-04-01 17:42:27 +1100 | [diff] [blame] | 502 | xics_irq_chip = &xics_pic_lpar; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 503 | else |
Michael Ellerman | 1af9fa8 | 2008-04-01 17:42:27 +1100 | [diff] [blame] | 504 | xics_irq_chip = &xics_pic_direct; |
| 505 | |
| 506 | xics_host = irq_alloc_host(NULL, IRQ_HOST_MAP_TREE, 0, &xics_host_ops, |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 507 | XICS_IRQ_SPURIOUS); |
| 508 | BUG_ON(xics_host == NULL); |
| 509 | irq_set_default_host(xics_host); |
| 510 | } |
| 511 | |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 512 | |
| 513 | /* Inter-processor interrupt support */ |
| 514 | |
| 515 | #ifdef CONFIG_SMP |
| 516 | /* |
| 517 | * XICS only has a single IPI, so encode the messages per CPU |
| 518 | */ |
Anton Blanchard | fda9d86 | 2010-01-31 20:32:51 +0000 | [diff] [blame] | 519 | static DEFINE_PER_CPU_SHARED_ALIGNED(unsigned long, xics_ipi_message); |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 520 | |
| 521 | static inline void smp_xics_do_message(int cpu, int msg) |
| 522 | { |
Anton Blanchard | fda9d86 | 2010-01-31 20:32:51 +0000 | [diff] [blame] | 523 | unsigned long *tgt = &per_cpu(xics_ipi_message, cpu); |
| 524 | |
| 525 | set_bit(msg, tgt); |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 526 | mb(); |
| 527 | if (firmware_has_feature(FW_FEATURE_LPAR)) |
| 528 | lpar_qirr_info(cpu, IPI_PRIORITY); |
| 529 | else |
| 530 | direct_qirr_info(cpu, IPI_PRIORITY); |
| 531 | } |
| 532 | |
| 533 | void smp_xics_message_pass(int target, int msg) |
| 534 | { |
| 535 | unsigned int i; |
| 536 | |
| 537 | if (target < NR_CPUS) { |
| 538 | smp_xics_do_message(target, msg); |
| 539 | } else { |
| 540 | for_each_online_cpu(i) { |
| 541 | if (target == MSG_ALL_BUT_SELF |
| 542 | && i == smp_processor_id()) |
| 543 | continue; |
| 544 | smp_xics_do_message(i, msg); |
| 545 | } |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | static irqreturn_t xics_ipi_dispatch(int cpu) |
| 550 | { |
Anton Blanchard | fda9d86 | 2010-01-31 20:32:51 +0000 | [diff] [blame] | 551 | unsigned long *tgt = &per_cpu(xics_ipi_message, cpu); |
| 552 | |
Milton Miller | 199f45c | 2008-10-10 01:56:44 +0000 | [diff] [blame] | 553 | mb(); /* order mmio clearing qirr */ |
Anton Blanchard | fda9d86 | 2010-01-31 20:32:51 +0000 | [diff] [blame] | 554 | while (*tgt) { |
| 555 | if (test_and_clear_bit(PPC_MSG_CALL_FUNCTION, tgt)) { |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 556 | smp_message_recv(PPC_MSG_CALL_FUNCTION); |
| 557 | } |
Anton Blanchard | fda9d86 | 2010-01-31 20:32:51 +0000 | [diff] [blame] | 558 | if (test_and_clear_bit(PPC_MSG_RESCHEDULE, tgt)) { |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 559 | smp_message_recv(PPC_MSG_RESCHEDULE); |
| 560 | } |
Anton Blanchard | fda9d86 | 2010-01-31 20:32:51 +0000 | [diff] [blame] | 561 | if (test_and_clear_bit(PPC_MSG_CALL_FUNC_SINGLE, tgt)) { |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 562 | smp_message_recv(PPC_MSG_CALL_FUNC_SINGLE); |
| 563 | } |
| 564 | #if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC) |
Anton Blanchard | fda9d86 | 2010-01-31 20:32:51 +0000 | [diff] [blame] | 565 | if (test_and_clear_bit(PPC_MSG_DEBUGGER_BREAK, tgt)) { |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 566 | smp_message_recv(PPC_MSG_DEBUGGER_BREAK); |
| 567 | } |
| 568 | #endif |
| 569 | } |
| 570 | return IRQ_HANDLED; |
| 571 | } |
| 572 | |
| 573 | static irqreturn_t xics_ipi_action_direct(int irq, void *dev_id) |
| 574 | { |
| 575 | int cpu = smp_processor_id(); |
| 576 | |
| 577 | direct_qirr_info(cpu, 0xff); |
| 578 | |
| 579 | return xics_ipi_dispatch(cpu); |
| 580 | } |
| 581 | |
| 582 | static irqreturn_t xics_ipi_action_lpar(int irq, void *dev_id) |
| 583 | { |
| 584 | int cpu = smp_processor_id(); |
| 585 | |
| 586 | lpar_qirr_info(cpu, 0xff); |
| 587 | |
| 588 | return xics_ipi_dispatch(cpu); |
| 589 | } |
| 590 | |
| 591 | static void xics_request_ipi(void) |
| 592 | { |
| 593 | unsigned int ipi; |
| 594 | int rc; |
| 595 | |
| 596 | ipi = irq_create_mapping(xics_host, XICS_IPI); |
| 597 | BUG_ON(ipi == NO_IRQ); |
| 598 | |
| 599 | /* |
| 600 | * IPIs are marked IRQF_DISABLED as they must run with irqs |
| 601 | * disabled |
| 602 | */ |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 603 | irq_set_handler(ipi, handle_percpu_irq); |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 604 | if (firmware_has_feature(FW_FEATURE_LPAR)) |
Milton Miller | d879f38 | 2008-10-10 01:56:39 +0000 | [diff] [blame] | 605 | rc = request_irq(ipi, xics_ipi_action_lpar, |
| 606 | IRQF_DISABLED|IRQF_PERCPU, "IPI", NULL); |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 607 | else |
Milton Miller | d879f38 | 2008-10-10 01:56:39 +0000 | [diff] [blame] | 608 | rc = request_irq(ipi, xics_ipi_action_direct, |
| 609 | IRQF_DISABLED|IRQF_PERCPU, "IPI", NULL); |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 610 | BUG_ON(rc); |
| 611 | } |
| 612 | |
| 613 | int __init smp_xics_probe(void) |
| 614 | { |
| 615 | xics_request_ipi(); |
| 616 | |
Anton Blanchard | 64fe220 | 2010-04-26 15:32:38 +0000 | [diff] [blame] | 617 | return cpumask_weight(cpu_possible_mask); |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | #endif /* CONFIG_SMP */ |
| 621 | |
| 622 | |
| 623 | /* Initialization */ |
| 624 | |
| 625 | static void xics_update_irq_servers(void) |
| 626 | { |
| 627 | int i, j; |
| 628 | struct device_node *np; |
| 629 | u32 ilen; |
Sebastien Dugue | 1ef8014 | 2008-10-22 04:36:32 +0000 | [diff] [blame] | 630 | const u32 *ireg; |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 631 | u32 hcpuid; |
| 632 | |
| 633 | /* Find the server numbers for the boot cpu. */ |
| 634 | np = of_get_cpu_node(boot_cpuid, NULL); |
| 635 | BUG_ON(!np); |
| 636 | |
| 637 | ireg = of_get_property(np, "ibm,ppc-interrupt-gserver#s", &ilen); |
| 638 | if (!ireg) { |
| 639 | of_node_put(np); |
| 640 | return; |
| 641 | } |
| 642 | |
| 643 | i = ilen / sizeof(int); |
| 644 | hcpuid = get_hard_smp_processor_id(boot_cpuid); |
| 645 | |
| 646 | /* Global interrupt distribution server is specified in the last |
| 647 | * entry of "ibm,ppc-interrupt-gserver#s" property. Get the last |
| 648 | * entry fom this property for current boot cpu id and use it as |
| 649 | * default distribution server |
| 650 | */ |
| 651 | for (j = 0; j < i; j += 2) { |
| 652 | if (ireg[j] == hcpuid) { |
| 653 | default_server = hcpuid; |
| 654 | default_distrib_server = ireg[j+1]; |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 655 | } |
| 656 | } |
| 657 | |
| 658 | of_node_put(np); |
| 659 | } |
| 660 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 661 | static void __init xics_map_one_cpu(int hw_id, unsigned long addr, |
| 662 | unsigned long size) |
| 663 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 664 | int i; |
| 665 | |
| 666 | /* This may look gross but it's good enough for now, we don't quite |
| 667 | * have a hard -> linux processor id matching. |
| 668 | */ |
| 669 | for_each_possible_cpu(i) { |
| 670 | if (!cpu_present(i)) |
| 671 | continue; |
| 672 | if (hw_id == get_hard_smp_processor_id(i)) { |
| 673 | xics_per_cpu[i] = ioremap(addr, size); |
| 674 | return; |
| 675 | } |
| 676 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | static void __init xics_init_one_node(struct device_node *np, |
| 680 | unsigned int *indx) |
| 681 | { |
| 682 | unsigned int ilen; |
Jeremy Kerr | 954a46e | 2006-07-12 15:39:43 +1000 | [diff] [blame] | 683 | const u32 *ireg; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 684 | |
| 685 | /* This code does the theorically broken assumption that the interrupt |
| 686 | * server numbers are the same as the hard CPU numbers. |
| 687 | * This happens to be the case so far but we are playing with fire... |
| 688 | * should be fixed one of these days. -BenH. |
| 689 | */ |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 690 | ireg = of_get_property(np, "ibm,interrupt-server-ranges", NULL); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 691 | |
| 692 | /* Do that ever happen ? we'll know soon enough... but even good'old |
| 693 | * f80 does have that property .. |
| 694 | */ |
| 695 | WARN_ON(ireg == NULL); |
| 696 | if (ireg) { |
| 697 | /* |
| 698 | * set node starting index for this node |
| 699 | */ |
| 700 | *indx = *ireg; |
| 701 | } |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 702 | ireg = of_get_property(np, "reg", &ilen); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 703 | if (!ireg) |
| 704 | panic("xics_init_IRQ: can't find interrupt reg property"); |
| 705 | |
| 706 | while (ilen >= (4 * sizeof(u32))) { |
| 707 | unsigned long addr, size; |
| 708 | |
| 709 | /* XXX Use proper OF parsing code here !!! */ |
| 710 | addr = (unsigned long)*ireg++ << 32; |
| 711 | ilen -= sizeof(u32); |
| 712 | addr |= *ireg++; |
| 713 | ilen -= sizeof(u32); |
| 714 | size = (unsigned long)*ireg++ << 32; |
| 715 | ilen -= sizeof(u32); |
| 716 | size |= *ireg++; |
| 717 | ilen -= sizeof(u32); |
| 718 | xics_map_one_cpu(*indx, addr, size); |
| 719 | (*indx)++; |
| 720 | } |
| 721 | } |
| 722 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 723 | void __init xics_init_IRQ(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | struct device_node *np; |
Nathan Fontenot | de0723d | 2008-02-07 07:37:40 +1100 | [diff] [blame] | 726 | u32 indx = 0; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 727 | int found = 0; |
Sebastien Dugue | 1ef8014 | 2008-10-22 04:36:32 +0000 | [diff] [blame] | 728 | const u32 *isize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | |
| 730 | ppc64_boot_msg(0x20, "XICS Init"); |
| 731 | |
| 732 | ibm_get_xive = rtas_token("ibm,get-xive"); |
| 733 | ibm_set_xive = rtas_token("ibm,set-xive"); |
| 734 | ibm_int_on = rtas_token("ibm,int-on"); |
| 735 | ibm_int_off = rtas_token("ibm,int-off"); |
| 736 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 737 | for_each_node_by_type(np, "PowerPC-External-Interrupt-Presentation") { |
| 738 | found = 1; |
Milton Miller | a244a95 | 2008-10-10 01:56:33 +0000 | [diff] [blame] | 739 | if (firmware_has_feature(FW_FEATURE_LPAR)) { |
| 740 | of_node_put(np); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 741 | break; |
Milton Miller | a244a95 | 2008-10-10 01:56:33 +0000 | [diff] [blame] | 742 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 743 | xics_init_one_node(np, &indx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 745 | if (found == 0) |
| 746 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | |
Sebastien Dugue | 1ef8014 | 2008-10-22 04:36:32 +0000 | [diff] [blame] | 748 | /* get the bit size of server numbers */ |
| 749 | found = 0; |
| 750 | |
| 751 | for_each_compatible_node(np, NULL, "ibm,ppc-xics") { |
| 752 | isize = of_get_property(np, "ibm,interrupt-server#-size", NULL); |
| 753 | |
| 754 | if (!isize) |
| 755 | continue; |
| 756 | |
| 757 | if (!found) { |
| 758 | interrupt_server_size = *isize; |
| 759 | found = 1; |
| 760 | } else if (*isize != interrupt_server_size) { |
| 761 | printk(KERN_WARNING "XICS: " |
| 762 | "mismatched ibm,interrupt-server#-size\n"); |
| 763 | interrupt_server_size = max(*isize, |
| 764 | interrupt_server_size); |
| 765 | } |
| 766 | } |
| 767 | |
Nathan Fontenot | de0723d | 2008-02-07 07:37:40 +1100 | [diff] [blame] | 768 | xics_update_irq_servers(); |
Milton Miller | 302905a | 2008-10-10 01:56:28 +0000 | [diff] [blame] | 769 | xics_init_host(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 771 | if (firmware_has_feature(FW_FEATURE_LPAR)) |
| 772 | ppc_md.get_irq = xics_get_irq_lpar; |
| 773 | else |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 774 | ppc_md.get_irq = xics_get_irq_direct; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
Paul Mackerras | 6c80a21 | 2005-05-06 16:28:56 +1000 | [diff] [blame] | 776 | xics_setup_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | |
| 778 | ppc64_boot_msg(0x21, "XICS Done"); |
| 779 | } |
| 780 | |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 781 | /* Cpu startup, shutdown, and hotplug */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 783 | static void xics_set_cpu_priority(unsigned char cppr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | { |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 785 | struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr); |
| 786 | |
Mark Nelson | 36350e0 | 2010-02-07 16:45:12 +0000 | [diff] [blame] | 787 | /* |
| 788 | * we only really want to set the priority when there's |
| 789 | * just one cppr value on the stack |
| 790 | */ |
| 791 | WARN_ON(os_cppr->index != 0); |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 792 | |
Mark Nelson | 36350e0 | 2010-02-07 16:45:12 +0000 | [diff] [blame] | 793 | os_cppr->stack[0] = cppr; |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 794 | |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 795 | if (firmware_has_feature(FW_FEATURE_LPAR)) |
| 796 | lpar_cppr_info(cppr); |
| 797 | else |
| 798 | direct_cppr_info(cppr); |
| 799 | iosync(); |
| 800 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 801 | |
Milton Miller | b496325 | 2008-10-10 01:56:34 +0000 | [diff] [blame] | 802 | /* Have the calling processor join or leave the specified global queue */ |
| 803 | static void xics_set_cpu_giq(unsigned int gserver, unsigned int join) |
| 804 | { |
Nathan Lynch | edc72ac | 2008-12-11 09:14:25 +0000 | [diff] [blame] | 805 | int index; |
| 806 | int status; |
| 807 | |
| 808 | if (!rtas_indicator_present(GLOBAL_INTERRUPT_QUEUE, NULL)) |
| 809 | return; |
| 810 | |
| 811 | index = (1UL << interrupt_server_size) - 1 - gserver; |
| 812 | |
| 813 | status = rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE, index, join); |
| 814 | |
| 815 | WARN(status < 0, "set-indicator(%d, %d, %u) returned %d\n", |
| 816 | GLOBAL_INTERRUPT_QUEUE, index, join, status); |
Milton Miller | b496325 | 2008-10-10 01:56:34 +0000 | [diff] [blame] | 817 | } |
Milton Miller | 0641cc9 | 2008-10-10 01:56:30 +0000 | [diff] [blame] | 818 | |
| 819 | void xics_setup_cpu(void) |
| 820 | { |
Mark Nelson | 49bd364 | 2009-12-07 20:32:17 +0000 | [diff] [blame] | 821 | xics_set_cpu_priority(LOWEST_PRIORITY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | |
Milton Miller | b496325 | 2008-10-10 01:56:34 +0000 | [diff] [blame] | 823 | xics_set_cpu_giq(default_distrib_server, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | } |
Milton Miller | d13f720 | 2008-10-10 01:56:29 +0000 | [diff] [blame] | 825 | |
Al Viro | f10095c | 2008-03-29 03:10:38 +0000 | [diff] [blame] | 826 | void xics_teardown_cpu(void) |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 827 | { |
Mark Nelson | 36350e0 | 2010-02-07 16:45:12 +0000 | [diff] [blame] | 828 | struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 829 | int cpu = smp_processor_id(); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 830 | |
Mark Nelson | 36350e0 | 2010-02-07 16:45:12 +0000 | [diff] [blame] | 831 | /* |
| 832 | * we have to reset the cppr index to 0 because we're |
| 833 | * not going to return from the IPI |
| 834 | */ |
| 835 | os_cppr->index = 0; |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 836 | xics_set_cpu_priority(0); |
Haren Myneni | 81bbbe9 | 2006-04-05 21:10:18 -0600 | [diff] [blame] | 837 | |
Milton Miller | b496325 | 2008-10-10 01:56:34 +0000 | [diff] [blame] | 838 | /* Clear any pending IPI request */ |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 839 | if (firmware_has_feature(FW_FEATURE_LPAR)) |
| 840 | lpar_qirr_info(cpu, 0xff); |
| 841 | else |
| 842 | direct_qirr_info(cpu, 0xff); |
Nathan Fontenot | c3e8506 | 2008-02-07 07:37:31 +1100 | [diff] [blame] | 843 | } |
| 844 | |
| 845 | void xics_kexec_teardown_cpu(int secondary) |
| 846 | { |
Nathan Fontenot | c3e8506 | 2008-02-07 07:37:31 +1100 | [diff] [blame] | 847 | xics_teardown_cpu(); |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 848 | |
| 849 | /* |
Milton Miller | 1a57c92 | 2008-10-10 01:56:35 +0000 | [diff] [blame] | 850 | * we take the ipi irq but and never return so we |
| 851 | * need to EOI the IPI, but want to leave our priority 0 |
Haren Myneni | 81bbbe9 | 2006-04-05 21:10:18 -0600 | [diff] [blame] | 852 | * |
Milton Miller | 1a57c92 | 2008-10-10 01:56:35 +0000 | [diff] [blame] | 853 | * should we check all the other interrupts too? |
Haren Myneni | 81bbbe9 | 2006-04-05 21:10:18 -0600 | [diff] [blame] | 854 | * should we be flagging idle loop instead? |
| 855 | * or creating some task to be scheduled? |
| 856 | */ |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 857 | |
Milton Miller | 1a57c92 | 2008-10-10 01:56:35 +0000 | [diff] [blame] | 858 | if (firmware_has_feature(FW_FEATURE_LPAR)) |
| 859 | lpar_xirr_info_set((0x00 << 24) | XICS_IPI); |
| 860 | else |
| 861 | direct_xirr_info_set((0x00 << 24) | XICS_IPI); |
Haren Myneni | 81bbbe9 | 2006-04-05 21:10:18 -0600 | [diff] [blame] | 862 | |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 863 | /* |
Paul Mackerras | 6d22d85 | 2005-08-04 12:53:37 -0700 | [diff] [blame] | 864 | * Some machines need to have at least one cpu in the GIQ, |
| 865 | * so leave the master cpu in the group. |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 866 | */ |
Haren Myneni | 81bbbe9 | 2006-04-05 21:10:18 -0600 | [diff] [blame] | 867 | if (secondary) |
Milton Miller | b496325 | 2008-10-10 01:56:34 +0000 | [diff] [blame] | 868 | xics_set_cpu_giq(default_distrib_server, 0); |
R Sharada | fce0d57 | 2005-06-25 14:58:10 -0700 | [diff] [blame] | 869 | } |
| 870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | #ifdef CONFIG_HOTPLUG_CPU |
| 872 | |
| 873 | /* Interrupts are disabled. */ |
| 874 | void xics_migrate_irqs_away(void) |
| 875 | { |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 876 | int cpu = smp_processor_id(), hw_cpu = hard_smp_processor_id(); |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 877 | int virq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
Milton Miller | 302905a | 2008-10-10 01:56:28 +0000 | [diff] [blame] | 879 | /* If we used to be the default server, move to the new "boot_cpuid" */ |
| 880 | if (hw_cpu == default_server) |
| 881 | xics_update_irq_servers(); |
| 882 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | /* Reject any interrupt that was queued to us... */ |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 884 | xics_set_cpu_priority(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | |
Milton Miller | b496325 | 2008-10-10 01:56:34 +0000 | [diff] [blame] | 886 | /* Remove ourselves from the global interrupt queue */ |
| 887 | xics_set_cpu_giq(default_distrib_server, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | |
| 889 | /* Allow IPIs again... */ |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 890 | xics_set_cpu_priority(DEFAULT_PRIORITY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | |
| 892 | for_each_irq(virq) { |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 893 | struct irq_desc *desc; |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 894 | struct irq_chip *chip; |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 895 | unsigned int hwirq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | int xics_status[2]; |
Milton Miller | b496325 | 2008-10-10 01:56:34 +0000 | [diff] [blame] | 897 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | unsigned long flags; |
| 899 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 900 | /* We can't set affinity on ISA interrupts */ |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 901 | if (virq < NUM_ISA_INTERRUPTS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | continue; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 903 | if (irq_map[virq].host != xics_host) |
| 904 | continue; |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 905 | hwirq = (unsigned int)irq_map[virq].hwirq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | /* We need to get IPIs still. */ |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 907 | if (hwirq == XICS_IPI || hwirq == XICS_IRQ_SPURIOUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | continue; |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 909 | |
Michael Ellerman | 6cff46f | 2009-10-13 19:44:51 +0000 | [diff] [blame] | 910 | desc = irq_to_desc(virq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | |
| 912 | /* We only need to migrate enabled IRQS */ |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 913 | if (desc == NULL || desc->action == NULL) |
| 914 | continue; |
| 915 | |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 916 | chip = irq_desc_get_chip(desc); |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 917 | if (chip == NULL || chip->irq_set_affinity == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | continue; |
| 919 | |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 920 | raw_spin_lock_irqsave(&desc->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 922 | status = rtas_call(ibm_get_xive, 1, 3, xics_status, hwirq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | if (status) { |
Milton Miller | 2172fe8 | 2008-10-10 01:56:39 +0000 | [diff] [blame] | 924 | printk(KERN_ERR "%s: ibm,get-xive irq=%u returns %d\n", |
Milton Miller | 943739f | 2011-03-21 08:12:13 +0000 | [diff] [blame] | 925 | __func__, hwirq, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | goto unlock; |
| 927 | } |
| 928 | |
| 929 | /* |
| 930 | * We only support delivery to all cpus or to one cpu. |
| 931 | * The irq has to be migrated only in the single cpu |
| 932 | * case. |
| 933 | */ |
Milton Miller | d7cf0ed | 2007-12-14 15:52:09 +1100 | [diff] [blame] | 934 | if (xics_status[0] != hw_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | goto unlock; |
| 936 | |
Signed-off-by: Darren Hart | 1afb56c | 2010-08-04 18:28:35 +0000 | [diff] [blame] | 937 | /* This is expected during cpu offline. */ |
| 938 | if (cpu_online(cpu)) |
| 939 | printk(KERN_WARNING "IRQ %u affinity broken off cpu %u\n", |
| 940 | virq, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | |
| 942 | /* Reset affinity to all cpus */ |
Lennert Buytenhek | 79f26c2 | 2011-03-07 13:59:45 +0000 | [diff] [blame] | 943 | cpumask_setall(desc->irq_data.affinity); |
| 944 | chip->irq_set_affinity(&desc->irq_data, cpu_all_mask, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | unlock: |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 946 | raw_spin_unlock_irqrestore(&desc->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | } |
| 948 | } |
| 949 | #endif |