devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: extcon: extcon-usb-gpio: convert to yaml format
@ 2023-07-13  0:25 David Heidelberg
       [not found] ` <CGME20230713002537epcas1p3a1b2049dd05d42a6c9df26edf7988ca6@epcms1p3>
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: David Heidelberg @ 2023-07-13  0:25 UTC (permalink / raw)
  To: MyungJoo Ham, Chanwoo Choi, Rob Herring, Krzysztof Kozlowski,
	Linus Walleij
  Cc: David Heidelberg, linux-kernel, devicetree

Signed-off-by: David Heidelberg <david@ixit.cz>
---
 .../bindings/extcon/extcon-usb-gpio.txt       | 21 ---------
 .../bindings/extcon/extcon-usb-gpio.yaml      | 45 +++++++++++++++++++
 2 files changed, 45 insertions(+), 21 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/extcon/extcon-usb-gpio.txt
 create mode 100644 Documentation/devicetree/bindings/extcon/extcon-usb-gpio.yaml

diff --git a/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.txt b/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.txt
deleted file mode 100644
index dfc14f71e81f..000000000000
--- a/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-USB GPIO Extcon device
-
-This is a virtual device used to generate USB cable states from the USB ID pin
-connected to a GPIO pin.
-
-Required properties:
-- compatible: Should be "linux,extcon-usb-gpio"
-
-Either one of id-gpio or vbus-gpio must be present. Both can be present as well.
-- id-gpio: gpio for USB ID pin. See gpio binding.
-- vbus-gpio: gpio for USB VBUS pin.
-
-Example: Examples of extcon-usb-gpio node in dra7-evm.dts as listed below:
-	extcon_usb1 {
-		compatible = "linux,extcon-usb-gpio";
-		id-gpio = <&gpio6 1 GPIO_ACTIVE_HIGH>;
-	}
-
-	&omap_dwc3_1 {
-		extcon = <&extcon_usb1>;
-	};
diff --git a/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.yaml b/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.yaml
new file mode 100644
index 000000000000..b345745013a2
--- /dev/null
+++ b/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.yaml
@@ -0,0 +1,45 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/extcon/extcon-usb-gpio.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: USB GPIO Extcon device
+
+maintainers:
+  - Linus Walleij <linus.walleij@linaro.org>
+
+description:
+  This is a virtual device used to generate USB cable states
+  from the USB ID pin connected to a GPIO pin.
+
+properties:
+  compatible:
+    const: linux,extcon-usb-gpio
+
+  id-gpio:
+    description: GPIO for USB ID pin.
+
+  vbus-gpio:
+    description: GPIO for USB VBUS pin.
+
+required:
+  - compatible
+
+anyOf:
+  - required:
+      - id-gpio
+  - required:
+      - vbus-gpio
+
+additionalProperties: false
+
+examples:
+  - |
+    #include <dt-bindings/gpio/gpio.h>
+    extcon_usb1 {
+        compatible = "linux,extcon-usb-gpio";
+        id-gpio = <&gpio6 1 GPIO_ACTIVE_HIGH>;
+    };
+
+...
-- 
2.40.1


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

* RE: [PATCH] dt-bindings: extcon: extcon-usb-gpio: convert to yaml format
       [not found] ` <CGME20230713002537epcas1p3a1b2049dd05d42a6c9df26edf7988ca6@epcms1p3>
