Re: [PATCH net-next v7 5/5] net: phy: microchip_t1 : Add initialization of ptp for lan887x
From: Jakub Kicinski
Date: Tue Dec 17 2024 - 22:13:51 EST
On Fri, 13 Dec 2024 17:44:03 +0530 Divya Koppera wrote:
> static int lan887x_phy_init(struct phy_device *phydev)
> {
> + struct lan887x_priv *priv = phydev->priv;
> int ret;
>
> + if (!priv->init_done && phy_interrupt_is_valid(phydev)) {
> + priv->clock = mchp_rds_ptp_probe(phydev, MDIO_MMD_VEND1,
> + MCHP_RDS_PTP_LTC_BASE_ADDR,
> + MCHP_RDS_PTP_PORT_BASE_ADDR);
> + if (IS_ERR(priv->clock))
> + return PTR_ERR(priv->clock);
> +
> + priv->init_done = true;
> + }
If this only has to happen once, why not call mchp_rds_ptp_probe() from
lan887x_probe() ? If there is some inherent reason the function needs
to be protected from multiple calls maybe it's better to let
mchp_rds_ptp_probe() handle that case ?