Skip to content

Commit 594cf78

Browse files
committed
drm/i915/dp_mst: Fix MST state after a sink reset
In some cases the sink can reset itself after it was configured into MST mode, without the driver noticing the disconnected state. For instance the reset may happen in the middle of a modeset, or the (long) HPD pulse generated may be not long enough for the encoder detect handler to observe the HPD's deasserted state. In this case the sink's DPCD register programmed to enable MST will be reset, while the driver still assumes MST is still enabled. Detect this condition, which will tear down and recreate/re-enable the MST topology. v2: - Add a code comment about adjusting the expected DP_MSTM_CTRL register value for SST + SideBand. (Suraj, Jani) - Print a debug message about detecting the link reset. (Jani) - Verify the DPCD MST state only if it wasn't already determined that the sink is disconnected. Cc: [email protected] Cc: Jani Nikula <[email protected]> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11195 Reviewed-by: Suraj Kandpal <[email protected]> (v1) Signed-off-by: Imre Deak <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 4836c6c commit 594cf78

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

drivers/gpu/drm/i915/display/intel_dp.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5999,6 +5999,18 @@ intel_dp_detect(struct drm_connector *connector,
59995999
else
60006000
status = connector_status_disconnected;
60016001

6002+
if (status != connector_status_disconnected &&
6003+
!intel_dp_mst_verify_dpcd_state(intel_dp))
6004+
/*
6005+
* This requires retrying detection for instance to re-enable
6006+
* the MST mode that got reset via a long HPD pulse. The retry
6007+
* will happen either via the hotplug handler's retry logic,
6008+
* ensured by setting the connector here to SST/disconnected,
6009+
* or via a userspace connector probing in response to the
6010+
* hotplug uevent sent when removing the MST connectors.
6011+
*/
6012+
status = connector_status_disconnected;
6013+
60026014
if (status == connector_status_disconnected) {
60036015
memset(&intel_dp->compliance, 0, sizeof(intel_dp->compliance));
60046016
memset(intel_connector->dp.dsc_dpcd, 0, sizeof(intel_connector->dp.dsc_dpcd));

drivers/gpu/drm/i915/display/intel_dp_mst.c

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2062,3 +2062,43 @@ void intel_dp_mst_prepare_probe(struct intel_dp *intel_dp)
20622062

20632063
intel_mst_set_probed_link_params(intel_dp, link_rate, lane_count);
20642064
}
2065+
2066+
/*
2067+
* intel_dp_mst_verify_dpcd_state - verify the MST SW enabled state wrt. the DPCD
2068+
* @intel_dp: DP port object
2069+
*
2070+
* Verify if @intel_dp's MST enabled SW state matches the corresponding DPCD
2071+
* state. A long HPD pulse - not long enough to be detected as a disconnected
2072+
* state - could've reset the DPCD state, which requires tearing
2073+
* down/recreating the MST topology.
2074+
*
2075+
* Returns %true if the SW MST enabled and DPCD states match, %false
2076+
* otherwise.
2077+
*/
2078+
bool intel_dp_mst_verify_dpcd_state(struct intel_dp *intel_dp)
2079+
{
2080+
struct intel_display *display = to_intel_display(intel_dp);
2081+
struct intel_connector *connector = intel_dp->attached_connector;
2082+
struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2083+
struct intel_encoder *encoder = &dig_port->base;
2084+
int ret;
2085+
u8 val;
2086+
2087+
if (!intel_dp->is_mst)
2088+
return true;
2089+
2090+
ret = drm_dp_dpcd_readb(intel_dp->mst_mgr.aux, DP_MSTM_CTRL, &val);
2091+
2092+
/* Adjust the expected register value for SST + SideBand. */
2093+
if (ret < 0 || val != (DP_MST_EN | DP_UP_REQ_EN | DP_UPSTREAM_IS_SRC)) {
2094+
drm_dbg_kms(display->drm,
2095+
"[CONNECTOR:%d:%s][ENCODER:%d:%s] MST mode got reset, removing topology (ret=%d, ctrl=0x%02x)\n",
2096+
connector->base.base.id, connector->base.name,
2097+
encoder->base.base.id, encoder->base.name,
2098+
ret, val);
2099+
2100+
return false;
2101+
}
2102+
2103+
return true;
2104+
}

drivers/gpu/drm/i915/display/intel_dp_mst.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@ int intel_dp_mst_atomic_check_link(struct intel_atomic_state *state,
2828
bool intel_dp_mst_crtc_needs_modeset(struct intel_atomic_state *state,
2929
struct intel_crtc *crtc);
3030
void intel_dp_mst_prepare_probe(struct intel_dp *intel_dp);
31+
bool intel_dp_mst_verify_dpcd_state(struct intel_dp *intel_dp);
3132

3233
#endif /* __INTEL_DP_MST_H__ */

0 commit comments

Comments
 (0)