summaryrefslogtreecommitdiff
path: root/board/phytec
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2022-09-19 21:41:16 +0200
committerStefano Babic <[email protected]>2022-10-21 11:54:12 +0200
commit8e374457bad7ab9dcaae580cfbbd2b1ca02c46a1 (patch)
tree5ba7d9444771d17250d774b48a684b955215975e /board/phytec
parent1f908b1898bd5258bb95521de54fdca8e91edb00 (diff)
ARM: imx8m: phycore_imx8mm: Drop bogus spl_board_init()
The current implementation of spl_board_init() 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]>
Diffstat (limited to 'board/phytec')
-rw-r--r--board/phytec/phycore_imx8mm/spl.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/board/phytec/phycore_imx8mm/spl.c b/board/phytec/phycore_imx8mm/spl.c
index d87ab6d4497..1bae9b1170d 100644
--- a/board/phytec/phycore_imx8mm/spl.c
+++ b/board/phytec/phycore_imx8mm/spl.c
@@ -42,16 +42,6 @@ static void spl_dram_init(void)
ddr_init(&dram_timing);
}
-void spl_board_init(void)
-{
- /* Serial download mode */
- if (is_usb_boot()) {
- puts("Back to ROM, SDP\n");
- restore_boot_params();
- }
- puts("Normal Boot\n");
-}
-
int board_fit_config_name_match(const char *name)
{
return 0;