Skip to content
Snippets Groups Projects
Commit e23e5eee authored by Markus Hubig's avatar Markus Hubig Committed by Andreas Bießmann
Browse files

arm: Adds board_postclk_init to the init_sequence.


The board_postclk_init() function can be used to perform operations
that requires a working timer early within the U-Boot init_sequence.

Signed-off-by: default avatarMarkus Hubig <mhubig@imko.de>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Signed-off-by: default avatarAndreas Bießmann <andreas.devel@googlemail.com>
parent 503e159b
Branches
Tags
No related merge requests found
...@@ -241,6 +241,9 @@ init_fnc_t *init_sequence[] = { ...@@ -241,6 +241,9 @@ init_fnc_t *init_sequence[] = {
fdtdec_check_fdt, fdtdec_check_fdt,
#endif #endif
timer_init, /* initialize timer */ timer_init, /* initialize timer */
#ifdef CONFIG_BOARD_POSTCLK_INIT
board_postclk_init,
#endif
#ifdef CONFIG_FSL_ESDHC #ifdef CONFIG_FSL_ESDHC
get_clocks, get_clocks,
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment