Message ID | 20210604140151.2885611-1-olteanv@gmail.com |
---|---|
Headers | show |
Series | Convert NXP SJA1105 DSA driver to YAML | expand |
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Fri, 4 Jun 2021 17:01:47 +0300 you wrote: > From: Vladimir Oltean <vladimir.oltean@nxp.com> > > This is an attempt to convert the SJA1105 driver to the YAML schema. > > The SJA1105 driver has some custom device tree properties which caused > validation problems in the previous attempt: > https://patchwork.kernel.org/project/netdevbpf/patch/20210531234735.1582031-1-olteanv@gmail.com/ > > [...] Here is the summary with links: - [v2,net-next,1/4] net: phy: introduce PHY_INTERFACE_MODE_REVRMII https://git.kernel.org/netdev/net-next/c/c858d436be8b - [v2,net-next,2/4] net: dsa: sja1105: apply RGMII delays based on the fixed-link property https://git.kernel.org/netdev/net-next/c/29afb83ac98e - [v2,net-next,3/4] net: dsa: sja1105: determine PHY/MAC role from PHY interface type https://git.kernel.org/netdev/net-next/c/5d645df99ac6 - [v2,net-next,4/4] dt-bindings: net: dsa: sja1105: convert to YAML schema https://git.kernel.org/netdev/net-next/c/62568bdbe6f6 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
From: Vladimir Oltean <vladimir.oltean@nxp.com> This is an attempt to convert the SJA1105 driver to the YAML schema. The SJA1105 driver has some custom device tree properties which caused validation problems in the previous attempt: https://patchwork.kernel.org/project/netdevbpf/patch/20210531234735.1582031-1-olteanv@gmail.com/ So now we are removing them, hoping that this will make the conversion easier to accept. In order to do that, we introduce a new PHY interface type, "reverse RMII", which is like "reverse MII" (aka MII as a PHY) but for the reduced data width version of the protocol. This is a direct replacement for an rmii fixed-link. Now, rmii fixed-link interfaces behave as a MAC, and rev-rmii fixed-link interfaces behave as a PHY. Vladimir Oltean (4): net: phy: introduce PHY_INTERFACE_MODE_REVRMII net: dsa: sja1105: apply RGMII delays based on the fixed-link property net: dsa: sja1105: determine PHY/MAC role from PHY interface type dt-bindings: net: dsa: sja1105: convert to YAML schema .../bindings/net/dsa/nxp,sja1105.yaml | 89 ++++++++++ .../devicetree/bindings/net/dsa/sja1105.txt | 156 ------------------ .../bindings/net/ethernet-controller.yaml | 1 + drivers/net/dsa/sja1105/sja1105.h | 1 + drivers/net/dsa/sja1105/sja1105_main.c | 92 ++++------- include/linux/phy.h | 4 + 6 files changed, 127 insertions(+), 216 deletions(-) create mode 100644 Documentation/devicetree/bindings/net/dsa/nxp,sja1105.yaml delete mode 100644 Documentation/devicetree/bindings/net/dsa/sja1105.txt