[Suspend-devel] Toshiba Setellite U205-S5067 Suspend to RAM

2007-04-10 Thread Ross Patterson
The Toshiba Setellite U205-S5067 is a Core 2 Duo T7200 machine with 2GB of RAM based on the Intel 945GM chipset with the Intel GMA 950 graphics adapter. I've done all my testing on a Debian unstable base install with only tasksel "laptop" installed. I've tested with both Debian linux-image-2.6.18

Re: [Suspend-devel] CONFIG_PPC

2007-04-10 Thread Pavel Machek
Hi! > > >A while back I proposed a patch to support powerpc. The comments where > > >that it was a bit ugly with all those #ifdef's. Now the question is how > > >do I do this neatly? > > [...] > > >I could solve this as Stefan suggested like this: > > > > > >#ifdef CONFIG_PPC > > >int s2ram_hacks(

Re: [Suspend-devel] s2ram, Acer 3012, dead end?

2007-04-10 Thread Pavel Machek
Hi! > (Please Cc me) > > I am a bit desperate, I can't get s2ram working on this machine: > sys_vendor = "Acer, inc." > sys_product = "TravelMate 3010 " > sys_version = "Not Applicable" > bios_version = "v1.3116" > I am running kernel 2.6.21-rc5 with Debian/sid, and tried the

Re: [Suspend-devel] PM-Debugging doesn't seem to work

2007-04-10 Thread Pavel Machek
Hi! > My Lenovo X60T sometimes reboots or freezes on a s2ram resume. > Trying to get more clues i enabled PM-debugging and tracing in my > kernel but i only get this: > > Magic number: 0:798:378 > hash matches drivers/base/power/resume.c:46 > Time: tsc clocksource has been installed. > Time: hpet

Re: [Suspend-devel] s2ram: my laptop don't wake up, system hanged.

2007-04-10 Thread Pavel Machek
Hi! > My system gets hanged after try to resume from s2ram. My system is not in > whitelist, so I have tried everything in http://en.opensuse.org/S2ram but > with with the same bad results. Try plain s2ram -f from init=/bin/bash boot.

Re: [Suspend-devel] s2ram, Acer 3012, dead end?

2007-04-10 Thread Norbert Preining
Hi Pavel, On Die, 10 Apr 2007, Pavel Machek wrote: > > The process is always the same: Suspending, resuming, the HD and > > CapsLock LED flash short, then the HD led flashes another 1 or 2 times, > > then everything is dead. No CapsLock reaction, no SysRq reaction. 4 sec > > power button necessary

Re: [Suspend-devel] PM-Debugging doesn't seem to work

2007-04-10 Thread Sascha Heid
> No idea, this is Linuses toy. Can you simply debug it using printk and > udelay? I used 2.6.21rc6 the last 3 days and got the same issue and no additional debugging info (just Magic number: 0:692:668 ) Im not sure if i miss any rtc stuff in my kernel, but the resume-tracing help says it would sc

Re: [Suspend-devel] Suspending only possible with ATI's fglrx driver

2007-04-10 Thread Felix Homann
Hi, On Thursday 05 April 2007, Pavel Machek wrote: > > as opposed to my initial report in > > 2006 using a 2.6.17.4 kernel the display won't wake up with the > > xorg/radeon driver. (When using the 2.6.17.4 kernel last year with the > > then current xorg > > Well, you could find out when xorg/rade

[Suspend-devel] 's2ram -f' for Dell DXP051

2007-04-10 Thread Struan Bartlett
Hi, 's2ram -f' works on the Dell DXP051 both within X and from a framebuffer text console. Please find the output of 's2ram -i' attached. Regards, Struan Bartlett This machine can be identified by: sys_vendor = "Dell Inc." sys_product = "Dell DXP051

Re: [Suspend-devel] CONFIG_PPC

2007-04-10 Thread Luca Tettamanti
Il Tue, Apr 10, 2007 at 12:13:21PM +0200, Pavel Machek ha scritto: > Hi! > > > > >A while back I proposed a patch to support powerpc. The comments where > > > >that it was a bit ugly with all those #ifdef's. Now the question is how > > > >do I do this neatly? > > > [...] > > > >I could solve this

[Suspend-devel] [PATCH 1/2] s2ram: split generic and x86 code

2007-04-10 Thread Luca Tettamanti
Split generic and x86 s2ram code: the new files (s2ram.{c,h}) contains platform specific code moved out of the main file. Signed-Off-By: Luca Tettamanti <[EMAIL PROTECTED]> --- Makefile|8 - s2ram-x86.c | 331 s2ram-x86.h | 10 +

[Suspend-devel] [PATCH 2/2] s2ram: add PPC support

2007-04-10 Thread Luca Tettamanti
Add s2ram support for PPC architecture. s2ram.{c,h} contain the implementation of the required functions, used by the main file. The Makefile selects the correct platform files using $(ARCH) variable (autodetected by default, can be overridden). PPC code is based on original patch from Tim Dijkstr