Skip to content
Snippets Groups Projects
Commit c704a99d authored by Lokesh Vutla's avatar Lokesh Vutla Committed by Tom Rini
Browse files

ARM: AMx3xx: Allow arch specific code to use early DM


Early system initialization is being done before initf_dm is being called
in U-Boot. Then system will fail to boot if any of the DM enabled driver
is being called in this system initialization code. So, rearrange the
code a bit so that DM enabled drivers can be called during early system
initialization. This is inspired by commit e850ed82 ("ARM: OMAP4+: Allow
arch specific code to use early DM")

Signed-off-by: default avatarLokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
parent 693d4c9f
No related branches found
No related tags found
No related merge requests found
...@@ -270,15 +270,11 @@ static void watchdog_disable(void) ...@@ -270,15 +270,11 @@ static void watchdog_disable(void)
; ;
} }
#ifdef CONFIG_SPL_BUILD void s_init(void)
void board_init_f(ulong dummy)
{ {
board_early_init_f();
sdram_init();
} }
#endif
void s_init(void) void early_system_init(void)
{ {
/* /*
* The ROM will only have set up sufficient pinmux to allow for the * The ROM will only have set up sufficient pinmux to allow for the
...@@ -297,4 +293,22 @@ void s_init(void) ...@@ -297,4 +293,22 @@ void s_init(void)
rtc32k_enable(); rtc32k_enable();
#endif #endif
} }
#ifdef CONFIG_SPL_BUILD
void board_init_f(ulong dummy)
{
early_system_init();
board_early_init_f();
sdram_init();
}
#endif #endif
#endif
int arch_cpu_init_dm(void)
{
#ifndef CONFIG_SKIP_LOWLEVEL_INIT
early_system_init();
#endif
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment