On Tue, Apr 15, 2025 at 12:18:02PM +0200, Matthias Schiffer wrote: > k3-am65-cpsw-nuss controllers have a fixed internal TX delay, so RXID > mode is not actually possible and will result in a warning from the > driver going forward. > > Signed-off-by: Matthias Schiffer <matthias.schiffer@xxxxxxxxxxxxxxx> > --- > .../devicetree/bindings/net/ti,k3-am654-cpsw-nuss.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/net/ti,k3-am654-cpsw-nuss.yaml b/Documentation/devicetree/bindings/net/ti,k3-am654-cpsw-nuss.yaml > index b11894fbaec47..c8128b8ca74fb 100644 > --- a/Documentation/devicetree/bindings/net/ti,k3-am654-cpsw-nuss.yaml > +++ b/Documentation/devicetree/bindings/net/ti,k3-am654-cpsw-nuss.yaml > @@ -282,7 +282,7 @@ examples: > ti,syscon-efuse = <&mcu_conf 0x200>; > phys = <&phy_gmii_sel 1>; > > - phy-mode = "rgmii-rxid"; > + phy-mode = "rgmii-id"; It would be good to enforce the phy-modes which are valid, which i think are: case PHY_INTERFACE_MODE_RGMII_ID: case PHY_INTERFACE_MODE_RGMII_TXID: case PHY_INTERFACE_MODE_RMII: case PHY_INTERFACE_MODE_QSGMII: case PHY_INTERFACE_MODE_SGMII: case PHY_INTERFACE_MODE_USXGMII: Anyway, this can be a follow up patch, it should not block this patchset. Reviewed-by: Andrew Lunn <andrew@xxxxxxx> Andrew