From: Pali Rohár Date: Sat, 31 Oct 2020 16:32:46 +0000 (+0100) Subject: Nokia RX-51: Fix crashing in U-Boot mmc function omap_hsmmc_stop_clock() X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=94f69f4c14cafcce11544d8a615eff3767d66acd;p=u-boot.git Nokia RX-51: Fix crashing in U-Boot mmc function omap_hsmmc_stop_clock() After commit 04a2ea248f58 ("mmc: disable UHS modes if Vcc cannot be switched on and off") U-Boot started crashing on Nokia RX-51 while initializing mmc and caused reboot loop. It looks like that some clocks were not enabled and this patch fixes U-Boot mmc crash. Signed-off-by: Pali Rohár Cc: Ivaylo Dimitrov --- diff --git a/board/nokia/rx51/rx51.c b/board/nokia/rx51/rx51.c index 63531e1420..e11c527226 100644 --- a/board/nokia/rx51/rx51.c +++ b/board/nokia/rx51/rx51.c @@ -202,6 +202,8 @@ int board_init(void) { /* in SRAM or SDRAM, finish GPMC */ gpmc_init(); + /* Enable the clks & power */ + per_clocks_enable(); /* boot param addr */ gd->bd->bi_boot_params = OMAP34XX_SDRC_CS0 + 0x100; return 0;