| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  *  Interrupt handing routines for NEC VR4100 series. | 
 | 3 |  * | 
| Yoichi Yuasa | ada8e95 | 2009-07-03 00:39:38 +0900 | [diff] [blame] | 4 |  *  Copyright (C) 2005-2007  Yoichi Yuasa <yuasa@linux-mips.org> | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 5 |  * | 
 | 6 |  *  This program is free software; you can redistribute it and/or modify | 
 | 7 |  *  it under the terms of the GNU General Public License as published by | 
 | 8 |  *  the Free Software Foundation; either version 2 of the License, or | 
 | 9 |  *  (at your option) any later version. | 
 | 10 |  * | 
 | 11 |  *  This program is distributed in the hope that it will be useful, | 
 | 12 |  *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 13 |  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 14 |  *  GNU General Public License for more details. | 
 | 15 |  * | 
 | 16 |  *  You should have received a copy of the GNU General Public License | 
 | 17 |  *  along with this program; if not, write to the Free Software | 
 | 18 |  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
 | 19 |  */ | 
 | 20 | #include <linux/interrupt.h> | 
 | 21 | #include <linux/module.h> | 
| David Howells | ca4d3e67 | 2010-10-07 14:08:54 +0100 | [diff] [blame] | 22 | #include <linux/irq.h> | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 23 |  | 
 | 24 | #include <asm/irq_cpu.h> | 
 | 25 | #include <asm/system.h> | 
| Yoichi Yuasa | 66151bb | 2006-07-13 17:33:03 +0900 | [diff] [blame] | 26 | #include <asm/vr41xx/irq.h> | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 27 |  | 
 | 28 | typedef struct irq_cascade { | 
| Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 29 | 	int (*get_irq)(unsigned int); | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 30 | } irq_cascade_t; | 
 | 31 |  | 
 | 32 | static irq_cascade_t irq_cascade[NR_IRQS] __cacheline_aligned; | 
 | 33 |  | 
 | 34 | static struct irqaction cascade_irqaction = { | 
 | 35 | 	.handler	= no_action, | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 36 | 	.name		= "cascade", | 
 | 37 | }; | 
 | 38 |  | 
| Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 39 | int cascade_irq(unsigned int irq, int (*get_irq)(unsigned int)) | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 40 | { | 
 | 41 | 	int retval = 0; | 
 | 42 |  | 
 | 43 | 	if (irq >= NR_IRQS) | 
 | 44 | 		return -EINVAL; | 
 | 45 |  | 
 | 46 | 	if (irq_cascade[irq].get_irq != NULL) | 
 | 47 | 		free_irq(irq, NULL); | 
 | 48 |  | 
 | 49 | 	irq_cascade[irq].get_irq = get_irq; | 
 | 50 |  | 
 | 51 | 	if (get_irq != NULL) { | 
 | 52 | 		retval = setup_irq(irq, &cascade_irqaction); | 
 | 53 | 		if (retval < 0) | 
 | 54 | 			irq_cascade[irq].get_irq = NULL; | 
 | 55 | 	} | 
 | 56 |  | 
 | 57 | 	return retval; | 
 | 58 | } | 
 | 59 |  | 
 | 60 | EXPORT_SYMBOL_GPL(cascade_irq); | 
 | 61 |  | 
| Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 62 | static void irq_dispatch(unsigned int irq) | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 63 | { | 
 | 64 | 	irq_cascade_t *cascade; | 
| Ralf Baechle | 94dee17 | 2006-07-02 14:41:42 +0100 | [diff] [blame] | 65 | 	struct irq_desc *desc; | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 66 |  | 
 | 67 | 	if (irq >= NR_IRQS) { | 
 | 68 | 		atomic_inc(&irq_err_count); | 
 | 69 | 		return; | 
 | 70 | 	} | 
 | 71 |  | 
 | 72 | 	cascade = irq_cascade + irq; | 
 | 73 | 	if (cascade->get_irq != NULL) { | 
 | 74 | 		unsigned int source_irq = irq; | 
| roel kluin | a834795 | 2008-09-15 20:50:54 -0400 | [diff] [blame] | 75 | 		int ret; | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 76 | 		desc = irq_desc + source_irq; | 
| Yoichi Yuasa | 364ca8a | 2007-01-22 23:01:06 +0900 | [diff] [blame] | 77 | 		if (desc->chip->mask_ack) | 
 | 78 | 			desc->chip->mask_ack(source_irq); | 
 | 79 | 		else { | 
 | 80 | 			desc->chip->mask(source_irq); | 
 | 81 | 			desc->chip->ack(source_irq); | 
 | 82 | 		} | 
| roel kluin | a834795 | 2008-09-15 20:50:54 -0400 | [diff] [blame] | 83 | 		ret = cascade->get_irq(irq); | 
 | 84 | 		irq = ret; | 
 | 85 | 		if (ret < 0) | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 86 | 			atomic_inc(&irq_err_count); | 
 | 87 | 		else | 
| Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 88 | 			irq_dispatch(irq); | 
| Yoichi Yuasa | 364ca8a | 2007-01-22 23:01:06 +0900 | [diff] [blame] | 89 | 		if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask) | 
 | 90 | 			desc->chip->unmask(source_irq); | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 91 | 	} else | 
| Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 92 | 		do_IRQ(irq); | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 93 | } | 
 | 94 |  | 
| Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 95 | asmlinkage void plat_irq_dispatch(void) | 
| Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 96 | { | 
 | 97 | 	unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM; | 
 | 98 |  | 
 | 99 | 	if (pending & CAUSEF_IP7) | 
| Yoichi Yuasa | 24d5572 | 2007-01-18 22:27:11 +0900 | [diff] [blame] | 100 | 		do_IRQ(TIMER_IRQ); | 
| Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 101 | 	else if (pending & 0x7800) { | 
 | 102 | 		if (pending & CAUSEF_IP3) | 
| Yoichi Yuasa | 24d5572 | 2007-01-18 22:27:11 +0900 | [diff] [blame] | 103 | 			irq_dispatch(INT1_IRQ); | 
| Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 104 | 		else if (pending & CAUSEF_IP4) | 
| Yoichi Yuasa | 24d5572 | 2007-01-18 22:27:11 +0900 | [diff] [blame] | 105 | 			irq_dispatch(INT2_IRQ); | 
| Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 106 | 		else if (pending & CAUSEF_IP5) | 
| Yoichi Yuasa | 24d5572 | 2007-01-18 22:27:11 +0900 | [diff] [blame] | 107 | 			irq_dispatch(INT3_IRQ); | 
| Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 108 | 		else if (pending & CAUSEF_IP6) | 
| Yoichi Yuasa | 24d5572 | 2007-01-18 22:27:11 +0900 | [diff] [blame] | 109 | 			irq_dispatch(INT4_IRQ); | 
| Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 110 | 	} else if (pending & CAUSEF_IP2) | 
| Yoichi Yuasa | 24d5572 | 2007-01-18 22:27:11 +0900 | [diff] [blame] | 111 | 		irq_dispatch(INT0_IRQ); | 
| Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 112 | 	else if (pending & CAUSEF_IP0) | 
| Yoichi Yuasa | 24d5572 | 2007-01-18 22:27:11 +0900 | [diff] [blame] | 113 | 		do_IRQ(MIPS_SOFTINT0_IRQ); | 
| Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 114 | 	else if (pending & CAUSEF_IP1) | 
| Yoichi Yuasa | 24d5572 | 2007-01-18 22:27:11 +0900 | [diff] [blame] | 115 | 		do_IRQ(MIPS_SOFTINT1_IRQ); | 
| Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 116 | 	else | 
| Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 117 | 		spurious_interrupt(); | 
| Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 118 | } | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 119 |  | 
 | 120 | void __init arch_init_irq(void) | 
 | 121 | { | 
| Atsushi Nemoto | 97dcb82 | 2007-01-08 02:14:29 +0900 | [diff] [blame] | 122 | 	mips_cpu_irq_init(); | 
| Yoichi Yuasa | 979934d | 2005-09-03 15:56:04 -0700 | [diff] [blame] | 123 | } |