diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-01 13:53:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-01 13:53:43 -0400 |
commit | 00e9028a95fb8a4d79f2fb695a853f33ea7d3b57 (patch) | |
tree | 2dea2ae498a6ce57de8890e87185aca5e9f3ad2d /arch/sh/boards/mach-se/7780/irq.c | |
parent | 57b1494d2ba544c62673234da6115c21fac27ffc (diff) | |
parent | 7cb93181629c613ee2b8f4ffe3446f8003074842 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6: (28 commits)
mm/hugetlb.c must #include <asm/io.h>
video: Fix up hp6xx driver build regressions.
sh: defconfig updates.
sh: Kill off stray mach-rsk7203 reference.
serial: sh-sci: Fix up SH7760/SH7780/SH7785 early printk regression.
sh: Move out individual boards without mach groups.
sh: Make sure AT_SYSINFO_EHDR is exposed to userspace in asm/auxvec.h.
sh: Allow SH-3 and SH-5 to use common headers.
sh: Provide common CPU headers, prune the SH-2 and SH-2A directories.
sh/maple: clean maple bus code
sh: More header path fixups for mach dir refactoring.
sh: Move out the solution engine headers to arch/sh/include/mach-se/
sh: I2C fix for AP325RXA and Migo-R
sh: Shuffle the board directories in to mach groups.
sh: dma-sh: Fix up dreamcast dma.h mach path.
sh: Switch KBUILD_DEFCONFIG to shx3_defconfig.
sh: Add ARCH_DEFCONFIG entries for sh and sh64.
sh: Fix compile error of Solution Engine
sh: Proper __put_user_asm() size mismatch fix.
sh: Stub in a dummy ENTRY_OFFSET for uImage offset calculation.
...
Diffstat (limited to 'arch/sh/boards/mach-se/7780/irq.c')
-rw-r--r-- | arch/sh/boards/mach-se/7780/irq.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/arch/sh/boards/mach-se/7780/irq.c b/arch/sh/boards/mach-se/7780/irq.c new file mode 100644 index 000000000000..66ad292c9fc3 --- /dev/null +++ b/arch/sh/boards/mach-se/7780/irq.c | |||
@@ -0,0 +1,46 @@ | |||
1 | /* | ||
2 | * linux/arch/sh/boards/se/7780/irq.c | ||
3 | * | ||
4 | * Copyright (C) 2006,2007 Nobuhiro Iwamatsu | ||
5 | * | ||
6 | * Hitachi UL SolutionEngine 7780 Support. | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/irq.h> | ||
14 | #include <linux/interrupt.h> | ||
15 | #include <asm/irq.h> | ||
16 | #include <asm/io.h> | ||
17 | #include <mach-se/mach/se7780.h> | ||
18 | |||
19 | /* | ||
20 | * Initialize IRQ setting | ||
21 | */ | ||
22 | void __init init_se7780_IRQ(void) | ||
23 | { | ||
24 | /* enable all interrupt at FPGA */ | ||
25 | ctrl_outw(0, FPGA_INTMSK1); | ||
26 | /* mask SM501 interrupt */ | ||
27 | ctrl_outw((ctrl_inw(FPGA_INTMSK1) | 0x0002), FPGA_INTMSK1); | ||
28 | /* enable all interrupt at FPGA */ | ||
29 | ctrl_outw(0, FPGA_INTMSK2); | ||
30 | |||
31 | /* set FPGA INTSEL register */ | ||
32 | /* FPGA + 0x06 */ | ||
33 | ctrl_outw( ((IRQPIN_SM501 << IRQPOS_SM501) | | ||
34 | (IRQPIN_SMC91CX << IRQPOS_SMC91CX)), FPGA_INTSEL1); | ||
35 | |||
36 | /* FPGA + 0x08 */ | ||
37 | ctrl_outw(((IRQPIN_EXTINT4 << IRQPOS_EXTINT4) | | ||
38 | (IRQPIN_EXTINT3 << IRQPOS_EXTINT3) | | ||
39 | (IRQPIN_EXTINT2 << IRQPOS_EXTINT2) | | ||
40 | (IRQPIN_EXTINT1 << IRQPOS_EXTINT1)), FPGA_INTSEL2); | ||
41 | |||
42 | /* FPGA + 0x0A */ | ||
43 | ctrl_outw((IRQPIN_PCCPW << IRQPOS_PCCPW), FPGA_INTSEL3); | ||
44 | |||
45 | plat_irq_setup_pins(IRQ_MODE_IRQ); /* install handlers for IRQ0-7 */ | ||
46 | } | ||