Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1683173 > unrolled thread

[PATCH 1/2] dt-bindings: phy: Add stingray usb phy documentation

Started bySrinath Mannam <srinath.mannam@broadcom.com>
First post2017-07-07 15:10 +0200
Last post2017-07-10 17:30 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 1/2] dt-bindings: phy: Add stingray usb phy documentation Srinath Mannam <srinath.mannam@broadcom.com> - 2017-07-07 15:10 +0200
    Re: [PATCH 1/2] dt-bindings: phy: Add stingray usb phy documentation Rob Herring <robh@kernel.org> - 2017-07-10 17:30 +0200

#1683173 — [PATCH 1/2] dt-bindings: phy: Add stingray usb phy documentation

FromSrinath Mannam <srinath.mannam@broadcom.com>
Date2017-07-07 15:10 +0200
Subject[PATCH 1/2] dt-bindings: phy: Add stingray usb phy documentation
Message-ID<u0Bbb-4s5-11@gated-at.bofh.it>
Add DT binding document for stingray usb phy driver.

Signed-off-by: Srinath Mannam <srinath.mannam@broadcom.com>
Reviewed-by: Ray Jui <ray.jui@broadcom.com>
---
 .../bindings/phy/brcm,stingray-usb-phy.txt         | 72 ++++++++++++++++++++++
 1 file changed, 72 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/phy/brcm,stingray-usb-phy.txt

diff --git a/Documentation/devicetree/bindings/phy/brcm,stingray-usb-phy.txt b/Documentation/devicetree/bindings/phy/brcm,stingray-usb-phy.txt
new file mode 100644
index 0000000..22ff1db
--- /dev/null
+++ b/Documentation/devicetree/bindings/phy/brcm,stingray-usb-phy.txt
@@ -0,0 +1,72 @@
+BROADCOM STINGRAY USB PHY
+
+Required properties:
+ - compatible : should be one of the listed compatibles
+	- "brcm,sr-u3h-u2drd-phy"
+	- "brcm,sr-u3drd-phy"
+ - reg: offset and length of the PHY blocks registers
+	two base address and length should be passed.
+ - reg-names: should be from "drdu3","usb3h", "drdu2"
+	"drdu3" for compatible string "brcm,sr-u3drd-phy"
+	"usb3h" and "drdu2" for compatible string "brcm,sr-u3h-u2drd-phy"
+ - address-cells: should be 1
+ - size-cells: should be 0
+
+Sub-nodes:
+  Each port's PHY should be represented as a sub-node.
+
+Sub-nodes required properties:
+ - reg: the PHY port number
+	port numbers of sr-u3h-u2drd-phy should be as
+	- USB3H super speed port is 0
+	- DRDU2 is 1
+	- USB3H high speed port is 2
+	port numbers of sr-u3drd-phy should be as
+	- DRDU3 super speed port is 0
+	- DRDU3 high speed port is 1
+ - phy-cells: generic PHY binding; must be 1
+	The first argument of phy-cell represents the PHY mode in the requested node
+	as either host mode or device mode.
+	for host mode is 1 and device mode is 2.
+
+Refer to phy/phy-bindings.txt for the generic PHY binding properties
+
+Example:
+	usbphy0: usb-phy@68500000 {
+		compatible = "brcm,sr-u3drd-phy";
+		reg = <0x68500000 0x100>;
+		reg-names = "drdu3";
+		#address-cells = <1>;
+		#size-cells = <0>;
+
+		usb0_phy0: phy@0 {
+			reg = <0>;
+			#phy-cells = <1>;
+		};
+		usb0_phy1: phy@1 {
+			reg = <1>;
+			#phy-cells = <1>;
+		};
+	};
+
+	usbphy1: usb-phy@68520000 {
+		compatible = "brcm,sr-u3h-u2drd-phy";
+		reg = <0x68510000 0x100>,
+		      <0x68520000 0x100>;
+		reg-names = "usb3h", "drdu2";
+		#address-cells = <1>;
+		#size-cells = <0>;
+
+		usb1_phy0: phy@0 {
+			reg = <0>;
+			#phy-cells = <1>;
+		};
+		usb1_phy1: phy@1 {
+			reg = <1>;
+			#phy-cells = <1>;
+		};
+		usb1_phy2: phy@2 {
+			reg = <2>;
+			#phy-cells = <1>;
+		};
+	};
-- 
2.7.4

[toc] | [next] | [standalone]


#1684352

FromRob Herring <robh@kernel.org>
Date2017-07-10 17:30 +0200
Message-ID<u1INk-6L7-27@gated-at.bofh.it>
In reply to#1683173
On Fri, Jul 07, 2017 at 06:37:04PM +0530, Srinath Mannam wrote:
> Add DT binding document for stingray usb phy driver.
> 
> Signed-off-by: Srinath Mannam <srinath.mannam@broadcom.com>
> Reviewed-by: Ray Jui <ray.jui@broadcom.com>
> ---
>  .../bindings/phy/brcm,stingray-usb-phy.txt         | 72 ++++++++++++++++++++++
>  1 file changed, 72 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/phy/brcm,stingray-usb-phy.txt

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

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web