xics.c 20.3 KB
Newer Older
1 2
/*
 * arch/powerpc/platforms/pseries/xics.c
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10
 *
 * Copyright 2000 IBM Corporation.
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License
 *  as published by the Free Software Foundation; either version
 *  2 of the License, or (at your option) any later version.
 */
11 12 13

#undef DEBUG

L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21 22 23 24
#include <linux/types.h>
#include <linux/threads.h>
#include <linux/kernel.h>
#include <linux/irq.h>
#include <linux/smp.h>
#include <linux/interrupt.h>
#include <linux/signal.h>
#include <linux/init.h>
#include <linux/gfp.h>
#include <linux/radix-tree.h>
#include <linux/cpu.h>
25

26
#include <asm/firmware.h>
L
Linus Torvalds 已提交
27 28 29 30 31 32 33
#include <asm/prom.h>
#include <asm/io.h>
#include <asm/pgtable.h>
#include <asm/smp.h>
#include <asm/rtas.h>
#include <asm/hvcall.h>
#include <asm/machdep.h>
34
#include <asm/i8259.h>
L
Linus Torvalds 已提交
35

36
#include "xics.h"
37
#include "plpar_wrappers.h"
38

L
Linus Torvalds 已提交
39 40 41 42 43 44
#define XICS_IPI		2
#define XICS_IRQ_SPURIOUS	0

/* Want a priority other than 0.  Various HW issues require this. */
#define	DEFAULT_PRIORITY	5

45
/*
L
Linus Torvalds 已提交
46
 * Mark IPIs as higher priority so we can take them inside interrupts that
47
 * arent marked IRQF_DISABLED
L
Linus Torvalds 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
 */
#define IPI_PRIORITY		4

struct xics_ipl {
	union {
		u32 word;
		u8 bytes[4];
	} xirr_poll;
	union {
		u32 word;
		u8 bytes[4];
	} xirr;
	u32 dummy;
	union {
		u32 word;
		u8 bytes[4];
	} qirr;
};

static struct xics_ipl __iomem *xics_per_cpu[NR_CPUS];

static unsigned int default_server = 0xFF;
A
Anton Blanchard 已提交
70 71
static unsigned int default_distrib_server = 0;
static unsigned int interrupt_server_size = 8;
L
Linus Torvalds 已提交
72

73 74
static struct irq_host *xics_host;

L
Linus Torvalds 已提交
75 76 77 78 79 80
/*
 * XICS only has a single IPI, so encode the messages per CPU
 */
struct xics_ipi_struct xics_ipi_message[NR_CPUS] __cacheline_aligned;

/* RTAS service tokens */
A
Anton Blanchard 已提交
81 82 83 84
static int ibm_get_xive;
static int ibm_set_xive;
static int ibm_int_on;
static int ibm_int_off;
L
Linus Torvalds 已提交
85 86


87
/* Direct HW low level accessors */
L
Linus Torvalds 已提交
88 89


90
static inline unsigned int direct_xirr_info_get(int n_cpu)
L
Linus Torvalds 已提交
91 92 93 94
{
	return in_be32(&xics_per_cpu[n_cpu]->xirr.word);
}

95
static inline void direct_xirr_info_set(int n_cpu, int value)
L
Linus Torvalds 已提交
96 97 98 99
{
	out_be32(&xics_per_cpu[n_cpu]->xirr.word, value);
}

100
static inline void direct_cppr_info(int n_cpu, u8 value)
L
Linus Torvalds 已提交
101 102 103 104
{
	out_8(&xics_per_cpu[n_cpu]->xirr.bytes[0], value);
}

105
static inline void direct_qirr_info(int n_cpu, u8 value)
L
Linus Torvalds 已提交
106 107 108 109 110
{
	out_8(&xics_per_cpu[n_cpu]->qirr.bytes[0], value);
}


111
/* LPAR low level accessors */
L
Linus Torvalds 已提交
112 113


114
static inline unsigned int lpar_xirr_info_get(int n_cpu)
L
Linus Torvalds 已提交
115 116
{
	unsigned long lpar_rc;
117
	unsigned long return_value;
L
Linus Torvalds 已提交
118 119

	lpar_rc = plpar_xirr(&return_value);
120
	if (lpar_rc != H_SUCCESS)
121
		panic(" bad return code xirr - rc = %lx \n", lpar_rc);
122
	return (unsigned int)return_value;
L
Linus Torvalds 已提交
123 124
}

