mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00: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
1 changed files with 0 additions and 18 deletions
|
@ -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…
Reference in a new issue