suspend/resume problem

Hi.
The resume feature works well, just type in a terminal:
Code:
acpiconf -s 3
and the PC go to sleep.
But when I press the power button to wake up it then seems to go fine, but nothing appears in the screen, it's completely black.
What happen?

Thanks in advance
 
I seem to have this problem with my laptop (Lenovo Thinkpad T500) but only when I'm in a console. If I'm using xorg when I suspend it, then the screen properly turns back on on resume.
 
could you guys please provide more info about your hardware?
knowing what video card vendor-model you guys have on your notebooks would probably come in handy.
knowing what video modules are you using in too (with and without xorg)..
 
gnemmi said:
could you guys please provide more info about your hardware?
knowing what video card vendor-model you guys have on your notebooks would probably come in handy.
knowing what video modules are you using in too (with and without xorg)..

I have a pc with mother ASUS P5PE-VM
and integrated graphics chipset i865g
 
can you tell me what video driver are you using in your xorg.conf (in case you are using xorg) and what video driver are you loading through your /boot/loader.conf (in case you are loading one)?
 
gnemmi said:
can you tell me what video driver are you using in your xorg.conf (in case you are using xorg) and what video driver are you loading through your /boot/loader.conf (in case you are loading one)?

I'm not have xorg.conf now (but I'm using xorg) cause xorg autodetect my graphics card and monitor (xorg.conf not exist and never created it), but in a previous installation of freebsd I was using xorg.conf (cause I have to edit it to run compiz) and the config was: View attachment my_xorg.conf.txt.
I'm not using that xorg.conf now, but may be could help.

The pertinent section (i think) is:
Code:
Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"            	# [<bool>]
        #Option     "SWcursor"           	# [<bool>]
        #Option     "ColorKey"           	# <i>
        #Option     "CacheLines"         	# <i>
        #Option     "Dac6Bit"            	# [<bool>]
        #Option     "DRI"                	# [<bool>]
        #Option     "NoDDC"              	# [<bool>]
        #Option     "ShowCache"          	# [<bool>]
        #Option     "XvMCSurfaces"       	# <i>
        #Option     "PageFlip"           	# [<bool>]
	Identifier  "Card0"
	Driver      "intel"
	VendorName  "Intel Corporation"
	BoardName   "82865G Integrated Graphics Controller"
	BusID       "PCI:0:2:0"
	Option	"AccelMethod"	"XAA"
	Option	"XAANoOffscreenPixmaps"	"true"
	Option	"AddARGBGLXVisuals"	"true"
	Option	"DRI"	"true"
EndSection
 
gnemmi said:
could you show me your /boot/loader.conf?

only one line:

Code:
snd_ich_load="YES"


richardpl said:
Currently, SMP kernel on SMP CPU do not resume correctly at all but on 8.0 SMP amd64 should resume fine.

Ok, but I'm understand a little.
My CPU is an Intel Dual Core, so it should use SMP (is correct?).
But is 8.0 SMP?
 
could you please add the following line into your /boot/loader.conf: i915_load="YES"

Then reboot, suspend and resume to see if you get your screen back upon resume?

And just in case, if you want to disable SMP support in the kernel, you just need to add the following line at the end of your /boot/device.hints: kern.smp.disabled="1".
 
Sorry for bumping old thread, but I have the same problem, it just doesn't want to resume. I even added to /boot/loader.conf:
Code:
i915_load="YES"
and to /boot/device.hints:
Code:
kern.smp.disabled="1"

But it's still the same.

My /boot/loader.conf:
Code:
nvidia_load="YES"
snd_hda_load="YES"
i915_load="YES"
vfs.zfs.prefetch_disable=0

and I use FreeBSD 8.1 amd64, cpu:core2duo, mb:asus p5k, gpu: nvida 8600gt

thnx
 
There is no point to load i915(designed for some integrated intel chips only) if you use nvidia gpu.

Can you try to resume machine without starting Xorg and without loading nvidia kmod?
 
Back
Top