diff options
author | kishore kadiyala <kishore.kadiyala@ti.com> | 2010-10-01 16:35:28 -0700 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-10-01 16:35:28 -0700 |
commit | 64be97822b781e921c7eda2d4089fd1fdf3aabba (patch) | |
tree | 418919f2ab1d1796364fdcc9a39cb904b75450db /arch/arm/mach-omap2/board-4430sdp.c | |
parent | 91a0b089f8358aec866bc9c69da8b84c77beaaf3 (diff) | |
download | talos-op-linux-64be97822b781e921c7eda2d4089fd1fdf3aabba.tar.gz talos-op-linux-64be97822b781e921c7eda2d4089fd1fdf3aabba.zip |
omap4 hsmmc: Update ocr mask for MMC2 for regulator to use
On OMAP4, MMC2 controller has eMMC which draws power from VAUX regulator
on TWL. Though the eMMC supports dual voltage[1.8v/3v] as per ocr register,
its VCC is fixed at 3V for operation. With this once the mmc core selects
the minimum voltage[1.8] supported based on the ocr value read from OCR register,
eMMC will not get detected. Thus the platform data for MMC2 is updated with ocr
mask and same will be communicated to core which will set the regulator to
always operate at 3V when ever turned ON.
Cc: Tony Lindgren <tony@atomide.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Madhusudhan Chikkature <madhu.cr@ti.com>
Cc: Adrian Hunter <adrian.hunter@nokia.com>
Signed-off-by: Kishore Kadiyala <kishore.kadiyala@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-4430sdp.c')
-rw-r--r-- | arch/arm/mach-omap2/board-4430sdp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch/arm/mach-omap2/board-4430sdp.c index cdb93734dd72..9f75dc2364c9 100644 --- a/arch/arm/mach-omap2/board-4430sdp.c +++ b/arch/arm/mach-omap2/board-4430sdp.c @@ -242,6 +242,7 @@ static struct omap2_hsmmc_info mmc[] = { .gpio_cd = -EINVAL, .gpio_wp = -EINVAL, .nonremovable = true, + .ocr_mask = MMC_VDD_29_30, }, {} /* Terminator */ }; |