125
static inline void lpar_xirr_info_set(int n_cpu, int value)
L
Linus Torvalds 已提交
126 127 128 129 130
{
	unsigned long lpar_rc;
	unsigned long val64 = value & 0xffffffff;

	lpar_rc = plpar_eoi(val64);
131
	if (lpar_rc != H_SUCCESS)
L
Linus Torvalds 已提交
132
		panic("bad return code EOI - rc = %ld, value=%lx\n", lpar_rc,
133
		      val64);
L
Linus Torvalds 已提交
134 135
}

136
static inline void lpar_cppr_info(int n_cpu, u8 value)
L
Linus Torvalds 已提交
137 138 139 140
{
	unsigned long lpar_rc;

	lpar_rc = plpar_cppr(value);
141
	if (lpar_rc != H_SUCCESS)
142
		panic("bad return code cppr - rc = %lx\n", lpar_rc);
L
Linus Torvalds 已提交
143 144
}

145
static inline void lpar_qirr_info(int n_cpu , u8 value)
L
Linus Torvalds 已提交
146 147 148 149
{
	unsigned long lpar_rc;

	lpar_rc = plpar_ipi(get_hard_smp_processor_id(n_cpu), value);
150
	if (lpar_rc != H_SUCCESS)
151
		panic("bad return code qirr - rc = %lx\n", lpar_rc);
L
Linus Torvalds 已提交
152 153 154
}


155
/* High level handlers and init code */
L
Linus Torvalds 已提交
156 157 158


#ifdef CONFIG_SMP
159
static int get_irq_server(unsigned int virq, unsigned int strict_check)
L
Linus Torvalds 已提交
160
{
161
	int server;
L
Linus Torvalds 已提交
162
	/* For the moment only implement delivery to all cpus or one cpu */
163
	cpumask_t cpumask = irq_desc[virq].affinity;
L
Linus Torvalds 已提交
164 165 166 167 168
	cpumask_t tmp = CPU_MASK_NONE;

	if (!distribute_irqs)
		return default_server;

169
	if (!cpus_equal(cpumask, CPU_MASK_ALL)) {
L
Linus Torvalds 已提交
170 171
		cpus_and(tmp, cpu_online_map, cpumask);

172 173 174 175 176 177 178
		server = first_cpu(tmp);

		if (server < NR_CPUS)
			return get_hard_smp_processor_id(server);

		if (strict_check)
			return -1;
L
Linus Torvalds 已提交
179 180
	}

181 182
	if (cpus_equal(cpu_online_map, cpu_present_map))
		return default_distrib_server;
L
Linus Torvalds 已提交
183

184
	return default_server;
L
Linus Torvalds 已提交
185 186
}
#else
187
static int get_irq_server(unsigned int virq, unsigned int strict_check)
L
Linus Torvalds 已提交
188 189 190 191 192
{
	return default_server;
}
#endif

193 194

static void xics_unmask_irq(unsigned int virq)
L
Linus Torvalds 已提交
195 196 197
{
	unsigned int irq;
	int call_status;
198
	int server;
L
Linus Torvalds 已提交
199

200 201 202 203 204
	pr_debug("xics: unmask virq %d\n", virq);

	irq = (unsigned int)irq_map[virq].hwirq;
	pr_debug(" -> map to hwirq 0x%x\n", irq);
	if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
L
Linus Torvalds 已提交
205 206
		return;

207
	server = get_irq_server(virq, 0);
208

L
Linus Torvalds 已提交
209 210 211
	call_status = rtas_call(ibm_set_xive, 3, 1, NULL, irq, server,
				DEFAULT_PRIORITY);
	if (call_status != 0) {
A
Anton Blanchard 已提交
212 213 214
		printk(KERN_ERR "xics_enable_irq: irq=%u: ibm_set_xive "
		       "returned %d\n", irq, call_status);
		printk("set_xive %x, server %x\n", ibm_set_xive, server);
L
Linus Torvalds 已提交
215 216 217 218 219 220
		return;
	}

	/* Now unmask the interrupt (often a no-op) */
	call_status = rtas_call(ibm_int_on, 1, 1, NULL, irq);
	if (call_status != 0) {
A
Anton Blanchard 已提交
221 222
		printk(KERN_ERR "xics_enable_irq: irq=%u: ibm_int_on "
		       "returned %d\n", irq, call_status);
L
Linus Torvalds 已提交
223 224 225 226
		return;
	}
}

