Skip to content

Commit

Permalink
ARM: 6807/1: realview: Fix secondary GIC initialisation for EB with M…
Browse files Browse the repository at this point in the history
…PCore tile

The second GIC, present when EB board is used with a MPCore tile,
was initialised starting with irq number 64, which made interrupts
64-95 in the primary GIC unusable.

Signed-off-by: Pawel Moll <pawel.moll@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Pawel Moll authored and Russell King committed Mar 26, 2011
1 parent 16c29da commit 0efc48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-realview/realview_eb.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ static void __init gic_init_irq(void)

#ifndef CONFIG_REALVIEW_EB_ARM11MP_REVB
/* board GIC, secondary */
gic_init(1, 64, __io_address(REALVIEW_EB_GIC_DIST_BASE),
gic_init(1, 96, __io_address(REALVIEW_EB_GIC_DIST_BASE),
__io_address(REALVIEW_EB_GIC_CPU_BASE));
gic_cascade_irq(1, IRQ_EB11MP_EB_IRQ1);
#endif
Expand Down

0 comments on commit 0efc48e

Please sign in to comment.