]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/mips/vr41xx/common/irq.c
[MIPS] VR41xx: unsigned irq cannot be negative
[mirror_ubuntu-bionic-kernel.git] / arch / mips / vr41xx / common / irq.c
CommitLineData
979934da
YY
1/*
2 * Interrupt handing routines for NEC VR4100 series.
3 *
364ca8a8 4 * Copyright (C) 2005-2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
979934da
YY
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>
22
23#include <asm/irq_cpu.h>
24#include <asm/system.h>
66151bbd 25#include <asm/vr41xx/irq.h>
979934da
YY
26
27typedef struct irq_cascade {
937a8015 28 int (*get_irq)(unsigned int);
979934da
YY
29} irq_cascade_t;
30
31static irq_cascade_t irq_cascade[NR_IRQS] __cacheline_aligned;
32
33static struct irqaction cascade_irqaction = {
34 .handler = no_action,
35 .mask = CPU_MASK_NONE,
36 .name = "cascade",
37};
38
937a8015 39int cascade_irq(unsigned int irq, int (*get_irq)(unsigned int))
979934da
YY
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
60EXPORT_SYMBOL_GPL(cascade_irq);
61
937a8015 62static void irq_dispatch(unsigned int irq)
979934da
YY
63{
64 irq_cascade_t *cascade;
94dee171 65 struct irq_desc *desc;
979934da
YY
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;
a8347954 75 int ret;
979934da 76 desc = irq_desc + source_irq;
364ca8a8
YY
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 }
a8347954 83 ret = cascade->get_irq(irq);
84 irq = ret;
85 if (ret < 0)
979934da
YY
86 atomic_inc(&irq_err_count);
87 else
937a8015 88 irq_dispatch(irq);
364ca8a8
YY
89 if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask)
90 desc->chip->unmask(source_irq);
979934da 91 } else
937a8015 92 do_IRQ(irq);
979934da
YY
93}
94
937a8015 95asmlinkage void plat_irq_dispatch(void)
e4ac58af
RB
96{
97 unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM;
98
99 if (pending & CAUSEF_IP7)
24d55728 100 do_IRQ(TIMER_IRQ);
e4ac58af
RB
101 else if (pending & 0x7800) {
102 if (pending & CAUSEF_IP3)
24d55728 103 irq_dispatch(INT1_IRQ);
e4ac58af 104 else if (pending & CAUSEF_IP4)
24d55728 105 irq_dispatch(INT2_IRQ);
e4ac58af 106 else if (pending & CAUSEF_IP5)
24d55728 107 irq_dispatch(INT3_IRQ);
e4ac58af 108 else if (pending & CAUSEF_IP6)
24d55728 109 irq_dispatch(INT4_IRQ);
e4ac58af 110 } else if (pending & CAUSEF_IP2)
24d55728 111 irq_dispatch(INT0_IRQ);
e4ac58af 112 else if (pending & CAUSEF_IP0)
24d55728 113 do_IRQ(MIPS_SOFTINT0_IRQ);
e4ac58af 114 else if (pending & CAUSEF_IP1)
24d55728 115 do_IRQ(MIPS_SOFTINT1_IRQ);
e4ac58af 116 else
937a8015 117 spurious_interrupt();
e4ac58af 118}
979934da
YY
119
120void __init arch_init_irq(void)
121{
97dcb82d 122 mips_cpu_irq_init();
979934da 123}