227
static void xics_mask_real_irq(unsigned int irq)
L
Linus Torvalds 已提交
228 229 230 231 232 233 234 235
{
	int call_status;

	if (irq == XICS_IPI)
		return;

	call_status = rtas_call(ibm_int_off, 1, 1, NULL, irq);
	if (call_status != 0) {
A
Anton Blanchard 已提交
236 237
		printk(KERN_ERR "xics_disable_real_irq: irq=%u: "
		       "ibm_int_off returned %d\n", irq, call_status);
L
Linus Torvalds 已提交
238 239 240 241
		return;
	}

	/* Have to set XIVE to 0xff to be able to remove a slot */
242 243
	call_status = rtas_call(ibm_set_xive, 3, 1, NULL, irq,
				default_server, 0xff);
L
Linus Torvalds 已提交
244
	if (call_status != 0) {
A
Anton Blanchard 已提交
245 246
		printk(KERN_ERR "xics_disable_irq: irq=%u: ibm_set_xive(0xff)"
		       " returned %d\n", irq, call_status);
L
Linus Torvalds 已提交
247 248 249 250
		return;
	}
}

251
static void xics_mask_irq(unsigned int virq)
L
Linus Torvalds 已提交
252 253 254
{
	unsigned int irq;

255 256 257 258 259 260
	pr_debug("xics: mask virq %d\n", virq);

	irq = (unsigned int)irq_map[virq].hwirq;
	if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
		return;
	xics_mask_real_irq(irq);
261 262
}

263
static unsigned int xics_startup(unsigned int virq)
264 265 266
{
	unsigned int irq;

267 268 269
	/* force a reverse mapping of the interrupt so it gets in the cache */
	irq = (unsigned int)irq_map[virq].hwirq;
	irq_radix_revmap(xics_host, irq);
L
Linus Torvalds 已提交
270

271
	/* unmask it */
272 273 274 275
	xics_unmask_irq(virq);
	return 0;
}

276
static void xics_eoi_direct(unsigned int virq)
L
Linus Torvalds 已提交
277 278
{
	int cpu = smp_processor_id();
279
	unsigned int irq = (unsigned int)irq_map[virq].hwirq;
L
Linus Torvalds 已提交
280 281

	iosync();
282
	direct_xirr_info_set(cpu, (0xff << 24) | irq);
L
Linus Torvalds 已提交
283 284
}

285

286
static void xics_eoi_lpar(unsigned int virq)
L
Linus Torvalds 已提交
287 288
{
	int cpu = smp_processor_id();
289
	unsigned int irq = (unsigned int)irq_map[virq].hwirq;
L
Linus Torvalds 已提交
290

291
	iosync();
292
	lpar_xirr_info_set(cpu, (0xff << 24) | irq);
L
Linus Torvalds 已提交
293 294
}

295
static inline unsigned int xics_remap_irq(unsigned int vec)
L
Linus Torvalds 已提交
296
{
297
	unsigned int irq;
L
Linus Torvalds 已提交
298 299 300

	vec &= 0x00ffffff;

301 302
	if (vec == XICS_IRQ_SPURIOUS)
		return NO_IRQ;
303
	irq = irq_radix_revmap(xics_host, vec);
304
	if (likely(irq != NO_IRQ))
305
		return irq;
306 307 308 309 310

	printk(KERN_ERR "Interrupt %u (real) is invalid,"
	       " disabling it.\n", vec);
	xics_mask_real_irq(vec);
	return NO_IRQ;
L
Linus Torvalds 已提交
311 312
}

O
Olaf Hering 已提交
313
static unsigned int xics_get_irq_direct(void)
314 315
{
	unsigned int cpu = smp_processor_id();
L
Linus Torvalds 已提交
316

317 318 319
	return xics_remap_irq(direct_xirr_info_get(cpu));
}

O
Olaf Hering 已提交
320
static unsigned int xics_get_irq_lpar(void)
L
Linus Torvalds 已提交
321
{
322
	unsigned int cpu = smp_processor_id();
L
Linus Torvalds 已提交
323

324 325 326 327
	return xics_remap_irq(lpar_xirr_info_get(cpu));
}

