From: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
To: Conor Dooley <conor@kernel.org>
Cc: devicetree@vger.kernel.org, Conor Dooley <conor+dt@kernel.org>,
kernel@pengutronix.de, Linus Walleij <linus.walleij@linaro.org>,
Kent Gibson <warthog618@gmail.com>,
linux-gpio@vger.kernel.org,
Andy Shevchenko <andy.shevchenko@gmail.com>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Bartosz Golaszewski <brgl@bgdev.pl>
Subject: Re: [PATCH v2 1/2] dt-bindings: gpio: introduce hog properties with less ambiguity
Date: Wed, 31 May 2023 09:03:51 +0200 [thread overview]
Message-ID: <20230531070351.gjh62dssldwworc2@pengutronix.de> (raw)
In-Reply-To: <20230530-gag-doorway-e13660d45161@spud>
[-- Attachment #1: Type: text/plain, Size: 3011 bytes --]
Hello Conor,
On Tue, May 30, 2023 at 11:20:38PM +0100, Conor Dooley wrote:
> On Tue, May 30, 2023 at 05:19:45PM +0200, Uwe Kleine-König wrote:
> > For active low lines the semantic of output-low and output-high is hard
> > to grasp because there is a double negation involved and so output-low
> > is actually a request to drive the line high (aka inactive).
> >
> > So introduce output-inactive and output-active with the same semantic as
> > output-low and output-high respectively have today, but with a more
> > sensible name.
> >
> > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> > ---
> > Documentation/devicetree/bindings/gpio/gpio.txt | 16 +++++++++++-----
> > 1 file changed, 11 insertions(+), 5 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/gpio/gpio.txt b/Documentation/devicetree/bindings/gpio/gpio.txt
> > index d82c32217fff..2f037bbd3ffa 100644
> > --- a/Documentation/devicetree/bindings/gpio/gpio.txt
> > +++ b/Documentation/devicetree/bindings/gpio/gpio.txt
> > @@ -209,15 +209,21 @@ Required properties:
> > - gpios: Store the GPIO information (id, flags, ...) for each GPIO to
> > affect. Shall contain an integer multiple of the number of cells
> > specified in its parent node (GPIO controller node).
> > +
> > Only one of the following properties scanned in the order shown below.
> > This means that when multiple properties are present they will be searched
> > in the order presented below and the first match is taken as the intended
> > configuration.
> > -- input: A property specifying to set the GPIO direction as input.
> > -- output-low A property specifying to set the GPIO direction as output with
> > - the value low.
> > -- output-high A property specifying to set the GPIO direction as output with
> > - the value high.
> > +- input: A property specifying to set the GPIO direction as input.
> > +- output-inactive: A property specifying to set the GPIO direction as output
> > + with the inactive value (depending on the line's polarity,
> > + which is active-high by default)
> > +- output-active: A property specifying to set the GPIO direction as output
> > + with the active value.
> > +
> > +For backwards compatibility "output-low" and "output-high" are supported as
> > +aliases for "output-inactive" and "output-active" respectively. Their usage is
> > +misleading for active-low outputs, so their use is discouraged.
>
> Seems like an improvement to me,
> Acked-by: Conor Dooley <conor.dooley@microchip.com>
Thanks!
> Rob did note that gpio-hog.yaml in dt-schema would need to be updated,
This is a followup-change in a separate repository once the change
under discussion is in mainline, right?
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | https://www.pengutronix.de/ |
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2023-05-31 7:03 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-30 15:19 [PATCH v2 0/2] gpio: introduce hog properties with less ambiguity Uwe Kleine-König
2023-05-30 15:19 ` [PATCH v2 1/2] dt-bindings: " Uwe Kleine-König
2023-05-30 22:20 ` Conor Dooley
2023-05-31 7:03 ` Uwe Kleine-König [this message]
2023-05-31 9:37 ` Conor Dooley
2023-05-31 6:18 ` Alexander Stein
2023-05-31 7:01 ` Uwe Kleine-König
2023-06-08 6:50 ` Geert Uytterhoeven
2023-06-07 21:09 ` Rob Herring
2023-05-30 15:19 ` [PATCH v2 2/2] gpio: use "active" and "inactive" instead of "high" and "low" for output hogs Uwe Kleine-König
2023-05-30 21:51 ` Andy Shevchenko
2023-05-31 6:58 ` Uwe Kleine-König
2023-05-31 9:51 ` Andy Shevchenko
2023-05-31 10:06 ` Uwe Kleine-König
2023-05-31 12:21 ` Andy Shevchenko
2023-05-31 12:23 ` Andy Shevchenko
2023-05-30 15:51 ` [PATCH v2 0/2] gpio: introduce hog properties with less ambiguity Kent Gibson
2023-05-30 19:15 ` Bartosz Golaszewski
2023-05-31 0:55 ` Kent Gibson
2023-05-31 8:15 ` Bartosz Golaszewski
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=20230531070351.gjh62dssldwworc2@pengutronix.de \
--to=u.kleine-koenig@pengutronix.de \
--cc=andy.shevchenko@gmail.com \
--cc=brgl@bgdev.pl \
--cc=conor+dt@kernel.org \
--cc=conor@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=kernel@pengutronix.de \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=robh+dt@kernel.org \
--cc=warthog618@gmail.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).