LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* macbook pro suspend to ram broken in linux-2.6.git HEAD
@ 2007-03-04 18:30 Soeren Sonnenburg
  2007-03-05  8:14 ` Ingo Molnar
  0 siblings, 1 reply; 3+ messages in thread
From: Soeren Sonnenburg @ 2007-03-04 18:30 UTC (permalink / raw)
  To: Linux Kernel; +Cc: Thomas Gleixner, Ingo Molnar, Andrew Morton

a rather long git bisect session between v2.6.20 and HEAD identified the
commit below this as the cause. please note that the machine does not
return from resume and although all PM debug was turned on there is
nothing in the logs. happens with a minimalistic setup (console only no
audio/network etc) without SMP and CONFIG_HPET_TIMER  but PREEMPT on and
CONFIG_ACPI=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_SLEEP_PROC_FS=y
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_BLACKLIST_YEAR=0
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_SYSTEM=y
CONFIG_X86_PM_TIMER=y

Any ideas on that issue ?
Soeren

e9e2cdb412412326c4827fc78ba27f410d837e6e is first bad commit
commit e9e2cdb412412326c4827fc78ba27f410d837e6e
Author: Thomas Gleixner <tglx@linutronix.de>
Date:   Fri Feb 16 01:28:04 2007 -0800

    [PATCH] clockevents: i386 drivers
    
    Add clockevent drivers for i386: lapic (local) and PIT/HPET (global).  Update
    the timer IRQ to call into the PIT/HPET driver's event handler and the
    lapic-timer IRQ to call into the lapic clockevent driver.  The assignement of
    timer functionality is delegated to the core framework code and replaces the
    compile and runtime evalution in do_timer_interrupt_hook()
    
    Use the clockevents broadcast support and implement the lapic_broadcast
    function for ACPI.
    
    No changes to existing functionality.
    
    [ kdump fix from Vivek Goyal <vgoyal@in.ibm.com> ]
    [ fixes based on review feedback from Arjan van de Ven <arjan@infradead.org> ]
    Cleanups-from: Adrian Bunk <bunk@stusta.de>
    Build-fixes-from: Andrew Morton <akpm@osdl.org>
    Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
    Signed-off-by: Ingo Molnar <mingo@elte.hu>
    Cc: john stultz <johnstul@us.ibm.com>
    Cc: Roman Zippel <zippel@linux-m68k.org>
    Cc: Andi Kleen <ak@suse.de>
    Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

:040000 040000 8cd88ef4dc6e976c589deda1c558e19ed8dcafde 88ed93cefb145aa545ff4561636cc9342fc7bb42 M      arch
:040000 040000 5a1342027bc77019bb3ca9295d02bf483410e3d4 3de4aedc5bb5d86287b7a5bad4b673e8ffbc1e44 M      drivers
:040000 040000 88ade982261c3ce0590c939694994796f02d2e73 d7221468ac776ccc7804f9a46d6d53fa7c294d43 M      include

-- 
Sometimes, there's a moment as you're waking, when you become aware of
the real world around you, but you're still dreaming.

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

* Re: macbook pro suspend to ram broken in linux-2.6.git HEAD
  2007-03-04 18:30 macbook pro suspend to ram broken in linux-2.6.git HEAD Soeren Sonnenburg
@ 2007-03-05  8:14 ` Ingo Molnar
  2007-03-05  9:22   ` Soeren Sonnenburg
  0 siblings, 1 reply; 3+ messages in thread
From: Ingo Molnar @ 2007-03-05  8:14 UTC (permalink / raw)
  To: Soeren Sonnenburg; +Cc: Linux Kernel, Thomas Gleixner, Andrew Morton


* Soeren Sonnenburg <kernel@nn7.de> wrote:

> a rather long git bisect session between v2.6.20 and HEAD identified 
> the commit below this as the cause. please note that the machine does 
> not return from resume and although all PM debug was turned on there 
> is nothing in the logs. happens with a minimalistic setup (console 
> only no audio/network etc) without SMP and CONFIG_HPET_TIMER but 
> PREEMPT on

good. Could you apply the patch below, enable CONFIG_PM_DEBUG and 
CONFIG_PM_TRACE and CONFIG_DISABLE_CONSOLE_SUSPEND, boot into the new 
kernel and do:

	echo 1 > /proc/sys/kernel/acpi_simulate_suspend_to_ram
	echo mem > /sys/power/state

and if the system still works after this point, could you send us the 
resulting dmesg? Or if it crashes, hopefully the crash should be right 
on the screen - how does it look like?

the above sequence should generate a 'fake' suspend-to-ram: it will 
execute the overwhelming majority of code that is done during 
suspend/resume, but without actually suspending the box. Hopefully this 
still triggers the bug and if it triggers, the system produces some 
useful output.

	Ingo

--------------->
Subject: [patch] suspend debugging: simulate suspend-to-RAM
From: Ingo Molnar <mingo@elte.hu>

most resume bugs are due to the kernel hanging or crashing while trying 
to resume a specific device. It is extremely hard to debug such hangs 
because often when the hang happens there's no console available yet.

Make debugging such bugs easier by offering a resume mode that does not 
actually call into the BIOS to turn off the machine. This, in 
combination with earlyprintk=serial,ttyS0,115200,keep , 
CONFIG_PM_DEBUG=y, CONFIG_DISABLE_CONSOLE_SUSPEND=y and 
/sys/power/filter enables me to have a fully functional serial console 
during the full suspend/resume cycle.

I debugged two suspend bugs in the -rt kernel this way already, so it's 
pretty useful.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
 Documentation/kernel-parameters.txt |    4 ++++
 drivers/acpi/sleep/main.c           |   15 ++++++++++++++-
 include/linux/acpi.h                |    1 +
 kernel/sysctl.c                     |    8 ++++++++
 4 files changed, 27 insertions(+), 1 deletion(-)

Index: linux/Documentation/kernel-parameters.txt
===================================================================
--- linux.orig/Documentation/kernel-parameters.txt
+++ linux/Documentation/kernel-parameters.txt
@@ -163,6 +163,10 @@ and is between 256 and 4096 characters. 
 
 	acpi_osi=	[HW,ACPI] empty param disables _OSI
 
+	acpi_simulate_suspend_to_ram
+			[KNL] Do not call into BIOS to do suspend-to-RAM
+			Format: <0/1>
+
 	acpi_serialize	[HW,ACPI] force serialization of AML methods
 
 	acpi_skip_timer_override [HW,ACPI]
Index: linux/drivers/acpi/sleep/main.c
===================================================================
--- linux.orig/drivers/acpi/sleep/main.c
+++ linux/drivers/acpi/sleep/main.c
@@ -35,6 +35,14 @@ static u32 acpi_suspend_states[] = {
 
 static int init_8259A_after_S1;
 
+/*
+ * simulate entry into the BIOS - this way the system will not
+ * be turned off for real, and the kernel's resume functionality
+ * can be debugged while still having some system capabilities
+ * left. This is especially useful in combination with /sys/power/filter.
+ */
+int acpi_simulate_suspend_to_ram;
+
 /**
  *	acpi_pm_prepare - Do preliminary suspend work.
  *	@pm_state:		suspend state we're entering.
@@ -91,7 +99,12 @@ static int acpi_pm_enter(suspend_state_t
 		break;
 
 	case PM_SUSPEND_MEM:
-		do_suspend_lowlevel();
+		if (unlikely(acpi_simulate_suspend_to_ram)) {
+			printk(KERN_INFO "ACPI: simulating suspend-to-RAM: "
+					 "not calling BIOS.\n");
+		} else {
+			do_suspend_lowlevel();
+		}
 		break;
 
 	case PM_SUSPEND_DISK:
Index: linux/include/linux/acpi.h
===================================================================
--- linux.orig/include/linux/acpi.h
+++ linux/include/linux/acpi.h
@@ -123,6 +123,7 @@ extern int pci_mmcfg_config_num;
 
 extern int sbf_port;
 extern unsigned long acpi_video_flags;
+extern int acpi_simulate_suspend_to_ram = 1;
 
 #else	/* !CONFIG_ACPI */
 
Index: linux/kernel/sysctl.c
===================================================================
--- linux.orig/kernel/sysctl.c
+++ linux/kernel/sysctl.c
@@ -581,6 +581,14 @@ static ctl_table kern_table[] = {
 		.mode		= 0644,
 		.proc_handler	= &proc_doulongvec_minmax,
 	},
+	{
+		.ctl_name	= CTL_UNNUMBERED,
+		.procname	= "acpi_simulate_suspend_to_ram",
+		.data		= &acpi_simulate_suspend_to_ram,
+		.maxlen		= sizeof (int),
+		.mode		= 0644,
+		.proc_handler	= &proc_dointvec,
+	},
 #endif
 #ifdef CONFIG_IA64
 	{

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

* Re: macbook pro suspend to ram broken in linux-2.6.git HEAD
  2007-03-05  8:14 ` Ingo Molnar
