From: hdegoede@redhat.com (Hans de Goede)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/2] mmc: sunxi: Also set SDXC_LOW_POWER_ON
Date: Mon, 25 May 2015 09:02:37 +0200 [thread overview]
Message-ID: <5562C90D.8070507@redhat.com> (raw)
In-Reply-To: <29e003a6fb8253b1e103f341405d4e8322e3edc2.1432491958.git.hramrach@gmail.com>
Hi,
On 24-05-15 20:04, Michal Suchanek wrote:
> The function sunxi_mmc_oclk_onoff filters out the SDXC_LOW_POWER_ON flag
> but never sets it.
>
> Set SDXC_LOW_POWER_ON when oclk is disabled.
Nack, looking at the datasheet I do not thing this patch actually
does anything, according to the datasheet setting this bit to 1 results
in: "Turn off card clock when FSM in IDLE state", iow this does mmc clock
gating on idle automatically in hardware, since we completely disable the
clock on clock-off by clearing SDXC_CARD_CLOCK_ON setting this bit on
clock-off is a nop.
We could consider actually setting this to safe power when setting the clock
on, for doing that it would be good to look at the android code and see if
it ever sets this bit and if so when.
WRT CONFIG_MMC_CLKGATE we are probably better off using SDXC_LOW_POWER_ON
then that when it is enabled. So maybe we should set SDXC_LOW_POWER_ON
based on #ifdef WRT CONFIG_MMC_CLKGATE, and have some way to tell the
mmc core to not do clock gating on this host ?
Regards,
Hans
>
> Signed-off-by: Michal Suchanek <hramrach@gmail.com>
> ---
> drivers/mmc/host/sunxi-mmc.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
> index 7cdeecd..e957888 100644
> --- a/drivers/mmc/host/sunxi-mmc.c
> +++ b/drivers/mmc/host/sunxi-mmc.c
> @@ -603,6 +603,8 @@ static int sunxi_mmc_oclk_onoff(struct sunxi_mmc_host *host, u32 oclk_en)
>
> if (oclk_en)
> rval |= SDXC_CARD_CLOCK_ON;
> + else
> + rval |= SDXC_LOW_POWER_ON;
>
> start = jiffies;
> end = start + msecs_to_jiffies(750);
>
next prev parent reply other threads:[~2015-05-25 7:02 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-24 18:25 [PATCH 0/2] sunxi a20 mmc timeout fix Michal Suchanek
2015-05-24 18:04 ` [PATCH 2/2] mmc: sunxi: Also set SDXC_LOW_POWER_ON Michal Suchanek
2015-05-25 7:02 ` Hans de Goede [this message]
2015-05-28 8:02 ` Ulf Hansson
2015-05-28 8:04 ` Hans de Goede
2015-05-24 18:07 ` [PATCH 1/2] mmc: sunxi: fix timeout in sunxi_mmc_oclk_onoff Michal Suchanek
2015-05-25 1:44 ` [linux-sunxi] " Julian Calaby
2015-05-25 6:58 ` Hans de Goede
2015-05-25 21:02 ` Maxime Ripard
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=5562C90D.8070507@redhat.com \
--to=hdegoede@redhat.com \
--cc=linux-arm-kernel@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).