All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ulf Hansson <ulf.hansson@stericsson.com>
To: linux-mmc@vger.kernel.org, Chris Ball <cjb@laptop.org>
Cc: Ulf Hansson <ulf.hansson@linaro.org>
Subject: [PATCH 10/12] mmc: core: Enable power_off_notify for eMMC shutdown sequence
Date: Mon, 10 Jun 2013 17:03:45 +0200	[thread overview]
Message-ID: <1370876627-13439-11-git-send-email-ulf.hansson@stericsson.com> (raw)
In-Reply-To: <1370876627-13439-1-git-send-email-ulf.hansson@stericsson.com>

From: Ulf Hansson <ulf.hansson@linaro.org>

In suspend mode it is important to save power. If the host is able to
cut buth vcc and vccq, the MMC_CAP2_POWEROFF_NOTIFY shall be set. It
will mean the card will be completely powered down at suspend and the
power off notification cmd will be sent prior power down.

It seems common not being able to cut both vcc and vccq for a host. In
this situation we issue the sleep cmd in favor of the power off
notification cmd, to save more power.

While maintainng the above policy, we also want to make use of the
power off notification in the shutdown sequence, even in the case were
the host has not set MMC_CAP2_POWEROFF_NOTIFY, since we know vcc and
vccq will regardless be cut.

We accomplish this by always enabling the power off notification byte
in the EXT_CSD and issue the power off notification when either
MMC_CAP2_POWEROFF_NOTIFY is set or we are executing a shutdown.

Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
---
 drivers/mmc/core/mmc.c |    9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c
index 3aafb2e..a96dcaa 100644
--- a/drivers/mmc/core/mmc.c
+++ b/drivers/mmc/core/mmc.c
@@ -1041,11 +1041,9 @@ static int mmc_init_card(struct mmc_host *host, u32 ocr,
 	}
 
 	/*
-	 * If the host supports the power_off_notify capability then
-	 * set the notification byte in the ext_csd register of device
+	 * Enable power_off_notification byte in the ext_csd register
 	 */
-	if ((host->caps2 & MMC_CAP2_POWEROFF_NOTIFY) &&
-	    (card->ext_csd.rev >= 6)) {
+	if (card->ext_csd.rev >= 6) {
 		err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
 				 EXT_CSD_POWER_OFF_NOTIFICATION,
 				 EXT_CSD_POWER_ON,
@@ -1485,7 +1483,8 @@ static int _mmc_suspend(struct mmc_host *host, bool is_suspend)
 	if (err)
 		goto out;
 
-	if (mmc_can_poweroff_notify(host->card))
+	if (mmc_can_poweroff_notify(host->card) &&
+		((host->caps2 & MMC_CAP2_POWEROFF_NOTIFY) || !is_suspend))
 		err = mmc_poweroff_notify(host->card, notify_type);
 	else if (mmc_can_sleep(host->card))
 		err = mmc_sleep(host);
-- 
1.7.10


  parent reply	other threads:[~2013-06-10 15:04 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-10 15:03 [PATCH 00/12] mmc: core: mmc_bus to handle suspend|resume|shutdown Ulf Hansson
2013-06-10 15:03 ` [PATCH 01/12] mmc: core: Remove unnecessary check for the remove callback Ulf Hansson
2013-06-10 15:03 ` [PATCH 02/12] mmc: core: Validate suspend prerequisites for SDIO at SUSPEND_PREPARE Ulf Hansson
2013-06-10 15:03 ` [PATCH 03/12] mmc: core: Push common suspend|resume code into each bus_ops Ulf Hansson
2013-06-10 15:03 ` [PATCH 04/12] mmc: core: Initiate suspend|resume from mmc bus instead of mmc host Ulf Hansson
2013-06-10 15:03 ` [PATCH 05/12] mmc: core: Handle card shutdown from mmc_bus Ulf Hansson
2013-06-10 15:03 ` [PATCH 06/12] mmc: core: Extend shutdown sequence to handle bus operations Ulf Hansson
2013-06-10 15:03 ` [PATCH 07/12] mmc: core: Add shutdown callback for SD bus_ops Ulf Hansson
2013-06-10 15:03 ` [PATCH 08/12] mmc: core: Handle both poweroff notification types for eMMC Ulf Hansson
2013-06-10 15:03 ` [PATCH 09/12] mmc: core: Add shutdown callback for (e)MMC bus_ops Ulf Hansson
2013-06-10 15:03 ` Ulf Hansson [this message]
2013-06-10 15:03 ` [PATCH 11/12] mmc: core: Invent MMC_CAP2_FULL_PWR_CYCLE Ulf Hansson
2013-06-10 15:03 ` [PATCH 12/12] mmc: core: Add DT-bindings for MMC_CAP2_FULL_PWR_CYCLE Ulf Hansson
2013-06-11  9:24 ` [PATCH 00/12] mmc: core: mmc_bus to handle suspend|resume|shutdown Linus Walleij
2013-06-12  8:15   ` Pierre Ossman
2013-06-27 15:43 ` Chris Ball

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1370876627-13439-11-git-send-email-ulf.hansson@stericsson.com \
    --to=ulf.hansson@stericsson.com \
    --cc=cjb@laptop.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=ulf.hansson@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.