@ 2023-07-13  4:42   ` MyungJoo Ham
  0 siblings, 0 replies; 4+ messages in thread
From: MyungJoo Ham @ 2023-07-13  4:42 UTC (permalink / raw)
  To: David Heidelberg, Chanwoo Choi, Rob Herring, Krzysztof Kozlowski,
	Linus Walleij
  Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org

>--------- Original Message ---------
>Sender : David Heidelberg <david@ixit.cz>
>Date   : 2023-07-13 09:25 (GMT+9)
>Title  : [PATCH] dt-bindings: extcon: extcon-usb-gpio: convert to yaml format
> 
>Signed-off-by: David Heidelberg <david@ixit.cz>

Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>

>---
> .../bindings/extcon/extcon-usb-gpio.txt       | 21 ---------
> .../bindings/extcon/extcon-usb-gpio.yaml      | 45 +++++++++++++++++++
> 2 files changed, 45 insertions(+), 21 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/extcon/extcon-usb-gpio.txt
> create mode 100644 Documentation/devicetree/bindings/extcon/extcon-usb-gpio.yaml
>
>diff --git a/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.txt b/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.txt
>deleted file mode 100644
>index dfc14f71e81f..000000000000
>--- a/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.txt
>+++ /dev/null
[]
>diff --git a/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.yaml b/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.yaml
>new file mode 100644
>index 000000000000..b345745013a2
>--- /dev/null
>+++ b/Documentation/devicetree/bindings/extcon/extcon-usb-gpio.yaml
[]


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

* Re: [PATCH] dt-bindings: extcon: extcon-usb-gpio: convert to yaml format
  2023-07-13  0:25 [PATCH] dt-bindings: extcon: extcon-usb-gpio: convert to yaml format David Heidelberg
       [not found] ` <CGME20230713002537epcas1p3a1b2049dd05d42a6c9df26edf7988ca6@epcms1p3>
@ 2023-07-13  6:34 ` Krzysztof Kozlowski
  2023-07-15 19:49 ` Linus Walleij
  2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2023-07-13  6:34 UTC (permalink / raw)
  To: David Heidelberg, MyungJoo Ham, Chanwoo Choi, Rob Herring,
	Krzysztof Kozlowski, Linus Walleij
  Cc: linux-kernel, devicetree

On 13/07/2023 02:25, David Heidelberg wrote:
> Signed-off-by: David Heidelberg <david@ixit.cz>
> ---

Missing commit msg... but anyway this was sent a month ago:

https://lore.kernel.org/all/20230615145838.1526919-1-alexander.stein@ew.tq-group.com/

plus your version unfortunately makes similar mistake as Alexander's.



Best regards,
Krzysztof


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

* Re: [PATCH] dt-bindings: extcon: extcon-usb-gpio: convert to yaml format
  2023-07-13  0:25 [PATCH] dt-bindings: extcon: extcon-usb-gpio: convert to yaml format David Heidelberg
       [not found] ` <CGME20230713002537epcas1p3a1b2049dd05d42a6c9df26edf7988ca6@epcms1p3>
  2023-07-13  6:34 ` Krzysztof Kozlowski
@ 2023-07-15 19:49 ` Linus Walleij
  2 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2023-07-15 19:49 UTC (permalink / raw)
  To: David Heidelberg, Rob Herring
  Cc: MyungJoo Ham, Chanwoo Choi, Krzysztof Kozlowski, linux-kernel,
	devicetree

On Thu, Jul 13, 2023 at 2:25 AM David Heidelberg <david@ixit.cz> wrote:

> +maintainers:
> +  - Linus Walleij <linus.walleij@linaro.org>

I don't see why I should be listed for this? I have nothing to
do with it, I think.

On the topic:
Can't this just reuse Rob's excellent binding in
Documentation/devicetree/bindings/connector/usb-connector.yaml
just add id-gpios to it and list const: linux,extcon-usb-gpio as a
deprecated compatible.

(Then we should make the Linux driver probe from the existing
and better compatibles from that file, but it's a whole other issue.)

Yours,
Linus Walleij

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

end of thread, other threads:[~2023-07-15 19:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-13  0:25 [PATCH] dt-bindings: extcon: extcon-usb-gpio: convert to yaml format David Heidelberg
     [not found] ` <CGME20230713002537epcas1p3a1b2049dd05d42a6c9df26edf7988ca6@epcms1p3>
2023-07-13  4:42   ` MyungJoo Ham
2023-07-13  6:34 ` Krzysztof Kozlowski
2023-07-15 19:49 ` Linus Walleij

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