All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lukasz Majewski <l.majewski@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 4/4] exynos: fix and cleanup do_sdhci_init()
Date: Wed, 23 Sep 2015 11:48:48 +0200	[thread overview]
Message-ID: <20150923114848.2d5b3731@amdc2363> (raw)
In-Reply-To: <20150923114423.35e23819@amdc2363>

Hi Lukasz,

> Hi Tobias,
> 
> > The CD check is currently inverted. dm_gpio_get_value() returns
> > one when a card is detected. All other values (zero when there
> > is no card, or negative values for the internal errors) indicate
> > failure.
> > 
> > Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
> > ---
> >  drivers/mmc/s5p_sdhci.c | 20 +++++++++++---------
> >  1 file changed, 11 insertions(+), 9 deletions(-)
> > 
> > diff --git a/drivers/mmc/s5p_sdhci.c b/drivers/mmc/s5p_sdhci.c
> > index 6be3609..bc04370 100644
> > --- a/drivers/mmc/s5p_sdhci.c
> > +++ b/drivers/mmc/s5p_sdhci.c
> > @@ -102,29 +102,31 @@ struct sdhci_host sdhci_host[SDHCI_MAX_HOSTS];
> >  
> >  static int do_sdhci_init(struct sdhci_host *host)
> >  {
> > -	int dev_id, flag;
> > -	int err = 0;
> > +	int dev_id, flag, ret;
> >  
> >  	flag = host->bus_width == 8 ? PINMUX_FLAG_8BIT_MODE :
> > PINMUX_FLAG_NONE; dev_id = host->index + PERIPH_ID_SDMMC0;
> >  
> >  	if (dm_gpio_is_valid(&host->pwr_gpio)) {
> >  		dm_gpio_set_value(&host->pwr_gpio, 1);
> > -		err = exynos_pinmux_config(dev_id, flag);
> > -		if (err) {
> > +		ret = exynos_pinmux_config(dev_id, flag);
> > +		if (ret) {
> >  			debug("MMC not configured\n");
> > -			return err;
> > +			return ret;
> >  		}
> >  	}
> >  
> >  	if (dm_gpio_is_valid(&host->cd_gpio)) {
> > -		if (dm_gpio_get_value(&host->cd_gpio))
> > +		ret = dm_gpio_get_value(&host->cd_gpio);
> > +		if (ret != 1) {
> > +			debug("No card detected (%d)\n", ret);
> >  			return -ENODEV;
> > +		}
> >  
> > -		err = exynos_pinmux_config(dev_id, flag);
> > -		if (err) {
> > +		ret = exynos_pinmux_config(dev_id, flag);
> > +		if (ret) {
> >  			printf("external SD not configured\n");
> > -			return err;
> > +			return ret;
> >  		}
> >  	}
> >  
> 
> Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
> 

Sorry, I was too fast. I've read the whole thread and I can confirm
that your change would break Trats board.

I hope that we will come up with proper solution.

-- 
Best regards,

Lukasz Majewski

Samsung R&D Institute Poland (SRPOL) | Linux Platform Group

  reply	other threads:[~2015-09-23  9:48 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-20 23:54 [U-Boot] [PATCH 3/4] exynos: be more verbose in process_nodes() Tobias Jakobi
2015-09-20 23:54 ` [U-Boot] [PATCH 4/4] exynos: fix and cleanup do_sdhci_init() Tobias Jakobi
2015-09-23  9:44   ` Lukasz Majewski
2015-09-23  9:48     ` Lukasz Majewski [this message]
2015-09-23  9:59       ` Jaehoon Chung
2015-09-23 10:06         ` Lukasz Majewski
2015-09-23 10:06         ` Minkyu Kang
2015-09-24 12:48           ` Tobias Jakobi
2015-09-24 13:27             ` Lukasz Majewski
2015-09-24 15:05   ` Przemyslaw Marczak
2015-09-23  9:41 ` [U-Boot] [PATCH 3/4] exynos: be more verbose in process_nodes() Lukasz Majewski

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=20150923114848.2d5b3731@amdc2363 \
    --to=l.majewski@samsung.com \
    --cc=u-boot@lists.denx.de \
    /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.