#ifdef CONFIG_SMP
L
Linus Torvalds 已提交
328

329
static irqreturn_t xics_ipi_dispatch(int cpu)
330
{
L
Linus Torvalds 已提交
331 332 333 334 335 336
	WARN_ON(cpu_is_offline(cpu));

	while (xics_ipi_message[cpu].value) {
		if (test_and_clear_bit(PPC_MSG_CALL_FUNCTION,
				       &xics_ipi_message[cpu].value)) {
			mb();
337
			smp_message_recv(PPC_MSG_CALL_FUNCTION);
L
Linus Torvalds 已提交
338 339 340 341
		}
		if (test_and_clear_bit(PPC_MSG_RESCHEDULE,
				       &xics_ipi_message[cpu].value)) {
			mb();
342
			smp_message_recv(PPC_MSG_RESCHEDULE);
L
Linus Torvalds 已提交
343 344 345 346 347
		}
#if 0
		if (test_and_clear_bit(PPC_MSG_MIGRATE_TASK,
				       &xics_ipi_message[cpu].value)) {
			mb();
348
			smp_message_recv(PPC_MSG_MIGRATE_TASK);
L
Linus Torvalds 已提交
349 350
		}
#endif
351
#if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC)
L
Linus Torvalds 已提交
352 353 354
		if (test_and_clear_bit(PPC_MSG_DEBUGGER_BREAK,
				       &xics_ipi_message[cpu].value)) {
			mb();
355
			smp_message_recv(PPC_MSG_DEBUGGER_BREAK);
L
Linus Torvalds 已提交
356 357 358 359 360 361
		}
#endif
	}
	return IRQ_HANDLED;
}

362
static irqreturn_t xics_ipi_action_direct(int irq, void *dev_id)
363 364 365 366 367
{
	int cpu = smp_processor_id();

	direct_qirr_info(cpu, 0xff);

368
	return xics_ipi_dispatch(cpu);
369 370
}

371
static irqreturn_t xics_ipi_action_lpar(int irq, void *dev_id)
372 373 374 375 376
{
	int cpu = smp_processor_id();

	lpar_qirr_info(cpu, 0xff);

377
	return xics_ipi_dispatch(cpu);
378 379
}

L
Linus Torvalds 已提交
380 381
void xics_cause_IPI(int cpu)
{
382 383 384 385
	if (firmware_has_feature(FW_FEATURE_LPAR))
		lpar_qirr_info(cpu, IPI_PRIORITY);
	else
		direct_qirr_info(cpu, IPI_PRIORITY);
L
Linus Torvalds 已提交
386
}
387

388
#endif /* CONFIG_SMP */
L
Linus Torvalds 已提交
389

390 391 392 393 394 395 396 397 398 399 400 401 402 403
static void xics_set_cpu_priority(int cpu, unsigned char cppr)
{
	if (firmware_has_feature(FW_FEATURE_LPAR))
		lpar_cppr_info(cpu, cppr);
	else
		direct_cppr_info(cpu, cppr);
	iosync();
}

static void xics_set_affinity(unsigned int virq, cpumask_t cpumask)
{
	unsigned int irq;
	int status;
	int xics_status[2];
404
	int irq_server;
405

406 407
	irq = (unsigned int)irq_map[virq].hwirq;
	if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
408 409 410 411 412 413 414 415 416 417
		return;

	status = rtas_call(ibm_get_xive, 1, 3, xics_status, irq);

	if (status) {
		printk(KERN_ERR "xics_set_affinity: irq=%u ibm,get-xive "
		       "returns %d\n", irq, status);
		return;
	}

418 419 420 421 422 423 424 425 426 427 428
	/*
	 * For the moment only implement delivery to all cpus or one cpu.
	 * Get current irq_server for the given irq
	 */
	irq_server = get_irq_server(irq, 1);
	if (irq_server == -1) {
		char cpulist[128];
		cpumask_scnprintf(cpulist, sizeof(cpulist), cpumask);
		printk(KERN_WARNING "xics_set_affinity: No online cpus in "
				"the mask %s for irq %d\n", cpulist, virq);
		return;
429 430 431
	}

	status = rtas_call(ibm_set_xive, 3, 1, NULL,
432
				irq, irq_server, xics_status[1]);
433 434 435 436 437 438 439 440

	if (status) {
		printk(KERN_ERR "xics_set_affinity: irq=%u ibm,set-xive "
		       "returns %d\n", irq, status);
		return;
	}
}

