]> git.dujemihanovic.xyz Git - u-boot.git/commit
spl: call spl_board_init() at the end of the spl init sequence
authorSughosh Ganu <sughosh.ganu@linaro.org>
Mon, 26 Aug 2024 11:59:33 +0000 (17:29 +0530)
committerTom Rini <trini@konsulko.com>
Tue, 3 Sep 2024 20:08:50 +0000 (14:08 -0600)
commitfa6333afdf3191a09a7c1174c55faa3b111daa6e
treedc37e3d60b84db1309b757ccc34bf4f9cfc1f2b4
parent9b19e207a9768acdaac5a496fecf317e48a54c7a
spl: call spl_board_init() at the end of the spl init sequence

The spl_board_init() function on sandbox invokes the unit
tests. Invoking the tests should be done once the rest of the system
has been initialised. Call the spl_board_init() function at the very
end, once the rest of the initilisation functions have been called,
including the setting up of the LMB memory map.

Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
common/spl/spl.c