linux-mmc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Fang Hongjie(方洪杰)" <hongjiefang@asrmicro.com>
To: Ulf Hansson <ulf.hansson@linaro.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>,
	Shawn Lin <shawn.lin@rock-chips.com>,
	Linus Walleij <linus.walleij@linaro.org>,
	Wolfram Sang <wsa+renesas@sang-engineering.com>,
	Bastian Stender <bst@pengutronix.de>,
	Jin Qian <jinqian@google.com>, Chanho Min <chanho.min@lge.com>,
	Kyle Roeschley <kyle.roeschley@ni.com>,
	"linux-mmc@vger.kernel.org" <linux-mmc@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: RE: [PATCH V2] mmc: core: improve reasonableness of bus width setting for HS400es
Date: Mon, 16 Jul 2018 11:01:33 +0000	[thread overview]
Message-ID: <d3ffea436c92408098e5e85fb0dd4cd8@mail2012.asrmicro.com> (raw)
In-Reply-To: <CAPDyKFpv_zedwgDRmHTUadaDYb-xBQLFRV0sAk116YbjOhY+GA@mail.gmail.com>

> On 11 July 2018 at 05:00, Hongjie Fang <hongjiefang@asrmicro.com> wrote:
> > mmc_select_hs400es() calls mmc_select_bus_width() which will continue
> > to set 4bit transfer mode if fail to set 8bit mode. The bus width
> > should not be set to 4bit in HS400es.
> >
> > When fail to set 8bit mode, need return error directly for HS400es.
> >
> > Signed-off-by: Hongjie Fang <hongjiefang@asrmicro.com>
> > ---
> >  drivers/mmc/core/mmc.c | 5 ++++-
> >  1 file changed, 4 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c
> > index 4466f5d..4bd6c09 100644
> > --- a/drivers/mmc/core/mmc.c
> > +++ b/drivers/mmc/core/mmc.c
> > @@ -1021,8 +1021,11 @@ static int mmc_select_bus_width(struct mmc_card *card)
> >                                  EXT_CSD_BUS_WIDTH,
> >                                  ext_csd_bits[idx],
> >                                  card->ext_csd.generic_cmd6_time);
> > -               if (err)
> > +               if (err) {
> > +                       if (card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS400ES)
> > +                               return err;
> >                         continue;
> > +               }
> 
> I would rather let mmc_select_hs400es() check the return code from
> mmc_select_bus_width().
> 
> So, if the return code isn't MMC_BUS_WIDTH_8, mmc_select_hs400es()
> should bail out.

Yeah, it is better that let mmc_select_hs400es() check the return value.
I will update the patch.

> 
> [...]
> 
> Kind regards
> Uffe


B&R
Hongjie

      reply	other threads:[~2018-07-16 11:01 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-11  3:00 [PATCH V2] mmc: core: improve reasonableness of bus width setting for HS400es Hongjie Fang
2018-07-16  8:23 ` Fang Hongjie(方洪杰)
2018-07-16 10:11 ` Ulf Hansson
2018-07-16 11:01   ` Fang Hongjie(方洪杰) [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=d3ffea436c92408098e5e85fb0dd4cd8@mail2012.asrmicro.com \
    --to=hongjiefang@asrmicro.com \
    --cc=adrian.hunter@intel.com \
    --cc=bst@pengutronix.de \
    --cc=chanho.min@lge.com \
    --cc=jinqian@google.com \
    --cc=kyle.roeschley@ni.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=shawn.lin@rock-chips.com \
    --cc=ulf.hansson@linaro.org \
    --cc=wsa+renesas@sang-engineering.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;
as well as URLs for NNTP newsgroup(s).