Re: [PATCH] net: ti: am65-cpsw-nuss: invoke phy_config() in driver's .start callback

2025-04-28 Thread Tom Rini
On Wed, 16 Apr 2025 18:26:43 +0530, Siddharth Vadapalli wrote: > Currently, the phy_config() API is invoked by the driver only once since it > has been probed. While this works in general, it doesn't allow the driver > to bring the PHY back to its default reset state. As a result, the driver > mig

[PATCH] net: ti: am65-cpsw-nuss: invoke phy_config() in driver's .start callback

2025-04-16 Thread Siddharth Vadapalli
Currently, the phy_config() API is invoked by the driver only once since it has been probed. While this works in general, it doesn't allow the driver to bring the PHY back to its default reset state. As a result, the driver might not be able to recover the PHY from a bad state. To address this, mov