netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next] dt-bindings: net: renesas,ethertsn: Create child-node for MDIO bus
@ 2024-03-11 14:35 Niklas Söderlund
  2024-03-12  4:29 ` Jakub Kicinski
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Niklas Söderlund @ 2024-03-11 14:35 UTC (permalink / raw)
  To: Sergey Shtylyov, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Geert Uytterhoeven, netdev, devicetree
  Cc: linux-renesas-soc, Niklas Söderlund

The design for this driver followed that of other Renesas Ethernet
drivers and thus did not force a child-node for the MDIO bus. As there
are no upstream drivers or users of this binding yet take the
opportunity to correct this and force the usage of a child-node for the
MDIO bus.

Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
---
Hello,

Learn from the mistake made with the Renesas AVB bindings being worked
on in [1] where no mdio node was used to describe the MDIO bus and the
PHY was added directly as a child node to the AVB node.

The Ethernet TSN driver is still in review and have not been merged and
no usage of the bindings merged either. So while this breaks the binding
it effects no one so we can correct this mistake without breaking any
use-cases before we need to support any backward compatibility.

1. https://patchwork.kernel.org/project/netdevbpf/list/?series=834331
---
 .../bindings/net/renesas,ethertsn.yaml        | 33 ++++++++-----------
 1 file changed, 14 insertions(+), 19 deletions(-)

diff --git a/Documentation/devicetree/bindings/net/renesas,ethertsn.yaml b/Documentation/devicetree/bindings/net/renesas,ethertsn.yaml
index ea35d19be829..0a88f4acc3f6 100644
--- a/Documentation/devicetree/bindings/net/renesas,ethertsn.yaml
+++ b/Documentation/devicetree/bindings/net/renesas,ethertsn.yaml
@@ -71,16 +71,8 @@ properties:
     enum: [0, 2000]
     default: 0
 
-  '#address-cells':
-    const: 1
-
-  '#size-cells':
-    const: 0
-
-patternProperties:
-  "^ethernet-phy@[0-9a-f]$":
-    type: object
-    $ref: ethernet-phy.yaml#
+  mdio:
+    $ref: /schemas/net/mdio.yaml#
     unevaluatedProperties: false
 
 required:
@@ -94,8 +86,7 @@ required:
   - resets
   - phy-mode
   - phy-handle
-  - '#address-cells'
-  - '#size-cells'
+  - mdio
 
 additionalProperties: false
 
@@ -122,14 +113,18 @@ examples:
         tx-internal-delay-ps = <2000>;
         phy-handle = <&phy3>;
 
-        #address-cells = <1>;
-        #size-cells = <0>;
+        mdio {
+            #address-cells = <1>;
+            #size-cells = <0>;
 
-        phy3: ethernet-phy@3 {
-            compatible = "ethernet-phy-ieee802.3-c45";
-            reg = <0>;
-            interrupt-parent = <&gpio4>;
-            interrupts = <3 IRQ_TYPE_LEVEL_LOW>;
             reset-gpios = <&gpio1 23 GPIO_ACTIVE_LOW>;
+            reset-post-delay-us = <4000>;
+
+            phy3: ethernet-phy@3 {
+                compatible = "ethernet-phy-ieee802.3-c45";
+                reg = <0>;
+                interrupt-parent = <&gpio4>;
+                interrupts = <3 IRQ_TYPE_LEVEL_LOW>;
+            };
         };
     };
-- 
2.44.0


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

* Re: [net-next] dt-bindings: net: renesas,ethertsn: Create child-node for MDIO bus
  2024-03-11 14:35 [net-next] dt-bindings: net: renesas,ethertsn: Create child-node for MDIO bus Niklas Söderlund
@ 2024-03-12  4:29 ` Jakub Kicinski
  2024-03-12 14:27 ` Rob Herring
  2024-03-12 22:09 ` Andrew Lunn
  2 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2024-03-12  4:29 UTC (permalink / raw)
  To: Niklas Söderlund
  Cc: Sergey Shtylyov, David S. Miller, Eric Dumazet, Paolo Abeni,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Geert Uytterhoeven, netdev, devicetree, linux-renesas-soc

