diff options
| author | Marek Vasut <[email protected]> | 2022-09-19 21:41:17 +0200 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2022-10-21 11:54:12 +0200 |
| commit | f687c1ef4fdf14faea16c13b1eaac5496dee39df (patch) | |
| tree | 433d4282633b0b0f87c7eb0984ab434c5bdc305a | |
| parent | 8e374457bad7ab9dcaae580cfbbd2b1ca02c46a1 (diff) | |
ARM: imx8m: verdin-imx8mm: Drop bogus content from spl_board_init()
The current implementation of spl_board_init() USB boot handling is
not correct, the MX8MM BootROM v1 does not support SDP load when
re-entered from U-Boot SPL, it is up to U-Boot to perform the next
stage load using its own internal CI gadget driver and SDP protocol
implementation. Drop the spl_board_init() to let SPL continue with
normal load in case the SDP support is enabled.
Signed-off-by: Marek Vasut <[email protected]>
Reviewed-by: Peng Fan <[email protected]>
| -rw-r--r-- | board/toradex/verdin-imx8mm/spl.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/board/toradex/verdin-imx8mm/spl.c b/board/toradex/verdin-imx8mm/spl.c index 59a3d9e0cae..210665bd6a9 100644 --- a/board/toradex/verdin-imx8mm/spl.c +++ b/board/toradex/verdin-imx8mm/spl.c @@ -54,13 +54,6 @@ void spl_dram_init(void) void spl_board_init(void) { arch_misc_init(); - - /* Serial download mode */ - if (is_usb_boot()) { - puts("Back to ROM, SDP\n"); - restore_boot_params(); - } - puts("Normal Boot\n"); } #ifdef CONFIG_SPL_LOAD_FIT |
