From: Vladimir Oltean <vladimir.oltean@nxp.com>
To: netdev@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-phy@lists.infradead.org
Cc: "Russell King (Oracle)" <rmk+kernel@armlinux.org.uk>,
Heiner Kallweit <hkallweit1@gmail.com>,
Andrew Lunn <andrew@lunn.ch>,
Florian Fainelli <f.fainelli@gmail.com>,
Madalin Bucur <madalin.bucur@nxp.com>,
Ioana Ciornei <ioana.ciornei@nxp.com>,
Camelia Groza <camelia.groza@nxp.com>,
Li Yang <leoyang.li@nxp.com>, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor@kernel.org>,
Sean Anderson <sean.anderson@seco.com>,
Maxime Chevallier <maxime.chevallier@bootlin.com>,
Vinod Koul <vkoul@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>
Subject: [RFC PATCH net-next 8/8] dt-bindings: net: fsl,backplane-anlt: new binding document
Date: Thu, 17 Aug 2023 18:06:44 +0300 [thread overview]
Message-ID: <20230817150644.3605105-9-vladimir.oltean@nxp.com> (raw)
In-Reply-To: <20230817150644.3605105-1-vladimir.oltean@nxp.com>
Illustrate how the backplane AN/LT blocks can be instantiated on the
LX2160A SoC with SerDes protocol 19.
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
---
.../devicetree/bindings/net/ethernet-phy.yaml | 8 +
.../bindings/net/fsl,backplane-anlt.yaml | 238 ++++++++++++++++++
2 files changed, 246 insertions(+)
create mode 100644 Documentation/devicetree/bindings/net/fsl,backplane-anlt.yaml
diff --git a/Documentation/devicetree/bindings/net/ethernet-phy.yaml b/Documentation/devicetree/bindings/net/ethernet-phy.yaml
index c1241c8a3b77..96fa672e4786 100644
--- a/Documentation/devicetree/bindings/net/ethernet-phy.yaml
+++ b/Documentation/devicetree/bindings/net/ethernet-phy.yaml
@@ -49,6 +49,14 @@ properties:
- items:
- pattern: "^ethernet-phy-id[a-f0-9]{4}\\.[a-f0-9]{4}$"
- const: ethernet-phy-ieee802.3-c45
+ - items:
+ - const: fsl,lx2160a-backplane-anlt
+ - const: ethernet-phy-ieee802.3-c45
+ description:
+ Some C45 PHYs have no PHY ID in the standard location, and there is
+ also no PHY ID allocated for them to fake. They are identified by the
+ primary compatible string, plus the secondary one to distinguish them
+ from a raw MDIO device.
reg:
minimum: 0
diff --git a/Documentation/devicetree/bindings/net/fsl,backplane-anlt.yaml b/Documentation/devicetree/bindings/net/fsl,backplane-anlt.yaml
new file mode 100644
index 000000000000..7282e93b1dd4
--- /dev/null
+++ b/Documentation/devicetree/bindings/net/fsl,backplane-anlt.yaml
@@ -0,0 +1,238 @@
+# SPDX-License-Identifier: GPL-2.0+
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/net/fsl,backplane-anlt.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Freescale Backplane Ethernet PHY
+
+maintainers:
+ - Vladimir Oltean <vladimir.oltean@nxp.com>
+
+description: |
+ Some QorIQ and Layerscape SoCs have an additional block on each SerDes
+ networking lane, based on an IP core from MoreThanIP, which performs IEEE
+ 802.3 clause 73 base page exchanges (for auto-negotiation) and clause 72
+ training frame exchanges (for link training).
+
+ By default, this AN/LT block comes up with auto-negotiation disabled, and
+ in that case it allows itself to be quickly bypassed from the data path and
+ for the PCS link to come up without its involvement.
+
+ Software can optionally make use of it, to turn the PCS, AN/LT block and lane
+ (PMA/PMD) into a full copper backplane internal PHY.
+
+ As a warning, the binding for the multi-lane link modes (40GBase-KR4) is not
+ currently backed up by a driver implementation.
+
+allOf:
+ - if:
+ properties:
+ compatible:
+ - items:
+ - const: fsl,lx2160a-backplane-anlt
+ - const: ethernet-phy-ieee802.3-c45
+ then:
+ $ref: ethernet-phy.yaml#
+
+properties:
+ compatible:
+ oneOf:
+ - items:
+ - const: fsl,lx2160a-backplane-anlt
+ - const: ethernet-phy-ieee802.3-c45
+ - const: fsl,lx2160a-secondary-anlt
+
+ reg:
+ minimum: 0
+ maximum: 31
+ description: |
+ The address of the AN/LT block within the internal MDIO bus of the MAC it
+ is attached to.
+
+ In the 1000Base-KX and 10GBase-KR link modes, the AN/LT block responds at
+ the same MDIO address as the PCS (determined by the SGMIInCR1[MDEV_PORT]
+ or SXGMIInCR1[MDEV_PORT] registers of the SerDes block, by default 0).
+ The PCS and AN/LT block respond to different MMDs, though.
+
+ In the 25GBase-KR and higher link modes, the AN/LT block responds at a
+ different MDIO address than the PCS, determined by the
+ ANLTnCR1[MDEV_PORT] register of the SerDes block. By default this is 4
+ for lanes A and E, 5 for lanes B and F, 6 for lanes C and G, 7 for lanes
+ D and H.
+
+ The PCS responds in all cases at the address determined by the MDEV_PORT
+ field of the SGMIInCR1, SXGMIIaCR1, E25GaCR1, E40GaCR1, E50GaCR1 or
+ E100GaCR1 registers of the SerDes block.
+
+ phys:
+ maxItems: 1
+ description:
+ phandle for the generic PHY (SerDes lane) that acts as PMA/PMD layer
+
+ pcs-handle:
+ maxItems: 1
+ description:
+ phandle for the technology-dependent PCS block corresponding to the
+ initial (RCW-based) configuration of the port. Must be omitted for the
+ link modes where the PCS and AN/LT block respond at the same MDIO
+ address. Must be specified otherwise.
+
+ secondary-anlt-handle:
+ maxItems: 1
+ description:
+ In case this is the primary (first) lane of a multi-lane link mode, this
+ property holds an array of phandles for the other AN/LT blocks, that are
+ involved in link training but not in auto-negotiation. These have the
+ "fsl,lx2160a-secondary-anlt" compatible string.
+
+required:
+ - compatible
+ - reg
+ - phys
+
+unevaluatedProperties: false
+
+examples:
+
+ # LX2160A lanes A, B, C, D with SerDes 1 protocol 19: dpmac2 uses 40GBase-KR4
+ - |
+ dpmac2 {
+ phy-handle = <&mac2_backplane_anlt>;
+ phy-connection-type = "internal";
+ };
+
+ pcs_mdio2 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "okay";
+
+ pcs2: ethernet-phy@0 {
+ reg = <0>;
+ };
+
+ mac2_backplane_anlt: ethernet-phy@7 {
+ compatible = "fsl,lx2160a-backplane-anlt",
+ "ethernet-phy-ieee802.3-c45";
+ reg = <7>; /* according to ANLTDCR1[MDEV_PORT] */
+ phys = <&serdes_1 3>; /* lane D */
+ max-speed = <40000>;
+ pcs-handle = <&pcs2>;
+ secondary-anlt-handle = <&mac2_lane2_anlt>, <&mac2_lane3_anlt>,
+ <&mac2_lane4_anlt>;
+ };
+
+ mac2_lane2_anlt: ethernet-backplane-anlt@6 {
+ compatible = "fsl,lx2160a-secondary-anlt";
+ reg = <6>; /* according to ANLTCCR1[MDEV_PORT] */
+ phys = <&serdes_1 2>; /* lane C */
+ };
+
+ mac2_lane3_anlt: ethernet-backplane-anlt@5 {
+ compatible = "fsl,lx2160a-secondary-anlt";
+ reg = <5>; /* according to ANLTBCR1[MDEV_PORT] */
+ phys = <&serdes_1 1>; /* lane B */
+ };
+
+ mac2_lane4_anlt: ethernet-backplane-anlt@4 {
+ compatible = "fsl,lx2160a-secondary-anlt";
+ reg = <4>; /* according to ANLTACR1[MDEV_PORT] */
+ phys = <&serdes_1 0>; /* lane A */
+ };
+ };
+
+ # LX2160A lane E with SerDes 1 protocol 19: dpmac6 uses 25GBase-KR
+ - |
+ dpmac6 {
+ phy-handle = <&mac6_backplane_anlt>;
+ phy-connection-type = "internal";
+ };
+
+ pcs_mdio6 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "okay";
+
+ pcs6: ethernet-phy@0 {
+ reg = <0>;
+ };
+
+ mac6_backplane_anlt: ethernet-phy@4 {
+ compatible = "fsl,lx2160a-backplane-anlt",
+ "ethernet-phy-ieee802.3-c45";
+ reg = <4>; /* according to ANLTFCR1[MDEV_PORT] */
+ phys = <&serdes_1 4>; /* lane E */
+ max-speed = <25000>;
+ pcs-handle = <&pcs6>;
+ };
+ };
+
+ # LX2160A lane F with SerDes 1 protocol 19: dpmac5 uses 25GBase-KR
+ - |
+ dpmac5 {
+ phy-handle = <&mac5_backplane_anlt>;
+ phy-connection-type = "internal";
+ };
+
+ pcs_mdio5 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "okay";
+
+ pcs5: ethernet-phy@0 {
+ reg = <0>;
+ };
+
+ mac5_backplane_anlt: ethernet-phy@5 {
+ compatible = "fsl,lx2160a-backplane-anlt",
+ "ethernet-phy-ieee802.3-c45";
+ reg = <5>; /* according to ANLTFCR1[MDEV_PORT] */
+ phys = <&serdes_1 5>; /* lane F */
+ max-speed = <25000>;
+ pcs-handle = <&pcs5>;
+ };
+ };
+
+ # LX2160A lane G with SerDes 1 protocol 19: dpmac4 uses 10GBase-KR
+ - |
+ dpmac4 {
+ phy-handle = <&mac4_backplane_anlt>;
+ phy-connection-type = "internal";
+ };
+
+ pcs_mdio4 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "okay";
+
+ mac4_backplane_anlt: ethernet-phy@0 {
+ compatible = "fsl,lx2160a-backplane-anlt",
+ "ethernet-phy-ieee802.3-c45";
+ reg = <0>; /* merged with PCS SXGMIIGCR1[MDEV_PORT] */
+ phys = <&serdes_1 7>; /* lane G */
+ max-speed = <10000>;
+ /* no pcs-handle to &pcs4 */
+ };
+ };
+
+ # LX2160A lane H with SerDes 1 protocol 19: dpmac3 uses 10GBase-KR
+ - |
+ dpmac3 {
+ phy-handle = <&mac3_backplane_anlt>;
+ phy-connection-type = "internal";
+ };
+
+ pcs_mdio3 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "okay";
+
+ mac3_backplane_anlt: ethernet-phy@0 {
+ compatible = "fsl,lx2160a-backplane-anlt",
+ "ethernet-phy-ieee802.3-c45";
+ reg = <0>; /* merged with PCS SXGMIIHCR1[MDEV_PORT] */
+ phys = <&serdes_1 7>; /* lane H */
+ max-speed = <10000>;
+ /* no pcs-handle to &pcs3 */
+ };
+ };
--
2.34.1
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
next prev parent reply other threads:[~2023-08-17 15:21 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-17 15:06 [RFC PATCH net-next 0/8] Add C72/C73 copper backplane support for LX2160 Vladimir Oltean
2023-08-17 15:06 ` [RFC PATCH net-next 1/8] phy: introduce the phy_check_cdr_lock() function Vladimir Oltean
2023-08-17 15:06 ` [RFC PATCH net-next 2/8] phy: introduce the PHY_MODE_ETHERNET_PHY mode for phy_set_mode_ext() Vladimir Oltean
2023-08-21 17:30 ` Sean Anderson
2023-08-21 18:13 ` Vladimir Oltean
2023-08-21 19:40 ` Sean Anderson
2023-08-21 18:14 ` Russell King (Oracle)
2023-08-21 18:15 ` Vladimir Oltean
2023-08-17 15:06 ` [RFC PATCH net-next 3/8] phy: xgkr: add configuration interface for copper backplane Ethernet PHYs Vladimir Oltean
2023-08-17 15:06 ` [RFC PATCH net-next 4/8] net: phy: add C73 base page helpers Vladimir Oltean
2023-08-17 15:06 ` [RFC PATCH net-next 5/8] net: phy: balance calls to ->suspend() and ->resume() Vladimir Oltean
2023-08-17 15:06 ` [RFC PATCH net-next 6/8] net: phy: initialize phydev->master_slave_set to MASTER_SLAVE_CFG_UNKNOWN Vladimir Oltean
2023-08-17 15:06 ` [RFC PATCH net-next 7/8] net: phy: mtip_backplane: add driver for MoreThanIP backplane AN/LT core Vladimir Oltean
2023-08-17 15:06 ` Vladimir Oltean [this message]
2023-08-21 19:58 ` [RFC PATCH net-next 8/8] dt-bindings: net: fsl,backplane-anlt: new binding document Rob Herring
2023-08-21 20:11 ` Vladimir Oltean
2023-08-21 20:20 ` Andrew Lunn
2023-08-21 20:34 ` Vladimir Oltean
2023-08-21 21:10 ` Andrew Lunn
2023-08-21 21:55 ` Vladimir Oltean
2023-08-22 14:10 ` Andrew Lunn
2023-09-06 14:02 ` Vladimir Oltean
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=20230817150644.3605105-9-vladimir.oltean@nxp.com \
--to=vladimir.oltean@nxp.com \
--cc=andrew@lunn.ch \
--cc=camelia.groza@nxp.com \
--cc=conor@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=f.fainelli@gmail.com \
--cc=hkallweit1@gmail.com \
--cc=ioana.ciornei@nxp.com \
--cc=kishon@kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=leoyang.li@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=madalin.bucur@nxp.com \
--cc=maxime.chevallier@bootlin.com \
--cc=netdev@vger.kernel.org \
--cc=rmk+kernel@armlinux.org.uk \
--cc=robh+dt@kernel.org \
--cc=sean.anderson@seco.com \
--cc=vkoul@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