[Bug 1343543] Re: [Dell XPS 15 L502X] X stops responding to input after entering idle power saving (screen off)

2014-07-19 Thread Adam Skillen
I opened a bug ticket with the intel driver kernel developers:
https://bugs.freedesktop.org/show_bug.cgi?id=81537

** Bug watch added: freedesktop.org Bugzilla #81537
   https://bugs.freedesktop.org/show_bug.cgi?id=81537

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1343543

Title:
  [Dell XPS 15 L502X] X stops responding to input after entering idle
  power saving (screen off)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1343543/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1343543] Re: [Dell XPS 15 L502X] X stops responding to input after entering idle power saving (screen off)

2014-07-19 Thread Christopher M. Penalver
Adam Skillen, the issue you are reporting is an upstream one. Could you
please report this problem through the appropriate channel by following
the instructions _verbatim_ at
https://wiki.ubuntu.com/Bugs/Upstream/kernel ?

Please provide a direct URL to your e-mail to the mailing list once you
have made it so that it may be tracked.

Thank you for your understanding.

** Changed in: linux (Ubuntu)
   Status: Confirmed => Triaged

** Tags added: raring

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1343543

Title:
  [Dell XPS 15 L502X] X stops responding to input after entering idle
  power saving (screen off)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1343543/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1343543] Re: [Dell XPS 15 L502X] X stops responding to input after entering idle power saving (screen off)

2014-07-18 Thread Adam Skillen
I reverted the offending commit in the v3.16-rc5 branch and it seems to
fix the problem.

Specifically, in the file drivers/gpu/drm/i915/intel_dp.c 
near line 1902, under function :
static void intel_disable_dp(struct intel_encoder *encoder)

I changed line 1912 from:
intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
to:
intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);

And that seems to fix the problem.

How do I proceed from here?

** Tags removed: needs-bisect raring
** Tags added: bisect-done

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1343543

Title:
  [Dell XPS 15 L502X] X stops responding to input after entering idle
  power saving (screen off)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1343543/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1343543] Re: [Dell XPS 15 L502X] X stops responding to input after entering idle power saving (screen off)

2014-07-18 Thread Adam Skillen
I completed the bisect, here is the result:


$ git bisect bad fdbc3b1f639bb2cbfb32c612b2699e0ba373317d
fdbc3b1f639bb2cbfb32c612b2699e0ba373317d is the first bad commit


$ git show
commit fdbc3b1f639bb2cbfb32c612b2699e0ba373317d
Author: Jani Nikula 
Date:   Tue Nov 12 17:10:13 2013 +0200

drm/i915/dp: set sink to power down mode on dp disable

We used to put the local sink and any downstream sinks to power down
mode at disable or dpms off using the DPCD SET_POWER register, until
this was broken by

commit e8cb455876fa8f67c6aba394d0a14b697bf04cc3
Author: Daniel Vetter 
Date:   Sun Jul 1 13:05:48 2012 +0200

drm/i915/dp: convert to encoder disable/enable

Fix it.

Signed-off-by: Jani Nikula 
Reviewed-by: Todd Previte 
Signed-off-by: Daniel Vetter 

diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index eb8139d..0b2e842 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -1774,7 +1774,7 @@ static void intel_disable_dp(struct intel_encoder 
*encoder)
 * ensure that we have vdd while we switch off the panel. */
ironlake_edp_panel_vdd_on(intel_dp);
ironlake_edp_backlight_off(intel_dp);
-   intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
+   intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
ironlake_edp_panel_off(intel_dp);
 
/* cpu edp my only be disable _after_ the cpu pipe/plane is disabled. */


** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1343543

Title:
  [Dell XPS 15 L502X] X stops responding to input after entering idle
  power saving (screen off)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1343543/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs