All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/display: Increase timeout for DP Aux channel ctl signal
@ 2019-03-15 18:39 Vanshidhar Konda
  2019-03-15 19:13 ` ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Vanshidhar Konda @ 2019-03-15 18:39 UTC (permalink / raw)
  To: intel-gfx

Extend the timeout for the hardware to signal SEND_BUSY on the DP
Aux Channel Controller register.

This is needed to address FDO #109982
https://bugzilla.freedesktop.org/show_bug.cgi?id=109982

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Signed-off-by: Vanshidhar Konda <vanshidhar.r.konda@intel.com>
---
 drivers/gpu/drm/i915/intel_dp.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index 47857f96c3b1..fd6de33c5664 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -1053,6 +1053,8 @@ intel_dp_check_edp(struct intel_dp *intel_dp)
 	}
 }
 
+#define DP_AUX_CH_CTL_SIGNAL_TIMEOUT_MS 15
+
 static u32
 intel_dp_aux_wait_done(struct intel_dp *intel_dp)
 {
@@ -1063,7 +1065,7 @@ intel_dp_aux_wait_done(struct intel_dp *intel_dp)
 
 #define C (((status = I915_READ_NOTRACE(ch_ctl)) & DP_AUX_CH_CTL_SEND_BUSY) == 0)
 	done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
-				  msecs_to_jiffies_timeout(10));
+				  msecs_to_jiffies_timeout(DP_AUX_CH_CTL_SIGNAL_TIMEOUT_MS));
 
 	/* just trace the final value */
 	trace_i915_reg_rw(false, ch_ctl, status, sizeof(status), true);
-- 
2.20.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-03-18 16:55 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-15 18:39 [PATCH] drm/i915/display: Increase timeout for DP Aux channel ctl signal Vanshidhar Konda
2019-03-15 19:13 ` ✓ Fi.CI.BAT: success for " Patchwork
2019-03-15 19:38 ` [PATCH] " Rodrigo Vivi
2019-03-15 20:27   ` Vanshidhar Konda
2019-03-15 21:31     ` Rodrigo Vivi
2019-03-15 21:39       ` Rodrigo Vivi
2019-03-15 21:43         ` Rodrigo Vivi
2019-03-15 23:05           ` Vanshidhar Konda
2019-03-18 16:56             ` Rodrigo Vivi
2019-03-15 23:05 ` ✓ Fi.CI.IGT: success for " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.