aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMagnus Damm <damm@opensource.se>2011-11-22 01:15:57 -0500
committerPaul Mundt <lethal@linux-sh.org>2011-11-24 03:23:58 -0500
commit1b6cec8a6910ca08d727898453baad22b0122920 (patch)
tree1cbacca7a140e4ec151dac1dbe5145cb0299e648 /arch
parenta9098b372606a15745cdeb012de4ee91c0df82c4 (diff)
ARM: mach-shmobile: Kota2 PINT fix
Support PINT on sh73a0 and Kota2 using INTC PINT macros. With this patch applied the Kota2 ethernet is handled through one of the chained sh73a0 PINT interrupt controllers. sh73a0 PINT support is included in 3.2-rc but the Kota2 board code does not make use of this shared code base without this patch. Without this patch kota2 on-board ethernet is broken. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-shmobile/board-kota2.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/arch/arm/mach-shmobile/board-kota2.c b/arch/arm/mach-shmobile/board-kota2.c
index bd9a78424d6b..5e084b9a8404 100644
--- a/arch/arm/mach-shmobile/board-kota2.c
+++ b/arch/arm/mach-shmobile/board-kota2.c
@@ -56,7 +56,7 @@ static struct resource smsc9220_resources[] = {
56 .flags = IORESOURCE_MEM, 56 .flags = IORESOURCE_MEM,
57 }, 57 },
58 [1] = { 58 [1] = {
59 .start = gic_spi(33), /* PINTA2 @ PORT144 */ 59 .start = SH73A0_PINT0_IRQ(2), /* PINTA2 */
60 .flags = IORESOURCE_IRQ, 60 .flags = IORESOURCE_IRQ,
61 }, 61 },
62}; 62};
@@ -317,18 +317,6 @@ static void __init kota2_map_io(void)
317 shmobile_setup_console(); 317 shmobile_setup_console();
318} 318}
319 319
320#define PINTER0A 0xe69000a0
321#define PINTCR0A 0xe69000b0
322
323void __init kota2_init_irq(void)
324{
325 sh73a0_init_irq();
326
327 /* setup PINT: enable PINTA2 as active low */
328 __raw_writel(1 << 29, PINTER0A);
329 __raw_writew(2 << 10, PINTCR0A);
330}
331
332static void __init kota2_init(void) 320static void __init kota2_init(void)
333{ 321{
334 sh73a0_pinmux_init(); 322 sh73a0_pinmux_init();
@@ -447,7 +435,7 @@ struct sys_timer kota2_timer = {
447 435
448MACHINE_START(KOTA2, "kota2") 436MACHINE_START(KOTA2, "kota2")
449 .map_io = kota2_map_io, 437 .map_io = kota2_map_io,
450 .init_irq = kota2_init_irq, 438 .init_irq = sh73a0_init_irq,
451 .handle_irq = shmobile_handle_irq_gic, 439 .handle_irq = shmobile_handle_irq_gic,
452 .init_machine = kota2_init, 440 .init_machine = kota2_init,
453 .timer = &kota2_timer, 441 .timer = &kota2_timer,