linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Call for help: list of machines with working S3
@ 2005-02-14 21:11 Pavel Machek
  2005-02-14 21:36 ` [ACPI] " Carl-Daniel Hailfinger
                   ` (13 more replies)
  0 siblings, 14 replies; 89+ messages in thread
From: Pavel Machek @ 2005-02-14 21:11 UTC (permalink / raw)
  To: ACPI mailing list, kernel list, seife, rjw

Hi!

Stefan provided me initial list of machines where S3 works (including
video). If you have machine that is not on the list, please send me a
diff. If you have eMachines... I'd like you to try playing with
vbetool (it worked for me), and if it works for you supplying right
model numbers.

								Pavel


		Video issues with S3 resume
		~~~~~~~~~~~~~~~~~~~~~~~~~~~
		  2003-2005, Pavel Machek

During S3 resume, hardware needs to be reinitialized. For most
devices, this is easy, and kernel driver knows how to do
it. Unfortunately there's one exception: video card. Those are usually
initialized by BIOS, and kernel does not have enough information to
boot video card. (Kernel usually does not even contain video card
driver -- vesafb and vgacon are widely used).

This is not problem for swsusp, because during swsusp resume, BIOS is
run normally so video card is normally initialized. S3 has absolutely
no change to work with SMP/HT. Be sure it to turn it off before
testing (swsusp should work ok, OTOH).

There are few types of systems where video works after S3 resume:

(1) systems where video state is preserved over S3.

(2) systems where it is possible to call video bios during S3
  resume. Unfortunately, it is not correct to call video BIOS at that
  point, but it happens to work on some machines. Use
  acpi_sleep=s3_bios.

(3) systems that initialize video card into vga text mode and where BIOS
  works well enough to be able to set video mode. Use
  acpi_sleep=s3_mode on these.

(4) on some systems s3_bios kicks video into text mode, and
  acpi_sleep=s3_bios,s3_mode is needed.

(5) radeon systems, where X can soft-boot your video card. You'll need
  patched X, and plain text console (no vesafb or radeonfb), see
  http://www.doesi.gmxhome.de/linux/tm800s3/s3.html.

(6) other radeon systems, where vbetool is enough to bring system back
  to life. Do vbetool vbestate save > /tmp/delme; echo 3 > /proc/acpi/sleep;
  vbetool post; vbetool vbestate restore < /tmp/delme; setfont
  <whatever>, and your video should work.

Now, if you pass acpi_sleep=something, and it does not work with your
bios, you'll get hard crash during resume. Be carefull. Also it is
safest to do your experiments with plain old VGA console. vesafb and
radeonfb (etc) drivers have tendency to crash the machine during resume.

