aboutsummaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorAdam Ford <aford173@gmail.com>2019-11-03 16:18:27 -0600
committerTom Rini <trini@konsulko.com>2019-11-07 18:39:18 -0500
commit27b653449178e80b333e7bc5a81eed3bd1bd6861 (patch)
tree7378f33793d244325959d85f7000b1c372befad6 /board
parent14dfca69d79e81a8b29324a86a819b1e642621ed (diff)
downloadu-boot-27b653449178e80b333e7bc5a81eed3bd1bd6861.zip
u-boot-27b653449178e80b333e7bc5a81eed3bd1bd6861.tar.gz
u-boot-27b653449178e80b333e7bc5a81eed3bd1bd6861.tar.bz2
ARM: omap3_logic: Power on MMC when setting up PMIC
The PMIC enables power to the MMC card by default, but depending on the state it was left when restarted, it's possible the MMC may be powered down. This patch patch explicitly tells the twl4030 to power the MMC. Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'board')
-rw-r--r--board/logicpd/omap3som/omap3logic.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/logicpd/omap3som/omap3logic.c b/board/logicpd/omap3som/omap3logic.c
index ee77ce0..43f049e 100644
--- a/board/logicpd/omap3som/omap3logic.c
+++ b/board/logicpd/omap3som/omap3logic.c
@@ -141,6 +141,7 @@ void spl_board_prepare_for_linux(void)
int misc_init_r(void)
{
twl4030_power_init();
+ twl4030_power_mmc_init(0);
omap_die_id_display();
return 0;
}