irq.c 3.0 KB
Newer Older
1 2 3
/*
 *  Interrupt handing routines for NEC VR4100 series.
 *
4
 *  Copyright (C) 2005-2007  Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
#include <linux/interrupt.h>
#include <linux/module.h>

#include <asm/irq_cpu.h>
#include <asm/system.h>
25
#include <asm/vr41xx/irq.h>
26 27

typedef struct irq_cascade {
28
	int (*get_irq)(unsigned int);
29 30 31 32 33 34 35 36 37 38
} irq_cascade_t;

static irq_cascade_t irq_cascade[NR_IRQS] __cacheline_aligned;

static struct irqaction cascade_irqaction = {
	.handler	= no_action,
	.mask		= CPU_MASK_NONE,
	.name		= "cascade",
};

39
int cascade_irq(unsigned int irq, int (*get_irq)(unsigned int))
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
{
	int retval = 0;

	if (irq >= NR_IRQS)
		return -EINVAL;

	if (irq_cascade[irq].get_irq != NULL)
		free_irq(irq, NULL);

	irq_cascade[irq].get_irq = get_irq;

	if (get_irq != NULL) {
		retval = setup_irq(irq, &cascade_irqaction);
		if (retval < 0)
			irq_cascade[irq].get_irq = NULL;
	}

	return retval;
}

EXPORT_SYMBOL_GPL(cascade_irq);

62
static void irq_dispatch(unsigned int irq)
63 64
{
	irq_cascade_t *cascade;
65
	struct irq_desc *desc;
66 67 68 69 70 71 72 73 74 75

	if (irq >= NR_IRQS) {
		atomic_inc(&irq_err_count);
		return;
	}

	cascade = irq_cascade + irq;
	if (cascade->get_irq != NULL) {
		unsigned int source_irq = irq;
		desc = irq_desc + source_irq;
76 77 78 79 80 81
		if (desc->chip->mask_ack)
			desc->chip->mask_ack(source_irq);
		else {
			desc->chip->mask(source_irq);
			desc->chip->ack(source_irq);
		}
82
		irq = cascade->get_irq(irq);
83 84 85
		if (irq < 0)
			atomic_inc(&irq_err_count);
		else
86
			irq_dispatch(irq);
87 88
		if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask)
			desc->chip->unmask(source_irq);
89
	} else
90
		do_IRQ(irq);
91 92
}

93
asmlinkage void plat_irq_dispatch(void)
94 95 96 97
{
	unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM;

	if (pending & CAUSEF_IP7)
98
		do_IRQ(TIMER_IRQ);
99 100
	else if (pending & 0x7800) {
		if (pending & CAUSEF_IP3)
101
			irq_dispatch(INT1_IRQ);
102
		else if (pending & CAUSEF_IP4)
103
			irq_dispatch(INT2_IRQ);
104
		else if (pending & CAUSEF_IP5)
105
			irq_dispatch(INT3_IRQ);
106
		else if (pending & CAUSEF_IP6)
107
			irq_dispatch(INT4_IRQ);
108
	} else if (pending & CAUSEF_IP2)
109
		irq_dispatch(INT0_IRQ);
110
	else if (pending & CAUSEF_IP0)
111
		do_IRQ(MIPS_SOFTINT0_IRQ);
112
	else if (pending & CAUSEF_IP1)
113
		do_IRQ(MIPS_SOFTINT1_IRQ);
114
	else
115
		spurious_interrupt();
116
}
117 118 119

void __init arch_init_irq(void)
{
120
	mips_cpu_irq_init();
121
}
反馈
建议
客服 返回
顶部