441 442 443 444 445 446 447 448 449 450 451 452 453
void xics_setup_cpu(void)
{
	int cpu = smp_processor_id();

	xics_set_cpu_priority(cpu, 0xff);

	/*
	 * Put the calling processor into the GIQ.  This is really only
	 * necessary from a secondary thread as the OF start-cpu interface
	 * performs this function for us on primary threads.
	 *
	 * XXX: undo of teardown on kexec needs this too, as may hotplug
	 */
454
	rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE,
455 456 457 458
		(1UL << interrupt_server_size) - 1 - default_distrib_server, 1);
}


459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
static struct irq_chip xics_pic_direct = {
	.typename = " XICS     ",
	.startup = xics_startup,
	.mask = xics_mask_irq,
	.unmask = xics_unmask_irq,
	.eoi = xics_eoi_direct,
	.set_affinity = xics_set_affinity
};


static struct irq_chip xics_pic_lpar = {
	.typename = " XICS     ",
	.startup = xics_startup,
	.mask = xics_mask_irq,
	.unmask = xics_unmask_irq,
	.eoi = xics_eoi_lpar,
	.set_affinity = xics_set_affinity
};


479
static int xics_host_match(struct irq_host *h, struct device_node *node)
L
Linus Torvalds 已提交
480
{
481 482 483 484
	/* IBM machines have interrupt parents of various funky types for things
	 * like vdevices, events, etc... The trick we use here is to match
	 * everything here except the legacy 8259 which is compatible "chrp,iic"
	 */
485
	return !of_device_is_compatible(node, "chrp,iic");
486
}
L
Linus Torvalds 已提交
487

488
static int xics_host_map_direct(struct irq_host *h, unsigned int virq,
489
				irq_hw_number_t hw)
490
{
491
	pr_debug("xics: map_direct virq %d, hwirq 0x%lx\n", virq, hw);
492 493 494 495 496 497 498

	get_irq_desc(virq)->status |= IRQ_LEVEL;
	set_irq_chip_and_handler(virq, &xics_pic_direct, handle_fasteoi_irq);
	return 0;
}

static int xics_host_map_lpar(struct irq_host *h, unsigned int virq,
499
			      irq_hw_number_t hw)
500
{
501
	pr_debug("xics: map_direct virq %d, hwirq 0x%lx\n", virq, hw);
502 503 504 505 506 507 508 509 510 511 512 513 514 515

	get_irq_desc(virq)->status |= IRQ_LEVEL;
	set_irq_chip_and_handler(virq, &xics_pic_lpar, handle_fasteoi_irq);
	return 0;
}

static int xics_host_xlate(struct irq_host *h, struct device_node *ct,
			   u32 *intspec, unsigned int intsize,
			   irq_hw_number_t *out_hwirq, unsigned int *out_flags)

{
	/* Current xics implementation translates everything
	 * to level. It is not technically right for MSIs but this
	 * is irrelevant at this point. We might get smarter in the future
516
	 */
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
	*out_hwirq = intspec[0];
	*out_flags = IRQ_TYPE_LEVEL_LOW;

	return 0;
}

static struct irq_host_ops xics_host_direct_ops = {
	.match = xics_host_match,
	.map = xics_host_map_direct,
	.xlate = xics_host_xlate,
};

static struct irq_host_ops xics_host_lpar_ops = {
	.match = xics_host_match,
	.map = xics_host_map_lpar,
	.xlate = xics_host_xlate,
};

static void __init xics_init_host(void)
{
	struct irq_host_ops *ops;

	if (firmware_has_feature(FW_FEATURE_LPAR))
		ops = &xics_host_lpar_ops;
	else
		ops = &xics_host_direct_ops;
	xics_host = irq_alloc_host(IRQ_HOST_MAP_TREE, 0, ops,
				   XICS_IRQ_SPURIOUS);
	BUG_ON(xics_host == NULL);
	irq_set_default_host(xics_host);
547
}
L
Linus Torvalds 已提交
548

549 550
static void __init xics_map_one_cpu(int hw_id, unsigned long addr,
				     unsigned long size)
