mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-06 14:51:35 +00:00
mx6ul_14x14_ev: Enable the CCGR clocks earlier
To be in the safe side we need to enable the CCGR clocks prior
to calling arch_cpu_init().
Inspired by Tim Harvey's commit d783c2744f
("imx: ventana: fix boot to SD").
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Reviewed-by: Eric Nelson <eric@nelint.com>
Tested-by: Eric Nelson <eric@nelint.com>
This commit is contained in:
parent
b343417e29
commit
ab25f0f69f
1 changed files with 2 additions and 2 deletions
|
@ -844,11 +844,11 @@ static void spl_dram_init(void)
|
||||||
|
|
||||||
void board_init_f(ulong dummy)
|
void board_init_f(ulong dummy)
|
||||||
{
|
{
|
||||||
|
ccgr_init();
|
||||||
|
|
||||||
/* setup AIPS and disable watchdog */
|
/* setup AIPS and disable watchdog */
|
||||||
arch_cpu_init();
|
arch_cpu_init();
|
||||||
|
|
||||||
ccgr_init();
|
|
||||||
|
|
||||||
/* iomux and setup of i2c */
|
/* iomux and setup of i2c */
|
||||||
board_early_init_f();
|
board_early_init_f();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue