diff options
author | Adrian Hunter <adrian.hunter@nokia.com> | 2010-02-15 13:03:34 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-02-15 13:03:34 -0500 |
commit | 1df58db8a25ec7656005f1dd161a9ede044551b7 (patch) | |
tree | 33d94939a62ccec8c51753a015833d165d7bdd2b | |
parent | ce6f00165d5314698afd04ee20cede156cfcc593 (diff) |
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>
-rw-r--r-- | arch/arm/mach-omap2/hsmmc.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-omap2/hsmmc.h | 1 | ||||
-rw-r--r-- | arch/arm/plat-omap/include/plat/mmc.h | 3 | ||||
-rw-r--r-- | drivers/mmc/host/omap_hsmmc.c | 6 |
4 files changed, 13 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) | |||
202 | if (c->power_saving) | 202 | if (c->power_saving) |
203 | mmc->slots[0].power_saving = 1; | 203 | mmc->slots[0].power_saving = 1; |
204 | 204 | ||
205 | if (c->no_off) | ||
206 | mmc->slots[0].no_off = 1; | ||
207 | |||
205 | /* NOTE: MMC slots should have a Vcc regulator set up. | 208 | /* NOTE: MMC slots should have a Vcc regulator set up. |
206 | * This may be from a TWL4030-family chip, another | 209 | * This may be from a TWL4030-family chip, another |
207 | * controllable regulator, or a fixed supply. | 210 | * controllable regulator, or a fixed supply. |
diff --git a/arch/arm/mach-omap2/hsmmc.h b/arch/arm/mach-omap2/hsmmc.h index f641f592ffad..2453a7aeaf6f 100644 --- a/arch/arm/mach-omap2/hsmmc.h +++ b/arch/arm/mach-omap2/hsmmc.h | |||
@@ -14,6 +14,7 @@ struct omap2_hsmmc_info { | |||
14 | bool cover_only; /* No card detect - just cover switch */ | 14 | bool cover_only; /* No card detect - just cover switch */ |
15 | bool nonremovable; /* Nonremovable e.g. eMMC */ | 15 | bool nonremovable; /* Nonremovable e.g. eMMC */ |
16 | bool power_saving; /* Try to sleep or power off when possible */ | 16 | bool power_saving; /* Try to sleep or power off when possible */ |
17 | bool no_off; /* power_saving and power is not to go off */ | ||
17 | int gpio_cd; /* or -EINVAL */ | 18 | int gpio_cd; /* or -EINVAL */ |
18 | int gpio_wp; /* or -EINVAL */ | 19 | int gpio_wp; /* or -EINVAL */ |
19 | char *name; /* or NULL for default */ | 20 | char *name; /* or NULL for default */ |
diff --git a/arch/arm/plat-omap/include/plat/mmc.h b/arch/arm/plat-omap/include/plat/mmc.h index 8b23d32895f1..b46394955f37 100644 --- a/arch/arm/plat-omap/include/plat/mmc.h +++ b/arch/arm/plat-omap/include/plat/mmc.h | |||
@@ -96,6 +96,9 @@ struct omap_mmc_platform_data { | |||
96 | /* Try to sleep or power off when possible */ | 96 | /* Try to sleep or power off when possible */ |
97 | unsigned power_saving:1; | 97 | unsigned power_saving:1; |
98 | 98 | ||
99 | /* If using power_saving and the MMC power is not to go off */ | ||
100 | unsigned no_off:1; | ||
101 | |||
99 | int switch_pin; /* gpio (card detect) */ | 102 | int switch_pin; /* gpio (card detect) */ |
100 | int gpio_wp; /* gpio (write protect) */ | 103 | int gpio_wp; /* gpio (write protect) */ |
101 | 104 | ||
diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index 2c5e15d9f864..e15d0f42569d 100644 --- a/drivers/mmc/host/omap_hsmmc.c +++ b/drivers/mmc/host/omap_hsmmc.c | |||
@@ -1656,6 +1656,9 @@ static int omap_hsmmc_disabled_to_sleep(struct omap_hsmmc_host *host) | |||
1656 | dev_dbg(mmc_dev(host->mmc), "DISABLED -> %s\n", | 1656 | dev_dbg(mmc_dev(host->mmc), "DISABLED -> %s\n", |
1657 | host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP"); | 1657 | host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP"); |
1658 | 1658 | ||
1659 | if (mmc_slot(host).no_off) | ||
1660 | return 0; | ||
1661 | |||
1659 | if ((host->mmc->caps & MMC_CAP_NONREMOVABLE) || | 1662 | if ((host->mmc->caps & MMC_CAP_NONREMOVABLE) || |
1660 | mmc_slot(host).card_detect || | 1663 | mmc_slot(host).card_detect || |
1661 | (mmc_slot(host).get_cover_state && | 1664 | (mmc_slot(host).get_cover_state && |
@@ -1671,6 +1674,9 @@ static int omap_hsmmc_sleep_to_off(struct omap_hsmmc_host *host) | |||
1671 | if (!mmc_try_claim_host(host->mmc)) | 1674 | if (!mmc_try_claim_host(host->mmc)) |
1672 | return 0; | 1675 | return 0; |
1673 | 1676 | ||
1677 | if (mmc_slot(host).no_off) | ||
1678 | return 0; | ||
1679 | |||
1674 | if (!((host->mmc->caps & MMC_CAP_NONREMOVABLE) || | 1680 | if (!((host->mmc->caps & MMC_CAP_NONREMOVABLE) || |
1675 | mmc_slot(host).card_detect || | 1681 | mmc_slot(host).card_detect || |
1676 | (mmc_slot(host).get_cover_state && | 1682 | (mmc_slot(host).get_cover_state && |