On Mon, 11 Mar 2024 15:35:07 +0100 Niklas Söderlund wrote:
> The design for this driver followed that of other Renesas Ethernet
> drivers and thus did not force a child-node for the MDIO bus. As there
> are no upstream drivers or users of this binding yet take the
> opportunity to correct this and force the usage of a child-node for the
> MDIO bus.

## Form letter - net-next-closed

The merge window for v6.9 has begun and we have already posted our pull
request. Therefore net-next is closed for new drivers, features, code
refactoring and optimizations. We are currently accepting bug fixes only.

Please repost when net-next reopens after March 25th.

RFC patches sent for review only are obviously welcome at any time.

See: https://www.kernel.org/doc/html/next/process/maintainer-netdev.html#development-cycle
-- 
pw-bot: defer

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

* Re: [net-next] dt-bindings: net: renesas,ethertsn: Create child-node for MDIO bus
  2024-03-11 14:35 [net-next] dt-bindings: net: renesas,ethertsn: Create child-node for MDIO bus Niklas Söderlund
  2024-03-12  4:29 ` Jakub Kicinski
@ 2024-03-12 14:27 ` Rob Herring
  2024-03-12 22:09 ` Andrew Lunn
  2 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2024-03-12 14:27 UTC (permalink / raw)
  To: Niklas Söderlund
  Cc: Paolo Abeni, linux-renesas-soc, devicetree, Sergey Shtylyov,
	Conor Dooley, David S. Miller, Jakub Kicinski, netdev,
	Krzysztof Kozlowski, Eric Dumazet, Geert Uytterhoeven


On Mon, 11 Mar 2024 15:35:07 +0100, Niklas Söderlund wrote:
> The design for this driver followed that of other Renesas Ethernet
> drivers and thus did not force a child-node for the MDIO bus. As there
> are no upstream drivers or users of this binding yet take the
> opportunity to correct this and force the usage of a child-node for the
> MDIO bus.
> 
> Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> ---
> Hello,
> 
> Learn from the mistake made with the Renesas AVB bindings being worked
> on in [1] where no mdio node was used to describe the MDIO bus and the
> PHY was added directly as a child node to the AVB node.
> 
> The Ethernet TSN driver is still in review and have not been merged and
> no usage of the bindings merged either. So while this breaks the binding
> it effects no one so we can correct this mistake without breaking any
> use-cases before we need to support any backward compatibility.
> 
> 1. https://patchwork.kernel.org/project/netdevbpf/list/?series=834331
> ---
>  .../bindings/net/renesas,ethertsn.yaml        | 33 ++++++++-----------
>  1 file changed, 14 insertions(+), 19 deletions(-)
> 

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


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

* Re: [net-next] dt-bindings: net: renesas,ethertsn: Create child-node for MDIO bus
  2024-03-11 14:35 [net-next] dt-bindings: net: renesas,ethertsn: Create child-node for MDIO bus Niklas Söderlund
  2024-03-12  4:29 ` Jakub Kicinski
  2024-03-12 14:27 ` Rob Herring
@ 2024-03-12 22:09 ` Andrew Lunn
  2 siblings, 0 replies; 4+ messages in thread
From: Andrew Lunn @ 2024-03-12 22:09 UTC (permalink / raw)
  To: Niklas Söderlund
  Cc: Sergey Shtylyov, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Geert Uytterhoeven, netdev, devicetree, linux-renesas-soc

On Mon, Mar 11, 2024 at 03:35:07PM +0100, Niklas Söderlund wrote:
> The design for this driver followed that of other Renesas Ethernet
> drivers and thus did not force a child-node for the MDIO bus. As there
> are no upstream drivers or users of this binding yet take the
> opportunity to correct this and force the usage of a child-node for the
> MDIO bus.

Could you expand on the history. When was renesas,ethertsn.yaml added
and via which tree? Is this currently only in net-next and just sent
to Linus as part of this merge window? Or has it been around longer?

   Andrew

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

end of thread, other threads:[~2024-03-12 22:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-11 14:35 [net-next] dt-bindings: net: renesas,ethertsn: Create child-node for MDIO bus Niklas Söderlund
2024-03-12  4:29 ` Jakub Kicinski
2024-03-12 14:27 ` Rob Herring
2024-03-12 22:09 ` Andrew Lunn

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