aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-shmobile/setup-sh7372.c
diff options
context:
space:
mode:
authorMagnus Damm <damm@opensource.se>2010-02-09 03:36:03 +0000
committerPaul Mundt <lethal@linux-sh.org>2010-02-09 18:01:46 +0900
commite4e430c611db75f58d3ca33869e182a530859426 (patch)
treecab56f54b4f8b8f1392b83d38ece53484b60996b /arch/arm/mach-shmobile/setup-sh7372.c
parent6673be73809c8aa1ca5255c83f4fc85c43fdbfab (diff)
downloadkernel_samsung_smdk4412-e4e430c611db75f58d3ca33869e182a530859426.zip
kernel_samsung_smdk4412-e4e430c611db75f58d3ca33869e182a530859426.tar.gz
kernel_samsung_smdk4412-e4e430c611db75f58d3ca33869e182a530859426.tar.bz2
ARM: mach-shmobile: sh7372 INTCA support
Add support for the sh7372 INTCA hardware block. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/arm/mach-shmobile/setup-sh7372.c')
-rw-r--r--arch/arm/mach-shmobile/setup-sh7372.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/arch/arm/mach-shmobile/setup-sh7372.c b/arch/arm/mach-shmobile/setup-sh7372.c
index db972e6..1d11532 100644
--- a/arch/arm/mach-shmobile/setup-sh7372.c
+++ b/arch/arm/mach-shmobile/setup-sh7372.c
@@ -197,45 +197,3 @@ void __init sh7372_add_early_devices(void)
early_platform_add_devices(sh7372_early_devices,
ARRAY_SIZE(sh7372_early_devices));
}
-
-enum {
- UNUSED = 0,
-
- /* interrupt sources INTCA */
-
- SCIFA0, SCIFA1, SCIFA2, SCIFA3, SCIFA4, SCIFA5, SCIFB,
- CMT10,
-};
-
-static struct intc_vect vectors[] = {
- INTC_VECT(CMT10, 0xb00),
- INTC_VECT(SCIFA0, 0xc00), INTC_VECT(SCIFA1, 0xc20),
- INTC_VECT(SCIFA2, 0xc40), INTC_VECT(SCIFA3, 0xc60),
- INTC_VECT(SCIFA4, 0xd20), INTC_VECT(SCIFA5, 0xd40),
- INTC_VECT(SCIFB, 0xd60),
-};
-
-static struct intc_mask_reg mask_registers[] = {
- { 0xe6940094, 0xe69400d4, 8, /* IMR5A / IMCR5A */
- { 0, 0, 0, 0, SCIFA3, SCIFA2, SCIFA1, SCIFA0 } },
- { 0xe6940098, 0xe69400d8, 8, /* IMR6A / IMCR6A */
- { SCIFB, SCIFA5, SCIFA4, 0, 0, 0, 0, 0 } },
- { 0xe69400a4, 0xe69400e4, 8, /* IMR9A / IMCR9A */
- { 0, 0, 0, CMT10, 0, 0, 0, 0 } },
-};
-
-static struct intc_prio_reg prio_registers[] = {
- { 0xe6940014, 0, 16, 4, /* IPRFA */ { 0, 0, 0, CMT10 } },
- { 0xe6940018, 0, 16, 4, /* IPRGA */ { SCIFA0, SCIFA1,
- SCIFA2, SCIFA3 } },
- { 0xe6940020, 0, 16, 4, /* IPRIA */ { 0, SCIFA4, 0, 0 } },
- { 0xe6940034, 0, 16, 4, /* IPRNA */ { SCIFB, SCIFA5, 0, 0 } },
-};
-
-static DECLARE_INTC_DESC(intc_desc, "sh7372", vectors, NULL, mask_registers,
- prio_registers, NULL);
-
-void __init sh7372_init_irq(void)
-{
- register_intc_controller(&intc_desc);
-}