You are not logged in.

#1 2012-07-22 13:10:31

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Intel HD 4000 (onboard video) does not wake up monitor

Just built a new system based on an Intel i7 that has integrated video.  I am using extra/xf86-video-intel.  When my monitor goes to sleep however, moving the mouse or typing on the keyboard does not wake it up anymore.  I have to CTRL+ALT+F1 which does wake it up.  Then I have to CTRL+ALT+F7 to get back to X.  Is this a known issue?

Last edited by graysky (2012-08-30 17:32:18)


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#2 2012-07-24 11:06:20

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Intel HD 4000 (onboard video) does not wake up monitor

This seems to be a function of the sna acceleration.  Switching to uxa seems to have solved it.  I'd like to keep using sna as it is noticeably quicker.  Suggestions are welcomed.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#3 2012-07-24 19:53:26

jakobcreutzfeldt
Member
Registered: 2011-05-12
Posts: 1,041

Re: Intel HD 4000 (onboard video) does not wake up monitor

I'm running Intel HD 4000 with sna acceleration but I can wake up my monitor just fine. Granted, this is a laptop and not a desktop, but I'm not sure how that would make a difference.

Anyway, I can't think of anything in particular that might be causing the problem but if you want to compare notes, feel free to ask for info on my setup.

Offline

#4 2012-08-10 12:13:45

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Intel HD 4000 (onboard video) does not wake up monitor

This is fixed in xf86-video-intel 2.20.3-1 currently in[testing].  Good job devs!

$ cat /etc/X11/xorg.conf.d/20-intel.conf 
Section "Device"
	Identifier	"iGPU"
	Driver	"Intel"
	Option	"AccelMethod"	"sna"
	#Option	"AccelMethod"	"uxa"
EndSection

CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#5 2012-08-11 09:40:57

kalithlev
Member
Registered: 2011-11-08
Posts: 5

Re: Intel HD 4000 (onboard video) does not wake up monitor

Thank you for the update graysky.

Offline

#6 2012-08-30 16:19:02

tazmanian
Member
Registered: 2009-10-25
Posts: 39

Re: Intel HD 4000 (onboard video) does not wake up monitor

I recentlly built a similar system (i7 with integrated Intel HD 4000), and I'm seeing the same behaviour that graysky reported. When my monitor goes to sleep, moving the mouse or typing on the keyboard does not wake it up. I have to CTRL+ALT+F1 which does wake it up. Then I have to CTRL+ALT+F7 to get back to X. This happens with SNA acceleration, but not with UXA. I'm running xf86-video-intel 2.20.5-1, which are the latest in [extra].

Is anyone else seeing this behaviour?

Offline

#7 2012-08-30 17:33:20

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Intel HD 4000 (onboard video) does not wake up monitor

Just unmarked as solved... Works fine for my user, but does this behavior when the wife logs in... Odd and definetly unsolved.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#8 2012-10-08 23:34:30

heimer16
Member
Registered: 2012-03-15
Posts: 20

Re: Intel HD 4000 (onboard video) does not wake up monitor

having the same issue here.  I've disabled screenblanking and energy saving settings as a patch to keep it from turning off in the meantime.
xset s off
xset -dpms

Offline

#9 2012-10-09 02:14:43

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,774

Re: Intel HD 4000 (onboard video) does not wake up monitor

graysky wrote:

Just unmarked as solved... Works fine for my user, but does this behavior when the wife logs in... Odd and definetly unsolved.

It is obviously a highly sensitive piece of equipment. tongue

I assume you have compared your groups to hers.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#10 2012-10-09 05:59:47

heimer16
Member
Registered: 2012-03-15
Posts: 20

Re: Intel HD 4000 (onboard video) does not wake up monitor

I got the same error message that was in the link:  [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
They seem to be aware of the issue at least.  Coincidentally my external monitors are both dell, and connecting through displayport.

http://comments.gmane.org/gmane.comp.fr … intel/5201

Offline

#11 2012-10-09 08:58:17

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Intel HD 4000 (onboard video) does not wake up monitor

ewaller wrote:
graysky wrote:

Just unmarked as solved... Works fine for my user, but does this behavior when the wife logs in... Odd and definetly unsolved.

It is obviously a highly sensitive piece of equipment. tongue

I assume you have compared your groups to hers.

A safe assumption.  Identical except mine is in the wheel group.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#12 2012-10-18 04:13:21

Super-Nathan
Member
Registered: 2012-05-19
Posts: 23
Website

Re: Intel HD 4000 (onboard video) does not wake up monitor

What I did was set grub to boot with GRUB_CMDLINE_LINUX_DEFAULT

acpi_backlight=vendor

and then I added this script to /etc/pm/sleep.d/restore_brightness

#!/bin/bash
case "$1" in
   suspend|hibernate)
      #do nothing
   ;;
   resume|thaw)
      echo 7 > /sys/class/backlight/toshiba/brightness
   ;;
   *)
      exit 1
   ;;
esac
exit 0

This is of course predicated on the condition you are using intel 4000 hd with a Toshiba laptop.

Offline

#13 2012-11-05 12:21:39

Stalafin
Member
From: Berlin, Germany
Registered: 2007-10-26
Posts: 617

Re: Intel HD 4000 (onboard video) does not wake up monitor

Are there any news regarding that wakeup issue with SNA? I have a similar problem using an Intel 5700MHD chip.

Offline

#14 2012-12-18 21:09:30

vootey
Member
From: Austria
Registered: 2010-08-02
Posts: 15

Re: Intel HD 4000 (onboard video) does not wake up monitor

Today I tried linux 3.6.11 and xf86-video-intel 2.20.16. No more problems with these.

Offline

Board footer

Powered by FluxBB