The spl_board_prepare_for_boot() should be called before jump_to_image_no_args()
to perform board-specific deinitialization before jumping to the next stage.
This board-specific deinitialization can be very much anything, e.g. disable
dcache in case it was enabled, or such.
Add the missing spl_board_prepare_for_boot() call into f_sdp .
Signed-off-by: Marek Vasut <marex@denx.de>
struct spl_image_info spl_image = {};
struct spl_boot_device bootdev = {};
spl_parse_image_header(&spl_image, &bootdev, header);
+ spl_board_prepare_for_boot();
jump_to_image_no_args(&spl_image);
#else
/* In U-Boot, allow jumps to scripts */