L
Linus Torvalds 已提交
551
{
552
#ifdef CONFIG_SMP
L
Linus Torvalds 已提交
553 554
	int i;

555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
	/* This may look gross but it's good enough for now, we don't quite
	 * have a hard -> linux processor id matching.
	 */
	for_each_possible_cpu(i) {
		if (!cpu_present(i))
			continue;
		if (hw_id == get_hard_smp_processor_id(i)) {
			xics_per_cpu[i] = ioremap(addr, size);
			return;
		}
	}
#else
	if (hw_id != 0)
		return;
	xics_per_cpu[0] = ioremap(addr, size);
#endif /* CONFIG_SMP */
}
L
Linus Torvalds 已提交
572

573 574 575 576
static void __init xics_init_one_node(struct device_node *np,
				      unsigned int *indx)
{
	unsigned int ilen;
577
	const u32 *ireg;
L
Linus Torvalds 已提交
578

579 580 581 582 583
	/* This code does the theorically broken assumption that the interrupt
	 * server numbers are the same as the hard CPU numbers.
	 * This happens to be the case so far but we are playing with fire...
	 * should be fixed one of these days. -BenH.
	 */
584
	ireg = of_get_property(np, "ibm,interrupt-server-ranges", NULL);
L
Linus Torvalds 已提交
585

586 587 588 589
	/* Do that ever happen ? we'll know soon enough... but even good'old
	 * f80 does have that property ..
	 */
	WARN_ON(ireg == NULL);
L
Linus Torvalds 已提交
590 591 592 593
	if (ireg) {
		/*
		 * set node starting index for this node
		 */
594
		*indx = *ireg;
L
Linus Torvalds 已提交
595
	}
596
	ireg = of_get_property(np, "reg", &ilen);
L
Linus Torvalds 已提交
597 598
	if (!ireg)
		panic("xics_init_IRQ: can't find interrupt reg property");
599

600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
	while (ilen >= (4 * sizeof(u32))) {
		unsigned long addr, size;

		/* XXX Use proper OF parsing code here !!! */
		addr = (unsigned long)*ireg++ << 32;
		ilen -= sizeof(u32);
		addr |= *ireg++;
		ilen -= sizeof(u32);
		size = (unsigned long)*ireg++ << 32;
		ilen -= sizeof(u32);
		size |= *ireg++;
		ilen -= sizeof(u32);
		xics_map_one_cpu(*indx, addr, size);
		(*indx)++;
	}
}


static void __init xics_setup_8259_cascade(void)
{
	struct device_node *np, *old, *found = NULL;
	int cascade, naddr;
622
	const u32 *addrp;
623 624 625
	unsigned long intack = 0;

	for_each_node_by_type(np, "interrupt-controller")
626
		if (of_device_is_compatible(np, "chrp,iic")) {
627 628 629 630 631 632
			found = np;
			break;
		}
	if (found == NULL) {
		printk(KERN_DEBUG "xics: no ISA interrupt controller\n");
		return;
L
Linus Torvalds 已提交
633
	}
634 635 636 637 638 639 640 641 642 643 644 645 646 647
	cascade = irq_of_parse_and_map(found, 0);
	if (cascade == NO_IRQ) {
		printk(KERN_ERR "xics: failed to map cascade interrupt");
		return;
	}
	pr_debug("xics: cascade mapped to irq %d\n", cascade);

	for (old = of_node_get(found); old != NULL ; old = np) {
		np = of_get_parent(old);
		of_node_put(old);
		if (np == NULL)
			break;
		if (strcmp(np->name, "pci") != 0)
			continue;
648
		addrp = of_get_property(np, "8259-interrupt-acknowledge", NULL);
649 650
		if (addrp == NULL)
			continue;
651
		naddr = of_n_addr_cells(np);
652 653 654 655 656 657 658 659 660 661
		intack = addrp[naddr-1];
		if (naddr > 1)
			intack |= ((unsigned long)addrp[naddr-2]) << 32;
	}
	if (intack)
		printk(KERN_DEBUG "xics: PCI 8259 intack at 0x%016lx\n", intack);
	i8259_init(found, intack);
	of_node_put(found);
	set_irq_chained_handler(cascade, pseries_8259_cascade);
}
L
Linus Torvalds 已提交
662

663 664 665 666 667 668 669 670 671
static struct device_node *cpuid_to_of_node(int cpu)
{
	struct device_node *np;
	u32 hcpuid = get_hard_smp_processor_id(cpu);

