summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/hsmmc.c
diff options
context:
space:
mode:
authorAdrian Hunter2010-02-15 19:03:34 +0100
committerTony Lindgren2010-02-15 19:03:34 +0100
commit1df58db8a25ec7656005f1dd161a9ede044551b7 (patch)
tree33d94939a62ccec8c51753a015833d165d7bdd2b /arch/arm/mach-omap2/hsmmc.c
parentomap: RX51: Remux to pull eMMC lines down when powering off (diff)
downloadkernel-qcow2-linux-1df58db8a25ec7656005f1dd161a9ede044551b7.tar.gz
kernel-qcow2-linux-1df58db8a25ec7656005f1dd161a9ede044551b7.tar.xz
kernel-qcow2-linux-1df58db8a25ec7656005f1dd161a9ede044551b7.zip
omap_hsmmc: Allow for power saving without going off
An eMMC may be always powered on, so that the lowest power saving state possible is sleeping. Add a field to the platform data to indicate that. Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/hsmmc.c')
-rw-r--r--arch/arm/mach-omap2/hsmmc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/hsmmc.c b/arch/arm/mach-omap2/hsmmc.c
index 4a05c3722d54..e4ab123cd4d0 100644
--- a/arch/arm/mach-omap2/hsmmc.c
+++ b/arch/arm/mach-omap2/hsmmc.c
@@ -202,6 +202,9 @@ void __init omap2_hsmmc_init(struct omap2_hsmmc_info *controllers)
if (c->power_saving)
mmc->slots[0].power_saving = 1;
+ if (c->no_off)
+ mmc->slots[0].no_off = 1;
+
/* NOTE: MMC slots should have a Vcc regulator set up.
* This may be from a TWL4030-family chip, another
* controllable regulator, or a fixed supply.