Re: [PATCH 2/2] net: dsa: ksz8795: adjust CPU link to host interface

From: Andrew Lunn
Date: Sun Nov 29 2020 - 12:08:27 EST


On Sun, Nov 29, 2020 at 11:24:00AM +0100, Jean Pihet wrote:
> Add support for RGMII in 100 and 1000 Mbps.
>
> Adjust the CPU port based on the host interface settings: interface
> MII type, speed, duplex.

Please could you add some extra information here why this is needed. I
suspect you have back to back PHYs on the CPU port?

> +void ksz8795_adjust_link(struct dsa_switch *ds, int port,
> + struct phy_device *phydev)
> +{
> + struct ksz_device *dev = ds->priv;
> + struct ksz_port *p = &dev->ports[port];
> +
> + /* Adjust the link interface mode and speed for the CPU port */
> + if (port == dev->cpu_port)

dsa_is_cpu_port(ds, port)

Andrew