mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 09:04:39 +02:00
drm/msm/dp: call dp_display_get_next_bridge() during probe
The funcion dp_display_get_next_bridge() can return -EPROBE_DEFER if the next bridge is not (yet) available. However returning -EPROBE_DEFER from msm_dp_modeset_init() is not ideal. This leads to -EPROBE return from component_bind, which can easily result in -EPROBE_DEFR loops. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Tested-by: Konrad Dybcio <konrad.dybcio@linaro.org> # sc8180x-primus Reviewed-by: Bjorn Andersson <quic_bjorande@quicinc.com> Reviewed-by: Kuogee Hsieh <quic_khsieh@quicinc.com> Patchwork: https://patchwork.freedesktop.org/patch/566208/ Link: https://lore.kernel.org/r/20231107004424.2112698-1-dmitry.baryshkov@linaro.org
This commit is contained in:
parent
3313c23f3e
commit
d4ca26ac4b
|
|
@ -1210,15 +1210,27 @@ static const struct msm_dp_desc *dp_display_get_desc(struct platform_device *pde
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static int dp_display_get_next_bridge(struct msm_dp *dp);
|
||||
|
||||
static int dp_display_probe_tail(struct device *dev)
|
||||
{
|
||||
struct msm_dp *dp = dev_get_drvdata(dev);
|
||||
int ret;
|
||||
|
||||
ret = dp_display_get_next_bridge(dp);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = component_add(dev, &dp_display_comp_ops);
|
||||
if (ret)
|
||||
DRM_ERROR("component add failed, rc=%d\n", ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int dp_auxbus_done_probe(struct drm_dp_aux *aux)
|
||||
{
|
||||
int rc;
|
||||
|
||||
rc = component_add(aux->dev, &dp_display_comp_ops);
|
||||
if (rc)
|
||||
DRM_ERROR("eDP component add failed, rc=%d\n", rc);
|
||||
|
||||
return rc;
|
||||
return dp_display_probe_tail(aux->dev);
|
||||
}
|
||||
|
||||
static int dp_display_probe(struct platform_device *pdev)
|
||||
|
|
@ -1293,11 +1305,9 @@ static int dp_display_probe(struct platform_device *pdev)
|
|||
goto err;
|
||||
}
|
||||
} else {
|
||||
rc = component_add(&pdev->dev, &dp_display_comp_ops);
|
||||
if (rc) {
|
||||
DRM_ERROR("component add failed, rc=%d\n", rc);
|
||||
rc = dp_display_probe_tail(&pdev->dev);
|
||||
if (rc)
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
|
||||
return rc;
|
||||
|
|
@ -1428,7 +1438,7 @@ static int dp_display_get_next_bridge(struct msm_dp *dp)
|
|||
* For DisplayPort interfaces external bridges are optional, so
|
||||
* silently ignore an error if one is not present (-ENODEV).
|
||||
*/
|
||||
rc = devm_dp_parser_find_next_bridge(dp->drm_dev->dev, dp_priv->parser);
|
||||
rc = devm_dp_parser_find_next_bridge(&dp->pdev->dev, dp_priv->parser);
|
||||
if (!dp->is_edp && rc == -ENODEV)
|
||||
return 0;
|
||||
|
||||
|
|
@ -1448,10 +1458,6 @@ int msm_dp_modeset_init(struct msm_dp *dp_display, struct drm_device *dev,
|
|||
|
||||
dp_priv = container_of(dp_display, struct dp_display_private, dp_display);
|
||||
|
||||
ret = dp_display_get_next_bridge(dp_display);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = dp_bridge_init(dp_display, dev, encoder);
|
||||
if (ret) {
|
||||
DRM_DEV_ERROR(dev->dev,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user