diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-11-04 11:44:21 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-11-04 11:44:21 +0900 |
commit | a37c6c7aec38a693f87ee5ccc6e60a5b3ee700f2 (patch) | |
tree | 725a5fcc4627d7e1896a3646f26687f714dba31d /arch/sh/include | |
parent | 45b9deaf14e74543371aa8faea69c14e27b038c6 (diff) | |
download | linux-3.10-a37c6c7aec38a693f87ee5ccc6e60a5b3ee700f2.tar.gz linux-3.10-a37c6c7aec38a693f87ee5ccc6e60a5b3ee700f2.tar.bz2 linux-3.10-a37c6c7aec38a693f87ee5ccc6e60a5b3ee700f2.zip |
sh: mach-se: Convert SE7722 FPGA to dynamic IRQ allocation.
This gets rid of the arbitrary set of vectors used by the SE7722 FPGA
interrupt controller and witches over to a completely dynamic set.
No assumptions regarding a contiguous range are made, and the platform
resources themselves need to be filled in lazily.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include')
-rw-r--r-- | arch/sh/include/mach-se/mach/se7722.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/arch/sh/include/mach-se/mach/se7722.h b/arch/sh/include/mach-se/mach/se7722.h index e971d9a82f4..16505bfb8a9 100644 --- a/arch/sh/include/mach-se/mach/se7722.h +++ b/arch/sh/include/mach-se/mach/se7722.h @@ -92,18 +92,11 @@ #define SE7722_FPGA_IRQ_MRSHPC1 3 /* IRQ1 */ #define SE7722_FPGA_IRQ_MRSHPC2 4 /* IRQ1 */ #define SE7722_FPGA_IRQ_MRSHPC3 5 /* IRQ1 */ - #define SE7722_FPGA_IRQ_NR 6 -#define SE7722_FPGA_IRQ_BASE 110 - -#define MRSHPC_IRQ3 (SE7722_FPGA_IRQ_BASE + SE7722_FPGA_IRQ_MRSHPC3) -#define MRSHPC_IRQ2 (SE7722_FPGA_IRQ_BASE + SE7722_FPGA_IRQ_MRSHPC2) -#define MRSHPC_IRQ1 (SE7722_FPGA_IRQ_BASE + SE7722_FPGA_IRQ_MRSHPC1) -#define MRSHPC_IRQ0 (SE7722_FPGA_IRQ_BASE + SE7722_FPGA_IRQ_MRSHPC0) -#define SMC_IRQ (SE7722_FPGA_IRQ_BASE + SE7722_FPGA_IRQ_SMC) -#define USB_IRQ (SE7722_FPGA_IRQ_BASE + SE7722_FPGA_IRQ_USB) /* arch/sh/boards/se/7722/irq.c */ +extern unsigned int se7722_fpga_irq[]; + void init_se7722_IRQ(void); #define __IO_PREFIX se7722 |