Re: [PATCH v6 net-next 09/14] net: phy: marvell-88q2xxx: add cable test support

From: Andrew Lunn
Date: Wed Feb 14 2024 - 12:55:04 EST


> +static int mv88q222x_cable_test_get_status(struct phy_device *phydev,
> + bool *finished)
> +{
> + int ret;
> + u32 dist;
> +
> + ret = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_MMD_PCS_MV_TDR_STATUS);
> + if (ret < 0)
> + return ret;
> +
> + *finished = true;

That looks odd. Is there no status bit which says it has completed? Is
it guaranteed to complete within a fixed time? How is it guaranteed that
mv88q222x_cable_test_get_status() is called at the necessary delay after
mv88q222x_cable_test_start()?

Andrew