	for_each_node_by_type(np, "cpu") {
		int i, len;
		const u32 *intserv;

672 673
		intserv = of_get_property(np, "ibm,ppc-interrupt-server#s",
					&len);
674 675

		if (!intserv)
676
			intserv = of_get_property(np, "reg", &len);
677 678 679 680 681 682 683 684 685 686 687

		i = len / sizeof(u32);

		while (i--)
			if (intserv[i] == hcpuid)
				return np;
	}

	return NULL;
}

688 689
void __init xics_init_IRQ(void)
{
690
	int i, j;
691
	struct device_node *np;
692
	u32 ilen, indx = 0;
693
	const u32 *ireg, *isize;
694
	int found = 0;
695
	u32 hcpuid;
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713

	ppc64_boot_msg(0x20, "XICS Init");

	ibm_get_xive = rtas_token("ibm,get-xive");
	ibm_set_xive = rtas_token("ibm,set-xive");
	ibm_int_on  = rtas_token("ibm,int-on");
	ibm_int_off = rtas_token("ibm,int-off");

	for_each_node_by_type(np, "PowerPC-External-Interrupt-Presentation") {
		found = 1;
		if (firmware_has_feature(FW_FEATURE_LPAR))
			break;
		xics_init_one_node(np, &indx);
	}
	if (found == 0)
		return;

	xics_init_host();
L
Linus Torvalds 已提交
714 715

	/* Find the server numbers for the boot cpu. */
716 717
	np = cpuid_to_of_node(boot_cpuid);
	BUG_ON(!np);
718
	ireg = of_get_property(np, "ibm,ppc-interrupt-gserver#s", &ilen);
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
	if (!ireg)
		goto skip_gserver_check;
	i = ilen / sizeof(int);
	hcpuid = get_hard_smp_processor_id(boot_cpuid);

	/* Global interrupt distribution server is specified in the last
	 * entry of "ibm,ppc-interrupt-gserver#s" property. Get the last
	 * entry fom this property for current boot cpu id and use it as
	 * default distribution server
	 */
	for (j = 0; j < i; j += 2) {
		if (ireg[j] == hcpuid) {
			default_server = hcpuid;
			default_distrib_server = ireg[j+1];

734
			isize = of_get_property(np,
L
Linus Torvalds 已提交
735
					"ibm,interrupt-server#-size", NULL);
736 737
			if (isize)
				interrupt_server_size = *isize;
L
Linus Torvalds 已提交
738 739
		}
	}
740
skip_gserver_check:
L
Linus Torvalds 已提交
741 742
	of_node_put(np);

743 744 745
	if (firmware_has_feature(FW_FEATURE_LPAR))
		ppc_md.get_irq = xics_get_irq_lpar;
	else
746
		ppc_md.get_irq = xics_get_irq_direct;
L
Linus Torvalds 已提交
747

748
	xics_setup_cpu();
L
Linus Torvalds 已提交
749

750
	xics_setup_8259_cascade();
L
Linus Torvalds 已提交
751

752
	ppc64_boot_msg(0x21, "XICS Done");
L
Linus Torvalds 已提交
753
}
754

L
Linus Torvalds 已提交
755 756 757 758

#ifdef CONFIG_SMP
void xics_request_IPIs(void)
{
759
	unsigned int ipi;
760
	int rc;
761

762
	ipi = irq_create_mapping(xics_host, XICS_IPI);
763
	BUG_ON(ipi == NO_IRQ);
L
Linus Torvalds 已提交
764

765 766 767 768
	/*
	 * IPIs are marked IRQF_DISABLED as they must run with irqs
	 * disabled
	 */
769
	set_irq_handler(ipi, handle_percpu_irq);
770
	if (firmware_has_feature(FW_FEATURE_LPAR))
771 772
		rc = request_irq(ipi, xics_ipi_action_lpar, IRQF_DISABLED,
				"IPI", NULL);
773
	else
774 775 776
		rc = request_irq(ipi, xics_ipi_action_direct, IRQF_DISABLED,
				"IPI", NULL);
	BUG_ON(rc);
L
Linus Torvalds 已提交
777
}
778
#endif /* CONFIG_SMP */
L
Linus Torvalds 已提交
779

