Re: [RFC PATCH] net: phy/mdio: enable mmd indirect access through phy_mii_ioctl()

From: Russell King (Oracle)
Date: Mon Nov 01 2021 - 15:54:16 EST


On Mon, Nov 01, 2021 at 08:33:50PM +0100, Andrew Lunn wrote:
> On Mon, Nov 01, 2021 at 08:28:59PM +0200, Grygorii Strashko wrote:
> > This patch enables access to C22 PHY MMD address space through
>
> I'm not sure the terminology is correct here. I think it actually
> enables access to C45 address space, making use of C45 over C22.

I agree.

> > phy_mii_ioctl() SIOCGMIIREG/SIOCSMIIREG IOCTLs. It checks if R/W request is
> > received with C45 flag enabled while MDIO bus doesn't support C45 and, in
> > this case, tries to treat prtad as PHY MMD selector and use MMD API.
> >
> > With this change it's possible to r/w PHY MMD registers with phytool, for
> > example, before:
> >
> > phytool read eth0/0x1f:0/0x32
> > 0xffea
> >
> > after:
> > phytool read eth0/0x1f:0/0x32
> > 0x00d1
> > @@ -300,8 +300,19 @@ int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd)
> > prtad = mii_data->phy_id;
> > devad = mii_data->reg_num;
> > }
> > - mii_data->val_out = mdiobus_read(phydev->mdio.bus, prtad,
> > - devad);
> > + if (mdio_phy_id_is_c45(mii_data->phy_id) &&
> > + phydev->mdio.bus->probe_capabilities <= MDIOBUS_C22) {
> > + phy_lock_mdio_bus(phydev);
> > +
> > + mii_data->val_out = __mmd_phy_read(phydev->mdio.bus,
> > + mdio_phy_id_devad(mii_data->phy_id),
> > + prtad,
> > + mii_data->reg_num);
> > +
> > + phy_unlock_mdio_bus(phydev);
> > + } else {
> > + mii_data->val_out = mdiobus_read(phydev->mdio.bus, prtad, devad);
> > + }
>
> The layering look wrong here. You are trying to perform MDIO bus
> operation here, so it seems odd to perform __mmd_phy_read(). I wonder
> if it would be cleaner to move C45 over C22 down into the mdiobus_
> level API?

The use of the indirect registers is specific to PHYs, and we already
know that various PHYs don't support indirect access, and some emulate
access to the EEE registers - both of which are handled at the PHY
driver level. Pushing indirect MMD access down into the MDIO bus layer
means we need to have some way to deal with that.

Alternatively, if we're just thinking about moving, e.g.:

if (phydev->is_c45) {
val = __mdiobus_c45_read(phydev->mdio.bus, phydev->mdio.addr,
devad, regnum);
} else {
struct mii_bus *bus = phydev->mdio.bus;
int phy_addr = phydev->mdio.addr;

mmd_phy_indirect(bus, phy_addr, devad, regnum);

/* Read the content of the MMD's selected register */
val = __mdiobus_read(bus, phy_addr, MII_MMD_DATA);
}

We would need to have some way to deal with that "is_c45" flag at
mdio device level (maybe moving it to the mdio_device structure).
Still doesn't help the "phy driver emulates the accesses" problem
though.

--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!