mirror of https://gitee.com/openkylin/linux.git
drm/tegra: dp: Enable alternate scrambler reset when supported
If the sink is eDP and supports the alternate scrambler reset, enable it. Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
553769ff8d
commit
c4a2728852
|
@ -225,5 +225,12 @@ int drm_dp_link_configure(struct drm_dp_aux *aux, struct drm_dp_link *link)
|
|||
if (err < 0)
|
||||
return err;
|
||||
|
||||
if (link->caps.alternate_scrambler_reset) {
|
||||
err = drm_dp_dpcd_writeb(aux, DP_EDP_CONFIGURATION_SET,
|
||||
DP_ALTERNATE_SCRAMBLER_RESET_ENABLE);
|
||||
if (err < 0)
|
||||
return err;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue