From: Russell King <rmk+kernel@armlinux•org.uk>
To: devicetree@vger•kernel.org, linux-arm-kernel@lists•infradead.org,
netdev@vger•kernel.org
Cc: Andrew Lunn <andrew@lunn•ch>,
Gregory Clement <gregory.clement@bootlin•com>,
Jason Cooper <jason@lakedaemon•net>,
Kishon Vijay Abraham I <kishon@ti•com>,
Mark Rutland <mark.rutland@arm•com>,
Rob Herring <robh+dt@kernel•org>,
Sebastian Hesselbarth <sebastian.hesselbarth@gmail•com>,
Thomas Petazzoni <thomas.petazzoni@free-electrons•com>,
Maxime Chevallier <maxime.chevallier@bootlin•com>
Subject: [RFC PATCH 1/6] dt-bindings: phy: Armada 38x common phy bindings
Date: Mon, 12 Nov 2018 12:30:47 +0000 [thread overview]
Message-ID: <E1gMBMd-00089D-2Q@rmk-PC.armlinux.org.uk> (raw)
In-Reply-To: <20181112122933.GD30658@n2100.armlinux.org.uk>
Add the Marvell Armada 38x common phy bindings.
Signed-off-by: Russell King <rmk+kernel@armlinux•org.uk>
---
.../bindings/phy/phy-armada38x-comphy.txt | 40 ++++++++++++++++++++++
1 file changed, 40 insertions(+)
create mode 100644 Documentation/devicetree/bindings/phy/phy-armada38x-comphy.txt
diff --git a/Documentation/devicetree/bindings/phy/phy-armada38x-comphy.txt b/Documentation/devicetree/bindings/phy/phy-armada38x-comphy.txt
new file mode 100644
index 000000000000..ad49e5c01334
--- /dev/null
+++ b/Documentation/devicetree/bindings/phy/phy-armada38x-comphy.txt
@@ -0,0 +1,40 @@
+mvebu armada 38x comphy driver
+------------------------------
+
+This comphy controller can be found on Marvell Armada 38x. It provides a
+number of shared PHYs used by various interfaces (network, sata, usb,
+PCIe...).
+
+Required properties:
+
+- compatible: should be "marvell,armada-380-comphy"
+- reg: should contain the comphy register location and length.
+- #address-cells: should be 1.
+- #size-cells: should be 0.
+
+A sub-node is required for each comphy lane provided by the comphy.
+
+Required properties (child nodes):
+
+- reg: comphy lane number.
+- #phy-cells : from the generic phy bindings, must be 1. Defines the
+ input port to use for a given comphy lane.
+
+Example:
+
+ comphy: phy@18300 {
+ compatible = "marvell,armada-380-comphy";
+ reg = <0x18300 0x100>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ cpm_comphy0: phy@0 {
+ reg = <0>;
+ #phy-cells = <1>;
+ };
+
+ cpm_comphy1: phy@1 {
+ reg = <1>;
+ #phy-cells = <1>;
+ };
+ };
--
2.7.4
next prev parent reply other threads:[~2018-11-12 22:23 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-12 12:29 [RFC PATCH 0/6] Armada 38x comphy driver to support 2.5Gbps networking Russell King - ARM Linux
2018-11-12 12:30 ` Russell King [this message]
2018-12-03 23:53 ` [RFC PATCH 1/6] dt-bindings: phy: Armada 38x common phy bindings Rob Herring
2018-11-12 12:30 ` [RFC PATCH 2/6] phy: armada38x: add common phy support Russell King
2018-11-12 17:03 ` Andrew Lunn
2018-11-14 8:42 ` Kishon Vijay Abraham I
2018-11-15 10:02 ` Maxime Chevallier
2018-11-12 12:30 ` [RFC PATCH 3/6] ARM: dts: add description for Armada 38x common phy Russell King
2018-11-15 10:02 ` Maxime Chevallier
2018-11-12 12:31 ` [RFC PATCH 4/6] dt-bindings: update mvneta binding document Russell King
2018-12-03 23:54 ` Rob Herring
2018-12-05 11:00 ` Russell King - ARM Linux
2018-12-05 15:30 ` Rob Herring
2018-12-07 4:07 ` Kishon Vijay Abraham I
2018-12-07 10:41 ` Russell King - ARM Linux
2018-12-07 11:13 ` Kishon Vijay Abraham I
2018-12-07 11:33 ` Russell King - ARM Linux
2018-12-07 12:00 ` Kishon Vijay Abraham I
2018-12-07 12:17 ` Russell King - ARM Linux
2018-11-12 12:31 ` [RFC PATCH 5/6] net: marvell: neta: add support for 2500base-X Russell King
2018-11-14 8:48 ` Kishon Vijay Abraham I
2018-11-14 11:11 ` Russell King - ARM Linux
2018-11-21 9:38 ` Kishon Vijay Abraham I
2018-11-15 10:02 ` Maxime Chevallier
2018-11-12 12:31 ` [RFC PATCH 6/6] ARM: dts: clearfog: add comphy settings for Ethernet interfaces Russell King
2018-11-15 10:02 ` Maxime Chevallier
2018-11-14 8:09 ` [RFC PATCH 0/6] Armada 38x comphy driver to support 2.5Gbps networking Kishon Vijay Abraham I
2018-11-14 10:56 ` Russell King - ARM Linux
2018-11-21 9:41 ` Kishon Vijay Abraham I
2018-11-15 10:02 ` Maxime Chevallier
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=E1gMBMd-00089D-2Q@rmk-PC.armlinux.org.uk \
--to=rmk+kernel@armlinux$(echo .)org.uk \
--cc=andrew@lunn$(echo .)ch \
--cc=devicetree@vger$(echo .)kernel.org \
--cc=gregory.clement@bootlin$(echo .)com \
--cc=jason@lakedaemon$(echo .)net \
--cc=kishon@ti$(echo .)com \
--cc=linux-arm-kernel@lists$(echo .)infradead.org \
--cc=mark.rutland@arm$(echo .)com \
--cc=maxime.chevallier@bootlin$(echo .)com \
--cc=netdev@vger$(echo .)kernel.org \
--cc=robh+dt@kernel$(echo .)org \
--cc=sebastian.hesselbarth@gmail$(echo .)com \
--cc=thomas.petazzoni@free-electrons$(echo .)com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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