zynq: use GIC device tree bindings
The Zynq uses the cortex-a9-gic. This eliminates the need to hardcode register addresses. Signed-off-by: Josh Cartwright <josh.cartwright@ni.com> Cc: John Linn <john.linn@xilinx.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Tested-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
8f0d8163b5
commit
f447ed2dbc
|
@ -36,16 +36,18 @@
|
||||||
ranges;
|
ranges;
|
||||||
|
|
||||||
intc: interrupt-controller@f8f01000 {
|
intc: interrupt-controller@f8f01000 {
|
||||||
|
compatible = "arm,cortex-a9-gic";
|
||||||
|
#interrupt-cells = <3>;
|
||||||
|
#address-cells = <1>;
|
||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
compatible = "arm,gic";
|
reg = <0xF8F01000 0x1000>,
|
||||||
reg = <0xF8F01000 0x1000>;
|
<0xF8F00100 0x100>;
|
||||||
#interrupt-cells = <2>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
uart0: uart@e0000000 {
|
uart0: uart@e0000000 {
|
||||||
compatible = "xlnx,xuartps";
|
compatible = "xlnx,xuartps";
|
||||||
reg = <0xE0000000 0x1000>;
|
reg = <0xE0000000 0x1000>;
|
||||||
interrupts = <59 0>;
|
interrupts = <0 27 4>;
|
||||||
clock = <50000000>;
|
clock = <50000000>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -55,12 +55,17 @@ static void __init xilinx_init_machine(void)
|
||||||
of_platform_bus_probe(NULL, zynq_of_bus_ids, NULL);
|
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.
|
* xilinx_irq_init() - Interrupt controller initialization for the GIC.
|
||||||
*/
|
*/
|
||||||
static void __init xilinx_irq_init(void)
|
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
|
/* The minimum devices needed to be mapped before the VM system is up and
|
||||||
|
|
|
@ -35,8 +35,6 @@
|
||||||
|
|
||||||
#define TTC0_BASE IOMEM(TTC0_VIRT)
|
#define TTC0_BASE IOMEM(TTC0_VIRT)
|
||||||
#define SCU_PERIPH_BASE IOMEM(SCU_PERIPH_VIRT)
|
#define SCU_PERIPH_BASE IOMEM(SCU_PERIPH_VIRT)
|
||||||
#define SCU_GIC_CPU_BASE (SCU_PERIPH_BASE + 0x100)
|
|
||||||
#define SCU_GIC_DIST_BASE (SCU_PERIPH_BASE + 0x1000)
|
|
||||||
#define PL310_L2CC_BASE IOMEM(PL310_L2CC_VIRT)
|
#define PL310_L2CC_BASE IOMEM(PL310_L2CC_VIRT)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue