summaryrefslogtreecommitdiff
path: root/include/configs
diff options
context:
space:
mode:
authorPriyanka Jain <priyanka.jain@nxp.com>2021-08-18 10:07:03 +0300
committerPriyanka Jain <priyanka.jain@nxp.com>2021-08-20 13:32:51 +0300
commit760ca92d554e2ff340c9299aa8a71ab101145a81 (patch)
tree1195acc9508e8e6fb974b2b146e8292018d88c85 /include/configs
parentcb0db5b948aacead6816873870d8f23b654b8a5f (diff)
downloadu-boot-760ca92d554e2ff340c9299aa8a71ab101145a81.tar.xz
configs: lx2160a: load device-tree in RAM for distro boot
Update boot-commands to load device-tree from boot-device at 'fdt_addr_r' address in DDR during distro-boot. Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'include/configs')
-rw-r--r--include/configs/lx2160a_common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/lx2160a_common.h b/include/configs/lx2160a_common.h
index 8977ee9de2..1ae7d37dd9 100644
--- a/include/configs/lx2160a_common.h
+++ b/include/configs/lx2160a_common.h
@@ -180,6 +180,7 @@ unsigned long get_board_ddr_clk(void);
#define XSPI_MC_INIT_CMD \
"sf probe 0:0 && " \
"sf read 0x80640000 0x640000 0x80000 && " \
+ "sf read $fdt_addr_r 0xf00000 0x100000 && " \
"env exists secureboot && " \
"esbc_validate 0x80640000 && " \
"esbc_validate 0x80680000; " \
@@ -190,6 +191,7 @@ unsigned long get_board_ddr_clk(void);
#define SD_MC_INIT_CMD \
"mmc read 0x80a00000 0x5000 0x1200;" \
"mmc read 0x80e00000 0x7000 0x800;" \
+ "mmc read $fdt_addr_r 0x7800 0x800;" \
"env exists secureboot && " \
"mmc read 0x80640000 0x3200 0x20 && " \
"mmc read 0x80680000 0x3400 0x20 && " \
@@ -200,6 +202,7 @@ unsigned long get_board_ddr_clk(void);
#define SD2_MC_INIT_CMD \
"mmc dev 1; mmc read 0x80a00000 0x5000 0x1200;" \
"mmc read 0x80e00000 0x7000 0x800;" \
+ "mmc read $fdt_addr_r 0x7800 0x800;" \
"env exists secureboot && " \
"mmc read 0x80640000 0x3200 0x20 && " \
"mmc read 0x80680000 0x3400 0x20 && " \