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