phy: qcom: snps-femto-v2: assert reset in probe

The power on function for the phy only deasserts the reset, so the phy
might be in a weird state that we don't clean up properly.

Assert the reset in probe() so that when we power on we will have the
phy in a clean state.

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20251114144722.173021-2-casey.connolly@linaro.org
Signed-off-by: Casey Connolly <casey.connolly@linaro.org>
This commit is contained in:
Casey Connolly
2025-11-14 15:47:21 +01:00
parent 57a5305948
commit c9c61c1f4e

View File

@@ -174,7 +174,7 @@ static int qcom_snps_hsphy_phy_probe(struct udevice *dev)
return ret;
}
reset_deassert_bulk(&priv->resets);
reset_assert_bulk(&priv->resets);
return 0;
}