From: Philipp Zabel <p.zabel@pengutronix.de>
To: Linus Walleij <linus.walleij@linaro.org>, Alan Tull <atull@kernel.org>
Cc: Hoan Tran <hotran@apm.com>,
"linux-gpio@vger.kernel.org" <linux-gpio@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] gpio: gpio-dwapb: add optional reset
Date: Wed, 11 Oct 2017 12:56:58 +0200 [thread overview]
Message-ID: <1507719418.22082.1.camel@pengutronix.de> (raw)
In-Reply-To: <CACRpkdbS6b9GW8HXmthOfaRPFMARMpyNGaR8He5BJbtfOXLMVw@mail.gmail.com>
Hi Alan, Linus,
On Wed, 2017-10-11 at 10:31 +0200, Linus Walleij wrote:
> On Tue, Oct 10, 2017 at 11:26 PM, Alan Tull <atull@kernel.org> wrote:
>
> > Some platforms require reset to be released to allow register
> > access.
> >
> > Signed-off-by: Alan Tull <atull@kernel.org>
>
> Fair enough.
>
> (...)
> > + rst = devm_reset_control_get_optional_exclusive(dev, NULL);
The way this reset control is used, it looks like you could use _shared
instead of _exclusive here. This relaxes the guarantees made by the API
a bit and may allow this driver to work with more reset controllers.
> > + if (IS_ERR(rst)) {
> > + if (PTR_ERR(rst) == -EPROBE_DEFER)
> > + return PTR_ERR(rst);
The _optional variant of reset_control_get returns NULL if no reset is
specified in the device tree. If an error value is returned, it is
always an actual error (invalid device tree contents, reset is specified
in the device tree but the driver returns an error, etc.).
This should just be:
if (IS_ERR(rst))
return PTR_ERR(rst);
> > + } else {
> > + reset_control_deassert(rst);
> > + gpio->rst = rst;
And this should be made unconditional. reset_control_deassert just
ignores rst == NULL.
> > + }
>
> I do not see why any error other than -EPROBE_DEFER
> should be ignored?
>
> I guess the _optional API returns NULL if there is no
> reset line so it should be fine to just return the error on
> any error.
Correct. The _optional API together with NULL reset control handles
allows to simplify handling of optional resets in the consumer drivers.
> > + if (gpio->rst)
> > + reset_control_assert(gpio->rst);
>
> Is this the right way to handle an optional reset line?
Just as the deassert above, this should be made unconditional.
regards
Philipp
next prev parent reply other threads:[~2017-10-11 10:56 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-10 21:26 [PATCH] gpio: gpio-dwapb: add optional reset Alan Tull
2017-10-11 8:31 ` Linus Walleij
2017-10-11 10:56 ` Philipp Zabel [this message]
2017-10-11 16:05 ` Alan Tull
-- strict thread matches above, loose matches on Subject: below --
2017-10-11 16:34 Alan Tull
2017-10-11 17:47 ` Alan Tull
2017-10-12 8:18 ` Philipp Zabel
2017-10-12 8:26 ` Linus Walleij
2017-10-12 14:34 ` Alan Tull
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=1507719418.22082.1.camel@pengutronix.de \
--to=p.zabel@pengutronix.de \
--cc=atull@kernel.org \
--cc=hotran@apm.com \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.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 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).