From: "Heiko Stübner" <heiko@sntech.de>
To: John Keeping <john@metanate.com>
Cc: Julia Cartwright <julia@ni.com>,
Linus Walleij <linus.walleij@linaro.org>,
linux-gpio@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 1/4] pinctrl: rockchip: remove unnecessary locking
Date: Thu, 23 Mar 2017 18:55:50 +0100 [thread overview]
Message-ID: <9002373.ugSBBElCUj@diego> (raw)
In-Reply-To: <20170323175153.1a576d3c.john@metanate.com>
Am Donnerstag, 23. März 2017, 17:51:53 CET schrieb John Keeping:
> On Thu, 23 Mar 2017 11:10:20 -0500, Julia Cartwright wrote:
> > One quick question below. Apologies if this has been covered, but just
> > want to be sure.
> >
> > On Thu, Mar 23, 2017 at 10:59:28AM +0000, John Keeping wrote:
> > > regmap_update_bits does its own locking and everything else accessed
> > > here is a local variable so there is no need to lock around it.
> > >
> > > Signed-off-by: John Keeping <john@metanate.com>
> > > Reviewed-by: Heiko Stuebner <heiko@sntech.de>
> > > Tested-by: Heiko Stuebner <heiko@sntech.de>
> > > ---
> > > v3: unchanged
> > > v2.1:
> > > - Remove RK2928 locking in rockchip_set_pull()
> > > v2:
> > > - Also remove locking in rockchip_set_schmitt()
> > > ---
> > >
> > > drivers/pinctrl/pinctrl-rockchip.c | 33
> > > ++-------------------------------
> > > 1 file changed, 2 insertions(+), 31 deletions(-)
> > >
> > > diff --git a/drivers/pinctrl/pinctrl-rockchip.c
> > > b/drivers/pinctrl/pinctrl-rockchip.c index bd4b63f66220..6568c867bdcd
> > > 100644
> > > --- a/drivers/pinctrl/pinctrl-rockchip.c
> > > +++ b/drivers/pinctrl/pinctrl-rockchip.c
> >
> > [..]
> >
> > > @@ -1185,17 +1177,14 @@ static int rockchip_set_drive_perpin(struct
> > > rockchip_pin_bank *bank,> >
> > > rmask = BIT(15) | BIT(31);
> > > data |= BIT(31);
> > > ret = regmap_update_bits(regmap, reg, rmask, data);
> > >
> > > - if (ret) {
> > > - spin_unlock_irqrestore(&bank->slock, flags);
> > > + if (ret)
> > >
> > > return ret;
> > >
> > > - }
> > >
> > > rmask = 0x3 | (0x3 << 16);
> > > temp |= (0x3 << 16);
> > > reg += 0x4;
> > > ret = regmap_update_bits(regmap, reg, rmask, temp);
> >
> > Killing the lock here means the writes to to this pair of registers (reg
> > and reg + 4) can be observed non-atomically. Have you convinced
> > yourself that this isn't a problem?
>
> I called it out in v1 [1] since this bit is new since v4.4 where I
> originally wrote this patch, and didn't get any comments about it.
>
> I've convinced myself that removing the lock doesn't cause any problems
> for writing to the hardware: if the lock would prevent writes
> interleaving then it means that two callers are trying to write
> different drive strengths to the same pin, and even with a lock here one
> of them will end up with the wrong drive strength.
>
> But it does mean that a read via rockchip_get_drive_perpin() may see an
> inconsistent state. I think adding a new lock specifically for this
> particular drive strength bit is overkill and I can't find a scenario
> where this will actually matter; any driver setting a pinctrl config
> must already be doing something to avoid racing two configurations
> against each other, mustn't it?
also, pins can normally only be requested once - see drivers complaining if
one of their pins is already held by a different driver. So if you really end
up with two things writing to the same drive strength bits, the driver holding
the pins must be really messed up anyway :-)
Heiko
next prev parent reply other threads:[~2017-03-23 17:55 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-23 10:59 [PATCH v4 0/4] pinctrl: rockchip: PREEMPT_RT_FULL fixes John Keeping
2017-03-23 10:59 ` [PATCH v4 1/4] pinctrl: rockchip: remove unnecessary locking John Keeping
2017-03-23 16:10 ` Julia Cartwright
2017-03-23 17:51 ` John Keeping
2017-03-23 17:55 ` Heiko Stübner [this message]
2017-03-23 18:29 ` Julia Cartwright
2017-03-23 20:01 ` Heiko Stübner
2017-03-23 20:43 ` Julia Cartwright
2017-03-28 9:16 ` Linus Walleij
2017-03-23 10:59 ` [PATCH v4 2/4] pinctrl: rockchip: convert to raw spinlock John Keeping
2017-03-28 9:17 ` Linus Walleij
2017-03-23 10:59 ` [PATCH v4 3/4] pinctrl: rockchip: split out verification of mux settings John Keeping
2017-03-28 9:18 ` Linus Walleij
2017-03-23 10:59 ` [PATCH v4 4/4] pinctrl: rockchip: avoid hardirq-unsafe functions in irq_chip John Keeping
2017-03-28 9:19 ` 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=9002373.ugSBBElCUj@diego \
--to=heiko@sntech.de \
--cc=john@metanate.com \
--cc=julia@ni.com \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.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).