summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2017-11-22 02:57:05 -0600
committerYe Li <ye.li@nxp.com>2017-11-22 03:07:51 -0600
commit6c8b5058b2c688021bf55d42f1dc17abdf9dcfc1 (patch)
tree040810c9442b79864a4bb04026cd535b8f695429
parent6dc2bb5d60c217ca1fca4bdd4c1b6c270eeede31 (diff)
MLK-16939 imx8mq_evk: Change u-boot init stack address and size
Current u-boot init stack on mScale EVK is from 0x40f00000 to 0x41000000. This address overlays with kernel load address. When running mfgtool, the loaded kernel will be overwritten by this stack. So we change the init stack to the first 512KB DDR memory. Signed-off-by: Ye Li <ye.li@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r--include/configs/imx8mq_evk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/imx8mq_evk.h b/include/configs/imx8mq_evk.h
index f50f34a9ff..72ff8c36a8 100644
--- a/include/configs/imx8mq_evk.h
+++ b/include/configs/imx8mq_evk.h
@@ -182,8 +182,8 @@
#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
-#define CONFIG_SYS_INIT_RAM_ADDR 0x40f00000
-#define CONFIG_SYS_INIT_RAM_SIZE 0x100000
+#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
+#define CONFIG_SYS_INIT_RAM_SIZE 0x80000
#define CONFIG_SYS_INIT_SP_OFFSET \
(CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
#define CONFIG_SYS_INIT_SP_ADDR \