Commit f9260850 authored by Catalin Marinas's avatar Catalin Marinas

Disable the cascaded IRQ setup for RealView/EB MPCore revB

Because of hardware problems, the IRQ line from the secondary GIC is
always asserted.
Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
parent 85b4fe08
......@@ -188,7 +188,7 @@ static void __init gic_init_irq(void)
#endif
gic_dist_init(0, __io_address(REALVIEW_GIC_DIST_BASE), 29);
gic_cpu_init(0, __io_address(REALVIEW_GIC_CPU_BASE));
#ifdef CONFIG_REALVIEW_MPCORE
#if defined(CONFIG_REALVIEW_MPCORE) && !defined(CONFIG_REALVIEW_MPCORE_REVB)
gic_dist_init(1, __io_address(REALVIEW_GIC1_DIST_BASE), 64);
gic_cpu_init(1, __io_address(REALVIEW_GIC1_CPU_BASE));
gic_cascade_irq(1, IRQ_EB_IRQ1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment