blob: e1904774a70fecd21673f6e899d89251905f91d3 [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>
Milton Miller188bddd2008-10-10 01:56:33 +000021#include <linux/of.h>
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100022
Michael Ellerman57cfb812006-03-21 20:45:59 +110023#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/io.h>
25#include <asm/pgtable.h>
26#include <asm/smp.h>
27#include <asm/rtas.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/hvcall.h>
29#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
David Gibson007e8f52005-10-28 15:35:50 +100031#include "xics.h"
Anton Blanchardb9377ff2006-07-19 08:01:28 +100032#include "plpar_wrappers.h"
David Gibson007e8f52005-10-28 15:35:50 +100033
Milton Miller0641cc92008-10-10 01:56:30 +000034static struct irq_host *xics_host;
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#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 Gibson007e8f52005-10-28 15:35:50 +100042/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * Mark IPIs as higher priority so we can take them inside interrupts that
Thomas Gleixner67144652006-07-01 19:29:22 -070044 * arent marked IRQF_DISABLED
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
46#define IPI_PRIORITY 4
47
Milton Miller0641cc92008-10-10 01:56:30 +000048static unsigned int default_server = 0xFF;
49static unsigned int default_distrib_server = 0;
50static unsigned int interrupt_server_size = 8;
51
52/* RTAS service tokens */
53static int ibm_get_xive;
54static int ibm_set_xive;
55static int ibm_int_on;
56static 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 Torvalds1da177e2005-04-16 15:20:36 -070062struct 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
78static struct xics_ipl __iomem *xics_per_cpu[NR_CPUS];
79
Milton Millerd7cf0ed2007-12-14 15:52:09 +110080static inline unsigned int direct_xirr_info_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Milton Millerd7cf0ed2007-12-14 15:52:09 +110082 int cpu = smp_processor_id();
83
84 return in_be32(&xics_per_cpu[cpu]->xirr.word);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Milton Miller9dc2d442008-10-10 01:56:32 +000087static inline void direct_xirr_info_set(unsigned int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Milton Millerd7cf0ed2007-12-14 15:52:09 +110089 int cpu = smp_processor_id();
90
91 out_be32(&xics_per_cpu[cpu]->xirr.word, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Milton Millerd7cf0ed2007-12-14 15:52:09 +110094static inline void direct_cppr_info(u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Milton Millerd7cf0ed2007-12-14 15:52:09 +110096 int cpu = smp_processor_id();
97
98 out_8(&xics_per_cpu[cpu]->xirr.bytes[0], value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000101static inline void direct_qirr_info(int n_cpu, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
103 out_8(&xics_per_cpu[n_cpu]->qirr.bytes[0], value);
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000107/* LPAR low level accessors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100109static inline unsigned int lpar_xirr_info_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 unsigned long lpar_rc;
David Gibson007e8f52005-10-28 15:35:50 +1000112 unsigned long return_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 lpar_rc = plpar_xirr(&return_value);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200115 if (lpar_rc != H_SUCCESS)
David Gibson007e8f52005-10-28 15:35:50 +1000116 panic(" bad return code xirr - rc = %lx \n", lpar_rc);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000117 return (unsigned int)return_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Milton Miller9dc2d442008-10-10 01:56:32 +0000120static inline void lpar_xirr_info_set(unsigned int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 unsigned long lpar_rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Milton Miller9dc2d442008-10-10 01:56:32 +0000124 lpar_rc = plpar_eoi(value);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200125 if (lpar_rc != H_SUCCESS)
Milton Miller9dc2d442008-10-10 01:56:32 +0000126 panic("bad return code EOI - rc = %ld, value=%x\n", lpar_rc,
127 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100130static inline void lpar_cppr_info(u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 unsigned long lpar_rc;
133
134 lpar_rc = plpar_cppr(value);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200135 if (lpar_rc != H_SUCCESS)
David Gibson007e8f52005-10-28 15:35:50 +1000136 panic("bad return code cppr - rc = %lx\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000139static inline void lpar_qirr_info(int n_cpu , u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 unsigned long lpar_rc;
142
143 lpar_rc = plpar_ipi(get_hard_smp_processor_id(n_cpu), value);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200144 if (lpar_rc != H_SUCCESS)
David Gibson007e8f52005-10-28 15:35:50 +1000145 panic("bad return code qirr - rc = %lx\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Milton Miller0641cc92008-10-10 01:56:30 +0000149/* Interface to generic irq subsystem */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151#ifdef CONFIG_SMP
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000152static int get_irq_server(unsigned int virq, unsigned int strict_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000154 int server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /* For the moment only implement delivery to all cpus or one cpu */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000156 cpumask_t cpumask = irq_desc[virq].affinity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 cpumask_t tmp = CPU_MASK_NONE;
158
159 if (!distribute_irqs)
160 return default_server;
161
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000162 if (!cpus_equal(cpumask, CPU_MASK_ALL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 cpus_and(tmp, cpu_online_map, cpumask);
164
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000165 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 Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000174 if (cpus_equal(cpu_online_map, cpu_present_map))
175 return default_distrib_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000177 return default_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179#else
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000180static int get_irq_server(unsigned int virq, unsigned int strict_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 return default_server;
183}
184#endif
185
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000186static void xics_unmask_irq(unsigned int virq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 unsigned int irq;
189 int call_status;
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000190 int server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000192 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 Torvalds1da177e2005-04-16 15:20:36 -0700197 return;
198
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000199 server = get_irq_server(virq, 0);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 call_status = rtas_call(ibm_set_xive, 3, 1, NULL, irq, server,
202 DEFAULT_PRIORITY);
203 if (call_status != 0) {
Milton Miller2172fe82008-10-10 01:56:39 +0000204 printk(KERN_ERR
205 "%s: ibm_set_xive irq %u server %x returned %d\n",
206 __func__, irq, server, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 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) {
Milton Miller2172fe82008-10-10 01:56:39 +0000213 printk(KERN_ERR "%s: ibm_int_on irq=%u returned %d\n",
214 __func__, irq, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return;
216 }
217}
218
Milton Miller0641cc92008-10-10 01:56:30 +0000219static unsigned int xics_startup(unsigned int virq)
220{
221 /* unmask it */
222 xics_unmask_irq(virq);
223 return 0;
224}
225
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000226static void xics_mask_real_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 int call_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
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) {
Milton Miller2172fe82008-10-10 01:56:39 +0000235 printk(KERN_ERR "%s: ibm_int_off irq=%u returned %d\n",
236 __func__, irq, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return;
238 }
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* Have to set XIVE to 0xff to be able to remove a slot */
Michal Ostrowski673aeb72006-12-20 07:29:40 -0600241 call_status = rtas_call(ibm_set_xive, 3, 1, NULL, irq,
242 default_server, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (call_status != 0) {
Milton Miller2172fe82008-10-10 01:56:39 +0000244 printk(KERN_ERR "%s: ibm_set_xive(0xff) irq=%u returned %d\n",
245 __func__, irq, call_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return;
247 }
248}
249
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000250static void xics_mask_irq(unsigned int virq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 unsigned int irq;
253
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000254 pr_debug("xics: mask virq %d\n", virq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000256 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 Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000260}
261
Milton Miller0641cc92008-10-10 01:56:30 +0000262static void xics_mask_unknown_vec(unsigned int vec)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000263{
Milton Miller0641cc92008-10-10 01:56:30 +0000264 printk(KERN_ERR "Interrupt %u (real) is invalid, disabling it.\n", vec);
265 xics_mask_real_irq(vec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Milton Miller8767e9b2008-10-10 01:56:23 +0000268static inline unsigned int xics_xirr_vector(unsigned int xirr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Milton Miller8767e9b2008-10-10 01:56:23 +0000270 /*
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 Torvalds1da177e2005-04-16 15:20:36 -0700276
Olaf Hering35a84c22006-10-07 22:08:26 +1000277static unsigned int xics_get_irq_direct(void)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000278{
Milton Miller8767e9b2008-10-10 01:56:23 +0000279 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 Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000296}
297
Olaf Hering35a84c22006-10-07 22:08:26 +1000298static unsigned int xics_get_irq_lpar(void)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000299{
Milton Miller8767e9b2008-10-10 01:56:23 +0000300 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 Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Milton Miller0641cc92008-10-10 01:56:30 +0000319static void xics_eoi_direct(unsigned int virq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Milton Miller0641cc92008-10-10 01:56:30 +0000321 unsigned int irq = (unsigned int)irq_map[virq].hwirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000323 iosync();
Milton Miller0641cc92008-10-10 01:56:30 +0000324 direct_xirr_info_set((0xff << 24) | irq);
325}
326
327static 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 Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000333}
334
335static 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 M7ccb4a62007-06-13 00:51:57 +1000340 int irq_server;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000341
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000342 irq = (unsigned int)irq_map[virq].hwirq;
343 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000344 return;
345
346 status = rtas_call(ibm_get_xive, 1, 3, xics_status, irq);
347
348 if (status) {
Milton Miller2172fe82008-10-10 01:56:39 +0000349 printk(KERN_ERR "%s: ibm,get-xive irq=%u returns %d\n",
350 __func__, irq, status);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000351 return;
352 }
353
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000354 /*
355 * For the moment only implement delivery to all cpus or one cpu.
356 * Get current irq_server for the given irq
357 */
Anton Blancharde48395f2007-10-01 07:45:55 +1000358 irq_server = get_irq_server(virq, 1);
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000359 if (irq_server == -1) {
360 char cpulist[128];
361 cpumask_scnprintf(cpulist, sizeof(cpulist), cpumask);
Milton Miller2172fe82008-10-10 01:56:39 +0000362 printk(KERN_WARNING
363 "%s: No online cpus in the mask %s for irq %d\n",
364 __func__, cpulist, virq);
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000365 return;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000366 }
367
368 status = rtas_call(ibm_set_xive, 3, 1, NULL,
Mohan Kumar M7ccb4a62007-06-13 00:51:57 +1000369 irq, irq_server, xics_status[1]);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000370
371 if (status) {
Milton Miller2172fe82008-10-10 01:56:39 +0000372 printk(KERN_ERR "%s: ibm,set-xive irq=%u returns %d\n",
373 __func__, irq, status);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000374 return;
375 }
376}
377
378static struct irq_chip xics_pic_direct = {
379 .typename = " XICS ",
380 .startup = xics_startup,
381 .mask = xics_mask_irq,
382 .unmask = xics_unmask_irq,
383 .eoi = xics_eoi_direct,
384 .set_affinity = xics_set_affinity
385};
386
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000387static struct irq_chip xics_pic_lpar = {
388 .typename = " XICS ",
389 .startup = xics_startup,
390 .mask = xics_mask_irq,
391 .unmask = xics_unmask_irq,
392 .eoi = xics_eoi_lpar,
393 .set_affinity = xics_set_affinity
394};
395
Milton Miller0641cc92008-10-10 01:56:30 +0000396
397/* Interface to arch irq controller subsystem layer */
398
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100399/* Points to the irq_chip we're actually using */
400static struct irq_chip *xics_irq_chip;
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000401
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000402static int xics_host_match(struct irq_host *h, struct device_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000404 /* IBM machines have interrupt parents of various funky types for things
405 * like vdevices, events, etc... The trick we use here is to match
406 * everything here except the legacy 8259 which is compatible "chrp,iic"
Paul Mackerras6c80a212005-05-06 16:28:56 +1000407 */
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000408 return !of_device_is_compatible(node, "chrp,iic");
Paul Mackerras6c80a212005-05-06 16:28:56 +1000409}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100411static int xics_host_map(struct irq_host *h, unsigned int virq,
412 irq_hw_number_t hw)
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000413{
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100414 pr_debug("xics: map virq %d, hwirq 0x%lx\n", virq, hw);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000415
Sebastien Dugue967e0122008-09-04 22:37:07 +1000416 /* Insert the interrupt mapping into the radix tree for fast lookup */
417 irq_radix_revmap_insert(xics_host, virq, hw);
418
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000419 get_irq_desc(virq)->status |= IRQ_LEVEL;
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100420 set_irq_chip_and_handler(virq, xics_irq_chip, handle_fasteoi_irq);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000421 return 0;
422}
423
424static int xics_host_xlate(struct irq_host *h, struct device_node *ct,
425 u32 *intspec, unsigned int intsize,
426 irq_hw_number_t *out_hwirq, unsigned int *out_flags)
427
428{
429 /* Current xics implementation translates everything
430 * to level. It is not technically right for MSIs but this
431 * is irrelevant at this point. We might get smarter in the future
432 */
433 *out_hwirq = intspec[0];
434 *out_flags = IRQ_TYPE_LEVEL_LOW;
435
436 return 0;
437}
438
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100439static struct irq_host_ops xics_host_ops = {
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000440 .match = xics_host_match,
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100441 .map = xics_host_map,
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000442 .xlate = xics_host_xlate,
443};
444
445static void __init xics_init_host(void)
446{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000447 if (firmware_has_feature(FW_FEATURE_LPAR))
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100448 xics_irq_chip = &xics_pic_lpar;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000449 else
Michael Ellerman1af9fa82008-04-01 17:42:27 +1100450 xics_irq_chip = &xics_pic_direct;
451
452 xics_host = irq_alloc_host(NULL, IRQ_HOST_MAP_TREE, 0, &xics_host_ops,
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000453 XICS_IRQ_SPURIOUS);
454 BUG_ON(xics_host == NULL);
455 irq_set_default_host(xics_host);
456}
457
Milton Miller0641cc92008-10-10 01:56:30 +0000458
459/* Inter-processor interrupt support */
460
461#ifdef CONFIG_SMP
462/*
463 * XICS only has a single IPI, so encode the messages per CPU
464 */
465struct xics_ipi_struct {
466 unsigned long value;
467 } ____cacheline_aligned;
468
469static struct xics_ipi_struct xics_ipi_message[NR_CPUS] __cacheline_aligned;
470
471static inline void smp_xics_do_message(int cpu, int msg)
472{
473 set_bit(msg, &xics_ipi_message[cpu].value);
474 mb();
475 if (firmware_has_feature(FW_FEATURE_LPAR))
476 lpar_qirr_info(cpu, IPI_PRIORITY);
477 else
478 direct_qirr_info(cpu, IPI_PRIORITY);
479}
480
481void smp_xics_message_pass(int target, int msg)
482{
483 unsigned int i;
484
485 if (target < NR_CPUS) {
486 smp_xics_do_message(target, msg);
487 } else {
488 for_each_online_cpu(i) {
489 if (target == MSG_ALL_BUT_SELF
490 && i == smp_processor_id())
491 continue;
492 smp_xics_do_message(i, msg);
493 }
494 }
495}
496
497static irqreturn_t xics_ipi_dispatch(int cpu)
498{
499 WARN_ON(cpu_is_offline(cpu));
500
Milton Miller199f45c2008-10-10 01:56:44 +0000501 mb(); /* order mmio clearing qirr */
Milton Miller0641cc92008-10-10 01:56:30 +0000502 while (xics_ipi_message[cpu].value) {
503 if (test_and_clear_bit(PPC_MSG_CALL_FUNCTION,
504 &xics_ipi_message[cpu].value)) {
Milton Miller0641cc92008-10-10 01:56:30 +0000505 smp_message_recv(PPC_MSG_CALL_FUNCTION);
506 }
507 if (test_and_clear_bit(PPC_MSG_RESCHEDULE,
508 &xics_ipi_message[cpu].value)) {
Milton Miller0641cc92008-10-10 01:56:30 +0000509 smp_message_recv(PPC_MSG_RESCHEDULE);
510 }
511 if (test_and_clear_bit(PPC_MSG_CALL_FUNC_SINGLE,
512 &xics_ipi_message[cpu].value)) {
Milton Miller0641cc92008-10-10 01:56:30 +0000513 smp_message_recv(PPC_MSG_CALL_FUNC_SINGLE);
514 }
515#if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC)
516 if (test_and_clear_bit(PPC_MSG_DEBUGGER_BREAK,
517 &xics_ipi_message[cpu].value)) {
Milton Miller0641cc92008-10-10 01:56:30 +0000518 smp_message_recv(PPC_MSG_DEBUGGER_BREAK);
519 }
520#endif
521 }
522 return IRQ_HANDLED;
523}
524
525static irqreturn_t xics_ipi_action_direct(int irq, void *dev_id)
526{
527 int cpu = smp_processor_id();
528
529 direct_qirr_info(cpu, 0xff);
530
531 return xics_ipi_dispatch(cpu);
532}
533
534static irqreturn_t xics_ipi_action_lpar(int irq, void *dev_id)
535{
536 int cpu = smp_processor_id();
537
538 lpar_qirr_info(cpu, 0xff);
539
540 return xics_ipi_dispatch(cpu);
541}
542
543static void xics_request_ipi(void)
544{
545 unsigned int ipi;
546 int rc;
547
548 ipi = irq_create_mapping(xics_host, XICS_IPI);
549 BUG_ON(ipi == NO_IRQ);
550
551 /*
552 * IPIs are marked IRQF_DISABLED as they must run with irqs
553 * disabled
554 */
555 set_irq_handler(ipi, handle_percpu_irq);
556 if (firmware_has_feature(FW_FEATURE_LPAR))
Milton Millerd879f382008-10-10 01:56:39 +0000557 rc = request_irq(ipi, xics_ipi_action_lpar,
558 IRQF_DISABLED|IRQF_PERCPU, "IPI", NULL);
Milton Miller0641cc92008-10-10 01:56:30 +0000559 else
Milton Millerd879f382008-10-10 01:56:39 +0000560 rc = request_irq(ipi, xics_ipi_action_direct,
561 IRQF_DISABLED|IRQF_PERCPU, "IPI", NULL);
Milton Miller0641cc92008-10-10 01:56:30 +0000562 BUG_ON(rc);
563}
564
565int __init smp_xics_probe(void)
566{
567 xics_request_ipi();
568
569 return cpus_weight(cpu_possible_map);
570}
571
572#endif /* CONFIG_SMP */
573
574
575/* Initialization */
576
577static void xics_update_irq_servers(void)
578{
579 int i, j;
580 struct device_node *np;
581 u32 ilen;
582 const u32 *ireg, *isize;
583 u32 hcpuid;
584
585 /* Find the server numbers for the boot cpu. */
586 np = of_get_cpu_node(boot_cpuid, NULL);
587 BUG_ON(!np);
588
589 ireg = of_get_property(np, "ibm,ppc-interrupt-gserver#s", &ilen);
590 if (!ireg) {
591 of_node_put(np);
592 return;
593 }
594
595 i = ilen / sizeof(int);
596 hcpuid = get_hard_smp_processor_id(boot_cpuid);
597
598 /* Global interrupt distribution server is specified in the last
599 * entry of "ibm,ppc-interrupt-gserver#s" property. Get the last
600 * entry fom this property for current boot cpu id and use it as
601 * default distribution server
602 */
603 for (j = 0; j < i; j += 2) {
604 if (ireg[j] == hcpuid) {
605 default_server = hcpuid;
606 default_distrib_server = ireg[j+1];
Milton Miller0641cc92008-10-10 01:56:30 +0000607 }
608 }
609
Milton Millera244a952008-10-10 01:56:33 +0000610 /* get the bit size of server numbers */
611 isize = of_get_property(np, "ibm,interrupt-server#-size", NULL);
612 if (isize)
613 interrupt_server_size = *isize;
614
Milton Miller0641cc92008-10-10 01:56:30 +0000615 of_node_put(np);
616}
617
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000618static void __init xics_map_one_cpu(int hw_id, unsigned long addr,
619 unsigned long size)
620{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000621 int i;
622
623 /* This may look gross but it's good enough for now, we don't quite
624 * have a hard -> linux processor id matching.
625 */
626 for_each_possible_cpu(i) {
627 if (!cpu_present(i))
628 continue;
629 if (hw_id == get_hard_smp_processor_id(i)) {
630 xics_per_cpu[i] = ioremap(addr, size);
631 return;
632 }
633 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000634}
635
636static void __init xics_init_one_node(struct device_node *np,
637 unsigned int *indx)
638{
639 unsigned int ilen;
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000640 const u32 *ireg;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000641
642 /* This code does the theorically broken assumption that the interrupt
643 * server numbers are the same as the hard CPU numbers.
644 * This happens to be the case so far but we are playing with fire...
645 * should be fixed one of these days. -BenH.
646 */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000647 ireg = of_get_property(np, "ibm,interrupt-server-ranges", NULL);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000648
649 /* Do that ever happen ? we'll know soon enough... but even good'old
650 * f80 does have that property ..
651 */
652 WARN_ON(ireg == NULL);
653 if (ireg) {
654 /*
655 * set node starting index for this node
656 */
657 *indx = *ireg;
658 }
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000659 ireg = of_get_property(np, "reg", &ilen);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000660 if (!ireg)
661 panic("xics_init_IRQ: can't find interrupt reg property");
662
663 while (ilen >= (4 * sizeof(u32))) {
664 unsigned long addr, size;
665
666 /* XXX Use proper OF parsing code here !!! */
667 addr = (unsigned long)*ireg++ << 32;
668 ilen -= sizeof(u32);
669 addr |= *ireg++;
670 ilen -= sizeof(u32);
671 size = (unsigned long)*ireg++ << 32;
672 ilen -= sizeof(u32);
673 size |= *ireg++;
674 ilen -= sizeof(u32);
675 xics_map_one_cpu(*indx, addr, size);
676 (*indx)++;
677 }
678}
679
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000680void __init xics_init_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct device_node *np;
Nathan Fontenotde0723d2008-02-07 07:37:40 +1100683 u32 indx = 0;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000684 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 ppc64_boot_msg(0x20, "XICS Init");
687
688 ibm_get_xive = rtas_token("ibm,get-xive");
689 ibm_set_xive = rtas_token("ibm,set-xive");
690 ibm_int_on = rtas_token("ibm,int-on");
691 ibm_int_off = rtas_token("ibm,int-off");
692
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000693 for_each_node_by_type(np, "PowerPC-External-Interrupt-Presentation") {
694 found = 1;
Milton Millera244a952008-10-10 01:56:33 +0000695 if (firmware_has_feature(FW_FEATURE_LPAR)) {
696 of_node_put(np);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000697 break;
Milton Millera244a952008-10-10 01:56:33 +0000698 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000699 xics_init_one_node(np, &indx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000701 if (found == 0)
702 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Nathan Fontenotde0723d2008-02-07 07:37:40 +1100704 xics_update_irq_servers();
Milton Miller302905a2008-10-10 01:56:28 +0000705 xics_init_host();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000707 if (firmware_has_feature(FW_FEATURE_LPAR))
708 ppc_md.get_irq = xics_get_irq_lpar;
709 else
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000710 ppc_md.get_irq = xics_get_irq_direct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Paul Mackerras6c80a212005-05-06 16:28:56 +1000712 xics_setup_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 ppc64_boot_msg(0x21, "XICS Done");
715}
716
Milton Miller0641cc92008-10-10 01:56:30 +0000717/* Cpu startup, shutdown, and hotplug */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Milton Miller0641cc92008-10-10 01:56:30 +0000719static void xics_set_cpu_priority(unsigned char cppr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Milton Miller0641cc92008-10-10 01:56:30 +0000721 if (firmware_has_feature(FW_FEATURE_LPAR))
722 lpar_cppr_info(cppr);
723 else
724 direct_cppr_info(cppr);
725 iosync();
726}
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000727
Milton Millerb4963252008-10-10 01:56:34 +0000728/* Have the calling processor join or leave the specified global queue */
729static void xics_set_cpu_giq(unsigned int gserver, unsigned int join)
730{
731 int status = rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE,
732 (1UL << interrupt_server_size) - 1 - gserver, join);
733 WARN_ON(status < 0);
734}
Milton Miller0641cc92008-10-10 01:56:30 +0000735
736void xics_setup_cpu(void)
737{
738 xics_set_cpu_priority(0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Milton Millerb4963252008-10-10 01:56:34 +0000740 xics_set_cpu_giq(default_distrib_server, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
Milton Millerd13f7202008-10-10 01:56:29 +0000742
Al Virof10095c2008-03-29 03:10:38 +0000743void xics_teardown_cpu(void)
R Sharadafce0d572005-06-25 14:58:10 -0700744{
745 int cpu = smp_processor_id();
R Sharadafce0d572005-06-25 14:58:10 -0700746
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100747 xics_set_cpu_priority(0);
Haren Myneni81bbbe92006-04-05 21:10:18 -0600748
Milton Millerb4963252008-10-10 01:56:34 +0000749 /* Clear any pending IPI request */
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -0700750 if (firmware_has_feature(FW_FEATURE_LPAR))
751 lpar_qirr_info(cpu, 0xff);
752 else
753 direct_qirr_info(cpu, 0xff);
Nathan Fontenotc3e85062008-02-07 07:37:31 +1100754}
755
756void xics_kexec_teardown_cpu(int secondary)
757{
Nathan Fontenotc3e85062008-02-07 07:37:31 +1100758 xics_teardown_cpu();
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -0700759
760 /*
Milton Miller1a57c922008-10-10 01:56:35 +0000761 * we take the ipi irq but and never return so we
762 * need to EOI the IPI, but want to leave our priority 0
Haren Myneni81bbbe92006-04-05 21:10:18 -0600763 *
Milton Miller1a57c922008-10-10 01:56:35 +0000764 * should we check all the other interrupts too?
Haren Myneni81bbbe92006-04-05 21:10:18 -0600765 * should we be flagging idle loop instead?
766 * or creating some task to be scheduled?
767 */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000768
Milton Miller1a57c922008-10-10 01:56:35 +0000769 if (firmware_has_feature(FW_FEATURE_LPAR))
770 lpar_xirr_info_set((0x00 << 24) | XICS_IPI);
771 else
772 direct_xirr_info_set((0x00 << 24) | XICS_IPI);
Haren Myneni81bbbe92006-04-05 21:10:18 -0600773
R Sharadafce0d572005-06-25 14:58:10 -0700774 /*
Paul Mackerras6d22d852005-08-04 12:53:37 -0700775 * Some machines need to have at least one cpu in the GIQ,
776 * so leave the master cpu in the group.
R Sharadafce0d572005-06-25 14:58:10 -0700777 */
Haren Myneni81bbbe92006-04-05 21:10:18 -0600778 if (secondary)
Milton Millerb4963252008-10-10 01:56:34 +0000779 xics_set_cpu_giq(default_distrib_server, 0);
R Sharadafce0d572005-06-25 14:58:10 -0700780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782#ifdef CONFIG_HOTPLUG_CPU
783
784/* Interrupts are disabled. */
785void xics_migrate_irqs_away(void)
786{
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100787 int cpu = smp_processor_id(), hw_cpu = hard_smp_processor_id();
788 unsigned int irq, virq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Milton Miller302905a2008-10-10 01:56:28 +0000790 /* If we used to be the default server, move to the new "boot_cpuid" */
791 if (hw_cpu == default_server)
792 xics_update_irq_servers();
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /* Reject any interrupt that was queued to us... */
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100795 xics_set_cpu_priority(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Milton Millerb4963252008-10-10 01:56:34 +0000797 /* Remove ourselves from the global interrupt queue */
798 xics_set_cpu_giq(default_distrib_server, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 /* Allow IPIs again... */
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100801 xics_set_cpu_priority(DEFAULT_PRIORITY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 for_each_irq(virq) {
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000804 struct irq_desc *desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 int xics_status[2];
Milton Millerb4963252008-10-10 01:56:34 +0000806 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 unsigned long flags;
808
809 /* We cant set affinity on ISA interrupts */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000810 if (virq < NUM_ISA_INTERRUPTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 continue;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000812 if (irq_map[virq].host != xics_host)
813 continue;
814 irq = (unsigned int)irq_map[virq].hwirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /* We need to get IPIs still. */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000816 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 continue;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000818 desc = get_irq_desc(virq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 /* We only need to migrate enabled IRQS */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700821 if (desc == NULL || desc->chip == NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 || desc->action == NULL
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700823 || desc->chip->set_affinity == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 continue;
825
826 spin_lock_irqsave(&desc->lock, flags);
827
828 status = rtas_call(ibm_get_xive, 1, 3, xics_status, irq);
829 if (status) {
Milton Miller2172fe82008-10-10 01:56:39 +0000830 printk(KERN_ERR "%s: ibm,get-xive irq=%u returns %d\n",
831 __func__, irq, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 goto unlock;
833 }
834
835 /*
836 * We only support delivery to all cpus or to one cpu.
837 * The irq has to be migrated only in the single cpu
838 * case.
839 */
Milton Millerd7cf0ed2007-12-14 15:52:09 +1100840 if (xics_status[0] != hw_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 goto unlock;
842
Anton Blanchard26370322005-09-12 13:12:11 +1000843 printk(KERN_WARNING "IRQ %u affinity broken off cpu %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 virq, cpu);
845
846 /* Reset affinity to all cpus */
Nathan Fontenota52572d2008-02-07 07:37:26 +1100847 irq_desc[virq].affinity = CPU_MASK_ALL;
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700848 desc->chip->set_affinity(virq, CPU_MASK_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849unlock:
850 spin_unlock_irqrestore(&desc->lock, flags);
851 }
852}
853#endif