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