summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2020-10-30 19:03:42 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2020-10-30 19:03:42 +0100
commitc000cc25fbd63b5eb1ec1b7a564a057bb158d6f2 (patch)
tree1409c650eef4a09b8f0160b725a3ed0c79ed47c3
parentac86b3b0a510597c961c15803c1473ef0822d525 (diff)
verdin-imx8mm: fix uboot_entrypoint/rd_loadaddress for 1gb duallite
E.g. generating a fitimage for the Toradex Easy Installer will use those addresses. Unfortunately, in the Verdin iMX8M Mini DualLite 1GB case, there is no memory at 0x80280000 resp. 0xA0000000 so we need to move them within its 1GB address space (e.g. below 0x80000000). Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
-rw-r--r--conf/machine/verdin-imx8mm.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/machine/verdin-imx8mm.conf b/conf/machine/verdin-imx8mm.conf
index dcf4ff3..4341d33 100644
--- a/conf/machine/verdin-imx8mm.conf
+++ b/conf/machine/verdin-imx8mm.conf
@@ -23,8 +23,8 @@ UBOOT_CONFIG ??= "sd"
UBOOT_CONFIG[sd] = "verdin-imx8mm_config,sdcard"
SPL_BINARY = "spl/u-boot-spl.bin"
-UBOOT_ENTRYPOINT = "0x80280000"
-UBOOT_RD_LOADADDRESS = "0xA0000000"
+UBOOT_ENTRYPOINT = "0x40280000"
+UBOOT_RD_LOADADDRESS = "0x60000000"
# Set DDR FIRMWARE
DDR_FIRMWARE_NAME = "lpddr4_pmu_train_1d_imem.bin lpddr4_pmu_train_1d_dmem.bin lpddr4_pmu_train_2d_imem.bin lpddr4_pmu_train_2d_dmem.bin"