mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 02:21:47 +00:00
drm/radeon: Don't turn off DP sink when disconnected
Turning off the sink in this case causes various issues, because userspace expects it to stay on until it turns it off explicitly. Instead, turn the sink off and back on when a display is connected again. This dance seems necessary for link training to work correctly. Bugzilla: https://bugs.freedesktop.org/105308 Cc: stable@vger.kernel.org Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Michel Dänzer <michel.daenzer@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
67f1976665
commit
2681bc79ee
@ -90,25 +90,18 @@ void radeon_connector_hotplug(struct drm_connector *connector)
|
|||||||
/* don't do anything if sink is not display port, i.e.,
|
/* don't do anything if sink is not display port, i.e.,
|
||||||
* passive dp->(dvi|hdmi) adaptor
|
* passive dp->(dvi|hdmi) adaptor
|
||||||
*/
|
*/
|
||||||
if (dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT) {
|
if (dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT &&
|
||||||
int saved_dpms = connector->dpms;
|
radeon_hpd_sense(rdev, radeon_connector->hpd.hpd) &&
|
||||||
/* Only turn off the display if it's physically disconnected */
|
radeon_dp_needs_link_train(radeon_connector)) {
|
||||||
if (!radeon_hpd_sense(rdev, radeon_connector->hpd.hpd)) {
|
/* Don't start link training before we have the DPCD */
|
||||||
drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
|
if (!radeon_dp_getdpcd(radeon_connector))
|
||||||
} else if (radeon_dp_needs_link_train(radeon_connector)) {
|
return;
|
||||||
/* Don't try to start link training before we
|
|
||||||
* have the dpcd */
|
|
||||||
if (!radeon_dp_getdpcd(radeon_connector))
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* set it to OFF so that drm_helper_connector_dpms()
|
/* Turn the connector off and back on immediately, which
|
||||||
* won't return immediately since the current state
|
* will trigger link training
|
||||||
* is ON at this point.
|
*/
|
||||||
*/
|
drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
|
||||||
connector->dpms = DRM_MODE_DPMS_OFF;
|
drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
|
||||||
drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
|
|
||||||
}
|
|
||||||
connector->dpms = saved_dpms;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user