aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2015-12-10 11:22:31 -0500
committerJani Nikula <jani.nikula@intel.com>2015-12-23 05:52:37 -0500
commitae35b56e367b9fef7f5de701cf8c1c3dd954dded (patch)
treef613a527ad7336d79149f9f1a888f7b55d7b2db0 /drivers
parenta98728e0bb978fbe9246c93ea89198de612c22e6 (diff)
drm/i915: Unbreak check_digital_port_conflicts()
Atomic changes broke check_digital_port_conflicts(). It needs to look at the global situation instead of just trying to find a conflict within the current atomic state. This bug made my HSW explode spectacularly after I had split the DDI encoders into separate DP and HDMI encoders. With the fix, things seem much more solid. I hope holding the connection_mutex is enough protection that we can actually walk the connectors even if they're not part of the current atomic state... v2: Regenerate the patch so that it actually applies (Jani) Cc: stable@vger.kernel.org Cc: Ander Conselvan de Oliveira <ander.conselvan.de.oliveira@intel.com> Fixes: 5448a00d3f06 ("drm/i915: Don't use staged config in check_digital_port_conflicts()") Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1449764551-12466-1-git-send-email-ville.syrjala@linux.intel.com (cherry picked from commit 0bff4858653312a10c83709e0009c3adb87e6f1e) Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/i915/intel_display.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index beb0374a19f1..32cf97346978 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -12123,18 +12123,22 @@ static void intel_dump_pipe_config(struct intel_crtc *crtc,
12123static bool check_digital_port_conflicts(struct drm_atomic_state *state) 12123static bool check_digital_port_conflicts(struct drm_atomic_state *state)
12124{ 12124{
12125 struct drm_device *dev = state->dev; 12125 struct drm_device *dev = state->dev;
12126 struct intel_encoder *encoder;
12127 struct drm_connector *connector; 12126 struct drm_connector *connector;
12128 struct drm_connector_state *connector_state;
12129 unsigned int used_ports = 0; 12127 unsigned int used_ports = 0;
12130 int i;
12131 12128
12132 /* 12129 /*
12133 * Walk the connector list instead of the encoder 12130 * Walk the connector list instead of the encoder
12134 * list to detect the problem on ddi platforms 12131 * list to detect the problem on ddi platforms
12135 * where there's just one encoder per digital port. 12132 * where there's just one encoder per digital port.
12136 */ 12133 */
12137 for_each_connector_in_state(state, connector, connector_state, i) { 12134 drm_for_each_connector(connector, dev) {
12135 struct drm_connector_state *connector_state;
12136 struct intel_encoder *encoder;
12137
12138 connector_state = drm_atomic_get_existing_connector_state(state, connector);
12139 if (!connector_state)
12140 connector_state = connector->state;
12141
12138 if (!connector_state->best_encoder) 12142 if (!connector_state->best_encoder)
12139 continue; 12143 continue;
12140 12144