linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: gpio.txt: expand gpio-line-names recommendations
@ 2023-02-11  3:06 Trevor Woerner
  2023-02-15 18:51 ` Rob Herring
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Trevor Woerner @ 2023-02-11  3:06 UTC (permalink / raw)
  To: linux-kernel, Linus Walleij, Bartosz Golaszewski, Rob Herring,
	Krzysztof Kozlowski
  Cc: linux-gpio, devicetree

Provide more guidance to differentiate between recommendations for names of
lines which are hard-wired to on-board devices, versus recommendations for
names of lines which are connected to general-purpose pin headers.

Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
 .../devicetree/bindings/gpio/gpio.txt         | 41 +++++++++++++------
 1 file changed, 29 insertions(+), 12 deletions(-)

diff --git a/Documentation/devicetree/bindings/gpio/gpio.txt b/Documentation/devicetree/bindings/gpio/gpio.txt
index 5663e71b751f..d82c32217fff 100644
--- a/Documentation/devicetree/bindings/gpio/gpio.txt
+++ b/Documentation/devicetree/bindings/gpio/gpio.txt
@@ -154,18 +154,35 @@ of the GPIOs that can't be used.
 
 Optionally, a GPIO controller may have a "gpio-line-names" property. This is
 an array of strings defining the names of the GPIO lines going out of the
-GPIO controller. This name should be the most meaningful producer name
-for the system, such as a rail name indicating the usage. Package names
-such as pin name are discouraged: such lines have opaque names (since they
-are by definition generic purpose) and such names are usually not very
-helpful. For example "MMC-CD", "Red LED Vdd" and "ethernet reset" are
-reasonable line names as they describe what the line is used for. "GPIO0"
-is not a good name to give to a GPIO line. Placeholders are discouraged:
-rather use the "" (blank string) if the use of the GPIO line is undefined
-in your design. The names are assigned starting from line offset 0 from
-left to right from the passed array. An incomplete array (where the number
-of passed named are less than ngpios) will still be used up until the last
-provided valid line index.
+GPIO controller.
+
+For lines which are routed to on-board devices, this name should be
+the most meaningful producer name for the system, such as a rail name
+indicating the usage. Package names, such as a pin name, are discouraged:
+such lines have opaque names (since they are by definition general-purpose)
+and such names are usually not very helpful. For example "MMC-CD", "Red LED
+Vdd" and "ethernet reset" are reasonable line names as they describe what
+the line is used for. "GPIO0" is not a good name to give to a GPIO line
+that is hard-wired to a specific device.
+
+However, in the case of lines that are routed to a general purpose header
+(e.g. the Raspberry Pi 40-pin header), and therefore are not hard-wired to
+specific devices, using a pin number or the names on the header is fine
+provided these are real (preferably unique) names. Using an SoC's pad name
+or package name, or names made up from kernel-internal software constructs,
+are strongly discouraged. For example "pin8 [gpio14/uart0_txd]" is fine
+if the board's documentation labels pin 8 as such. However "PortB_24" (an
+example of a name from an SoC's reference manual) would not be desirable.
+
+In either case placeholders are discouraged: rather use the "" (blank
+string) if the use of the GPIO line is undefined in your design. Ideally,
+try to add comments to the dts file describing the naming the convention
+you have chosen, and specifying from where the names are derived.
+
+The names are assigned starting from line offset 0, from left to right,
+from the passed array. An incomplete array (where the number of passed
+names is less than ngpios) will be used up until the last provided valid
+line index.
 
 Example:
 
-- 
2.36.0.rc2.17.g4027e30c53


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] dt-bindings: gpio.txt: expand gpio-line-names recommendations
  2023-02-11  3:06 [PATCH] dt-bindings: gpio.txt: expand gpio-line-names recommendations Trevor Woerner
@ 2023-02-15 18:51 ` Rob Herring
  2023-02-16  9:26 ` Linus Walleij
  2023-03-06  9:53 ` Bartosz Golaszewski
  2 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2023-02-15 18:51 UTC (permalink / raw)
  To: Trevor Woerner
  Cc: Krzysztof Kozlowski, Rob Herring, devicetree, linux-gpio,
	Bartosz Golaszewski, linux-kernel, Linus Walleij


On Fri, 10 Feb 2023 22:06:45 -0500, Trevor Woerner wrote:
> Provide more guidance to differentiate between recommendations for names of
> lines which are hard-wired to on-board devices, versus recommendations for
> names of lines which are connected to general-purpose pin headers.
> 
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> ---
>  .../devicetree/bindings/gpio/gpio.txt         | 41 +++++++++++++------
>  1 file changed, 29 insertions(+), 12 deletions(-)
> 

Acked-by: Rob Herring <robh@kernel.org>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] dt-bindings: gpio.txt: expand gpio-line-names recommendations
  2023-02-11  3:06 [PATCH] dt-bindings: gpio.txt: expand gpio-line-names recommendations Trevor Woerner
  2023-02-15 18:51 ` Rob Herring
@ 2023-02-16  9:26 ` Linus Walleij
  2023-03-06  9:53 ` Bartosz Golaszewski
  2 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2023-02-16  9:26 UTC (permalink / raw)
  To: Trevor Woerner
  Cc: linux-kernel, Bartosz Golaszewski, Rob Herring,
	Krzysztof Kozlowski, linux-gpio, devicetree

On Sat, Feb 11, 2023 at 4:06 AM Trevor Woerner <twoerner@gmail.com> wrote:

> Provide more guidance to differentiate between recommendations for names of
> lines which are hard-wired to on-board devices, versus recommendations for
> names of lines which are connected to general-purpose pin headers.
>
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>

This is really helpful, thanks Trevor.
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] dt-bindings: gpio.txt: expand gpio-line-names recommendations
  2023-02-11  3:06 [PATCH] dt-bindings: gpio.txt: expand gpio-line-names recommendations Trevor Woerner
  2023-02-15 18:51 ` Rob Herring
  2023-02-16  9:26 ` Linus Walleij
@ 2023-03-06  9:53 ` Bartosz Golaszewski
  2 siblings, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2023-03-06  9:53 UTC (permalink / raw)
  To: Trevor Woerner
  Cc: linux-kernel, Linus Walleij, Rob Herring, Krzysztof Kozlowski,
	linux-gpio, devicetree

On Sat, Feb 11, 2023 at 4:06 AM Trevor Woerner <twoerner@gmail.com> wrote:
>
> Provide more guidance to differentiate between recommendations for names of
> lines which are hard-wired to on-board devices, versus recommendations for
> names of lines which are connected to general-purpose pin headers.
>
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> ---

Applied, thanks!

Bart

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-06  9:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-11  3:06 [PATCH] dt-bindings: gpio.txt: expand gpio-line-names recommendations Trevor Woerner
2023-02-15 18:51 ` Rob Herring
2023-02-16  9:26 ` Linus Walleij
2023-03-06  9:53 ` Bartosz Golaszewski

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).