phy/rockchip: samsung-hdptx: Increase the phy_rdy timeout to 5ms

We got issue as follows:
[   27.276379] rockchip-hdptx-phy fed60000.phy: timeout waiting for phy_rdy
[   27.276502] rockchip-hdptx-phy fed60000.phy: failed to set lanes: -110
[   27.276537] rockchip-dp fdec0000.edp: analogix_dp_set_lane_count: phy_configure() failed: -110

Signed-off-by: Wyon Bi <bivvy.bi@rock-chips.com>
Change-Id: I872e721ba70c3dcec290b4dbd4263eba40abd359
This commit is contained in:
Wyon Bi
2022-08-31 01:00:19 +00:00
committed by Tao Huang
parent 28bf3a52e4
commit 996e337caf

View File

@@ -638,7 +638,7 @@ static int rockchip_hdptx_phy_set_lanes(struct rockchip_hdptx_phy *hdptx,
ret = regmap_read_poll_timeout(hdptx->grf, HDPTXPHY_GRF_STATUS0,
status, FIELD_GET(PHY_RDY, status),
50, 1000);
50, 5000);
if (ret) {
dev_err(hdptx->dev, "timeout waiting for phy_rdy\n");
return ret;