Message ID | 20180405095000.9756-8-enric.balletbo@collabora.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi, [This is an automated email] This commit has been processed by the -stable helper bot and determined to be a high probability candidate for -stable trees. (score: 15.6725) The bot has tested the following trees: v4.16, v4.15.15, v4.14.32, v4.9.92, v4.4.126. v4.16: Failed to apply! Possible dependencies: 715600a4c96e ("drm/bridge: analogix_dp: Retry bridge enable when it failed") v4.15.15: Failed to apply! Possible dependencies: 715600a4c96e ("drm/bridge: analogix_dp: Retry bridge enable when it failed") v4.14.32: Failed to apply! Possible dependencies: 715600a4c96e ("drm/bridge: analogix_dp: Retry bridge enable when it failed") v4.9.92: Failed to apply! Possible dependencies: 715600a4c96e ("drm/bridge: analogix_dp: Retry bridge enable when it failed") v4.4.126: Failed to apply! Possible dependencies: 3424e3a4f844 ("drm: bridge: analogix/dp: split exynos dp driver to bridge directory") 715600a4c96e ("drm/bridge: analogix_dp: Retry bridge enable when it failed") Please let us know if you'd like to have this patch included in a stable tree. -- Thanks, Sasha
diff --git a/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c b/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c index 3269deec739d..5957e2338071 100644 --- a/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c +++ b/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c @@ -1160,6 +1160,12 @@ static int analogix_dp_set_bridge(struct analogix_dp_device *dp) pm_runtime_get_sync(dp->dev); + ret = clk_prepare_enable(dp->clock); + if (ret < 0) { + DRM_ERROR("Failed to prepare_enable the clock clk [%d]\n", ret); + goto out_dp_clk_pre; + } + if (dp->plat_data->power_on) dp->plat_data->power_on(dp->plat_data); @@ -1191,6 +1197,8 @@ static int analogix_dp_set_bridge(struct analogix_dp_device *dp) phy_power_off(dp->phy); if (dp->plat_data->power_off) dp->plat_data->power_off(dp->plat_data); + clk_disable_unprepare(dp->clock); +out_dp_clk_pre: pm_runtime_put_sync(dp->dev); return ret; @@ -1233,11 +1241,14 @@ static void analogix_dp_bridge_disable(struct drm_bridge *bridge) } disable_irq(dp->irq); + analogix_dp_set_analog_power_down(dp, POWER_ALL, 1); phy_power_off(dp->phy); if (dp->plat_data->power_off) dp->plat_data->power_off(dp->plat_data); + clk_disable_unprepare(dp->clock); + pm_runtime_put_sync(dp->dev); ret = analogix_dp_prepare_panel(dp, false, true);