From: Li Jun <jun.li@nxp.com>
To: heikki.krogerus@linux.intel.com, robh+dt@kernel.org, rafael@kernel.org
Cc: gregkh@linuxfoundation.org, andriy.shevchenko@linux.intel.com,
hdegoede@redhat.com, lee.jones@linaro.org,
mika.westerberg@linux.intel.com, dmitry.torokhov@gmail.com,
prabhakar.mahadev-lad.rj@bp.renesas.com,
laurent.pinchart+renesas@ideasonboard.com,
linux-usb@vger.kernel.org, devicetree@vger.kernel.org,
linux-imx@nxp.com, peter.chen@nxp.com
Subject: [PATCH v6 1/6] dt-bindings: usb: add documentation for typec switch simple driver
Date: Mon, 23 Nov 2020 22:01:31 +0800 [thread overview]
Message-ID: <1606140096-1382-1-git-send-email-jun.li@nxp.com> (raw)
Some platforms need a simple driver to do some controls according to
typec orientation, this can be extended to be a generic driver with
compatible with "typec-orientation-switch".
Signed-off-by: Li Jun <jun.li@nxp.com>
---
changes for v6:
- Use general mux bindings for typec switch, one typec switch
may have 1 or 2 GPIOs for channel selection, if 1 GPIO, only
can be used to select cc1 or cc2; if 2 GPIOs, the second GPIO
can be used to deselect both channels or keep normal operations.
- Add one more connection to usb controller.
No changes for v5.
changes on v4:
- Use compatible instead of bool property for switch matching.
- Change switch GPIO to be switch simple.
- Change the active channel selection GPIO to be optional.
previous discussion:
http://patchwork.ozlabs.org/patch/1054342/
.../bindings/usb/typec-switch-simple.yaml | 122 +++++++++++++++++++++
1 file changed, 122 insertions(+)
diff --git a/Documentation/devicetree/bindings/usb/typec-switch-simple.yaml b/Documentation/devicetree/bindings/usb/typec-switch-simple.yaml
new file mode 100644
index 0000000..030ade5
--- /dev/null
+++ b/Documentation/devicetree/bindings/usb/typec-switch-simple.yaml
@@ -0,0 +1,122 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/usb/typec-switch-simple.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Typec Orientation Switch Simple Solution Bindings
+
+maintainers:
+ - Li Jun <jun.li@nxp.com>
+
+description: |-
+ USB SuperSpeed (SS) lanes routing to which side of typec connector is
+ decided by orientation, this maybe achieved by some simple control like
+ GPIO toggle.
+
+properties:
+ compatible:
+ const: typec-orientation-switch
+
+ '#mux-control-cells':
+ const: 0
+
+ switch-gpios:
+ description: |
+ GPIO specifiers to select the target channel of mux.
+ The first GPIO is for cc1 and cc2 selection, the GPIO flag use
+ GPIO_ACTIVE_HIGH if GPIO physical state high is for cc1; or use
+ GPIO_ACTIVE_LOW if GPIO physical state low is for cc1.
+ The second gpio is to deselect any channles by places all channels
+ in high-impedance state to reduce current consumption, the gpio flag
+ use GPIO_ACTIVE_HIGH if GPIO physical state high is for
+ high-impedance state (so low for normal operations); or Use
+ GPIO_ACTIVE_LOW if GPIO physical state low is for high-impedance
+ state(so high for normal operations).
+ minItems: 1
+ maxItems: 2
+
+ idle-state:
+ description: -|
+ For TYPEC_ORIENTATION_NONE by deselect both channels if supported.
+ const: 2
+
+ # Standard properties described in
+ # Documentation/devicetree/bindings/mux/mux-controller.txt
+
+ port:
+ type: object
+ additionalProperties: false
+ description: -|
+ Connection to the remote endpoint using OF graph bindings that model
+ SS data bus to typec connector.
+
+ properties:
+ '#address-cells':
+ const: 1
+
+ '#size-cells':
+ const: 0
+
+ endpoint@0:
+ type: object
+ description: Endpoint connected to typec connector.
+ additionalProperties: false
+
+ properties:
+ reg:
+ const: 0
+ remote-endpoint: true
+
+ required:
+ - remote-endpoint
+
+ endpoint@1:
+ type: object
+ description: Endpoint connected to usb controller.
+ additionalProperties: false
+
+ properties:
+ reg:
+ const: 1
+ remote-endpoint: true
+
+ required:
+ - remote-endpoint
+
+ required:
+ - endpoint@0
+
+required:
+ - compatible
+ - port
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+ typec_switch: mux-controller {
+ compatible = "typec-orientation-switch";
+ #mux-control-cells = <0>;
+ pinctrl-names = "default";
+ pinctrl-0 = <&pinctrl_ss_sel>;
+ switch-gpios = <&gpio3 15 GPIO_ACTIVE_HIGH>,
+ <&gpio2 20 GPIO_ACTIVE_HIGH>;
+ idle-state = <2>;
+
+ port {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ usb3_orien_sel: endpoint@0 {
+ reg = <0>;
+ remote-endpoint = <&typec_con_ss>;
+ };
+
+ usb3_con_data: endpoint@1 {
+ reg = <1>;
+ remote-endpoint = <&dwc3_0>;
+ };
+ };
+ };
--
2.7.4
next reply other threads:[~2020-11-23 14:09 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-23 14:01 Li Jun [this message]
2020-11-23 14:01 ` [PATCH v6 2/6] device property: Add fwnode_is_compatible() and device_is_compatible() helpers Li Jun
2020-11-23 14:01 ` [PATCH v6 3/6] usb: typec: mux: add "compatible" property for switch match Li Jun
2020-11-23 14:01 ` [PATCH v6 4/6] usb: typec: mux: use fwnode's dev for driver module user count Li Jun
2020-11-26 11:58 ` Heikki Krogerus
2020-11-23 14:01 ` [PATCH v6 5/6] usb: typec: mux: add typec switch via general mux control Li Jun
2020-11-23 15:31 ` Andy Shevchenko
2020-11-24 2:15 ` Jun Li
2020-11-23 14:01 ` [PATCH v6 6/6] usb: typec: mux: add typec switch simple driver Li Jun
2020-11-26 11:59 ` Heikki Krogerus
2020-11-30 21:47 ` [PATCH v6 1/6] dt-bindings: usb: add documentation for " Rob Herring
2020-12-01 3:13 ` Jun Li
2020-12-03 12:24 ` Jun Li
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=1606140096-1382-1-git-send-email-jun.li@nxp.com \
--to=jun.li@nxp.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.torokhov@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=hdegoede@redhat.com \
--cc=heikki.krogerus@linux.intel.com \
--cc=laurent.pinchart+renesas@ideasonboard.com \
--cc=lee.jones@linaro.org \
--cc=linux-imx@nxp.com \
--cc=linux-usb@vger.kernel.org \
--cc=mika.westerberg@linux.intel.com \
--cc=peter.chen@nxp.com \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=rafael@kernel.org \
--cc=robh+dt@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).