From: Philipp Zabel <p.zabel@pengutronix.de>
To: Niklas Cassel <Niklas.Cassel@wdc.com>,
Serge Semin <fancer.lancer@gmail.com>
Cc: Serge Semin <Sergey.Semin@baikalelectronics.ru>,
Mark Brown <broonie@kernel.org>,
"linux-spi@vger.kernel.org" <linux-spi@vger.kernel.org>
Subject: Re: [PATCH] spi: dw: assert reset before deasserting reset
Date: Thu, 17 Mar 2022 11:17:34 +0100 [thread overview]
Message-ID: <a5bc14e4a116717a68889f9a576ba9a332d25c80.camel@pengutronix.de> (raw)
In-Reply-To: <YjHwCcRW0kXMhiLk@x1-carbon>
Hi Niklas, Serge,
On Mi, 2022-03-16 at 14:11 +0000, Niklas Cassel wrote:
[...]
> > > > What about the self-reset based controllers?
> > >
> > > Not sure what specific feature in the SPI controller you are
> > > referring to.
> >
> > I am speaking about the reset-controller lines. They can be of two
> > types: manually asserted/de-asserted and self-deasserted. It's
> > platform-specific and mainly depends on the reset-controller
> > implementation.
I assume this is theoretical. Or are there any platforms where spi-dw-
mmio could be used with a self-deasserting reset controller?
> > Seeing you are adding a full-reset cycle anyway, I suggest to add a
> > support for the both types of reset. Like this:
> >
> > #include <linux/delay.h>
> > ...
> >
> > ret = reset_control_assert(dwsmmio->rstc);
> > if (ret == -ENOTSUPP) {
> > ret = reset_control_reset(dwsmmio->rstc);
> > } else if (!ret) {
> > udelay(2);
Where do the 2 microseconds come from?
> > ret = reset_control_deassert(dwsmmio->rstc);
> > }
> > if (ret)
> > goto out;
> >
> > * Please don't forget to add the include line.
>
> Wow, that is ugly, and I only see one other driver doing it this way.
Which one?
> (All drivers in drivers/spi simply do assert() + udelay() +
> deassert()).
assert() will return -ENOTSUPP if the reset controller is self-
deasserting. That's why they should implement proper error handling if
the driver may be used on a platform with a self-deasserting reset
controller in the future.
> If this is the way to handle both reset control types, there should
> probably be a common helper function in drivers/reset/core.c.
>
> Right now, I'd rather drop this patch than being guilty of copy
> pasting this pattern futher. (Considering that this patch does not
> solve any known issue.)
If it doesn't solve any issue, I'd say drop it.
> Philipp Zabel, reset controller maintainer is already on CC, would be
> nice to hear his point of view.
I would be open to reset_control_assert_delay_deassert_or_reset() kind
of helpers (not with this name) if there are multiple users. But I'd
prefer such a thing to be introduced for drivers that are actually used
both with self-deasserting reset controllers and with reset controllers
with manually controllable reset lines, with an explanation why this is
better than just using reset_control_reset() and implementing .reset()
in all relevant reset controller drivers.
regards
Philipp
next prev parent reply other threads:[~2022-03-17 10:17 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-01 11:17 [PATCH] spi: dw: assert reset before deasserting reset Niklas Cassel
2022-03-11 14:25 ` Serge Semin
2022-03-11 15:51 ` Niklas Cassel
2022-03-11 16:06 ` Mark Brown
2022-03-11 17:05 ` Serge Semin
2022-03-16 14:11 ` Niklas Cassel
2022-03-17 10:17 ` Philipp Zabel [this message]
2022-03-22 10:32 ` Niklas Cassel
2022-03-22 11:08 ` Philipp Zabel
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=a5bc14e4a116717a68889f9a576ba9a332d25c80.camel@pengutronix.de \
--to=p.zabel@pengutronix.de \
--cc=Niklas.Cassel@wdc.com \
--cc=Sergey.Semin@baikalelectronics.ru \
--cc=broonie@kernel.org \
--cc=fancer.lancer@gmail.com \
--cc=linux-spi@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).