780
void xics_teardown_cpu(int secondary)
781 782
{
	int cpu = smp_processor_id();
783 784
	unsigned int ipi;
	struct irq_desc *desc;
785

786
	xics_set_cpu_priority(cpu, 0);
787

788 789 790 791 792 793 794 795
	/*
	 * Clear IPI
	 */
	if (firmware_has_feature(FW_FEATURE_LPAR))
		lpar_qirr_info(cpu, 0xff);
	else
		direct_qirr_info(cpu, 0xff);

796 797 798 799 800 801 802
	/*
	 * we need to EOI the IPI if we got here from kexec down IPI
	 *
	 * probably need to check all the other interrupts too
	 * should we be flagging idle loop instead?
	 * or creating some task to be scheduled?
	 */
803 804 805 806 807

	ipi = irq_find_mapping(xics_host, XICS_IPI);
	if (ipi == XICS_IRQ_SPURIOUS)
		return;
	desc = get_irq_desc(ipi);
808
	if (desc->chip && desc->chip->eoi)
809
		desc->chip->eoi(ipi);
810

811
	/*
812 813
	 * Some machines need to have at least one cpu in the GIQ,
	 * so leave the master cpu in the group.
814
	 */
815
	if (secondary)
816
		rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE,
817 818
				   (1UL << interrupt_server_size) - 1 -
				   default_distrib_server, 0);
819 820
}

L
Linus Torvalds 已提交
821 822 823 824 825 826 827 828 829
#ifdef CONFIG_HOTPLUG_CPU

/* Interrupts are disabled. */
void xics_migrate_irqs_away(void)
{
	int status;
	unsigned int irq, virq, cpu = smp_processor_id();

	/* Reject any interrupt that was queued to us... */
830
	xics_set_cpu_priority(cpu, 0);
L
Linus Torvalds 已提交
831 832

	/* remove ourselves from the global interrupt queue */
833
	status = rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE,
L
Linus Torvalds 已提交
834 835 836 837
		(1UL << interrupt_server_size) - 1 - default_distrib_server, 0);
	WARN_ON(status < 0);

	/* Allow IPIs again... */
838
	xics_set_cpu_priority(cpu, DEFAULT_PRIORITY);
L
Linus Torvalds 已提交
839 840

	for_each_irq(virq) {
841
		struct irq_desc *desc;
L
Linus Torvalds 已提交
842 843 844 845
		int xics_status[2];
		unsigned long flags;

		/* We cant set affinity on ISA interrupts */
846
		if (virq < NUM_ISA_INTERRUPTS)
L
Linus Torvalds 已提交
847
			continue;
848 849 850
		if (irq_map[virq].host != xics_host)
			continue;
		irq = (unsigned int)irq_map[virq].hwirq;
L
Linus Torvalds 已提交
851
		/* We need to get IPIs still. */
852
		if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
L
Linus Torvalds 已提交
853
			continue;
854
		desc = get_irq_desc(virq);
L
Linus Torvalds 已提交
855 856

		/* We only need to migrate enabled IRQS */
857
		if (desc == NULL || desc->chip == NULL
L
Linus Torvalds 已提交
858
		    || desc->action == NULL
859
		    || desc->chip->set_affinity == NULL)
L
Linus Torvalds 已提交
860 861 862 863 864 865
			continue;

		spin_lock_irqsave(&desc->lock, flags);

		status = rtas_call(ibm_get_xive, 1, 3, xics_status, irq);
		if (status) {
A
Anton Blanchard 已提交
866
			printk(KERN_ERR "migrate_irqs_away: irq=%u "
L
Linus Torvalds 已提交
867 868 869 870 871 872 873 874 875 876 877 878 879
					"ibm,get-xive returns %d\n",
					virq, status);
			goto unlock;
		}

		/*
		 * We only support delivery to all cpus or to one cpu.
		 * The irq has to be migrated only in the single cpu
		 * case.
		 */
		if (xics_status[0] != get_hard_smp_processor_id(cpu))
			goto unlock;

A
Anton Blanchard 已提交
880
		printk(KERN_WARNING "IRQ %u affinity broken off cpu %u\n",
L
Linus Torvalds 已提交
881 882 883
		       virq, cpu);

		/* Reset affinity to all cpus */
884
		desc->chip->set_affinity(virq, CPU_MASK_ALL);
885
		irq_desc[irq].affinity = CPU_MASK_ALL;
L
Linus Torvalds 已提交
886 887 888 889 890
unlock:
		spin_unlock_irqrestore(&desc->lock, flags);
	}
}
#endif