aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiulio Benetti2021-04-04 20:21:34 +0200
committerStefano Babic2021-04-08 20:29:53 +0200
commiteeb47ee474876310bd345bc6b51185addc70a112 (patch)
tree2905e703c2fda0ad8685f0f2373e5fd9083e7400
parent45dae4a3c717a3ecff0997000b0dbbd3d81d6d00 (diff)
board: freescale: imxrt1050-evk: fix console is not enabled while init dram
While initializing dram in spl_dram_init(), mdelay() is called that in order calls get_ticks() that verifies if timer exists, if doesn't, it throws a panic(), but since preloader_console_init() has still not been called those panic()s will fail. This doesn't help debugging, so let's setup console before calling spl_dram_init() by moving it after spl_dram_init(). Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
-rw-r--r--board/freescale/imxrt1050-evk/imxrt1050-evk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/imxrt1050-evk/imxrt1050-evk.c b/board/freescale/imxrt1050-evk/imxrt1050-evk.c
index b8d852f097b..eb492390dbf 100644
--- a/board/freescale/imxrt1050-evk/imxrt1050-evk.c
+++ b/board/freescale/imxrt1050-evk/imxrt1050-evk.c
@@ -60,8 +60,8 @@ int spl_dram_init(void)
void spl_board_init(void)
{
- spl_dram_init();
preloader_console_init();
+ spl_dram_init();
arch_cpu_init(); /* to configure mpu for sdram rw permissions */
}