spl: Weed out CONFIG_SYS_TEXT_BASE usage
authorMarek Vasut <marex@denx.de>
Tue, 14 Aug 2018 09:27:02 +0000 (11:27 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 26 Sep 2018 01:48:43 +0000 (21:48 -0400)
commit04ce5427bd3914cab8be78513275a20ab878520a
treec13456e3916f3c9cc0b9b025c4da0e1c6b6e7c98
parent4c834b965aa3cde447e733b1cd338c02ffd04cd2
spl: Weed out CONFIG_SYS_TEXT_BASE usage

The SPL loaders assume that the CONFIG_SYS_TEXT_BASE memory location
is available and can be corrupted by loading ie. uImage or fitImage
headers there. Sometimes it could be beneficial to load the headers
elsewhere, ie. if CONFIG_SYS_TEXT_BASE is not yet writable while we
still want to parse the image headers in some local onchip memory to
ie. extract firmware from that image.

Add the possibility to override the location where the headers get
loaded by introducing new function, spl_get_load_buffer() which takes
two arguments -- offset from the CONFIG_SYS_TEXT_BASE and size of the
data that are to be loaded there -- and returns a valid buffer address
or hangs the system. The default behavior is the same as before, add
the offset to CONFIG_SYS_TEXT_BASE and return that address. User can
override the weak spl_get_load_buffer() function though.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
common/spl/spl.c
common/spl/spl_ext.c
common/spl/spl_fat.c
common/spl/spl_fit.c
common/spl/spl_mmc.c
common/spl/spl_nand.c
common/spl/spl_onenand.c
common/spl/spl_ram.c
common/spl/spl_spi.c
common/spl/spl_ubi.c
include/spl.h