diff options
author | Mathieu J. Poirier | 2012-07-31 08:59:30 +0000 |
---|---|---|
committer | Albert ARIBAUD | 2012-09-01 14:58:20 +0200 |
commit | 75dfe964cbe01ec089e4e3d470a86835776fe248 (patch) | |
tree | f651948ede760fa6e0ce584c94fb9cd19231675c /board | |
parent | 1e37322e5a2ff8b529d82a6c345d5e343f77a5fc (diff) |
u8500: Enabling power to MMC device on AB8500 V2
Register mapping has changed on power control chip between
the first and second revision.
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: John Rigby <john.rigby@linaro.org>
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/st-ericsson/snowball/snowball.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/board/st-ericsson/snowball/snowball.c b/board/st-ericsson/snowball/snowball.c index 7c3e08ce3f5..67fc5dfff1e 100644 --- a/board/st-ericsson/snowball/snowball.c +++ b/board/st-ericsson/snowball/snowball.c @@ -27,6 +27,7 @@ #include <asm/arch/db8500_pincfg.h> #include <asm/arch/prcmu.h> #include <asm/arch/hardware.h> +#include <asm/arch/sys_proto.h> #include "db8500_pins.h" @@ -249,5 +250,9 @@ int board_late_init(void) if ((raise_ab8500_gpio16() < 0)) printf("error: cant' raise GPIO16\n"); +#ifdef CONFIG_MMC + u8500_mmc_power_init(); +#endif /* CONFIG_MMC */ + return 0; } |