Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / powerpc / platforms / 86xx / pic.c
bloba6c695fa4da0ea16f9da1648ff87c5bac7c156df
1 /*
2 * Copyright 2008 Freescale Semiconductor, Inc.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 */
10 #include <linux/stddef.h>
11 #include <linux/kernel.h>
12 #include <linux/interrupt.h>
13 #include <linux/of_irq.h>
14 #include <linux/of_platform.h>
16 #include <asm/mpic.h>
17 #include <asm/i8259.h>
19 #ifdef CONFIG_PPC_I8259
20 static void mpc86xx_8259_cascade(struct irq_desc *desc)
22 struct irq_chip *chip = irq_desc_get_chip(desc);
23 unsigned int cascade_irq = i8259_irq();
25 if (cascade_irq)
26 generic_handle_irq(cascade_irq);
28 chip->irq_eoi(&desc->irq_data);
30 #endif /* CONFIG_PPC_I8259 */
32 void __init mpc86xx_init_irq(void)
34 #ifdef CONFIG_PPC_I8259
35 struct device_node *np;
36 struct device_node *cascade_node = NULL;
37 int cascade_irq;
38 #endif
40 struct mpic *mpic = mpic_alloc(NULL, 0, MPIC_BIG_ENDIAN |
41 MPIC_SINGLE_DEST_CPU,
42 0, 256, " MPIC ");
43 BUG_ON(mpic == NULL);
45 mpic_init(mpic);
47 #ifdef CONFIG_PPC_I8259
48 /* Initialize i8259 controller */
49 for_each_node_by_type(np, "interrupt-controller")
50 if (of_device_is_compatible(np, "chrp,iic")) {
51 cascade_node = np;
52 break;
55 if (cascade_node == NULL) {
56 printk(KERN_DEBUG "Could not find i8259 PIC\n");
57 return;
60 cascade_irq = irq_of_parse_and_map(cascade_node, 0);
61 if (!cascade_irq) {
62 printk(KERN_ERR "Failed to map cascade interrupt\n");
63 return;
66 i8259_init(cascade_node, 0);
67 of_node_put(cascade_node);
69 irq_set_chained_handler(cascade_irq, mpc86xx_8259_cascade);
70 #endif