From: Zhoujie Wu <zjwu@marvell.com>
To: Gregory CLEMENT <gregory.clement@free-electrons.com>,
ulf.hansson@linaro.org, Adrian Hunter <adrian.hunter@intel.com>
Cc: linux-mmc@vger.kernel.org, zmxu@marvell.com, jszhang@marvell.com,
nadavh@marvell.com, xigu@marvell.com, dingwei@marvell.com,
kostap@marvell.com, hannah@marvell.com, hongd@marvell.com,
dougj@marvell.com, ygao@marvell.com, liuw@marvell.com,
thomas.petazzoni@free-electrons.com
Subject: Re: [PATCH v2] mmc: sdhci-xenon: add set_power callback
Date: Mon, 28 Aug 2017 11:45:14 -0700 [thread overview]
Message-ID: <59A464BA.6030401@marvell.com> (raw)
In-Reply-To: <87val76624.fsf@free-electrons.com>
Hi Gregory,
On 08/28/2017 08:54 AM, Gregory CLEMENT wrote:
> Hi,
>
> On lun., août 28 2017, Adrian Hunter <adrian.hunter@intel.com> wrote:
>
>> On 21/08/17 21:02, Zhoujie Wu wrote:
>>> Xenon sdh controller requests proper SD bus voltage select
>>> bits programmed even with vmmc power supply. Any reserved
>>> value(100b-000b) programmed in this field will lead to controller
>>> ignore SD bus power bit and keep its value at zero.
>>> Add set_power callback to handle this.
>>>
>>> Signed-off-by: Zhoujie Wu <zjwu@marvell.com>
>> Acked-by: Adrian Hunter <adrian.hunter@intel.com>
> I tested this patch on the Armada 3720 DB board. And thanks to this patch
> and by adding a vmmc regulator in the device tree I did not have anymore
> the issue UHS card not detected on warm reset.
>
> Tested-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
>
> Actually for me this should be a fix. Indeed if I try to use a vmmc
> regulator without this patch then the SD card does not work at all I
> only have the following messages:
>
> "mmc1: Timeout waiting for hardware cmd interrupt."
This patch with sd vmmc power supply(must be claimed as AON, or card
detection can't work)enabled can solve the issue for warm reset. This
patch is must for xenon controller once vmmc power supply enabled, since
the HW will ignore any reserved value for sd bus voltage select field
and ignore the pwr_en in this case.
But recently we met another issue after resume, it is similar as warm
reset. When resume back, SD card(UHS) is re-initialized and it is
recognized as HS again. It needs power-cycle before initialization to
solve the resume issue. But vmmc is claimed as AON, it won't be shut
down in standby, so vmmc and this patch won't solve resume issue. I have
no better idea to solve both warm reset and resume issue, I added a
dedicated pwrseq for a3700 sd card, it will do power cycle during pre
and post pwrseq, but keep power when power off the card.
Do you have any other better suggestion?
>
> Thanks,
>
> Gregory
>
>
>>> ---
>>> Updated according to Jisheng Zhang's comment.
>>> drivers/mmc/host/sdhci-xenon.c | 19 +++++++++++++++++++
>>> 1 file changed, 19 insertions(+)
>>>
>>> diff --git a/drivers/mmc/host/sdhci-xenon.c b/drivers/mmc/host/sdhci-xenon.c
>>> index edd4d915..a4be2fd 100644
>>> --- a/drivers/mmc/host/sdhci-xenon.c
>>> +++ b/drivers/mmc/host/sdhci-xenon.c
>>> @@ -210,8 +210,27 @@ static void xenon_set_uhs_signaling(struct sdhci_host *host,
>>> sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
>>> }
>>>
>>> +static void xenon_set_power(struct sdhci_host *host, unsigned char mode,
>>> + unsigned short vdd)
>>> +{
>>> + struct mmc_host *mmc = host->mmc;
>>> + u8 pwr = host->pwr;
>>> +
>>> + sdhci_set_power_noreg(host, mode, vdd);
>>> +
>>> + if (host->pwr == pwr)
>>> + return;
>>> +
>>> + if (host->pwr == 0)
>>> + vdd = 0;
>>> +
>>> + if (!IS_ERR(mmc->supply.vmmc))
>>> + mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
>>> +}
>>> +
>>> static const struct sdhci_ops sdhci_xenon_ops = {
>>> .set_clock = sdhci_set_clock,
>>> + .set_power = xenon_set_power,
>>> .set_bus_width = sdhci_set_bus_width,
>>> .reset = xenon_reset,
>>> .set_uhs_signaling = xenon_set_uhs_signaling,
>>>
next prev parent reply other threads:[~2017-08-28 18:45 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-21 18:02 [PATCH v2] mmc: sdhci-xenon: add set_power callback Zhoujie Wu
2017-08-28 9:57 ` Adrian Hunter
2017-08-28 15:54 ` Gregory CLEMENT
2017-08-28 18:45 ` Zhoujie Wu [this message]
2017-08-29 3:29 ` Shawn Lin
2017-08-29 3:56 ` Shawn Lin
2017-08-29 10:18 ` Gregory CLEMENT
2017-08-29 10:25 ` Adrian Hunter
2017-08-30 13:13 ` Ulf Hansson
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=59A464BA.6030401@marvell.com \
--to=zjwu@marvell.com \
--cc=adrian.hunter@intel.com \
--cc=dingwei@marvell.com \
--cc=dougj@marvell.com \
--cc=gregory.clement@free-electrons.com \
--cc=hannah@marvell.com \
--cc=hongd@marvell.com \
--cc=jszhang@marvell.com \
--cc=kostap@marvell.com \
--cc=linux-mmc@vger.kernel.org \
--cc=liuw@marvell.com \
--cc=nadavh@marvell.com \
--cc=thomas.petazzoni@free-electrons.com \
--cc=ulf.hansson@linaro.org \
--cc=xigu@marvell.com \
--cc=ygao@marvell.com \
--cc=zmxu@marvell.com \
/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