linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: Janusz Krzysztofik <jmkrzyszt@gmail.com>
Cc: "Boris Brezillon" <boris.brezillon@bootlin.com>,
	"Linus Walleij" <linus.walleij@linaro.org>,
	linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org,
	"Wolfram Sang" <wsa+renesas@sang-engineering.com>,
	"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
	"Fabio Estevam" <fabio.estevam@nxp.com>,
	"Phil Reid" <preid@electromag.com.au>,
	"Lucas Stach" <l.stach@pengutronix.de>,
	"Clemens Gruber" <clemens.gruber@pqgruber.com>,
	"Peter Rosin" <peda@axentia.se>,
	patches@opensource.cirrus.com, linux-i2c@vger.kernel.org,
	ckeepax@opensource.wolfsonmicro.com,
	rf@opensource.wolfsonmicro.com, broonie@kernel.org
Subject: Re: [PATCH] gpiolib: Defer on non-DT find_chip_by_name() failure
Date: Fri, 6 Jul 2018 07:06:09 +0100	[thread overview]
Message-ID: <20180706060609.GT496@dell> (raw)
In-Reply-To: <1579112.qQSMXVQn9s@z50>

On Thu, 05 Jul 2018, Janusz Krzysztofik wrote:
> On Thursday, July 5, 2018 7:50:37 AM CEST Lee Jones wrote:
> > On Wed, 04 Jul 2018, Janusz Krzysztofik wrote:
> > > On Tuesday, July 3, 2018 7:31:41 PM CEST Boris Brezillon wrote:
> > > > Hi Janusz,
> > > > 
> > > > On Tue,  3 Jul 2018 19:26:35 +0200
> > > > 
> > > > Janusz Krzysztofik <jmkrzyszt@gmail.com> wrote:
> > > > > Avoid replication of error code conversion in non-DT GPIO consumers'
> > > > > code by returning -EPROBE_DEFER from gpiod_find() in case a chip
> > > > > identified by its label in a registered lookup table is not ready.
> > > > > 
> > > > > See https://lkml.org/lkml/2018/5/30/176 for example case.
> > > > > 
> > > > > Signed-off-by: Janusz Krzysztofik <jmkrzyszt@gmail.com>
> > > > > ---
> > > > > If accepted, please add
> > > > > 
> > > > > 	Suggested-by: Boris Brezillon <boris.brezillon@bootlin.com>
> > > > > 
> > > > > if Boris doesn't mind.
> > > > > 
> > > > > Thanks,
> > > > > Janusz
> > > > > 
> > > > >  drivers/gpio/gpiolib.c | 13 ++++++++++---
> > > > >  1 file changed, 10 insertions(+), 3 deletions(-)
> > > > > 
> > > > > diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
> > > > > index e11a3bb03820..15dc77c80328 100644
> > > > > --- a/drivers/gpio/gpiolib.c
> > > > > +++ b/drivers/gpio/gpiolib.c
> > > > > @@ -3639,9 +3639,16 @@ static struct gpio_desc *gpiod_find(struct
> > > > > device
> > > > > *dev, const char *con_id,>
> > > > > 
> > > > >  		chip = find_chip_by_name(p->chip_label);
> > > > >  		
> > > > >  		if (!chip) {
> > > > > 
> > > > > -			dev_err(dev, "cannot find GPIO chip %s\n",
> > > > > -				p->chip_label);
> > > > > -			return ERR_PTR(-ENODEV);
> > > > > +			/*
> > > > > +			 * As the lookup table indicates a chip with
> > > > > +			 * p->chip_label should exist, assume it may
> > > > > +			 * still appear latar and let the interested
> > > > > 
> > > > 					^ later
> > > > > 
> > > > > +			 * consumer be probed again or let the Deferred
> > > > > +			 * Probe infrastructure handle the error.
> > > > > +			 */
> > > > > +			dev_warn(dev, "cannot find GPIO chip %s, deferring\n",
> > > > > +				 p->chip_label);
> > > > > +			return ERR_PTR(-EPROBE_DEFER);
> > > > > 
> > > > >  		}
> > > > >  		
> > > > >  		if (chip->ngpio <= p->chip_hwnum) {
> > > > 
> > > > Looks good otherwise. Let's hope we're not breaking implementations
> > > > testing for -ENODEV...
> > > 
> > > I've reviewed them all and found two which I think may be affected:
> > > - drivers/mfd/arizona-core.c,
> > > - drivers/i2c/busses/i2c-imx.c.
> > > As far as I can understand the code, both depend on error != -EPROBE_DEFER
> > > in order to continue in degraded mode. I'm adding their maintainers to
> > > the loop.
> > From a quick glance, the -EPROBE_DEFER handing in Arizona Core appears
> > to be correct.  Would you mind explaining what your concerns are in
> > more detail please?
> 
> Hi
> 
> That's more about handling -ENODEV rather than -EPROBE_DEFER.
> 
> Before the change, if GPIO chip supposed to provide "reset" pin was not ready 
> during  arizona_dev_init(), devm_gpiod_get() returned -ENODEV and device was 
> initialized in degraded mode, i.e., with no control over the "reset" pin.
> After the change, gpiod_get() will return -EPROBE_DEFER in such case and 
> arizona_dev_init() won't succeed in case the GPIO chip doesn't appear later 
> for some reason.

Yes, I see that now.  Thanks for your explanation.

I'm bringing in the big guns (CC'ed).

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

  reply	other threads:[~2018-07-06  6:06 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-03 17:26 [PATCH] gpiolib: Defer on non-DT find_chip_by_name() failure Janusz Krzysztofik
2018-07-03 17:31 ` Boris Brezillon
2018-07-04 19:13   ` Janusz Krzysztofik
2018-07-05  5:23     ` Uwe Kleine-König
2018-07-05  5:50     ` Lee Jones
2018-07-05 20:56       ` Janusz Krzysztofik
2018-07-06  6:06         ` Lee Jones [this message]
2018-07-06  9:03         ` Richard Fitzgerald
2018-07-06 18:58           ` Janusz Krzysztofik
2018-07-03 20:06 ` Andy Shevchenko
2018-07-03 22:18 ` [PATCH v2] " Janusz Krzysztofik
2018-07-04  7:17   ` Boris Brezillon
2018-07-09 13:18   ` Linus Walleij

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=20180706060609.GT496@dell \
    --to=lee.jones@linaro.org \
    --cc=boris.brezillon@bootlin.com \
    --cc=broonie@kernel.org \
    --cc=ckeepax@opensource.wolfsonmicro.com \
    --cc=clemens.gruber@pqgruber.com \
    --cc=fabio.estevam@nxp.com \
    --cc=jmkrzyszt@gmail.com \
    --cc=l.stach@pengutronix.de \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=patches@opensource.cirrus.com \
    --cc=peda@axentia.se \
    --cc=preid@electromag.com.au \
    --cc=rf@opensource.wolfsonmicro.com \
    --cc=u.kleine-koenig@pengutronix.de \
    --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).