@ 2007-03-05  9:22   ` Soeren Sonnenburg
  0 siblings, 0 replies; 3+ messages in thread
From: Soeren Sonnenburg @ 2007-03-05  9:22 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Linux Kernel, Thomas Gleixner, Andrew Morton

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

On Mon, 2007-03-05 at 09:14 +0100, Ingo Molnar wrote:
> * Soeren Sonnenburg <kernel@nn7.de> wrote:
> 
> > a rather long git bisect session between v2.6.20 and HEAD identified 
> > the commit below this as the cause. please note that the machine does 
> > not return from resume and although all PM debug was turned on there 
> > is nothing in the logs. happens with a minimalistic setup (console 
> > only no audio/network etc) without SMP and CONFIG_HPET_TIMER but 
> > PREEMPT on
> 
> good. Could you apply the patch below, enable CONFIG_PM_DEBUG and 
> CONFIG_PM_TRACE and CONFIG_DISABLE_CONSOLE_SUSPEND, boot into the new 
> kernel and do:
> 
> 	echo 1 > /proc/sys/kernel/acpi_simulate_suspend_to_ram
> 	echo mem > /sys/power/state
> 
> and if the system still works after this point, could you send us the 
> resulting dmesg? Or if it crashes, hopefully the crash should be right 
> on the screen - how does it look like?

I did the following: applied your patch (with the fix that I moved the
acpi_simulate_suspend_to_ram = 1 initialization to the sleep/main.c
file, else compilation fails; I guess that if this should go into the
mainline kernel it should be = 0). I then tested whether the kernel
still works before

e9e2cdb412412326c4827fc78ba27f410d837e6e

with  acpi_simulate_suspend_to_ram_drivers = 0 and = 1. worked.

I then did
git cherry-pick e9e2cdb412412326c4827fc78ba27f410d837e6e

and same procedure:

acpi_... = 0 -> freeze on resume
acpi_... = 1 lead to the attached dmesg output. no crash whatsoever.

Please note that even with CONFIG_DISABLE_CONSOLE_SUSPEND enabled (and
acpi_simulate_suspend_to_ram_drivers = 0) the display turns off and
fails to turn back on (though the machine is still alive after resume as
another s2ram cycle/typeing reboot on the cmdline proves; this can be
fixed using certain s2ram option which however vary between kernel
versions, wrong ones cause again a hang on resume. s2ram -f -p  or s2ram
-f -m).

Soeren.
-- 
Sometimes, there's a moment as you're waking, when you become aware of
the real world around you, but you're still dreaming.

[-- Attachment #2: s2ram-session-dmesg.txt --]
[-- Type: text/plain, Size: 45476 bytes --]

Linux version 2.6.20-sonne (sonne@no) (gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)) #20 PREEMPT Mon Mar 5 09:58:24 CET 2007
BIOS-provided physical RAM map:
sanitize start
sanitize end
copy_e820_map() start: 0000000000000000 size: 000000000009fc00 end: 000000000009fc00 type: 1
copy_e820_map() type is E820_RAM
copy_e820_map() start: 000000000009fc00 size: 0000000000000400 end: 00000000000a0000 type: 2
copy_e820_map() start: 00000000000ede00 size: 0000000000012200 end: 0000000000100000 type: 2
copy_e820_map() start: 0000000000100000 size: 000000007efac000 end: 000000007f0ac000 type: 1
copy_e820_map() type is E820_RAM
copy_e820_map() start: 000000007f0ac000 size: 0000000000201000 end: 000000007f2ad000 type: 4
copy_e820_map() start: 000000007f2ad000 size: 0000000000c12000 end: 000000007febf000 type: 3
copy_e820_map() start: 000000007febf000 size: 0000000000030000 end: 000000007feef000 type: 4
copy_e820_map() start: 000000007feef000 size: 0000000000011000 end: 000000007ff00000 type: 3
copy_e820_map() start: 000000007ff00000 size: 0000000000100000 end: 0000000080000000 type: 2
copy_e820_map() start: 00000000e0000000 size: 0000000010000000 end: 00000000f0000000 type: 2
copy_e820_map() start: 00000000fec00000 size: 0000000000001000 end: 00000000fec01000 type: 2
copy_e820_map() start: 00000000fed14000 size: 0000000000006000 end: 00000000fed1a000 type: 2
copy_e820_map() start: 00000000fed1c000 size: 0000000000004000 end: 00000000fed20000 type: 2
copy_e820_map() start: 00000000fee00000 size: 0000000000001000 end: 00000000fee01000 type: 2
copy_e820_map() start: 00000000ffe00000 size: 0000000000200000 end: 0000000100000000 type: 2
 BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
 BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000ede00 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000007f0ac000 (usable)
 BIOS-e820: 000000007f0ac000 - 000000007f2ad000 (ACPI NVS)
 BIOS-e820: 000000007f2ad000 - 000000007febf000 (ACPI data)
 BIOS-e820: 000000007febf000 - 000000007feef000 (ACPI NVS)
 BIOS-e820: 000000007feef000 - 000000007ff00000 (ACPI data)
 BIOS-e820: 000000007ff00000 - 0000000080000000 (reserved)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
 BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
 BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
 BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
1136MB HIGHMEM available.
896MB LOWMEM available.
Entering add_active_range(0, 0, 520364) 0 entries of 256 used
Zone PFN ranges:
  DMA             0 ->     4096
  Normal       4096 ->   229376
  HighMem    229376 ->   520364
early_node_map[1] active PFN ranges
    0:        0 ->   520364
On node 0 totalpages: 520364
  DMA zone: 32 pages used for memmap
  DMA zone: 0 pages reserved
  DMA zone: 4064 pages, LIFO batch:0
  Normal zone: 1760 pages used for memmap
  Normal zone: 223520 pages, LIFO batch:31
  HighMem zone: 2273 pages used for memmap
  HighMem zone: 288715 pages, LIFO batch:31
DMI 2.4 present.
ACPI: RSDP 000FE020, 0024 (r2 APPLE )
ACPI: XSDT 7FEFD120, 0074 (r1 APPLE   Apple00       55       1000013)
ACPI: FACP 7FEFB000, 00F4 (r3 APPLE   Apple00       55 Loki       5F)
ACPI: DSDT 7FEF0000, 48C0 (r1 APPLE  MacBookP    10001 INTL 20050309)
ACPI: FACS 7FEC1000, 0040
ACPI: HPET 7FEFA000, 0038 (r1 APPLE   Apple00        1 Loki       5F)
ACPI: APIC 7FEF9000, 0068 (r1 APPLE   Apple00        1 Loki       5F)
ACPI: MCFG 7FEF8000, 003C (r1 APPLE   Apple00        1 Loki       5F)
ACPI: ASF! 7FEF7000, 009C (r32 APPLE   Apple00        1 Loki       5F)
ACPI: SBST 7FEF6000, 0030 (r1 APPLE   Apple00        1 Loki       5F)
ACPI: ECDT 7FEF5000, 0053 (r1 APPLE   Apple00        1 Loki       5F)
ACPI: SSDT 7FEBC000, 064F (r1 APPLE   SataPri     1000 INTL 20050309)
ACPI: SSDT 7FEBB000, 069C (r1 APPLE   SataSec     1000 INTL 20050309)
ACPI: SSDT 7FEEF000, 04DC (r1 APPLE     CpuPm     3000 INTL 20050309)
ACPI: PM-Timer IO Port: 0x408
Allocating PCI resources starting at 88000000 (gap: 80000000:60000000)
Detected 2307.195 MHz processor.
Built 1 zonelists.  Total pages: 516299
Kernel command line: root=/dev/sda3 resume=/dev/sda5 rw noapic
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 16384 bytes)
Console: colour VGA+ 80x25
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Memory: 2058456k/2081456k available (1496k kernel code, 21688k reserved, 459k data, 184k init, 1163952k highmem)
virtual kernel memory layout:
    fixmap  : 0xfffeb000 - 0xfffff000   (  80 kB)
    pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
    vmalloc : 0xf8800000 - 0xff7fe000   ( 111 MB)
    lowmem  : 0xc0000000 - 0xf8000000   ( 896 MB)
      .init : 0xc02ec000 - 0xc031a000   ( 184 kB)
      .data : 0xc027611d - 0xc02e9070   ( 459 kB)
      .text : 0xc0100000 - 0xc027611d   (1496 kB)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay using timer specific routine.. 4332.25 BogoMIPS (lpj=7218013)
Mount-cache hash table entries: 512
CPU: After generic identify, caps: bfe9fbff 00100000 00000000 00000000 0000c1a9 00000000 00000000
monitor/mwait feature present.
using mwait in idle threads.
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 2048K
CPU: After all inits, caps: bfe9fbff 00100000 00000000 00002140 0000c1a9 00000000 00000000
CPU: Intel Genuine Intel(R) CPU            1600  @ 2.16GHz stepping 08
Checking 'hlt' instruction... OK.
ACPI: Core revision 20070126
ACPI: setting ELCR to 0200 (from 0c00)
PM: Adding info for No Bus:platform
Time:  9:04:46  Date: 02/05/107
PM: Adding info for No Bus:vtcon0
ACPI: bus type pci registered
PCI: Using MMCONFIG
Setting up standard PCI resources
ACPI Exception (evregion-0420): AE_NOT_FOUND, Returned by Handler for [EmbeddedControl] [20070126]
ACPI Exception (dswexec-0462): AE_NOT_FOUND, While resolving operands for [OpcodeName unavailable] [20070126]
ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.EC__._REG] (Node dfde9b1c), AE_NOT_FOUND
ACPI Exception (acpi_ec-0955): AE_NOT_FOUND, Could not use ECDT [20070126]
ACPI: Interpreter enabled
ACPI: Using PIC for interrupt routing
PM: Adding info for acpi:acpi_system:00
PM: Adding info for acpi:button_power:00
PM: Adding info for acpi:ACPI0007:00
PM: Adding info for acpi:ACPI0007:01
PM: Adding info for acpi:device:00
PM: Adding info for acpi:ACPI0003:00
PM: Adding info for acpi:PNP0C0D:00
PM: Adding info for acpi:APP0002:00
PM: Adding info for acpi:PNP0C0C:00
PM: Adding info for acpi:PNP0C0E:00
PM: Adding info for acpi:PNP0A08:00
PM: Adding info for acpi:PNP0C02:00
PM: Adding info for acpi:device:01
PM: Adding info for acpi:video:00
PM: Adding info for acpi:device:02
PM: Adding info for acpi:device:03
PM: Adding info for acpi:device:04
PM: Adding info for acpi:device:05
PM: Adding info for acpi:device:06
PM: Adding info for acpi:device:07
PM: Adding info for acpi:device:08
PM: Adding info for acpi:device:09
PM: Adding info for acpi:device:0a
PM: Adding info for acpi:device:0b
PM: Adding info for acpi:device:0c
PM: Adding info for acpi:device:0d
PM: Adding info for acpi:device:0e
PM: Adding info for acpi:device:0f
PM: Adding info for acpi:device:10
PM: Adding info for acpi:device:11
PM: Adding info for acpi:device:12
PM: Adding info for acpi:device:13
PM: Adding info for acpi:device:14
PM: Adding info for acpi:device:15
PM: Adding info for acpi:device:16
PM: Adding info for acpi:device:17
PM: Adding info for acpi:device:18
PM: Adding info for acpi:device:19
PM: Adding info for acpi:device:1a
PM: Adding info for acpi:device:1b
PM: Adding info for acpi:device:1c
PM: Adding info for acpi:device:1d
PM: Adding info for acpi:device:1e
PM: Adding info for acpi:device:1f
PM: Adding info for acpi:device:20
PM: Adding info for acpi:device:21
PM: Adding info for acpi:device:22
PM: Adding info for acpi:device:23
PM: Adding info for acpi:device:24
PM: Adding info for acpi:device:25
PM: Adding info for acpi:device:26
PM: Adding info for acpi:device:27
PM: Adding info for acpi:device:28
PM: Adding info for acpi:device:29
PM: Adding info for acpi:device:2a
PM: Adding info for acpi:PNP0C0F:00
PM: Adding info for acpi:PNP0C0F:01
PM: Adding info for acpi:PNP0C0F:02
PM: Adding info for acpi:PNP0C0F:03
PM: Adding info for acpi:PNP0C0F:04
PM: Adding info for acpi:PNP0C0F:05
PM: Adding info for acpi:PNP0C0F:06
PM: Adding info for acpi:PNP0C0F:07
PM: Adding info for acpi:APP0001:00
PM: Adding info for acpi:ACPI0008:00
PM: Adding info for acpi:APP0003:00
PM: Adding info for acpi:PNP0C09:00
PM: Adding info for acpi:IFX0101:00
PM: Adding info for acpi:PNP0200:00
PM: Adding info for acpi:INT0800:00
PM: Adding info for acpi:PNP0103:00
PM: Adding info for acpi:PNP0000:00
PM: Adding info for acpi:PNP0C04:00
PM: Adding info for acpi:PNP0C02:01
PM: Adding info for acpi:PNP0B00:00
PM: Adding info for acpi:PNP0100:00
PM: Adding info for acpi:device:2b
PM: Adding info for acpi:device:2c
PM: Adding info for acpi:device:2d
PM: Adding info for acpi:device:2e
PM: Adding info for acpi:device:2f
PM: Adding info for acpi:device:30
PM: Adding info for acpi:device:31
PM: Adding info for acpi:device:32
PM: Adding info for acpi:device:33
PM: Adding info for acpi:device:34
PM: Adding info for acpi:device:35
PM: Adding info for acpi:device:36
ACPI Exception (evregion-0420): AE_NOT_FOUND, Returned by Handler for [EmbeddedControl] [20070126]
ACPI Exception (dswexec-0462): AE_NOT_FOUND, While resolving operands for [OpcodeName unavailable] [20070126]
ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.EC__.SMB0.SBRW] (Node dfde9bbc), AE_NOT_FOUND
ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.BAT0.UBSS] (Node dfde9a2c), AE_NOT_FOUND
ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.BAT0._STA] (Node dfde9a7c), AE_NOT_FOUND
PM: Adding info for acpi:thermal:00
ACPI Exception (evregion-0420): AE_NOT_FOUND, Returned by Handler for [EmbeddedControl] [20070126]
ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.EC__._REG] (Node dfde9b1c), AE_NOT_FOUND
ACPI Exception (evregion-0513): AE_NOT_FOUND, from region _REG, [EmbeddedControl] [20070126]
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Probing PCI hardware (bus 00)
PM: Adding info for No Bus:pci0000:00
PCI quirk: region 0400-047f claimed by ICH6 ACPI/GPIO/TCO
PCI quirk: region 0500-053f claimed by ICH6 GPIO
Boot video device is 0000:01:00.0
PCI: Transparent bridge - 0000:00:1e.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
PM: Adding info for pci:0000:00:00.0
PM: Adding info for pci:0000:00:01.0
PM: Adding info for pci:0000:00:07.0
PM: Adding info for pci:0000:00:1b.0
PM: Adding info for pci:0000:00:1c.0
PM: Adding info for pci:0000:00:1c.1
PM: Adding info for pci:0000:00:1c.2
PM: Adding info for pci:0000:00:1d.0
PM: Adding info for pci:0000:00:1d.1
PM: Adding info for pci:0000:00:1d.2
PM: Adding info for pci:0000:00:1d.3
PM: Adding info for pci:0000:00:1d.7
PM: Adding info for pci:0000:00:1e.0
PM: Adding info for pci:0000:00:1f.0
PM: Adding info for pci:0000:00:1f.1
PM: Adding info for pci:0000:00:1f.2
PM: Adding info for pci:0000:00:1f.3
PM: Adding info for pci:0000:01:00.0
PM: Adding info for pci:0000:02:00.0
PM: Adding info for pci:0000:03:00.0
PM: Adding info for pci:0000:0c:03.0
ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *11 12 14 15)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
PM: Adding info for No Bus:pnp0
PM: Adding info for pnp:00:00
PM: Adding info for pnp:00:01
PM: Adding info for pnp:00:02
PM: Adding info for pnp:00:03
pnp: PnPACPI: METHOD_NAME__CRS failure for PNP0200
PM: Adding info for pnp:00:04
PM: Adding info for pnp:00:05
PM: Adding info for pnp:00:06
PM: Adding info for pnp:00:07
PM: Adding info for pnp:00:08
pnp: PnP ACPI: found 9 devices
SCSI subsystem initialized
libata version 2.10 loaded.
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
pnp: 00:01: iomem range 0xe0000000-0xefffffff could not be reserved
pnp: 00:01: iomem range 0xfed14000-0xfed17fff could not be reserved
pnp: 00:01: iomem range 0xfed18000-0xfed18fff could not be reserved
pnp: 00:01: iomem range 0xfed19000-0xfed19fff could not be reserved
pnp: 00:05: iomem range 0xfed00000-0xfed003ff has been reserved
PM: Adding info for No Bus:mem
PM: Adding info for No Bus:kmem
PM: Adding info for No Bus:null
PM: Adding info for No Bus:port
PM: Adding info for No Bus:zero
PM: Adding info for No Bus:full
PM: Adding info for No Bus:random
PM: Adding info for No Bus:urandom
PM: Adding info for No Bus:kmsg
PCI: Bridge: 0000:00:01.0
  IO window: 3000-3fff
  MEM window: 98300000-983fffff
  PREFETCH window: 80000000-8fffffff
PCI: Bridge: 0000:00:1c.0
  IO window: 2000-2fff
  MEM window: 98200000-982fffff
  PREFETCH window: 98500000-985fffff
PCI: Bridge: 0000:00:1c.1
  IO window: disabled.
  MEM window: 98100000-981fffff
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:1c.2
  IO window: 1000-1fff
  MEM window: 94100000-980fffff
  PREFETCH window: 90000000-93ffffff
PCI: Bridge: 0000:00:1e.0
  IO window: disabled.
  MEM window: 94000000-940fffff
  PREFETCH window: disabled.
ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
PCI: setting IRQ 10 as level-triggered
ACPI: PCI Interrupt 0000:00:01.0[A] -> Link [LNKA] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:01.0 to 64
ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
PCI: setting IRQ 11 as level-triggered
ACPI: PCI Interrupt 0000:00:1c.0[A] -> Link [LNKB] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1c.0 to 64
ACPI: PCI Interrupt 0000:00:1c.1[B] -> Link [LNKA] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:1c.1 to 64
ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
ACPI: PCI Interrupt 0000:00:1c.2[C] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:1c.2 to 64
PCI: Setting latency timer of device 0000:00:1e.0 to 64
checking if image is initramfs...it isn't (bad gzip magic numbers); looks like an initrd
Freeing initrd memory: 2000k freed
PM: Adding info for platform:pcspkr
PM: Adding info for No Bus:snapshot
highmem bounce pool size: 64 pages
io scheduler noop registered
io scheduler cfq registered (default)
PCI: Setting latency timer of device 0000:00:01.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:01.0:pcie00]
PM: Adding info for pci_express:0000:00:01.0:pcie00
Allocate Port Service[0000:00:01.0:pcie03]
PM: Adding info for pci_express:0000:00:01.0:pcie03
PCI: Setting latency timer of device 0000:00:1c.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:1c.0:pcie00]
PM: Adding info for pci_express:0000:00:1c.0:pcie00
Allocate Port Service[0000:00:1c.0:pcie02]
PM: Adding info for pci_express:0000:00:1c.0:pcie02
Allocate Port Service[0000:00:1c.0:pcie03]
PM: Adding info for pci_express:0000:00:1c.0:pcie03
PCI: Setting latency timer of device 0000:00:1c.1 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:1c.1:pcie00]
PM: Adding info for pci_express:0000:00:1c.1:pcie00
Allocate Port Service[0000:00:1c.1:pcie02]
PM: Adding info for pci_express:0000:00:1c.1:pcie02
Allocate Port Service[0000:00:1c.1:pcie03]
PM: Adding info for pci_express:0000:00:1c.1:pcie03
PCI: Setting latency timer of device 0000:00:1c.2 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:1c.2:pcie00]
PM: Adding info for pci_express:0000:00:1c.2:pcie00
Allocate Port Service[0000:00:1c.2:pcie02]
PM: Adding info for pci_express:0000:00:1c.2:pcie02
Allocate Port Service[0000:00:1c.2:pcie03]
PM: Adding info for pci_express:0000:00:1c.2:pcie03
ACPI: AC Adapter [ADP1] (on-line)
input: Power Button (FF) as /class/input/input0
ACPI: Power Button (FF) [PWRF]
input: Lid Switch as /class/input/input1
ACPI: Lid Switch [LID0]
input: Power Button (CM) as /class/input/input2
ACPI: Power Button (CM) [PWRB]
input: Sleep Button (CM) as /class/input/input3
ACPI: Sleep Button (CM) [SLPB]
ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
ACPI: SSDT 7FEB9C10, 02AE (r1 APPLE   Cpu0Ist     3000 INTL 20050309)
ACPI: SSDT 7FEB9910, 02C3 (r1 APPLE   Cpu0Cst     3001 INTL 20050309)
Monitor-Mwait will be used to enter C-1 state
Monitor-Mwait will be used to enter C-2 state
Monitor-Mwait will be used to enter C-3 state
ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
ACPI: Processor [CPU0] (supports 8 throttling states)
PM: Adding info for No Bus:tty
PM: Adding info for No Bus:console
PM: Adding info for No Bus:ptmx
PM: Adding info for No Bus:tty0
PM: Adding info for No Bus:vcs
PM: Adding info for No Bus:vcsa
PM: Adding info for No Bus:tty1
PM: Adding info for No Bus:tty2
PM: Adding info for No Bus:tty3
PM: Adding info for No Bus:tty4
PM: Adding info for No Bus:tty5
PM: Adding info for No Bus:tty6
PM: Adding info for No Bus:tty7
PM: Adding info for No Bus:tty8
PM: Adding info for No Bus:tty9
PM: Adding info for No Bus:tty10
PM: Adding info for No Bus:tty11
PM: Adding info for No Bus:tty12
PM: Adding info for No Bus:tty13
PM: Adding info for No Bus:tty14
PM: Adding info for No Bus:tty15
PM: Adding info for No Bus:tty16
PM: Adding info for No Bus:tty17
PM: Adding info for No Bus:tty18
PM: Adding info for No Bus:tty19
PM: Adding info for No Bus:tty20
PM: Adding info for No Bus:tty21
PM: Adding info for No Bus:tty22
PM: Adding info for No Bus:tty23
PM: Adding info for No Bus:tty24
PM: Adding info for No Bus:tty25
PM: Adding info for No Bus:tty26
PM: Adding info for No Bus:tty27
PM: Adding info for No Bus:tty28
PM: Adding info for No Bus:tty29
PM: Adding info for No Bus:tty30
PM: Adding info for No Bus:tty31
PM: Adding info for No Bus:tty32
PM: Adding info for No Bus:tty33
PM: Adding info for No Bus:tty34
PM: Adding info for No Bus:tty35
PM: Adding info for No Bus:tty36
PM: Adding info for No Bus:tty37
PM: Adding info for No Bus:tty38
PM: Adding info for No Bus:tty39
PM: Adding info for No Bus:tty40
PM: Adding info for No Bus:tty41
PM: Adding info for No Bus:tty42
PM: Adding info for No Bus:tty43
PM: Adding info for No Bus:tty44
PM: Adding info for No Bus:tty45
PM: Adding info for No Bus:tty46
PM: Adding info for No Bus:tty47
PM: Adding info for No Bus:tty48
PM: Adding info for No Bus:tty49
PM: Adding info for No Bus:tty50
PM: Adding info for No Bus:tty51
PM: Adding info for No Bus:tty52
PM: Adding info for No Bus:tty53
PM: Adding info for No Bus:tty54
PM: Adding info for No Bus:tty55
PM: Adding info for No Bus:tty56
PM: Adding info for No Bus:tty57
PM: Adding info for No Bus:tty58
PM: Adding info for No Bus:tty59
PM: Adding info for No Bus:tty60
PM: Adding info for No Bus:tty61
PM: Adding info for No Bus:tty62
PM: Adding info for No Bus:tty63
RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
loop: loaded (max 8 devices)
ata_piix 0000:00:1f.1: version 2.00ac7
ACPI: PCI Interrupt 0000:00:1f.1[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:1f.1 to 64
ata1: PATA max UDMA/133 cmd 0x000101f0 ctl 0x000103f6 bmdma 0x000140c0 irq 14
ata2: PATA max UDMA/133 cmd 0x00010170 ctl 0x00010376 bmdma 0x000140c8 irq 15
scsi0 : ata_piix
PM: Adding info for No Bus:host0
ata1.00: ATAPI, max UDMA/33
ata1.00: configured for UDMA/33
scsi1 : ata_piix
PM: Adding info for No Bus:host1
ATA: abnormal status 0x7F on port 0x00010177
PM: Adding info for No Bus:target0:0:0
scsi 0:0:0:0: CD-ROM            HL-DT-ST DVDRW GWA4080M   AA26 PQ: 0 ANSI: 5
PM: Adding info for scsi:0:0:0:0
ata_piix 0000:00:1f.2: MAP [ P0 P2 XX XX ]
ata_piix 0000:00:1f.2: invalid MAP value 0
PCI: Enabling device 0000:00:1f.2 (0005 -> 0007)
ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
ACPI: PCI Interrupt 0000:00:1f.2[B] -> Link [LNKD] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1f.2 to 64
ata3: SATA max UDMA/133 cmd 0x000140d8 ctl 0x000140f6 bmdma 0x00014020 irq 11
ata4: SATA max UDMA/133 cmd 0x000140d0 ctl 0x000140f2 bmdma 0x00014028 irq 11
scsi2 : ata_piix
PM: Adding info for No Bus:host2
ATA: abnormal status 0x7F on port 0x000140df
ATA: abnormal status 0x7F on port 0x000140df
ata3.01: ATA-7: ST9120821AS, 7.01, max UDMA/133
ata3.01: 234441648 sectors, multi 16: LBA48 NCQ (depth 0/32)
ata3.01: configured for UDMA/133
scsi3 : ata_piix
PM: Adding info for No Bus:host3
ATA: abnormal status 0x7F on port 0x000140d7
PM: Adding info for No Bus:target2:0:1
scsi 2:0:1:0: Direct-Access     ATA      ST9120821AS      7.01 PQ: 0 ANSI: 5
PM: Adding info for scsi:2:0:1:0
SCSI device sda: 234441648 512-byte hdwr sectors (120034 MB)
sda: Write Protect is off
sda: Mode Sense: 00 3a 00 00
SCSI device sda: write cache: enabled, read cache: enabled, doesn't support DPO or FUA
SCSI device sda: 234441648 512-byte hdwr sectors (120034 MB)
sda: Write Protect is off
sda: Mode Sense: 00 3a 00 00
SCSI device sda: write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sda: sda1 sda2 sda3 sda4 sda5 sda6
sd 2:0:1:0: Attached scsi disk sda
USB Universal Host Controller Interface driver v3.0
ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 11
ACPI: PCI Interrupt 0000:00:1d.0[A] -> Link [LNKH] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1d.0 to 64
uhci_hcd 0000:00:1d.0: UHCI Host Controller
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
uhci_hcd 0000:00:1d.0: irq 11, io base 0x000040a0
PM: Adding info for usb:usb1
PM: Adding info for No Bus:usbdev1.1_ep00
usb usb1: configuration #1 chosen from 1 choice
PM: Adding info for usb:1-0:1.0
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
PM: Adding info for No Bus:usbdev1.1_ep81
PM: Adding info for No Bus:usbdev1.1
ACPI: PCI Interrupt 0000:00:1d.1[B] -> Link [LNKD] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1d.1 to 64
uhci_hcd 0000:00:1d.1: UHCI Host Controller
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
uhci_hcd 0000:00:1d.1: irq 11, io base 0x00004080
PM: Adding info for usb:usb2
PM: Adding info for No Bus:usbdev2.1_ep00
usb usb2: configuration #1 chosen from 1 choice
PM: Adding info for usb:2-0:1.0
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
PM: Adding info for No Bus:usbdev2.1_ep81
PM: Adding info for No Bus:usbdev2.1
ACPI: PCI Interrupt 0000:00:1d.2[C] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:1d.2 to 64
uhci_hcd 0000:00:1d.2: UHCI Host Controller
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 3
uhci_hcd 0000:00:1d.2: irq 10, io base 0x00004060
PM: Adding info for usb:usb3
PM: Adding info for No Bus:usbdev3.1_ep00
usb usb3: configuration #1 chosen from 1 choice
PM: Adding info for usb:3-0:1.0
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
PM: Adding info for No Bus:usbdev3.1_ep81
PM: Adding info for No Bus:usbdev3.1
ACPI: PCI Interrupt 0000:00:1d.3[D] -> Link [LNKA] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:1d.3 to 64
uhci_hcd 0000:00:1d.3: UHCI Host Controller
uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 4
uhci_hcd 0000:00:1d.3: irq 10, io base 0x00004040
PM: Adding info for usb:usb4
PM: Adding info for No Bus:usbdev4.1_ep00
usb usb4: configuration #1 chosen from 1 choice
PM: Adding info for usb:4-0:1.0
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
usb 1-2: new full speed USB device using uhci_hcd and address 2
PM: Adding info for No Bus:usbdev4.1_ep81
PM: Adding info for No Bus:usbdev4.1
PM: Adding info for usb:1-2
PM: Adding info for No Bus:usbdev1.2_ep00
usb 1-2: configuration #1 chosen from 1 choice
PM: Adding info for usb:1-2:1.0
PM: Adding info for No Bus:usbdev1.2_ep83
PM: Adding info for usb:1-2:1.1
PM: Adding info for No Bus:usbdev1.2_ep81
PM: Adding info for usb:1-2:1.2
PM: Adding info for No Bus:usbdev1.2_ep84
PM: Adding info for No Bus:usbdev1.2
usb 2-2: new full speed USB device using uhci_hcd and address 2
PM: Adding info for usb:2-2
PM: Adding info for No Bus:usbdev2.2_ep00
usb 2-2: configuration #1 chosen from 1 choice
PM: Adding info for usb:2-2:1.0
PM: Adding info for No Bus:usbdev2.2
usb 3-2: new full speed USB device using uhci_hcd and address 2
PM: Adding info for usb:3-2
PM: Adding info for No Bus:usbdev3.2_ep00
usb 3-2: configuration #1 chosen from 1 choice
PM: Adding info for usb:3-2:1.0
PM: Adding info for No Bus:usbdev3.2_ep83
PM: Adding info for No Bus:usbdev3.2
usb 4-1: new full speed USB device using uhci_hcd and address 2
PM: Adding info for usb:4-1
PM: Adding info for No Bus:usbdev4.2_ep00
usb 4-1: configuration #1 chosen from 1 choice
PM: Adding info for usb:4-1:1.0
PM: Adding info for No Bus:usbdev4.2_ep81
PM: Adding info for usb:4-1:1.1
PM: Adding info for No Bus:usbdev4.2_ep82
PM: Adding info for No Bus:usbdev4.2
input: Apple Computer Apple Internal Keyboard / Trackpad as /class/input/input4
input: USB HID v1.11 Keyboard [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-2
input: Apple Computer Apple Internal Keyboard / Trackpad as /class/input/input5
input: USB HID v1.11 Device [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-2
input: HID 05ac:1000 as /class/input/input6
input: USB HID v1.11 Keyboard [HID 05ac:1000] on usb-0000:00:1d.3-1
input: HID 05ac:1000 as /class/input/input7
input: USB HID v1.11 Mouse [HID 05ac:1000] on usb-0000:00:1d.3-1
usbcore: registered new interface driver usbhid
drivers/usb/input/hid-core.c: v2.6:USB HID core driver
PNP: No PS/2 controller found. Probing ports directly.
i8042.c: No controller found.
mice: PS/2 mouse device common for all mice
PM: Adding info for No Bus:uinput
i2c /dev entries driver
ACPI: PCI Interrupt 0000:00:1f.3[B] -> Link [LNKD] -> GSI 11 (level, low) -> IRQ 11
PM: Adding info for No Bus:i2c-0
PM: Adding info for No Bus:i2c-0
PM: Adding info for i2c:0-0050
PM: Adding info for i2c:0-0052
PM: Adding info for No Bus:device-mapper
device-mapper: ioctl: 4.11.0-ioctl (2006-10-12) initialised: dm-devel@redhat.com
Using IPI Shortcut mode
swsusp: Resume From Partition /dev/sda5
PM: Checking swsusp image.
Time: acpi_pm clocksource has been installed.
PM: Resume from disk failed.
ACPI: (supports S0 S3 S4 S5)
  Magic number: 15:819:69
RAMDISK: ext2 filesystem found at block 0
RAMDISK: Loading 2000KiB [1 disk] into ram disk... |\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\b/\b-\b\\b|\bdone.
VFS: Mounted root (ext2 filesystem).
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
kjournald starting.  Commit interval 5 seconds
EXT3 FS on sda3, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
VFS: Mounted root (ext3 filesystem).
Trying to move old root to /initrd ... okay
Freeing unused kernel memory: 184k freed
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
Clocksource tsc unstable (delta = -306674937 ns)
kjournald starting.  Commit interval 5 seconds
EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
EXT3 FS on dm-0, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
Adding 2099140k swap on /dev/sda5.  Priority:-1 extents:1 across:2099140k
EXT3 FS on sda3, internal journal
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
PM: Adding info for No Bus:vcs7
PM: Adding info for No Bus:vcsa7
PM: Removing info for No Bus:vcs7
PM: Removing info for No Bus:vcsa7
PM: Removing info for No Bus:vcs1
PM: Removing info for No Bus:vcsa1
PM: Adding info for No Bus:vcs1
PM: Adding info for No Bus:vcsa1
PM: Adding info for No Bus:vcs2
PM: Adding info for No Bus:vcsa2
PM: Adding info for No Bus:vcs3
PM: Adding info for No Bus:vcsa3
PM: Adding info for No Bus:vcs7
PM: Adding info for No Bus:vcsa7
PM: Removing info for No Bus:vcs7
PM: Removing info for No Bus:vcsa7
PM: Adding info for No Bus:vcs7
PM: Adding info for No Bus:vcsa7
PM: Removing info for No Bus:vcs7
PM: Removing info for No Bus:vcsa7
PM: Adding info for No Bus:vcs4
PM: Adding info for No Bus:vcsa4
PM: Removing info for No Bus:vcs4
PM: Removing info for No Bus:vcsa4
PM: Preparing system for mem sleep
Stopping tasks ... done.
eeprom 0-0052: suspend
eeprom 0-0050: suspend
usbhid 4-1:1.1: suspend
usbhid 4-1:1.0: suspend
usb 4-1: suspend, may wakeup
usb 3-2:1.0: suspend
usb 3-2: suspend, may wakeup
usb 2-2:1.0: suspend
usb 2-2: suspend
usbhid 1-2:1.2: suspend
usb 1-2:1.1: suspend
usbhid 1-2:1.0: suspend
usb 1-2: suspend, may wakeup
hub 4-0:1.0: suspend
usb usb4: suspend, may wakeup
hub 3-0:1.0: suspend
usb usb3: suspend, may wakeup
hub 2-0:1.0: suspend
usb usb2: suspend, may wakeup
hub 1-0:1.0: suspend
usb usb1: suspend, may wakeup
sd 2:0:1:0: suspend
scsi 0:0:0:0: suspend
pci_express 0000:00:1c.2:pcie03: suspend
pci_express 0000:00:1c.2:pcie02: suspend
pci_express 0000:00:1c.2:pcie00: suspend
pci_express 0000:00:1c.1:pcie03: suspend
pci_express 0000:00:1c.1:pcie02: suspend
pci_express 0000:00:1c.1:pcie00: suspend
pci_express 0000:00:1c.0:pcie03: suspend
pci_express 0000:00:1c.0:pcie02: suspend
pci_express 0000:00:1c.0:pcie00: suspend
pci_express 0000:00:01.0:pcie03: suspend
pci_express 0000:00:01.0:pcie00: suspend
platform pcspkr: suspend
pnp 00:08: suspend
system 00:07: suspend
pnp 00:06: suspend
system 00:05: suspend
pnp 00:04: suspend
pnp 00:03: suspend
pnp 00:02: suspend
system 00:01: suspend
pnp 00:00: suspend
pci 0000:0c:03.0: suspend
pci 0000:03:00.0: suspend
pci 0000:02:00.0: suspend
pci 0000:01:00.0: suspend
i801_smbus 0000:00:1f.3: suspend
ata_piix 0000:00:1f.2: suspend
ACPI: PCI interrupt for device 0000:00:1f.2 disabled
ata_piix 0000:00:1f.1: suspend
ACPI: PCI interrupt for device 0000:00:1f.1 disabled
pci_set_power_state(): 0000:00:1f.1: state=3, current state=5
pci 0000:00:1f.0: suspend
pci 0000:00:1e.0: suspend
pci 0000:00:1d.7: suspend
uhci_hcd 0000:00:1d.3: suspend
ACPI: PCI interrupt for device 0000:00:1d.3 disabled
uhci_hcd 0000:00:1d.2: suspend
ACPI: PCI interrupt for device 0000:00:1d.2 disabled
uhci_hcd 0000:00:1d.1: suspend
ACPI: PCI interrupt for device 0000:00:1d.1 disabled
uhci_hcd 0000:00:1d.0: suspend
ACPI: PCI interrupt for device 0000:00:1d.0 disabled
pcieport-driver 0000:00:1c.2: suspend
pcieport-driver 0000:00:1c.1: suspend
pcieport-driver 0000:00:1c.0: suspend
pci 0000:00:1b.0: suspend
pci 0000:00:07.0: suspend
pcieport-driver 0000:00:01.0: suspend
pci 0000:00:00.0: suspend
acpi thermal:00: suspend
acpi device:36: suspend
acpi device:35: suspend
acpi device:34: suspend
acpi device:33: suspend
acpi device:32: suspend
acpi device:31: suspend
acpi device:30: suspend
acpi device:2f: suspend
acpi device:2e: suspend
acpi device:2d: suspend
acpi device:2c: suspend
acpi device:2b: suspend
acpi PNP0100:00: suspend
acpi PNP0B00:00: suspend
acpi PNP0C02:01: suspend
acpi PNP0C04:00: suspend
acpi PNP0000:00: suspend
acpi PNP0103:00: suspend
acpi INT0800:00: suspend
acpi PNP0200:00: suspend
acpi IFX0101:00: suspend
ACPI Embedded Controller Driver PNP0C09:00: suspend
acpi APP0003:00: suspend
acpi ACPI0008:00: suspend
acpi APP0001:00: suspend
ACPI PCI Interrupt Link Driver PNP0C0F:07: suspend
ACPI PCI Interrupt Link Driver PNP0C0F:06: suspend
ACPI PCI Interrupt Link Driver PNP0C0F:05: suspend
ACPI PCI Interrupt Link Driver PNP0C0F:04: suspend
ACPI PCI Interrupt Link Driver PNP0C0F:03: suspend
ACPI PCI Interrupt Link Driver PNP0C0F:02: suspend
ACPI PCI Interrupt Link Driver PNP0C0F:01: suspend
ACPI PCI Interrupt Link Driver PNP0C0F:00: suspend
acpi device:2a: suspend
acpi device:29: suspend
acpi device:28: suspend
acpi device:27: suspend
acpi device:26: suspend
acpi device:25: suspend
acpi device:24: suspend
acpi device:23: suspend
acpi device:22: suspend
acpi device:21: suspend
acpi device:20: suspend
acpi device:1f: suspend
acpi device:1e: suspend
acpi device:1d: suspend
acpi device:1c: suspend
acpi device:1b: suspend
acpi device:1a: suspend
acpi device:19: suspend
acpi device:18: suspend
acpi device:17: suspend
acpi device:16: suspend
acpi device:15: suspend
acpi device:14: suspend
acpi device:13: suspend
acpi device:12: suspend
acpi device:11: suspend
acpi device:10: suspend
acpi device:0f: suspend
acpi device:0e: suspend
acpi device:0d: suspend
acpi device:0c: suspend
acpi device:0b: suspend
acpi device:0a: suspend
acpi device:09: suspend
acpi device:08: suspend
acpi device:07: suspend
acpi device:06: suspend
acpi device:05: suspend
acpi device:04: suspend
acpi device:03: suspend
acpi device:02: suspend
ACPI Video Driver video:00: suspend
acpi device:01: suspend
acpi PNP0C02:00: suspend
ACPI PCI Root Bridge Driver PNP0A08:00: suspend
ACPI Button Driver PNP0C0E:00: suspend
ACPI Button Driver PNP0C0C:00: suspend
acpi APP0002:00: suspend
ACPI Button Driver PNP0C0D:00: suspend
ACPI AC Adapter Driver ACPI0003:00: suspend
acpi device:00: suspend
ACPI Processor Driver ACPI0007:01: suspend
ACPI Processor Driver ACPI0007:00: suspend
ACPI Button Driver button_power:00: suspend
acpi acpi_system:00: suspend
PM: Entering mem sleep
platform pcspkr: LATE suspend
pci 0000:0c:03.0: LATE suspend
pci 0000:03:00.0: LATE suspend
pci 0000:02:00.0: LATE suspend
pci 0000:01:00.0: LATE suspend
i801_smbus 0000:00:1f.3: LATE suspend
pci 0000:00:1f.0: LATE suspend
pci 0000:00:1e.0: LATE suspend
pci 0000:00:1d.7: LATE suspend
pcieport-driver 0000:00:1c.2: LATE suspend
pcieport-driver 0000:00:1c.1: LATE suspend
pcieport-driver 0000:00:1c.0: LATE suspend
pci 0000:00:1b.0: LATE suspend
pci 0000:00:07.0: LATE suspend
pcieport-driver 0000:00:01.0: LATE suspend
pci 0000:00:00.0: LATE suspend
ACPI: simulating suspend-to-RAM: not calling BIOS.
Back to C!
pci 0000:00:00.0: EARLY resume
pcieport-driver 0000:00:01.0: EARLY resume
pci 0000:00:07.0: EARLY resume
pci 0000:00:1b.0: EARLY resume
pcieport-driver 0000:00:1c.0: EARLY resume
pcieport-driver 0000:00:1c.1: EARLY resume
pcieport-driver 0000:00:1c.2: EARLY resume
uhci_hcd 0000:00:1d.0: EARLY resume
uhci_hcd 0000:00:1d.1: EARLY resume
uhci_hcd 0000:00:1d.2: EARLY resume
uhci_hcd 0000:00:1d.3: EARLY resume
pci 0000:00:1d.7: EARLY resume
pci 0000:00:1e.0: EARLY resume
pci 0000:00:1f.0: EARLY resume
ata_piix 0000:00:1f.1: EARLY resume
ata_piix 0000:00:1f.2: EARLY resume
i801_smbus 0000:00:1f.3: EARLY resume
pci 0000:01:00.0: EARLY resume
pci 0000:02:00.0: EARLY resume
pci 0000:03:00.0: EARLY resume
pci 0000:0c:03.0: EARLY resume
platform pcspkr: EARLY resume
PM: Finishing wakeup.
Warning: Processor Platform Limit event detected, but not handled.
Consider compiling CPUfreq support into your kernel.
acpi acpi_system:00: resuming
ACPI Button Driver button_power:00: resuming
ACPI Processor Driver ACPI0007:00: resuming
ACPI Processor Driver ACPI0007:01: resuming
acpi device:00: resuming
ACPI AC Adapter Driver ACPI0003:00: resuming
ACPI Button Driver PNP0C0D:00: resuming
acpi APP0002:00: resuming
ACPI Button Driver PNP0C0C:00: resuming
ACPI Button Driver PNP0C0E:00: resuming
ACPI PCI Root Bridge Driver PNP0A08:00: resuming
acpi PNP0C02:00: resuming
acpi device:01: resuming
ACPI Video Driver video:00: resuming
acpi device:02: resuming
acpi device:03: resuming
acpi device:04: resuming
acpi device:05: resuming
acpi device:06: resuming
acpi device:07: resuming
acpi device:08: resuming
acpi device:09: resuming
acpi device:0a: resuming
acpi device:0b: resuming
acpi device:0c: resuming
acpi device:0d: resuming
acpi device:0e: resuming
acpi device:0f: resuming
acpi device:10: resuming
acpi device:11: resuming
acpi device:12: resuming
acpi device:13: resuming
acpi device:14: resuming
acpi device:15: resuming
acpi device:16: resuming
acpi device:17: resuming
acpi device:18: resuming
acpi device:19: resuming
acpi device:1a: resuming
acpi device:1b: resuming
acpi device:1c: resuming
acpi device:1d: resuming
acpi device:1e: resuming
acpi device:1f: resuming
acpi device:20: resuming
acpi device:21: resuming
acpi device:22: resuming
acpi device:23: resuming
acpi device:24: resuming
acpi device:25: resuming
acpi device:26: resuming
acpi device:27: resuming
acpi device:28: resuming
acpi device:29: resuming
acpi device:2a: resuming
ACPI PCI Interrupt Link Driver PNP0C0F:00: resuming
ACPI PCI Interrupt Link Driver PNP0C0F:01: resuming
ACPI PCI Interrupt Link Driver PNP0C0F:02: resuming
ACPI PCI Interrupt Link Driver PNP0C0F:03: resuming
ACPI PCI Interrupt Link Driver PNP0C0F:04: resuming
ACPI PCI Interrupt Link Driver PNP0C0F:05: resuming
ACPI PCI Interrupt Link Driver PNP0C0F:06: resuming
ACPI PCI Interrupt Link Driver PNP0C0F:07: resuming
acpi APP0001:00: resuming
acpi ACPI0008:00: resuming
acpi APP0003:00: resuming
ACPI Embedded Controller Driver PNP0C09:00: resuming
acpi IFX0101:00: resuming
acpi PNP0200:00: resuming
acpi INT0800:00: resuming
acpi PNP0103:00: resuming
acpi PNP0000:00: resuming
acpi PNP0C04:00: resuming
acpi PNP0C02:01: resuming
acpi PNP0B00:00: resuming
acpi PNP0100:00: resuming
acpi device:2b: resuming
acpi device:2c: resuming
acpi device:2d: resuming
acpi device:2e: resuming
acpi device:2f: resuming
acpi device:30: resuming
acpi device:31: resuming
acpi device:32: resuming
acpi device:33: resuming
acpi device:34: resuming
acpi device:35: resuming
acpi device:36: resuming
acpi thermal:00: resuming
pci 0000:00:00.0: resuming
pcieport-driver 0000:00:01.0: resuming
PCI: Setting latency timer of device 0000:00:01.0 to 64
pci 0000:00:07.0: resuming
pci 0000:00:1b.0: resuming
pcieport-driver 0000:00:1c.0: resuming
PCI: Setting latency timer of device 0000:00:1c.0 to 64
pcieport-driver 0000:00:1c.1: resuming
PCI: Setting latency timer of device 0000:00:1c.1 to 64
pcieport-driver 0000:00:1c.2: resuming
PCI: Setting latency timer of device 0000:00:1c.2 to 64
uhci_hcd 0000:00:1d.0: resuming
ACPI: PCI Interrupt 0000:00:1d.0[A] -> Link [LNKH] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1d.0 to 64
uhci_hcd 0000:00:1d.1: resuming
ACPI: PCI Interrupt 0000:00:1d.1[B] -> Link [LNKD] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1d.1 to 64
uhci_hcd 0000:00:1d.2: resuming
ACPI: PCI Interrupt 0000:00:1d.2[C] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:1d.2 to 64
uhci_hcd 0000:00:1d.3: resuming
ACPI: PCI Interrupt 0000:00:1d.3[D] -> Link [LNKA] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:1d.3 to 64
pci 0000:00:1d.7: resuming
pci 0000:00:1e.0: resuming
PCI: Setting latency timer of device 0000:00:1e.0 to 64
pci 0000:00:1f.0: resuming
ata_piix 0000:00:1f.1: resuming
PM: Writing back config space on device 0000:00:1f.1 at offset 1 (was 2800001, writing 2800005)
ACPI: PCI Interrupt 0000:00:1f.1[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:1f.1 to 64
ata_piix 0000:00:1f.2: resuming
PM: Writing back config space on device 0000:00:1f.2 at offset 1 (was 2b00003, writing 2b00007)
ACPI: PCI Interrupt 0000:00:1f.2[B] -> Link [LNKD] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1f.2 to 64
i801_smbus 0000:00:1f.3: resuming
ACPI: PCI Interrupt 0000:00:1f.3[B] -> Link [LNKD] -> GSI 11 (level, low) -> IRQ 11
pci 0000:01:00.0: resuming
pci 0000:02:00.0: resuming
pci 0000:03:00.0: resuming
pci 0000:0c:03.0: resuming
pnp 00:00: resuming
system 00:01: resuming
pnp 00:02: resuming
pnp 00:03: resuming
pnp 00:04: resuming
system 00:05: resuming
pnp 00:06: resuming
system 00:07: resuming
pnp 00:08: resuming
platform pcspkr: resuming
pci_express 0000:00:01.0:pcie00: resuming
pci_express 0000:00:01.0:pcie03: resuming
pci_express 0000:00:1c.0:pcie00: resuming
pci_express 0000:00:1c.0:pcie02: resuming
pci_express 0000:00:1c.0:pcie03: resuming
pci_express 0000:00:1c.1:pcie00: resuming
pci_express 0000:00:1c.1:pcie02: resuming
pci_express 0000:00:1c.1:pcie03: resuming
pci_express 0000:00:1c.2:pcie00: resuming
pci_express 0000:00:1c.2:pcie02: resuming
pci_express 0000:00:1c.2:pcie03: resuming
scsi 0:0:0:0: resuming
sd 2:0:1:0: resuming
usb usb1: resuming
hub 1-0:1.0: resuming
usb usb2: resuming
hub 2-0:1.0: resuming
usb usb3: resuming
hub 3-0:1.0: resuming
usb usb4: resuming
ATA: abnormal status 0x7F on port 0x00010177
hub 4-0:1.0: resuming
usb 1-2: resuming
usbhid 1-2:1.0: resuming
usb 1-2:1.1: resuming
 usbdev1.2_ep81: PM: resume from 0, parent 1-2:1.1 still 2
usbhid 1-2:1.2: resuming
usb 2-2: resuming
usb 2-2:1.0: resuming
usb 3-2: resuming
usb 3-2:1.0: resuming
 usbdev3.2_ep83: PM: resume from 0, parent 3-2:1.0 still 2
usb 4-1: resuming
usbhid 4-1:1.0: resuming
usbhid 4-1:1.1: resuming
eeprom 0-0050: resuming
eeprom 0-0052: resuming
Restarting tasks ... done.
ATA: abnormal status 0x7F on port 0x000140d7
ATA: abnormal status 0x7F on port 0x000140df
ATA: abnormal status 0x7F on port 0x000140df
ata3.01: configured for UDMA/133
SCSI device sda: 234441648 512-byte hdwr sectors (120034 MB)
sda: Write Protect is off
sda: Mode Sense: 00 3a 00 00
SCSI device sda: write cache: enabled, read cache: enabled, doesn't support DPO or FUA
ata1: port is slow to respond, please be patient (Status 0x80)
ata1: port failed to respond (30 secs, Status 0x80)
ATA: abnormal status 0x80 on port 0x000101f7
ATA: abnormal status 0x80 on port 0x000101f7
ATA: abnormal status 0x80 on port 0x000101f7
ATA: abnormal status 0x80 on port 0x000101f7
ATA: abnormal status 0x80 on port 0x000101f7
ata1.00: qc timeout (cmd 0xa1)
ata1.00: failed to IDENTIFY (I/O error, err_mask=0x4)
ata1.00: revalidation failed (errno=-5)
ata1: failed to recover some devices, retrying in 5 secs
ata1: port is slow to respond, please be patient (Status 0x80)
ata1: port failed to respond (30 secs, Status 0x80)
ATA: abnormal status 0x80 on port 0x000101f7
ATA: abnormal status 0x80 on port 0x000101f7
ATA: abnormal status 0x80 on port 0x000101f7
ATA: abnormal status 0x80 on port 0x000101f7
ATA: abnormal status 0x80 on port 0x000101f7

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

end of thread, other threads:[~2007-03-05  9:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-04 18:30 macbook pro suspend to ram broken in linux-2.6.git HEAD Soeren Sonnenburg
2007-03-05  8:14 ` Ingo Molnar
2007-03-05  9:22   ` Soeren Sonnenburg

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).