mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-20 06:01:26 +02:00
board: ti: am62x: evm: Remove video_setup from spl_board_init
Remove video_setup from evm_init sequence since video memory is getting called at an earlier place to make sure video memory is reserved at the end of RAM. Suggested-by: Simon Glass <sjg@chromium.org> Signed-off-by: Devarsh Thakkar <devarsht@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ba20b2443c
commit
945053fd64
@ -60,27 +60,9 @@ int dram_init_banksize(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if defined(CONFIG_SPL_BUILD)
|
#if defined(CONFIG_SPL_BUILD)
|
||||||
static int video_setup(void)
|
|
||||||
{
|
|
||||||
if (CONFIG_IS_ENABLED(VIDEO)) {
|
|
||||||
ulong addr;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
addr = gd->relocaddr;
|
|
||||||
ret = video_reserve(&addr);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
debug("Reserving %luk for video at: %08lx\n",
|
|
||||||
((unsigned long)gd->relocaddr - addr) >> 10, addr);
|
|
||||||
gd->relocaddr = addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void spl_board_init(void)
|
void spl_board_init(void)
|
||||||
{
|
{
|
||||||
video_setup();
|
|
||||||
enable_caches();
|
enable_caches();
|
||||||
if (IS_ENABLED(CONFIG_SPL_SPLASH_SCREEN) && IS_ENABLED(CONFIG_SPL_BMP))
|
if (IS_ENABLED(CONFIG_SPL_SPLASH_SCREEN) && IS_ENABLED(CONFIG_SPL_BMP))
|
||||||
splash_display();
|
splash_display();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user