Instead of hardcoding the different RAM sizes.

Signed-off-by: Lucas Stach <[email protected]>
---
 arch/arm/boards/solidrun-microsom/lowlevel.c | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/arch/arm/boards/solidrun-microsom/lowlevel.c 
b/arch/arm/boards/solidrun-microsom/lowlevel.c
index 54f1cdf9f4ea..3d5ab7a13f42 100644
--- a/arch/arm/boards/solidrun-microsom/lowlevel.c
+++ b/arch/arm/boards/solidrun-microsom/lowlevel.c
@@ -1,8 +1,7 @@
+#include <asm/barebox-arm.h>
 #include <common.h>
-#include <linux/sizes.h>
+#include <mach/esdctl.h>
 #include <mach/generic.h>
-#include <asm/barebox-arm-head.h>
-#include <asm/barebox-arm.h>
 
 extern char __dtb_imx6dl_hummingboard_start[];
 extern char __dtb_imx6q_hummingboard_start[];
@@ -14,7 +13,7 @@ ENTRY_FUNCTION(start_hummingboard_microsom_i1, r0, r1, r2)
        imx6_cpu_lowlevel_init();
 
        fdt = __dtb_imx6dl_hummingboard_start - get_runtime_offset();
-       barebox_arm_entry(0x10000000, SZ_512M, fdt);
+       imx6q_barebox_entry(fdt);
 }
 
 ENTRY_FUNCTION(start_hummingboard_microsom_i2, r0, r1, r2)
@@ -24,7 +23,7 @@ ENTRY_FUNCTION(start_hummingboard_microsom_i2, r0, r1, r2)
        imx6_cpu_lowlevel_init();
 
        fdt = __dtb_imx6dl_hummingboard_start - get_runtime_offset();
-       barebox_arm_entry(0x10000000, SZ_1G, fdt);
+       imx6q_barebox_entry(fdt);
 }
 
 ENTRY_FUNCTION(start_hummingboard_microsom_i2ex, r0, r1, r2)
@@ -34,7 +33,7 @@ ENTRY_FUNCTION(start_hummingboard_microsom_i2ex, r0, r1, r2)
        imx6_cpu_lowlevel_init();
 
        fdt = __dtb_imx6q_hummingboard_start - get_runtime_offset();
-       barebox_arm_entry(0x10000000, SZ_1G, fdt);
+       imx6q_barebox_entry(fdt);
 }
 
 ENTRY_FUNCTION(start_hummingboard_microsom_i4, r0, r1, r2)
@@ -44,5 +43,5 @@ ENTRY_FUNCTION(start_hummingboard_microsom_i4, r0, r1, r2)
        imx6_cpu_lowlevel_init();
 
        fdt = __dtb_imx6q_hummingboard_start - get_runtime_offset();
-       barebox_arm_entry(0x10000000, SZ_2G, fdt);
+       imx6q_barebox_entry(fdt);
 }
-- 
2.9.3


_______________________________________________
barebox mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to