You may have system where none of above works. At that point you
either invent another ugly hack that works, or write proper driver for
your video card (good luck getting docs :-(). Maybe suspending from X
(proper X, knowing your hardware, not XF68_FBcon) might have better
chance of working.

Table of known working systems:

Model                           hack (or "how to do it")
------------------------------------------------------------------------------
IBM TP R32 / Type 2658-MMG      none (1)
Athlon HP Omnibook XE3		none (1)
Compaq Armada E500 - P3-700     none (1) (S1 also works OK)
IBM t41p			none (1)
Athlon64 desktop prototype	s3_bios (2)
HP NC6000			s3_bios (2)
Toshiba Satellite 4080XCDT      s3_mode (3)
Toshiba Satellite 4030CDT	s3_mode (3)
Dell D600, ATI RV250            vga=normal (**)
Asus L2400D                     s3_mode (3)(***) (S1 also works OK)
Toshiba Satellite P10-554       s3_bios,s3_mode (4)(****)
Acer TM 800			vga=normal, X patches, see webpage (5)
Athlon64 Arima W730a		vbestate needed (6)
eMachines athlon64 machines	vbestate needed (6) (someone please get me model #s)

(**) Text console is "strange" after resume. Backlight is switched on again
     by the X server. X server is:
     | X Window System Version 6.8.1.904 (6.8.2 RC 4)
     | Release Date: 2 February 2005
     | X Protocol Version 11, Revision 0, Release 6.8.1.904
     | Build Operating System: SuSE Linux [ELF] SuSE
     as present in SUSE 9.3preview3.

(***) To be tested with a newer kernel.

(****) Not with SMP kernel, UP only.

-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
@ 2005-02-14 21:36 ` Carl-Daniel Hailfinger
  2005-02-14 23:23 ` Matthew Garrett
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 89+ messages in thread
From: Carl-Daniel Hailfinger @ 2005-02-14 21:36 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

Pavel Machek schrieb:
> Hi!
> 
> Stefan provided me initial list of machines where S3 works (including
> video). If you have machine that is not on the list, please send me a
> diff. If you have eMachines... I'd like you to try playing with
> vbetool (it worked for me), and if it works for you supplying right
> model numbers.
> 
> 								Pavel
> 
> 
> 		Video issues with S3 resume
> 		~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 		  2003-2005, Pavel Machek
> 
> During S3 resume, hardware needs to be reinitialized. For most
> devices, this is easy, and kernel driver knows how to do
> it. Unfortunately there's one exception: video card. Those are usually
> initialized by BIOS, and kernel does not have enough information to
> boot video card. (Kernel usually does not even contain video card
> driver -- vesafb and vgacon are widely used).
> 
> This is not problem for swsusp, because during swsusp resume, BIOS is
> run normally so video card is normally initialized. S3 has absolutely
> no change to work with SMP/HT. Be sure it to turn it off before
> testing (swsusp should work ok, OTOH).
> 
> There are few types of systems where video works after S3 resume:
> 
> (1) systems where video state is preserved over S3.
> 
> (2) systems where it is possible to call video bios during S3
>   resume. Unfortunately, it is not correct to call video BIOS at that
>   point, but it happens to work on some machines. Use
>   acpi_sleep=s3_bios.
> 
> (3) systems that initialize video card into vga text mode and where BIOS
>   works well enough to be able to set video mode. Use
>   acpi_sleep=s3_mode on these.
> 
> (4) on some systems s3_bios kicks video into text mode, and
>   acpi_sleep=s3_bios,s3_mode is needed.
> 
> (5) radeon systems, where X can soft-boot your video card. You'll need
>   patched X, and plain text console (no vesafb or radeonfb), see
>   http://www.doesi.gmxhome.de/linux/tm800s3/s3.html.

(5) machines should also work with (6), but not the other way round.

> 
> (6) other radeon systems, where vbetool is enough to bring system back
>   to life. Do vbetool vbestate save > /tmp/delme; echo 3 > /proc/acpi/sleep;
>   vbetool post; vbetool vbestate restore < /tmp/delme; setfont
>   <whatever>, and your video should work.

(6) has to be done from a text console! It should work for all radeon
systems, btw.

> 
> Now, if you pass acpi_sleep=something, and it does not work with your
> bios, you'll get hard crash during resume. Be carefull. Also it is
> safest to do your experiments with plain old VGA console. vesafb and
> radeonfb (etc) drivers have tendency to crash the machine during resume.
> 
> You may have system where none of above works. At that point you
> either invent another ugly hack that works, or write proper driver for
> your video card (good luck getting docs :-(). Maybe suspending from X
> (proper X, knowing your hardware, not XF68_FBcon) might have better
> chance of working.
> 
> Table of known working systems:
> 
> Model                           hack (or "how to do it")
> ------------------------------------------------------------------------------
> IBM TP R32 / Type 2658-MMG      none (1)
> Athlon HP Omnibook XE3		none (1)
> Compaq Armada E500 - P3-700     none (1) (S1 also works OK)
> IBM t41p			none (1)
> Athlon64 desktop prototype	s3_bios (2)
> HP NC6000			s3_bios (2)
> Toshiba Satellite 4080XCDT      s3_mode (3)
> Toshiba Satellite 4030CDT	s3_mode (3)
> Dell D600, ATI RV250            vga=normal (**)

The Dell system above should also work fine with vbestate.

> Asus L2400D                     s3_mode (3)(***) (S1 also works OK)
> Toshiba Satellite P10-554       s3_bios,s3_mode (4)(****)
> Acer TM 800			vga=normal, X patches, see webpage (5)
> Athlon64 Arima W730a		vbestate needed (6)
> eMachines athlon64 machines	vbestate needed (6) (someone please get me model #s)

Samsung P35                  vbestate needed (6)

> 
> (**) Text console is "strange" after resume. Backlight is switched on again
>      by the X server. X server is:
>      | X Window System Version 6.8.1.904 (6.8.2 RC 4)
>      | Release Date: 2 February 2005
>      | X Protocol Version 11, Revision 0, Release 6.8.1.904
>      | Build Operating System: SuSE Linux [ELF] SuSE
>      as present in SUSE 9.3preview3.
> 
> (***) To be tested with a newer kernel.
> 
> (****) Not with SMP kernel, UP only.

Regards,
Carl-Daniel
-- 
http://www.hailfinger.org/

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
  2005-02-14 21:36 ` [ACPI] " Carl-Daniel Hailfinger
@ 2005-02-14 23:23 ` Matthew Garrett
  2005-02-14 23:47   ` Matthew Garrett
  2005-02-15  6:05 ` Alistair John Strachan
                   ` (11 subsequent siblings)
  13 siblings, 1 reply; 89+ messages in thread
From: Matthew Garrett @ 2005-02-14 23:23 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

On Mon, 2005-02-14 at 22:11 +0100, Pavel Machek wrote:
> Hi!
> 
> Stefan provided me initial list of machines where S3 works (including
> video). If you have machine that is not on the list, please send me a
> diff. If you have eMachines... I'd like you to try playing with
> vbetool (it worked for me), and if it works for you supplying right
> model numbers.

http://www.ubuntulinux.org/wiki/HoaryPMTesting has a list of several
working machines. HP seem to be the worst supported at the moment.

-- 
Matthew Garrett | mjg59@srcf.ucam.org


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-14 23:23 ` Matthew Garrett
@ 2005-02-14 23:47   ` Matthew Garrett
  0 siblings, 0 replies; 89+ messages in thread
From: Matthew Garrett @ 2005-02-14 23:47 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

On Mon, 2005-02-14 at 23:23 +0000, Matthew Garrett wrote:
> On Mon, 2005-02-14 at 22:11 +0100, Pavel Machek wrote:
> > Hi!
> > 
> > Stefan provided me initial list of machines where S3 works (including
> > video). If you have machine that is not on the list, please send me a
> > diff. If you have eMachines... I'd like you to try playing with
> > vbetool (it worked for me), and if it works for you supplying right
> > model numbers.
> 
> http://www.ubuntulinux.org/wiki/HoaryPMTesting has a list of several
> working machines. HP seem to be the worst supported at the moment.

Sorry - that should be http://www.ubuntulinux.org/wiki/HoaryPMResults

-- 
Matthew Garrett | mjg59@srcf.ucam.org


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
  2005-02-14 21:36 ` [ACPI] " Carl-Daniel Hailfinger
  2005-02-14 23:23 ` Matthew Garrett
@ 2005-02-15  6:05 ` Alistair John Strachan
  2005-02-15 12:12   ` [ACPI] " Lorenzo Colitti
  2005-02-15 16:05   ` Stefan Seyfried
  2005-02-15 12:55 ` [ACPI] " Norbert Preining
                   ` (10 subsequent siblings)
  13 siblings, 2 replies; 89+ messages in thread
From: Alistair John Strachan @ 2005-02-15  6:05 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

On Monday 14 Feb 2005 21:11, Pavel Machek wrote:
[snip]
>
> Table of known working systems:
>
> Model                           hack (or "how to do it")
> ---------------------------------------------------------------------------
>--- IBM TP R32 / Type 2658-MMG      none (1)
> Athlon HP Omnibook XE3		none (1)
> Compaq Armada E500 - P3-700     none (1) (S1 also works OK)
> IBM t41p			none (1)
> Athlon64 desktop prototype	s3_bios (2)
> HP NC6000			s3_bios (2)

The above report is incorrect. On 2.6.11-rc4, even with the s3_bios option, 
the NC6000 (which I own) still does not wake up from S3 sleep. The wiki 
linked somewhere else in this thread also identifies these machines as not 
working.

> Toshiba Satellite 4080XCDT      s3_mode (3)
> Toshiba Satellite 4030CDT	s3_mode (3)
> Dell D600, ATI RV250            vga=normal (**)
> Asus L2400D                     s3_mode (3)(***) (S1 also works OK)
> Toshiba Satellite P10-554       s3_bios,s3_mode (4)(****)
> Acer TM 800			vga=normal, X patches, see webpage (5)
> Athlon64 Arima W730a		vbestate needed (6)
> eMachines athlon64 machines	vbestate needed (6) (someone please get me
> model #s)
>
> (**) Text console is "strange" after resume. Backlight is switched on again
>
>      by the X server. X server is:
>      | X Window System Version 6.8.1.904 (6.8.2 RC 4)
>      | Release Date: 2 February 2005
>      | X Protocol Version 11, Revision 0, Release 6.8.1.904
>      | Build Operating System: SuSE Linux [ELF] SuSE
>
>      as present in SUSE 9.3preview3.
>
> (***) To be tested with a newer kernel.
>
> (****) Not with SMP kernel, UP only.

-- 
Cheers,
Alistair.

personal:   alistair()devzero!co!uk
university: s0348365()sms!ed!ac!uk
student:    CS/CSim Undergraduate
contact:    1F2 55 South Clerk Street,
            Edinburgh. EH8 9PP.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15  6:05 ` Alistair John Strachan
@ 2005-02-15 12:12   ` Lorenzo Colitti
  2005-02-15 13:17     ` Alistair John Strachan
  2005-02-15 15:41     ` Matthew Garrett
  2005-02-15 16:05   ` Stefan Seyfried
  1 sibling, 2 replies; 89+ messages in thread
From: Lorenzo Colitti @ 2005-02-15 12:12 UTC (permalink / raw)
  To: Alistair John Strachan
  Cc: Pavel Machek, ACPI mailing list, kernel list, seife, rjw

[-- Attachment #1: Type: text/plain, Size: 671 bytes --]

Alistair John Strachan wrote:
> On Monday 14 Feb 2005 21:11, Pavel Machek wrote:
> 
>>Table of known working systems:
>>Model                         hack (or "how to do it")
>>[...]
>>HP NC6000			s3_bios (2)
> 
> The above report is incorrect. On 2.6.11-rc4, even with the s3_bios option, 
> the NC6000 (which I own) still does not wake up from S3 sleep. The wiki 
> linked somewhere else in this thread also identifies these machines as not 
> working.

I beg to differ: it works for me on 2.6.11-rc3 (even with the swsusp2 
patch). However, I need to use acpi_sleep=s3_bios, and I can't use 
radeonfb or it will lock up on resume.

.config attached.


Cheers,
Lorenzo

[-- Attachment #2: .config --]
[-- Type: text/plain, Size: 34622 bytes --]

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.11-rc3-vanilla+swsusp
# Thu Feb 10 15:44:07 2005
#
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_UID16=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_BROKEN_ON_SMP=y
CONFIG_LOCK_KERNEL=y

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_LOG_BUF_SHIFT=14
CONFIG_HOTPLUG=y
CONFIG_KOBJECT_UEVENT=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_EMBEDDED is not set
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_ALL is not set
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_FUTEX=y
CONFIG_EPOLL=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SHMEM=y
CONFIG_CC_ALIGN_FUNCTIONS=0
CONFIG_CC_ALIGN_LABELS=0
CONFIG_CC_ALIGN_LOOPS=0
CONFIG_CC_ALIGN_JUMPS=0
# CONFIG_TINY_SHMEM is not set

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
CONFIG_OBSOLETE_MODPARM=y
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y

#
# Processor type and features
#
CONFIG_X86_PC=y
# CONFIG_X86_ELAN is not set
# CONFIG_X86_VOYAGER is not set
# CONFIG_X86_NUMAQ is not set
# CONFIG_X86_SUMMIT is not set
# CONFIG_X86_BIGSMP is not set
# CONFIG_X86_VISWS is not set
# CONFIG_X86_GENERICARCH is not set
# CONFIG_X86_ES7000 is not set
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
# CONFIG_MPENTIUMIII is not set
CONFIG_MPENTIUMM=y
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MEFFICEON is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_X86_GENERIC is not set
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_HPET_TIMER=y
# CONFIG_SMP is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_BKL=y
# CONFIG_X86_UP_APIC is not set
CONFIG_X86_TSC=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
CONFIG_MICROCODE=m
CONFIG_X86_MSR=m
CONFIG_X86_CPUID=m

#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_EFI is not set
CONFIG_HAVE_DEC_LOCK=y
# CONFIG_REGPARM is not set

#
# NeTraverse Win4Lin Support
#
# CONFIG_MKI is not set

#
# Power management options (ACPI, APM)
#
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_SOFTWARE_SUSPEND is not set

#
# Software Suspend 2
#
CONFIG_SOFTWARE_SUSPEND2=y
CONFIG_SOFTWARE_SUSPEND2_BUILTIN=y

#
# Image Storage (you need at least one writer)
#
CONFIG_SOFTWARE_SUSPEND_SWAPWRITER=y

#
# Page Transformers
#
CONFIG_SOFTWARE_SUSPEND_LZF_COMPRESSION=y

#
# User Interface Options
#
CONFIG_SOFTWARE_SUSPEND_TEXT_MODE=y

#
# General Options
#
CONFIG_SOFTWARE_SUSPEND_DEFAULT_RESUME2="/dev/hda7"
# CONFIG_SOFTWARE_SUSPEND_KEEP_IMAGE is not set
# CONFIG_SOFTWARE_SUSPEND_CHECK_RESUME_SAFE is not set

#
# Debugging
#
CONFIG_SOFTWARE_SUSPEND_DEBUG=y
# CONFIG_SOFTWARE_SUSPEND_DEVELOPER is not set

#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI=y
CONFIG_ACPI_BOOT=y
CONFIG_ACPI_INTERPRETER=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_SLEEP_PROC_FS=y
CONFIG_ACPI_AC=m
CONFIG_ACPI_BATTERY=m
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_IBM is not set
# CONFIG_ACPI_TOSHIBA is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
CONFIG_ACPI_DEBUG=y
CONFIG_ACPI_BUS=y
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_PCI=y
CONFIG_ACPI_SYSTEM=y
CONFIG_X86_PM_TIMER=y
# CONFIG_ACPI_CONTAINER is not set

#
# APM (Advanced Power Management) BIOS Support
#
# CONFIG_APM is not set

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
# CONFIG_CPU_FREQ_DEBUG is not set
CONFIG_CPU_FREQ_STAT=y
# CONFIG_CPU_FREQ_STAT_DETAILS is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
CONFIG_CPU_FREQ_GOV_USERSPACE=m
CONFIG_CPU_FREQ_GOV_ONDEMAND=m
CONFIG_CPU_FREQ_TABLE=y

#
# CPUFreq processor drivers
#
# CONFIG_X86_ACPI_CPUFREQ is not set
# CONFIG_X86_POWERNOW_K6 is not set
# CONFIG_X86_POWERNOW_K7 is not set
# CONFIG_X86_POWERNOW_K8 is not set
# CONFIG_X86_GX_SUSPMOD is not set
CONFIG_X86_SPEEDSTEP_CENTRINO=m
# CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI is not set
CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y
# CONFIG_X86_SPEEDSTEP_ICH is not set
# CONFIG_X86_SPEEDSTEP_SMI is not set
# CONFIG_X86_P4_CLOCKMOD is not set
# CONFIG_X86_CPUFREQ_NFORCE2 is not set
# CONFIG_X86_LONGRUN is not set
# CONFIG_X86_LONGHAUL is not set

#
# shared options
#

#
# Bus options (PCI, PCMCIA, EISA, MCA, ISA)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GOMMCONFIG is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
# CONFIG_PCIEPORTBUS is not set
CONFIG_PCI_LEGACY_PROC=y
CONFIG_PCI_NAMES=y
# CONFIG_ISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set

#
# PCCARD (PCMCIA/CardBus) support
#
CONFIG_PCCARD=m
# CONFIG_PCMCIA_DEBUG is not set
CONFIG_PCMCIA=m
CONFIG_CARDBUS=y

#
# PC-card bridges
#
CONFIG_YENTA=m
# CONFIG_PD6729 is not set
# CONFIG_I82092 is not set
# CONFIG_TCIC is not set
CONFIG_PCCARD_NONSTATIC=m

#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set

#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_MISC=y

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
# CONFIG_DEBUG_DRIVER is not set

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_PC_CML1=m
# CONFIG_PARPORT_SERIAL is not set
CONFIG_PARPORT_PC_FIFO=y
# CONFIG_PARPORT_PC_SUPERIO is not set
# CONFIG_PARPORT_PC_PCMCIA is not set
# CONFIG_PARPORT_OTHER is not set
CONFIG_PARPORT_1284=y

#
# Plug and Play support
#
CONFIG_PNP=y
# CONFIG_PNP_DEBUG is not set

#
# Protocols
#
CONFIG_PNPACPI=y

#
# Block devices
#
# CONFIG_BLK_DEV_FD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_CRYPTOLOOP=m
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_UB is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
# CONFIG_LBD is not set
# CONFIG_CDROM_PKTCDVD is not set

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
# CONFIG_ATA_OVER_ETH is not set

#
# ATA/ATAPI/MFM/RLL support
#
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y

#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_IDE_SATA is not set
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
# CONFIG_BLK_DEV_IDECS is not set
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# CONFIG_BLK_DEV_IDESCSI is not set
CONFIG_IDE_TASK_IOCTL=y

#
# IDE chipset support/bugfixes
#
# CONFIG_IDE_GENERIC is not set
# CONFIG_BLK_DEV_CMD640 is not set
# CONFIG_BLK_DEV_IDEPNP is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
# CONFIG_BLK_DEV_GENERIC is not set
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD74XX is not set
# CONFIG_BLK_DEV_ATIIXP is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5520 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_SC1200 is not set
CONFIG_BLK_DEV_PIIX=y
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
# CONFIG_BLK_DEV_SVWKS is not set
# CONFIG_BLK_DEV_SIIMAGE is not set
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_IVB is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
CONFIG_SCSI=m
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=m
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
# CONFIG_BLK_DEV_SR is not set
# CONFIG_CHR_DEV_SG is not set

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
# CONFIG_SCSI_MULTI_LUN is not set
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set

#
# SCSI Transport Attributes
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set

#
# SCSI low-level drivers
#
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_SCSI_SATA is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_PIO is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
CONFIG_SCSI_QLA2XXX=m
# CONFIG_SCSI_QLA21XX is not set
# CONFIG_SCSI_QLA22XX is not set
# CONFIG_SCSI_QLA2300 is not set
# CONFIG_SCSI_QLA2322 is not set
# CONFIG_SCSI_QLA6312 is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_NSP32 is not set
# CONFIG_SCSI_DEBUG is not set

#
# PCMCIA SCSI adapter support
#
# CONFIG_PCMCIA_AHA152X is not set
# CONFIG_PCMCIA_FDOMAIN is not set
# CONFIG_PCMCIA_NINJA_SCSI is not set
# CONFIG_PCMCIA_QLOGIC is not set
# CONFIG_PCMCIA_SYM53C500 is not set

#
# Multi-device support (RAID and LVM)
#
# CONFIG_MD is not set

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#
# CONFIG_IEEE1394 is not set

#
# I2O device support
#
# CONFIG_I2O is not set

#
# Networking support
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
# CONFIG_NETLINK_DEV is not set
CONFIG_UNIX=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
CONFIG_SYN_COOKIES=y
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_TUNNEL is not set
CONFIG_IP_TCPDIAG=y
# CONFIG_IP_TCPDIAG_IPV6 is not set

#
# IP: Virtual Server Configuration
#
# CONFIG_IP_VS is not set
CONFIG_IPV6=m
CONFIG_IPV6_PRIVACY=y
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_INET6_TUNNEL is not set
# CONFIG_IPV6_TUNNEL is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set

#
# IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=y
# CONFIG_IP_NF_CT_ACCT is not set
# CONFIG_IP_NF_CONNTRACK_MARK is not set
# CONFIG_IP_NF_CT_PROTO_SCTP is not set
# CONFIG_IP_NF_FTP is not set
# CONFIG_IP_NF_IRC is not set
# CONFIG_IP_NF_TFTP is not set
# CONFIG_IP_NF_AMANDA is not set
CONFIG_IP_NF_QUEUE=y
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_MATCH_LIMIT=y
CONFIG_IP_NF_MATCH_IPRANGE=y
CONFIG_IP_NF_MATCH_MAC=y
CONFIG_IP_NF_MATCH_PKTTYPE=y
CONFIG_IP_NF_MATCH_MARK=y
CONFIG_IP_NF_MATCH_MULTIPORT=y
CONFIG_IP_NF_MATCH_TOS=y
CONFIG_IP_NF_MATCH_RECENT=y
CONFIG_IP_NF_MATCH_ECN=y
CONFIG_IP_NF_MATCH_DSCP=y
CONFIG_IP_NF_MATCH_AH_ESP=y
CONFIG_IP_NF_MATCH_LENGTH=y
CONFIG_IP_NF_MATCH_TTL=y
CONFIG_IP_NF_MATCH_TCPMSS=y
CONFIG_IP_NF_MATCH_HELPER=y
CONFIG_IP_NF_MATCH_STATE=y
CONFIG_IP_NF_MATCH_CONNTRACK=y
CONFIG_IP_NF_MATCH_OWNER=y
# CONFIG_IP_NF_MATCH_ADDRTYPE is not set
# CONFIG_IP_NF_MATCH_REALM is not set
# CONFIG_IP_NF_MATCH_SCTP is not set
# CONFIG_IP_NF_MATCH_COMMENT is not set
# CONFIG_IP_NF_MATCH_HASHLIMIT is not set
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
CONFIG_IP_NF_TARGET_LOG=y
CONFIG_IP_NF_TARGET_ULOG=y
CONFIG_IP_NF_TARGET_TCPMSS=y
CONFIG_IP_NF_NAT=y
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=y
CONFIG_IP_NF_TARGET_REDIRECT=y
CONFIG_IP_NF_TARGET_NETMAP=y
CONFIG_IP_NF_TARGET_SAME=y
# CONFIG_IP_NF_NAT_SNMP_BASIC is not set
CONFIG_IP_NF_MANGLE=y
CONFIG_IP_NF_TARGET_TOS=y
CONFIG_IP_NF_TARGET_ECN=y
CONFIG_IP_NF_TARGET_DSCP=y
CONFIG_IP_NF_TARGET_MARK=y
CONFIG_IP_NF_TARGET_CLASSIFY=y
CONFIG_IP_NF_RAW=m
CONFIG_IP_NF_TARGET_NOTRACK=m
CONFIG_IP_NF_ARPTABLES=y
CONFIG_IP_NF_ARPFILTER=y
CONFIG_IP_NF_ARP_MANGLE=y

#
# IPv6: Netfilter Configuration
#
# CONFIG_IP6_NF_QUEUE is not set
# CONFIG_IP6_NF_IPTABLES is not set

#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP is not set
# CONFIG_ATM is not set
# CONFIG_BRIDGE is not set
CONFIG_VLAN_8021Q=m
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set
# CONFIG_NET_CLS_ROUTE is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_HAMRADIO is not set
CONFIG_IRDA=m

#
# IrDA protocols
#
# CONFIG_IRLAN is not set
# CONFIG_IRCOMM is not set
# CONFIG_IRDA_ULTRA is not set

#
# IrDA options
#
# CONFIG_IRDA_CACHE_LAST_LSAP is not set
# CONFIG_IRDA_FAST_RR is not set
# CONFIG_IRDA_DEBUG is not set

#
# Infrared-port device drivers
#

#
# SIR device drivers
#
CONFIG_IRTTY_SIR=m

#
# Dongle support
#
# CONFIG_DONGLE is not set

#
# Old SIR device drivers
#
# CONFIG_IRPORT_SIR is not set

#
# Old Serial dongle support
#

#
# FIR device drivers
#
# CONFIG_USB_IRDA is not set
# CONFIG_SIGMATEL_FIR is not set
# CONFIG_TOSHIBA_FIR is not set
# CONFIG_VLSI_FIR is not set
CONFIG_BT=m
CONFIG_BT_L2CAP=m
CONFIG_BT_SCO=m
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
CONFIG_BT_HIDP=m

#
# Bluetooth device drivers
#
# CONFIG_BT_HCIUSB is not set
# CONFIG_BT_HCIUART is not set
# CONFIG_BT_HCIBCM203X is not set
# CONFIG_BT_HCIBFUSB is not set
# CONFIG_BT_HCIDTL1 is not set
# CONFIG_BT_HCIBT3C is not set
# CONFIG_BT_HCIBLUECARD is not set
# CONFIG_BT_HCIBTUART is not set
# CONFIG_BT_HCIVHCI is not set
CONFIG_NETDEVICES=y
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
# CONFIG_NET_SB1000 is not set

#
# ARCnet devices
#
# CONFIG_ARCNET is not set

#
# Ethernet (10 or 100Mbit)
#
# CONFIG_NET_ETHERNET is not set

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SK98LIN is not set
CONFIG_TIGON3=y

#
# Ethernet (10000 Mbit)
#
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set

#
# Token Ring devices
#
# CONFIG_TR is not set

#
# Wireless LAN (non-hamradio)
#
CONFIG_NET_RADIO=y

#
# Obsolete Wireless cards support (pre-802.11)
#
# CONFIG_STRIP is not set
# CONFIG_PCMCIA_WAVELAN is not set
# CONFIG_PCMCIA_NETWAVE is not set

#
# Wireless 802.11 Frequency Hopping cards support
#
# CONFIG_PCMCIA_RAYCS is not set

#
# Wireless 802.11b ISA/PCI cards support
#
CONFIG_HERMES=m
CONFIG_PLX_HERMES=m
CONFIG_TMD_HERMES=m
CONFIG_PCI_HERMES=m
CONFIG_ATMEL=m
CONFIG_PCI_ATMEL=m

#
# Wireless 802.11b Pcmcia/Cardbus cards support
#
CONFIG_PCMCIA_HERMES=m
CONFIG_AIRO_CS=m
CONFIG_PCMCIA_ATMEL=m
CONFIG_PCMCIA_WL3501=m

#
# Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support
#
CONFIG_PRISM54=m
CONFIG_NET_WIRELESS=y

#
# PCMCIA network device support
#
# CONFIG_NET_PCMCIA is not set

#
# Wan interfaces
#
# CONFIG_WAN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
# CONFIG_NET_FC is not set
# CONFIG_SHAPER is not set
# CONFIG_NETCONSOLE is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
CONFIG_INPUT_EVDEV=m
# CONFIG_INPUT_EVBUG is not set

#
# Input I/O drivers
#
# CONFIG_GAMEPORT is not set
CONFIG_SOUND_GAMEPORT=y
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_NEWTON is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
CONFIG_INPUT_MISC=y
CONFIG_INPUT_PCSPKR=y
# CONFIG_INPUT_UINPUT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_SERIAL_NONSTANDARD is not set

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
# CONFIG_SERIAL_8250_CS is not set
# CONFIG_SERIAL_8250_ACPI is not set
CONFIG_SERIAL_8250_NR_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is not set
# CONFIG_PPDEV is not set
CONFIG_TIPAR=m

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
CONFIG_HW_RANDOM=m
CONFIG_NVRAM=m
CONFIG_RTC=m
CONFIG_GEN_RTC=m
CONFIG_GEN_RTC_X=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set

#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
CONFIG_AGP=y
# CONFIG_AGP_ALI is not set
# CONFIG_AGP_ATI is not set
# CONFIG_AGP_AMD is not set
# CONFIG_AGP_AMD64 is not set
CONFIG_AGP_INTEL=y
# CONFIG_AGP_INTEL_MCH is not set
# CONFIG_AGP_NVIDIA is not set
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_SWORKS is not set
# CONFIG_AGP_VIA is not set
# CONFIG_AGP_EFFICEON is not set
CONFIG_DRM=m
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
CONFIG_DRM_RADEON=m
# CONFIG_DRM_I810 is not set
# CONFIG_DRM_I830 is not set
# CONFIG_DRM_I915 is not set
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set

#
# PCMCIA character devices
#
# CONFIG_SYNCLINK_CS is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
# CONFIG_HANGCHECK_TIMER is not set

#
# I2C support
#
CONFIG_I2C=m
# CONFIG_I2C_CHARDEV is not set

#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=m
# CONFIG_I2C_ALGOPCF is not set
# CONFIG_I2C_ALGOPCA is not set

#
# I2C Hardware Bus support
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_I810 is not set
# CONFIG_I2C_ISA is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_PARPORT is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_PROSAVAGE is not set
# CONFIG_I2C_SAVAGE4 is not set
# CONFIG_SCx200_ACB is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
# CONFIG_I2C_VOODOO3 is not set
# CONFIG_I2C_PCA_ISA is not set

#
# Hardware Sensors Chip support
#
# CONFIG_I2C_SENSOR is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83627HF is not set

#
# Other I2C Chip support
#
# CONFIG_SENSORS_EEPROM is not set
# CONFIG_SENSORS_PCF8574 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_SENSORS_RTC8564 is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_I2C_DEBUG_CHIP is not set

#
# Dallas's 1-wire bus
#
# CONFIG_W1 is not set

#
# Misc devices
#
# CONFIG_IBM_ASM is not set

#
# Multimedia devices
#
CONFIG_VIDEO_DEV=m

#
# Video For Linux
#

#
# Video Adapters
#
# CONFIG_VIDEO_BT848 is not set
CONFIG_VIDEO_BWQCAM=m
CONFIG_VIDEO_CQCAM=m
CONFIG_VIDEO_W9966=m
CONFIG_VIDEO_CPIA=m
CONFIG_VIDEO_CPIA_PP=m
CONFIG_VIDEO_CPIA_USB=m
# CONFIG_VIDEO_SAA5246A is not set
# CONFIG_VIDEO_SAA5249 is not set
# CONFIG_TUNER_3036 is not set
# CONFIG_VIDEO_STRADIS is not set
# CONFIG_VIDEO_ZORAN is not set
# CONFIG_VIDEO_SAA7134 is not set
# CONFIG_VIDEO_MXB is not set
# CONFIG_VIDEO_DPC is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_CX88 is not set
CONFIG_VIDEO_OVCAMCHIP=m

#
# Radio Adapters
#
# CONFIG_RADIO_GEMTEK_PCI is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_MAESTRO is not set

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set

#
# Graphics support
#
CONFIG_FB=y
CONFIG_FB_MODE_HELPERS=y
# CONFIG_FB_TILEBLITTING is not set
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_VESA is not set
CONFIG_VIDEO_SELECT=y
# CONFIG_FB_HGA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I810 is not set
# CONFIG_FB_INTEL is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON_OLD is not set
CONFIG_FB_RADEON=m
CONFIG_FB_RADEON_I2C=y
# CONFIG_FB_RADEON_DEBUG is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Logo configuration
#
# CONFIG_LOGO is not set
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set

#
# Bootsplash configuration
#

#
# Sound
#
CONFIG_SOUND=m

#
# Advanced Linux Sound Architecture
#
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_SEQUENCER=m
# CONFIG_SND_SEQ_DUMMY is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
CONFIG_SND_SEQUENCER_OSS=y
CONFIG_SND_RTCTIMER=m
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set

#
# Generic devices
#
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_VIRMIDI is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set

#
# PCI devices
#
CONFIG_SND_AC97_CODEC=m
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
CONFIG_SND_INTEL8X0=m
CONFIG_SND_INTEL8X0M=m
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VX222 is not set

#
# USB devices
#
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_USX2Y is not set

#
# PCMCIA devices
#

#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set

#
# USB support
#
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set

#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_SUSPEND is not set
# CONFIG_USB_OTG is not set
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y

#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=m
# CONFIG_USB_EHCI_SPLIT_ISO is not set
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_OHCI_HCD is not set
CONFIG_USB_UHCI_HCD=m
# CONFIG_USB_SL811_HCD is not set

#
# USB Device Class drivers
#
# CONFIG_USB_AUDIO is not set

#
# USB Bluetooth TTY can only be used with disabled Bluetooth subsystem
#
# CONFIG_USB_MIDI is not set
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set

#
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
CONFIG_USB_STORAGE_RW_DETECT=y
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_DPCM is not set
# CONFIG_USB_STORAGE_HP8200e is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set

#
# USB Input Devices
#
CONFIG_USB_HID=m
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
# CONFIG_USB_HIDDEV is not set

#
# USB HID Boot Protocol drivers
#
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
# CONFIG_USB_AIPTEK is not set
# CONFIG_USB_WACOM is not set
# CONFIG_USB_KBTAB is not set
# CONFIG_USB_POWERMATE is not set
# CONFIG_USB_MTOUCH is not set
# CONFIG_USB_EGALAX is not set
# CONFIG_USB_XPAD is not set
# CONFIG_USB_ATI_REMOTE is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set

#
# USB Multimedia devices
#
# CONFIG_USB_DABUSB is not set
# CONFIG_USB_VICAM is not set
# CONFIG_USB_DSBR is not set
# CONFIG_USB_IBMCAM is not set
# CONFIG_USB_KONICAWC is not set
CONFIG_USB_OV511=m
# CONFIG_USB_SE401 is not set
# CONFIG_USB_SN9C102 is not set
# CONFIG_USB_STV680 is not set
# CONFIG_USB_W9968CF is not set

#
# USB Network Adapters
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_USBNET is not set

#
# USB port drivers
#
# CONFIG_USB_USS720 is not set

#
# USB Serial Converter support
#
# CONFIG_USB_SERIAL is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_AUERSWALD is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGETKIT is not set
# CONFIG_USB_PHIDGETSERVO is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_TEST is not set

#
# USB ATM/DSL drivers
#

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set

#
# MMC/SD Card support
#
# CONFIG_MMC is not set

#
# InfiniBand support
#
# CONFIG_INFINIBAND is not set

#
# File systems
#
CONFIG_EXT2_FS=y
# CONFIG_EXT2_FS_XATTR is not set
CONFIG_EXT3_FS=y
# CONFIG_EXT3_FS_XATTR is not set
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set

#
# XFS support
#
# CONFIG_XFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_QUOTA is not set
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
# CONFIG_ZISOFS is not set
CONFIG_UDF_FS=y
CONFIG_UDF_NLS=y

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
CONFIG_NTFS_FS=y
# CONFIG_NTFS_DEBUG is not set
CONFIG_NTFS_RW=y

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
# CONFIG_DEVFS_FS is not set
# CONFIG_DEVPTS_FS_XATTR is not set
CONFIG_TMPFS=y
# CONFIG_TMPFS_XATTR is not set
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y

#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set

#
# Network File Systems
#
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
# CONFIG_EXPORTFS is not set
# CONFIG_SMB_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set

#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y

#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ASCII is not set
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
CONFIG_NLS_UTF8=y

#
# Profiling support
#
# CONFIG_PROFILING is not set

#
# Kernel hacking
#
CONFIG_DEBUG_KERNEL=y
CONFIG_MAGIC_SYSRQ=y
# CONFIG_SCHEDSTATS is not set
# CONFIG_DEBUG_SLAB is not set
CONFIG_DEBUG_PREEMPT=y
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_INFO is not set
# CONFIG_DEBUG_FS is not set
# CONFIG_FRAME_POINTER is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_KPROBES is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_4KSTACKS=y
# CONFIG_KDB is not set

#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set

#
# Cryptographic options
#
CONFIG_CRYPTO=y
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_NULL=m
CONFIG_CRYPTO_MD4=m
CONFIG_CRYPTO_MD5=m
CONFIG_CRYPTO_SHA1=m
CONFIG_CRYPTO_SHA256=m
CONFIG_CRYPTO_SHA512=m
CONFIG_CRYPTO_WP512=m
CONFIG_CRYPTO_DES=m
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_SERPENT=m
CONFIG_CRYPTO_AES_586=m
CONFIG_CRYPTO_CAST5=m
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_TEA=m
CONFIG_CRYPTO_ARC4=m
CONFIG_CRYPTO_KHAZAD=m
CONFIG_CRYPTO_ANUBIS=m
CONFIG_CRYPTO_DEFLATE=m
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_CRC32C=m
# CONFIG_CRYPTO_TEST is not set

#
# Hardware crypto devices
#
# CONFIG_CRYPTO_DEV_PADLOCK is not set

#
# Library routines
#
CONFIG_CRC_CCITT=m
CONFIG_CRC32=y
CONFIG_LIBCRC32C=m
CONFIG_ZLIB_INFLATE=m
CONFIG_ZLIB_DEFLATE=m
CONFIG_LZF=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_PC=y

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (2 preceding siblings ...)
  2005-02-15  6:05 ` Alistair John Strachan
@ 2005-02-15 12:55 ` Norbert Preining
  2005-02-15 13:17   ` Karol Kozimor
  2005-02-15 16:09   ` Carl-Daniel Hailfinger
  2005-02-15 16:31 ` Vernon Mauery
                   ` (9 subsequent siblings)
  13 siblings, 2 replies; 89+ messages in thread
From: Norbert Preining @ 2005-02-15 12:55 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

On Mon, 14 Feb 2005, Pavel Machek wrote:
> (1) systems where video state is preserved over S3.
> 
> (2) systems where it is possible to call video bios during S3
>   resume. Unfortunately, it is not correct to call video BIOS at that
>   point, but it happens to work on some machines. Use
>   acpi_sleep=s3_bios.
> 
> (3) systems that initialize video card into vga text mode and where BIOS
>   works well enough to be able to set video mode. Use
>   acpi_sleep=s3_mode on these.
> 
> (4) on some systems s3_bios kicks video into text mode, and
>   acpi_sleep=s3_bios,s3_mode is needed.
> 
> (5) radeon systems, where X can soft-boot your video card. You'll need
>   patched X, and plain text console (no vesafb or radeonfb), see
>   http://www.doesi.gmxhome.de/linux/tm800s3/s3.html.
> 
> (6) other radeon systems, where vbetool is enough to bring system back
>   to life. Do vbetool vbestate save > /tmp/delme; echo 3 > /proc/acpi/sleep;
>   vbetool post; vbetool vbestate restore < /tmp/delme; setfont
>   <whatever>, and your video should work.
> 
> Acer TM 800			vga=normal, X patches, see webpage (5)


Acer TM 650 (Radeon M7)

vga=normal plus boot-radeon (webpage(5)) works to get text console
back. But switching to X freezes the computer completely.

X from debian sid. 
XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-10 20041215174925 fabbione@fabbione.net)
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.26 i686 [ELF] 
Build Date: 15 December 2004


I would like to get X running to, but there are no traces in the logfile
whatsoever to be seen. Pity.

So it seems that my laptop does not fall in any of these categories.

Best wishes

Norbert

-------------------------------------------------------------------------------
Norbert Preining <preining AT logic DOT at>                 Università di Siena
sip:preining@at43.tuwien.ac.at                             +43 (0) 59966-690018
gpg DSA: 0x09C5B094      fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
-------------------------------------------------------------------------------
PELUTHO (n.) A South American ball game. The balls are whacked against
a brick wall with a stout wooden bat until the prisoner confesses.
			--- Douglas Adams, The Meaning of Liff

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15 12:12   ` [ACPI] " Lorenzo Colitti
@ 2005-02-15 13:17     ` Alistair John Strachan
  2005-02-15 16:07       ` Lorenzo Colitti
  2005-02-15 15:41     ` Matthew Garrett
  1 sibling, 1 reply; 89+ messages in thread
From: Alistair John Strachan @ 2005-02-15 13:17 UTC (permalink / raw)
  To: Lorenzo Colitti; +Cc: Pavel Machek, ACPI mailing list, kernel list, seife, rjw

On Tuesday 15 Feb 2005 12:12, Lorenzo Colitti wrote:
> Alistair John Strachan wrote:
> > On Monday 14 Feb 2005 21:11, Pavel Machek wrote:
> >>Table of known working systems:
> >>Model                         hack (or "how to do it")
> >>[...]
> >>HP NC6000   s3_bios (2)
> >
> > The above report is incorrect. On 2.6.11-rc4, even with the s3_bios
> > option, the NC6000 (which I own) still does not wake up from S3 sleep.
> > The wiki linked somewhere else in this thread also identifies these
> > machines as not working.
>
> I beg to differ: it works for me on 2.6.11-rc3 (even with the swsusp2
> patch). However, I need to use acpi_sleep=s3_bios, and I can't use
> radeonfb or it will lock up on resume.
>
> .config attached.
>

As recommended elsewhere in this thread, I'm not using any sort of framebuffer 
driver, but vesafb IS compiled in (but no vga= option is present). Does it 
need to be compiled out completely?

I have acpi_sleep=s3_bios on cmdline. I am not using swsusp2 (and I can't see 
how this is at all related to software suspend).

Perhaps it is the machine BIOS. Which version do you have?

-- 
Cheers,
Alistair.

personal:   alistair()devzero!co!uk
university: s0348365()sms!ed!ac!uk
student:    CS/CSim Undergraduate
contact:    1F2 55 South Clerk Street,
            Edinburgh. EH8 9PP.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 12:55 ` [ACPI] " Norbert Preining
@ 2005-02-15 13:17   ` Karol Kozimor
  2005-02-15 16:09   ` Carl-Daniel Hailfinger
  1 sibling, 0 replies; 89+ messages in thread
From: Karol Kozimor @ 2005-02-15 13:17 UTC (permalink / raw)
  To: Norbert Preining; +Cc: Pavel Machek, ACPI mailing list, kernel list, seife, rjw

Thus wrote Norbert Preining:
> vga=normal plus boot-radeon (webpage(5)) works to get text console
> back. But switching to X freezes the computer completely.
> 
> X from debian sid. 
> XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-10 20041215174925 fabbione@fabbione.net)
> Release Date: 15 August 2003

Get a recent X version, 4.4, 6.7.0 or 6.8.2 will do. Alternatively, disable
DRI.
Best regards,

-- 
Karol 'sziwan' Kozimor
sziwan@hell.org.pl

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15 12:12   ` [ACPI] " Lorenzo Colitti
  2005-02-15 13:17     ` Alistair John Strachan
@ 2005-02-15 15:41     ` Matthew Garrett
  2005-02-15 16:15       ` Lorenzo Colitti
  2005-02-15 16:16       ` Lorenzo Colitti
  1 sibling, 2 replies; 89+ messages in thread
From: Matthew Garrett @ 2005-02-15 15:41 UTC (permalink / raw)
  To: Lorenzo Colitti
  Cc: Alistair John Strachan, Pavel Machek, ACPI mailing list,
	kernel list, seife, rjw

On Tue, 2005-02-15 at 13:12 +0100, Lorenzo Colitti wrote:

> I beg to differ: it works for me on 2.6.11-rc3 (even with the swsusp2 
> patch). However, I need to use acpi_sleep=s3_bios, and I can't use 
> radeonfb or it will lock up on resume.

Could you grab dmidecode from http://www.nongnu.org/dmidecode/ and
provide the output? It'd be interesting to compare working with
non-working machines. It might also be good to see lspci and acpidmp
output.

-- 
Matthew Garrett | mjg59@srcf.ucam.org


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-02-15  6:05 ` Alistair John Strachan
  2005-02-15 12:12   ` [ACPI] " Lorenzo Colitti
@ 2005-02-15 16:05   ` Stefan Seyfried
  1 sibling, 0 replies; 89+ messages in thread
From: Stefan Seyfried @ 2005-02-15 16:05 UTC (permalink / raw)
  To: Alistair John Strachan; +Cc: Pavel Machek, ACPI mailing list, kernel list, rjw

Alistair John Strachan wrote:
> On Monday 14 Feb 2005 21:11, Pavel Machek wrote:
> [snip]
>>Table of known working systems:
>>
>>Model                           hack (or "how to do it")
>>---------------------------------------------------------------------------
>>--- IBM TP R32 / Type 2658-MMG      none (1)
>>Athlon HP Omnibook XE3		none (1)
>>Compaq Armada E500 - P3-700     none (1) (S1 also works OK)
>>IBM t41p			none (1)
>>Athlon64 desktop prototype	s3_bios (2)
>>HP NC6000			s3_bios (2)
> 
> The above report is incorrect. On 2.6.11-rc4, even with the s3_bios option, 
> the NC6000 (which I own) still does not wake up from S3 sleep. The wiki 
> linked somewhere else in this thread also identifies these machines as not 
> working.

I just retried it with a nc6000, it worked with "vga=normal
acpi_sleep=s3_bios rw init=/bin/bash".
It did not work from a full blown system including X etc, but this is
probably a driver problem, the machine was sitting in a docking station
which connects everything via USB. Sorry, right now i cannot debug this
further, but it basically works and should not be too hard to get going.

Also, it does not work with vesafb (I have not tried radeonfb)
-- 
Stefan Seyfried, QA / R&D Team Mobile Devices, SUSE LINUX Nürnberg.

"Any ideas, John?"
"Well, surrounding them's out."

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15 13:17     ` Alistair John Strachan
@ 2005-02-15 16:07       ` Lorenzo Colitti
  0 siblings, 0 replies; 89+ messages in thread
From: Lorenzo Colitti @ 2005-02-15 16:07 UTC (permalink / raw)
  To: s0348365; +Cc: Pavel Machek, ACPI mailing list, kernel list, seife, rjw

Alistair John Strachan wrote:
>>.config attached.
> 
> As recommended elsewhere in this thread, I'm not using any sort of framebuffer 
> driver, but vesafb IS compiled in (but no vga= option is present). Does it 
> need to be compiled out completely?

I don't remember, maybe you can deduce it from the .config I sent?

> I have acpi_sleep=s3_bios on cmdline. I am not using swsusp2 (and I can't see 
> how this is at all related to software suspend).

It works with or without swsusp2.

> Perhaps it is the machine BIOS. Which version do you have?

I think it's vF.0F from July 2004.


Cheers,
Lorenzo

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 12:55 ` [ACPI] " Norbert Preining
  2005-02-15 13:17   ` Karol Kozimor
@ 2005-02-15 16:09   ` Carl-Daniel Hailfinger
  2005-02-15 17:08     ` Norbert Preining
  1 sibling, 1 reply; 89+ messages in thread
From: Carl-Daniel Hailfinger @ 2005-02-15 16:09 UTC (permalink / raw)
  To: Norbert Preining; +Cc: Pavel Machek, ACPI mailing list, kernel list, seife, rjw

Norbert Preining schrieb:
> On Mon, 14 Feb 2005, Pavel Machek wrote:
> 
>>(1) systems where video state is preserved over S3.
>>
>>(2) systems where it is possible to call video bios during S3
>>  resume. Unfortunately, it is not correct to call video BIOS at that
>>  point, but it happens to work on some machines. Use
>>  acpi_sleep=s3_bios.
>>
>>(3) systems that initialize video card into vga text mode and where BIOS
>>  works well enough to be able to set video mode. Use
>>  acpi_sleep=s3_mode on these.
>>
>>(4) on some systems s3_bios kicks video into text mode, and
>>  acpi_sleep=s3_bios,s3_mode is needed.
>>
>>(5) radeon systems, where X can soft-boot your video card. You'll need
>>  patched X, and plain text console (no vesafb or radeonfb), see
>>  http://www.doesi.gmxhome.de/linux/tm800s3/s3.html.
>>
>>(6) other radeon systems, where vbetool is enough to bring system back
>>  to life. Do vbetool vbestate save > /tmp/delme; echo 3 > /proc/acpi/sleep;
>>  vbetool post; vbetool vbestate restore < /tmp/delme; setfont
>>  <whatever>, and your video should work.
>>
>>Acer TM 800			vga=normal, X patches, see webpage (5)
> 
> 
> 
> Acer TM 650 (Radeon M7)
> 
> vga=normal plus boot-radeon (webpage(5)) works to get text console
> back. But switching to X freezes the computer completely.

Please try method (6). It should work perfectly because it is the successor
for method (5) and works even without special patches for X.


> X from debian sid. 
> XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-10 20041215174925 fabbione@fabbione.net)
> Release Date: 15 August 2003
> X Protocol Version 11, Revision 0, Release 6.6
> Build Operating System: Linux 2.4.26 i686 [ELF] 
> Build Date: 15 December 2004
> 
> 
> I would like to get X running to, but there are no traces in the logfile
> whatsoever to be seen. Pity.

First, boot into X and run the following script ONCE:
#!/bin/bash
statedir=/root/s3/state
mkdir -p $statedir
chvt 2
sleep 1
vbetool vbestate save >$statedir/vbe


To suspend and resume properly, call the following script as root:
#!/bin/bash
statedir=/root/s3/state
curcons=`fgconsole`
fuser /dev/tty$curcons 2>/dev/null|xargs ps -o comm= -p|grep -q X && chvt 2
cat /dev/vcsa >$statedir/vcsa
sync
echo 3 >/proc/acpi/sleep
sync
vbetool post
vbetool vbestate restore <$statedir/vbe
cat $statedir/vcsa >/dev/vcsa
rckbd restart
chvt $[curcons%6+1]
chvt $curcons


Unless you change your grahics card or other hardware configuration,
the state once saved will be OK for every resume afterwards.
NOTE: The "rckbd restart" command may be different for your
distribution. Simply replace it with the command you would use to
set the fonts on screen.


> So it seems that my laptop does not fall in any of these categories.

Please try my scripts and resport back.


Regards,
Carl-Daniel
-- 
http://www.hailfinger.org/

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15 15:41     ` Matthew Garrett
@ 2005-02-15 16:15       ` Lorenzo Colitti
  2005-02-15 16:16       ` Lorenzo Colitti
  1 sibling, 0 replies; 89+ messages in thread
From: Lorenzo Colitti @ 2005-02-15 16:15 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Alistair John Strachan, Pavel Machek, ACPI mailing list,
	kernel list, seife, rjw

Matthew Garrett wrote:
>>I beg to differ: it works for me on 2.6.11-rc3 (even with the swsusp2 
>>patch). However, I need to use acpi_sleep=s3_bios, and I can't use 
>>radeonfb or it will lock up on resume.
> 
> Could you grab dmidecode from http://www.nongnu.org/dmidecode/ and
> provide the output? It'd be interesting to compare working with
> non-working machines. It might also be good to see lspci and acpidmp
> output.

Ok, here is the output from dmidecode (Debian package) and from lspci. I 
don't have acpidmp and I don't know where to get it, but if you think 
it's necessary I can download it if you tell me where to find it.


Cheers,
Lorenzo

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15 15:41     ` Matthew Garrett
  2005-02-15 16:15       ` Lorenzo Colitti
@ 2005-02-15 16:16       ` Lorenzo Colitti
  2005-02-15 17:42         ` Alistair John Strachan
  1 sibling, 1 reply; 89+ messages in thread
From: Lorenzo Colitti @ 2005-02-15 16:16 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Alistair John Strachan, Pavel Machek, ACPI mailing list,
	kernel list, seife, rjw

[-- Attachment #1: Type: text/plain, Size: 657 bytes --]

Matthew Garrett wrote:
>>I beg to differ: it works for me on 2.6.11-rc3 (even with the swsusp2 
>>patch). However, I need to use acpi_sleep=s3_bios, and I can't use 
>>radeonfb or it will lock up on resume.
> 
> Could you grab dmidecode from http://www.nongnu.org/dmidecode/ and
> provide the output? It'd be interesting to compare working with
> non-working machines. It might also be good to see lspci and acpidmp
> output.

Ok, here is the output from dmidecode (Debian package) and from lspci. I 
don't have acpidmp and I don't know where to get it, but if you think 
it's necessary I can download it if you tell me where to find it.


Cheers,
Lorenzo


[-- Attachment #2: dmidecode --]
[-- Type: text/plain, Size: 9763 bytes --]

# dmidecode 2.5
SMBIOS 2.3 present.
31 structures occupying 1354 bytes.
Table at 0x000FF2EB.
Handle 0x0000
	DMI type 0, 20 bytes.
	BIOS Information
		Vendor: Hewlett-Packard
		Version: 68BDD Ver. F.0F
		Release Date: 07/23/2004
		Address: 0xE0000
		Runtime Size: 128 kB
		ROM Size: 1024 kB
		Characteristics:
			PCI is supported
			PC Card (PCMCIA) is supported
			PNP is supported
			APM is supported
			BIOS is upgradeable
			BIOS shadowing is allowed
			Boot from CD is supported
			Selectable boot is supported
			EDD is supported
			3.5"/720 KB floppy services are supported (int 13h)
			Print screen service is supported (int 5h)
			8042 keyboard services are supported (int 9h)
			Serial services are supported (int 14h)
			Printer services are supported (int 17h)
			ACPI is supported
			USB legacy is supported
			AGP is supported
			LS-120 boot is supported
			Smart battery is supported
			BIOS boot specification is supported
			Function key-initiated network boot is supported
Handle 0x0001
	DMI type 1, 25 bytes.
	System Information
		Manufacturer: Hewlett-Packard
		Product Name: HP Compaq nc6000 (DJ254A#ABB)   
		Version: F.0F
		Serial Number: XXXXXXXXXX                      
		UUID: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
		Wake-up Type: Power Switch
Handle 0x0002
	DMI type 2, 8 bytes.
	Base Board Information
		Manufacturer: Hewlett-Packard
		Product Name: 0890
		Version: 8051 Version 1A.19
		Serial Number: Not Specified
Handle 0x0003
	DMI type 3, 13 bytes.
	Chassis Information
		Manufacturer: Hewlett-Packard
		Type: Notebook
		Lock: Not Present
		Version: Not Specified
		Serial Number: XXXXXXXXXX                      
		Asset Tag:                 
		Boot-up State: Safe
		Power Supply State: Safe
		Thermal State: Safe
		Security Status: External Interface Enabled
Handle 0x0004
	DMI type 4, 35 bytes.
	Processor Information
		Socket Designation: U10
		Type: Central Processor
		Family: Pentium M
		Manufacturer: Intel(R)
		ID: XX XX XX XX XX XX XX XX
		Signature: Type 0, Family 6, Model 9, Stepping 5
		Flags:
			FPU (Floating-point unit on-chip)
			VME (Virtual mode extension)
			DE (Debugging extension)
			PSE (Page size extension)
			TSC (Time stamp counter)
			MSR (Model specific registers)
			MCE (Machine check exception)
			CX8 (CMPXCHG8 instruction supported)
			SEP (Fast system call)
			MTRR (Memory type range registers)
			PGE (Page global enable)
			MCA (Machine check architecture)
			CMOV (Conditional move instruction supported)
			PAT (Page attribute table)
			CLFSH (CLFLUSH instruction supported)
			DS (Debug store)
			ACPI (ACPI supported)
			MMX (MMX technology supported)
			FXSR (Fast floating-point save and restore)
			SSE (Streaming SIMD extensions)
			SSE2 (Streaming SIMD extensions 2)
			TM (Thermal monitor supported)
			SBF (Signal break on FERR)
		Version: Intel(R) Pentium(R) M processor 1400MHz        
		Voltage: 1.8 V
		External Clock: 100 MHz
		Max Speed: 1400 MHz
		Current Speed: 1400 MHz
		Status: Populated, Enabled
		Upgrade: None
		L1 Cache Handle: 0x0005
		L2 Cache Handle: 0x0006
		L3 Cache Handle: Not Provided
		Serial Number: Not Specified
		Asset Tag: Not Specified
		Part Number: Not Specified
Handle 0x0005
	DMI type 7, 19 bytes.
	Cache Information
		Socket Designation: Internal L1 Cache
		Configuration: Enabled, Not Socketed, Level 1
		Operational Mode: Write Back
		Location: Internal
		Installed Size: 64 KB
		Maximum Size: 64 KB
		Supported SRAM Types:
			Burst
		Installed SRAM Type: Burst
		Speed: Unknown
		Error Correction Type: Unknown
		System Type: Unified
		Associativity: 4-way Set-associative
Handle 0x0006
	DMI type 7, 19 bytes.
	Cache Information
		Socket Designation: Internal L2 Cache
		Configuration: Enabled, Not Socketed, Level 2
		Operational Mode: Write Back
		Location: External
		Installed Size: 1024 KB
		Maximum Size: 1024 KB
		Supported SRAM Types:
			Burst
		Installed SRAM Type: Burst
		Speed: Unknown
		Error Correction Type: None
		System Type: Unified
		Associativity: 4-way Set-associative
Handle 0x0007
	DMI type 9, 13 bytes.
	System Slot Information
		Designation: PC CARD-Slot 0
		Type: 32-bit PC Card (PCMCIA)
		Current Usage: Available
		Length: Short
		ID: Adapter 0, Socket 0
		Characteristics:
			5.0 V is provided
			3.3 V is provided
			PC Card-16 is supported
			Cardbus is supported
			Modem ring resume is supported
			PME signal is supported
Handle 0x0008
	DMI type 11, 5 bytes.
	OEM Strings
		String 1: www.compaq.com
Handle 0x0009
	DMI type 13, 22 bytes.
	BIOS Language Information
		Installable Languages: 1
			en|US|iso8859-1
		Currently Installed Language: en|US|iso8859-1
Handle 0x000A
	DMI type 16, 15 bytes.
	Physical Memory Array
		Location: System Board Or Motherboard
		Use: System Memory
		Error Correction Type: None
		Maximum Capacity: 1 GB
		Error Information Handle: No Error
		Number Of Devices: 2
Handle 0x000B
	DMI type 16, 15 bytes.
	Physical Memory Array
		Location: System Board Or Motherboard
		Use: Flash Memory
		Error Correction Type: None
		Maximum Capacity: 1 MB
		Error Information Handle: Not Provided
		Number Of Devices: 1
Handle 0x000C
	DMI type 17, 27 bytes.
	Memory Device
		Array Handle: 0x000A
		Error Information Handle: No Error
		Total Width: 64 bits
		Data Width: 64 bits
		Size: 256 MB
		Form Factor: SODIMM
		Set: None
		Locator: DIMM #1
		Bank Locator: 030B2C25
		Type: DDR
		Type Detail: Synchronous
		Speed: 142 MHz (7.0 ns)
		Manufacturer: Not Specified
		Serial Number: Not Specified
		Asset Tag: Not Specified
		Part Number: Not Specified
Handle 0x000D
	DMI type 17, 27 bytes.
	Memory Device
		Array Handle: 0x000A
		Error Information Handle: No Error
		Total Width: 64 bits
		Data Width: 64 bits
		Size: 256 MB
		Form Factor: SODIMM
		Set: None
		Locator: DIMM #2
		Bank Locator: 051FD180
		Type: DDR
		Type Detail: Synchronous
		Speed: 142 MHz (7.0 ns)
		Manufacturer: Not Specified
		Serial Number: XXXXXXXXXXXX-XXXXX
		Asset Tag: Not Specified
		Part Number: Not Specified
Handle 0x000E
	DMI type 17, 27 bytes.
	Memory Device
		Array Handle: 0x000B
		Error Information Handle: Not Provided
		Total Width: 8 bits
		Data Width: 8 bits
		Size: 1024 kB
		Form Factor: Chip
		Set: None
		Locator: SST49F008A
		Bank Locator: Not Specified
		Type: Flash
		Type Detail: Non-Volatile
		Speed: Unknown
		Manufacturer: Not Specified
		Serial Number: Not Specified
		Asset Tag: Not Specified
		Part Number: Not Specified
Handle 0x000F
	DMI type 19, 15 bytes.
	Memory Array Mapped Address
		Starting Address: 0x00000000000
		Ending Address: 0x0001FFFFFFF
		Range Size: 512 MB
		Physical Array Handle: 0x000A
		Partition Width: 0
Handle 0x0010
	DMI type 19, 15 bytes.
	Memory Array Mapped Address
		Starting Address: 0x000FFFF0000
		Ending Address: 0x001000003FF
		Range Size: 65 kB
		Physical Array Handle: 0x000B
		Partition Width: 0
Handle 0x0011
	DMI type 20, 19 bytes.
	Memory Device Mapped Address
		Starting Address: 0x00000000000
		Ending Address: 0x0000FFFFFFF
		Range Size: 256 MB
		Physical Device Handle: 0x000C
		Memory Array Mapped Address Handle: 0x000F
		Partition Row Position: 1
Handle 0x0012
	DMI type 20, 19 bytes.
	Memory Device Mapped Address
		Starting Address: 0x00010000000
		Ending Address: 0x0001FFFFFFF
		Range Size: 256 MB
		Physical Device Handle: 0x000D
		Memory Array Mapped Address Handle: 0x000F
		Partition Row Position: 2
Handle 0x0013
	DMI type 20, 19 bytes.
	Memory Device Mapped Address
		Starting Address: 0x000FFFF0000
		Ending Address: 0x001000003FF
		Range Size: 65 kB
		Physical Device Handle: 0x000E
		Memory Array Mapped Address Handle: 0x0010
		Partition Row Position: 1
Handle 0x0014
	DMI type 21, 7 bytes.
	Built-in Pointing Device
		Type: Touch Pad
		Interface: PS/2
		Buttons: 2
Handle 0x0015
	DMI type 22, 26 bytes.
	Portable Battery
		Location: Primary
		Manufacturer: Hewlett-Packard
		Manufacture Date: 12/12/2003
		Serial Number: 00001       
		Name: Not Specified
		Chemistry: Lithium Ion
		Design Capacity: 2700 mWh
		Design Voltage: 14400 mV
		SBDS Version: Not Specified
		Maximum Error: 0%
		OEM-specific Information: 0x00000000
Handle 0x0016
	DMI type 126, 26 bytes.
	Inactive
Handle 0x0017
	DMI type 24, 5 bytes.
	Hardware Security
		Power-On Password Status: Disabled
		Keyboard Password Status: Disabled
		Administrator Password Status: Disabled
		Front Panel Reset Status: Not Implemented
Handle 0x0018
	DMI type 28, 20 bytes.
	Temperature Probe
		Description: Not Specified
		Location: Processor
		Status: OK
		Maximum Value: 100.0 deg C
		Minimum Value 0.0 deg C
		Resolution: Unknown
		Tolerance: Unknown
		Accuracy: Unknown
		OEM-specific Information: 0x00000000
Handle 0x0019
	DMI type 28, 20 bytes.
	Temperature Probe
		Description: Not Specified
		Location: Add-in Card
		Status: OK
		Maximum Value: 100.0 deg C
		Minimum Value 0.0 deg C
		Resolution: Unknown
		Tolerance: Unknown
		Accuracy: Unknown
		OEM-specific Information: 0x00000000
Handle 0x001A
	DMI type 32, 11 bytes.
	System Boot Information
		Status: No errors detected
Handle 0x0080
	DMI type 128, 114 bytes.
	OEM-specific Type
		Header and Data:
			80 72 80 00 21 4B 45 4E 01 10 44 00 0C 00 00 00
			00 00 00 00 02 00 00 00 00 82 02 14 00 01 02 03
			04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 10 11 12 13
			03 20 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D
			0E 0F 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D
			1E 1F 04 12 00 01 02 03 04 05 06 07 08 09 0A 0B
			0C 0D 0E 0F 10 11 09 0A 00 00 00 64 64 00 00 00
			64 64
Handle 0x0085
	DMI type 133, 34 bytes.
	OEM-specific Type
		Header and Data:
			85 22 85 00 01 30 11 1F 0D CE 0B 02 00 6E 00 15
			00 24 30 B2 00 5C 2B 02 80 00 00 00 0D 10 13 10
			05 10
		Strings:
			00001 12/12/2003
			HP                
Handle 0x0086
	DMI type 126, 34 bytes.
	Inactive
Handle 0x001B
	DMI type 127, 4 bytes.
	End Of Table

[-- Attachment #3: lspci --]
[-- Type: text/plain, Size: 1791 bytes --]

0000:00:00.0 Host bridge: Intel Corp. 82855PM Processor to I/O Controller (rev 03)
0000:00:01.0 PCI bridge: Intel Corp. 82855PM Processor to AGP Controller (rev 03)
0000:00:1d.0 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 03)
0000:00:1d.1 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 03)
0000:00:1d.2 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 03)
0000:00:1d.7 USB Controller: Intel Corp. 82801DB/DBM (ICH4/ICH4-M) USB 2.0 EHCI Controller (rev 03)
0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev 83)
0000:00:1f.0 ISA bridge: Intel Corp. 82801DBM LPC Interface Controller (rev 03)
0000:00:1f.1 IDE interface: Intel Corp. 82801DBM (ICH4) Ultra ATA Storage Controller (rev 03)
0000:00:1f.3 SMBus: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller (rev 03)
0000:00:1f.5 Multimedia audio controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 03)
0000:00:1f.6 Modem: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller (rev 03)
0000:01:00.0 VGA compatible controller: ATI Technologies Inc RV350 [Mobility Radeon 9600 M10]
0000:02:04.0 Ethernet controller: Atheros Communications, Inc. AR5212 802.11abg NIC (rev 01)
0000:02:06.0 CardBus bridge: O2 Micro, Inc. OZ711M3 SmartCardBus MultiMediaBay Controller
0000:02:06.1 CardBus bridge: O2 Micro, Inc. OZ711M3 SmartCardBus MultiMediaBay Controller
0000:02:06.2 System peripheral: O2 Micro, Inc. OZ711Mx MultiMediaBay Accelerator
0000:02:06.3 CardBus bridge: O2 Micro, Inc. OZ711M3 SmartCardBus MultiMediaBay Controller
0000:02:0e.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5705M_2 Gigabit Ethernet (rev 03)

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (3 preceding siblings ...)
  2005-02-15 12:55 ` [ACPI] " Norbert Preining
@ 2005-02-15 16:31 ` Vernon Mauery
  2005-02-15 21:28 ` Henrik Brix Andersen
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 89+ messages in thread
From: Vernon Mauery @ 2005-02-15 16:31 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

Pavel Machek wrote:

> 
> Table of known working systems:
> 
> Model                           hack (or "how to do it")
> ------------------------------------------------------------------------------
> IBM TP R32 / Type 2658-MMG      none (1)
IBM TP T40 / Type 2373-MU4          none (1)
IBM TP R50p / Type 1832-22U         s3_bios (2)
> Athlon HP Omnibook XE3		none (1)
> Compaq Armada E500 - P3-700     none (1) (S1 also works OK)
> IBM t41p			none (1)

--Vernon

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 16:09   ` Carl-Daniel Hailfinger
@ 2005-02-15 17:08     ` Norbert Preining
  2005-02-15 18:57       ` Carl-Daniel Hailfinger
                         ` (4 more replies)
  0 siblings, 5 replies; 89+ messages in thread
From: Norbert Preining @ 2005-02-15 17:08 UTC (permalink / raw)
  To: Carl-Daniel Hailfinger
  Cc: Pavel Machek, ACPI mailing list, kernel list, seife, rjw

On Die, 15 Feb 2005, Carl-Daniel Hailfinger wrote:
> To suspend and resume properly, call the following script as root:

Success. 

After deactivating DRI in the X config file and saving the states with
your script (thanks) and turning off various stuff I get X running
again.

Questions:
- DRI must be disabled I guess?! Even with newer X server (x.org)?
- I dont have to restore the font, it is back without any problem
  (I have vga console)
- Sometimes I have to make a Sysrq-s (sync) to get some stuff running
  (eg logging in from the console hangs after input of passwd, calling
  sysrq-s makes it continue). I had a similar effect when logging in
  AFTER resuming (for the resume I had only gdm running but wasn't
  logged in) the GNOME starting screen stayed there indefinitely, no
  change. Even after restarting the X server and retrying.
  Logging in with twm session DID work without any problem.
  Do you have any idea what this could be?
- My script is a bit more complicated: stopping: hotplug, mysql,
  ifplugd, waproamd, cpufreqd, acpid, ifdown eth0, eth1, rmmod acerhk
  echo "performance" onto governor, then going to sleepand doing
  more or less the reverse stuff after waking up.
  DO you have any experience with hotplug network etc stuff, working
  even without stopping?

Thanks a lot.

Best wishes

Norbert

-------------------------------------------------------------------------------
Norbert Preining <preining AT logic DOT at>                 Università di Siena
sip:preining@at43.tuwien.ac.at                             +43 (0) 59966-690018
gpg DSA: 0x09C5B094      fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
-------------------------------------------------------------------------------
CROMARTY (n.)
The brittle sludge which clings to the top of ketchup bottles and
plastic tomatoes in nasty cafes.
			--- Douglas Adams, The Meaning of Liff

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15 16:16       ` Lorenzo Colitti
@ 2005-02-15 17:42         ` Alistair John Strachan
  2005-02-15 20:43           ` Matthew Garrett
  2005-02-16 14:25           ` Kjartan Maraas
  0 siblings, 2 replies; 89+ messages in thread
From: Alistair John Strachan @ 2005-02-15 17:42 UTC (permalink / raw)
  To: Lorenzo Colitti
  Cc: Matthew Garrett, Pavel Machek, ACPI mailing list, kernel list,
	seife, rjw

On Tuesday 15 Feb 2005 16:16, Lorenzo Colitti wrote:
[snip]
>
> Ok, here is the output from dmidecode (Debian package) and from lspci. I
> don't have acpidmp and I don't know where to get it, but if you think
> it's necessary I can download it if you tell me where to find it.

Find below a diff of my dmidecode output versus Lorenzo's. Nothing much
to call home about.

[alistair] 17:40 [~/dmidecode-2.5] diff -Nudr -U3 lorenzo dmiout
--- lorenzo     2005-02-15 17:37:36.091770768 +0000
+++ dmiout      2005-02-15 17:40:08.801555352 +0000
@@ -1,13 +1,13 @@
 # dmidecode 2.5
 SMBIOS 2.3 present.
 31 structures occupying 1354 bytes.
-Table at 0x000FF2EB.
+Table at 0x000FA1EE.
 Handle 0x0000
        DMI type 0, 20 bytes.
        BIOS Information
                Vendor: Hewlett-Packard
-               Version: 68BDD Ver. F.0F
-               Release Date: 07/23/2004
+               Version: 68BDD Ver. F.11
+               Release Date: 11/22/2004
                Address: 0xE0000
                Runtime Size: 128 kB
                ROM Size: 1024 kB
@@ -37,10 +37,10 @@
        DMI type 1, 25 bytes.
        System Information
                Manufacturer: Hewlett-Packard
-               Product Name: HP Compaq nc6000 (DJ254A#ABB)
-               Version: F.0F
-               Serial Number: XXXXXXXXXX
-               UUID: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
+               Product Name: HP Compaq nc6000 (PK522PS#UUF)
+               Version: F.11
+               Serial Number: <censored>
+               UUID: <censored>
                Wake-up Type: Power Switch
 Handle 0x0002
        DMI type 2, 8 bytes.
@@ -52,11 +52,11 @@
 Handle 0x0003
        DMI type 3, 13 bytes.
        Chassis Information
-               Manufacturer: Hewlett-Packard
+               Manufacturer: Hewlett-Packard
                Type: Notebook
                Lock: Not Present
                Version: Not Specified
-               Serial Number: XXXXXXXXXX
+               Serial Number: <censored>
                Asset Tag:
                Boot-up State: Safe
                Power Supply State: Safe
@@ -69,8 +69,8 @@
                Type: Central Processor
                Family: Pentium M
                Manufacturer: Intel(R)
-               ID: XX XX XX XX XX XX XX XX
-               Signature: Type 0, Family 6, Model 9, Stepping 5
+               ID: D6 06 00 00 BF F9 E9 AF
+               Signature: Type 0, Family 6, Model 13, Stepping 6
                Flags:
                        FPU (Floating-point unit on-chip)
                        VME (Virtual mode extension)
@@ -93,13 +93,14 @@
                        FXSR (Fast floating-point save and restore)
                        SSE (Streaming SIMD extensions)
                        SSE2 (Streaming SIMD extensions 2)
+                       SS (Self-snoop)
                        TM (Thermal monitor supported)
                        SBF (Signal break on FERR)
-               Version: Intel(R) Pentium(R) M processor 1400MHz
+               Version: Intel(R) Pentium(R) M processor 1.60GHz
                Voltage: 1.8 V
                External Clock: 100 MHz
-               Max Speed: 1400 MHz
-               Current Speed: 1400 MHz
+               Max Speed: 1600 MHz
+               Current Speed: 1600 MHz
                Status: Populated, Enabled
                Upgrade: None
                L1 Cache Handle: 0x0005
@@ -131,8 +132,8 @@
                Configuration: Enabled, Not Socketed, Level 2
                Operational Mode: Write Back
                Location: External
-               Installed Size: 1024 KB
-               Maximum Size: 1024 KB
+               Installed Size: 2048 KB
+               Maximum Size: 2048 KB
                Supported SRAM Types:
                        Burst
                Installed SRAM Type: Burst
@@ -194,7 +195,7 @@
                Form Factor: SODIMM
                Set: None
                Locator: DIMM #1
-               Bank Locator: 030B2C25
+               Bank Locator: 6605F934
                Type: DDR
                Type Detail: Synchronous
                Speed: 142 MHz (7.0 ns)
@@ -213,12 +214,12 @@
                Form Factor: SODIMM
                Set: None
                Locator: DIMM #2
-               Bank Locator: 051FD180
+               Bank Locator: 0322BB20
                Type: DDR
                Type Detail: Synchronous
                Speed: 142 MHz (7.0 ns)
                Manufacturer: Not Specified
-               Serial Number: XXXXXXXXXXXX-XXXXX
+               Serial Number: <censored>
                Asset Tag: Not Specified
                Part Number: Not Specified
 Handle 0x000E
@@ -294,8 +295,8 @@
        Portable Battery
                Location: Primary
                Manufacturer: Hewlett-Packard
-               Manufacture Date: 12/12/2003
-               Serial Number: 00001
+               Manufacture Date: 08/20/2004
+               Serial Number: 01726
                Name: Not Specified
                Chemistry: Lithium Ion
                Design Capacity: 2700 mWh
@@ -357,11 +358,11 @@
        DMI type 133, 34 bytes.
        OEM-specific Type
                Header and Data:
-                       85 22 85 00 01 30 11 1F 0D CE 0B 02 00 6E 00 15
-                       00 24 30 B2 00 5C 2B 02 80 00 00 00 0D 10 13 10
-                       05 10
+                       85 22 85 00 01 30 11 84 0E 84 0E 04 00 20 00 17
+                       00 C8 2F 91 F8 5C 2B 02 C0 00 00 00 F2 0F F7 0F
+                       DF 0F
                Strings:
-                       00001 12/12/2003
+                       01726 08/20/2004
                        HP
 Handle 0x0086
        DMI type 126, 34 bytes.

[root] 17:41 [/home/alistair/dmidecode-2.5] lspci
00:00.0 Host bridge: Intel Corp. 82855PM Processor to I/O Controller (rev 03)
00:01.0 PCI bridge: Intel Corp. 82855PM Processor to AGP Controller (rev 03)
00:1d.0 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 03)
00:1d.1 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 03)
00:1d.2 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 03)
00:1d.7 USB Controller: Intel Corp. 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI Controller (rev 03)
00:1e.0 PCI bridge: Intel Corp. 82801 Mobile PCI Bridge (rev 83)
00:1f.0 ISA bridge: Intel Corp. 82801DBM (ICH4-M) LPC Interface Bridge (rev 03)
00:1f.1 IDE interface: Intel Corp. 82801DBM (ICH4-M) IDE Controller (rev 03)
00:1f.3 SMBus: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller (rev 03)
00:1f.5 Multimedia audio controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 03)
00:1f.6 Modem: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller (rev 03)
01:00.0 VGA compatible controller: ATI Technologies Inc RV350 [Mobility Radeon 9600 M10]
02:04.0 Network controller: Intel Corp. PRO/Wireless 2200BG (rev 05)
02:06.0 CardBus bridge: O2 Micro, Inc. OZ711M3 SmartCardBus MultiMediaBay Controller
02:06.1 CardBus bridge: O2 Micro, Inc. OZ711M3 SmartCardBus MultiMediaBay Controller
02:06.2 System peripheral: O2 Micro, Inc. OZ711Mx MultiMediaBay Accelerator
02:06.3 CardBus bridge: O2 Micro, Inc. OZ711M3 SmartCardBus MultiMediaBay Controller
02:0e.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5705M_2 Gigabit Ethernet (rev 03)

-- 
Cheers,
Alistair.

personal:   alistair()devzero!co!uk
university: s0348365()sms!ed!ac!uk
student:    CS/CSim Undergraduate
contact:    1F2 55 South Clerk Street,
            Edinburgh. EH8 9PP.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 17:08     ` Norbert Preining
@ 2005-02-15 18:57       ` Carl-Daniel Hailfinger
  2005-02-15 20:21         ` Matthew Garrett
  2005-02-16  9:51         ` Norbert Preining
  2005-02-15 19:37       ` Stefan Dösinger
                         ` (3 subsequent siblings)
  4 siblings, 2 replies; 89+ messages in thread
From: Carl-Daniel Hailfinger @ 2005-02-15 18:57 UTC (permalink / raw)
  To: Norbert Preining; +Cc: Pavel Machek, ACPI mailing list, kernel list, seife, rjw

Norbert Preining schrieb:
> On Die, 15 Feb 2005, Carl-Daniel Hailfinger wrote:
> 
>>To suspend and resume properly, call the following script as root:
> 
> 
> Success. 

Great!


> After deactivating DRI in the X config file and saving the states with
> your script (thanks) and turning off various stuff I get X running
> again.
> 
> Questions:
> - DRI must be disabled I guess?! Even with newer X server (x.org)?

I never disabled it.

> - I dont have to restore the font, it is back without any problem
>   (I have vga console)

Good. I guess that's highly chipset-specific.

> - Sometimes I have to make a Sysrq-s (sync) to get some stuff running
>   (eg logging in from the console hangs after input of passwd, calling
>   sysrq-s makes it continue). I had a similar effect when logging in
>   AFTER resuming (for the resume I had only gdm running but wasn't
>   logged in) the GNOME starting screen stayed there indefinitely, no
>   change. Even after restarting the X server and retrying.
>   Logging in with twm session DID work without any problem.
>   Do you have any idea what this could be?

Pavel?

> - My script is a bit more complicated: stopping: hotplug, mysql,
>   ifplugd, waproamd, cpufreqd, acpid, ifdown eth0, eth1, rmmod acerhk
>   echo "performance" onto governor, then going to sleepand doing
>   more or less the reverse stuff after waking up.
>   DO you have any experience with hotplug network etc stuff, working
>   even without stopping?

I used to unload modules, shutdown network interfaces etc. until I
tried without all that stuff and it still worked. So I concluded
that stopping things before suspend was a thing only needed with
older kernels. Granted, mounted volumes on USB or IEEE1394 still
have problems because the kernel doesn't expect them to disappear
for a few moments, but that's nothing a module unload would fix.
Simply umount all external drives and use my script. Drivers which
still need to be unloaded and reloaded are buggy and have to be
fixed.

I'll prepare a web page with detailed S3/S4 suspend/resume
information for ATI graphics card owners including step-by-step
howtos for smooth suspend/resume cycles.

Kendall Bennett is working with me to get suspend/resume working
even with framebuffers. Once we have results, I'll post them here.


Regards,
Carl-Daniel
-- 
http://www.hailfinger.org/

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 17:08     ` Norbert Preining
  2005-02-15 18:57       ` Carl-Daniel Hailfinger
@ 2005-02-15 19:37       ` Stefan Dösinger
  2005-02-17 11:06         ` Norbert Preining
  2005-02-17 19:08         ` Norbert Preining
  2005-02-15 19:47       ` Pavel Machek
                         ` (2 subsequent siblings)
  4 siblings, 2 replies; 89+ messages in thread
From: Stefan Dösinger @ 2005-02-15 19:37 UTC (permalink / raw)
  To: acpi-devel
  Cc: Norbert Preining, Carl-Daniel Hailfinger, Pavel Machek,
	kernel list, seife, rjw

Am Dienstag, 15. Februar 2005 18:08 schrieb Norbert Preining:
> On Die, 15 Feb 2005, Carl-Daniel Hailfinger wrote:
> > To suspend and resume properly, call the following script as root:
>
> Success.
>
> After deactivating DRI in the X config file and saving the states with
> your script (thanks) and turning off various stuff I get X running
> again.
>
> Questions:
> - DRI must be disabled I guess?! Even with newer X server (x.org)?
Do you use the fglrx driver? This doesn't work with any type of suspend so 
far. If you use the radeon driver try a driver update.

Stefan

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 17:08     ` Norbert Preining
  2005-02-15 18:57       ` Carl-Daniel Hailfinger
  2005-02-15 19:37       ` Stefan Dösinger
@ 2005-02-15 19:47       ` Pavel Machek
  2005-02-17 19:09         ` Norbert Preining
  2005-02-16  9:34       ` Romano Giannetti
  2005-02-22 22:08       ` Karol Kozimor
  4 siblings, 1 reply; 89+ messages in thread
From: Pavel Machek @ 2005-02-15 19:47 UTC (permalink / raw)
  To: Norbert Preining
  Cc: Carl-Daniel Hailfinger, ACPI mailing list, kernel list, seife, rjw

Hi!

> - Sometimes I have to make a Sysrq-s (sync) to get some stuff running
>   (eg logging in from the console hangs after input of passwd, calling
>   sysrq-s makes it continue). I had a similar effect when logging in
>   AFTER resuming (for the resume I had only gdm running but wasn't
>   logged in) the GNOME starting screen stayed there indefinitely, no
>   change. Even after restarting the X server and retrying.
>   Logging in with twm session DID work without any problem.
>   Do you have any idea what this could be?

Does it happen with swsusp? Is it in any way reproducible? Maybe
commenting out refrigerator would help....

								Pavel
-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 18:57       ` Carl-Daniel Hailfinger
@ 2005-02-15 20:21         ` Matthew Garrett
  2005-02-15 22:40           ` Carl-Daniel Hailfinger
  2005-02-16  9:51         ` Norbert Preining
  1 sibling, 1 reply; 89+ messages in thread
From: Matthew Garrett @ 2005-02-15 20:21 UTC (permalink / raw)
  To: Carl-Daniel Hailfinger
  Cc: Norbert Preining, Pavel Machek, ACPI mailing list, kernel list,
	seife, rjw

On Tue, 2005-02-15 at 19:57 +0100, Carl-Daniel Hailfinger wrote:

> Kendall Bennett is working with me to get suspend/resume working
> even with framebuffers. Once we have results, I'll post them here.

I've had success using vesafb with vbetool state restoration. vga16fb
ought to work fairly happily.

-- 
Matthew Garrett | mjg59@srcf.ucam.org


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15 17:42         ` Alistair John Strachan
@ 2005-02-15 20:43           ` Matthew Garrett
  2005-02-15 21:09             ` Lorenzo Colitti
  2005-02-16 14:25           ` Kjartan Maraas
  1 sibling, 1 reply; 89+ messages in thread
From: Matthew Garrett @ 2005-02-15 20:43 UTC (permalink / raw)
  To: Alistair John Strachan
  Cc: Lorenzo Colitti, Pavel Machek, ACPI mailing list, kernel list,
	seife, rjw

On Tue, 2005-02-15 at 17:42 +0000, Alistair John Strachan wrote:

>                 Vendor: Hewlett-Packard
> -               Version: 68BDD Ver. F.0F
> -               Release Date: 07/23/2004
> +               Version: 68BDD Ver. F.11
> +               Release Date: 11/22/2004

Ok, so you both have different BIOS versions and different CPUs.
Everything else looks pretty identical. Could you both
stick /proc/acpi/dsdt up somewhere so I can check if there are any
relevant looking differences?

Thanks,
-- 
Matthew Garrett | mjg59@srcf.ucam.org


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15 20:43           ` Matthew Garrett
@ 2005-02-15 21:09             ` Lorenzo Colitti
  2005-02-16  1:41               ` Alistair John Strachan
  0 siblings, 1 reply; 89+ messages in thread
From: Lorenzo Colitti @ 2005-02-15 21:09 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Alistair John Strachan, Pavel Machek, ACPI mailing list,
	kernel list, seife, rjw

Matthew Garrett wrote:
>>                Vendor: Hewlett-Packard
>>-               Version: 68BDD Ver. F.0F
>>-               Release Date: 07/23/2004
>>+               Version: 68BDD Ver. F.11
>>+               Release Date: 11/22/2004
> 
> 
> Ok, so you both have different BIOS versions and different CPUs.

S3 works for me with both BIOS F.0F, which I was using before, and F.11, 
which I flashed today after learning it existed.

> Everything else looks pretty identical. Could you both
> stick /proc/acpi/dsdt up somewhere so I can check if there are any
> relevant looking differences?

I would advise trying to compile a custom kernel from scratch with my 
.config first.

I got S3 working first with a very basic kernel config, but I couldn't 
get it to work with my usual kernel. Assuming it was some feature that 
caused the problem, I started disabling features in the hope of getting 
it to work, but I ended up with two different kernels with seemingly 
irrelevant differences, of which one would succesfully resume and one 
wouldn't. So I started added features to the other kernel, and I never 
found out what caused the problem.

I'm not saying that this is not deterministic, but I am saying that, at 
least in my case, it's not obvious what it is that stops S3 from 
working. :-)


Cheers,
Lorenzo

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (4 preceding siblings ...)
  2005-02-15 16:31 ` Vernon Mauery
@ 2005-02-15 21:28 ` Henrik Brix Andersen
  2005-02-16  5:54 ` Stefan Schweizer
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 89+ messages in thread
From: Henrik Brix Andersen @ 2005-02-15 21:28 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

[-- Attachment #1: Type: text/plain, Size: 797 bytes --]

Hi,

On Mon, 2005-02-14 at 22:11 +0100, Pavel Machek wrote:
> Stefan provided me initial list of machines where S3 works (including
> video). If you have machine that is not on the list, please send me a
> diff. If you have eMachines... I'd like you to try playing with
> vbetool (it worked for me), and if it works for you supplying right
> model numbers.

I have S3 working with 2.6.11-rc4 here:

Model                           hack (or "how to do it")
------------------------------------------------------------------------------
IBM TP X31 / Type 2672-XXH      LCD backlight must be turned off 
                                manually using radeontool [1]

Sincerely,
Brix

[1]: http://fdd.com/software/radeon/
-- 
Henrik Brix Andersen <brix@gentoo.org>
Gentoo Linux

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 20:21         ` Matthew Garrett
@ 2005-02-15 22:40           ` Carl-Daniel Hailfinger
  0 siblings, 0 replies; 89+ messages in thread
From: Carl-Daniel Hailfinger @ 2005-02-15 22:40 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Norbert Preining, Pavel Machek, ACPI mailing list, kernel list,
	seife, rjw

Matthew Garrett schrieb:
> On Tue, 2005-02-15 at 19:57 +0100, Carl-Daniel Hailfinger wrote:
> 
> 
>>Kendall Bennett is working with me to get suspend/resume working
>>even with framebuffers. Once we have results, I'll post them here.
> 
> 
> I've had success using vesafb with vbetool state restoration. vga16fb
> ought to work fairly happily.

Well, in my testing the machine deadlocked if any framebuffer was
active during resume. It even deadlocked *before* I could run vbetool.


Regards,
Carl-Daniel
-- 
http://www.hailfinger.org/

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15 21:09             ` Lorenzo Colitti
@ 2005-02-16  1:41               ` Alistair John Strachan
  2005-02-16  1:54                 ` Pavel Machek
  0 siblings, 1 reply; 89+ messages in thread
From: Alistair John Strachan @ 2005-02-16  1:41 UTC (permalink / raw)
  To: Lorenzo Colitti
  Cc: Matthew Garrett, Pavel Machek, ACPI mailing list, kernel list,
	seife, rjw

On Tuesday 15 Feb 2005 21:09, Lorenzo Colitti wrote:
[snip]
> I would advise trying to compile a custom kernel from scratch with my
> .config first.
>
> I got S3 working first with a very basic kernel config, but I couldn't
> get it to work with my usual kernel. Assuming it was some feature that
> caused the problem, I started disabling features in the hope of getting
> it to work, but I ended up with two different kernels with seemingly
> irrelevant differences, of which one would succesfully resume and one
> wouldn't. So I started added features to the other kernel, and I never
> found out what caused the problem.

I took your advice and built your kernel with a few modifications (XFS instead 
of ext, etc.). If I boot the kernel with init=/bin/sh, I can actually 
suspend! Thanks!

I will exhaustively enable and disable drivers tomorrow to figure out which 
one is causing suspend to fail when I do a complete boot. Whatever we find is 
clearly a bug that should be fixed.

It is not the framebuffer driver (I always ran without vesafb or radeonfb), 
and it is not my ipw2200 or USB drivers.

Also, is USB suspend/resume supposed to work? My brief trials involved 
modprobing the USB HCD modules, which still allowed me to suspend/resume, but 
my USB mouse was non-functional on resume.

-- 
Cheers,
Alistair.

personal:   alistair()devzero!co!uk
university: s0348365()sms!ed!ac!uk
student:    CS/CSim Undergraduate
contact:    1F2 55 South Clerk Street,
            Edinburgh. EH8 9PP.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-16  1:41               ` Alistair John Strachan
@ 2005-02-16  1:54                 ` Pavel Machek
  2005-02-16  2:47                   ` Nigel Cunningham
  0 siblings, 1 reply; 89+ messages in thread
From: Pavel Machek @ 2005-02-16  1:54 UTC (permalink / raw)
  To: Alistair John Strachan
  Cc: Lorenzo Colitti, Matthew Garrett, ACPI mailing list, kernel list,
	seife, rjw

Hi!

> > I would advise trying to compile a custom kernel from scratch with my
> > .config first.
> >
> > I got S3 working first with a very basic kernel config, but I couldn't
> > get it to work with my usual kernel. Assuming it was some feature that
> > caused the problem, I started disabling features in the hope of getting
> > it to work, but I ended up with two different kernels with seemingly
> > irrelevant differences, of which one would succesfully resume and one
> > wouldn't. So I started added features to the other kernel, and I never
> > found out what caused the problem.
> 
> I took your advice and built your kernel with a few modifications (XFS instead 
> of ext, etc.). If I boot the kernel with init=/bin/sh, I can actually 
> suspend! Thanks!
> 
> I will exhaustively enable and disable drivers tomorrow to figure out which 
> one is causing suspend to fail when I do a complete boot. Whatever we find is 
> clearly a bug that should be fixed.
> 
> It is not the framebuffer driver (I always ran without vesafb or radeonfb), 
> and it is not my ipw2200 or USB drivers.
> 
> Also, is USB suspend/resume supposed to work? My brief trials involved 
> modprobing the USB HCD modules, which still allowed me to suspend/resume, but 
> my USB mouse was non-functional on resume.

Yes, it seems to work quite okay. You may need to unplug/replug
devices after resume, but it should be basically ok.
								Pavel
-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-16  1:54                 ` Pavel Machek
@ 2005-02-16  2:47                   ` Nigel Cunningham
  2005-02-16  8:30                     ` Romano Giannetti
  0 siblings, 1 reply; 89+ messages in thread
From: Nigel Cunningham @ 2005-02-16  2:47 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Alistair John Strachan, Lorenzo Colitti, Matthew Garrett,
	ACPI mailing list, Linux Kernel Mailing List, seife, rjw

Hi.

On Wed, 2005-02-16 at 12:54, Pavel Machek wrote:
> > Also, is USB suspend/resume supposed to work? My brief trials involved 
> > modprobing the USB HCD modules, which still allowed me to suspend/resume, but 
> > my USB mouse was non-functional on resume.
> 
> Yes, it seems to work quite okay. You may need to unplug/replug
> devices after resume, but it should be basically ok.

We still have plenty of people for whom the best option is to build as
modules, unload prior to suspending and reload afterwards. It seems to
depend on what type your controller is: I do this for uhci_hcd and get
fully functional usb post resume (-rc4).

Regards,

Nigel
-- 
Nigel Cunningham
Software Engineer, Canberra, Australia
http://www.cyclades.com

Ph: +61 (2) 6292 8028      Mob: +61 (417) 100 574


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (5 preceding siblings ...)
  2005-02-15 21:28 ` Henrik Brix Andersen
@ 2005-02-16  5:54 ` Stefan Schweizer
  2005-02-16  8:48   ` Stefan Dösinger
  2005-02-17  6:16 ` Len Brown
                   ` (6 subsequent siblings)
  13 siblings, 1 reply; 89+ messages in thread
From: Stefan Schweizer @ 2005-02-16  5:54 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

Model                           hack (or "how to do it")
------------------------------------------------------------------------------
Acer Aspire 1406LC          ole's radeonfb patch

I have to turn off dri, and then it works with the radeonfb patch. I
use this method because I like the fancy framebuffersplash on booting
.. although I do not reboot often when S3 wors ;)

You can find the patch here:
http://dev.gentoo.org/~marineam/patch-radeonfb-2.6.11-rc2-mm2

or for older kernels:
http://dev.gentoo.org/~genstef/files/radeon-s3-resume-2.6.10.patch

The problems with this patch are:
- you need to press a key to come back from the "resume-console" after resume.
- DRI in X does not work (at least for me with intel-agp, others
reportet it works)
I just disabloed it by not loading intel-agp (hotplug-blacklist)

I have not only issues with video not coming back, but I also need to
append acpi=noirq to my command-line that I am able to finish resuming
and use my devices correctly afterwards.

Regards,
Stefan

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-16  2:47                   ` Nigel Cunningham
@ 2005-02-16  8:30                     ` Romano Giannetti
  0 siblings, 0 replies; 89+ messages in thread
From: Romano Giannetti @ 2005-02-16  8:30 UTC (permalink / raw)
  To: Linux Kernel Mailing List

On Wed, Feb 16, 2005 at 01:47:04PM +1100, Nigel Cunningham wrote:
> Hi.
> 
> On Wed, 2005-02-16 at 12:54, Pavel Machek wrote:
> > > Also, is USB suspend/resume supposed to work? My brief trials involved 
> > > modprobing the USB HCD modules, which still allowed me to suspend/resume, but 
> > > my USB mouse was non-functional on resume.
> > 
> > Yes, it seems to work quite okay. You may need to unplug/replug
> > devices after resume, but it should be basically ok.
> 
> We still have plenty of people for whom the best option is to build as
> modules, unload prior to suspending and reload afterwards. It seems to
> depend on what type your controller is: I do this for uhci_hcd and get
> fully functional usb post resume (-rc4).
> 

I have no problem for USB "stateless" devices. The real problem is when you
do a suspend/resume cycle with a *mounted* usb stick or disk. Upon resume,
the device is found and associated with a diffent block device than before,
and the previous mount point is stuck forever (well, almost forever).
Sometime umount -f works, sometime no, but it is quite irritating that I
need to reboot to have the "good old /dev/sda1" which is in the fstab
working. 

Romano 

-- 
Romano Giannetti             -  Univ. Pontificia Comillas (Madrid, Spain)
Electronic Engineer - phone +34 915 422 800 ext 2416  fax +34 915 596 569

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-16  5:54 ` Stefan Schweizer
@ 2005-02-16  8:48   ` Stefan Dösinger
  2005-02-16 15:06     ` Carl-Daniel Hailfinger
  0 siblings, 1 reply; 89+ messages in thread
From: Stefan Dösinger @ 2005-02-16  8:48 UTC (permalink / raw)
  To: acpi-devel, Stefan Schweizer; +Cc: Pavel Machek, kernel list, seife, rjw


> The problems with this patch are:
> - you need to press a key to come back from the "resume-console" after
> resume. - DRI in X does not work (at least for me with intel-agp, others
> reportet it works)
> I just disabloed it by not loading intel-agp (hotplug-blacklist)
You can force the radeon X driver to use pci mode by setting Option 
"ForcePciMode" to "true" or something simmilar in you X config file. This way 
you can get dri without intel-agp. This is much slower, but enought to play 
tuxracer ;-)

Stefan

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 17:08     ` Norbert Preining
                         ` (2 preceding siblings ...)
  2005-02-15 19:47       ` Pavel Machek
@ 2005-02-16  9:34       ` Romano Giannetti
  2005-02-16 14:54         ` Carl-Daniel Hailfinger
  2005-02-22 22:08       ` Karol Kozimor
  4 siblings, 1 reply; 89+ messages in thread
From: Romano Giannetti @ 2005-02-16  9:34 UTC (permalink / raw)
  To: Norbert Preining
  Cc: Carl-Daniel Hailfinger, Pavel Machek, ACPI mailing list,
	kernel list, seife, rjw

On Tue, Feb 15, 2005 at 06:08:37PM +0100, Norbert Preining wrote:
> On Die, 15 Feb 2005, Carl-Daniel Hailfinger wrote:
> > To suspend and resume properly, call the following script as root:
> 
> Success. 
> 

I tried with my Sony Vaio FX701. No luck. It goes S3 ok, but it will never
come back (blank screen, HDD led fixed on). 

I am wishing to help, imply tell me what I have to do.

Romano

-- 
Romano Giannetti             -  Univ. Pontificia Comillas (Madrid, Spain)
Electronic Engineer - phone +34 915 422 800 ext 2416  fax +34 915 596 569

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 18:57       ` Carl-Daniel Hailfinger
  2005-02-15 20:21         ` Matthew Garrett
@ 2005-02-16  9:51         ` Norbert Preining
  1 sibling, 0 replies; 89+ messages in thread
From: Norbert Preining @ 2005-02-16  9:51 UTC (permalink / raw)
  To: Carl-Daniel Hailfinger
  Cc: Pavel Machek, ACPI mailing list, kernel list, seife, rjw

Hi Carl-Daniel, hi all,

On Die, 15 Feb 2005, Carl-Daniel Hailfinger wrote:
> > - DRI must be disabled I guess?! Even with newer X server (x.org)?
> 
> I never disabled it.

Here X freezes (Sysrq-b works) with DRI enabled (debian sid, x4.3.0.1,
kernel 2.6.11-rc3-mm2, radeon, drm as modules)

> I used to unload modules, shutdown network interfaces etc. until I
> tried without all that stuff and it still worked. So I concluded

YOu are right. I only have to stop the mysql server and everything is
working. Thanks.

Only one thing (maybe covered somewhere else): After resuming (without
having stopped the usb system) my external mouse (USB) stopped working.

Is there a way to reactive the external mouse?

> I'll prepare a web page with detailed S3/S4 suspend/resume
> information for ATI graphics card owners including step-by-step
> howtos for smooth suspend/resume cycles.

Great idea! I was really searching for something like this. I will check
as soon as you have something online wether I have to add something!

Best wishes

Norbert

-------------------------------------------------------------------------------
Norbert Preining <preining AT logic DOT at>                 Università di Siena
sip:preining@at43.tuwien.ac.at                             +43 (0) 59966-690018
gpg DSA: 0x09C5B094      fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
-------------------------------------------------------------------------------
CORRIEVORRIE (n.)
Corridor etiquette demands that one a corriedoo (q.v.) has been
declared, corrievorrie must be employed. Both protagonists must now
embellish their approach with an embarrassing combination of waving,
grinning, making idiot faces, doing pirate impressions, and waggling
the head from side to side while holding the other person's eyes as
the smile drips off their face, until with great relief, they pass
each other.
			--- Douglas Adams, The Meaning of Liff

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-15 17:42         ` Alistair John Strachan
  2005-02-15 20:43           ` Matthew Garrett
@ 2005-02-16 14:25           ` Kjartan Maraas
  2005-02-18 20:49             ` Alistair John Strachan
  1 sibling, 1 reply; 89+ messages in thread
From: Kjartan Maraas @ 2005-02-16 14:25 UTC (permalink / raw)
  To: Alistair John Strachan
  Cc: Lorenzo Colitti, Matthew Garrett, Pavel Machek,
	ACPI mailing list, kernel list, seife, rjw

tir, 15,.02.2005 kl. 17.42 +0000, skrev Alistair John Strachan:
> On Tuesday 15 Feb 2005 16:16, Lorenzo Colitti wrote:
> [snip]
> >
> > Ok, here is the output from dmidecode (Debian package) and from lspci. I
> > don't have acpidmp and I don't know where to get it, but if you think
> > it's necessary I can download it if you tell me where to find it.
> 
> Find below a diff of my dmidecode output versus Lorenzo's. Nothing much
> to call home about.
> 
I've attached a diff against Lorenzo's too. Only difference is that my
laptop is a nc4010, and looking here it's clear that this model doesn't
support APM at least. I also have non-working S3. It behaves just like
the entry in the ubuntu wiki for the nc6000 in all three cases with a
full system running at least. I'll try init=/bin/sh later to see if that
helps and if it does experiment with removing modules one by one...

--- dmidecode	2005-02-16 15:17:02.127419209 +0100
+++ dmi.out	2005-02-16 15:16:43.142505944 +0100
@@ -1,21 +1,20 @@
 # dmidecode 2.5
 SMBIOS 2.3 present.
-31 structures occupying 1354 bytes.
-Table at 0x000FF2EB.
+31 structures occupying 1342 bytes.
+Table at 0x000FC06F.
 Handle 0x0000
 	DMI type 0, 20 bytes.
 	BIOS Information
 		Vendor: Hewlett-Packard
-		Version: 68BDD Ver. F.0F
-		Release Date: 07/23/2004
+		Version: 68BAS Ver. F.2F
+		Release Date: 12/10/2004
 		Address: 0xE0000
 		Runtime Size: 128 kB
-		ROM Size: 1024 kB
+		ROM Size: 512 kB
 		Characteristics:
 			PCI is supported
 			PC Card (PCMCIA) is supported
 			PNP is supported
-			APM is supported
 			BIOS is upgradeable
 			BIOS shadowing is allowed
 			Boot from CD is supported
@@ -37,27 +36,27 @@ Handle 0x0001
 	DMI type 1, 25 bytes.
 	System Information
 		Manufacturer: Hewlett-Packard
-		Product Name: HP Compaq nc6000 (DJ254A#ABB)   
-		Version: F.0F
-		Serial Number: XXXXXXXXXX                      
-		UUID: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
+		Product Name: HP Compaq nc4010 (DY885AA#ABN)  
+		Version: F.2F                      
+		Serial Number: XXXXXXXXXX
+		UUID: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
 		Wake-up Type: Power Switch
 Handle 0x0002
 	DMI type 2, 8 bytes.
 	Base Board Information
 		Manufacturer: Hewlett-Packard
-		Product Name: 0890
-		Version: 8051 Version 1A.19
+		Product Name: 0834
+		Version: KBC Version 20.37
 		Serial Number: Not Specified
 Handle 0x0003
 	DMI type 3, 13 bytes.
 	Chassis Information
-		Manufacturer: Hewlett-Packard
+		Manufacturer: Hewlett-Packard                      
 		Type: Notebook
 		Lock: Not Present
 		Version: Not Specified
-		Serial Number: XXXXXXXXXX                      
-		Asset Tag:                 
+		Serial Number: CNU442FBGX
+		Asset Tag: CNU442FBGX      
 		Boot-up State: Safe
 		Power Supply State: Safe
 		Thermal State: Safe
@@ -69,8 +68,8 @@ Handle 0x0004
 		Type: Central Processor
 		Family: Pentium M
 		Manufacturer: Intel(R)
-		ID: XX XX XX XX XX XX XX XX
-		Signature: Type 0, Family 6, Model 9, Stepping 5
+		ID: D6 06 00 00 BF F9 E9 AF
+		Signature: Type 0, Family 6, Model 13, Stepping 6
 		Flags:
 			FPU (Floating-point unit on-chip)
 			VME (Virtual mode extension)
@@ -93,13 +92,14 @@ Handle 0x0004
 			FXSR (Fast floating-point save and restore)
 			SSE (Streaming SIMD extensions)
 			SSE2 (Streaming SIMD extensions 2)
+			SS (Self-snoop)
 			TM (Thermal monitor supported)
 			SBF (Signal break on FERR)
-		Version: Intel(R) Pentium(R) M processor 1400MHz        
-		Voltage: 1.8 V
+		Version: Intel(R) Pentium(R) M processor 1.80GHz        
+		Voltage: 1.1 V
 		External Clock: 100 MHz
-		Max Speed: 1400 MHz
-		Current Speed: 1400 MHz
+		Max Speed: 1800 MHz
+		Current Speed: 1800 MHz
 		Status: Populated, Enabled
 		Upgrade: None
 		L1 Cache Handle: 0x0005
@@ -121,25 +121,25 @@ Handle 0x0005
 			Burst
 		Installed SRAM Type: Burst
 		Speed: Unknown
-		Error Correction Type: Unknown
+		Error Correction Type: None
 		System Type: Unified
-		Associativity: 4-way Set-associative
+		Associativity: 8-way Set-associative
 Handle 0x0006
 	DMI type 7, 19 bytes.
 	Cache Information
 		Socket Designation: Internal L2 Cache
 		Configuration: Enabled, Not Socketed, Level 2
 		Operational Mode: Write Back
-		Location: External
-		Installed Size: 1024 KB
-		Maximum Size: 1024 KB
+		Location: Internal
+		Installed Size: 2048 KB
+		Maximum Size: 2048 KB
 		Supported SRAM Types:
 			Burst
 		Installed SRAM Type: Burst
 		Speed: Unknown
 		Error Correction Type: None
 		System Type: Unified
-		Associativity: 4-way Set-associative
+		Associativity: 8-way Set-associative
 Handle 0x0007
 	DMI type 9, 13 bytes.
 	System Slot Information
@@ -156,9 +156,11 @@ Handle 0x0007
 			Modem ring resume is supported
 			PME signal is supported
 Handle 0x0008
-	DMI type 11, 5 bytes.
-	OEM Strings
-		String 1: www.compaq.com
+	DMI type 10, 6 bytes.
+	On Board Device Information
+		Type: Video
+		Status: Enabled
+		Description: 64
 Handle 0x0009
 	DMI type 13, 22 bytes.
 	BIOS Language Information
@@ -180,7 +182,7 @@ Handle 0x000B
 		Location: System Board Or Motherboard
 		Use: Flash Memory
 		Error Correction Type: None
-		Maximum Capacity: 1 MB
+		Maximum Capacity: 512 kB
 		Error Information Handle: Not Provided
 		Number Of Devices: 1
 Handle 0x000C
@@ -190,18 +192,18 @@ Handle 0x000C
 		Error Information Handle: No Error
 		Total Width: 64 bits
 		Data Width: 64 bits
-		Size: 256 MB
+		Size: 512 MB
 		Form Factor: SODIMM
 		Set: None
 		Locator: DIMM #1
-		Bank Locator: 030B2C25
+		Bank Locator: Not Specified
 		Type: DDR
 		Type Detail: Synchronous
 		Speed: 142 MHz (7.0 ns)
 		Manufacturer: Not Specified
-		Serial Number: Not Specified
+		Serial Number: 770EB63A
 		Asset Tag: Not Specified
-		Part Number: Not Specified
+		Part Number: 16VDDF6464HG-335G2
 Handle 0x000D
 	DMI type 17, 27 bytes.
 	Memory Device
@@ -209,18 +211,18 @@ Handle 0x000D
 		Error Information Handle: No Error
 		Total Width: 64 bits
 		Data Width: 64 bits
-		Size: 256 MB
+		Size: 512 MB
 		Form Factor: SODIMM
 		Set: None
 		Locator: DIMM #2
-		Bank Locator: 051FD180
+		Bank Locator: Not Specified
 		Type: DDR
 		Type Detail: Synchronous
 		Speed: 142 MHz (7.0 ns)
 		Manufacturer: Not Specified
-		Serial Number: XXXXXXXXXXXX-XXXXX
+		Serial Number: A807A11B
 		Asset Tag: Not Specified
-		Part Number: Not Specified
+		Part Number: 16VDDF6464HG-335G2
 Handle 0x000E
 	DMI type 17, 27 bytes.
 	Memory Device
@@ -231,7 +233,7 @@ Handle 0x000E
 		Size: 1024 kB
 		Form Factor: Chip
 		Set: None
-		Locator: SST49F008A
+		Locator: SST49LF040
 		Bank Locator: Not Specified
 		Type: Flash
 		Type Detail: Non-Volatile
@@ -244,8 +246,8 @@ Handle 0x000F
 	DMI type 19, 15 bytes.
 	Memory Array Mapped Address
 		Starting Address: 0x00000000000
-		Ending Address: 0x0001FFFFFFF
-		Range Size: 512 MB
+		Ending Address: 0x0003FFFFFFF
+		Range Size: 1 GB
 		Physical Array Handle: 0x000A
 		Partition Width: 0
 Handle 0x0010
@@ -260,17 +262,17 @@ Handle 0x0011
 	DMI type 20, 19 bytes.
 	Memory Device Mapped Address
 		Starting Address: 0x00000000000
-		Ending Address: 0x0000FFFFFFF
-		Range Size: 256 MB
+		Ending Address: 0x0001FFFFFFF
+		Range Size: 512 MB
 		Physical Device Handle: 0x000C
 		Memory Array Mapped Address Handle: 0x000F
 		Partition Row Position: 1
 Handle 0x0012
 	DMI type 20, 19 bytes.
 	Memory Device Mapped Address
-		Starting Address: 0x00010000000
-		Ending Address: 0x0001FFFFFFF
-		Range Size: 256 MB
+		Starting Address: 0x00020000000
+		Ending Address: 0x0003FFFFFFF
+		Range Size: 512 MB
 		Physical Device Handle: 0x000D
 		Memory Array Mapped Address Handle: 0x000F
 		Partition Row Position: 2
@@ -294,7 +296,7 @@ Handle 0x0015
 	Portable Battery
 		Location: Primary
 		Manufacturer: Hewlett-Packard
-		Manufacture Date: 12/12/2003
+		Manufacture Date: 09/28/2004
 		Serial Number: 00001       
 		Name: Not Specified
 		Chemistry: Lithium Ion
@@ -357,12 +359,12 @@ Handle 0x0085
 	DMI type 133, 34 bytes.
 	OEM-specific Type
 		Header and Data:
-			85 22 85 00 01 30 11 1F 0D CE 0B 02 00 6E 00 15
-			00 24 30 B2 00 5C 2B 02 80 00 00 00 0D 10 13 10
-			05 10
+			85 22 85 00 01 10 0E 86 0B 33 0B 02 00 6A 00 24
+			00 B2 30 00 00 5C 2B 02 E0 00 00 00 37 10 44 10
+			39 10
 		Strings:
-			00001 12/12/2003
-			HP                
+			00001 09/28/2004
+			SIMPLO            
 Handle 0x0086
 	DMI type 126, 34 bytes.
 	Inactive

[root@localhost kmaraas]# lspci
00:00.0 Host bridge: ATI Technologies Inc RS200/RS200M AGP Bridge [IGP 340M] (rev 02)
00:01.0 PCI bridge: ATI Technologies Inc PCI Bridge [IGP 340M]
00:06.0 Multimedia audio controller: ALi Corporation M5451 PCI AC-Link Controller Audio Device (rev 02)
00:07.0 ISA bridge: ALi Corporation M1533 PCI to ISA Bridge [Aladdin IV]
00:08.0 Modem: ALi Corporation M5457 AC'97 Modem Controller
00:09.0 Ethernet controller: Atheros Communications, Inc. AR5212 802.11abg NIC (rev 01)
00:0b.0 CardBus bridge: O2 Micro, Inc. OZ711M1 SmartCardBus MultiMediaBay Controller (rev 20)
00:0b.1 CardBus bridge: O2 Micro, Inc. OZ711M1 SmartCardBus MultiMediaBay Controller (rev 20)
00:0b.2 System peripheral: O2 Micro, Inc. OZ711Mx MultiMediaBay Accelerator
00:10.0 IDE interface: ALi Corporation M5229 IDE (rev c4)
00:11.0 Bridge: ALi Corporation M7101 Power Management Controller [PMU]
00:12.0 USB Controller: NEC Corporation USB (rev 43)
00:12.1 USB Controller: NEC Corporation USB (rev 43)
00:12.2 USB Controller: NEC Corporation USB 2.0 (rev 04)
00:13.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5705M Gigabit Ethernet (rev 03)
01:05.0 VGA compatible controller: ATI Technologies Inc Radeon IGP 330M/340M/350M

Cheers
Kjartan



^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-16  9:34       ` Romano Giannetti
@ 2005-02-16 14:54         ` Carl-Daniel Hailfinger
  2005-02-16 16:10           ` Romano Giannetti
  0 siblings, 1 reply; 89+ messages in thread
From: Carl-Daniel Hailfinger @ 2005-02-16 14:54 UTC (permalink / raw)
  To: romano
  Cc: Norbert Preining, Pavel Machek, ACPI mailing list, kernel list,
	seife, rjw

Romano Giannetti schrieb:
> On Tue, Feb 15, 2005 at 06:08:37PM +0100, Norbert Preining wrote:
> 
>>On Die, 15 Feb 2005, Carl-Daniel Hailfinger wrote:
>>
>>>To suspend and resume properly, call the following script as root:
>>
>>Success. 
> 
> I tried with my Sony Vaio FX701. No luck. It goes S3 ok, but it will never
> come back (blank screen, HDD led fixed on). 
> 
> I am wishing to help, imply tell me what I have to do.

Please tell us about your graphics chipset, your .config, your
dmesg and the modules loaded. Then we my be able to help.


Regards,
Carl-Daniel

P.S. If anyone of you is running SUSE 9.2, try their latest
kernels from ftp.suse.com/pub/projects/kernel/kotd/i386/HEAD/
Additionally, you may have to upgrade mkinitrd and udev with
packages from ftp.suse.com/pub/projects and
ftp.suse.com/pub/people (try searching around a bit and you'll
surely find them).
I'm running a kernel from there right now and can still use
S3 without problems on my Samsung P35.
-- 
http://www.hailfinger.org/

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-16  8:48   ` Stefan Dösinger
@ 2005-02-16 15:06     ` Carl-Daniel Hailfinger
  2005-02-16 17:43       ` Stefan Schweizer
  2005-02-16 19:26       ` Stefan Dösinger
  0 siblings, 2 replies; 89+ messages in thread
From: Carl-Daniel Hailfinger @ 2005-02-16 15:06 UTC (permalink / raw)
  To: Stefan Dösinger
  Cc: acpi-devel, Stefan Schweizer, Pavel Machek, kernel list, seife, rjw

Stefan Dösinger schrieb:
>>The problems with this patch are:
>>- you need to press a key to come back from the "resume-console" after
>>resume. - DRI in X does not work (at least for me with intel-agp, others
>>reportet it works)
>>I just disabloed it by not loading intel-agp (hotplug-blacklist)
> 
> You can force the radeon X driver to use pci mode by setting Option 
> "ForcePciMode" to "true" or something simmilar in you X config file. This way 
> you can get dri without intel-agp. This is much slower, but enought to play 
> tuxracer ;-)

How do I enable DRI with my card to test that crash? I have the
following in my XF86Config:

Section "DRI"
    Group      "video"
    Mode       0660
EndSection

but nothing else about DRI. So do I have to change something in
my configuration?

Oh, and could you please include run "lspci -vv" and include the
part about VGA compatible controller in your mail? I have some
hypothesis about the settings there having to do with resume.


Regards,
Carl-Daniel
-- 
http://www.hailfinger.org/

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-16 14:54         ` Carl-Daniel Hailfinger
@ 2005-02-16 16:10           ` Romano Giannetti
  0 siblings, 0 replies; 89+ messages in thread
From: Romano Giannetti @ 2005-02-16 16:10 UTC (permalink / raw)
  To: Carl-Daniel Hailfinger
  Cc: Norbert Preining, Pavel Machek, ACPI mailing list, kernel list,
	seife, rjw

On Wed, Feb 16, 2005 at 03:54:38PM +0100, Carl-Daniel Hailfinger wrote:
> Romano Giannetti schrieb:
> > 
> > I tried with my Sony Vaio FX701. No luck. It goes S3 ok, but it will never
> > come back (blank screen, HDD led fixed on). 
> > 
> > I am wishing to help, imply tell me what I have to do.
> 
> Please tell us about your graphics chipset, your .config, your
> dmesg and the modules loaded. Then we my be able to help.

Oops, sorry, I should have added the info before. My apologies. 

Here will find all the info (if you need more, tell me). Note that I tried
with and without ndiswrapper driver loaded, and I have the same hang on
resume (blank screen, HDD light fixed on, and no answer to wireless pings). 

One more note: the ndiswrapper *did* survive OK to a disk suspend cycle. 

I am running an up-to-date Mandrake 10.0 distribution, with 
a kernel 2.6.11-rc1 (Linus tree), on a Sony Vaio PGC-FX701 which is almost
working perfectly. 

* Patch applied: 
  - a little patch for ALPS pad detection.
  http://www.dea.icai.upco.es/romano/linux/alps-detection-2611rc1.txt

* .config:
  http://www.dea.icai.upco.es/romano/linux/config-2.6.11rc1.txt

* lsmod after boot: 
  http://www.dea.icai.upco.es/romano/linux/lsmod.txt

* lspci -vv
  http://www.dea.icai.upco.es/romano/linux/lspci.txt

* dmesg
  http://www.dea.icai.upco.es/romano/linux/dmesg.txt

* /proc/acpi/dsdt
  http://www.dea.icai.upco.es/romano/linux/mydsdt.bin

More data on http://perso.wanadoo.es/r_mano/vaio/vaio.html

Thanks again,
             Romano


-- 
Romano Giannetti             -  Univ. Pontificia Comillas (Madrid, Spain)
Electronic Engineer - phone +34 915 422 800 ext 2416  fax +34 915 596 569

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-16 15:06     ` Carl-Daniel Hailfinger
@ 2005-02-16 17:43       ` Stefan Schweizer
  2005-02-16 19:26       ` Stefan Dösinger
  1 sibling, 0 replies; 89+ messages in thread
From: Stefan Schweizer @ 2005-02-16 17:43 UTC (permalink / raw)
  To: Carl-Daniel Hailfinger
  Cc: Stefan Dösinger, acpi-devel, Pavel Machek, kernel list, seife, rjw

[-- Attachment #1: Type: text/plain, Size: 1564 bytes --]

On Wed, 16 Feb 2005 16:06:00 +0100, Carl-Daniel Hailfinger
<c-d.hailfinger.devel.2005@gmx.net> wrote:
> Stefan Dösinger schrieb:
> >>The problems with this patch are:
> >>- you need to press a key to come back from the "resume-console" after
> >>resume. - DRI in X does not work (at least for me with intel-agp, others
> >>reportet it works)
> >>I just disabloed it by not loading intel-agp (hotplug-blacklist)
> >
> > You can force the radeon X driver to use pci mode by setting Option
> > "ForcePciMode" to "true" or something simmilar in you X config file. This way
> > you can get dri without intel-agp. This is much slower, but enought to play
> > tuxracer ;-)
> 
> How do I enable DRI with my card to test that crash? I have the
> following in my XF86Config:
> 
> Section "DRI"
>     Group      "video"
>     Mode       0660
> EndSection
> 
> but nothing else about DRI. So do I have to change something in
> my configuration?
> 
you need to compile the right modules and load the agp-bridge's and
your gfx module.
> Oh, and could you please include run "lspci -vv" and include the
> part about VGA compatible controller in your mail? I have some
> hypothesis about the settings there having to do with resume.
> 

I attached the full output because there are some more "AGP" there.
I just tried it again and it only crashed my X after resume with
intel-agp .. I was able to type still and start a new X but when I
tried to run a 3d-app it hard crashed and I had to reboot :(
I hope you have an idea.

Regards,
Stefan

[-- Attachment #2: lspcivv --]
[-- Type: application/octet-stream, Size: 7766 bytes --]

0000:00:00.0 Host bridge: Intel Corp. 82845 845 (Brookdale) Chipset Host Bridge (rev 04)
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
	Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 0
	Region 0: Memory at <ignored> (32-bit, prefetchable)
	Capabilities: [e4] #09 [9104]
	Capabilities: [a0] AGP version 2.0
		Status: RQ=32 Iso- ArqSz=0 Cal=0 SBA+ ITACoh- GART64- HTrans- 64bit- FW+ AGP3- Rate=x1,x2,x4
		Command: RQ=1 ArqSz=0 Cal=0 SBA- AGP- GART64- 64bit- FW- Rate=<none>

0000:00:01.0 PCI bridge: Intel Corp. 82845 845 (Brookdale) Chipset AGP Bridge (rev 04) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
	Status: Cap- 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 96
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=64
	I/O behind bridge: 00003000-00003fff
	Memory behind bridge: e8000000-e80fffff
	Prefetchable memory behind bridge: f0000000-f7ffffff
	Expansion ROM at 00003000 [disabled] [size=4K]
	BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-

0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev 05) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
	Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 0
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=64
	I/O behind bridge: 00004000-00004fff
	Memory behind bridge: e8100000-e81fffff
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-

0000:00:1f.0 ISA bridge: Intel Corp. 82801BA ISA Bridge (LPC) (rev 05)
	Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
	Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 0

0000:00:1f.1 IDE interface: Intel Corp. 82801BA IDE U100 (rev 05) (prog-if 80 [Master])
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
	Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 0
	Region 4: I/O ports at 1800 [size=16]

0000:00:1f.2 USB Controller: Intel Corp. 82801BA/BAM USB (Hub #1) (rev 05) (prog-if 00 [UHCI])
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
	Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 0
	Interrupt: pin D routed to IRQ 5
	Region 4: I/O ports at 1820 [size=32]

0000:00:1f.3 SMBus: Intel Corp. 82801BA/BAM SMBus (rev 05)
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
	Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Interrupt: pin B routed to IRQ 11
	Region 4: I/O ports at 1810 [size=16]

0000:00:1f.4 USB Controller: Intel Corp. 82801BA/BAM USB (Hub #2) (rev 05) (prog-if 00 [UHCI])
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
	Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 0
	Interrupt: pin C routed to IRQ 11
	Region 4: I/O ports at 1840 [size=32]

0000:00:1f.5 Multimedia audio controller: Intel Corp. 82801BA/BAM AC'97 Audio (rev 05)
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
	Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 0
	Interrupt: pin B routed to IRQ 11
	Region 0: I/O ports at 1c00
	Region 1: I/O ports at 1880 [size=64]

0000:00:1f.6 Modem: Intel Corp. 82801BA/BAM AC'97 Modem (rev 05) (prog-if 00 [Generic])
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
	Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 0
	Interrupt: pin B routed to IRQ 11
	Region 0: I/O ports at 2400
	Region 1: I/O ports at 2000 [size=128]

0000:01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M6 LY (prog-if 00 [VGA])
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping+ SERR+ FastB2B+
	Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 66 (2000ns min), cache line size 08
	Interrupt: pin A routed to IRQ 5
	Region 0: Memory at f0000000 (32-bit, prefetchable)
	Region 1: I/O ports at 3000 [size=256]
	Region 2: Memory at e8000000 (32-bit, non-prefetchable) [size=64K]
	Capabilities: [58] AGP version 2.0
		Status: RQ=48 Iso- ArqSz=0 Cal=0 SBA+ ITACoh- GART64- HTrans- 64bit- FW- AGP3- Rate=x1,x2,x4
		Command: RQ=1 ArqSz=0 Cal=0 SBA+ AGP- GART64- 64bit- FW- Rate=<none>
	Capabilities: [50] Power Management version 2
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 PME-Enable- DSel=0 DScale=0 PME-

0000:02:00.0 CardBus bridge: O2 Micro, Inc. OZ6933 Cardbus Controller (rev 01)
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping+ SERR- FastB2B-
	Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 168
	Interrupt: pin A routed to IRQ 5
	Region 0: Memory at 20000000 (32-bit, non-prefetchable)
	Bus: primary=02, secondary=03, subordinate=06, sec-latency=176
	Memory window 0: 20400000-207ff000 (prefetchable)
	Memory window 1: 20800000-20bff000
	I/O window 0: 00004400-000044ff
	I/O window 1: 00004800-000048ff
	BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset- 16bInt+ PostWrite+
	16-bit legacy interface ports at 0001

0000:02:00.1 CardBus bridge: O2 Micro, Inc. OZ6933 Cardbus Controller (rev 01)
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping+ SERR- FastB2B-
	Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 168
	Interrupt: pin B routed to IRQ 11
	Region 0: Memory at 20001000 (32-bit, non-prefetchable)
	Bus: primary=02, secondary=07, subordinate=0a, sec-latency=176
	Memory window 0: 20c00000-20fff000 (prefetchable)
	Memory window 1: 21000000-213ff000
	I/O window 0: 00004c00-00004cff
	I/O window 1: 00005000-000050ff
	BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset- 16bInt+ PostWrite+
	16-bit legacy interface ports at 0001

0000:02:08.0 Ethernet controller: Intel Corp. 82801BA/BAM/CA/CAM Ethernet Controller (rev 03)
	Subsystem: Acer Incorporated [ALI]: Unknown device 0019
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B-
	Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
	Latency: 66 (2000ns min, 14000ns max), cache line size 08
	Interrupt: pin A routed to IRQ 11
	Region 0: Memory at e8100000 (32-bit, non-prefetchable)
	Region 1: I/O ports at 4000 [size=64]
	Capabilities: [dc] Power Management version 2
		Flags: PMEClk- DSI+ D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 PME-Enable- DSel=0 DScale=2 PME-


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-16 15:06     ` Carl-Daniel Hailfinger
  2005-02-16 17:43       ` Stefan Schweizer
@ 2005-02-16 19:26       ` Stefan Dösinger
  1 sibling, 0 replies; 89+ messages in thread
From: Stefan Dösinger @ 2005-02-16 19:26 UTC (permalink / raw)
  To: Carl-Daniel Hailfinger
  Cc: acpi-devel, Stefan Schweizer, Pavel Machek, kernel list, seife, rjw

Am Mittwoch, 16. Februar 2005 16:06 schrieb Carl-Daniel Hailfinger:
> Stefan Dösinger schrieb:
> >>The problems with this patch are:
> >>- you need to press a key to come back from the "resume-console" after
> >>resume. - DRI in X does not work (at least for me with intel-agp, others
> >>reportet it works)
> >>I just disabloed it by not loading intel-agp (hotplug-blacklist)
> >
> > You can force the radeon X driver to use pci mode by setting Option
> > "ForcePciMode" to "true" or something simmilar in you X config file. This
> > way you can get dri without intel-agp. This is much slower, but enought
> > to play tuxracer ;-)
>
> How do I enable DRI with my card to test that crash? I have the
> following in my XF86Config:
>
> Section "DRI"
>     Group      "video"
>     Mode       0660
> EndSection
>
> but nothing else about DRI. So do I have to change something in
> my configuration?
>
> Oh, and could you please include run "lspci -vv" and include the
> part about VGA compatible controller in your mail? I have some
> hypothesis about the settings there having to do with resume.
You can set
Option "BusType" "PCI" in your cards driver section in xorg.conf / XF86Config. 
With this setting you should get DRI without having intel-agp loaded(if the 
rest is set up correctly)

My lspci output is: 
0000:00:00.0 Host bridge: Intel Corp. 82855PM Processor to I/O Controller (rev 
03)
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- 
<TAbort- <MAbort+ >SERR- <PERR-
        Latency: 0
        Region 0: Memory at e0000000 (32-bit, prefetchable)
        Capabilities: [e4] #09 [f104]
        Capabilities: [a0] AGP version 2.0
                Status: RQ=32 Iso- ArqSz=0 Cal=0 SBA+ ITACoh- GART64- HTrans- 
64bit- FW+ AGP3- Rate=x1,x2,x4
                Command: RQ=1 ArqSz=0 Cal=0 SBA+ AGP+ GART64- 64bit- FW+ 
Rate=x4

0000:00:01.0 PCI bridge: Intel Corp. 82855PM Processor to AGP Controller (rev 
03) (prog-if 00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap- 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 96
        Bus: primary=00, secondary=01, subordinate=01, sec-latency=64
        I/O behind bridge: 00003000-00003fff
        Memory behind bridge: d0100000-d01fffff
        Prefetchable memory behind bridge: d8000000-dfffffff
        Expansion ROM at 00003000 [disabled] [size=4K]
        BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-

0000:00:1d.0 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) 
USB UHCI Controller #1 (rev 03) (prog-if 00 [UHCI])
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin A routed to IRQ 10
        Region 4: I/O ports at 1800 [size=32]

0000:00:1d.1 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) 
USB UHCI Controller #2 (rev 03) (prog-if 00 [UHCI])
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin B routed to IRQ 10
        Region 4: I/O ports at 1820 [size=32]

0000:00:1d.2 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) 
USB UHCI Controller #3 (rev 03) (prog-if 00 [UHCI])
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin C routed to IRQ 10
        Region 4: I/O ports at 1840 [size=32]

0000:00:1d.7 USB Controller: Intel Corp. 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI 
Controller (rev 03) (prog-if 20 [EHCI])
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin D routed to IRQ 10
        Region 0: Memory at d0000000 (32-bit, non-prefetchable)
        Capabilities: [50] Power Management version 2
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA 
PME(D0+,D1-,D2-,D3hot+,D3cold+)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [58] #0a [2080]

0000:00:1e.0 PCI bridge: Intel Corp. 82801 Mobile PCI Bridge (rev 83) (prog-if 
00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- 
<TAbort- <MAbort- >SERR- <PERR+
        Latency: 0
        Bus: primary=00, secondary=02, subordinate=02, sec-latency=64
        I/O behind bridge: 00004000-00004fff
        Memory behind bridge: d0200000-d05fffff
        BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-

0000:00:1f.0 ISA bridge: Intel Corp. 82801DBM (ICH4-M) LPC Interface Bridge 
(rev 03)
        Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0

0000:00:1f.1 IDE interface: Intel Corp. 82801DBM (ICH4-M) IDE Controller (rev 
03) (prog-if 8a [Master SecP PriP])
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin A routed to IRQ 10
        Region 0: I/O ports at <unassigned>
        Region 1: I/O ports at <unassigned>
        Region 2: I/O ports at <unassigned>
        Region 3: I/O ports at <unassigned>
        Region 4: I/O ports at 1860 [size=16]
        Region 5: Memory at 20000000 (32-bit, non-prefetchable) [size=1K]

0000:00:1f.3 SMBus: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus 
Controller (rev 03)
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Interrupt: pin B routed to IRQ 10
        Region 4: I/O ports at 1880 [size=32]

0000:00:1f.5 Multimedia audio controller: Intel Corp. 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 03)
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin B routed to IRQ 10
        Region 0: I/O ports at 1c00
        Region 1: I/O ports at 18c0 [size=64]
        Region 2: Memory at d0000c00 (32-bit, non-prefetchable) [size=512]
        Region 3: Memory at d0000800 (32-bit, non-prefetchable) [size=256]
        Capabilities: [50] Power Management version 2
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA 
PME(D0+,D1-,D2-,D3hot+,D3cold+)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-

0000:00:1f.6 Modem: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 
Modem Controller (rev 03) (prog-if 00 [Generic])
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 0
        Interrupt: pin B routed to IRQ 10
        Region 0: I/O ports at 2400
        Region 1: I/O ports at 2000 [size=128]
        Capabilities: [50] Power Management version 2
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA 
PME(D0+,D1-,D2-,D3hot+,D3cold+)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-

0000:01:00.0 VGA compatible controller: ATI Technologies Inc Radeon R250 Lf 
[FireGL 9000] (rev 01) (prog-if 00 [VGA])
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping+ SERR+ FastB2B+
        Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 255 (2000ns min), cache line size 08
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at d8000000 (32-bit, prefetchable)
        Region 1: I/O ports at 3000 [size=256]
        Region 2: Memory at d0100000 (32-bit, non-prefetchable) [size=64K]
        Capabilities: [58] AGP version 2.0
                Status: RQ=48 Iso- ArqSz=0 Cal=0 SBA+ ITACoh- GART64- HTrans- 
64bit- FW+ AGP3- Rate=x1,x2,x4
                Command: RQ=32 ArqSz=0 Cal=0 SBA+ AGP+ GART64- 64bit- FW+ 
Rate=x4
        Capabilities: [50] Power Management version 2
                Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA 
PME(D0-,D1-,D2-,D3hot-,D3cold-)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-

0000:02:02.0 Ethernet controller: Broadcom Corporation BCM4401 100Base-T (rev 
01)
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 64
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at d0204000 (32-bit, non-prefetchable)
        Capabilities: [40] Power Management version 2
                Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA 
PME(D0+,D1+,D2+,D3hot+,D3cold+)
                Status: D0 PME-Enable- DSel=0 DScale=2 PME-

0000:02:04.0 Network controller: Intel Corp. PRO/Wireless LAN 2100 3B Mini PCI 
Adapter (rev 04)
        Subsystem: Intel Corp. MIM2000/Centrino
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 64 (500ns min, 8500ns max), cache line size 08
        Interrupt: pin A routed to IRQ 11
        Region 0: Memory at d0206000 (32-bit, non-prefetchable)
        Capabilities: [dc] Power Management version 2
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA 
PME(D0-,D1-,D2-,D3hot-,D3cold-)
                Status: D0 PME-Enable- DSel=0 DScale=1 PME-

0000:02:06.0 CardBus bridge: O2 Micro, Inc. OZ711M1 SmartCardBus MultiMediaBay 
Controller (rev 20)
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping+ SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 64
        Interrupt: pin A routed to IRQ 255
        Region 0: Memory at d0207000 (32-bit, non-prefetchable)
        Bus: primary=02, secondary=03, subordinate=06, sec-latency=176
        Memory window 0: d0400000-d04ff000 (prefetchable)
        Memory window 1: d0300000-d03ff000 (prefetchable)
        I/O window 0: 00004400-000044ff
        I/O window 1: 00004000-000040ff
        BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+ PostWrite-
        16-bit legacy interface ports at 0001

0000:02:06.1 CardBus bridge: O2 Micro, Inc. OZ711M1 SmartCardBus MultiMediaBay 
Controller (rev 20)
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping+ SERR- FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Interrupt: pin A routed to IRQ 0
        Region 0: Memory at 20001000 (32-bit, non-prefetchable) [disabled]
        Bus: primary=02, secondary=07, subordinate=0a, sec-latency=176
        I/O window 0: 00000000-00000003 [disabled]
        I/O window 1: 00000000-00000003 [disabled]
        BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset- 16bInt- PostWrite-
        16-bit legacy interface ports at 0001

0000:02:06.2 System peripheral: O2 Micro, Inc. OZ711Mx MultiMediaBay 
Accelerator
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at d0208000 (32-bit, non-prefetchable)
        Capabilities: [a0] Power Management version 2
                Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA 
PME(D0+,D1+,D2+,D3hot+,D3cold+)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-

0000:02:07.0 FireWire (IEEE 1394): Texas Instruments TSB43AB21 IEEE-1394a-2000 
Controller (PHY/Link) (prog-if 10 [OHCI])
        Subsystem: Acer Incorporated [ALI]: Unknown device 001f
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- 
Stepping- SERR+ FastB2B-
        Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR-
        Latency: 64 (500ns min, 1000ns max), cache line size 08
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at d0209000 (32-bit, non-prefetchable)
        Region 1: Memory at d0200000 (32-bit, non-prefetchable) [size=16K]
        Capabilities: [44] Power Management version 2
                Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA 
PME(D0+,D1+,D2+,D3hot+,D3cold-)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-

The device entry in xorg.conf:
Section "Device"
    # vendor=1002, device=4c66
        Identifier  "Card0"
        Driver      "radeon"
        Option      "AGPMode"         "4"
        #Option      "EnablePageFlip"  "1"
        #Option      "DynamicClocks"   "1"
        Option       "dpms"            "1"
        BusID       "PCI:1:0:0"
EndSection

S3 is working fine for me with dri and agp.

Stefan

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (6 preceding siblings ...)
  2005-02-16  5:54 ` Stefan Schweizer
@ 2005-02-17  6:16 ` Len Brown
  2005-02-17 10:15   ` Vojtech Pavlik
                     ` (2 more replies)
  2005-02-17 23:19 ` Luca Capello
                   ` (5 subsequent siblings)
  13 siblings, 3 replies; 89+ messages in thread
From: Len Brown @ 2005-02-17  6:16 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, Kernel Mailing List, seife, rjw

Pavel,
I think that it is the BIOS' job on S3-suspend
to save the video mode.  On S3-resume the BIOS should
re-POST and restore the video mode.

While Linux's X drivers may be able to handle the case
where X is running -- that doesn't help us with the
cases where X is not running (a case that Windows
presumably does not have).

Besides updated X drivers, which may have complicated
restore routines for complicated modes, all the other
techniques for restoring video from Linux are
hit/miss workarounds for broken platforms.

To completely solve the Linux S3 video restore issue,
we need to push the platform and BIOS vendors.

What am I missing?

thanks,
-Len



^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17  6:16 ` Len Brown
@ 2005-02-17 10:15   ` Vojtech Pavlik
  2005-02-17 23:12     ` Len Brown
  2005-02-17 11:00   ` Matthew Garrett
  2005-02-17 11:02   ` Pavel Machek
  2 siblings, 1 reply; 89+ messages in thread
From: Vojtech Pavlik @ 2005-02-17 10:15 UTC (permalink / raw)
  To: Len Brown
  Cc: Pavel Machek, ACPI mailing list, Kernel Mailing List, seife, rjw

On Thu, Feb 17, 2005 at 01:16:45AM -0500, Len Brown wrote:

> Pavel,
> I think that it is the BIOS' job on S3-suspend
> to save the video mode.  On S3-resume the BIOS should
> re-POST and restore the video mode.

Should.

But this definitely is not the case on about 80+% of notebooks.

You can save the video state through VESA VBE, and restore it on resume,
but if the BIOS didn't re-POST the video, this will often fail.

> While Linux's X drivers may be able to handle the case
> where X is running -- that doesn't help us with the
> cases where X is not running (a case that Windows
> presumably does not have).
> 
> Besides updated X drivers, which may have complicated
> restore routines for complicated modes, all the other
> techniques for restoring video from Linux are
> hit/miss workarounds for broken platforms.
> 
> To completely solve the Linux S3 video restore issue,
> we need to push the platform and BIOS vendors.

That's correct.

> What am I missing?
 
I'm not sure if you can push the whole industry at once.

-- 
Vojtech Pavlik
SuSE Labs, SuSE CR

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17  6:16 ` Len Brown
  2005-02-17 10:15   ` Vojtech Pavlik
@ 2005-02-17 11:00   ` Matthew Garrett
  2005-02-17 16:18     ` Carl-Daniel Hailfinger
  2005-02-17 11:02   ` Pavel Machek
  2 siblings, 1 reply; 89+ messages in thread
From: Matthew Garrett @ 2005-02-17 11:00 UTC (permalink / raw)
  To: Len Brown
  Cc: Pavel Machek, ACPI mailing list, Kernel Mailing List, seife, rjw

On Thu, 2005-02-17 at 01:16 -0500, Len Brown wrote:
> Pavel,
> I think that it is the BIOS' job on S3-suspend
> to save the video mode.  On S3-resume the BIOS should
> re-POST and restore the video mode.

I agree, but in the absence of spec requirement and some form of
certification process, I don't see it happening in the near future.
Given that vendors are still shipping invalid DSDTs, if Windows is able
to reinitialise the graphics hardware, few are going to care about
making life easier for Linux.

-- 
Matthew Garrett | mjg59@srcf.ucam.org


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17  6:16 ` Len Brown
  2005-02-17 10:15   ` Vojtech Pavlik
  2005-02-17 11:00   ` Matthew Garrett
@ 2005-02-17 11:02   ` Pavel Machek
  2 siblings, 0 replies; 89+ messages in thread
From: Pavel Machek @ 2005-02-17 11:02 UTC (permalink / raw)
  To: Len Brown; +Cc: ACPI mailing list, Kernel Mailing List, seife, rjw

Hi!

> I think that it is the BIOS' job on S3-suspend
> to save the video mode.  On S3-resume the BIOS should
> re-POST and restore the video mode.

Can you find it written down somewhere? It would be certainly easier
for me if every BIOS did re-post, but it is not the case on any new
BIOS....

> To completely solve the Linux S3 video restore issue,
> we need to push the platform and BIOS vendors.
> 
> What am I missing?

I think we are missing few lines in docs somewhere saying "video must
be re-POSTed during S3 wakeup". And then we miss someone going around
vendors with baseball bat, telling them to fix their BIOSes.

								Pavel
-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 19:37       ` Stefan Dösinger
@ 2005-02-17 11:06         ` Norbert Preining
  2005-02-17 19:08         ` Norbert Preining
  1 sibling, 0 replies; 89+ messages in thread
From: Norbert Preining @ 2005-02-17 11:06 UTC (permalink / raw)
  To: Stefan Dösinger
  Cc: acpi-devel, Carl-Daniel Hailfinger, Pavel Machek, kernel list,
	seife, rjw

On Die, 15 Feb 2005, Stefan Dösinger wrote:
> > After deactivating DRI in the X config file and saving the states with
> > your script (thanks) and turning off various stuff I get X running
> > again.
> >
> > Questions:
> > - DRI must be disabled I guess?! Even with newer X server (x.org)?
>
> Do you use the fglrx driver? This doesn't work with any type of suspend so 

No

> far. If you use the radeon driver try a driver update.

>From deb http://www.nixnuts.net/files/ ./ ??

Or direct from dri.freedesktop.org, and updating X to X.org on sid?

Best wishes

Norbert

-------------------------------------------------------------------------------
Norbert Preining <preining AT logic DOT at>                 Università di Siena
sip:preining@at43.tuwien.ac.at                             +43 (0) 59966-690018
gpg DSA: 0x09C5B094      fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
-------------------------------------------------------------------------------
SWANIBOST (adj.)
Complete shagged out after a hard day having income tax explained to
you.
			--- Douglas Adams, The Meaning of Liff

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17 11:00   ` Matthew Garrett
@ 2005-02-17 16:18     ` Carl-Daniel Hailfinger
  2005-02-17 16:44       ` Vernon Mauery
  2005-02-17 19:54       ` Pavel Machek
  0 siblings, 2 replies; 89+ messages in thread
From: Carl-Daniel Hailfinger @ 2005-02-17 16:18 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Len Brown, Pavel Machek, ACPI mailing list, Kernel Mailing List,
	seife, rjw

Matthew Garrett schrieb:
> On Thu, 2005-02-17 at 01:16 -0500, Len Brown wrote:
> 
>>I think that it is the BIOS' job on S3-suspend
>>to save the video mode.  On S3-resume the BIOS should
>>re-POST and restore the video mode.
> 
> I agree, but in the absence of spec requirement and some form of
> certification process, I don't see it happening in the near future.
> Given that vendors are still shipping invalid DSDTs, if Windows is able
> to reinitialise the graphics hardware, few are going to care about
> making life easier for Linux.

1. A first step towards better DSDTs would be to make the ASL compiler
complain about the same things which are complained about by the
in-kernel ACPI interpreter. An example would be the following:

acpi_processor-0496 [10] acpi_processor_get_inf: Invalid PBLK length [7]

The ASL compiler will not complain about it, yet the kernel will
refuse to do any processor throttling with a PBLK length of 7.

2. Urge/force vendors to use the latest ASL compiler available.
In most cases, this will result in a size reduction of the compiled
code, which should be in the interest of the vendors.

3. Get some shiny certification/label going that can be put on
fully conforming products as a sticker. Something like the old
"EPA pollution preventer" logo, but with a more appealing design.
Perhaps a "InstantOn/PowerSave" sticker, you get the idea.

4. Include a mandantory description of video bringup after resume
into the ACPI spec along the lines of "Conforming products SHOULD
make information about handling of the primary video device on
resume available to the ACPI interpreter during runtime. If video
state will be preserved over a suspend/resume cycle, the _WAK
method for said video device MUST be empty. If the video device
requires any actions by the operating system after resume to restore
the state it had before suspend, the _WAK method for said video
device MUST contain ALL the code needed to restore the state before
suspend. The _WAK method MAY call OS-supplied ACPI helper functions
like ACPI_EXECUTE_CODE_FROM_ROM to keep the _WAK method short.
If no _WAK method for a given video device is available, the OS
MUST be able to rely on the fact that video state is preserved
over suspend/resume.


Something like item 4 would be a major step forward and as a bonus,
it wouldn't require any hardware changes, only perhaps 3 or 4
additional lines of code in the DSDT. If the _WAK function for
my laptop graphics card existed and had the hypothetical commands
ACPI_EXECUTE_CODE_FROM_ROM_X86(VGA.ROM)
ACPI_RESTORE_VESA_STATE(VGA)
we wouldn't have this discussion in the first place.


Regards,
Carl-Daniel
--
http://www.hailfinger.org/

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17 16:18     ` Carl-Daniel Hailfinger
@ 2005-02-17 16:44       ` Vernon Mauery
  2005-02-17 20:13         ` Carl-Daniel Hailfinger
  2005-02-17 19:54       ` Pavel Machek
  1 sibling, 1 reply; 89+ messages in thread
From: Vernon Mauery @ 2005-02-17 16:44 UTC (permalink / raw)
  To: Carl-Daniel Hailfinger
  Cc: Matthew Garrett, Len Brown, Pavel Machek, ACPI mailing list,
	Kernel Mailing List, seife, rjw

Carl-Daniel Hailfinger wrote:
> 1. A first step towards better DSDTs would be to make the ASL compiler
> complain about the same things which are complained about by the
> in-kernel ACPI interpreter. An example would be the following:
> 
> acpi_processor-0496 [10] acpi_processor_get_inf: Invalid PBLK length [7]
> 
> The ASL compiler will not complain about it, yet the kernel will
> refuse to do any processor throttling with a PBLK length of 7.

This is like getting gcc to complain about run-time bugs in a program.  The compiler of a language (ASL in this case) compiles the language, regardless of run-time bugs because it can only detect syntax errors.  And iasl does that pretty well.  

--Vernon

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 19:37       ` Stefan Dösinger
  2005-02-17 11:06         ` Norbert Preining
@ 2005-02-17 19:08         ` Norbert Preining
  2005-02-17 20:58           ` Stefan Dösinger
  1 sibling, 1 reply; 89+ messages in thread
From: Norbert Preining @ 2005-02-17 19:08 UTC (permalink / raw)
  To: Stefan Dösinger
  Cc: acpi-devel, Carl-Daniel Hailfinger, Pavel Machek, kernel list,
	seife, rjw

On Die, 15 Feb 2005, Stefan Dösinger wrote:
> > - DRI must be disabled I guess?! Even with newer X server (x.org)?
> Do you use the fglrx driver? This doesn't work with any type of suspend so 
> far. If you use the radeon driver try a driver update.

Ok, I installed xlibmesa-gl1-dri-trunk, xserver-xfree86-dri-trunk and
compiled linux-2.6.11-rc4 and drm modules from drm-trunk-module-src, all
from http://www.nixnuts.net/files/

But I had no success whatsoever. With this (Xorg server, current dri/drm
stuff, ..) the laptop not even wakes up from sleep!

Now I am back at debian XFree 4.3.0.1 and DRI disabled and suspend works
again.

I don't know wether this is a problem with the kernel or the drm, so to
sum up:

- kernel 2.6.11-rc3-mm2, XFree 4.3.0.1 (debian/sid), no dri
	works

- kernel 2.6.11-rc4, Xorg 6.8.1.99 (debian sid + nixnuts), drm cvs, drm 
  activated
	no resume (thus also no test for X)


Best wishes

Norbert

-------------------------------------------------------------------------------
Norbert Preining <preining AT logic DOT at>                 Università di Siena
sip:preining@at43.tuwien.ac.at                             +43 (0) 59966-690018
gpg DSA: 0x09C5B094      fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
-------------------------------------------------------------------------------
SWANIBOST (adj.)
Complete shagged out after a hard day having income tax explained to
you.
			--- Douglas Adams, The Meaning of Liff

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 19:47       ` Pavel Machek
@ 2005-02-17 19:09         ` Norbert Preining
  0 siblings, 0 replies; 89+ messages in thread
From: Norbert Preining @ 2005-02-17 19:09 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Carl-Daniel Hailfinger, ACPI mailing list, kernel list, seife, rjw

On Die, 15 Feb 2005, Pavel Machek wrote:
> > - Sometimes I have to make a Sysrq-s (sync) to get some stuff running
> >   (eg logging in from the console hangs after input of passwd, calling
> >   sysrq-s makes it continue). I had a similar effect when logging in
> >   AFTER resuming (for the resume I had only gdm running but wasn't
> >   logged in) the GNOME starting screen stayed there indefinitely, no
> >   change. Even after restarting the X server and retrying.
> >   Logging in with twm session DID work without any problem.
> >   Do you have any idea what this could be?
> 
> Does it happen with swsusp? Is it in any way reproducible? Maybe
> commenting out refrigerator would help....


Hmm, don't have swsusp in my kernel (2.6.11-rc3-mm2).

reproducible: Not deterministically, i.e. it happened again, but then
again not always. Sorry.


Best wishes

Norbert

-------------------------------------------------------------------------------
Norbert Preining <preining AT logic DOT at>                 Università di Siena
sip:preining@at43.tuwien.ac.at                             +43 (0) 59966-690018
gpg DSA: 0x09C5B094      fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
-------------------------------------------------------------------------------
PLYMOUTH (vb.)
To relate an amusing story to someone without remembering that it was
they who told it to you in the first place.
			--- Douglas Adams, The Meaning of Liff

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17 16:18     ` Carl-Daniel Hailfinger
  2005-02-17 16:44       ` Vernon Mauery
@ 2005-02-17 19:54       ` Pavel Machek
  2005-02-17 20:34         ` Carl-Daniel Hailfinger
  1 sibling, 1 reply; 89+ messages in thread
From: Pavel Machek @ 2005-02-17 19:54 UTC (permalink / raw)
  To: Carl-Daniel Hailfinger
  Cc: Matthew Garrett, Len Brown, Pavel Machek, ACPI mailing list,
	Kernel Mailing List, seife, rjw

Hi!

> > to reinitialise the graphics hardware, few are going to care about
> > making life easier for Linux.
> 
> 1. A first step towards better DSDTs would be to make the ASL compiler
> complain about the same things which are complained about by the
> in-kernel ACPI interpreter. An example would be the following:
> 
> acpi_processor-0496 [10] acpi_processor_get_inf: Invalid PBLK length [7]
> 
> The ASL compiler will not complain about it, yet the kernel will
> refuse to do any processor throttling with a PBLK length of 7.

Not sure if you can check all interesting stuff statically.

> 2. Urge/force vendors to use the latest ASL compiler available.

Heh, good luck.

> 3. Get some shiny certification/label going that can be put on
> fully conforming products as a sticker. Something like the old
> "EPA pollution preventer" logo, but with a more appealing design.
> Perhaps a "InstantOn/PowerSave" sticker, you get the idea.

Like "This machine actually works" sticker? :-)

> 4. Include a mandantory description of video bringup after resume

That sounds overcomplicated. Simply add this to the specs:
"BIOS must POST video during S3 wakeup. Video mujst be working
and in 80x25 text mode when it jumps to OS. VESA BIOS calls must be available to the OS."

BIOS must do that during normal boot; this should be very little additional
work.
			Pavel
-- 
64 bytes from 195.113.31.123: icmp_seq=28 ttl=51 time=448769.1 ms         


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17 16:44       ` Vernon Mauery
@ 2005-02-17 20:13         ` Carl-Daniel Hailfinger
  0 siblings, 0 replies; 89+ messages in thread
From: Carl-Daniel Hailfinger @ 2005-02-17 20:13 UTC (permalink / raw)
  To: Vernon Mauery
  Cc: Matthew Garrett, Len Brown, Pavel Machek, ACPI mailing list,
	Kernel Mailing List, seife, rjw

Vernon Mauery schrieb:
> Carl-Daniel Hailfinger wrote:
> 
>>1. A first step towards better DSDTs would be to make the ASL compiler
>>complain about the same things which are complained about by the
>>in-kernel ACPI interpreter. An example would be the following:
>>
>>acpi_processor-0496 [10] acpi_processor_get_inf: Invalid PBLK length [7]
>>
>>The ASL compiler will not complain about it, yet the kernel will
>>refuse to do any processor throttling with a PBLK length of 7.
> 
> 
> This is like getting gcc to complain about run-time bugs in a program.

Oh, gcc does that to a certain extent. For example, it has warnings
like "this comparison is always true" or "value too big for selected
type".


> The compiler of a language (ASL in this case) compiles the language,
> regardless of run-time bugs because it can only detect syntax errors.
> And iasl does that pretty well.  

It is possible to do quite a bit of semantic verification at compile
time, but of course there are limits to everything.


Regards,
Carl-Daniel
-- 
http://www.hailfinger.org/

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17 19:54       ` Pavel Machek
@ 2005-02-17 20:34         ` Carl-Daniel Hailfinger
  2005-02-17 20:42           ` Pavel Machek
  0 siblings, 1 reply; 89+ messages in thread
From: Carl-Daniel Hailfinger @ 2005-02-17 20:34 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Matthew Garrett, Len Brown, ACPI mailing list,
	Kernel Mailing List, seife, rjw

Pavel Machek schrieb:
> 
>>>to reinitialise the graphics hardware, few are going to care about
>>>making life easier for Linux.
>>
> [...]
>>3. Get some shiny certification/label going that can be put on
>>fully conforming products as a sticker. Something like the old
>>"EPA pollution preventer" logo, but with a more appealing design.
>>Perhaps a "InstantOn/PowerSave" sticker, you get the idea.
> 
> Like "This machine actually works" sticker? :-)

Yes.

>>4. Include a mandantory description of video bringup after resume
> 
> That sounds overcomplicated. Simply add this to the specs:

You have to start to think like a vendor with a long legacy. Then my
spec draft will make more sense. Basically, you can't tell a vendor
that his hardware is broken or he will ignore your efforts from that
point on. "It's a question of honour." If, on the other hand, a
vendor can claim his products are conforming to the spec by issuing
a software update for broken hardware, it is much more likely that
the spec gets accepted.

> "BIOS must POST video during S3 wakeup. Video must be working
> and in 80x25 text mode when it jumps to OS. VESA BIOS calls must be
> available to the OS."

That would make some products non-conformant which are working
perfectly today. If the video state is preserved over S3, it doesn't
make sense to declare that behaviour non-conformant.

> BIOS must do that during normal boot; this should be very little
> additional work.

Not necessarily. Some BIOSes stay in graphics mode during the whole
bootup (at least it seems so) and would have to include additional
code to enter 80x25 text mode.


Regards,
Carl-Daniel
-- 
http://www.hailfinger.org/

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17 20:34         ` Carl-Daniel Hailfinger
@ 2005-02-17 20:42           ` Pavel Machek
  0 siblings, 0 replies; 89+ messages in thread
From: Pavel Machek @ 2005-02-17 20:42 UTC (permalink / raw)
  To: Carl-Daniel Hailfinger
  Cc: Matthew Garrett, Len Brown, ACPI mailing list,
	Kernel Mailing List, seife, rjw

Hi!
> >>4. Include a mandantory description of video bringup after resume
> > 
> > That sounds overcomplicated. Simply add this to the specs:
> 
> You have to start to think like a vendor with a long legacy. Then my
> spec draft will make more sense. Basically, you can't tell a vendor
> that his hardware is broken or he will ignore your efforts from that
> point on. "It's a question of honour." If, on the other hand, a
> vendor can claim his products are conforming to the spec by issuing
> a software update for broken hardware, it is much more likely that
> the spec gets accepted.

Well, whether you POST video or not is still only
software... anyway...

Your _WAK idea could work for notebooks (but if you did it in _WAK
you'd break windows, so you'd have to call it _VWK (VideoWaK) or
something), but for desktop where user can plug in any video card he
buys... I do not see how you can get away with something other than
normal POST.

> > BIOS must do that during normal boot; this should be very little
> > additional work.
> 
> Not necessarily. Some BIOSes stay in graphics mode during the whole
> bootup (at least it seems so) and would have to include additional
> code to enter 80x25 text mode.

??? When grub is launched, you are in 80x25 text mode.
								Pavel
-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17 19:08         ` Norbert Preining
@ 2005-02-17 20:58           ` Stefan Dösinger
  2005-02-18 10:46             ` Norbert Preining
  0 siblings, 1 reply; 89+ messages in thread
From: Stefan Dösinger @ 2005-02-17 20:58 UTC (permalink / raw)
  To: Norbert Preining
  Cc: acpi-devel, Carl-Daniel Hailfinger, Pavel Machek, kernel list,
	seife, rjw

Am Donnerstag, 17. Februar 2005 20:08 schrieb Norbert Preining:
> On Die, 15 Feb 2005, Stefan Dösinger wrote:
> > > - DRI must be disabled I guess?! Even with newer X server (x.org)?
> >
> > Do you use the fglrx driver? This doesn't work with any type of suspend
> > so far. If you use the radeon driver try a driver update.
>
> Ok, I installed xlibmesa-gl1-dri-trunk, xserver-xfree86-dri-trunk and
> compiled linux-2.6.11-rc4 and drm modules from drm-trunk-module-src, all
> from http://www.nixnuts.net/files/
>
> But I had no success whatsoever. With this (Xorg server, current dri/drm
> stuff, ..) the laptop not even wakes up from sleep!
Sorry, no Idea. What about 2.6.11-rc3-mm2 + Xorg 6.8.1.99? Did you test this 
combination?
Am I right with assuming that resumeworked after the X upgrade if X wasn't 
started before suspend?

Stefan

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17 10:15   ` Vojtech Pavlik
@ 2005-02-17 23:12     ` Len Brown
  0 siblings, 0 replies; 89+ messages in thread
From: Len Brown @ 2005-02-17 23:12 UTC (permalink / raw)
  To: Vojtech Pavlik
  Cc: Pavel Machek, ACPI mailing list, Kernel Mailing List, seife, rjw

On Thu, 2005-02-17 at 05:15, Vojtech Pavlik wrote:

> I'm not sure if you can push the whole industry at once.

The goal is to know what to tell the system vendors
interested in supporting Linux what they should do
with their BIOS on future platforms.

I believe our message should be:
1. BIOS should save/restore video in S3
2. Use Intel's ACPICA ASL compiler -- if not for production,
then at least as a static source code checker for validation.

thanks,
-Len



^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (7 preceding siblings ...)
  2005-02-17  6:16 ` Len Brown
@ 2005-02-17 23:19 ` Luca Capello
  2005-02-23 19:30 ` Nish Aravamudan
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 89+ messages in thread
From: Luca Capello @ 2005-02-17 23:19 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

[-- Attachment #1: Type: text/plain, Size: 1781 bytes --]

Hello Pavel!

On Mon 14 Feb 2005 22:11, Pavel Machek wrote:
> Stefan provided me initial list of machines where S3 works (including
> video). If you have machine that is not on the list, please send me a
> diff. If you have eMachines... I'd like you to try playing with

Sorry, but a diff of what? Of the list?

> Table of known working systems:
>
> Model                           hack (or "how to do it")
> ------------------------------------------------------------------------------
IBM ThinkPad T42p (2373-GTG [1])  acpi_sleep=s3_bios (2)

More info available upon request, but in general:

- Debian unstable
- vanilla kernel 2.6.10
- ACPI patch 20050125
- BlueZ patch -mh4
- IBM trackpoint patch [2]
- radeonfb
- radeon XFree86 4.3.0.dfsg.1-11
- all modules my laptop support installed (and loaded ;-) )
- I used a script that switch to vc1 and stop mysql (this is a known
  problem [3] [4]), then "echo -n [mem|disk] > /sys/power/state"

I've a working S4 with the same configuration, too. But it seems I
still suffer a problem about hwclock I already reported with another
laptop [5] [6]. In this case, the command proposed seems not working
anymore (I should test more deeply, just a question of time ;-) ).

Anyway, this laptop works very well!

I've also a docking station [7], I'll test with it ASAP.

Thx, bye,
Gismo / Luca

[1] http://www5.pc.ibm.com/ch/products.nsf/$wwwPartNumLookup/_UC2GTSE?OpenDocument
[2] http://people.clarkson.edu/~evanchsa/
[3] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=259745
[4] http://bugs.mysql.com/bug.php?id=4596
[5] http://sourceforge.net/mailarchive/message.php?msg_id=9844751
[6] http://sourceforge.net/mailarchive/message.php?msg_id=9864402
[7] http://www5.pc.ibm.com/ch/products.nsf/$wwwPartNumLookup/_74P6733?OpenDocument

[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-17 20:58           ` Stefan Dösinger
@ 2005-02-18 10:46             ` Norbert Preining
  2005-02-18 13:38               ` Norbert Preining
  0 siblings, 1 reply; 89+ messages in thread
From: Norbert Preining @ 2005-02-18 10:46 UTC (permalink / raw)
  To: Stefan Dösinger
  Cc: acpi-devel, Carl-Daniel Hailfinger, Pavel Machek, kernel list,
	seife, rjw

On Don, 17 Feb 2005, Stefan Dösinger wrote:
> > Ok, I installed xlibmesa-gl1-dri-trunk, xserver-xfree86-dri-trunk and
> > compiled linux-2.6.11-rc4 and drm modules from drm-trunk-module-src, all
> > from http://www.nixnuts.net/files/
> >
> > But I had no success whatsoever. With this (Xorg server, current dri/drm
> > stuff, ..) the laptop not even wakes up from sleep!
> Sorry, no Idea. What about 2.6.11-rc3-mm2 + Xorg 6.8.1.99? Did you test this 
> combination?

I tried:
	2.6.11-rc3-mm2 + Xorg + DRI disabled
and this works.

I cannot enable dri/drm with the cvs version of the drm modules, because
the drm modules do not compile for -mm kernels, since there is the patch
for multiple agp bridges included (that's the reason why I tried -rc4
without mm) and the drm modules from drm-trunk-module-src are not
prepared to the change of the api. I even tried to incorporate the
changes to the api but gave up.

I *can* active dri but with the builtin kernel drm modules, which makes
the kernel freeze while resuming.

> Am I right with assuming that resumeworked after the X upgrade if X wasn't 
> started before suspend?

NO!!! Most interestingly: Doing a suspend from single user mode makes
the machine freeze (not even sysrq!)

I suspect that it has to do with the restoring of graphics state with
vbetool from a data set which was taken *while* running X: My
suspend2ram script looks like this (as suggested here):

statedir=/root/s3/state
/usr/bin/chvt 1
cat /dev/vcsa >$statedir/vcsa
sync
echo 3 > /proc/acpi/sleep
sync
vbetool post
vbetool vbestate restore <$statedir/vbe
cat $statedir/vcsa >/dev/vcsa
...

but $statedir/vbe was taken once for XFree86 running. Can this be the
reason for the freeze?


Best wishes

Norbert

-------------------------------------------------------------------------------
Norbert Preining <preining AT logic DOT at>                 Università di Siena
sip:preining@at43.tuwien.ac.at                             +43 (0) 59966-690018
gpg DSA: 0x09C5B094      fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
-------------------------------------------------------------------------------
MAVIS ENDERBY (n.)
The almost-completely-forgotten girlfriend from your distant past for
whom your wife has a completely irrational jealousy and hatred.
			--- Douglas Adams, The Meaning of Liff

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-18 10:46             ` Norbert Preining
@ 2005-02-18 13:38               ` Norbert Preining
  2005-02-18 18:04                 ` Stefan Dösinger
  0 siblings, 1 reply; 89+ messages in thread
From: Norbert Preining @ 2005-02-18 13:38 UTC (permalink / raw)
  To: Stefan Dösinger
  Cc: acpi-devel, Carl-Daniel Hailfinger, Pavel Machek, kernel list,
	seife, rjw

On Fre, 18 Feb 2005, Norbert Preining wrote:
> I tried:
> 	2.6.11-rc3-mm2 + Xorg + DRI disabled
> and this works.
> 
> I cannot enable dri/drm with the cvs version of the drm modules, because
> the drm modules do not compile for -mm kernels, since there is the patch
> for multiple agp bridges included (that's the reason why I tried -rc4

Final observation: After patching in the changes from mm kernels for
multiple agp bridges to the drm-source code (the patch
drm-add-support-for-new-multiple-agp-bridge-agpgart-api.patch from the
broken out archive) I could compile the drm-trunk-src modules.

So now I am running with 2.6.11-rc3-mm2 + Xorg + DRI enabled (and
working) with the drm modules from drm-trunk-module-src.

Outcome: freeze when switching to X. As with the other modules (in fact
I think that most of the changes to the drm stuff are included in the mm
kernel, so this should not change anything, as mm pulls from bk-agpgart,
bk-drm-via) a funny screen, and the CapsLock light is blinking.

Best wishes

Norbert

-------------------------------------------------------------------------------
Norbert Preining <preining AT logic DOT at>                 Università di Siena
sip:preining@at43.tuwien.ac.at                             +43 (0) 59966-690018
gpg DSA: 0x09C5B094      fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
-------------------------------------------------------------------------------
`That young girl is one of the least benightedly
unintelligent organic life forms it has been my profound
lack of pleasure not to be able to avoid meeting.'
                 --- Marvin's first ever compliment about anybody.
                 --- Douglas Adams, The Hitchhikers Guide to the Galaxy

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-18 13:38               ` Norbert Preining
@ 2005-02-18 18:04                 ` Stefan Dösinger
  0 siblings, 0 replies; 89+ messages in thread
From: Stefan Dösinger @ 2005-02-18 18:04 UTC (permalink / raw)
  To: Norbert Preining
  Cc: acpi-devel, Carl-Daniel Hailfinger, Pavel Machek, kernel list,
	seife, rjw

Am Freitag, 18. Februar 2005 14:38 schrieb Norbert Preining:
> On Fre, 18 Feb 2005, Norbert Preining wrote:
> > I tried:
> >  2.6.11-rc3-mm2 + Xorg + DRI disabled
> > and this works.
> >
> > I cannot enable dri/drm with the cvs version of the drm modules, because
> > the drm modules do not compile for -mm kernels, since there is the patch
> > for multiple agp bridges included (that's the reason why I tried -rc4
>
> Final observation: After patching in the changes from mm kernels for
> multiple agp bridges to the drm-source code (the patch
> drm-add-support-for-new-multiple-agp-bridge-agpgart-api.patch from the
> broken out archive) I could compile the drm-trunk-src modules.
>
> So now I am running with 2.6.11-rc3-mm2 + Xorg + DRI enabled (and
> working) with the drm modules from drm-trunk-module-src.
>
> Outcome: freeze when switching to X. As with the other modules (in fact
> I think that most of the changes to the drm stuff are included in the mm
> kernel, so this should not change anything, as mm pulls from bk-agpgart,
> bk-drm-via) a funny screen, and the CapsLock light is blinking.
Kernel panik. Can you ssh into your maschine and get a dmesg? I recommend you 
to write to the dri devs.

Stefan

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-16 14:25           ` Kjartan Maraas
@ 2005-02-18 20:49             ` Alistair John Strachan
  2005-02-20  9:21               ` Luca Capello
                                 ` (2 more replies)
  0 siblings, 3 replies; 89+ messages in thread
From: Alistair John Strachan @ 2005-02-18 20:49 UTC (permalink / raw)
  To: Kjartan Maraas
  Cc: Lorenzo Colitti, Matthew Garrett, Pavel Machek,
	ACPI mailing list, kernel list, seife, rjw

On Wednesday 16 Feb 2005 14:25, Kjartan Maraas wrote:
> tir, 15,.02.2005 kl. 17.42 +0000, skrev Alistair John Strachan:
> > On Tuesday 15 Feb 2005 16:16, Lorenzo Colitti wrote:
> > [snip]
> >
> > > Ok, here is the output from dmidecode (Debian package) and from lspci.
> > > I don't have acpidmp and I don't know where to get it, but if you think
> > > it's necessary I can download it if you tell me where to find it.
> >
> > Find below a diff of my dmidecode output versus Lorenzo's. Nothing much
> > to call home about.
>
> I've attached a diff against Lorenzo's too. Only difference is that my
> laptop is a nc4010, and looking here it's clear that this model doesn't
> support APM at least. I also have non-working S3. It behaves just like
> the entry in the ubuntu wiki for the nc6000 in all three cases with a
> full system running at least. I'll try init=/bin/sh later to see if that
> helps and if it does experiment with removing modules one by one...

Got it. Sorry for the radio silence, I've been busy for a few days.

I discovered that either the i2c_core.ko or i2c_i801.ko modules cause the hang 
on resume! If you stop the entire i2c subsystem from being loaded by hotplug 
(note this is the BUS driver, not the sensors driver!), then resume works 
perfectly! Presumably there's a bug in the resuming of this module.

In other news, USB devices only work after I remove uhci_hcd and ehci_hcd and 
reload them.

The s3_bios workaround allows video to kind of work, but I can't use anything 
other than vga=normal (vesafb results in corruption), and the screen is no 
longer artificially resized to fill the LCD, it's native res and centered 
(which sure is annoying).

Kjartan, I hope you isolate the driver causing you problems, as it seems these 
machines can be made, even if it is a bit of a headache.

Lorenzo, thanks for your kernel config. It made it a lot easier to debug this 
problem.

-- 
Cheers,
Alistair.

personal:   alistair()devzero!co!uk
university: s0348365()sms!ed!ac!uk
student:    CS/CSim Undergraduate
contact:    1F2 55 South Clerk Street,
            Edinburgh. EH8 9PP.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-18 20:49             ` Alistair John Strachan
@ 2005-02-20  9:21               ` Luca Capello
  2005-02-21 14:25               ` Kjartan Maraas
  2005-02-22 14:33               ` Karol Kozimor
  2 siblings, 0 replies; 89+ messages in thread
From: Luca Capello @ 2005-02-20  9:21 UTC (permalink / raw)
  To: Alistair John Strachan
  Cc: Kjartan Maraas, Lorenzo Colitti, Matthew Garrett, Pavel Machek,
	ACPI mailing list, kernel list, seife, rjw

[-- Attachment #1: Type: text/plain, Size: 1700 bytes --]

Hello!

On Fri 18 Feb 2005 21:49, Alistair John Strachan wrote:
> I discovered that either the i2c_core.ko or i2c_i801.ko modules cause the hang 
> on resume! If you stop the entire i2c subsystem from being loaded by hotplug 
> (note this is the BUS driver, not the sensors driver!), then resume works 
> perfectly! Presumably there's a bug in the resuming of this module.

Well, on my IBM ThinkPad T42p (ATI FireGL T2 128MB), I can resume with
both I2C modules loaded, so probably the problem is not specific to
the I2C subsystem.

> In other news, USB devices only work after I remove uhci_hcd and ehci_hcd and 
> reload them.

I just tested two USB devices after S3 resuming without having removed
the USB modules (uhci-hcb and ehci-hcd):

- Logitech USB Wheel Mouse (046d:c00c, USB 1.x), it works with no
  problem on console, but not on X (this was caused by the fact that
  I've two corepointer on my XF86Config-4, in fact after having
  corrected this error and restarted X, the USB mouse works)

- Mitsubishi Chemical 2.5" HD Case (05e3:0702, USB 2.0 [1], with a
  SAMSUNG MP0804H 80GB), it works with no problem :-D

> The s3_bios workaround allows video to kind of work, but I can't use anything 
> other than vga=normal (vesafb results in corruption), and the screen is no 
> longer artificially resized to fill the LCD, it's native res and centered 
> (which sure is annoying).

Again, IMHO the problem is specific to your machine: I use the
radeonfb (with acpi_sleep=s3_bios) and the resume is ok (both in
console and Debian XFree86-4.3.0.dfsg.1-11, radeon driver).

Thx, bye,
Gismo / Luca

[1] http://www.qbik.ch/usb/devices/showdescr.php?id=3039

[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-18 20:49             ` Alistair John Strachan
  2005-02-20  9:21               ` Luca Capello
@ 2005-02-21 14:25               ` Kjartan Maraas
  2005-02-22 14:33               ` Karol Kozimor
  2 siblings, 0 replies; 89+ messages in thread
From: Kjartan Maraas @ 2005-02-21 14:25 UTC (permalink / raw)
  To: Alistair John Strachan
  Cc: Lorenzo Colitti, Matthew Garrett, Pavel Machek,
	ACPI mailing list, kernel list, seife, rjw

fre, 18,.02.2005 kl. 20.49 +0000, skrev Alistair John Strachan:
> On Wednesday 16 Feb 2005 14:25, Kjartan Maraas wrote:
> > tir, 15,.02.2005 kl. 17.42 +0000, skrev Alistair John Strachan:
> > > On Tuesday 15 Feb 2005 16:16, Lorenzo Colitti wrote:
> > > [snip]
> > >
> > > > Ok, here is the output from dmidecode (Debian package) and from lspci.
> > > > I don't have acpidmp and I don't know where to get it, but if you think
> > > > it's necessary I can download it if you tell me where to find it.
> > >
> > > Find below a diff of my dmidecode output versus Lorenzo's. Nothing much
> > > to call home about.
> >
> > I've attached a diff against Lorenzo's too. Only difference is that my
> > laptop is a nc4010, and looking here it's clear that this model doesn't
> > support APM at least. I also have non-working S3. It behaves just like
> > the entry in the ubuntu wiki for the nc6000 in all three cases with a
> > full system running at least. I'll try init=/bin/sh later to see if that
> > helps and if it does experiment with removing modules one by one...
> 
> Got it. Sorry for the radio silence, I've been busy for a few days.
> 
> I discovered that either the i2c_core.ko or i2c_i801.ko modules cause the hang 
> on resume! If you stop the entire i2c subsystem from being loaded by hotplug 
> (note this is the BUS driver, not the sensors driver!), then resume works 
> perfectly! Presumably there's a bug in the resuming of this module.
> 
> In other news, USB devices only work after I remove uhci_hcd and ehci_hcd and 
> reload them.
> 
> The s3_bios workaround allows video to kind of work, but I can't use anything 
> other than vga=normal (vesafb results in corruption), and the screen is no 
> longer artificially resized to fill the LCD, it's native res and centered 
> (which sure is annoying).
> 
> Kjartan, I hope you isolate the driver causing you problems, as it seems these 
> machines can be made, even if it is a bit of a headache.
> 
I tried it again now using init=/bin/sh and acpi_sleep=s3_bios and it
still gives a black screen on resume... :-/

Cheers
Kjartan



^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-02-18 20:49             ` Alistair John Strachan
  2005-02-20  9:21               ` Luca Capello
  2005-02-21 14:25               ` Kjartan Maraas
@ 2005-02-22 14:33               ` Karol Kozimor
  2 siblings, 0 replies; 89+ messages in thread
From: Karol Kozimor @ 2005-02-22 14:33 UTC (permalink / raw)
  To: Alistair John Strachan
  Cc: Kjartan Maraas, Lorenzo Colitti, Matthew Garrett, Pavel Machek,
	ACPI mailing list, kernel list, seife, rjw

Thus wrote Alistair John Strachan:
> I discovered that either the i2c_core.ko or i2c_i801.ko modules cause the hang 
> on resume! If you stop the entire i2c subsystem from being loaded by hotplug 
> (note this is the BUS driver, not the sensors driver!), then resume works 
> perfectly! Presumably there's a bug in the resuming of this module.

Might it be another instance of the LPC chip config space messed up on resume?
Best regards,

-- 
Karol 'sziwan' Kozimor
sziwan@hell.org.pl

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-15 17:08     ` Norbert Preining
                         ` (3 preceding siblings ...)
  2005-02-16  9:34       ` Romano Giannetti
@ 2005-02-22 22:08       ` Karol Kozimor
  2005-02-24 12:37         ` Norbert Preining
  4 siblings, 1 reply; 89+ messages in thread
From: Karol Kozimor @ 2005-02-22 22:08 UTC (permalink / raw)
  To: Norbert Preining
  Cc: Carl-Daniel Hailfinger, Pavel Machek, ACPI mailing list,
	kernel list, seife, rjw

Thus wrote Norbert Preining:
> - DRI must be disabled I guess?! Even with newer X server (x.org)?

You still didn't state which X server are you using. In short, XFree86 4.4,
X.Org 6.7 and 6.8.2 are fine, anything other (including X.Org 6.8.0 and .1)
is not.
Best regards,

-- 
Karol 'sziwan' Kozimor
sziwan@hell.org.pl

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (8 preceding siblings ...)
  2005-02-17 23:19 ` Luca Capello
@ 2005-02-23 19:30 ` Nish Aravamudan
  2005-03-02 10:24 ` Stefan Seyfried
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 89+ messages in thread
From: Nish Aravamudan @ 2005-02-23 19:30 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

[-- Attachment #1: Type: text/plain, Size: 1445 bytes --]

On Mon, 14 Feb 2005 22:11:05 +0100, Pavel Machek <pavel@suse.cz> wrote:
> Hi!

<snip>
 
> Table of known working systems:
> 
> Model                           hack (or "how to do it")
> ------------------------------------------------------------------------------
> IBM TP R32 / Type 2658-MMG      none (1)
> Athlon HP Omnibook XE3          none (1)
> Compaq Armada E500 - P3-700     none (1) (S1 also works OK)
> IBM t41p                        none (1)

I am not sure if this is a problem with my machine or the code, but my
T41p does not work "correctly." [1] Pressing the sleep key (Fn-F4),
does sleep the machine, very quickly and nicely. However, on wake-up,
only an external CRT will display video. I see the LCD's backlight
come on, but no video is displayed there. I also noticed that my USB
mouse does not seem to work (this may be a BIOS setting issue, which
I'll check out on next reboot -- soon).

I have noticed that the IBM ACPI extras seems to do some things
incorrectly for me. /proc/acpi/ibm/dock always reports "status:       
 undocked," even though I'm very much docked right now. Echo'ing
auto_enable/auto_disable into /proc/acpi/ibm/video does change the
auto state, but doing the same for {lcd,crt}_{enable,disable} does
nothing (including not changing the displayed state).

I'm more than happy to try patches, BIOS setting changes, etc.

Thanks,
Nish

[1] Attached dmidecode output (hopefully not screwed up by gmail)

[-- Attachment #2: dmidecode.out --]
[-- Type: application/octet-stream, Size: 15521 bytes --]

# dmidecode 2.5
SMBIOS 2.33 present.
61 structures occupying 2127 bytes.
Table at 0x000E0010.
Handle 0x0000
	DMI type 0, 20 bytes.
	BIOS Information
		Vendor: IBM
		Version: 1RETDIWW (3.14 )
		Release Date: 01/20/2005
		Address: 0xDC000
		Runtime Size: 144 kB
		ROM Size: 1024 kB
		Characteristics:
			PCI is supported
			PC Card (PCMCIA) is supported
			PNP is supported
			APM is supported
			BIOS is upgradeable
			BIOS shadowing is allowed
			ESCD support is available
			Boot from CD is supported
			Selectable boot is supported
			EDD is supported
			3.5"/720 KB floppy services are supported (int 13h)
			Print screen service is supported (int 5h)
			8042 keyboard services are supported (int 9h)
			Serial services are supported (int 14h)
			Printer services are supported (int 17h)
			CGA/mono video services are supported (int 10h)
			ACPI is supported
			USB legacy is supported
			AGP is supported
			BIOS boot specification is supported
Handle 0x0001
	DMI type 1, 25 bytes.
	System Information
		Manufacturer: IBM
		Product Name: 2373315
		Version: ThinkPad T41p
		Serial Number: 99K0MMB
		UUID: 7C6ED401-4768-11CB-98C4-F44C4B7B4E0F
		Wake-up Type: Power Switch
Handle 0x0002
	DMI type 2, 8 bytes.
	Base Board Information
		Manufacturer: IBM
		Product Name: 2373315
		Version: Not Available
		Serial Number: J1V9447N1H8
Handle 0x0003
	DMI type 3, 17 bytes.
	Chassis Information
		Manufacturer: IBM
		Type: Notebook
		Lock: Not Present
		Version: Not Available
		Serial Number: Not Available
		Asset Tag: No Asset Information
		Boot-up State: Unknown
		Power Supply State: Unknown
		Thermal State: Unknown
		Security Status: Unknown
		OEM Information: 0x00000000
Handle 0x0004
	DMI type 126, 17 bytes.
	Inactive
Handle 0x0005
	DMI type 3, 17 bytes.
	Chassis Information
		Manufacturer: IBM
		Type: Peripheral Chassis
		Lock: Not Present
		Version: Not Available
		Serial Number: Not Available
		Asset Tag: Not Available
		Boot-up State: Unknown
		Power Supply State: Unknown
		Thermal State: Unknown
		Security Status: Unknown
		OEM Information: 0x00000000
Handle 0x0006
	DMI type 4, 35 bytes.
	Processor Information
		Socket Designation: None
		Type: Central Processor
		Family: Pentium M
		Manufacturer: GenuineIntel
		ID: 95 06 00 00 BF F9 E9 A7
		Signature: Type 0, Family 6, Model 9, Stepping 5
		Flags:
			FPU (Floating-point unit on-chip)
			VME (Virtual mode extension)
			DE (Debugging extension)
			PSE (Page size extension)
			TSC (Time stamp counter)
			MSR (Model specific registers)
			MCE (Machine check exception)
			CX8 (CMPXCHG8 instruction supported)
			SEP (Fast system call)
			MTRR (Memory type range registers)
			PGE (Page global enable)
			MCA (Machine check architecture)
			CMOV (Conditional move instruction supported)
			PAT (Page attribute table)
			CLFSH (CLFLUSH instruction supported)
			DS (Debug store)
			ACPI (ACPI supported)
			MMX (MMX technology supported)
			FXSR (Fast floating-point save and restore)
			SSE (Streaming SIMD extensions)
			SSE2 (Streaming SIMD extensions 2)
			TM (Thermal monitor supported)
			SBF (Signal break on FERR)
		Version: Intel(R) Pentium(R) M processor
		Voltage: 1.5 V
		External Clock: 400 MHz
		Max Speed: 1700 MHz
		Current Speed: 1700 MHz
		Status: Populated, Enabled
		Upgrade: None
		L1 Cache Handle: 0x000A
		L2 Cache Handle: 0x000B
		L3 Cache Handle: Not Provided
		Serial Number: Not Specified
		Asset Tag: Not Specified
		Part Number: Not Specified
Handle 0x0007
	DMI type 5, 20 bytes.
	Memory Controller Information
		Error Detecting Method: None
		Error Correcting Capabilities:
			None
		Supported Interleave: One-way Interleave
		Current Interleave: One-way Interleave
		Maximum Memory Module Size: 1024 MB
		Maximum Total Memory Size: 2048 MB
		Supported Speeds:
			Other
		Supported Memory Types:
			DIMM
			SDRAM
		Memory Module Voltage: 2.9 V
		Associated Memory Slots: 2
			0x0008
			0x0009
		Enabled Error Correcting Capabilities:
			None
Handle 0x0008
	DMI type 6, 12 bytes.
	Memory Module Information
		Socket Designation: DIMM Slot 1
		Bank Connections: 0 1
		Current Speed: Unknown
		Type: DIMM SDRAM
		Installed Size: 1024 MB (Double-bank Connection)
		Enabled Size: 1024 MB (Double-bank Connection)
		Error Status: OK
Handle 0x0009
	DMI type 6, 12 bytes.
	Memory Module Information
		Socket Designation: DIMM Slot 2
		Bank Connections: 2 3
		Current Speed: Unknown
		Type: DIMM SDRAM
		Installed Size: Not Installed (Single-bank Connection)
		Enabled Size: Not Installed (Single-bank Connection)
		Error Status: OK
Handle 0x000A
	DMI type 7, 19 bytes.
	Cache Information
		Socket Designation: Internal L1 Cache
		Configuration: Enabled, Socketed, Level 1
		Operational Mode: Write Back
		Location: Internal
		Installed Size: 32 KB
		Maximum Size: 32 KB
		Supported SRAM Types:
			Synchronous
		Installed SRAM Type: Synchronous
		Speed: Unknown
		Error Correction Type: Unknown
		System Type: Other
		Associativity: 8-way Set-associative
Handle 0x000B
	DMI type 7, 19 bytes.
	Cache Information
		Socket Designation: Internal L2 Cache
		Configuration: Enabled, Socketed, Level 2
		Operational Mode: Write Back
		Location: Internal
		Installed Size: 1024 KB
		Maximum Size: 1024 KB
		Supported SRAM Types:
			Burst
		Installed SRAM Type: Burst
		Speed: Unknown
		Error Correction Type: Multi-bit ECC
		System Type: Unified
		Associativity: 8-way Set-associative
Handle 0x000C
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: Serial
		External Connector Type: DB-9 male
		Port Type: Serial Port 16550A Compatible
Handle 0x000D
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: Infrared
		External Connector Type: Infrared
		Port Type: Other
Handle 0x000E
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: Parallel
		External Connector Type: DB-25 female
		Port Type: Parallel Port ECP/EPP
Handle 0x000F
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: External Monitor
		External Connector Type: DB-15 female
		Port Type: Video Port
Handle 0x0010
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: PS/2 Mouse
		External Connector Type: PS/2
		Port Type: Mouse Port
Handle 0x0011
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: PS/2 Keyboard
		External Connector Type: PS/2
		Port Type: Keyboard Port
Handle 0x0012
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: External Diskette Drive
		External Connector Type: On Board Floppy
		Port Type: Other
Handle 0x0013
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: Line-In Jack
		External Connector Type: Mini Jack (headphones)
		Port Type: Audio Port
Handle 0x0014
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: Line-Out Jack
		External Connector Type: Mini Jack (headphones)
		Port Type: Audio Port
Handle 0x0015
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: Microphone Jack
		External Connector Type: Mini Jack (headphones)
		Port Type: Audio Port
Handle 0x0016
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: Headphone Jack
		External Connector Type: Mini Jack (headphones)
		Port Type: Audio Port
Handle 0x0017
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: S-Video-Out
		External Connector Type: Other
		Port Type: Video Port
Handle 0x0018
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: Digital Video
		External Connector Type: Other
		Port Type: Video Port
Handle 0x0019
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: Modem
		External Connector Type: RJ-11
		Port Type: Modem Port
Handle 0x001A
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: Ethernet
		External Connector Type: RJ-45
		Port Type: Network Port
Handle 0x001B
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: USB 1
		External Connector Type: Access Bus (USB)
		Port Type: USB
Handle 0x001C
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: USB 2
		External Connector Type: Access Bus (USB)
		Port Type: USB
Handle 0x001D
	DMI type 8, 9 bytes.
	Port Connector Information
		Internal Reference Designator: Not Available
		Internal Connector Type: None
		External Reference Designator: USB 3
		External Connector Type: Access Bus (USB)
		Port Type: USB
Handle 0x001E
	DMI type 126, 9 bytes.
	Inactive
Handle 0x001F
	DMI type 126, 9 bytes.
	Inactive
Handle 0x0020
	DMI type 126, 9 bytes.
	Inactive
Handle 0x0021
	DMI type 126, 9 bytes.
	Inactive
Handle 0x0022
	DMI type 9, 13 bytes.
	System Slot Information
		Designation: CardBus Slot 1
		Type: 32-bit PC Card (PCMCIA)
		Current Usage: Available
		Length: Other
		ID: Adapter 0, Socket 0
		Characteristics:
			5.0 V is provided
			3.3 V is provided
			PC Card-16 is supported
			Cardbus is supported
			Zoom Video is supported
			Modem ring resume is supported
			PME signal is supported
			Hot-plug devices are supported
Handle 0x0023
	DMI type 9, 13 bytes.
	System Slot Information
		Designation: CardBus Slot 2
		Type: 32-bit PC Card (PCMCIA)
		Current Usage: Available
		Length: Other
		ID: Adapter 1, Socket 0
		Characteristics:
			5.0 V is provided
			3.3 V is provided
			PC Card-16 is supported
			Cardbus is supported
			Zoom Video is supported
			Modem ring resume is supported
			PME signal is supported
			Hot-plug devices are supported
Handle 0x0024
	DMI type 126, 13 bytes.
	Inactive
Handle 0x0025
	DMI type 126, 13 bytes.
	Inactive
Handle 0x0026
	DMI type 9, 13 bytes.
	System Slot Information
		Designation: Mini-PCI Slot 1
		Type: 32-bit PCI
		Current Usage: Available
		Length: Other
		ID: 1
		Characteristics:
			5.0 V is provided
			3.3 V is provided
			PME signal is supported
			SMBus signal is supported
Handle 0x0027
	DMI type 126, 13 bytes.
	Inactive
Handle 0x0028
	DMI type 10, 6 bytes.
	On Board Device Information
		Type: Other
		Status: Disabled
		Description: IBM Embedded Security hardware
Handle 0x0029
	DMI type 11, 5 bytes.
	OEM Strings
		String 1: IBM ThinkPad Embedded Controller -[1RHT71WW-3.04    ]-
Handle 0x002A
	DMI type 13, 22 bytes.
	BIOS Language Information
		Installable Languages: 1
			enUS
		Currently Installed Language: enUS
Handle 0x002B
	DMI type 15, 25 bytes.
	System Event Log
		Area Length: 0 bytes
		Header Start Offset: 0x0000
		Header Length: 16 bytes
		Data Start Offset: 0x0010
		Access Method: General-purpose non-volatile data functions
		Access Address: 0x0000
		Status: Invalid, Not Full
		Change Token: 0x00000040
		Header Format: Type 1
		Supported Log Type Descriptors: 1
		Descriptor 1: POST error
		Data Format 1: POST results bitmap
Handle 0x002C
	DMI type 16, 15 bytes.
	Physical Memory Array
		Location: System Board Or Motherboard
		Use: System Memory
		Error Correction Type: None
		Maximum Capacity: 1 GB
		Error Information Handle: Not Provided
		Number Of Devices: 2
Handle 0x002D
	DMI type 17, 27 bytes.
	Memory Device
		Array Handle: 0x002C
		Error Information Handle: No Error
		Total Width: 64 bits
		Data Width: 64 bits
		Size: 1024 MB
		Form Factor: SODIMM
		Set: None
		Locator: DIMM 1
		Bank Locator: Bank 0/1
		Type: DDR
		Type Detail: Synchronous
		Speed: Unknown
		Manufacturer: Not Specified
		Serial Number: Not Specified
		Asset Tag: Not Specified
		Part Number: Not Specified
Handle 0x002E
	DMI type 17, 27 bytes.
	Memory Device
		Array Handle: 0x002C
		Error Information Handle: No Error
		Total Width: Unknown
		Data Width: Unknown
		Size: No Module Installed
		Form Factor: SODIMM
		Set: None
		Locator: DIMM 2
		Bank Locator: Bank 2/3
		Type: DDR
		Type Detail: Synchronous
		Speed: Unknown
		Manufacturer: Not Specified
		Serial Number: Not Specified
		Asset Tag: Not Specified
		Part Number: Not Specified
Handle 0x002F
	DMI type 18, 23 bytes.
	32-bit Memory Error Information
		Type: OK
		Granularity: Unknown
		Operation: Unknown
		Vendor Syndrome: Unknown
		Memory Array Address: Unknown
		Device Address: Unknown
		Resolution: Unknown
Handle 0x0030
	DMI type 19, 15 bytes.
	Memory Array Mapped Address
		Starting Address: 0x00000000000
		Ending Address: 0x0003FFFFFFF
		Range Size: 1 GB
		Physical Array Handle: 0x002C
		Partition Width: 0
Handle 0x0031
	DMI type 20, 19 bytes.
	Memory Device Mapped Address
		Starting Address: 0x00000000000
		Ending Address: 0x0003FFFFFFF
		Range Size: 1 GB
		Physical Device Handle: 0x002D
		Memory Array Mapped Address Handle: 0x0030
		Partition Row Position: 1
Handle 0x0032
	DMI type 126, 19 bytes.
	Inactive
Handle 0x0033
	DMI type 21, 7 bytes.
	Built-in Pointing Device
		Type: Track Point
		Interface: PS/2
		Buttons: 3
Handle 0x0034
	DMI type 21, 7 bytes.
	Built-in Pointing Device
		Type: Touch Pad
		Interface: PS/2
		Buttons: 0
Handle 0x0035
	DMI type 24, 5 bytes.
	Hardware Security
		Power-On Password Status: Enabled
		Keyboard Password Status: Disabled
		Administrator Password Status: Disabled
		Front Panel Reset Status: Unknown
Handle 0x0036
	DMI type 32, 11 bytes.
	System Boot Information
		Status: No errors detected
Handle 0x0037
	DMI type 131, 102 bytes.
	OEM-specific Type
		Header and Data:
			83 66 37 00 01 00 00 00 00 01 72 03 40 00 AE 80
			00 02 00 00 00 00 00 2A 00 40 2A 00 00 00 00 00
			00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
			00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
			00 00 00 00 00 00 00 00 00 00 16 00 80 16 00 00
			00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
			00 00 00 00 00 00
		Strings:
			IBMCFGDATA
Handle 0x0038
	DMI type 131, 17 bytes.
	OEM-specific Type
		Header and Data:
			83 11 38 00 01 02 03 FF FF 1F 00 00 00 00 00 02
			00
		Strings:
			BOOTINF 20h
			BOOTDEV 21h
			KEYPTRS 23h
Handle 0x0039
	DMI type 132, 7 bytes.
	OEM-specific Type
		Header and Data:
			84 07 39 00 01 DA 36
Handle 0x003A
	DMI type 133, 5 bytes.
	OEM-specific Type
		Header and Data:
			85 05 3A 00 01
		Strings:
			KHOIHGIUCCHHII
Handle 0x003B
	DMI type 126, 13 bytes.
	Inactive
Handle 0x003C
	DMI type 127, 4 bytes.
	End Of Table

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-22 22:08       ` Karol Kozimor
@ 2005-02-24 12:37         ` Norbert Preining
  2005-02-24 21:36           ` Karol Kozimor
                             ` (2 more replies)
  0 siblings, 3 replies; 89+ messages in thread
From: Norbert Preining @ 2005-02-24 12:37 UTC (permalink / raw)
  To: Carl-Daniel Hailfinger, Pavel Machek, ACPI mailing list,
	kernel list, seife, rjw

On Die, 22 Feb 2005, Karol Kozimor wrote:
> Thus wrote Norbert Preining:
> > - DRI must be disabled I guess?! Even with newer X server (x.org)?
> 
> You still didn't state which X server are you using. In short, XFree86 4.4,

I have stated it several times, but here a sum up:

- XFree86 4.3 (debian/sid) 
	no work
- X.Org 6.8.1.99 (debian -dri-trunk stuff plus kernel modules9
	no work
	with 2.6.11-rc4 and 2.6.11-rc3-mm2
	this server crashes when switching to the console or shutting
	down (crashing is sometimes, not always), very nice screen which
	slowly turns white

Best wishes

Norbert

-------------------------------------------------------------------------------
Norbert Preining <preining AT logic DOT at>                 Università di Siena
sip:preining@at43.tuwien.ac.at                             +43 (0) 59966-690018
gpg DSA: 0x09C5B094      fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
-------------------------------------------------------------------------------
QUEDGELEY (n.)
A rabidly left-wing politician who can afford to be that way because
he married a millionairess.
			--- Douglas Adams, The Meaning of Liff

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-24 12:37         ` Norbert Preining
@ 2005-02-24 21:36           ` Karol Kozimor
  2005-02-25 17:50           ` Proinnsias Breathnach
  2005-02-27 16:57           ` Pavel Machek
  2 siblings, 0 replies; 89+ messages in thread
From: Karol Kozimor @ 2005-02-24 21:36 UTC (permalink / raw)
  To: Norbert Preining
  Cc: Carl-Daniel Hailfinger, Pavel Machek, ACPI mailing list,
	kernel list, seife, rjw

Thus wrote Norbert Preining:
> - X.Org 6.8.1.99 (debian -dri-trunk stuff plus kernel modules9
> 	no work
> 	with 2.6.11-rc4 and 2.6.11-rc3-mm2
> 	this server crashes when switching to the console or shutting
> 	down (crashing is sometimes, not always), very nice screen which
> 	slowly turns white

This is either distribution or hardware specific. Try with vanilla 6.8.2
and stock DRM modules, perhaps?
Best regards,

-- 
Karol 'sziwan' Kozimor
sziwan@hell.org.pl

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-24 12:37         ` Norbert Preining
  2005-02-24 21:36           ` Karol Kozimor
@ 2005-02-25 17:50           ` Proinnsias Breathnach
  2005-02-27 16:57           ` Pavel Machek
  2 siblings, 0 replies; 89+ messages in thread
From: Proinnsias Breathnach @ 2005-02-25 17:50 UTC (permalink / raw)
  To: Norbert Preining
  Cc: Carl-Daniel Hailfinger, Pavel Machek, ACPI mailing list,
	kernel list, seife, rjw

On Thu, Feb 24, 2005 at 01:37:16PM +0100, Norbert Preining wrote:
> - X.Org 6.8.1.99 (debian -dri-trunk stuff plus kernel modules9
> 	no work
> 	with 2.6.11-rc4 and 2.6.11-rc3-mm2
> 	this server crashes when switching to the console or shutting
> 	down (crashing is sometimes, not always), very nice screen which
> 	slowly turns white
> 
I get a very similar experience on a Sony Vaio PCG-FX401 (Duron 800 /
Mach64 based RageM1)

All suggestions welcome - no DRI or Framebuffers in use - X is Xorg
6.8.2 and the kernel is a 2.6.10mdk from cooker (yeah - I know not
vanilla)

P

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-24 12:37         ` Norbert Preining
  2005-02-24 21:36           ` Karol Kozimor
  2005-02-25 17:50           ` Proinnsias Breathnach
@ 2005-02-27 16:57           ` Pavel Machek
  2005-02-27 18:04             ` Stefan Seyfried
  2 siblings, 1 reply; 89+ messages in thread
From: Pavel Machek @ 2005-02-27 16:57 UTC (permalink / raw)
  To: Norbert Preining
  Cc: Carl-Daniel Hailfinger, ACPI mailing list, kernel list, seife, rjw

Hi!

> > > - DRI must be disabled I guess?! Even with newer X server (x.org)?
> > 
> > You still didn't state which X server are you using. In short, XFree86 4.4,
> 
> I have stated it several times, but here a sum up:
> 
> - XFree86 4.3 (debian/sid) 
> 	no work
> - X.Org 6.8.1.99 (debian -dri-trunk stuff plus kernel modules9
> 	no work
> 	with 2.6.11-rc4 and 2.6.11-rc3-mm2
> 	this server crashes when switching to the console or shutting
> 	down (crashing is sometimes, not always), very nice screen which
> 	slowly turns white

Hmm, it would be nice to be able to trigger "go white" on purpose --
it looks like screen is burning and could scare quite  a lot of people
:-).
								Pavel
-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Call for help: list of machines with working S3
  2005-02-27 16:57           ` Pavel Machek
@ 2005-02-27 18:04             ` Stefan Seyfried
  0 siblings, 0 replies; 89+ messages in thread
From: Stefan Seyfried @ 2005-02-27 18:04 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Norbert Preining, Carl-Daniel Hailfinger, ACPI mailing list,
	kernel list, rjw

Pavel Machek wrote:

>> 	this server crashes when switching to the console or shutting
>> 	down (crashing is sometimes, not always), very nice screen which
>> 	slowly turns white
> 
> Hmm, it would be nice to be able to trigger "go white" on purpose --
> it looks like screen is burning and could scare quite  a lot of people
> :-).

BTW: turning white does not necessarily mean "screen is dying" but can
also mean "LCD is powered off and slowly turning transparent but the
backlight is still on" which brings me back to the original subject:

Sharp PC-AR10 (ATI rage mobility P/M AGP 2x), which is sort of the
crappiest hardware i have ever seen, has working S3 without any tricks.
The backlight is not turned off at S3 but in fact it is explicitly
turned on (if i do "xset dpms force off" before suspend, it turns back
on after  or shortly before entering suspend) and the screen slowly goes
white (because TFT power is turned off), but if you enter S3 via
lidswitch this does not matter since the lidswitch turns off the
backlight :-)
-- 
Stefan Seyfried, QA / R&D Team Mobile Devices, SUSE LINUX, Nürnberg.

"Any ideas, John?"
"Well, surrounding them's out."

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (9 preceding siblings ...)
  2005-02-23 19:30 ` Nish Aravamudan
@ 2005-03-02 10:24 ` Stefan Seyfried
  2005-03-02 10:57   ` Stefan Seyfried
  2005-03-03 16:51 ` Stefan Seyfried
                   ` (2 subsequent siblings)
  13 siblings, 1 reply; 89+ messages in thread
From: Stefan Seyfried @ 2005-03-02 10:24 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list

Pavel Machek wrote:
> Hi!

> Table of known working systems:
> 
> Model                           hack (or "how to do it")
> ------------------------------------------------------------------------------

IBM Thinkpad T20 (S3 Inc. 86C270-294 Savage/IX-MV), model 2647-44G
"Just works" out of the box. S1 works, too but does not switch off the
backlight and looks "interesting", but does not crash.

-- 
Stefan Seyfried, QA / R&D Team Mobile Devices, SUSE LINUX Nürnberg.

"Any ideas, John?"
"Well, surrounding them's out."

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-03-02 10:24 ` Stefan Seyfried
@ 2005-03-02 10:57   ` Stefan Seyfried
  0 siblings, 0 replies; 89+ messages in thread
From: Stefan Seyfried @ 2005-03-02 10:57 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list

Stefan Seyfried wrote:
> Pavel Machek wrote:
>> Hi!
> 
>> Table of known working systems:
>> 
>> Model                           hack (or "how to do it")
>> ------------------------------------------------------------------------------
> 
> IBM Thinkpad T20 (S3 Inc. 86C270-294 Savage/IX-MV), model 2647-44G
> "Just works" out of the box. S1 works, too but does not switch off the
> backlight and looks "interesting", but does not crash.

Vesafb is "interesting" also after S3, but X continues to work :-)
-- 
Stefan Seyfried, QA / R&D Team Mobile Devices, SUSE LINUX Nürnberg.

"Any ideas, John?"
"Well, surrounding them's out."

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (10 preceding siblings ...)
  2005-03-02 10:24 ` Stefan Seyfried
@ 2005-03-03 16:51 ` Stefan Seyfried
  2005-03-03 17:49 ` Avuton Olrich
  2005-03-14  6:19 ` Jan De Luyck
  13 siblings, 0 replies; 89+ messages in thread
From: Stefan Seyfried @ 2005-03-03 16:51 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, rjw

Pavel Machek wrote:

> Table of known working systems:
> 
> Model                           hack (or "how to do it")
> ------------------------------------------------------------------------------
IBM Thinkpad X40 (Type 2371-7JG)  acpi_sleep=s3_bios,s3_mode
-- 
Stefan Seyfried, QA / R&D Team Mobile Devices, SUSE LINUX Nürnberg.

"Any ideas, John?"
"Well, surrounding them's out."

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (11 preceding siblings ...)
  2005-03-03 16:51 ` Stefan Seyfried
@ 2005-03-03 17:49 ` Avuton Olrich
  2005-03-14  6:19 ` Jan De Luyck
  13 siblings, 0 replies; 89+ messages in thread
From: Avuton Olrich @ 2005-03-03 17:49 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ACPI mailing list, kernel list, seife, rjw

On Mon, 14 Feb 2005 22:11:05 +0100, Pavel Machek <pavel@suse.cz> wrote:
> Table of known working systems:
> 
> Model                           hack (or "how to do it")
> ------------------------------------------------------------------------------
> IBM TP R32 / Type 2658-MMG      none (1)
> Athlon HP Omnibook XE3          none (1)
> Compaq Armada E500 - P3-700     none (1) (S1 also works OK)
> IBM t41p                        none (1)
> Athlon64 desktop prototype      s3_bios (2)
> HP NC6000                       s3_bios (2)
> Toshiba Satellite 4080XCDT      s3_mode (3)
> Toshiba Satellite 4030CDT       s3_mode (3)
> Dell D600, ATI RV250            vga=normal (**)
> Asus L2400D                     s3_mode (3)(***) (S1 also works OK)
> Toshiba Satellite P10-554       s3_bios,s3_mode (4)(****)
> Acer TM 800                     vga=normal, X patches, see webpage (5)
> Athlon64 Arima W730a            vbestate needed (6)
> eMachines athlon64 machines     vbestate needed (6) (someone please get me model #s)
> 
> (**) Text console is "strange" after resume. Backlight is switched on again
>      by the X server. X server is:
>      | X Window System Version 6.8.1.904 (6.8.2 RC 4)
>      | Release Date: 2 February 2005
>      | X Protocol Version 11, Revision 0, Release 6.8.1.904
>      | Build Operating System: SuSE Linux [ELF] SuSE
>      as present in SUSE 9.3preview3.
> 
> (***) To be tested with a newer kernel.
> 
> (****) Not with SMP kernel, UP only.

Toshiba Libretto L5 works completely with S3, not with S1 when the
ali5451 ALSA module is unloaded.

-- 
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
                   ` (12 preceding siblings ...)
  2005-03-03 17:49 ` Avuton Olrich
@ 2005-03-14  6:19 ` Jan De Luyck
  2005-03-14  8:00   ` Pavel Machek
  13 siblings, 1 reply; 89+ messages in thread
From: Jan De Luyck @ 2005-03-14  6:19 UTC (permalink / raw)
  To: linux-kernel; +Cc: Pavel Machek, ACPI mailing list, seife, rjw

On Monday 14 February 2005 22:11, Pavel Machek wrote:
> Hi!
>
> Stefan provided me initial list of machines where S3 works (including
> video). If you have machine that is not on the list, please send me a
> diff. If you have eMachines... I'd like you to try playing with
> vbetool (it worked for me), and if it works for you supplying right
> model numbers.

Acer Travelmate 803LCi, working Suspend to ram:
- Have to use the soft-boot method for the radeon
- Have to shutdown the following parts: 
  * hotplug (actually the USB subsystem, but hotplug does that nicely)
  * ALSA (modem won't work otherwise without reloading the modules)
    (snd_intel8x0m module)
  * MySQL (hinders the actual suspension process and kicks the pc back to 
    where it was)

Other than these little things it works like a charm :)

Jan
-- 
Bumper sticker:
 All the parts falling off this car are of the very finest
 British manufacture.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-03-14  6:19 ` Jan De Luyck
@ 2005-03-14  8:00   ` Pavel Machek
  2005-03-14 14:39     ` Jan De Luyck
  2005-03-15  8:10     ` [ACPI] " Li Shaohua
  0 siblings, 2 replies; 89+ messages in thread
From: Pavel Machek @ 2005-03-14  8:00 UTC (permalink / raw)
  To: Jan De Luyck; +Cc: linux-kernel, ACPI mailing list, seife, rjw

Hi!

>   * MySQL (hinders the actual suspension process and kicks the pc back to 
>     where it was)

Try this patch...
								Pavel

--- clean/kernel/signal.c	2005-02-03 22:27:26.000000000 +0100
+++ linux/kernel/signal.c	2005-02-03 22:28:19.000000000 +0100
@@ -2222,6 +2222,7 @@
 			ret = -EINTR;
 	}
 
+	try_to_freeze(1);
 	return ret;
 }
 


-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-03-14  8:00   ` Pavel Machek
@ 2005-03-14 14:39     ` Jan De Luyck
  2005-03-15  8:10     ` [ACPI] " Li Shaohua
  1 sibling, 0 replies; 89+ messages in thread
From: Jan De Luyck @ 2005-03-14 14:39 UTC (permalink / raw)
  To: Pavel Machek; +Cc: linux-kernel, ACPI mailing list, seife, rjw

On Monday 14 March 2005 09:00, Pavel Machek wrote:
> Hi!
>
> >   * MySQL (hinders the actual suspension process and kicks the pc back to
> >     where it was)
>
> Try this patch...

Works nicely. Thanks.

Jan

-- 
Most people don't need a great deal of love nearly so much as they need
a steady supply.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-03-14  8:00   ` Pavel Machek
  2005-03-14 14:39     ` Jan De Luyck
@ 2005-03-15  8:10     ` Li Shaohua
  2005-03-15 11:34       ` Nigel Cunningham
  1 sibling, 1 reply; 89+ messages in thread
From: Li Shaohua @ 2005-03-15  8:10 UTC (permalink / raw)
  To: Pavel Machek; +Cc: Jan De Luyck, lkml, ACPI mailing list, seife, rjw

Hi,
On Mon, 2005-03-14 at 16:00, Pavel Machek wrote:
> Hi!
> 
> >   * MySQL (hinders the actual suspension process and kicks the pc
> back to 
> >     where it was)
> 
> Try this patch...
>                                                                 Pavel
> 
> --- clean/kernel/signal.c       2005-02-03 22:27:26.000000000 +0100
> +++ linux/kernel/signal.c       2005-02-03 22:28:19.000000000 +0100
> @@ -2222,6 +2222,7 @@
>                         ret = -EINTR;
>         }
>  
> +       try_to_freeze(1);
>         return ret;
>  }
I also encounter a similar issue. syslogd can't be stopped. It's waiting
for kjournald to flush some works but kjournald is stopped first. Looks
like the kernel thread should be stopped later than user thread just
like Nigel's suspend2 patch does.

Thanks,
Shaohua


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-03-15  8:10     ` [ACPI] " Li Shaohua
@ 2005-03-15 11:34       ` Nigel Cunningham
  2005-03-15 12:04         ` Pavel Machek
  0 siblings, 1 reply; 89+ messages in thread
From: Nigel Cunningham @ 2005-03-15 11:34 UTC (permalink / raw)
  To: Li Shaohua
  Cc: Pavel Machek, Jan De Luyck, lkml, ACPI mailing list, seife, rjw

Hi.

On Tue, 2005-03-15 at 19:10, Li Shaohua wrote:
> Hi,
> On Mon, 2005-03-14 at 16:00, Pavel Machek wrote:
> > Hi!
> > 
> > >   * MySQL (hinders the actual suspension process and kicks the pc
> > back to 
> > >     where it was)
> > 
> > Try this patch...
> >                                                                 Pavel
> > 
> > --- clean/kernel/signal.c       2005-02-03 22:27:26.000000000 +0100
> > +++ linux/kernel/signal.c       2005-02-03 22:28:19.000000000 +0100
> > @@ -2222,6 +2222,7 @@
> >                         ret = -EINTR;
> >         }
> >  
> > +       try_to_freeze(1);
> >         return ret;
> >  }
> I also encounter a similar issue. syslogd can't be stopped. It's waiting
> for kjournald to flush some works but kjournald is stopped first. Looks
> like the kernel thread should be stopped later than user thread just
> like Nigel's suspend2 patch does.

Pavel, do you have any kernel/power/process.c changes in? If not, I'll
submit those refrigerator changes.

Regards,

Nigel
-- 
Nigel Cunningham
Software Engineer, Canberra, Australia
http://www.cyclades.com
Bus: +61 (2) 6291 9554; Hme: +61 (2) 6292 8028;  Mob: +61 (417) 100 574

Maintainer of Suspend2 Kernel Patches http://suspend2.net


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [ACPI] Re: Call for help: list of machines with working S3
  2005-03-15 11:34       ` Nigel Cunningham
@ 2005-03-15 12:04         ` Pavel Machek
  0 siblings, 0 replies; 89+ messages in thread
From: Pavel Machek @ 2005-03-15 12:04 UTC (permalink / raw)
  To: Nigel Cunningham
  Cc: Li Shaohua, Jan De Luyck, lkml, ACPI mailing list, seife, rjw

Hi!


> > > >   * MySQL (hinders the actual suspension process and kicks the pc
> > > back to 
> > > >     where it was)
> > > 
> > > Try this patch...
> > >                                                                 Pavel
> > > 
> > > --- clean/kernel/signal.c       2005-02-03 22:27:26.000000000 +0100
> > > +++ linux/kernel/signal.c       2005-02-03 22:28:19.000000000 +0100
> > > @@ -2222,6 +2222,7 @@
> > >                         ret = -EINTR;
> > >         }
> > >  
> > > +       try_to_freeze(1);
> > >         return ret;
> > >  }
> > I also encounter a similar issue. syslogd can't be stopped. It's waiting
> > for kjournald to flush some works but kjournald is stopped first. Looks
> > like the kernel thread should be stopped later than user thread just
> > like Nigel's suspend2 patch does.
> 
> Pavel, do you have any kernel/power/process.c changes in? If not, I'll
> submit those refrigerator changes.

No, process.c was left unchanged for quite a long time.
								Pavel
-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-04-01  9:17       ` Romano Giannetti
@ 2005-04-01 15:08         ` Romano Giannetti
  0 siblings, 0 replies; 89+ messages in thread
From: Romano Giannetti @ 2005-04-01 15:08 UTC (permalink / raw)
  To: Maximilian Engelhardt, linux-kernel, Pavel Machek

On Fri, Apr 01, 2005 at 11:17:08AM +0200, Romano Giannetti wrote:
> and nothing more. Well, this was done with the double console, so that I
> will try again as soon as I have a bit of time with just the serial console
> on. 

Much better now. Configuration, dmesg at boot, etc are at 
http://www.dea.icai.upco.es/romano/linux/config-2.6.12-rc1-rg/

I booted the 2.6.12-rc1 kernel above (with the alps resume fix) with the 
options: console=ttyS0,115200n8 init=/bin/bash

The full log of the session, if it's interesting to someone, is here: 
http://www.dea.icai.upco.es/romano/linux/swsusp/2612rc1-bash.s3.log

The interesting part is here. At suspend I have: 

bash-2.05b# echo -n 3 > /proc/acpi/sleep
[4294743.859000] Stopping tasks: ===|

and the laptop goes off with suspend light blinking. Ok. After a 20 sec, I
hit the power button and: 

[4294759.817000]  evevent-0286: *** Error: No installed handler for fixed
event
[00000002]
[4294759.827000] Restarting tasks... done
bash-2.05b#

I have the prompt back! But the HDD light is fixed on... I tried lsmod: 

bash-2.05b# lsmod

Dead. After a bit it says: 

[4294828.522000] hda: dma_timer_expiry: dma status == 0x21
[4294838.522000] hda: DMA timeout error
[4294838.526000] hda: dma timeout error: status=0x58 { DriveReady
SeekComplete DataRequest }
[4294838.536000]
[4294838.538000] ide: failed opcode was: unknown
[4294838.546000] hda: task_in_intr: status=0x59 { DriveReady SeekComplete
DataRequest Error }
[4294838.556000] hda: task_in_intr: error=0x04 { DriveStatusError }
[4294838.564000] ide: failed opcode was: unknown

this (with error 0x59 and 0x04) is repeated 3 more times, then: 

[4294838.699000] ide0: reset: success

but nothing change, and after a bit: 

[4294858.708000] hda: dma_timer_expiry: dma status == 0x21
[4294868.708000] hda: DMA timeout error
[4294868.712000] hda: dma timeout error: status=0x58 { DriveReady
SeekComplete DataRequest }
[4294868.722000]
[4294868.724000] ide: failed opcode was: unknown
[4294868.729000] hda: status error: status=0x58 { DriveReady SeekComplete
DataRequest }
[4294868.738000]
[4294868.740000] ide: failed opcode was: unknown
[4294868.746000] hda: drive not ready for command

(3 more times) 

[4294868.862000] ide0: reset: success

[4294888.879000] hda: dma_timer_expiry: dma status == 0x21

...and continuing forever (with error 0x58 as before). In the full log there
is a sysrq-m and sysrq-t result, but I do not think it's very important
here. 

When I decided to stop I hit sysrq-b and: 

[4294911.707000] SysRq : Resetting 

The bios (with the "sony" splash) restarted but locked hard, and to resume I
had to do the hard poweroff (5 seconds power button down). 


Well. I hope this helps someone :-). I will stay with S4 for now.

Romano 

-- 
Romano Giannetti             -  Univ. Pontificia Comillas (Madrid, Spain)
Electronic Engineer - phone +34 915 422 800 ext 2416  fax +34 915 596 569

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-03-31 19:54     ` Maximilian Engelhardt
@ 2005-04-01  9:17       ` Romano Giannetti
  2005-04-01 15:08         ` Romano Giannetti
  0 siblings, 1 reply; 89+ messages in thread
From: Romano Giannetti @ 2005-04-01  9:17 UTC (permalink / raw)
  To: Maximilian Engelhardt; +Cc: linux-kernel, Pavel Machek

On Thu, Mar 31, 2005 at 09:54:33PM +0200, Maximilian Engelhardt wrote:
> On Fri, 2005-03-18 at 15:50 +0100, Romano Giannetti wrote:
> > 
> > It happens exactly the same on my laptop, sony vaio whose configuration is 
> > 
> > http://www.dea.icai.upco.es/romano/linux/vaio-conf/laptop-config.html
> 
> I was able to get some logs using CONFIG_LP_CONSOLE (the first time I
> ever saw "Back to C!"):
> 
> Back to C!
> PM: Finishing up.
> ACPI: PCI interrupt 0000:00:1f.1[A] -> GSI 10 (level,low) -> IRQ 10
> MCE: The hardware reports a non fatal, correctable incident occurred on
> CPU 0.
> Bank 1: e200000000000001
> hda: task_out_intr: status=0x51 { DriveReady SeekComplete Error }
> hda: task_out_intr: error=0x04 { DriveStatusError }
> ide: failed opcode was: unknown
> 
> keeps on always repeating last three messages until I reboot
> 
> Full log:
> http://home.daemonizer.de/resume.png
> 
> kernel version is 2.6.11
> config: http://home.daemonizer.de/config-2.6.11-S3test
> dmesg from booting: http://home.daemonizer.de/dmesg-2.6.11-S3test
> lspci: http://home.daemonizer.de/lspci
> Gentoo Base System version 1.6.10
> 
> Hardware:
> Acer Travelmate 661lci (centrino)
> Intel(R) Pentium(R) M processor 1400MHz

I tried with serial console. The only thing I get is: 

Stopping tasks:
================================================================================|

and nothing more. Well, this was done with the double console, so that I
will try again as soon as I have a bit of time with just the serial console
on. 

But the "external" behaviour for me is like your: it stops, then at restart
the HDD led stays on and nothing happen. 


Romano 

-- 
Romano Giannetti             -  Univ. Pontificia Comillas (Madrid, Spain)
Electronic Engineer - phone +34 915 422 800 ext 2416  fax +34 915 596 569

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-03-18 14:50   ` Romano Giannetti
  2005-03-27 12:22     ` Maximilian Engelhardt
@ 2005-03-31 19:54     ` Maximilian Engelhardt
  2005-04-01  9:17       ` Romano Giannetti
  1 sibling, 1 reply; 89+ messages in thread
From: Maximilian Engelhardt @ 2005-03-31 19:54 UTC (permalink / raw)
  To: romano; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]

On Fri, 2005-03-18 at 15:50 +0100, Romano Giannetti wrote:
> 
> It happens exactly the same on my laptop, sony vaio whose configuration is 
> 
> http://www.dea.icai.upco.es/romano/linux/vaio-conf/laptop-config.html
> 
> Next week is Easter holyday here, I will try to connect my Psion casio as
> serial terminal and see if I can catch something. 

I was able to get some logs using CONFIG_LP_CONSOLE (the first time I
ever saw "Back to C!"):

Back to C!
PM: Finishing up.
ACPI: PCI interrupt 0000:00:1f.1[A] -> GSI 10 (level,low) -> IRQ 10
MCE: The hardware reports a non fatal, correctable incident occurred on
CPU 0.
Bank 1: e200000000000001
hda: task_out_intr: status=0x51 { DriveReady SeekComplete Error }
hda: task_out_intr: error=0x04 { DriveStatusError }
ide: failed opcode was: unknown

keeps on always repeating last three messages until I reboot

Full log:
http://home.daemonizer.de/resume.png

kernel version is 2.6.11
config: http://home.daemonizer.de/config-2.6.11-S3test
dmesg from booting: http://home.daemonizer.de/dmesg-2.6.11-S3test
lspci: http://home.daemonizer.de/lspci
Gentoo Base System version 1.6.10

Hardware:
Acer Travelmate 661lci (centrino)
Intel(R) Pentium(R) M processor 1400MHz

please mail me if you need additional data.

Thanks for help,
Maxi

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-03-18 14:50   ` Romano Giannetti
@ 2005-03-27 12:22     ` Maximilian Engelhardt
  2005-03-31 19:54     ` Maximilian Engelhardt
  1 sibling, 0 replies; 89+ messages in thread
From: Maximilian Engelhardt @ 2005-03-27 12:22 UTC (permalink / raw)
  To: romano; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 932 bytes --]

On Fri, 2005-03-18 at 15:50 +0100, Romano Giannetti wrote:
> 
> It happens exactly the same on my laptop, sony vaio whose configuration is 
> 
> http://www.dea.icai.upco.es/romano/linux/vaio-conf/laptop-config.html
> 
> Next week is Easter holyday here, I will try to connect my Psion casio as
> serial terminal and see if I can catch something. 
> 
>        Romano 

Sorry that I didn't answer earlier , but I didn't have much time the
last week. Unfortunately my laptop has a serial port only via docking
station that I don't have. So I tried logging via netconsole. This
generally worked, but when I try to enter S3 the last thing I get is
"PM: Entering state" but the laptop never enters S3, it just hangs there
forever. So sadly I couldn't get more information.

If anyone has any idea what else I could do to either fix this problem
or get more information about it, please tell me and I'll try :)

Maxi

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-03-17 20:05 ` Maximilian Engelhardt
@ 2005-03-18 14:50   ` Romano Giannetti
  2005-03-27 12:22     ` Maximilian Engelhardt
  2005-03-31 19:54     ` Maximilian Engelhardt
  0 siblings, 2 replies; 89+ messages in thread
From: Romano Giannetti @ 2005-03-18 14:50 UTC (permalink / raw)
  To: linux-kernel; +Cc: Maximilian Engelhardt

On Thu, Mar 17, 2005 at 09:05:12PM +0100, Maximilian Engelhardt wrote:
> On Mon, 2005-02-14 at 22:20 +0100, Pavel Machek wrote:

> > 		Video issues with S3 resume
> > 		~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > 		  2003-2005, Pavel Machek
> > 

> Tried all this on my Laptop but nothing seems to work for me. 
> I do "echo 3 > /proc/acpi/sleep" and the systems seems to go into S3.
> When I press some key to wake it up again it powers up but I get nothing
> than a black screen. It's not only the video card that's not working,
> because the only thing it reacts to is Sysrq (without screen of course).
> One additional thing I found is that in this state the HDD led keeps
> lighting all the time untill I reboot my system. After rebooting I
> couldn't find anything interesting in my logs.
> 
> Is there any way I could get S3 working on my laptop?
> 
> some data:
> Acer Travel Mate 661lci
> Gentoo Base System version 1.6.10
> kernel 2.6.11
> 
> I did all this testing with a minimal kernel that only had the
> absolutely necessary drivers.

It happens exactly the same on my laptop, sony vaio whose configuration is 

http://www.dea.icai.upco.es/romano/linux/vaio-conf/laptop-config.html

Next week is Easter holyday here, I will try to connect my Psion casio as
serial terminal and see if I can catch something. 

       Romano 
       
       
-- 
Romano Giannetti             -  Univ. Pontificia Comillas (Madrid, Spain)
Electronic Engineer - phone +34 915 422 800 ext 2416  fax +34 915 596 569

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
       [not found] <3xVNA-Qn-43@gated-at.bofh.it>
@ 2005-03-17 20:05 ` Maximilian Engelhardt
  2005-03-18 14:50   ` Romano Giannetti
  0 siblings, 1 reply; 89+ messages in thread
From: Maximilian Engelhardt @ 2005-03-17 20:05 UTC (permalink / raw)
  To: linux-kernel

On Mon, 2005-02-14 at 22:20 +0100, Pavel Machek wrote:
> Hi!
> 
> Stefan provided me initial list of machines where S3 works (including
> video). If you have machine that is not on the list, please send me a
> diff. If you have eMachines... I'd like you to try playing with
> vbetool (it worked for me), and if it works for you supplying right
> model numbers.
> 
> 								Pavel
> 
> 
> 		Video issues with S3 resume
> 		~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 		  2003-2005, Pavel Machek
> 
> During S3 resume, hardware needs to be reinitialized. For most
> devices, this is easy, and kernel driver knows how to do
> it. Unfortunately there's one exception: video card. Those are usually
> initialized by BIOS, and kernel does not have enough information to
> boot video card. (Kernel usually does not even contain video card
> driver -- vesafb and vgacon are widely used).
> 
> This is not problem for swsusp, because during swsusp resume, BIOS is
> run normally so video card is normally initialized. S3 has absolutely
> no change to work with SMP/HT. Be sure it to turn it off before
> testing (swsusp should work ok, OTOH).
> 
> There are few types of systems where video works after S3 resume:
> 
> (1) systems where video state is preserved over S3.
> 
> (2) systems where it is possible to call video bios during S3
>   resume. Unfortunately, it is not correct to call video BIOS at that
>   point, but it happens to work on some machines. Use
>   acpi_sleep=s3_bios.
> 
> (3) systems that initialize video card into vga text mode and where BIOS
>   works well enough to be able to set video mode. Use
>   acpi_sleep=s3_mode on these.
> 
> (4) on some systems s3_bios kicks video into text mode, and
>   acpi_sleep=s3_bios,s3_mode is needed.
> 
> (5) radeon systems, where X can soft-boot your video card. You'll need
>   patched X, and plain text console (no vesafb or radeonfb), see
>   http://www.doesi.gmxhome.de/linux/tm800s3/s3.html.
> 
> (6) other radeon systems, where vbetool is enough to bring system back
>   to life. Do vbetool vbestate save > /tmp/delme; echo 3 > /proc/acpi/sleep;
>   vbetool post; vbetool vbestate restore < /tmp/delme; setfont
>   <whatever>, and your video should work.

Tried all this on my Laptop but nothing seems to work for me. 
I do "echo 3 > /proc/acpi/sleep" and the systems seems to go into S3.
When I press some key to wake it up again it powers up but I get nothing
than a black screen. It's not only the video card that's not working,
because the only thing it reacts to is Sysrq (without screen of course).
One additional thing I found is that in this state the HDD led keeps
lighting all the time untill I reboot my system. After rebooting I
couldn't find anything interesting in my logs.

Is there any way I could get S3 working on my laptop?

some data:
Acer Travel Mate 661lci
Gentoo Base System version 1.6.10
kernel 2.6.11

I did all this testing with a minimal kernel that only had the
absolutely necessary drivers.

Thanks for help,
Maxi

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-02-16 23:22 ` Pavel Machek
@ 2005-02-17  1:25   ` Lukas Hejtmanek
  0 siblings, 0 replies; 89+ messages in thread
From: Lukas Hejtmanek @ 2005-02-17  1:25 UTC (permalink / raw)
  To: Pavel Machek; +Cc: linux-kernel

On Thu, Feb 17, 2005 at 12:22:57AM +0100, Pavel Machek wrote:
> > does anyone have some experiences with intel i855 video card and S3?
> > 
> > For me the binary driver from Intel works with S3 but only X server is restored
> > not the text console. 
> > 
> > With open source driver nothing is restored. I try to use s3_bios or s3_mode,
> > nothing helps. Using  vbetool and post causes backlight turn on but display is
> > full of garbage (vertical lines of different colors).
> 
> Can you do vga=normal and attempt to reload fonts?

Did not help. Instead, this seems to be working with X.org and opensource driver:

chvt 1
vbetool vbestate save > /tmp/state
echo 3 > /proc/acpi/sleep
vbetool post
vbetool vbestate restore < /tmp/state
chvt 7

(if X server is running then chvt to text console is necessary, but it works
including DRI and XV overlay running) 

Can I get the current console so that chvt 7 can switch to the original console?


Just re-POST seems to initialize first head connected to external CRT. The
second head (connected to LFP) is not initialized. Do not know why :(

This is the videocard: Intel Corp. 82852/855GM Integrated Graphics Device.
Notebook: Acer TM 242FX

-- 
Lukáš Hejtmánek

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
  2005-02-16 12:43 Lukas Hejtmanek
@ 2005-02-16 23:22 ` Pavel Machek
  2005-02-17  1:25   ` Lukas Hejtmanek
  0 siblings, 1 reply; 89+ messages in thread
From: Pavel Machek @ 2005-02-16 23:22 UTC (permalink / raw)
  To: Lukas Hejtmanek; +Cc: linux-kernel

Hi!

> does anyone have some experiences with intel i855 video card and S3?
> 
> For me the binary driver from Intel works with S3 but only X server is restored
> not the text console. 
> 
> With open source driver nothing is restored. I try to use s3_bios or s3_mode,
> nothing helps. Using  vbetool and post causes backlight turn on but display is
> full of garbage (vertical lines of different colors).

Can you do vga=normal and attempt to reload fonts?

									Pavel

-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: Call for help: list of machines with working S3
@ 2005-02-16 12:43 Lukas Hejtmanek
  2005-02-16 23:22 ` Pavel Machek
  0 siblings, 1 reply; 89+ messages in thread
From: Lukas Hejtmanek @ 2005-02-16 12:43 UTC (permalink / raw)
  To: linux-kernel

Hello,

does anyone have some experiences with intel i855 video card and S3?

For me the binary driver from Intel works with S3 but only X server is restored
not the text console. 

With open source driver nothing is restored. I try to use s3_bios or s3_mode,
nothing helps. Using  vbetool and post causes backlight turn on but display is
full of garbage (vertical lines of different colors).

-- 
Lukáš Hejtmánek

^ permalink raw reply	[flat|nested] 89+ messages in thread

end of thread, other threads:[~2005-04-01 15:08 UTC | newest]

Thread overview: 89+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-14 21:11 Call for help: list of machines with working S3 Pavel Machek
2005-02-14 21:36 ` [ACPI] " Carl-Daniel Hailfinger
2005-02-14 23:23 ` Matthew Garrett
2005-02-14 23:47   ` Matthew Garrett
2005-02-15  6:05 ` Alistair John Strachan
2005-02-15 12:12   ` [ACPI] " Lorenzo Colitti
2005-02-15 13:17     ` Alistair John Strachan
2005-02-15 16:07       ` Lorenzo Colitti
2005-02-15 15:41     ` Matthew Garrett
2005-02-15 16:15       ` Lorenzo Colitti
2005-02-15 16:16       ` Lorenzo Colitti
2005-02-15 17:42         ` Alistair John Strachan
2005-02-15 20:43           ` Matthew Garrett
2005-02-15 21:09             ` Lorenzo Colitti
2005-02-16  1:41               ` Alistair John Strachan
2005-02-16  1:54                 ` Pavel Machek
2005-02-16  2:47                   ` Nigel Cunningham
2005-02-16  8:30                     ` Romano Giannetti
2005-02-16 14:25           ` Kjartan Maraas
2005-02-18 20:49             ` Alistair John Strachan
2005-02-20  9:21               ` Luca Capello
2005-02-21 14:25               ` Kjartan Maraas
2005-02-22 14:33               ` Karol Kozimor
2005-02-15 16:05   ` Stefan Seyfried
2005-02-15 12:55 ` [ACPI] " Norbert Preining
2005-02-15 13:17   ` Karol Kozimor
2005-02-15 16:09   ` Carl-Daniel Hailfinger
2005-02-15 17:08     ` Norbert Preining
2005-02-15 18:57       ` Carl-Daniel Hailfinger
2005-02-15 20:21         ` Matthew Garrett
2005-02-15 22:40           ` Carl-Daniel Hailfinger
2005-02-16  9:51         ` Norbert Preining
2005-02-15 19:37       ` Stefan Dösinger
2005-02-17 11:06         ` Norbert Preining
2005-02-17 19:08         ` Norbert Preining
2005-02-17 20:58           ` Stefan Dösinger
2005-02-18 10:46             ` Norbert Preining
2005-02-18 13:38               ` Norbert Preining
2005-02-18 18:04                 ` Stefan Dösinger
2005-02-15 19:47       ` Pavel Machek
2005-02-17 19:09         ` Norbert Preining
2005-02-16  9:34       ` Romano Giannetti
2005-02-16 14:54         ` Carl-Daniel Hailfinger
2005-02-16 16:10           ` Romano Giannetti
2005-02-22 22:08       ` Karol Kozimor
2005-02-24 12:37         ` Norbert Preining
2005-02-24 21:36           ` Karol Kozimor
2005-02-25 17:50           ` Proinnsias Breathnach
2005-02-27 16:57           ` Pavel Machek
2005-02-27 18:04             ` Stefan Seyfried
2005-02-15 16:31 ` Vernon Mauery
2005-02-15 21:28 ` Henrik Brix Andersen
2005-02-16  5:54 ` Stefan Schweizer
2005-02-16  8:48   ` Stefan Dösinger
2005-02-16 15:06     ` Carl-Daniel Hailfinger
2005-02-16 17:43       ` Stefan Schweizer
2005-02-16 19:26       ` Stefan Dösinger
2005-02-17  6:16 ` Len Brown
2005-02-17 10:15   ` Vojtech Pavlik
2005-02-17 23:12     ` Len Brown
2005-02-17 11:00   ` Matthew Garrett
2005-02-17 16:18     ` Carl-Daniel Hailfinger
2005-02-17 16:44       ` Vernon Mauery
2005-02-17 20:13         ` Carl-Daniel Hailfinger
2005-02-17 19:54       ` Pavel Machek
2005-02-17 20:34         ` Carl-Daniel Hailfinger
2005-02-17 20:42           ` Pavel Machek
2005-02-17 11:02   ` Pavel Machek
2005-02-17 23:19 ` Luca Capello
2005-02-23 19:30 ` Nish Aravamudan
2005-03-02 10:24 ` Stefan Seyfried
2005-03-02 10:57   ` Stefan Seyfried
2005-03-03 16:51 ` Stefan Seyfried
2005-03-03 17:49 ` Avuton Olrich
2005-03-14  6:19 ` Jan De Luyck
2005-03-14  8:00   ` Pavel Machek
2005-03-14 14:39     ` Jan De Luyck
2005-03-15  8:10     ` [ACPI] " Li Shaohua
2005-03-15 11:34       ` Nigel Cunningham
2005-03-15 12:04         ` Pavel Machek
2005-02-16 12:43 Lukas Hejtmanek
2005-02-16 23:22 ` Pavel Machek
2005-02-17  1:25   ` Lukas Hejtmanek
     [not found] <3xVNA-Qn-43@gated-at.bofh.it>
2005-03-17 20:05 ` Maximilian Engelhardt
2005-03-18 14:50   ` Romano Giannetti
2005-03-27 12:22     ` Maximilian Engelhardt
2005-03-31 19:54     ` Maximilian Engelhardt
2005-04-01  9:17       ` Romano Giannetti
2005-04-01 15:08         ` Romano Giannetti

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).