summaryrefslogtreecommitdiffstats
path: root/arch/sh/boards/renesas/sdk7780/irq.c
diff options
context:
space:
mode:
authorNicholas Beck2008-01-23 04:50:51 +0100
committerPaul Mundt2008-01-28 05:19:04 +0100
commit4862ec073975e28f432f164405e60fa6f5c9d071 (patch)
treeb493b2a7fcd0abd8d13f24e63eaf4aaa9c89077e /arch/sh/boards/renesas/sdk7780/irq.c
parentsh: constify function pointer tables (diff)
downloadkernel-qcow2-linux-4862ec073975e28f432f164405e60fa6f5c9d071.tar.gz
kernel-qcow2-linux-4862ec073975e28f432f164405e60fa6f5c9d071.tar.xz
kernel-qcow2-linux-4862ec073975e28f432f164405e60fa6f5c9d071.zip
sh: Add support for SDK7780 board.
Add support for Renesas Technology Europe SDK7780 board. Signed-off-by: Nicholas Beck <nbeck@mpc-data.co.uk> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/renesas/sdk7780/irq.c')
-rw-r--r--arch/sh/boards/renesas/sdk7780/irq.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/arch/sh/boards/renesas/sdk7780/irq.c b/arch/sh/boards/renesas/sdk7780/irq.c
new file mode 100644
index 000000000000..87cdc578f6ff
--- /dev/null
+++ b/arch/sh/boards/renesas/sdk7780/irq.c
@@ -0,0 +1,46 @@
+/*
+ * linux/arch/sh/boards/renesas/sdk7780/irq.c
+ *
+ * Renesas Technology Europe SDK7780 Support.
+ *
+ * Copyright (C) 2008 Nicholas Beck <nbeck@mpc-data.co.uk>
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file "COPYING" in the main directory of this archive
+ * for more details.
+ */
+#include <linux/init.h>
+#include <linux/irq.h>
+#include <linux/io.h>
+#include <asm/sdk7780.h>
+
+enum {
+ UNUSED = 0,
+ /* board specific interrupt sources */
+ SMC91C111, /* Ethernet controller */
+};
+
+static struct intc_vect fpga_vectors[] __initdata = {
+ INTC_IRQ(SMC91C111, IRQ_ETHERNET),
+};
+
+static struct intc_mask_reg fpga_mask_registers[] __initdata = {
+ { 0, FPGA_IRQ0MR, 16,
+ { 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, SMC91C111, 0, 0, 0, 0 } },
+};
+
+static DECLARE_INTC_DESC(fpga_intc_desc, "sdk7780-irq", fpga_vectors,
+ NULL, fpga_mask_registers, NULL, NULL);
+
+void __init init_sdk7780_IRQ(void)
+{
+ printk(KERN_INFO "Using SDK7780 interrupt controller.\n");
+
+ ctrl_outw(0xFFFF, FPGA_IRQ0MR);
+ /* Setup IRL 0-3 */
+ ctrl_outw(0x0003, FPGA_IMSR);
+ plat_irq_setup_pins(IRQ_MODE_IRL3210);
+
+ register_intc_controller(&fpga_intc_desc);
+}