All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ulf Hansson <ulf.hansson@linaro.org>
To: Haibo Chen <haibo.chen@nxp.com>
Cc: "Adrian Hunter" <adrian.hunter@intel.com>,
	"linux-mmc@vger.kernel.org" <linux-mmc@vger.kernel.org>,
	"Pali Rohár" <pali@kernel.org>, dl-linux-imx <linux-imx@nxp.com>,
	fugang.duan@nxp.com, "Doug Anderson" <dianders@chromium.org>,
	huyue2@yulong.com, "Matthias Kaehlcke" <mka@chromium.org>
Subject: Re: [PATCH] mmc: sdio: fix clock rate setting for SDR12/SDR25 mode
Date: Mon, 6 Jul 2020 16:49:04 +0200	[thread overview]
Message-ID: <CAPDyKFphkPAgcOEd=j8EUoFyAz7Oj8DEXbgK=k7R15rizWWcTw@mail.gmail.com> (raw)
In-Reply-To: <1592813959-5914-1-git-send-email-haibo.chen@nxp.com>

On Mon, 22 Jun 2020 at 10:30, <haibo.chen@nxp.com> wrote:
>
> From: Haibo Chen <haibo.chen@nxp.com>
>
> In current code logic, when work in SDR12/SDR25 mode, the final clock
> rate is incorrect, just the legancy 400KHz, because the
> card->sw_caps.sd3_bus_mode do not has the flag SD_MODE_UHS_SDR12 or
> SD_MODE_UHS_SDR25. Besides, SDIO_SPEED_SDR12 is actually value 0, and
> every mode need to config the timing and clock rate, so remove the
> ‘if’ operator.
>
> Signed-off-by: Haibo Chen <haibo.chen@nxp.com>

This looks like a rather serious error, should we tag this for stable?

In the meantime, I have applied this for next to get it tested, thanks!

Kind regards
Uffe



> ---
>  drivers/mmc/core/sdio.c | 15 ++++++++-------
>  1 file changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c
> index 0e32ca7b9488..7b40553d3934 100644
> --- a/drivers/mmc/core/sdio.c
> +++ b/drivers/mmc/core/sdio.c
> @@ -176,15 +176,18 @@ static int sdio_read_cccr(struct mmc_card *card, u32 ocr)
>                         if (mmc_host_uhs(card->host)) {
>                                 if (data & SDIO_UHS_DDR50)
>                                         card->sw_caps.sd3_bus_mode
> -                                               |= SD_MODE_UHS_DDR50;
> +                                               |= SD_MODE_UHS_DDR50 | SD_MODE_UHS_SDR50
> +                                                       | SD_MODE_UHS_SDR25 | SD_MODE_UHS_SDR12;
>
>                                 if (data & SDIO_UHS_SDR50)
>                                         card->sw_caps.sd3_bus_mode
> -                                               |= SD_MODE_UHS_SDR50;
> +                                               |= SD_MODE_UHS_SDR50 | SD_MODE_UHS_SDR25
> +                                                       | SD_MODE_UHS_SDR12;
>
>                                 if (data & SDIO_UHS_SDR104)
>                                         card->sw_caps.sd3_bus_mode
> -                                               |= SD_MODE_UHS_SDR104;
> +                                               |= SD_MODE_UHS_SDR104 | SD_MODE_UHS_SDR50
> +                                                       | SD_MODE_UHS_SDR25 | SD_MODE_UHS_SDR12;
>                         }
>
>                         ret = mmc_io_rw_direct(card, 0, 0,
> @@ -537,10 +540,8 @@ static int sdio_set_bus_speed_mode(struct mmc_card *card)
>         max_rate = min_not_zero(card->quirk_max_rate,
>                                 card->sw_caps.uhs_max_dtr);
>
> -       if (bus_speed) {
> -               mmc_set_timing(card->host, timing);
> -               mmc_set_clock(card->host, max_rate);
> -       }
> +       mmc_set_timing(card->host, timing);
> +       mmc_set_clock(card->host, max_rate);
>
>         return 0;
>  }
> --
> 2.17.1
>

  parent reply	other threads:[~2020-07-06 14:49 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-22  8:19 [PATCH] mmc: sdio: fix clock rate setting for SDR12/SDR25 mode haibo.chen
2020-06-29  8:03 ` Pali Rohár
2020-07-06 14:49 ` Ulf Hansson [this message]
2020-07-07  1:48   ` BOUGH CHEN
2020-07-07  7:04     ` Pali Rohár

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='CAPDyKFphkPAgcOEd=j8EUoFyAz7Oj8DEXbgK=k7R15rizWWcTw@mail.gmail.com' \
    --to=ulf.hansson@linaro.org \
    --cc=adrian.hunter@intel.com \
    --cc=dianders@chromium.org \
    --cc=fugang.duan@nxp.com \
    --cc=haibo.chen@nxp.com \
    --cc=huyue2@yulong.com \
    --cc=linux-imx@nxp.com \
    --cc=linux-mmc@vger.kernel.org \
    --cc=mka@chromium.org \
    --cc=pali@kernel.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.