blob: bef06872f012d6ecb055aafeae92d9ed6f962135 [file] [log] [blame]
Yoichi Yuasa979934d2005-09-03 15:56:04 -07001/*
2 * Interrupt handing routines for NEC VR4100 series.
3 *
Yoichi Yuasaada8e952009-07-03 00:39:38 +09004 * Copyright (C) 2005-2007 Yoichi Yuasa <yuasa@linux-mips.org>
Yoichi Yuasa979934d2005-09-03 15:56:04 -07005 *
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>
22
23#include <asm/irq_cpu.h>
24#include <asm/system.h>
Yoichi Yuasa66151bb2006-07-13 17:33:03 +090025#include <asm/vr41xx/irq.h>
Yoichi Yuasa979934d2005-09-03 15:56:04 -070026
27typedef struct irq_cascade {
Ralf Baechle937a8012006-10-07 19:44:33 +010028 int (*get_irq)(unsigned int);
Yoichi Yuasa979934d2005-09-03 15:56:04 -070029} irq_cascade_t;
30
31static irq_cascade_t irq_cascade[NR_IRQS] __cacheline_aligned;
32
33static struct irqaction cascade_irqaction = {
34 .handler = no_action,
Yoichi Yuasa979934d2005-09-03 15:56:04 -070035 .name = "cascade",
36};
37
Ralf Baechle937a8012006-10-07 19:44:33 +010038int cascade_irq(unsigned int irq, int (*get_irq)(unsigned int))
Yoichi Yuasa979934d2005-09-03 15:56:04 -070039{
40 int retval = 0;
41
42 if (irq >= NR_IRQS)
43 return -EINVAL;
44
45 if (irq_cascade[irq].get_irq != NULL)
46 free_irq(irq, NULL);
47
48 irq_cascade[irq].get_irq = get_irq;
49
50 if (get_irq != NULL) {
51 retval = setup_irq(irq, &cascade_irqaction);
52 if (retval < 0)
53 irq_cascade[irq].get_irq = NULL;
54 }
55
56 return retval;
57}
58
59EXPORT_SYMBOL_GPL(cascade_irq);
60
Ralf Baechle937a8012006-10-07 19:44:33 +010061static void irq_dispatch(unsigned int irq)
Yoichi Yuasa979934d2005-09-03 15:56:04 -070062{
63 irq_cascade_t *cascade;
Ralf Baechle94dee172006-07-02 14:41:42 +010064 struct irq_desc *desc;
Yoichi Yuasa979934d2005-09-03 15:56:04 -070065
66 if (irq >= NR_IRQS) {
67 atomic_inc(&irq_err_count);
68 return;
69 }
70
71 cascade = irq_cascade + irq;
72 if (cascade->get_irq != NULL) {
73 unsigned int source_irq = irq;
roel kluina8347952008-09-15 20:50:54 -040074 int ret;
Yoichi Yuasa979934d2005-09-03 15:56:04 -070075 desc = irq_desc + source_irq;
Yoichi Yuasa364ca8a2007-01-22 23:01:06 +090076 if (desc->chip->mask_ack)
77 desc->chip->mask_ack(source_irq);
78 else {
79 desc->chip->mask(source_irq);
80 desc->chip->ack(source_irq);
81 }
roel kluina8347952008-09-15 20:50:54 -040082 ret = cascade->get_irq(irq);
83 irq = ret;
84 if (ret < 0)
Yoichi Yuasa979934d2005-09-03 15:56:04 -070085 atomic_inc(&irq_err_count);
86 else
Ralf Baechle937a8012006-10-07 19:44:33 +010087 irq_dispatch(irq);
Yoichi Yuasa364ca8a2007-01-22 23:01:06 +090088 if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask)
89 desc->chip->unmask(source_irq);
Yoichi Yuasa979934d2005-09-03 15:56:04 -070090 } else
Ralf Baechle937a8012006-10-07 19:44:33 +010091 do_IRQ(irq);
Yoichi Yuasa979934d2005-09-03 15:56:04 -070092}
93
Ralf Baechle937a8012006-10-07 19:44:33 +010094asmlinkage void plat_irq_dispatch(void)
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010095{
96 unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM;
97
98 if (pending & CAUSEF_IP7)
Yoichi Yuasa24d55722007-01-18 22:27:11 +090099 do_IRQ(TIMER_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100100 else if (pending & 0x7800) {
101 if (pending & CAUSEF_IP3)
Yoichi Yuasa24d55722007-01-18 22:27:11 +0900102 irq_dispatch(INT1_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100103 else if (pending & CAUSEF_IP4)
Yoichi Yuasa24d55722007-01-18 22:27:11 +0900104 irq_dispatch(INT2_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100105 else if (pending & CAUSEF_IP5)
Yoichi Yuasa24d55722007-01-18 22:27:11 +0900106 irq_dispatch(INT3_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100107 else if (pending & CAUSEF_IP6)
Yoichi Yuasa24d55722007-01-18 22:27:11 +0900108 irq_dispatch(INT4_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100109 } else if (pending & CAUSEF_IP2)
Yoichi Yuasa24d55722007-01-18 22:27:11 +0900110 irq_dispatch(INT0_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100111 else if (pending & CAUSEF_IP0)
Yoichi Yuasa24d55722007-01-18 22:27:11 +0900112 do_IRQ(MIPS_SOFTINT0_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100113 else if (pending & CAUSEF_IP1)
Yoichi Yuasa24d55722007-01-18 22:27:11 +0900114 do_IRQ(MIPS_SOFTINT1_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100115 else
Ralf Baechle937a8012006-10-07 19:44:33 +0100116 spurious_interrupt();
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100117}
Yoichi Yuasa979934d2005-09-03 15:56:04 -0700118
119void __init arch_init_irq(void)
120{
Atsushi Nemoto97dcb822007-01-08 02:14:29 +0900121 mips_cpu_irq_init();
Yoichi Yuasa979934d2005-09-03 15:56:04 -0700122}