Merge branch 'tracing/core' of git://git.kernel.org/pub/scm/linux/kernel/git/frederic...
[linux-2.6-block.git] / arch / powerpc / platforms / pseries / xics.c
CommitLineData
007e8f51
DG
1/*
2 * arch/powerpc/platforms/pseries/xics.c
1da177e4
LT
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 */
0ebfff14 11
1da177e4
LT
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>
1da177e4 18#include <linux/init.h>
1da177e4
LT
19#include <linux/radix-tree.h>
20#include <linux/cpu.h>
8435b027 21#include <linux/msi.h>
188bdddd 22#include <linux/of.h>
49bd3647 23#include <linux/percpu.h>
0ebfff14 24
57cfb814 25#include <asm/firmware.h>
1da177e4
LT
26#include <asm/io.h>
27#include <asm/pgtable.h>
28#include <asm/smp.h>
29#include <asm/rtas.h>
1da177e4
LT
30#include <asm/hvcall.h>
31#include <asm/machdep.h>
1da177e4 32
007e8f51 33#include "xics.h"
b9377ffc 34#include "plpar_wrappers.h"
007e8f51 35
0641cc91
MM
36static struct irq_host *xics_host;
37
1da177e4
LT
38#define XICS_IPI 2
39#define XICS_IRQ_SPURIOUS 0
40
41/* Want a priority other than 0. Various HW issues require this. */
42#define DEFAULT_PRIORITY 5
43
007e8f51 44/*
1da177e4 45 * Mark IPIs as higher priority so we can take them inside interrupts that
6714465e 46 * arent marked IRQF_DISABLED
1da177e4
LT
47 */
48#define IPI_PRIORITY 4
49
49bd3647
MN
50/* The least favored priority */
51#define LOWEST_PRIORITY 0xFF
52
53/* The number of priorities defined above */
54#define MAX_NUM_PRIORITIES 3
55
0641cc91
MM
56static 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
49bd3647
MN
66struct xics_cppr {
67 unsigned char stack[MAX_NUM_PRIORITIES];
68 int index;
69};
70
71static DEFINE_PER_CPU(struct xics_cppr, xics_cppr);
0641cc91
MM
72
73/* Direct hardware low level accessors */
74
75/* The part of the interrupt presentation layer that we care about */
1da177e4
LT
76struct 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
d7cf0edb 94static inline unsigned int direct_xirr_info_get(void)
1da177e4 95{
d7cf0edb
MM
96 int cpu = smp_processor_id();
97
98 return in_be32(&xics_per_cpu[cpu]->xirr.word);
1da177e4
LT
99}
100
9dc2d441 101static inline void direct_xirr_info_set(unsigned int value)
1da177e4 102{
d7cf0edb
MM
103 int cpu = smp_processor_id();
104
105 out_be32(&xics_per_cpu[cpu]->xirr.word, value);
1da177e4
LT
106}
107
d7cf0edb 108static inline void direct_cppr_info(u8 value)
1da177e4 109{
d7cf0edb
MM
110 int cpu = smp_processor_id();
111
112 out_8(&xics_per_cpu[cpu]->xirr.bytes[0], value);
1da177e4
LT
113}
114
b9e5b4e6 115static inline void direct_qirr_info(int n_cpu, u8 value)
1da177e4
LT
116{
117 out_8(&xics_per_cpu[n_cpu]->qirr.bytes[0], value);
118}
119
1da177e4 120
b9e5b4e6 121/* LPAR low level accessors */
1da177e4 122
d7cf0edb 123static inline unsigned int lpar_xirr_info_get(void)
1da177e4
LT
124{
125 unsigned long lpar_rc;
007e8f51 126 unsigned long return_value;
1da177e4
LT
127
128 lpar_rc = plpar_xirr(&return_value);
706c8c93 129 if (lpar_rc != H_SUCCESS)
007e8f51 130 panic(" bad return code xirr - rc = %lx \n", lpar_rc);
0ebfff14 131 return (unsigned int)return_value;
1da177e4
LT
132}
133
9dc2d441 134static inline void lpar_xirr_info_set(unsigned int value)
1da177e4
LT
135{
136 unsigned long lpar_rc;
1da177e4 137
9dc2d441 138 lpar_rc = plpar_eoi(value);
706c8c93 139 if (lpar_rc != H_SUCCESS)
9dc2d441
MM
140 panic("bad return code EOI - rc = %ld, value=%x\n", lpar_rc,
141 value);
1da177e4
LT
142}
143
d7cf0edb 144static inline void lpar_cppr_info(u8 value)
1da177e4
LT
145{
146 unsigned long lpar_rc;
147
148 lpar_rc = plpar_cppr(value);
706c8c93 149 if (lpar_rc != H_SUCCESS)
007e8f51 150 panic("bad return code cppr - rc = %lx\n", lpar_rc);
1da177e4
LT
151}
152
b9e5b4e6 153static inline void lpar_qirr_info(int n_cpu , u8 value)
1da177e4
LT
154{
155 unsigned long lpar_rc;
156
157 lpar_rc = plpar_ipi(get_hard_smp_processor_id(n_cpu), value);
706c8c93 158 if (lpar_rc != H_SUCCESS)
007e8f51 159 panic("bad return code qirr - rc = %lx\n", lpar_rc);
1da177e4
LT
160}
161
1da177e4 162
0641cc91 163/* Interface to generic irq subsystem */
1da177e4
LT
164
165#ifdef CONFIG_SMP
92cb3694
AB
166static int get_irq_server(unsigned int virq, cpumask_t cpumask,
167 unsigned int strict_check)
1da177e4 168{
7ccb4a66 169 int server;
1da177e4 170 /* For the moment only implement delivery to all cpus or one cpu */
1da177e4
LT
171 cpumask_t tmp = CPU_MASK_NONE;
172
173 if (!distribute_irqs)
174 return default_server;
175
7ccb4a66 176 if (!cpus_equal(cpumask, CPU_MASK_ALL)) {
1da177e4
LT
177 cpus_and(tmp, cpu_online_map, cpumask);
178
7ccb4a66
MK
179 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;
1da177e4
LT
186 }
187
7ccb4a66
MK
188 if (cpus_equal(cpu_online_map, cpu_present_map))
189 return default_distrib_server;
1da177e4 190
7ccb4a66 191 return default_server;
1da177e4
LT
192}
193#else
bf647faf 194#define get_irq_server(virq, cpumask, strict_check) (default_server)
1da177e4
LT
195#endif
196
b9e5b4e6 197static void xics_unmask_irq(unsigned int virq)
1da177e4
LT
198{
199 unsigned int irq;
200 int call_status;
7ccb4a66 201 int server;
1da177e4 202
b69e9e93 203 pr_devel("xics: unmask virq %d\n", virq);
0ebfff14
BH
204
205 irq = (unsigned int)irq_map[virq].hwirq;
b69e9e93 206 pr_devel(" -> map to hwirq 0x%x\n", irq);
0ebfff14 207 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
1da177e4
LT
208 return;
209
92cb3694 210 server = get_irq_server(virq, *(irq_to_desc(virq)->affinity), 0);
b9e5b4e6 211
1da177e4
LT
212 call_status = rtas_call(ibm_set_xive, 3, 1, NULL, irq, server,
213 DEFAULT_PRIORITY);
214 if (call_status != 0) {
2172fe87
MM
215 printk(KERN_ERR
216 "%s: ibm_set_xive irq %u server %x returned %d\n",
217 __func__, irq, server, call_status);
1da177e4
LT
218 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) {
2172fe87
MM
224 printk(KERN_ERR "%s: ibm_int_on irq=%u returned %d\n",
225 __func__, irq, call_status);
1da177e4
LT
226 return;
227 }
228}
229
0641cc91
MM
230static unsigned int xics_startup(unsigned int virq)
231{
8435b027
AD
232 /*
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
0641cc91
MM
240 /* unmask it */
241 xics_unmask_irq(virq);
242 return 0;
243}
244
b9e5b4e6 245static void xics_mask_real_irq(unsigned int irq)
1da177e4
LT
246{
247 int call_status;
1da177e4
LT
248
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) {
2172fe87
MM
254 printk(KERN_ERR "%s: ibm_int_off irq=%u returned %d\n",
255 __func__, irq, call_status);
1da177e4
LT
256 return;
257 }
258
1da177e4 259 /* Have to set XIVE to 0xff to be able to remove a slot */
673aeb76
MO
260 call_status = rtas_call(ibm_set_xive, 3, 1, NULL, irq,
261 default_server, 0xff);
1da177e4 262 if (call_status != 0) {
2172fe87
MM
263 printk(KERN_ERR "%s: ibm_set_xive(0xff) irq=%u returned %d\n",
264 __func__, irq, call_status);
1da177e4
LT
265 return;
266 }
267}
268
b9e5b4e6 269static void xics_mask_irq(unsigned int virq)
1da177e4
LT
270{
271 unsigned int irq;
272
b69e9e93 273 pr_devel("xics: mask virq %d\n", virq);
0ebfff14
BH
274
275 irq = (unsigned int)irq_map[virq].hwirq;
276 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
277 return;
278 xics_mask_real_irq(irq);
b9e5b4e6
BH
279}
280
0641cc91 281static void xics_mask_unknown_vec(unsigned int vec)
1da177e4 282{
0641cc91
MM
283 printk(KERN_ERR "Interrupt %u (real) is invalid, disabling it.\n", vec);
284 xics_mask_real_irq(vec);
1da177e4
LT
285}
286
8767e9ba 287static inline unsigned int xics_xirr_vector(unsigned int xirr)
1da177e4 288{
8767e9ba
MM
289 /*
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}
295
49bd3647
MN
296static 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
8767e9ba
MM
309static unsigned int xics_get_irq_direct(void)
310{
311 unsigned int xirr = direct_xirr_info_get();
312 unsigned int vec = xics_xirr_vector(xirr);
313 unsigned int irq;
1da177e4 314
b9e5b4e6
BH
315 if (vec == XICS_IRQ_SPURIOUS)
316 return NO_IRQ;
8767e9ba 317
967e012e 318 irq = irq_radix_revmap_lookup(xics_host, vec);
49bd3647
MN
319 if (likely(irq != NO_IRQ)) {
320 push_cppr(vec);
0ebfff14 321 return irq;
49bd3647 322 }
b9e5b4e6 323
8767e9ba
MM
324 /* We don't have a linux mapping, so have rtas mask it. */
325 xics_mask_unknown_vec(vec);
1da177e4 326
8767e9ba
MM
327 /* We might learn about it later, so EOI it */
328 direct_xirr_info_set(xirr);
329 return NO_IRQ;
b9e5b4e6
BH
330}
331
35a84c2f 332static unsigned int xics_get_irq_lpar(void)
1da177e4 333{
8767e9ba
MM
334 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);
49bd3647
MN
342 if (likely(irq != NO_IRQ)) {
343 push_cppr(vec);
8767e9ba 344 return irq;
49bd3647 345 }
8767e9ba
MM
346
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;
b9e5b4e6
BH
353}
354
49bd3647
MN
355static 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
0641cc91 365static void xics_eoi_direct(unsigned int virq)
b9e5b4e6 366{
0641cc91 367 unsigned int irq = (unsigned int)irq_map[virq].hwirq;
b9e5b4e6 368
0641cc91 369 iosync();
49bd3647 370 direct_xirr_info_set((pop_cppr() << 24) | irq);
b9e5b4e6
BH
371}
372
0641cc91 373static void xics_eoi_lpar(unsigned int virq)
b9e5b4e6 374{
0641cc91 375 unsigned int irq = (unsigned int)irq_map[virq].hwirq;
1da177e4 376
b9e5b4e6 377 iosync();
49bd3647 378 lpar_xirr_info_set((pop_cppr() << 24) | irq);
b9e5b4e6
BH
379}
380
d5dedd45 381static int xics_set_affinity(unsigned int virq, const struct cpumask *cpumask)
b9e5b4e6
BH
382{
383 unsigned int irq;
384 int status;
385 int xics_status[2];
7ccb4a66 386 int irq_server;
b9e5b4e6 387
0ebfff14
BH
388 irq = (unsigned int)irq_map[virq].hwirq;
389 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
d5dedd45 390 return -1;
b9e5b4e6
BH
391
392 status = rtas_call(ibm_get_xive, 1, 3, xics_status, irq);
393
394 if (status) {
2172fe87
MM
395 printk(KERN_ERR "%s: ibm,get-xive irq=%u returns %d\n",
396 __func__, irq, status);
d5dedd45 397 return -1;
b9e5b4e6
BH
398 }
399
7ccb4a66
MK
400 /*
401 * For the moment only implement delivery to all cpus or one cpu.
402 * Get current irq_server for the given irq
403 */
92cb3694 404 irq_server = get_irq_server(virq, *cpumask, 1);
7ccb4a66
MK
405 if (irq_server == -1) {
406 char cpulist[128];
407 cpumask_scnprintf(cpulist, sizeof(cpulist), cpumask);
2172fe87
MM
408 printk(KERN_WARNING
409 "%s: No online cpus in the mask %s for irq %d\n",
410 __func__, cpulist, virq);
d5dedd45 411 return -1;
b9e5b4e6
BH
412 }
413
414 status = rtas_call(ibm_set_xive, 3, 1, NULL,
7ccb4a66 415 irq, irq_server, xics_status[1]);
b9e5b4e6
BH
416
417 if (status) {
2172fe87
MM
418 printk(KERN_ERR "%s: ibm,set-xive irq=%u returns %d\n",
419 __func__, irq, status);
d5dedd45 420 return -1;
b9e5b4e6 421 }
d5dedd45
YL
422
423 return 0;
b9e5b4e6
BH
424}
425
426static struct irq_chip xics_pic_direct = {
b27df672 427 .name = " XICS ",
b9e5b4e6
BH
428 .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
b9e5b4e6 435static struct irq_chip xics_pic_lpar = {
b27df672 436 .name = " XICS ",
b9e5b4e6
BH
437 .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
0641cc91
MM
444
445/* Interface to arch irq controller subsystem layer */
446
1af9fa89
ME
447/* Points to the irq_chip we're actually using */
448static struct irq_chip *xics_irq_chip;
b9e5b4e6 449
0ebfff14 450static int xics_host_match(struct irq_host *h, struct device_node *node)
1da177e4 451{
0ebfff14
BH
452 /* 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"
455 */
55b61fec 456 return !of_device_is_compatible(node, "chrp,iic");
0ebfff14 457}
1da177e4 458
1af9fa89
ME
459static int xics_host_map(struct irq_host *h, unsigned int virq,
460 irq_hw_number_t hw)
0ebfff14 461{
b69e9e93 462 pr_devel("xics: map virq %d, hwirq 0x%lx\n", virq, hw);
0ebfff14 463
967e012e
SD
464 /* Insert the interrupt mapping into the radix tree for fast lookup */
465 irq_radix_revmap_insert(xics_host, virq, hw);
466
6cff46f4 467 irq_to_desc(virq)->status |= IRQ_LEVEL;
1af9fa89 468 set_irq_chip_and_handler(virq, xics_irq_chip, handle_fasteoi_irq);
0ebfff14
BH
469 return 0;
470}
471
472static int xics_host_xlate(struct irq_host *h, struct device_node *ct,
40d50cf7 473 const u32 *intspec, unsigned int intsize,
0ebfff14
BH
474 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
6c80a21c 480 */
0ebfff14
BH
481 *out_hwirq = intspec[0];
482 *out_flags = IRQ_TYPE_LEVEL_LOW;
483
484 return 0;
485}
486
1af9fa89 487static struct irq_host_ops xics_host_ops = {
0ebfff14 488 .match = xics_host_match,
1af9fa89 489 .map = xics_host_map,
0ebfff14
BH
490 .xlate = xics_host_xlate,
491};
492
493static void __init xics_init_host(void)
494{
0ebfff14 495 if (firmware_has_feature(FW_FEATURE_LPAR))
1af9fa89 496 xics_irq_chip = &xics_pic_lpar;
0ebfff14 497 else
1af9fa89
ME
498 xics_irq_chip = &xics_pic_direct;
499
500 xics_host = irq_alloc_host(NULL, IRQ_HOST_MAP_TREE, 0, &xics_host_ops,
0ebfff14
BH
501 XICS_IRQ_SPURIOUS);
502 BUG_ON(xics_host == NULL);
503 irq_set_default_host(xics_host);
6c80a21c 504}
1da177e4 505
0641cc91
MM
506
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 */
513struct xics_ipi_struct {
514 unsigned long value;
515 } ____cacheline_aligned;
516
517static struct xics_ipi_struct xics_ipi_message[NR_CPUS] __cacheline_aligned;
518
519static inline void smp_xics_do_message(int cpu, int msg)
520{
521 set_bit(msg, &xics_ipi_message[cpu].value);
522 mb();
523 if (firmware_has_feature(FW_FEATURE_LPAR))
524 lpar_qirr_info(cpu, IPI_PRIORITY);
525 else
526 direct_qirr_info(cpu, IPI_PRIORITY);
527}
528
529void smp_xics_message_pass(int target, int msg)
530{
531 unsigned int i;
532
533 if (target < NR_CPUS) {
534 smp_xics_do_message(target, msg);
535 } else {
536 for_each_online_cpu(i) {
537 if (target == MSG_ALL_BUT_SELF
538 && i == smp_processor_id())
539 continue;
540 smp_xics_do_message(i, msg);
541 }
542 }
543}
544
545static irqreturn_t xics_ipi_dispatch(int cpu)
546{
547 WARN_ON(cpu_is_offline(cpu));
548
199f45c4 549 mb(); /* order mmio clearing qirr */
0641cc91
MM
550 while (xics_ipi_message[cpu].value) {
551 if (test_and_clear_bit(PPC_MSG_CALL_FUNCTION,
552 &xics_ipi_message[cpu].value)) {
0641cc91
MM
553 smp_message_recv(PPC_MSG_CALL_FUNCTION);
554 }
555 if (test_and_clear_bit(PPC_MSG_RESCHEDULE,
556 &xics_ipi_message[cpu].value)) {
0641cc91
MM
557 smp_message_recv(PPC_MSG_RESCHEDULE);
558 }
559 if (test_and_clear_bit(PPC_MSG_CALL_FUNC_SINGLE,
560 &xics_ipi_message[cpu].value)) {
0641cc91
MM
561 smp_message_recv(PPC_MSG_CALL_FUNC_SINGLE);
562 }
563#if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC)
564 if (test_and_clear_bit(PPC_MSG_DEBUGGER_BREAK,
565 &xics_ipi_message[cpu].value)) {
0641cc91
MM
566 smp_message_recv(PPC_MSG_DEBUGGER_BREAK);
567 }
568#endif
569 }
570 return IRQ_HANDLED;
571}
572
573static irqreturn_t xics_ipi_action_direct(int irq, void *dev_id)
574{
575 int cpu = smp_processor_id();
576
577 direct_qirr_info(cpu, 0xff);
578
579 return xics_ipi_dispatch(cpu);
580}
581
582static irqreturn_t xics_ipi_action_lpar(int irq, void *dev_id)
583{
584 int cpu = smp_processor_id();
585
586 lpar_qirr_info(cpu, 0xff);
587
588 return xics_ipi_dispatch(cpu);
589}
590
591static void xics_request_ipi(void)
592{
593 unsigned int ipi;
594 int rc;
595
596 ipi = irq_create_mapping(xics_host, XICS_IPI);
597 BUG_ON(ipi == NO_IRQ);
598
599 /*
600 * IPIs are marked IRQF_DISABLED as they must run with irqs
601 * disabled
602 */
603 set_irq_handler(ipi, handle_percpu_irq);
604 if (firmware_has_feature(FW_FEATURE_LPAR))
d879f384
MM
605 rc = request_irq(ipi, xics_ipi_action_lpar,
606 IRQF_DISABLED|IRQF_PERCPU, "IPI", NULL);
0641cc91 607 else
d879f384
MM
608 rc = request_irq(ipi, xics_ipi_action_direct,
609 IRQF_DISABLED|IRQF_PERCPU, "IPI", NULL);
0641cc91
MM
610 BUG_ON(rc);
611}
612
613int __init smp_xics_probe(void)
614{
615 xics_request_ipi();
616
617 return cpus_weight(cpu_possible_map);
618}
619
620#endif /* CONFIG_SMP */
621
622
623/* Initialization */
624
625static void xics_update_irq_servers(void)
626{
627 int i, j;
628 struct device_node *np;
629 u32 ilen;
1ef8014d 630 const u32 *ireg;
0641cc91
MM
631 u32 hcpuid;
632
633 /* Find the server numbers for the boot cpu. */
634 np = of_get_cpu_node(boot_cpuid, NULL);
635 BUG_ON(!np);
636
637 ireg = of_get_property(np, "ibm,ppc-interrupt-gserver#s", &ilen);
638 if (!ireg) {
639 of_node_put(np);
640 return;
641 }
642
643 i = ilen / sizeof(int);
644 hcpuid = get_hard_smp_processor_id(boot_cpuid);
645
646 /* Global interrupt distribution server is specified in the last
647 * entry of "ibm,ppc-interrupt-gserver#s" property. Get the last
648 * entry fom this property for current boot cpu id and use it as
649 * default distribution server
650 */
651 for (j = 0; j < i; j += 2) {
652 if (ireg[j] == hcpuid) {
653 default_server = hcpuid;
654 default_distrib_server = ireg[j+1];
0641cc91
MM
655 }
656 }
657
658 of_node_put(np);
659}
660
0ebfff14
BH
661static void __init xics_map_one_cpu(int hw_id, unsigned long addr,
662 unsigned long size)
1da177e4
LT
663{
664 int i;
1da177e4 665
0ebfff14
BH
666 /* This may look gross but it's good enough for now, we don't quite
667 * have a hard -> linux processor id matching.
668 */
669 for_each_possible_cpu(i) {
670 if (!cpu_present(i))
671 continue;
672 if (hw_id == get_hard_smp_processor_id(i)) {
673 xics_per_cpu[i] = ioremap(addr, size);
674 return;
675 }
676 }
0ebfff14 677}
1da177e4 678
0ebfff14
BH
679static void __init xics_init_one_node(struct device_node *np,
680 unsigned int *indx)
681{
682 unsigned int ilen;
954a46e2 683 const u32 *ireg;
1da177e4 684
0ebfff14
BH
685 /* This code does the theorically broken assumption that the interrupt
686 * server numbers are the same as the hard CPU numbers.
687 * This happens to be the case so far but we are playing with fire...
688 * should be fixed one of these days. -BenH.
689 */
e2eb6392 690 ireg = of_get_property(np, "ibm,interrupt-server-ranges", NULL);
1da177e4 691
0ebfff14
BH
692 /* Do that ever happen ? we'll know soon enough... but even good'old
693 * f80 does have that property ..
694 */
695 WARN_ON(ireg == NULL);
1da177e4
LT
696 if (ireg) {
697 /*
698 * set node starting index for this node
699 */
0ebfff14 700 *indx = *ireg;
1da177e4 701 }
e2eb6392 702 ireg = of_get_property(np, "reg", &ilen);
1da177e4
LT
703 if (!ireg)
704 panic("xics_init_IRQ: can't find interrupt reg property");
007e8f51 705
0ebfff14
BH
706 while (ilen >= (4 * sizeof(u32))) {
707 unsigned long addr, size;
708
709 /* XXX Use proper OF parsing code here !!! */
710 addr = (unsigned long)*ireg++ << 32;
711 ilen -= sizeof(u32);
712 addr |= *ireg++;
713 ilen -= sizeof(u32);
714 size = (unsigned long)*ireg++ << 32;
715 ilen -= sizeof(u32);
716 size |= *ireg++;
717 ilen -= sizeof(u32);
718 xics_map_one_cpu(*indx, addr, size);
719 (*indx)++;
720 }
721}
722
0ebfff14
BH
723void __init xics_init_IRQ(void)
724{
0ebfff14 725 struct device_node *np;
de0723dc 726 u32 indx = 0;
0ebfff14 727 int found = 0;
1ef8014d 728 const u32 *isize;
0ebfff14
BH
729
730 ppc64_boot_msg(0x20, "XICS Init");
731
732 ibm_get_xive = rtas_token("ibm,get-xive");
733 ibm_set_xive = rtas_token("ibm,set-xive");
734 ibm_int_on = rtas_token("ibm,int-on");
735 ibm_int_off = rtas_token("ibm,int-off");
736
737 for_each_node_by_type(np, "PowerPC-External-Interrupt-Presentation") {
738 found = 1;
a244a957
MM
739 if (firmware_has_feature(FW_FEATURE_LPAR)) {
740 of_node_put(np);
0ebfff14 741 break;
a244a957 742 }
0ebfff14
BH
743 xics_init_one_node(np, &indx);
744 }
745 if (found == 0)
746 return;
747
1ef8014d
SD
748 /* get the bit size of server numbers */
749 found = 0;
750
751 for_each_compatible_node(np, NULL, "ibm,ppc-xics") {
752 isize = of_get_property(np, "ibm,interrupt-server#-size", NULL);
753
754 if (!isize)
755 continue;
756
757 if (!found) {
758 interrupt_server_size = *isize;
759 found = 1;
760 } else if (*isize != interrupt_server_size) {
761 printk(KERN_WARNING "XICS: "
762 "mismatched ibm,interrupt-server#-size\n");
763 interrupt_server_size = max(*isize,
764 interrupt_server_size);
765 }
766 }
767
de0723dc 768 xics_update_irq_servers();
302905a3 769 xics_init_host();
1da177e4 770
0ebfff14
BH
771 if (firmware_has_feature(FW_FEATURE_LPAR))
772 ppc_md.get_irq = xics_get_irq_lpar;
773 else
b9e5b4e6 774 ppc_md.get_irq = xics_get_irq_direct;
1da177e4 775
6c80a21c 776 xics_setup_cpu();
1da177e4 777
0ebfff14 778 ppc64_boot_msg(0x21, "XICS Done");
1da177e4 779}
b9e5b4e6 780
0641cc91 781/* Cpu startup, shutdown, and hotplug */
1da177e4 782
0641cc91 783static void xics_set_cpu_priority(unsigned char cppr)
1da177e4 784{
49bd3647
MN
785 struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr);
786
36350e00
MN
787 /*
788 * we only really want to set the priority when there's
789 * just one cppr value on the stack
790 */
791 WARN_ON(os_cppr->index != 0);
49bd3647 792
36350e00 793 os_cppr->stack[0] = cppr;
49bd3647 794
b9e5b4e6 795 if (firmware_has_feature(FW_FEATURE_LPAR))
0641cc91 796 lpar_cppr_info(cppr);
b9e5b4e6 797 else
0641cc91
MM
798 direct_cppr_info(cppr);
799 iosync();
1da177e4 800}
d13f7208 801
b4963255
MM
802/* Have the calling processor join or leave the specified global queue */
803static void xics_set_cpu_giq(unsigned int gserver, unsigned int join)
804{
edc72ac4
NL
805 int index;
806 int status;
807
808 if (!rtas_indicator_present(GLOBAL_INTERRUPT_QUEUE, NULL))
809 return;
810
811 index = (1UL << interrupt_server_size) - 1 - gserver;
812
813 status = rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE, index, join);
814
815 WARN(status < 0, "set-indicator(%d, %d, %u) returned %d\n",
816 GLOBAL_INTERRUPT_QUEUE, index, join, status);
b4963255 817}
0641cc91
MM
818
819void xics_setup_cpu(void)
d13f7208 820{
49bd3647 821 xics_set_cpu_priority(LOWEST_PRIORITY);
d13f7208 822
b4963255 823 xics_set_cpu_giq(default_distrib_server, 1);
d13f7208
MM
824}
825
f10095c3 826void xics_teardown_cpu(void)
fce0d574 827{
36350e00 828 struct xics_cppr *os_cppr = &__get_cpu_var(xics_cppr);
fce0d574 829 int cpu = smp_processor_id();
fce0d574 830
36350e00
MN
831 /*
832 * we have to reset the cppr index to 0 because we're
833 * not going to return from the IPI
834 */
835 os_cppr->index = 0;
d7cf0edb 836 xics_set_cpu_priority(0);
81bbbe92 837
b4963255 838 /* Clear any pending IPI request */
6e99e458
BH
839 if (firmware_has_feature(FW_FEATURE_LPAR))
840 lpar_qirr_info(cpu, 0xff);
841 else
842 direct_qirr_info(cpu, 0xff);
c3e8506c
NF
843}
844
845void xics_kexec_teardown_cpu(int secondary)
846{
c3e8506c 847 xics_teardown_cpu();
6e99e458 848
81bbbe92 849 /*
1a57c926
MM
850 * we take the ipi irq but and never return so we
851 * need to EOI the IPI, but want to leave our priority 0
81bbbe92 852 *
1a57c926 853 * should we check all the other interrupts too?
81bbbe92
HM
854 * should we be flagging idle loop instead?
855 * or creating some task to be scheduled?
856 */
0ebfff14 857
1a57c926
MM
858 if (firmware_has_feature(FW_FEATURE_LPAR))
859 lpar_xirr_info_set((0x00 << 24) | XICS_IPI);
860 else
861 direct_xirr_info_set((0x00 << 24) | XICS_IPI);
81bbbe92 862
fce0d574 863 /*
6d22d85a
PM
864 * Some machines need to have at least one cpu in the GIQ,
865 * so leave the master cpu in the group.
fce0d574 866 */
81bbbe92 867 if (secondary)
b4963255 868 xics_set_cpu_giq(default_distrib_server, 0);
fce0d574
S
869}
870
1da177e4
LT
871#ifdef CONFIG_HOTPLUG_CPU
872
873/* Interrupts are disabled. */
874void xics_migrate_irqs_away(void)
875{
d7cf0edb
MM
876 int cpu = smp_processor_id(), hw_cpu = hard_smp_processor_id();
877 unsigned int irq, virq;
1da177e4 878
302905a3
MM
879 /* If we used to be the default server, move to the new "boot_cpuid" */
880 if (hw_cpu == default_server)
881 xics_update_irq_servers();
882
1da177e4 883 /* Reject any interrupt that was queued to us... */
d7cf0edb 884 xics_set_cpu_priority(0);
1da177e4 885
b4963255
MM
886 /* Remove ourselves from the global interrupt queue */
887 xics_set_cpu_giq(default_distrib_server, 0);
1da177e4
LT
888
889 /* Allow IPIs again... */
d7cf0edb 890 xics_set_cpu_priority(DEFAULT_PRIORITY);
1da177e4
LT
891
892 for_each_irq(virq) {
b9e5b4e6 893 struct irq_desc *desc;
1da177e4 894 int xics_status[2];
b4963255 895 int status;
1da177e4
LT
896 unsigned long flags;
897
898 /* We cant set affinity on ISA interrupts */
0ebfff14 899 if (virq < NUM_ISA_INTERRUPTS)
1da177e4 900 continue;
0ebfff14
BH
901 if (irq_map[virq].host != xics_host)
902 continue;
903 irq = (unsigned int)irq_map[virq].hwirq;
1da177e4 904 /* We need to get IPIs still. */
0ebfff14 905 if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
1da177e4 906 continue;
6cff46f4 907 desc = irq_to_desc(virq);
1da177e4
LT
908
909 /* We only need to migrate enabled IRQS */
d1bef4ed 910 if (desc == NULL || desc->chip == NULL
1da177e4 911 || desc->action == NULL
d1bef4ed 912 || desc->chip->set_affinity == NULL)
1da177e4
LT
913 continue;
914
239007b8 915 raw_spin_lock_irqsave(&desc->lock, flags);
1da177e4
LT
916
917 status = rtas_call(ibm_get_xive, 1, 3, xics_status, irq);
918 if (status) {
2172fe87
MM
919 printk(KERN_ERR "%s: ibm,get-xive irq=%u returns %d\n",
920 __func__, irq, status);
1da177e4
LT
921 goto unlock;
922 }
923
924 /*
925 * We only support delivery to all cpus or to one cpu.
926 * The irq has to be migrated only in the single cpu
927 * case.
928 */
d7cf0edb 929 if (xics_status[0] != hw_cpu)
1da177e4
LT
930 goto unlock;
931
26370322 932 printk(KERN_WARNING "IRQ %u affinity broken off cpu %u\n",
1da177e4
LT
933 virq, cpu);
934
935 /* Reset affinity to all cpus */
6cff46f4 936 cpumask_setall(irq_to_desc(virq)->affinity);
0de26520 937 desc->chip->set_affinity(virq, cpu_all_mask);
1da177e4 938unlock:
239007b8 939 raw_spin_unlock_irqrestore(&desc->lock, flags);
1da177e4
LT
940 }
941}
942#endif