All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Pali Rohár" <pali@kernel.org>
To: BOUGH CHEN <haibo.chen@nxp.com>
Cc: Ulf Hansson <ulf.hansson@linaro.org>,
	"stable@vger.kernel.org" <stable@vger.kernel.org>,
	Adrian Hunter <adrian.hunter@intel.com>,
	"linux-mmc@vger.kernel.org" <linux-mmc@vger.kernel.org>,
	dl-linux-imx <linux-imx@nxp.com>, Andy Duan <fugang.duan@nxp.com>,
	Doug Anderson <dianders@chromium.org>,
	"huyue2@yulong.com" <huyue2@yulong.com>,
	Matthias Kaehlcke <mka@chromium.org>
Subject: Re: [PATCH] mmc: sdio: fix clock rate setting for SDR12/SDR25 mode
Date: Tue, 7 Jul 2020 09:04:20 +0200	[thread overview]
Message-ID: <20200707070420.yn3kunscp4om5iyz@pali> (raw)
In-Reply-To: <VI1PR04MB5294D51A326E7B010D10DE1490660@VI1PR04MB5294.eurprd04.prod.outlook.com>

On Tuesday 07 July 2020 01:48:18 BOUGH CHEN wrote:
> > -----Original Message-----
> > From: Ulf Hansson [mailto:ulf.hansson@linaro.org]
> > Sent: 2020年7月6日 22:49
> > To: BOUGH CHEN <haibo.chen@nxp.com>
> > Cc: Adrian Hunter <adrian.hunter@intel.com>; linux-mmc@vger.kernel.org;
> > Pali Rohár <pali@kernel.org>; dl-linux-imx <linux-imx@nxp.com>; Andy Duan
> > <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
> > 
> > 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?
> 
> Yes, need to do that.
> 
> Cc: <stable@vger.kernel.org>

Hello! I think you can add Fixes line, e.g.:

Fixes: a303c5319c8e ("mmc: sdio: support SDIO UHS cards")

> Best Regards
> Haibo Chen
> > 
> > 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
> > >

      reply	other threads:[~2020-07-07  7:04 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
2020-07-07  1:48   ` BOUGH CHEN
2020-07-07  7:04     ` Pali Rohár [this message]

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=20200707070420.yn3kunscp4om5iyz@pali \
    --to=pali@kernel.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=stable@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.