summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx
diff options
context:
space:
mode:
authorLucas Stach <dev@lynxeye.de>2014-06-24 08:33:14 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-07-01 08:41:44 +0200
commit691211c8bbf3ff861443963554eac8063b01d650 (patch)
tree105dc20c1a7762bf73855102be3245e9fae2aa70 /arch/arm/mach-imx
parent14552dddce4b6c623cca01f55025d1fa039080b0 (diff)
downloadbarebox-691211c8bbf3ff861443963554eac8063b01d650.tar.gz
barebox-691211c8bbf3ff861443963554eac8063b01d650.tar.xz
arm: imx6: move imx6_init_lowlevel to single initcall
Instead of repeating the same lowlevel init for every board move it to it's own initcall. Avoids code bloat and shaves off almost 1.5kB of uncompressed barebox size for a default imx_v7_defconfig build. For boards wherethe hostname setup was done in the postcore initcall we move this to a device initcall to get it out of the way. Signed-off-by: Lucas Stach <dev@lynxeye.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r--arch/arm/mach-imx/imx6.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/imx6.c b/arch/arm/mach-imx/imx6.c
index fabc1614a3..ec5e1416f3 100644
--- a/arch/arm/mach-imx/imx6.c
+++ b/arch/arm/mach-imx/imx6.c
@@ -114,6 +114,8 @@ int imx6_init(void)
u32 rev;
u32 mx6_silicon_revision;
+ imx6_init_lowlevel();
+
imx6_boot_save_loc((void *)MX6_SRC_BASE_ADDR);
rev = readl(MX6_ANATOP_BASE_ADDR + SI_REV);