blob: 4ca641042ec36a078b1b055bd163eff0a0dddd9a [file] [log] [blame]
David Gibson007e8f52005-10-28 15:35:50 +10001/*
2 * arch/powerpc/platforms/pseries/xics.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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 Herrenschmidt0ebfff12006-07-03 21:36:01 +100011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#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 Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/radix-tree.h>
20#include <linux/cpu.h>
Andre Detsch8435b022009-11-04 13:03:19 -020021#include <linux/msi.h>
Milton Miller188bddd2008-10-10 01:56:33 +000022#include <linux/of.h>
Mark Nelson49bd3642009-12-07 20:32:17 +000023#include <linux/percpu.h>
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100024
Michael Ellerman57cfb812006-03-21 20:45:59 +110025#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/io.h>
27#include <asm/pgtable.h>
28#include <asm/smp.h>
29#include <asm/rtas.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/hvcall.h>
31#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
David Gibson007e8f52005-10-28 15:35:50 +100033#include "xics.h"
Anton Blanchardb9377ff2006-07-19 08:01:28 +100034#include "plpar_wrappers.h"
David Gibson007e8f52005-10-28 15:35:50 +100035
Milton Miller0641cc92008-10-10 01:56:30 +000036static struct irq_host *xics_host;
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define XICS_IPI 2
39#define XICS_IRQ_SPURIOUS 0
40
41/* Want a priority other than 0. Various HW issues require this. */
42#define DEFAULT_PRIORITY 5
43
David Gibson007e8f52005-10-28 15:35:50 +100044/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * Mark IPIs as higher priority so we can take them inside interrupts that
Thomas Gleixner67144652006-07-01 19:29:22 -070046 * arent marked IRQF_DISABLED
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 */
48#define IPI_PRIORITY 4
49
Mark Nelson49bd3642009-12-07 20:32:17 +000050/* The least favored priority */
51#define LOWEST_PRIORITY 0xFF
52
53/* The number of priorities defined above */
54#define MAX_NUM_PRIORITIES 3
55
Milton Miller0641cc92008-10-10 01:56:30 +000056static unsigned int default_server = 0xFF;
57static unsigned int default_distrib_server = 0;
58static unsigned int interrupt_server_size = 8;
59
60/* RTAS service tokens */
61static int ibm_get_xive;
62static int ibm_set_xive;
63static int ibm_int_on;
64static int ibm_int_off;
65
Mark Nelson49bd3642009-12-07 20:32:17 +000066struct xics_cppr {
67 unsigned char stack[MAX_NUM_PRIORITIES];
68 int index;
69};
70
71static DEFINE_PER_CPU(struct xics_cppr, xics_cppr);
Milton Miller0641cc92008-10-10 01:56:30 +000072
73/* Direct hardware low level accessors */
74
75/* The part of the interrupt presentation layer that we care about */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076struct xics_ipl {
77 union {
78 u32 word;
79 u8 bytes[4];
80 } xirr_poll;
81 union {
82 u32 word;
83 u8 bytes[4];
84 } xirr;
85 u32 dummy;
86 union {
87 u32 word;
88 u8 bytes[4];
89 } qirr;
90};
91
92static struct xics_ipl __iomem *xics_per_cpu[NR_CPUS];
93
Milton Millerd7cf0ed2007-12-14 15:52:09 +110094static inline unsigned int direct_xirr_info_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Milton Millerd7cf0ed2007-12-14 15:52:09 +110096 int cpu = smp_processor_id();
97
98 return in_be32(&xics_per_cpu[cpu]->xirr.word);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Milton Miller9dc2d442008-10-10 01:56:32 +0000101static inline void direct_xirr_info_set(unsigned int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100103 int cpu = smp_processor_id();
104
105 out_be32(&xics_per_cpu[cpu]->xirr.word, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100108static inline void direct_cppr_info(u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100110 int cpu = smp_processor_id();
111
112 out_8(&xics_per_cpu[cpu]->xirr.bytes[0], value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000115static inline void direct_qirr_info(int n_cpu, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 out_8(&xics_per_cpu[n_cpu]->qirr.bytes[0], value);
118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000121/* LPAR low level accessors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100123static inline unsigned int lpar_xirr_info_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 unsigned long lpar_rc;
David Gibson007e8f52005-10-28 15:35:50 +1000126 unsigned long return_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 lpar_rc = plpar_xirr(&return_value);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200129 if (lpar_rc != H_SUCCESS)
Frans Pop8354be92010-02-06 07:47:20 +0000130 panic(" bad return code xirr - rc = %lx\n", lpar_rc);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000131 return (unsigned int)return_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Milton Miller9dc2d442008-10-10 01:56:32 +0000134static inline void lpar_xirr_info_set(unsigned int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 unsigned long lpar_rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Milton Miller9dc2d442008-10-10 01:56:32 +0000138 lpar_rc = plpar_eoi(value);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200139 if (lpar_rc != H_SUCCESS)
Milton Miller9dc2d442008-10-10 01:56:32 +0000140 panic("bad return code EOI - rc = %ld, value=%x\n", lpar_rc,
141 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100144static inline void lpar_cppr_info(u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 unsigned long lpar_rc;
147
148 lpar_rc = plpar_cppr(value);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200149 if (lpar_rc != H_SUCCESS)
David Gibson007e8f52005-10-28 15:35:50 +1000150 panic("bad return code cppr - rc = %lx\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000153static inline void lpar_qirr_info(int n_cpu , u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 unsigned long lpar_rc;
156
157 lpar_rc = plpar_ipi(get_hard_smp_processor_id(n_cpu), value);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200158 if (lpar_rc != H_SUCCESS)
David Gibson007e8f52005-10-28 15:35:50 +1000159 panic("bad return code qirr - rc = %lx\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Milton Miller0641cc92008-10-10 01:56:30 +0000163/* Interface to generic irq subsystem */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165#ifdef CONFIG_SMP
Anton Blanchard92cb3692010-01-04 15:26:33 +0000166static int get_irq_server(unsigned int virq, cpumask_t cpumask,
167 unsigned int strict_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000169 int server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 /* For the moment only implement delivery to all cpus or one cpu */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 cpumask_t tmp = CPU_MASK_NONE;
172
173 if (!distribute_irqs)
174 return default_server;
175
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000176 if (!cpus_equal(cpumask, CPU_MASK_ALL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 cpus_and(tmp, cpu_online_map, cpumask);
178
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000179 server = first_cpu(tmp);
180
181 if (server < NR_CPUS)
182 return get_hard_smp_processor_id(server);
183
184 if (strict_check)
185 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000188 if (cpus_equal(cpu_online_map, cpu_present_map))
189 return default_distrib_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000191 return default_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193#else
Benjamin Herrenschmidtbf647fa2010-02-01 13:32:41 +1100194#define get_irq_server(virq, cpumask, strict_check) (default_server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195#endif
196
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000197static void xics_unmask_irq(unsigned int virq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 unsigned int irq;
200 int call_status;
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000201 int server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Michael Ellermanb69e9e92009-06-17 18:13:53 +0000203 pr_devel("xics: unmask virq %d\n", virq);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000204
205 irq = (unsigned int)irq_map[virq].hwirq;
Michael Ellermanb69e9e92009-06-17 18:13:53 +0000206 pr_devel(" -> map to hwirq 0x%x\n", irq);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000207 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return;
209
Anton Blanchard92cb3692010-01-04 15:26:33 +0000210 server = get_irq_server(virq, *(irq_to_desc(virq)->affinity), 0);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 call_status = rtas_call(ibm_set_xive, 3, 1, NULL, irq, server,
213 DEFAULT_PRIORITY);
214 if (call_status != 0) {
Milton Miller2172fe82008-10-10 01:56:39 +0000215 printk(KERN_ERR
216 "%s: ibm_set_xive irq %u server %x returned %d\n",
217 __func__, irq, server, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return;
219 }
220
221 /* Now unmask the interrupt (often a no-op) */
222 call_status = rtas_call(ibm_int_on, 1, 1, NULL, irq);
223 if (call_status != 0) {
Milton Miller2172fe82008-10-10 01:56:39 +0000224 printk(KERN_ERR "%s: ibm_int_on irq=%u returned %d\n",
225 __func__, irq, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return;
227 }
228}
229
Milton Miller0641cc92008-10-10 01:56:30 +0000230static unsigned int xics_startup(unsigned int virq)
231{
Andre Detsch8435b022009-11-04 13:03:19 -0200232 /*
233 * The generic MSI code returns with the interrupt disabled on the
234 * card, using the MSI mask bits. Firmware doesn't appear to unmask
235 * at that level, so we do it here by hand.
236 */
237 if (irq_to_desc(virq)->msi_desc)
238 unmask_msi_irq(virq);
239
Milton Miller0641cc92008-10-10 01:56:30 +0000240 /* unmask it */
241 xics_unmask_irq(virq);
242 return 0;
243}
244
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000245static void xics_mask_real_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 int call_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (irq == XICS_IPI)
250 return;
251
252 call_status = rtas_call(ibm_int_off, 1, 1, NULL, irq);
253 if (call_status != 0) {
Milton Miller2172fe82008-10-10 01:56:39 +0000254 printk(KERN_ERR "%s: ibm_int_off irq=%u returned %d\n",
255 __func__, irq, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return;
257 }
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* Have to set XIVE to 0xff to be able to remove a slot */
Michal Ostrowski673aeb72006-12-20 07:29:40 -0600260 call_status = rtas_call(ibm_set_xive, 3, 1, NULL, irq,
261 default_server, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (call_status != 0) {
Milton Miller2172fe82008-10-10 01:56:39 +0000263 printk(KERN_ERR "%s: ibm_set_xive(0xff) irq=%u returned %d\n",
264 __func__, irq, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return;
266 }
267}
268
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000269static void xics_mask_irq(unsigned int virq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 unsigned int irq;
272
Michael Ellermanb69e9e92009-06-17 18:13:53 +0000273 pr_devel("xics: mask virq %d\n", virq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000275 irq = (unsigned int)irq_map[virq].hwirq;
276 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
277 return;
278 xics_mask_real_irq(irq);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000279}
280
Milton Miller0641cc92008-10-10 01:56:30 +0000281static void xics_mask_unknown_vec(unsigned int vec)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000282{
Milton Miller0641cc92008-10-10 01:56:30 +0000283 printk(KERN_ERR "Interrupt %u (real) is invalid, disabling it.\n", vec);
284 xics_mask_real_irq(vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Milton Miller8767e9b2008-10-10 01:56:23 +0000287static inline unsigned int xics_xirr_vector(unsigned int xirr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Milton Miller8767e9b2008-10-10 01:56:23 +0000289 /*
290 * The top byte is the old cppr, to be restored on EOI.
291 * The remaining 24 bits are the vector.
292 */
293 return xirr & 0x00ffffff;
294}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Mark Nelson49bd3642009-12-07 20:32:17 +0000296static void push_cppr(unsigned int vec)
297{
298 struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr);
299
300 if (WARN_ON(os_cppr->index >= MAX_NUM_PRIORITIES - 1))
301 return;
302
303 if (vec == XICS_IPI)
304 os_cppr->stack[++os_cppr->index] = IPI_PRIORITY;
305 else
306 os_cppr->stack[++os_cppr->index] = DEFAULT_PRIORITY;
307}
308
Olaf Hering35a84c22006-10-07 22:08:26 +1000309static unsigned int xics_get_irq_direct(void)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000310{
Milton Miller8767e9b2008-10-10 01:56:23 +0000311 unsigned int xirr = direct_xirr_info_get();
312 unsigned int vec = xics_xirr_vector(xirr);
313 unsigned int irq;
314
315 if (vec == XICS_IRQ_SPURIOUS)
316 return NO_IRQ;
317
318 irq = irq_radix_revmap_lookup(xics_host, vec);
Mark Nelson49bd3642009-12-07 20:32:17 +0000319 if (likely(irq != NO_IRQ)) {
320 push_cppr(vec);
Milton Miller8767e9b2008-10-10 01:56:23 +0000321 return irq;
Mark Nelson49bd3642009-12-07 20:32:17 +0000322 }
Milton Miller8767e9b2008-10-10 01:56:23 +0000323
324 /* We don't have a linux mapping, so have rtas mask it. */
325 xics_mask_unknown_vec(vec);
326
327 /* We might learn about it later, so EOI it */
328 direct_xirr_info_set(xirr);
329 return NO_IRQ;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000330}
331
Olaf Hering35a84c22006-10-07 22:08:26 +1000332static unsigned int xics_get_irq_lpar(void)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000333{
Milton Miller8767e9b2008-10-10 01:56:23 +0000334 unsigned int xirr = lpar_xirr_info_get();
335 unsigned int vec = xics_xirr_vector(xirr);
336 unsigned int irq;
337
338 if (vec == XICS_IRQ_SPURIOUS)
339 return NO_IRQ;
340
341 irq = irq_radix_revmap_lookup(xics_host, vec);
Mark Nelson49bd3642009-12-07 20:32:17 +0000342 if (likely(irq != NO_IRQ)) {
343 push_cppr(vec);
Milton Miller8767e9b2008-10-10 01:56:23 +0000344 return irq;
Mark Nelson49bd3642009-12-07 20:32:17 +0000345 }
Milton Miller8767e9b2008-10-10 01:56:23 +0000346
347 /* We don't have a linux mapping, so have RTAS mask it. */
348 xics_mask_unknown_vec(vec);
349
350 /* We might learn about it later, so EOI it */
351 lpar_xirr_info_set(xirr);
352 return NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Mark Nelson49bd3642009-12-07 20:32:17 +0000355static unsigned char pop_cppr(void)
356{
357 struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr);
358
359 if (WARN_ON(os_cppr->index < 1))
360 return LOWEST_PRIORITY;
361
362 return os_cppr->stack[--os_cppr->index];
363}
364
Milton Miller0641cc92008-10-10 01:56:30 +0000365static void xics_eoi_direct(unsigned int virq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Milton Miller0641cc92008-10-10 01:56:30 +0000367 unsigned int irq = (unsigned int)irq_map[virq].hwirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000369 iosync();
Mark Nelson49bd3642009-12-07 20:32:17 +0000370 direct_xirr_info_set((pop_cppr() << 24) | irq);
Milton Miller0641cc92008-10-10 01:56:30 +0000371}
372
373static void xics_eoi_lpar(unsigned int virq)
374{
375 unsigned int irq = (unsigned int)irq_map[virq].hwirq;
376
377 iosync();
Mark Nelson49bd3642009-12-07 20:32:17 +0000378 lpar_xirr_info_set((pop_cppr() << 24) | irq);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000379}
380
Yinghai Lud5dedd42009-04-27 17:59:21 -0700381static int xics_set_affinity(unsigned int virq, const struct cpumask *cpumask)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000382{
383 unsigned int irq;
384 int status;
385 int xics_status[2];
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000386 int irq_server;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000387
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000388 irq = (unsigned int)irq_map[virq].hwirq;
389 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
Yinghai Lud5dedd42009-04-27 17:59:21 -0700390 return -1;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000391
392 status = rtas_call(ibm_get_xive, 1, 3, xics_status, irq);
393
394 if (status) {
Milton Miller2172fe82008-10-10 01:56:39 +0000395 printk(KERN_ERR "%s: ibm,get-xive irq=%u returns %d\n",
396 __func__, irq, status);
Yinghai Lud5dedd42009-04-27 17:59:21 -0700397 return -1;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000398 }
399
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000400 /*
401 * For the moment only implement delivery to all cpus or one cpu.
402 * Get current irq_server for the given irq
403 */
Anton Blanchard92cb3692010-01-04 15:26:33 +0000404 irq_server = get_irq_server(virq, *cpumask, 1);
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000405 if (irq_server == -1) {
406 char cpulist[128];
407 cpumask_scnprintf(cpulist, sizeof(cpulist), cpumask);
Milton Miller2172fe82008-10-10 01:56:39 +0000408 printk(KERN_WARNING
409 "%s: No online cpus in the mask %s for irq %d\n",
410 __func__, cpulist, virq);
Yinghai Lud5dedd42009-04-27 17:59:21 -0700411 return -1;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000412 }
413
414 status = rtas_call(ibm_set_xive, 3, 1, NULL,
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000415 irq, irq_server, xics_status[1]);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000416
417 if (status) {
Milton Miller2172fe82008-10-10 01:56:39 +0000418 printk(KERN_ERR "%s: ibm,set-xive irq=%u returns %d\n",
419 __func__, irq, status);
Yinghai Lud5dedd42009-04-27 17:59:21 -0700420 return -1;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000421 }
Yinghai Lud5dedd42009-04-27 17:59:21 -0700422
423 return 0;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000424}
425
426static struct irq_chip xics_pic_direct = {
Anton Blanchardfc380c02010-01-31 20:33:41 +0000427 .name = "XICS",
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000428 .startup = xics_startup,
429 .mask = xics_mask_irq,
430 .unmask = xics_unmask_irq,
431 .eoi = xics_eoi_direct,
432 .set_affinity = xics_set_affinity
433};
434
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000435static struct irq_chip xics_pic_lpar = {
Anton Blanchardfc380c02010-01-31 20:33:41 +0000436 .name = "XICS",
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000437 .startup = xics_startup,
438 .mask = xics_mask_irq,
439 .unmask = xics_unmask_irq,
440 .eoi = xics_eoi_lpar,
441 .set_affinity = xics_set_affinity
442};
443
Milton Miller0641cc92008-10-10 01:56:30 +0000444
445/* Interface to arch irq controller subsystem layer */
446
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100447/* Points to the irq_chip we're actually using */
448static struct irq_chip *xics_irq_chip;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000449
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000450static int xics_host_match(struct irq_host *h, struct device_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000452 /* IBM machines have interrupt parents of various funky types for things
453 * like vdevices, events, etc... The trick we use here is to match
454 * everything here except the legacy 8259 which is compatible "chrp,iic"
Paul Mackerras6c80a212005-05-06 16:28:56 +1000455 */
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000456 return !of_device_is_compatible(node, "chrp,iic");
Paul Mackerras6c80a212005-05-06 16:28:56 +1000457}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100459static int xics_host_map(struct irq_host *h, unsigned int virq,
460 irq_hw_number_t hw)
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000461{
Michael Ellermanb69e9e92009-06-17 18:13:53 +0000462 pr_devel("xics: map virq %d, hwirq 0x%lx\n", virq, hw);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000463
Sebastien Dugue967e0122008-09-04 22:37:07 +1000464 /* Insert the interrupt mapping into the radix tree for fast lookup */
465 irq_radix_revmap_insert(xics_host, virq, hw);
466
Michael Ellerman6cff46f2009-10-13 19:44:51 +0000467 irq_to_desc(virq)->status |= IRQ_LEVEL;
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100468 set_irq_chip_and_handler(virq, xics_irq_chip, handle_fasteoi_irq);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000469 return 0;
470}
471
472static int xics_host_xlate(struct irq_host *h, struct device_node *ct,
Roman Fietze40d50cf2009-12-08 02:39:50 +0000473 const u32 *intspec, unsigned int intsize,
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000474 irq_hw_number_t *out_hwirq, unsigned int *out_flags)
475
476{
477 /* Current xics implementation translates everything
478 * to level. It is not technically right for MSIs but this
479 * is irrelevant at this point. We might get smarter in the future
480 */
481 *out_hwirq = intspec[0];
482 *out_flags = IRQ_TYPE_LEVEL_LOW;
483
484 return 0;
485}
486
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100487static struct irq_host_ops xics_host_ops = {
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000488 .match = xics_host_match,
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100489 .map = xics_host_map,
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000490 .xlate = xics_host_xlate,
491};
492
493static void __init xics_init_host(void)
494{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000495 if (firmware_has_feature(FW_FEATURE_LPAR))
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100496 xics_irq_chip = &xics_pic_lpar;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000497 else
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100498 xics_irq_chip = &xics_pic_direct;
499
500 xics_host = irq_alloc_host(NULL, IRQ_HOST_MAP_TREE, 0, &xics_host_ops,
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000501 XICS_IRQ_SPURIOUS);
502 BUG_ON(xics_host == NULL);
503 irq_set_default_host(xics_host);
504}
505
Milton Miller0641cc92008-10-10 01:56:30 +0000506
507/* Inter-processor interrupt support */
508
509#ifdef CONFIG_SMP
510/*
511 * XICS only has a single IPI, so encode the messages per CPU
512 */
Anton Blanchardfda9d862010-01-31 20:32:51 +0000513static DEFINE_PER_CPU_SHARED_ALIGNED(unsigned long, xics_ipi_message);
Milton Miller0641cc92008-10-10 01:56:30 +0000514
515static inline void smp_xics_do_message(int cpu, int msg)
516{
Anton Blanchardfda9d862010-01-31 20:32:51 +0000517 unsigned long *tgt = &per_cpu(xics_ipi_message, cpu);
518
519 set_bit(msg, tgt);
Milton Miller0641cc92008-10-10 01:56:30 +0000520 mb();
521 if (firmware_has_feature(FW_FEATURE_LPAR))
522 lpar_qirr_info(cpu, IPI_PRIORITY);
523 else
524 direct_qirr_info(cpu, IPI_PRIORITY);
525}
526
527void smp_xics_message_pass(int target, int msg)
528{
529 unsigned int i;
530
531 if (target < NR_CPUS) {
532 smp_xics_do_message(target, msg);
533 } else {
534 for_each_online_cpu(i) {
535 if (target == MSG_ALL_BUT_SELF
536 && i == smp_processor_id())
537 continue;
538 smp_xics_do_message(i, msg);
539 }
540 }
541}
542
543static irqreturn_t xics_ipi_dispatch(int cpu)
544{
Anton Blanchardfda9d862010-01-31 20:32:51 +0000545 unsigned long *tgt = &per_cpu(xics_ipi_message, cpu);
546
Milton Miller0641cc92008-10-10 01:56:30 +0000547 WARN_ON(cpu_is_offline(cpu));
548
Milton Miller199f45c2008-10-10 01:56:44 +0000549 mb(); /* order mmio clearing qirr */
Anton Blanchardfda9d862010-01-31 20:32:51 +0000550 while (*tgt) {
551 if (test_and_clear_bit(PPC_MSG_CALL_FUNCTION, tgt)) {
Milton Miller0641cc92008-10-10 01:56:30 +0000552 smp_message_recv(PPC_MSG_CALL_FUNCTION);
553 }
Anton Blanchardfda9d862010-01-31 20:32:51 +0000554 if (test_and_clear_bit(PPC_MSG_RESCHEDULE, tgt)) {
Milton Miller0641cc92008-10-10 01:56:30 +0000555 smp_message_recv(PPC_MSG_RESCHEDULE);
556 }
Anton Blanchardfda9d862010-01-31 20:32:51 +0000557 if (test_and_clear_bit(PPC_MSG_CALL_FUNC_SINGLE, tgt)) {
Milton Miller0641cc92008-10-10 01:56:30 +0000558 smp_message_recv(PPC_MSG_CALL_FUNC_SINGLE);
559 }
560#if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC)
Anton Blanchardfda9d862010-01-31 20:32:51 +0000561 if (test_and_clear_bit(PPC_MSG_DEBUGGER_BREAK, tgt)) {
Milton Miller0641cc92008-10-10 01:56:30 +0000562 smp_message_recv(PPC_MSG_DEBUGGER_BREAK);
563 }
564#endif
565 }
566 return IRQ_HANDLED;
567}
568
569static irqreturn_t xics_ipi_action_direct(int irq, void *dev_id)
570{
571 int cpu = smp_processor_id();
572
573 direct_qirr_info(cpu, 0xff);
574
575 return xics_ipi_dispatch(cpu);
576}
577
578static irqreturn_t xics_ipi_action_lpar(int irq, void *dev_id)
579{
580 int cpu = smp_processor_id();
581
582 lpar_qirr_info(cpu, 0xff);
583
584 return xics_ipi_dispatch(cpu);
585}
586
587static void xics_request_ipi(void)
588{
589 unsigned int ipi;
590 int rc;
591
592 ipi = irq_create_mapping(xics_host, XICS_IPI);
593 BUG_ON(ipi == NO_IRQ);
594
595 /*
596 * IPIs are marked IRQF_DISABLED as they must run with irqs
597 * disabled
598 */
599 set_irq_handler(ipi, handle_percpu_irq);
600 if (firmware_has_feature(FW_FEATURE_LPAR))
Milton Millerd879f382008-10-10 01:56:39 +0000601 rc = request_irq(ipi, xics_ipi_action_lpar,
602 IRQF_DISABLED|IRQF_PERCPU, "IPI", NULL);
Milton Miller0641cc92008-10-10 01:56:30 +0000603 else
Milton Millerd879f382008-10-10 01:56:39 +0000604 rc = request_irq(ipi, xics_ipi_action_direct,
605 IRQF_DISABLED|IRQF_PERCPU, "IPI", NULL);
Milton Miller0641cc92008-10-10 01:56:30 +0000606 BUG_ON(rc);
607}
608
609int __init smp_xics_probe(void)
610{
611 xics_request_ipi();
612
613 return cpus_weight(cpu_possible_map);
614}
615
616#endif /* CONFIG_SMP */
617
618
619/* Initialization */
620
621static void xics_update_irq_servers(void)
622{
623 int i, j;
624 struct device_node *np;
625 u32 ilen;
Sebastien Dugue1ef80142008-10-22 04:36:32 +0000626 const u32 *ireg;
Milton Miller0641cc92008-10-10 01:56:30 +0000627 u32 hcpuid;
628
629 /* Find the server numbers for the boot cpu. */
630 np = of_get_cpu_node(boot_cpuid, NULL);
631 BUG_ON(!np);
632
633 ireg = of_get_property(np, "ibm,ppc-interrupt-gserver#s", &ilen);
634 if (!ireg) {
635 of_node_put(np);
636 return;
637 }
638
639 i = ilen / sizeof(int);
640 hcpuid = get_hard_smp_processor_id(boot_cpuid);
641
642 /* Global interrupt distribution server is specified in the last
643 * entry of "ibm,ppc-interrupt-gserver#s" property. Get the last
644 * entry fom this property for current boot cpu id and use it as
645 * default distribution server
646 */
647 for (j = 0; j < i; j += 2) {
648 if (ireg[j] == hcpuid) {
649 default_server = hcpuid;
650 default_distrib_server = ireg[j+1];
Milton Miller0641cc92008-10-10 01:56:30 +0000651 }
652 }
653
654 of_node_put(np);
655}
656
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000657static void __init xics_map_one_cpu(int hw_id, unsigned long addr,
658 unsigned long size)
659{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000660 int i;
661
662 /* This may look gross but it's good enough for now, we don't quite
663 * have a hard -> linux processor id matching.
664 */
665 for_each_possible_cpu(i) {
666 if (!cpu_present(i))
667 continue;
668 if (hw_id == get_hard_smp_processor_id(i)) {
669 xics_per_cpu[i] = ioremap(addr, size);
670 return;
671 }
672 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000673}
674
675static void __init xics_init_one_node(struct device_node *np,
676 unsigned int *indx)
677{
678 unsigned int ilen;
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000679 const u32 *ireg;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000680
681 /* This code does the theorically broken assumption that the interrupt
682 * server numbers are the same as the hard CPU numbers.
683 * This happens to be the case so far but we are playing with fire...
684 * should be fixed one of these days. -BenH.
685 */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000686 ireg = of_get_property(np, "ibm,interrupt-server-ranges", NULL);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000687
688 /* Do that ever happen ? we'll know soon enough... but even good'old
689 * f80 does have that property ..
690 */
691 WARN_ON(ireg == NULL);
692 if (ireg) {
693 /*
694 * set node starting index for this node
695 */
696 *indx = *ireg;
697 }
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000698 ireg = of_get_property(np, "reg", &ilen);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000699 if (!ireg)
700 panic("xics_init_IRQ: can't find interrupt reg property");
701
702 while (ilen >= (4 * sizeof(u32))) {
703 unsigned long addr, size;
704
705 /* XXX Use proper OF parsing code here !!! */
706 addr = (unsigned long)*ireg++ << 32;
707 ilen -= sizeof(u32);
708 addr |= *ireg++;
709 ilen -= sizeof(u32);
710 size = (unsigned long)*ireg++ << 32;
711 ilen -= sizeof(u32);
712 size |= *ireg++;
713 ilen -= sizeof(u32);
714 xics_map_one_cpu(*indx, addr, size);
715 (*indx)++;
716 }
717}
718
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000719void __init xics_init_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct device_node *np;
Nathan Fontenotde0723d2008-02-07 07:37:40 +1100722 u32 indx = 0;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000723 int found = 0;
Sebastien Dugue1ef80142008-10-22 04:36:32 +0000724 const u32 *isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 ppc64_boot_msg(0x20, "XICS Init");
727
728 ibm_get_xive = rtas_token("ibm,get-xive");
729 ibm_set_xive = rtas_token("ibm,set-xive");
730 ibm_int_on = rtas_token("ibm,int-on");
731 ibm_int_off = rtas_token("ibm,int-off");
732
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000733 for_each_node_by_type(np, "PowerPC-External-Interrupt-Presentation") {
734 found = 1;
Milton Millera244a952008-10-10 01:56:33 +0000735 if (firmware_has_feature(FW_FEATURE_LPAR)) {
736 of_node_put(np);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000737 break;
Milton Millera244a952008-10-10 01:56:33 +0000738 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000739 xics_init_one_node(np, &indx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000741 if (found == 0)
742 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Sebastien Dugue1ef80142008-10-22 04:36:32 +0000744 /* get the bit size of server numbers */
745 found = 0;
746
747 for_each_compatible_node(np, NULL, "ibm,ppc-xics") {
748 isize = of_get_property(np, "ibm,interrupt-server#-size", NULL);
749
750 if (!isize)
751 continue;
752
753 if (!found) {
754 interrupt_server_size = *isize;
755 found = 1;
756 } else if (*isize != interrupt_server_size) {
757 printk(KERN_WARNING "XICS: "
758 "mismatched ibm,interrupt-server#-size\n");
759 interrupt_server_size = max(*isize,
760 interrupt_server_size);
761 }
762 }
763
Nathan Fontenotde0723d2008-02-07 07:37:40 +1100764 xics_update_irq_servers();
Milton Miller302905a2008-10-10 01:56:28 +0000765 xics_init_host();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000767 if (firmware_has_feature(FW_FEATURE_LPAR))
768 ppc_md.get_irq = xics_get_irq_lpar;
769 else
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000770 ppc_md.get_irq = xics_get_irq_direct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Paul Mackerras6c80a212005-05-06 16:28:56 +1000772 xics_setup_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 ppc64_boot_msg(0x21, "XICS Done");
775}
776
Milton Miller0641cc92008-10-10 01:56:30 +0000777/* Cpu startup, shutdown, and hotplug */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Milton Miller0641cc92008-10-10 01:56:30 +0000779static void xics_set_cpu_priority(unsigned char cppr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Mark Nelson49bd3642009-12-07 20:32:17 +0000781 struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr);
782
Mark Nelson36350e02010-02-07 16:45:12 +0000783 /*
784 * we only really want to set the priority when there's
785 * just one cppr value on the stack
786 */
787 WARN_ON(os_cppr->index != 0);
Mark Nelson49bd3642009-12-07 20:32:17 +0000788
Mark Nelson36350e02010-02-07 16:45:12 +0000789 os_cppr->stack[0] = cppr;
Mark Nelson49bd3642009-12-07 20:32:17 +0000790
Milton Miller0641cc92008-10-10 01:56:30 +0000791 if (firmware_has_feature(FW_FEATURE_LPAR))
792 lpar_cppr_info(cppr);
793 else
794 direct_cppr_info(cppr);
795 iosync();
796}
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000797
Milton Millerb4963252008-10-10 01:56:34 +0000798/* Have the calling processor join or leave the specified global queue */
799static void xics_set_cpu_giq(unsigned int gserver, unsigned int join)
800{
Nathan Lynchedc72ac2008-12-11 09:14:25 +0000801 int index;
802 int status;
803
804 if (!rtas_indicator_present(GLOBAL_INTERRUPT_QUEUE, NULL))
805 return;
806
807 index = (1UL << interrupt_server_size) - 1 - gserver;
808
809 status = rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE, index, join);
810
811 WARN(status < 0, "set-indicator(%d, %d, %u) returned %d\n",
812 GLOBAL_INTERRUPT_QUEUE, index, join, status);
Milton Millerb4963252008-10-10 01:56:34 +0000813}
Milton Miller0641cc92008-10-10 01:56:30 +0000814
815void xics_setup_cpu(void)
816{
Mark Nelson49bd3642009-12-07 20:32:17 +0000817 xics_set_cpu_priority(LOWEST_PRIORITY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Milton Millerb4963252008-10-10 01:56:34 +0000819 xics_set_cpu_giq(default_distrib_server, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
Milton Millerd13f7202008-10-10 01:56:29 +0000821
Al Virof10095c2008-03-29 03:10:38 +0000822void xics_teardown_cpu(void)
R Sharadafce0d572005-06-25 14:58:10 -0700823{
Mark Nelson36350e02010-02-07 16:45:12 +0000824 struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr);
R Sharadafce0d572005-06-25 14:58:10 -0700825 int cpu = smp_processor_id();
R Sharadafce0d572005-06-25 14:58:10 -0700826
Mark Nelson36350e02010-02-07 16:45:12 +0000827 /*
828 * we have to reset the cppr index to 0 because we're
829 * not going to return from the IPI
830 */
831 os_cppr->index = 0;
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100832 xics_set_cpu_priority(0);
Haren Myneni81bbbe92006-04-05 21:10:18 -0600833
Milton Millerb4963252008-10-10 01:56:34 +0000834 /* Clear any pending IPI request */
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -0700835 if (firmware_has_feature(FW_FEATURE_LPAR))
836 lpar_qirr_info(cpu, 0xff);
837 else
838 direct_qirr_info(cpu, 0xff);
Nathan Fontenotc3e85062008-02-07 07:37:31 +1100839}
840
841void xics_kexec_teardown_cpu(int secondary)
842{
Nathan Fontenotc3e85062008-02-07 07:37:31 +1100843 xics_teardown_cpu();
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -0700844
845 /*
Milton Miller1a57c922008-10-10 01:56:35 +0000846 * we take the ipi irq but and never return so we
847 * need to EOI the IPI, but want to leave our priority 0
Haren Myneni81bbbe92006-04-05 21:10:18 -0600848 *
Milton Miller1a57c922008-10-10 01:56:35 +0000849 * should we check all the other interrupts too?
Haren Myneni81bbbe92006-04-05 21:10:18 -0600850 * should we be flagging idle loop instead?
851 * or creating some task to be scheduled?
852 */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000853
Milton Miller1a57c922008-10-10 01:56:35 +0000854 if (firmware_has_feature(FW_FEATURE_LPAR))
855 lpar_xirr_info_set((0x00 << 24) | XICS_IPI);
856 else
857 direct_xirr_info_set((0x00 << 24) | XICS_IPI);
Haren Myneni81bbbe92006-04-05 21:10:18 -0600858
R Sharadafce0d572005-06-25 14:58:10 -0700859 /*
Paul Mackerras6d22d852005-08-04 12:53:37 -0700860 * Some machines need to have at least one cpu in the GIQ,
861 * so leave the master cpu in the group.
R Sharadafce0d572005-06-25 14:58:10 -0700862 */
Haren Myneni81bbbe92006-04-05 21:10:18 -0600863 if (secondary)
Milton Millerb4963252008-10-10 01:56:34 +0000864 xics_set_cpu_giq(default_distrib_server, 0);
R Sharadafce0d572005-06-25 14:58:10 -0700865}
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867#ifdef CONFIG_HOTPLUG_CPU
868
869/* Interrupts are disabled. */
870void xics_migrate_irqs_away(void)
871{
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100872 int cpu = smp_processor_id(), hw_cpu = hard_smp_processor_id();
873 unsigned int irq, virq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Milton Miller302905a2008-10-10 01:56:28 +0000875 /* If we used to be the default server, move to the new "boot_cpuid" */
876 if (hw_cpu == default_server)
877 xics_update_irq_servers();
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 /* Reject any interrupt that was queued to us... */
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100880 xics_set_cpu_priority(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Milton Millerb4963252008-10-10 01:56:34 +0000882 /* Remove ourselves from the global interrupt queue */
883 xics_set_cpu_giq(default_distrib_server, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 /* Allow IPIs again... */
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100886 xics_set_cpu_priority(DEFAULT_PRIORITY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 for_each_irq(virq) {
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000889 struct irq_desc *desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 int xics_status[2];
Milton Millerb4963252008-10-10 01:56:34 +0000891 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 unsigned long flags;
893
894 /* We cant set affinity on ISA interrupts */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000895 if (virq < NUM_ISA_INTERRUPTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 continue;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000897 if (irq_map[virq].host != xics_host)
898 continue;
899 irq = (unsigned int)irq_map[virq].hwirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /* We need to get IPIs still. */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000901 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 continue;
Michael Ellerman6cff46f2009-10-13 19:44:51 +0000903 desc = irq_to_desc(virq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 /* We only need to migrate enabled IRQS */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700906 if (desc == NULL || desc->chip == NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 || desc->action == NULL
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700908 || desc->chip->set_affinity == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 continue;
910
Thomas Gleixner239007b2009-11-17 16:46:45 +0100911 raw_spin_lock_irqsave(&desc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 status = rtas_call(ibm_get_xive, 1, 3, xics_status, irq);
914 if (status) {
Milton Miller2172fe82008-10-10 01:56:39 +0000915 printk(KERN_ERR "%s: ibm,get-xive irq=%u returns %d\n",
916 __func__, irq, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 goto unlock;
918 }
919
920 /*
921 * We only support delivery to all cpus or to one cpu.
922 * The irq has to be migrated only in the single cpu
923 * case.
924 */
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100925 if (xics_status[0] != hw_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 goto unlock;
927
Anton Blanchard26370322005-09-12 13:12:11 +1000928 printk(KERN_WARNING "IRQ %u affinity broken off cpu %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 virq, cpu);
930
931 /* Reset affinity to all cpus */
Michael Ellerman6cff46f2009-10-13 19:44:51 +0000932 cpumask_setall(irq_to_desc(virq)->affinity);
Rusty Russell0de26522008-12-13 21:20:26 +1030933 desc->chip->set_affinity(virq, cpu_all_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100935 raw_spin_unlock_irqrestore(&desc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937}
938#endif