blob: fad2bef432cdd94ad509fe2d6b45d74ee36d3661 [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>
David Howellsca4d3e672010-10-07 14:08:54 +010022#include <linux/irq.h>
Yoichi Yuasa979934d2005-09-03 15:56:04 -070023
24#include <asm/irq_cpu.h>
25#include <asm/system.h>
Yoichi Yuasa66151bb2006-07-13 17:33:03 +090026#include <asm/vr41xx/irq.h>
Yoichi Yuasa979934d2005-09-03 15:56:04 -070027
28typedef struct irq_cascade {
Ralf Baechle937a8012006-10-07 19:44:33 +010029 int (*get_irq)(unsigned int);
Yoichi Yuasa979934d2005-09-03 15:56:04 -070030} irq_cascade_t;
31
32static irq_cascade_t irq_cascade[NR_IRQS] __cacheline_aligned;
33
34static struct irqaction cascade_irqaction = {
35 .handler = no_action,
Yoichi Yuasa979934d2005-09-03 15:56:04 -070036 .name = "cascade",
Wu Zhangjin5a4a4ad2011-07-23 12:41:24 +000037 .flags = IRQF_NO_THREAD,
Yoichi Yuasa979934d2005-09-03 15:56:04 -070038};
39
Ralf Baechle937a8012006-10-07 19:44:33 +010040int cascade_irq(unsigned int irq, int (*get_irq)(unsigned int))
Yoichi Yuasa979934d2005-09-03 15:56:04 -070041{
42 int retval = 0;
43
44 if (irq >= NR_IRQS)
45 return -EINVAL;
46
47 if (irq_cascade[irq].get_irq != NULL)
48 free_irq(irq, NULL);
49
50 irq_cascade[irq].get_irq = get_irq;
51
52 if (get_irq != NULL) {
53 retval = setup_irq(irq, &cascade_irqaction);
54 if (retval < 0)
55 irq_cascade[irq].get_irq = NULL;
56 }
57
58 return retval;
59}
60
61EXPORT_SYMBOL_GPL(cascade_irq);
62
Ralf Baechle937a8012006-10-07 19:44:33 +010063static void irq_dispatch(unsigned int irq)
Yoichi Yuasa979934d2005-09-03 15:56:04 -070064{
65 irq_cascade_t *cascade;
Yoichi Yuasa979934d2005-09-03 15:56:04 -070066
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) {
Thomas Gleixnerfbaa4e22011-03-23 21:09:17 +000074 struct irq_desc *desc = irq_to_desc(irq);
75 struct irq_data *idata = irq_desc_get_irq_data(desc);
76 struct irq_chip *chip = irq_desc_get_chip(desc);
roel kluina8347952008-09-15 20:50:54 -040077 int ret;
Thomas Gleixnerfbaa4e22011-03-23 21:09:17 +000078
79 if (chip->irq_mask_ack)
80 chip->irq_mask_ack(idata);
Yoichi Yuasa364ca8a2007-01-22 23:01:06 +090081 else {
Thomas Gleixnerfbaa4e22011-03-23 21:09:17 +000082 chip->irq_mask(idata);
83 chip->irq_ack(idata);
Yoichi Yuasa364ca8a2007-01-22 23:01:06 +090084 }
roel kluina8347952008-09-15 20:50:54 -040085 ret = cascade->get_irq(irq);
86 irq = ret;
87 if (ret < 0)
Yoichi Yuasa979934d2005-09-03 15:56:04 -070088 atomic_inc(&irq_err_count);
89 else
Ralf Baechle937a8012006-10-07 19:44:33 +010090 irq_dispatch(irq);
Thomas Gleixner1d5f8212011-03-28 13:59:54 +020091 if (!irqd_irq_disabled(idata) && chip->irq_unmask)
Thomas Gleixnerfbaa4e22011-03-23 21:09:17 +000092 chip->irq_unmask(idata);
Yoichi Yuasa979934d2005-09-03 15:56:04 -070093 } else
Ralf Baechle937a8012006-10-07 19:44:33 +010094 do_IRQ(irq);
Yoichi Yuasa979934d2005-09-03 15:56:04 -070095}
96
Ralf Baechle937a8012006-10-07 19:44:33 +010097asmlinkage void plat_irq_dispatch(void)
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010098{
99 unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM;
100
101 if (pending & CAUSEF_IP7)
Yoichi Yuasa24d557282007-01-18 22:27:11 +0900102 do_IRQ(TIMER_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100103 else if (pending & 0x7800) {
104 if (pending & CAUSEF_IP3)
Yoichi Yuasa24d557282007-01-18 22:27:11 +0900105 irq_dispatch(INT1_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100106 else if (pending & CAUSEF_IP4)
Yoichi Yuasa24d557282007-01-18 22:27:11 +0900107 irq_dispatch(INT2_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100108 else if (pending & CAUSEF_IP5)
Yoichi Yuasa24d557282007-01-18 22:27:11 +0900109 irq_dispatch(INT3_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100110 else if (pending & CAUSEF_IP6)
Yoichi Yuasa24d557282007-01-18 22:27:11 +0900111 irq_dispatch(INT4_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100112 } else if (pending & CAUSEF_IP2)
Yoichi Yuasa24d557282007-01-18 22:27:11 +0900113 irq_dispatch(INT0_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100114 else if (pending & CAUSEF_IP0)
Yoichi Yuasa24d557282007-01-18 22:27:11 +0900115 do_IRQ(MIPS_SOFTINT0_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100116 else if (pending & CAUSEF_IP1)
Yoichi Yuasa24d557282007-01-18 22:27:11 +0900117 do_IRQ(MIPS_SOFTINT1_IRQ);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100118 else
Ralf Baechle937a8012006-10-07 19:44:33 +0100119 spurious_interrupt();
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100120}
Yoichi Yuasa979934d2005-09-03 15:56:04 -0700121
122void __init arch_init_irq(void)
123{
Atsushi Nemoto97dcb822007-01-08 02:14:29 +0900124 mips_cpu_irq_init();
Yoichi Yuasa979934d2005-09-03 15:56:04 -0700125}