]> Pileus Git - ~andy/linux/commitdiff
ARM: mach-imx: mm-imx5: Retrieve iomuxc base address from dt
authorFabio Estevam <fabio.estevam@freescale.com>
Tue, 1 Oct 2013 03:21:14 +0000 (00:21 -0300)
committerShawn Guo <shawn.guo@linaro.org>
Mon, 21 Oct 2013 01:35:57 +0000 (09:35 +0800)
As mx53 is a dt-only SoC, we should retrieve the iomuxc base address from the
device tree, instead of using the old MX53_IO_ADDRESS method.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
arch/arm/mach-imx/mm-imx5.c

index 2cafcf00000b367aa01e616080609d5135e10c70..d1d52600f458c3604eb77c4bcfae51432b2a932c 100644 (file)
@@ -89,8 +89,15 @@ void __init imx51_init_early(void)
 
 void __init imx53_init_early(void)
 {
+       struct device_node *np;
+       void __iomem *base;
+
        mxc_set_cpu_type(MXC_CPU_MX53);
-       mxc_iomux_v3_init(MX53_IO_ADDRESS(MX53_IOMUXC_BASE_ADDR));
+
+       np = of_find_compatible_node(NULL, NULL, "fsl,imx53-iomuxc");
+       base = of_iomap(np, 0);
+       WARN_ON(!base);
+       mxc_iomux_v3_init(base);
        imx_src_init();
 }