summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/files/arch/mips/ralink/rt288x/irq.c
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-08-30 19:15:51 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-08-30 19:15:51 +0000
commitb887a6d197170b719028f31085876d8deaed35b6 (patch)
tree36b5045e64065dcb96b8da4d93ffe20fc286a711 /target/linux/ramips/files/arch/mips/ralink/rt288x/irq.c
parent237a5a2c34824a249326c1cb58c495ab4629baae (diff)
[ramips] initial support for RT288x/RT305x
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17439 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/files/arch/mips/ralink/rt288x/irq.c')
-rw-r--r--target/linux/ramips/files/arch/mips/ralink/rt288x/irq.c125
1 files changed, 125 insertions, 0 deletions
diff --git a/target/linux/ramips/files/arch/mips/ralink/rt288x/irq.c b/target/linux/ramips/files/arch/mips/ralink/rt288x/irq.c
new file mode 100644
index 000000000..47a537400
--- /dev/null
+++ b/target/linux/ramips/files/arch/mips/ralink/rt288x/irq.c
@@ -0,0 +1,125 @@
+/*
+ * Ralink RT288x SoC specific interrupt handling
+ *
+ * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
+ * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
+ * by the Free Software Foundation.
+ */
+
+#include <linux/kernel.h>
+#include <linux/init.h>
+#include <linux/interrupt.h>
+#include <linux/irq.h>
+
+#include <asm/irq_cpu.h>
+#include <asm/mipsregs.h>
+
+#include <asm/mach-ralink/rt288x.h>
+#include <asm/mach-ralink/rt288x_regs.h>
+
+static void rt288x_intc_irq_dispatch(void)
+{
+ u32 pending;
+
+ pending = rt288x_intc_rr(INTC_REG_STATUS0);
+
+ if (pending & RT2880_INTC_INT_TIMER0)
+ do_IRQ(RT2880_INTC_IRQ_TIMER0);
+
+ else if (pending & RT2880_INTC_INT_TIMER1)
+ do_IRQ(RT2880_INTC_IRQ_TIMER1);
+
+ else if (pending & RT2880_INTC_INT_UART0)
+ do_IRQ(RT2880_INTC_IRQ_UART0);
+
+ else if (pending & RT2880_INTC_INT_PCM)
+ do_IRQ(RT2880_INTC_IRQ_PCM);
+
+ else if (pending & RT2880_INTC_INT_UART1)
+ do_IRQ(RT2880_INTC_IRQ_UART1);
+
+ /* TODO: handle PIO interrupts as well */
+
+ else
+ spurious_interrupt();
+}
+
+static void rt288x_intc_irq_unmask(unsigned int irq)
+{
+ irq -= RT288X_INTC_IRQ_BASE;
+ rt288x_intc_wr((1 << irq), INTC_REG_ENABLE);
+}
+
+static void rt288x_intc_irq_mask(unsigned int irq)
+{
+ irq -= RT288X_INTC_IRQ_BASE;
+ rt288x_intc_wr((1 << irq), INTC_REG_DISABLE);
+}
+
+struct irq_chip rt288x_intc_irq_chip = {
+ .name = "RT288X INTC",
+ .unmask = rt288x_intc_irq_unmask,
+ .mask = rt288x_intc_irq_mask,
+ .mask_ack = rt288x_intc_irq_mask,
+};
+
+static struct irqaction rt288x_intc_irqaction = {
+ .handler = no_action,
+ .name = "cascade [RT288X INTC]",
+};
+
+static void __init rt288x_intc_irq_init(void)
+{
+ int i;
+
+ /* disable all interrupts */
+ rt288x_intc_wr(~0, INTC_REG_DISABLE);
+
+ /* route all INTC interrupts to MIPS HW0 interrupt */
+ rt288x_intc_wr(0, INTC_REG_TYPE);
+
+ for (i = RT288X_INTC_IRQ_BASE;
+ i < RT288X_INTC_IRQ_BASE + RT288X_INTC_IRQ_COUNT; i++) {
+ irq_desc[i].status = IRQ_DISABLED;
+ set_irq_chip_and_handler(i, &rt288x_intc_irq_chip,
+ handle_level_irq);
+ }
+
+ setup_irq(RT288X_CPU_IRQ_INTC, &rt288x_intc_irqaction);
+
+ rt288x_intc_wr(RT2880_INTC_INT_GLOBAL, INTC_REG_ENABLE);
+}
+
+asmlinkage void plat_irq_dispatch(void)
+{
+ unsigned long pending;
+
+ pending = read_c0_status() & read_c0_cause() & ST0_IM;
+
+ if (pending & STATUSF_IP7)
+ do_IRQ(RT288X_CPU_IRQ_COUNTER);
+
+ else if (pending & STATUSF_IP4)
+ do_IRQ(RT288X_CPU_IRQ_PCI);
+
+ else if (pending & STATUSF_IP5)
+ do_IRQ(RT288X_CPU_IRQ_FE);
+
+ else if (pending & STATUSF_IP6)
+ do_IRQ(RT288X_CPU_IRQ_WNIC);
+
+ else if (pending & STATUSF_IP2)
+ rt288x_intc_irq_dispatch();
+
+ else
+ spurious_interrupt();
+}
+
+void __init arch_init_irq(void)
+{
+ mips_cpu_irq_init();
+ rt288x_intc_irq_init();
+}