|
@@ -55,12 +55,17 @@ static void __init xilinx_init_machine(void)
|
|
|
of_platform_bus_probe(NULL, zynq_of_bus_ids, NULL);
|
|
|
}
|
|
|
|
|
|
+static struct of_device_id irq_match[] __initdata = {
|
|
|
+ { .compatible = "arm,cortex-a9-gic", .data = gic_of_init, },
|
|
|
+ { }
|
|
|
+};
|
|
|
+
|
|
|
/**
|
|
|
* xilinx_irq_init() - Interrupt controller initialization for the GIC.
|
|
|
*/
|
|
|
static void __init xilinx_irq_init(void)
|
|
|
{
|
|
|
- gic_init(0, 29, SCU_GIC_DIST_BASE, SCU_GIC_CPU_BASE);
|
|
|
+ of_irq_init(irq_match);
|
|
|
}
|
|
|
|
|
|
/* The minimum devices needed to be mapped before the VM system is up and
|