From 5f85152688b1cd8bf340a41ffd5e46dbb01c55ec Mon Sep 17 00:00:00 2001 From: Marc Ferland Date: Mon, 3 May 2021 14:06:31 -0400 Subject: [PATCH] imx-base.inc: use 0x80008000 as the UBOOT_ENTRYPOINT for mx6ul, mx6ull and mx6ulz Based on the different reference manuals, the DDR controller for the mx6ul, mx6ull and mx6ulz is at 0x80000000 and not 0x10000000 like the imx6 dual or quad for example. Signed-off-by: Marc Ferland (cherry picked from commit acc75e4a8d2b74a21c86e5772eb9197bad126040) --- conf/machine/include/imx-base.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc index a1ab6cc3..8a2a5dfd 100644 --- a/conf/machine/include/imx-base.inc +++ b/conf/machine/include/imx-base.inc @@ -82,9 +82,9 @@ UBOOT_ENTRYPOINT_mx6 = "0x10008000" UBOOT_ENTRYPOINT_mx6sl = "0x80008000" UBOOT_ENTRYPOINT_mx6sll = "0x80008000" UBOOT_ENTRYPOINT_mx6sx = "0x80008000" -UBOOT_ENTRYPOINT_mx6ul = "0x10008000" -UBOOT_ENTRYPOINT_mx6ull = "0x10008000" -UBOOT_ENTRYPOINT_mx6ulz = "0x10008000" +UBOOT_ENTRYPOINT_mx6ul = "0x80008000" +UBOOT_ENTRYPOINT_mx6ull = "0x80008000" +UBOOT_ENTRYPOINT_mx6ulz = "0x80008000" UBOOT_ENTRYPOINT_mx7 = "0x80008000" UBOOT_ENTRYPOINT_mx7ulp = "0x60008000" UBOOT_ENTRYPOINT_mx8m = "0x40480000" -- 2.40.1