| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * IRQ vector handles | 
|  | 3 | * | 
|  | 4 | * This file is subject to the terms and conditions of the GNU General Public | 
|  | 5 | * License.  See the file "COPYING" in the main directory of this archive | 
|  | 6 | * for more details. | 
|  | 7 | * | 
|  | 8 | * Copyright (C) 1995, 1996, 1997, 2003 by Ralf Baechle | 
|  | 9 | */ | 
|  | 10 | #include <linux/kernel.h> | 
|  | 11 | #include <linux/init.h> | 
|  | 12 | #include <linux/irq.h> | 
| Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 13 | #include <linux/interrupt.h> | 
|  | 14 | #include <linux/pci.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 |  | 
|  | 16 | #include <asm/i8259.h> | 
|  | 17 | #include <asm/irq_cpu.h> | 
| Yoichi Yuasa | d5ab1a6 | 2007-09-13 23:51:26 +0900 | [diff] [blame] | 18 | #include <asm/irq_gt641xx.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/gt64120.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 |  | 
| Yoichi Yuasa | d5ab1a6 | 2007-09-13 23:51:26 +0900 | [diff] [blame] | 21 | #include <irq.h> | 
| Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 22 |  | 
| Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 23 | asmlinkage void plat_irq_dispatch(void) | 
| Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 24 | { | 
| Yoichi Yuasa | d5ab1a6 | 2007-09-13 23:51:26 +0900 | [diff] [blame] | 25 | unsigned pending = read_c0_status() & read_c0_cause() & ST0_IM; | 
|  | 26 | int irq; | 
| Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 27 |  | 
| Yoichi Yuasa | d5ab1a6 | 2007-09-13 23:51:26 +0900 | [diff] [blame] | 28 | if (pending & CAUSEF_IP2) | 
|  | 29 | gt641xx_irq_dispatch(); | 
|  | 30 | else if (pending & CAUSEF_IP6) { | 
|  | 31 | irq = i8259_irq(); | 
|  | 32 | if (irq < 0) | 
|  | 33 | spurious_interrupt(); | 
|  | 34 | else | 
|  | 35 | do_IRQ(irq); | 
|  | 36 | } else if (pending & CAUSEF_IP3) | 
|  | 37 | do_IRQ(MIPS_CPU_IRQ_BASE + 3); | 
|  | 38 | else if (pending & CAUSEF_IP4) | 
|  | 39 | do_IRQ(MIPS_CPU_IRQ_BASE + 4); | 
|  | 40 | else if (pending & CAUSEF_IP5) | 
|  | 41 | do_IRQ(MIPS_CPU_IRQ_BASE + 5); | 
|  | 42 | else if (pending & CAUSEF_IP7) | 
|  | 43 | do_IRQ(MIPS_CPU_IRQ_BASE + 7); | 
|  | 44 | else | 
|  | 45 | spurious_interrupt(); | 
| Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 46 | } | 
|  | 47 |  | 
| Yoichi Yuasa | d5ab1a6 | 2007-09-13 23:51:26 +0900 | [diff] [blame] | 48 | static struct irqaction cascade = { | 
|  | 49 | .handler	= no_action, | 
| Yoichi Yuasa | d5ab1a6 | 2007-09-13 23:51:26 +0900 | [diff] [blame] | 50 | .name		= "cascade", | 
| Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 51 | }; | 
|  | 52 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | void __init arch_init_irq(void) | 
|  | 54 | { | 
| Yoichi Yuasa | d5ab1a6 | 2007-09-13 23:51:26 +0900 | [diff] [blame] | 55 | mips_cpu_irq_init(); | 
|  | 56 | gt641xx_irq_init(); | 
|  | 57 | init_i8259_irqs(); | 
| Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 58 |  | 
| Yoichi Yuasa | d5ab1a6 | 2007-09-13 23:51:26 +0900 | [diff] [blame] | 59 | setup_irq(GT641XX_CASCADE_IRQ, &cascade); | 
|  | 60 | setup_irq(I8259_CASCADE_IRQ, &cascade); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | } |