From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com ([209.132.183.28]:35882 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933073AbcKJWSx (ORCPT ); Thu, 10 Nov 2016 17:18:53 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 9DAED4E4F6 for ; Thu, 10 Nov 2016 22:18:52 +0000 (UTC) Message-ID: <1478816331.21919.1.camel@redhat.com> Subject: Re: [PATCH] drm/i915: Refresh that status of MST capable connectors in ->detect() From: Lyude Paul To: stable@vger.kernel.org Cc: Justin Forbes , Hans de Goede Date: Thu, 10 Nov 2016 17:18:51 -0500 In-Reply-To: <1478812707-26985-1-git-send-email-lyude@redhat.com> References: <1478812707-26985-1-git-send-email-lyude@redhat.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: whoops, didn't realize this wasn't in linus's branch. Feel free to ignore for now greg On Thu, 2016-11-10 at 16:18 -0500, Lyude wrote: > From: Ville Syrjälä > > Commit 1aab956c7b8872fb6976328316bfad62c6e67cf8 upstream. > > Once we've determined that the sink is MST capable we never end up > running through the full detect cycle again, despite getting HPDs. > Fix tht by ripping out the incorrect piece of code responsible. > > This got broken when I moved the long HPD handling to the ->detect() > hook, but failed to remove the leftover code. > > Cc: Ander Conselvan de Oliveira > Cc: drm-intel-fixes@lists.freedesktop.org > Cc: Rui Tiago Matos > Tested-by: Rui Tiago Matos > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=98323 > Cc: Kirill A. Shutemov > Tested-by: Kirill A. Shutemov > References: https://bugs.freedesktop.org/show_bug.cgi?id=98306 > Fixes: 27d4efc5591a ("drm/i915: Move long hpd handling into the > hotplug work") > Signed-off-by: Ville Syrjälä > Link: http://patchwork.freedesktop.org/patch/msgid/1477057478-29328-1 > -git-send-email-ville.syrjala@linux.intel.com > Reviewed-by: Chris Wilson > --- >  drivers/gpu/drm/i915/intel_dp.c | 10 ---------- >  1 file changed, 10 deletions(-) > > diff --git a/drivers/gpu/drm/i915/intel_dp.c > b/drivers/gpu/drm/i915/intel_dp.c > index 3051182..b8aeb28 100644 > --- a/drivers/gpu/drm/i915/intel_dp.c > +++ b/drivers/gpu/drm/i915/intel_dp.c > @@ -4323,21 +4323,11 @@ static enum drm_connector_status >  intel_dp_detect(struct drm_connector *connector, bool force) >  { >   struct intel_dp *intel_dp = intel_attached_dp(connector); > - struct intel_digital_port *intel_dig_port = > dp_to_dig_port(intel_dp); > - struct intel_encoder *intel_encoder = &intel_dig_port->base; >   enum drm_connector_status status = connector->status; >   >   DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", >         connector->base.id, connector->name); >   > - if (intel_dp->is_mst) { > - /* MST devices are disconnected from a monitor POV > */ > - intel_dp_unset_edid(intel_dp); > - if (intel_encoder->type != INTEL_OUTPUT_EDP) > - intel_encoder->type = INTEL_OUTPUT_DP; > - return connector_status_disconnected; > - } > - >   /* If full detect is not performed yet, do a full detect */ >   if (!intel_dp->detect_done) >   status = intel_dp_long_pulse(intel_dp- > >attached_connector);