Hi, I dropped the following patch for 2.6.35 longterm because the intel_ironlake_crt_detect_hotplug code looks quite different. If you think it should be applied to 2.6.35 too please resubmit with the dependencies needed for that.
Thanks, -Andi >From 1510a97182b4ddb5fe3c4e8d05240f7cd6fd13e7 Mon Sep 17 00:00:00 2001 From: Yuanhan Liu <[email protected]> Date: Fri, 8 Oct 2010 10:18:01 +0100 Subject: drm/i915/crt: Make sure the hotplug interrupt is enabled From: Yuanhan Liu <[email protected]> commit 1510a97182b4ddb5fe3c4e8d05240f7cd6fd13e7 upstream. After disabling the hotplug interrupts for VGA detection on Ironlake, be sure to re-enable them again afterwards. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=30378 Signed-off-by: Yuanhan Liu <[email protected]> Signed-off-by: Chris Wilson <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> --- drivers/gpu/drm/i915/intel_crt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/gpu/drm/i915/intel_crt.c +++ b/drivers/gpu/drm/i915/intel_crt.c @@ -191,7 +191,8 @@ static bool intel_ironlake_crt_detect_ho DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER"); if (turn_off_dac) { - I915_WRITE(PCH_ADPA, temp); + /* Make sure hotplug is enabled */ + I915_WRITE(PCH_ADPA, temp | ADPA_CRT_HOTPLUG_ENABLE); (void)I915_READ(PCH_ADPA); } -- [email protected] -- Speaking for myself only. _______________________________________________ stable mailing list [email protected] http://linux.kernel.org/mailman/listinfo/stable
